diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml new file mode 100644 index 00000000..e3050c42 --- /dev/null +++ b/.github/workflows/nodejs.yml @@ -0,0 +1,31 @@ +name: Node CI + +on: [push, pull_request] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [10.x, 12.x] + + steps: + - uses: actions/checkout@v1 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - name: yarn lint + run: | + yarn + yarn lint + env: + CI: true + - name: yarn build + run: | + yarn build + env: + CI: true + diff --git a/.gitignore b/.gitignore index ecc21186..6ff3883e 100644 --- a/.gitignore +++ b/.gitignore @@ -11,7 +11,10 @@ src/config.json config/local.json config/certs/*.pem var/magento2-sample-data/ +var/* .migrate *.iml /docker/elasticsearch/data/ !/docker/elasticsearch/data/.gitkeep +/docker/elasticsearch7/data/ +!/docker/elasticsearch7/data/.gitkeep diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bd98985..18ddea98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [1.11.0-rc.1] - 2019.10.03 ### Added +- Experimental Elastic 7 support - @pkarw (#342) - Output cache support with tagging and cache invalidate requests forwarding - @pkarw @resubaka (https://github.com/DivanteLtd/vue-storefront/issues/3367, #333) - Constant for Mailchimp subscription status - @KonstantinSoelch (#294) - mage2vs import now has optional `--generate-unique-url-keys` parameter which defaults to `false` to enable/disable the url key generation with name and id for categories - @rain2o (#232) @@ -22,8 +23,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added jest support - @resubaka (#321) - Added caching factory and action factory for the image endpoint. This gives the possibility to use other services for caching or image processing - @resubaka (#317, #315) - Added support for tax calculation where the values from customer_tax_class_ids is used - @resubaka (#307) +- The `db` context object - passed to every api endpoint now has two usefull methods: `getElasticClient` and `getRedisClient` for accesing the data stores - @pkarw (#328) +- The `lib/utils` got two new methods `getStoreCode(req: Express.Request)` and `getStoreView(code: string)` for getting the current multistore context from `vue-storefront` frontend requests - @pkarw + +### Removed +- The `scripts/seo.js` tool has been removed, the legacy `migrations` scripts have been removed, the unused legacy extensions (`gls-parcelshop-dk`, `postnord-parcelshop-dk`) - @pkarw (#342) ### Fixed +- The way Elastic and Redis clients have been fixed and code duplication removed across the app - @pkarw (#327) - The `product.price_*` fields have been normalized with the backward compatibility support (see `config.tax.deprecatedPriceFieldsSupport` which is by default true) - @pkarw (#289) - The `product.final_price` field is now being taken into product price calcualtion. Moreover, we've added the `config.tax.finalPriceIncludesTax` - which is set to `true` by default. All the `price`, `original_price` and `special_price` fields are calculated accordingly. It was required as Magento2 uses `final_price` to set the catalog pricing rules after-prices - @pkarw (#289) - Force ES connections to use protocol config option - @cewald (#303, #304) diff --git a/README.md b/README.md index 8dfb1a47..ed766d3c 100644 --- a/README.md +++ b/README.md @@ -65,6 +65,68 @@ A [Kibana](https://www.elastic.co/products/kibana) service is available to explo At first access it will ask to specify an index pattern, insert `vue_storefront*` +**Note:** Kibana is not provided with the Elastic 7 docker file. Please install it on your own when needed or check the [`es-head`](https://chrome.google.com/webstore/detail/elasticsearch-head/ffmkiejjmecolpfloofpjologoblkegm) Chrome plugin. + +## Elastic 7 support + +By default, Vue Storefront API docker files and config are based on Elastic 5.6. We plan to change the default Elastic version to 7 with the 1.11 stable release. As for now, the [Elastic 7 support](https://github.com/DivanteLtd/vue-storefront-api/pull/342) is marked as **experimental**. + +**How to use it?** + +In order to use the new Elastic 7 please make sure your `vue-storefront-api` has been checked out from the [PR#342](https://github.com/DivanteLtd/vue-storefront-api/pull/342) branch. +To start the Elastic 7 docker service please use the `docker-compose.elastic7.yml` file provided: + +```bash +docker-compose -f docker-compose.elastic7.yml up +``` + +Then, please do change the `config/local.json` to start using the new Elastic API. Key properties in the `elasticsearch` section are: `indexTypes` and `apiVersion` (to be set to 7.1). If you're using the multistore configuration please make sure you adjusted the `storeViews.*.elasticsearch` section as well - per each separate store. + +```json + "elasticsearch": { + "host": "localhost", + "port": 9200, + "protocol": "http", + "min_score": 0.01, + "indices": [ + "vue_storefront_catalog", + "vue_storefront_catalog_de", + "vue_storefront_catalog_it" + ], + "indexTypes": [ + "product", + "category", + "cms_block", + "cms_page", + "attribute", + "taxrule", + "review" + ], + "apiVersion": "7.1" + } +``` + +Starting from [Elasitc 6 and 7](https://www.elastic.co/guide/en/elasticsearch/reference/current/breaking-changes-7.0.html) we can have **just single** document type per single index. Vue Storefront used to have `product`, `category` ... types defined in the `vue_storefront_catalog`. + +From now on, we're using the separate indexes per each entity type. The convention is: `${indexName}_${entityType}`. If your' **logical index name** is `vue_storefront_catalog` then it will be mapped to the **physical indexes** of: `vue_storefront_catalog_product`, `vue_storefront_catalog_category` ... + +To take the advantage of this new logical->physical index distinction we've provided new Elastic tools: `db7`, `migrate7`, `dump7`, `restore7` tools. They can be used exactly the same way [like the old tools](https://docs.vuestorefront.io/guide/data/database-tool.html) were. The only distinction is that they work on separate indexes. + +**Create new index** + +Before restoreing or importing data you might want to create a new Elastic index with the proper data types/schema applied. You can run just the `yarn db7 new` command in order to do that. + +**Restore the data** + +After you ran the docker file and have Elastic7 up and running you might want to: + +a) restore the demo data by running `yarn restore7` and `yarn restore7_it; yarn restore7_de` for default multistores. The data is restored from `var/catalog_product.json`, `var/catalog_category.json` and so on... + +b) import the data from Magento to proper physical indexes. To do so, currently you can do this only with [mage2vuestorefront](https://github.com/DivanteLtd/mage2vuestorefront/pull/96). + +**Note:** After 1.11 stable release (around November, 2019) we'll **replace** the standard tools: `db`, `migrate`, `dump`, `restore` with the Elastic 7 equivalents and it will become the default. + + ## API access Catalog API calls are compliant with ElasticSearch (it works like a filtering proxy to ES). More on ES queries: [ElasticSearch queries tutorial](http://okfnlabs.org/blog/2013/07/01/elasticsearch-query-tutorial.html) diff --git a/config/default.json b/config/default.json index 30c3cd73..9c856f21 100644 --- a/config/default.json +++ b/config/default.json @@ -30,7 +30,8 @@ "indexTypes": [ "product", "category", - "cms", + "cms_block", + "cms_page", "attribute", "taxrule", "review" diff --git a/config/elastic.schema.attribute.json b/config/elastic.schema.attribute.json index 6edbabd6..8c976c90 100644 --- a/config/elastic.schema.attribute.json +++ b/config/elastic.schema.attribute.json @@ -9,8 +9,7 @@ "options": { "properties": { "value": { - "type": "text", - "index": true + "type": "text" } } } diff --git a/config/elastic.schema.block.extension.json b/config/elastic.schema.block.extension.json deleted file mode 100644 index 9e26dfee..00000000 --- a/config/elastic.schema.block.extension.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/config/elastic.schema.category.json b/config/elastic.schema.category.json index 846d59bd..5290d92c 100644 --- a/config/elastic.schema.category.json +++ b/config/elastic.schema.category.json @@ -6,12 +6,13 @@ "is_active": {"type": "boolean"}, "product_count": {"type": "integer"}, "parent_id": {"type": "integer"}, - "created_at": { - "type": "date", + "position": {"type": "integer"}, + "created_at": { + "type": "date", "format": "yyyy-MM-dd HH:mm:ss||yyyy-MM-dd||epoch_millis" }, - "updated_at": { - "type": "date", + "updated_at": { + "type": "date", "format": "yyyy-MM-dd HH:mm:ss||yyyy-MM-dd||epoch_millis" } } diff --git a/config/elastic.schema.block.json b/config/elastic.schema.cms_block.json similarity index 100% rename from config/elastic.schema.block.json rename to config/elastic.schema.cms_block.json diff --git a/config/elastic.schema.page.json b/config/elastic.schema.cms_page.json similarity index 100% rename from config/elastic.schema.page.json rename to config/elastic.schema.cms_page.json diff --git a/config/elastic.schema.page.extension.json b/config/elastic.schema.page.extension.json deleted file mode 100644 index 9e26dfee..00000000 --- a/config/elastic.schema.page.extension.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/config/elastic.schema.product.json b/config/elastic.schema.product.json index 996ce02b..36b60ba4 100644 --- a/config/elastic.schema.product.json +++ b/config/elastic.schema.product.json @@ -7,7 +7,7 @@ "size": {"type": "integer"}, "size_options": {"type": "integer"}, "price": {"type": "float"}, - "has_options": {"type": "boolean"}, + "has_options": {"type": "keyword"}, "special_price": {"type": "float"}, "color": {"type": "integer"}, "color_options": {"type": "integer"}, @@ -46,7 +46,7 @@ "properties": { "url_key": {"type": "keyword"}, "sku": {"type": "keyword"}, - "has_options": {"type": "boolean"}, + "has_options": {"type": "keyword"}, "price": {"type": "float"}, "special_price": {"type": "float"} } diff --git a/docker-compose.elastic7.yml b/docker-compose.elastic7.yml new file mode 100644 index 00000000..42536ea7 --- /dev/null +++ b/docker-compose.elastic7.yml @@ -0,0 +1,24 @@ +version: '3.0' +services: + es7: + container_name: es7 + build: docker/elasticsearch7/ + ulimits: + memlock: + soft: -1 + hard: -1 + volumes: + - ./docker/elasticsearch7/config/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml:ro + ports: + - '9200:9200' + - '9300:9300' + environment: + - discovery.type=single-node + - cluster.name=docker-cluster + - bootstrap.memory_lock=true + - "ES_JAVA_OPTS=-Xmx512m -Xms512m" + + redis: + image: 'redis:4-alpine' + ports: + - '6379:6379' diff --git a/docker-compose.yml b/docker-compose.yml index c5aa5b1c..6b42d798 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,13 +3,20 @@ services: es1: container_name: elasticsearch build: docker/elasticsearch/ + ulimits: + memlock: + soft: -1 + hard: -1 volumes: - ./docker/elasticsearch/config/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml:ro ports: - '9200:9200' - '9300:9300' environment: - ES_JAVA_OPTS: "-Xmx512m -Xms512m" + - discovery.type=single-node + - cluster.name=docker-cluster + - bootstrap.memory_lock=true + - "ES_JAVA_OPTS=-Xmx512m -Xms512m" kibana: build: docker/kibana/ diff --git a/docker/elasticsearch7/Dockerfile b/docker/elasticsearch7/Dockerfile new file mode 100644 index 00000000..4f137b64 --- /dev/null +++ b/docker/elasticsearch7/Dockerfile @@ -0,0 +1,2 @@ +FROM docker.elastic.co/elasticsearch/elasticsearch:7.3.2 + diff --git a/docker/elasticsearch7/config/elasticsearch.yml b/docker/elasticsearch7/config/elasticsearch.yml new file mode 100644 index 00000000..e9757708 --- /dev/null +++ b/docker/elasticsearch7/config/elasticsearch.yml @@ -0,0 +1,16 @@ +--- +## Default Elasticsearch configuration from elasticsearch-docker. +## from https://github.com/elastic/elasticsearch-docker/blob/master/build/elasticsearch/elasticsearch.yml +# +cluster.name: "docker-cluster" +network.host: 0.0.0.0 + +# minimum_master_nodes need to be explicitly set when bound on a public IP +# set to 1 to allow single node clusters +# Details: https://github.com/elastic/elasticsearch/pull/17288 +discovery.zen.minimum_master_nodes: 1 + +## Use single node discovery in order to disable production mode and avoid bootstrap checks +## see https://www.elastic.co/guide/en/elasticsearch/reference/current/bootstrap-checks.html +# +discovery.type: single-node diff --git a/migrations/.common.js b/migrations/.common.js index 8c49be35..7974668a 100644 --- a/migrations/.common.js +++ b/migrations/.common.js @@ -1,24 +1,9 @@ -let config = require('config') -let kue = require('kue') -let queue = kue.createQueue(Object.assign(config.kue, { redis: config.redis })) - -let es = require('elasticsearch') -const esConfig = { - host: { - host: config.elasticsearch.host, - port: config.elasticsearch.port, - protocol: config.elasticsearch.protocol - }, - log: 'debug', - apiVersion: config.elasticsearch.apiVersion, - requestTimeout: 1000 * 60 * 60, - keepAlive: false -} -if (config.elasticsearch.user) { - esConfig.httpAuth = config.elasticsearch.user + ':' + config.elasticsearch.password -} -let client = new es.Client(esConfig) +const config = require('config') +const kue = require('kue') +const queue = kue.createQueue(Object.assign(config.kue, { redis: config.redis })) +const es = require('../src/lib/elastic') +const client = es.getClient(config) exports.db = client exports.queue = queue diff --git a/migrations/1513602693128-create_new_index.js b/migrations/1513602693128-create_new_index.js deleted file mode 100644 index e818bf92..00000000 --- a/migrations/1513602693128-create_new_index.js +++ /dev/null @@ -1,13 +0,0 @@ -'use strict' - -const config = require('config') -const common = require('./.common') -const createIndex = require('../src/lib/elastic').createIndex - -module.exports.up = next => { - createIndex(common.db, config.elasticsearch.indices[0], next) -} - -module.exports.down = next => { - next() -} diff --git a/migrations/1513602868543-change_field_types.js b/migrations/1513602868543-change_field_types.js deleted file mode 100644 index 0d5527fd..00000000 --- a/migrations/1513602868543-change_field_types.js +++ /dev/null @@ -1,13 +0,0 @@ -'use strict' - -const config = require('config') -const common = require('./.common') -const putMappings = require('../src/lib/elastic').putMappings - -module.exports.up = next => { - putMappings(common.db, config.elasticsearch.indices[0], next) -} - -module.exports.down = next => { - next() -} diff --git a/migrations/1513603161654-reindex.js b/migrations/1513603161654-reindex.js deleted file mode 100644 index 711625f0..00000000 --- a/migrations/1513603161654-reindex.js +++ /dev/null @@ -1,16 +0,0 @@ -'use strict' - -const config = require('config') -const common = require('./.common') -const reIndex = require('../src/lib/elastic').reIndex - -module.exports.up = next => { - let finalIndexVersion = config.elasticsearch.indices[0] - let tempIndexVersion = config.elasticsearch.indices[0] + '_temp' - - reIndex(common.db, tempIndexVersion, finalIndexVersion, next) -} - -module.exports.down = next => { - next() -} diff --git a/migrations/1513603418700-delete_old_index.js b/migrations/1513603418700-delete_old_index.js deleted file mode 100644 index 0f1e658d..00000000 --- a/migrations/1513603418700-delete_old_index.js +++ /dev/null @@ -1,14 +0,0 @@ -'use strict' - -const deleteIndex = require('../src/lib/elastic').deleteIndex -const config = require('config') -const common = require('./.common') - -module.exports.up = next => { - let tempIndexVersion = config.elasticsearch.indices[0] + '_temp' - deleteIndex(common.db, tempIndexVersion, next) -} - -module.exports.down = next => { - next() -} diff --git a/package.json b/package.json index aeba37f4..4add9289 100644 --- a/package.json +++ b/package.json @@ -13,16 +13,22 @@ "build:copy:schema": "cpx 'src/**/*.schema*.json' dist", "start": "pm2 start ecosystem.json $PM2_ARGS", "db": "node scripts/db.js", - "seo": "node scripts/seo.js", + "db7": "node scripts/db7.js", "cache": "node ./scripts/cache", "mage2vs": "node scripts/mage2vs.js", - "restore": "node scripts/elastic.js restore", + "restore": "node scripts/elastic.js restore && npm run db rebuild", + "restore7": "node scripts/elastic7.js restore --output-index=vue_storefront_catalog && npm run db7 rebuild --indexName=vue_storefront_catalog", + "restore7_it": "npm run restore7 -- --input-file=var/catalog_it.json --output-index=vue_storefront_catalog_it && npm run db7 rebuild -- --indexName=vue_storefront_catalog_it", + "restore7_de": "npm run restore7 -- --input-file=var/catalog_de.json --output-index=vue_storefront_catalog_de && npm run db7 rebuild -- --indexName=vue_storefront_catalog_de", "restore_it": "npm run restore -- --input-file=var/catalog_it.json --output-index=vue_storefront_catalog_it && npm run db rebuild -- --indexName=vue_storefront_catalog_it", "restore_de": "npm run restore -- --input-file=var/catalog_de.json --output-index=vue_storefront_catalog_de && npm run db rebuild -- --indexName=vue_storefront_catalog_de", "restore2main": "npm run restore -- --output-index=vue_storefront_catalog", "dump": "node scripts/elastic.js dump", "dump_it": "npm run dump -- --input-index=vue_storefront_catalog_it --output-file=var/catalog_it.json", "dump_de": "npm run dump -- --input-index=vue_storefront_catalog_de --output-file=var/catalog_de.json", + "dump7": "node scripts/elastic7.js dump", + "dump7_it": "npm run dump7 -- --input-index=vue_storefront_catalog_it --output-file=var/catalog_it.json", + "dump7_de": "npm run dump7 -- --input-index=vue_storefront_catalog_de --output-file=var/catalog_de.json", "kue": "node scripts/kue.js", "kue-dashboard": "npm run kue dashboard -- --port=3050", "o2m": "node src/worker/order_to_magento2.js start", @@ -46,6 +52,7 @@ "author": "Piotr Karwatka ", "license": "MIT", "dependencies": { + "@elastic/elasticsearch": "^7.3.0", "@google-cloud/storage": "^3.0.3", "ajv": "^6.4.0", "ajv-keywords": "^3.4.0", @@ -55,8 +62,7 @@ "compression": "^1.7.2", "config": "^1.30.0", "cors": "^2.8.4", - "elasticdump": "^3.3.12", - "@elastic/elasticsearch": "5.6.*", + "elasticdump": "^6.9.1", "email-check": "^1.1.0", "express": "^4.16.3", "fs-extra": "^8.1.0", @@ -80,6 +86,7 @@ "nodemailer": "^4.6.8", "oauth-1.0a": "^1.0.1", "pm2": "^2.10.4", + "query-string": "^6.8.3", "redis-tag-cache": "^1.2.1", "request": "^2.85.0", "request-promise-native": "^1.0.5", diff --git a/scripts/db.js b/scripts/db.js index ec4938e5..cc26b7c2 100644 --- a/scripts/db.js +++ b/scripts/db.js @@ -17,13 +17,17 @@ program const tempIndex = originalIndex + '_' + Math.round(+new Date() / 1000) console.log(`** Creating temporary index ${tempIndex}`) - es.createIndex(common.db, tempIndex, (err) => { + es.createIndex(common.db, tempIndex, '', (err) => { if (err) { console.log(err) } console.log(`** Putting the mappings on top of ${tempIndex}`) es.putMappings(common.db, tempIndex, (err) => { + if (err) { + console.error(err.meta ? err.meta : err) + } + console.log(`** We will reindex ${originalIndex} with the current schema`) es.reIndex(common.db, originalIndex, tempIndex, (err) => { if (err) { @@ -58,7 +62,7 @@ program console.log('** Hello! I am going to create NEW ES index') const indexName = cmd.indexName - es.createIndex(common.db, indexName, (err) => { + es.createIndex(common.db, indexName, '', (err) => { if (err) { console.log(err) } diff --git a/scripts/db7.js b/scripts/db7.js new file mode 100644 index 00000000..1d7bacbc --- /dev/null +++ b/scripts/db7.js @@ -0,0 +1,99 @@ +const program = require('commander') +const config = require('config') +const common = require('../migrations/.common') +const es = require('../src/lib/elastic') + +program + .command('rebuild') + .option('-i|--indexName ', 'name of the Elasticsearch index', config.elasticsearch.indices[0]) + .action((cmd) => { // TODO: add parallel processing + if (!cmd.indexName) { + console.error('error: indexName must be specified'); + process.exit(1); + } + + let waitingCounter = 0 + for (var indexTypeIterator in config.elasticsearch.indexTypes) { + var collectionName = config.elasticsearch.indexTypes[indexTypeIterator] + console.log(config.elasticsearch.indexTypes); + console.log('** Hello! I am going to rebuild EXISTING ES index to fix the schema') + const originalIndex = cmd.indexName + '_' + collectionName; + const tempIndex = originalIndex + '_' + Math.round(+new Date() / 1000) + + console.log(`** Creating temporary index ${tempIndex}`) + es.createIndex(common.db, tempIndex, collectionName, (err) => { + if (err) { + console.log(err) + } + + console.log(`** We will reindex ${originalIndex} with the current schema`) + es.reIndex(common.db, originalIndex, tempIndex, (err) => { + if (err) { + console.log(err) + } + + console.log('** Removing the original index') + es.deleteIndex(common.db, originalIndex, (err) => { + if (err) { + console.log(err) + } + + console.log('** Creating alias') + es.putAlias(common.db, tempIndex, originalIndex, (err) => { + waitingCounter++ + }) + }) + }) + }) + } + setInterval(() => { + if (waitingCounter === config.elasticsearch.indexTypes.length) process.exit(0) + }, 1000) + }) + +program + .command('new') + .option('-i|--indexName ', 'name of the Elasticsearch index', config.elasticsearch.indices[0]) + .action((cmd) => { // TODO: add parallel processing + if (!cmd.indexName) { + console.error('error: indexName must be specified'); + process.exit(1); + } + + console.log('** Hello! I am going to create NEW ES index') + const indexName = cmd.indexName + + let waitingCounter = 0 + for (var indexTypeIterator in config.elasticsearch.indexTypes) { + var collectionName = config.elasticsearch.indexTypes[indexTypeIterator] + es.createIndex(common.db, indexName + '_' + collectionName, collectionName, (err) => { + if (err) { + console.log(err) + } + waitingCounter++ + }) + } + setInterval(() => { + if (waitingCounter === config.elasticsearch.indexTypes.length) process.exit(0) + }, 1000) + }) + +program + .on('command:*', () => { + console.error('Invalid command: %s\nSee --help for a list of available commands.', program.args.join(' ')); + process.exit(1); + }); + +program + .parse(process.argv) + +process.on('unhandledRejection', (reason, p) => { + console.error(`Unhandled Rejection at: Promise ${p}, reason: ${reason}`) + // application specific logging, throwing an error, or other logic here +}) + +process.on('uncaughtException', (exception) => { + console.error(exception) // to see your exception details in the console + // if you are on production, maybe you can send the exception details to your + // email as well ? +}) diff --git a/scripts/elastic.js b/scripts/elastic.js index e87aa8f9..9663b402 100644 --- a/scripts/elastic.js +++ b/scripts/elastic.js @@ -24,7 +24,7 @@ program program .command('restore') - .option('--output-index ', 'index to restore', 'vue_storefront_catalog_temp') + .option('--output-index ', 'index to restore', 'vue_storefront_catalog') .option('--input-file ', 'path to the input file', 'var/catalog.json') .action((cmd) => { const output = `http://${config.host}:${config.port}/${cmd.outputIndex}` diff --git a/scripts/elastic7.js b/scripts/elastic7.js new file mode 100644 index 00000000..efd7e604 --- /dev/null +++ b/scripts/elastic7.js @@ -0,0 +1,72 @@ +const program = require('commander') +const config = require('config').elasticsearch +const spawnSync = require('child_process').spawnSync + +function stdOutErr (stdout, stderr) { + if (stdout.length > 0) { console.log(stdout.toString('utf8')) } + if (stderr.length > 0) { console.error(stderr.toString('utf8')) } +} + +program + .command('dump') + .option('--input-index ', 'index to dump', 'vue_storefront_catalog') + .option('--output-file ', 'path to the output file', 'var/catalog.json') + .action((cmd) => { + if (!cmd.outputFile.indexOf('.json')) { + console.error('Please provide the file name ending with .json ext.') + } + for (var indexTypeIterator in config.indexTypes) { + var collectionName = config.indexTypes[indexTypeIterator] + var inputIndex = `${cmd.inputIndex}_${collectionName}` + var outputFile = cmd.outputFile.replace('.json', `_${collectionName}.json`) + const input = `http://${config.host}:${config.port}/${inputIndex}` + + const child = spawnSync('node', [ + 'node_modules/elasticdump/bin/elasticdump', + `--input=${input}`, + `--output=${outputFile}` + ]) + stdOutErr(child.stdout, child.stderr) + } + }) + +program + .command('restore') + .option('--output-index ', 'index to restore', 'vue_storefront_catalog') + .option('--input-file ', 'path to the input file', 'var/catalog.json') + .action((cmd) => { + if (!cmd.inputFile.indexOf('.json')) { + console.error('Please provide the file name ending with .json ext.') + } + for (var indexTypeIterator in config.indexTypes) { + var collectionName = config.indexTypes[indexTypeIterator] + var outputIndex = `${cmd.outputIndex}_${collectionName}` + var inputFile = cmd.inputFile.replace('.json', `_${collectionName}.json`) + + const output = `http://${config.host}:${config.port}/${outputIndex}` + + const child = spawnSync('node', [ + 'node_modules/elasticdump/bin/elasticdump', + `--input=${inputFile}`, + `--output=${output}` + ]) + stdOutErr(child.stdout, child.stderr) + } + }) + +program + .on('command:*', () => { + console.error('Invalid command: %s\nSee --help for a list of available commands.', program.args.join(' ')); + process.exit(1); + }); + +program + .parse(process.argv) + +process.on('unhandledRejection', (reason, p) => { + console.log('Unhandled Rejection at: Promise ', p, ' reason: ', reason) +}) + +process.on('uncaughtException', (exception) => { + console.log(exception) +}) diff --git a/scripts/seo.js b/scripts/seo.js deleted file mode 100644 index e5ba1de9..00000000 --- a/scripts/seo.js +++ /dev/null @@ -1,92 +0,0 @@ -const program = require('commander') -const config = require('config') -const common = require('../migrations/.common') -const es = require('../src/lib/elastic') - -const fs = require('fs') -const path = require('path') - -program - .command('redirects') - .option('-i|--indexName ', 'name of the Elasticsearch index', config.elasticsearch.indices[0]) - .option('-f|--oldFormat ', 'use the old format', true) - .option('-s|--size ', 'size', 10000) - .option('-d|--dest ', 'dest', './') - .action(async (cmd) => { - if (!cmd.indexName) { - console.error('error: indexName must be specified'); - process.exit(1); - } - - console.log('** This command will output url redirects from original Magento2 format to Vue Storefront format') - console.log('** Please check the nginx map module options on how to use this map format: https://serverfault.com/a/441517') - console.log('** The urls will be mapped to the new VS Url format. Please make sure You have "products.useMagentoUrlKeys=true" in Your vue-storefront/config/local.json') - - try { - const redirects = [] - - await es.search(common.db, { - index: cmd.indexName, - type: 'product', - size: cmd.size, - body: {} - }).then((resp) => { - const hits = resp.hits.hits - - for (const hit of hits) { - const product = hit._source - if (cmd.oldFormat) { - redirects.push(`/${product.url_key} /p/${decodeURIComponent(product.sku)}/${product.url_key}/${decodeURIComponent(product.sku)};`) - } else { - redirects.push(`/${product.url_key} /${product.url_key}/${decodeURIComponent(product.sku)};`) - } - } - }) - - await es.search(common.db, { - index: cmd.indexName, - type: 'category', - size: cmd.size, - body: {} - }).then((resp) => { - const hits = resp.hits.hits - for (const hit of hits) { - const category = hit._source - if (cmd.oldFormat) { - redirects.push(`/${category.url_path} /c/${category.url_key};`) - } else { - redirects.push(`/${category.url_path} /${category.url_key};`) - } - } - }) - - fs.writeFileSync( - path.join(path.resolve(cmd.dest), `${cmd.indexName}-redirects`), - redirects.join('\n') - ) - process.exit(0) - } catch (error) { - console.error(error) - process.exit(1) - } - }) - -program - .on('command:*', () => { - console.error('Invalid command: %s\nSee --help for a list of available commands.', program.args.join(' ')); - process.exit(1); - }); - -program - .parse(process.argv) - -process.on('unhandledRejection', (reason, p) => { - console.error(`Unhandled Rejection at: Promise ${p}, reason: ${reason}`) - // application specific logging, throwing an error, or other logic here -}) - -process.on('uncaughtException', (exception) => { - console.error(exception) // to see your exception details in the console - // if you are on production, maybe you can send the exception details to your - // email as well ? -}) diff --git a/src/api/catalog.js b/src/api/catalog.js index 856a4a80..27f1215d 100755 --- a/src/api/catalog.js +++ b/src/api/catalog.js @@ -1,6 +1,7 @@ import jwt from 'jwt-simple'; import request from 'request'; import ProcessorFactory from '../processor/factory'; +import { adjustBackendProxyUrl } from '../lib/elastic' import cache from '../lib/cache-instance' import { sha3_224 } from 'js-sha3' @@ -16,25 +17,6 @@ function _cacheStorageHandler (config, result, hash, tags) { } } -function _updateQueryStringParameter (uri, key, value) { - var re = new RegExp('([?&])' + key + '=.*?(&|#|$)', 'i'); - if (uri.match(re)) { - if (value) { - return uri.replace(re, '$1' + key + '=' + value + '$2'); - } else { - return uri.replace(re, '$1' + '$2'); - } - } else { - var hash = ''; - if (uri.indexOf('#') !== -1) { - hash = uri.replace(/.*#/, '#'); - uri = uri.replace(/#.*/, ''); - } - var separator = uri.indexOf('?') !== -1 ? '&' : '?'; - return uri + separator + key + '=' + value + hash; - } -} - export default ({config, db}) => function (req, res, body) { let groupId = null @@ -48,7 +30,6 @@ export default ({config, db}) => function (req, res, body) { if (req.method === 'GET') { if (req.query.request) { // this is in fact optional requestBody = JSON.parse(decodeURIComponent(req.query.request)) - console.log(requestBody) } } else { requestBody = req.body @@ -73,12 +54,7 @@ export default ({config, db}) => function (req, res, body) { } // pass the request to elasticsearch - let url = config.elasticsearch.host + ':' + config.elasticsearch.port + (req.query.request ? _updateQueryStringParameter(req.url, 'request', null) : req.url) - - if (!url.startsWith('http')) { - url = config.elasticsearch.protocol + '://' + url - } - + const elasticBackendUrl = adjustBackendProxyUrl(req, indexName, entityType, config) const userToken = requestBody.groupToken // Decode token and get group id @@ -105,7 +81,7 @@ export default ({config, db}) => function (req, res, body) { const reqHash = sha3_224(`${JSON.stringify(requestBody)}${req.url}`) const dynamicRequestHandler = () => { request({ // do the elasticsearch request - uri: url, + uri: elasticBackendUrl, method: req.method, body: requestBody, json: true, diff --git a/src/api/extensions/elastic-stock/index.js b/src/api/extensions/elastic-stock/index.js index ebf74f36..12281470 100644 --- a/src/api/extensions/elastic-stock/index.js +++ b/src/api/extensions/elastic-stock/index.js @@ -1,10 +1,6 @@ -import { - apiStatus -} from '../../../lib/util'; -import { - Router -} from 'express'; -const es = require('elasticsearch') +import { apiStatus, getCurrentStoreView, getCurrentStoreCode } from '../../../lib/util'; +import { getClient as getElasticClient, adjustQuery } from '../../../lib/elastic' +import { Router } from 'express'; const bodybuilder = require('bodybuilder') module.exports = ({ @@ -13,39 +9,17 @@ module.exports = ({ }) => { let api = Router(); - const getElasticClient = (config) => { - const esConfig = { // as we're runing tax calculation and other data, we need a ES indexer - host: { - host: config.elasticsearch.host, - port: config.elasticsearch.port, - protocol: config.elasticsearch.protocol - }, - apiVersion: config.elasticsearch.apiVersion, - requestTimeout: 5000 - } - if (config.elasticsearch.user) { - esConfig.httpAuth = config.elasticsearch.user + ':' + config.elasticsearch.password - } - return new es.Client(esConfig) - } - const getStockList = (storeCode, skus) => { - let storeView = config - if (storeCode && config.storeViews[storeCode]) { - storeView = config.storeViews[storeCode] - } - - const esQuery = { + let storeView = getCurrentStoreView(storeCode) + const esQuery = adjustQuery({ index: storeView.elasticsearch.indexName, // current index name type: 'product', _source_includes: ['stock'], body: bodybuilder().filter('terms', 'visibility', [2, 3, 4]).andFilter('term', 'status', 1).andFilter('terms', 'sku', skus).build() - } + }, 'product', config) return getElasticClient(config).search(esQuery).then((products) => { // we're always trying to populate cache - when online console.log(products) - return products.hits.hits.map(el => { - return el._source.stock - }) + return products.hits.hits.map(el => { return el._source.stock }) }).catch(err => { console.error(err) }) @@ -59,7 +33,7 @@ module.exports = ({ return apiStatus(res, 'sku parameter is required', 500); } - getStockList(req.params.storeCode, [req.params.sku]).then((result) => { + getStockList(getCurrentStoreCode(req), [req.params.sku]).then((result) => { if (result && result.length > 0) { apiStatus(res, result[0], 200); } else { @@ -71,13 +45,13 @@ module.exports = ({ }) /** - * GET get stock item - 2nd version with the query url parameter - */ + * GET get stock item - 2nd version with the query url parameter + */ api.get('/check', (req, res) => { if (!req.query.sku) { return apiStatus(res, 'sku parameter is required', 500); } - getStockList(req.params.storeCode, [req.query.sku]).then((result) => { + getStockList(getCurrentStoreCode(req), [req.query.sku]).then((result) => { if (result && result.length > 0) { apiStatus(res, result[0], 200); } else { @@ -89,14 +63,14 @@ module.exports = ({ }) /** - * GET get stock item list by skus (comma separated) - */ + * GET get stock item list by skus (comma separated) + */ api.get('/list', (req, res) => { if (!req.query.skus) { return apiStatus(res, 'skus parameter is required', 500); } const skuArray = req.query.skus.split(',') - getStockList(req.params.storeCode, skuArray).then((result) => { + getStockList(getCurrentStoreCode(req), skuArray).then((result) => { if (result && result.length > 0) { apiStatus(res, result, 200); } else { diff --git a/src/api/extensions/gls-parcelshop-dk/cli.js b/src/api/extensions/gls-parcelshop-dk/cli.js deleted file mode 100644 index bf680fdc..00000000 --- a/src/api/extensions/gls-parcelshop-dk/cli.js +++ /dev/null @@ -1,87 +0,0 @@ -const config = require('config') - -let numCPUs = require('os').cpus().length; - -const CommandRouter = require('command-router'); -const cli = CommandRouter(); - -cli.option({ - name: 'partitions', - default: numCPUs, - type: Number -}); - -cli.command('buildcache', () => { - const soap = require('soap') - const elasticsearch = require('elasticsearch'); - const esConfig = { - host: { - host: config.elasticsearch.host, - port: config.elasticsearch.port, - protocol: config.elasticsearch.protocol - }, - log: 'debug', - apiVersion: config.elasticsearch.apiVersion, - requestTimeout: 1000 * 60 * 60, - keepAlive: false - } - if (config.elasticsearch.user) { - esConfig.httpAuth = config.elasticsearch.user + ':' + config.elasticsearch.password - } - const esClient = new elasticsearch.Client(esConfig); - - esClient.indices.exists({index: 'gls_parcelshop_dk'}, (err, resp, status) => { - if (!resp) { - esClient.indices.create({ - index: 'gls_parcelshop_dk' - }, (err, resp, status) => { - if (err) { - console.log(err); - } else { - console.log('create', resp); - } - }); - } else { - console.log('Index gls_parcelshop_dk, already exists') - } - }) - - let url = 'http://www.gls.dk/webservices_v2/wsPakkeshop.asmx?wsdl' - let bulk = [] - - soap.createClient(url, (err, client) => { - client.GetAllParcelShops({}, (err, result) => { - if (result.GetAllParcelShopsResult) { - for (let i = 0; i < result.GetAllParcelShopsResult.PakkeshopData.length; i++) { - let droppoint = result.GetAllParcelShopsResult.PakkeshopData[i] - - bulk.push( - { - index: { - _index: 'gls_parcelshop_dk', - _type: 'droppoint', - _id: droppoint.Number - } - } - ) - bulk.push(droppoint) - } - } - - esClient.deleteByQuery({ - index: 'gls_parcelshop_dk', - type: 'droppoint' - }, (err, resp, status) => { - console.log(resp); - - esClient.bulk({ - body: bulk - }, (err, resp, status) => { - console.log(resp); - }) - }) - }) - }) -}); - -cli.parse(process.argv); diff --git a/src/api/extensions/gls-parcelshop-dk/index.js b/src/api/extensions/gls-parcelshop-dk/index.js deleted file mode 100644 index 0d4caacf..00000000 --- a/src/api/extensions/gls-parcelshop-dk/index.js +++ /dev/null @@ -1,90 +0,0 @@ -import {apiStatus} from '../../../lib/util'; -import {Router} from 'express'; - -const request = require('request'); - -module.exports = ({config, db}) => { - let glsApi = Router(); - - glsApi.get('/zipcode/:zipcode', (req, res) => { - if (req.params.zipcode.length !== 4) { - return apiStatus(res, {error: 'Invalild zipcode length.'}, 200) - } - - let returnData = {}; - - returnData.extraFields = { - pickup_name: { - title: 'Name of person who will pick up the package', - required: true - } - } - returnData.droppoints = [] - - // pass the request to elasticsearch - const url = config.elasticsearch.protocol + '://' + config.elasticsearch.host + ':' + config.elasticsearch.port + '/gls_parcelshop_dk/droppoint/_search'; - - request({ // do the elasticsearch request - uri: url, - method: 'POST', - body: { - 'query': { - 'term': { - 'ZipCode': { - 'value': req.params.zipcode - } - } - } - }, - json: true, - auth: { - user: config.elasticsearch.user, - pass: config.elasticsearch.password - } - }, (_err, _res, _resBody) => { - if (_resBody && _resBody.hits && _resBody.hits.hits) { - let latitude = 0; - let longitude = 0; - - const results = _resBody.hits.hits - let length = 0 - - for (let i = 0; i < results.length; i++) { - const droppoint = results[i]._source - - returnData.droppoints.push({ - id: droppoint.Number, - name: droppoint.CompanyName, - streetname: droppoint.Streetname, - streetname2: droppoint.Streetname2, - zipcode: droppoint.ZipCode, - country: droppoint.CountryCodeISO3166A2, - city: droppoint.CityName, - icon: {url: 'assets/gls.png'}, - position: { - lat: parseFloat(droppoint.Latitude), - lng: parseFloat(droppoint.Longitude) - } - }) - - longitude += parseFloat(droppoint.Longitude) - latitude += parseFloat(droppoint.Latitude) - length = i + 1 - } - - returnData.center = { - position: { - lat: parseFloat(latitude) / length, - lng: parseFloat(longitude) / length - } - } - - return apiStatus(res, returnData, 200) - } - - return apiStatus(res, {error: 'Invalid zipcode.'}, 200) - }) - }) - - return glsApi -} diff --git a/src/api/extensions/postnord-parcelshop-dk/index.js b/src/api/extensions/postnord-parcelshop-dk/index.js deleted file mode 100644 index a4f322cb..00000000 --- a/src/api/extensions/postnord-parcelshop-dk/index.js +++ /dev/null @@ -1,77 +0,0 @@ -import {apiStatus} from '../../../lib/util'; -import {Router} from 'express'; - -const request = require('request'); - -module.exports = ({config, db}) => { - let glsApi = Router(); - - glsApi.get('/zipcode/:zipcode', (req, res) => { - if (req.params.zipcode.length !== 4) { - return apiStatus(res, {error: 'Invalild zipcode length.'}, 200) - } - - let returnData = {}; - - returnData.extraFields = { - pickup_name: { - title: 'Name of person who will pick up the package', - required: true - } - } - returnData.droppoints = [] - - const url = 'https://api2.postnord.com/rest/businesslocation/v1/servicepoint/findNearestByAddress.json?apikey=' + config.postnordParcehshopDKApiKey + '&countryCode=DK&postalCode=' + req.params.zipcode - - request({ // - uri: url, - method: 'GET', - json: true - }, (_err, _res, _resBody) => { - console.log(_resBody) - if (_resBody && _resBody.servicePointInformationResponse.servicePoints) { - let latitude = 0; - let longitude = 0; - - const results = _resBody.servicePointInformationResponse.servicePoints - let length = 0 - - for (let i = 0; i < results.length; i++) { - const droppoint = results[i] - - returnData.droppoints.push({ - id: droppoint.servicePointId, - name: droppoint.name, - streetname: droppoint.deliveryAddress.streetName + ' ' + droppoint.deliveryAddress.streetNumber, - streetname2: 'Pakkeboks: ' + droppoint.servicePointId, - zipcode: droppoint.deliveryAddress.postalCode, - country: droppoint.deliveryAddress.countryCode, - city: droppoint.deliveryAddress.city, - icon: {url: 'assets/postnord.png'}, - position: { - lat: parseFloat(droppoint.coordinate.northing), - lng: parseFloat(droppoint.coordinate.easting) - } - }) - - latitude += parseFloat(droppoint.coordinate.northing) - longitude += parseFloat(droppoint.coordinate.easting) - length = i + 1 - } - - returnData.center = { - position: { - lat: parseFloat(latitude) / length, - lng: parseFloat(longitude) / length - } - } - - return apiStatus(res, returnData, 200) - } - - return apiStatus(res, {error: 'Invalid zipcode.'}, 200) - }) - }) - - return glsApi -} diff --git a/src/api/sync.js b/src/api/sync.js index 09b7e91a..2859126a 100755 --- a/src/api/sync.js +++ b/src/api/sync.js @@ -1,4 +1,5 @@ -import { apiStatus, apiError } from '../lib/util'; import { Router } from 'express'; +import { apiStatus } from '../lib/util'; import { Router } from 'express'; +import * as redis from '../lib/redis' export default ({ config, db }) => { let syncApi = Router(); @@ -7,14 +8,7 @@ export default ({ config, db }) => { * GET get stock item */ syncApi.get('/order/:order_id', (req, res) => { - const Redis = require('redis'); - let redisClient = Redis.createClient(config.redis); // redis client - redisClient.on('error', (err) => { // workaround for https://github.com/NodeRedis/node_redis/issues/713 - redisClient = Redis.createClient(config.redis); // redis client - }); - if (config.redis.auth) { - redisClient.auth(config.redis.auth); - } + const redisClient = db.getRedisClient(config) redisClient.get('order$$id$$' + req.param('order_id'), (err, reply) => { const orderMetaData = JSON.parse(reply) diff --git a/src/api/user.js b/src/api/user.js index 5a2e17da..69210381 100755 --- a/src/api/user.js +++ b/src/api/user.js @@ -126,7 +126,7 @@ export default ({config, db}) => { return apiStatus(res, 'Invalid e-mail provided!', 500) } - userProxy.resetPassword({ email: req.body.email, template: "email_reset", websiteId }).then((result) => { + userProxy.resetPassword({ email: req.body.email, template: 'email_reset', websiteId }).then((result) => { apiStatus(res, result, 200); }).catch(err => { apiError(res, err); diff --git a/src/db.js b/src/db.js index e27ef5fd..b16dafa0 100755 --- a/src/db.js +++ b/src/db.js @@ -1,4 +1,12 @@ +import config from 'config' +import * as redis from './lib/redis' +import * as elastic from './lib/elastic' + export default callback => { // connect to a database if needed, then pass it to `callback`: - callback(); + const dbContext = { + getRedisClient: () => redis.getClient(config), + getElasticClient: () => elastic.getClient(config) + } + callback(dbContext); } diff --git a/src/graphql/elasticsearch/attribute/resolver.js b/src/graphql/elasticsearch/attribute/resolver.js index 324aed4c..1ff28a73 100644 --- a/src/graphql/elasticsearch/attribute/resolver.js +++ b/src/graphql/elasticsearch/attribute/resolver.js @@ -2,20 +2,22 @@ import config from 'config'; import client from '../client'; import { buildQuery } from '../queryBuilder'; import { getIndexName } from '../mapping' +import { adjustQuery } from './../../../lib/elastic' -async function listAttributes (attributes, context, rootValue, _source_include) { +async function listAttributes (attributes, context, rootValue, _sourceIncludes) { let query = buildQuery({ filter: attributes, pageSize: 150, type: 'attribute' }); - if (!_source_include) { - _source_include = config.entities.attribute.includeFields + if (_sourceIncludes === undefined) { + _sourceIncludes = config.entities.attribute.includeFields } - const response = await client.search({ + const esQuery = { index: getIndexName(context.req.url), - type: config.elasticsearch.indexTypes[3], body: query, - _source_include - }); + _sourceIncludes + }; + + const response = await client.search(adjustQuery(esQuery, 'attribute', config)); return response.body; } diff --git a/src/graphql/elasticsearch/catalog/processor.js b/src/graphql/elasticsearch/catalog/processor.js index 28266e90..04af4017 100755 --- a/src/graphql/elasticsearch/catalog/processor.js +++ b/src/graphql/elasticsearch/catalog/processor.js @@ -10,7 +10,7 @@ export default function esResultsProcessor (response, esRequest, entityType, ind resultProcessor = factory.getAdapter('default', indexName, esRequest, response) // get the default processor } - resultProcessor.process(response.hits.hits) + resultProcessor.process(response.body.hits.hits) .then((result) => { resolve(result) }) diff --git a/src/graphql/elasticsearch/catalog/resolver.js b/src/graphql/elasticsearch/catalog/resolver.js index 5142dd0d..3d4a80e1 100644 --- a/src/graphql/elasticsearch/catalog/resolver.js +++ b/src/graphql/elasticsearch/catalog/resolver.js @@ -3,6 +3,7 @@ import client from '../client'; import { buildQuery } from '../queryBuilder'; import esResultsProcessor from './processor' import { getIndexName } from '../mapping' +import { adjustQuery } from './../../../lib/elastic' const resolver = { Query: { @@ -11,11 +12,11 @@ const resolver = { } }; -async function list (filter, sort, currentPage, pageSize, search, context, rootValue, _source_include, _source_exclude) { +async function list (filter, sort, currentPage, pageSize, search, context, rootValue, _sourceInclude, _sourceExclude) { let _req = { query: { - _source_exclude, - _source_include + _source_exclude: _sourceExclude, + _source_include: _sourceInclude } } @@ -30,32 +31,29 @@ async function list (filter, sort, currentPage, pageSize, search, context, rootV let esIndex = getIndexName(context.req.url) - let esResponse = await client.search({ + let esResponse = await client.search(adjustQuery({ index: esIndex, - type: config.elasticsearch.indexTypes[0], body: query, - _source_include, - _source_exclude - }); - - const { body } = esResponse + _sourceInclude, + _sourceExclude + }, 'product', config)); - if (body && body.hits && body.hits.hits) { + if (esResponse && esResponse.body.hits && esResponse.body.hits.hits) { // process response result (caluclate taxes etc...) - body.hits.hits = await esResultsProcessor(body, _req, config.elasticsearch.indexTypes[0], esIndex); + esResponse.body.hits.hits = await esResultsProcessor(esResponse, _req, config.elasticsearch.indexTypes[0], esIndex); } let response = {} // Process hits response.items = [] - body.hits.hits.forEach(hit => { + esResponse.body.hits.hits.forEach(hit => { let item = hit._source item._score = hit._score response.items.push(item) }); - response.total_count = body.hits.total + response.total_count = esResponse.body.hits.total // Process sort let sortOptions = [] @@ -68,7 +66,7 @@ async function list (filter, sort, currentPage, pageSize, search, context, rootV ) } - response.aggregations = body.aggregations + response.aggregations = esResponse.aggregations response.sort_fields = {} if (sortOptions.length > 0) { response.sort_fields.options = sortOptions diff --git a/src/graphql/elasticsearch/category/resolver.js b/src/graphql/elasticsearch/category/resolver.js index 2ae7780b..877456ca 100644 --- a/src/graphql/elasticsearch/category/resolver.js +++ b/src/graphql/elasticsearch/category/resolver.js @@ -1,23 +1,23 @@ import config from 'config'; import client from '../client'; -import { buildQuery } from '../queryBuilder'; +import { buildQuery } from '../queryBuilder' import { getIndexName } from '../mapping' +import { adjustQuery } from './../../../lib/elastic' -async function list (search, filter, currentPage, pageSize = 200, sort, context, rootValue, _source_include) { +async function list (search, filter, currentPage, pageSize = 200, sort, context, rootValue, _sourceIncludes) { let query = buildQuery({ search, filter, currentPage, pageSize, sort, type: 'category' }); - if (!_source_include) { - _source_include = config.entities.category.includeFields + if (_sourceIncludes === undefined) { + _sourceIncludes = config.entities.category.includeFields } - const response = await client.search({ + const response = await client.search(adjustQuery({ index: getIndexName(context.req.url), - type: config.elasticsearch.indexTypes[1], body: query, - _source_include - }); + _sourceIncludes + }, 'category', config)); - return response; + return response.body; } const resolver = { diff --git a/src/graphql/elasticsearch/client.js b/src/graphql/elasticsearch/client.js index 1b8877e8..e93f1b6e 100644 --- a/src/graphql/elasticsearch/client.js +++ b/src/graphql/elasticsearch/client.js @@ -1,8 +1,4 @@ import config from 'config'; -import elasticsearch from '@elastic/elasticsearch'; +import es from '../../lib/elastic' -const client = new elasticsearch.Client({ - node: `${config.elasticsearch.protocol}://${config.elasticsearch.host}:${config.elasticsearch.port}` -}); - -export default client; +export default es.getClient(config) diff --git a/src/graphql/elasticsearch/cms/resolver.js b/src/graphql/elasticsearch/cms/resolver.js index 9f3b51fb..386f0e08 100644 --- a/src/graphql/elasticsearch/cms/resolver.js +++ b/src/graphql/elasticsearch/cms/resolver.js @@ -1,19 +1,19 @@ import config from 'config'; import client from '../client'; import { buildQuery } from '../queryBuilder'; +import { getIndexName } from '../mapping' +import { adjustQuery } from './../../../lib/elastic' -async function list (filter, currentPage, pageSize = 200, _source_include, type) { - let query = buildQuery({ filter, currentPage, pageSize, _source_include, type }); +async function list (filter, currentPage, pageSize = 200, _sourceInclude, type, context) { + let query = buildQuery({ filter, currentPage, pageSize, _sourceInclude, type }); - const response = await client.search({ - index: config.elasticsearch.indices[0], + const response = await client.search(adjustQuery({ + index: getIndexName(context.req.url), body: query, - type, - _source_include - }); - const items = buildItems(response.body) + _sourceInclude + }, 'cms', config)); - return items; + return buildItems(response.body) } function buildItems (response) { @@ -29,12 +29,12 @@ function buildItems (response) { const resolver = { Query: { - cmsPages: (_, { filter, currentPage, pageSize, _sourceInclude, type = 'cms_page' }) => - list(filter, currentPage, pageSize, _sourceInclude, type), - cmsBlocks: (_, { filter, currentPage, pageSize, _sourceInclude, type = 'cms_block' }) => - list(filter, currentPage, pageSize, _sourceInclude, type), - cmsHierarchies: (_, { filter, currentPage, pageSize, _sourceInclude, type = 'cms_hierarchy' }) => - list(filter, currentPage, pageSize, _sourceInclude, type) + cmsPages: (_, { filter, currentPage, pageSize, _sourceInclude, type = 'cms_page' }, context) => + list(filter, currentPage, pageSize, _sourceInclude, type, context), + cmsBlocks: (_, { filter, currentPage, pageSize, _sourceInclude, type = 'cms_block' }, context) => + list(filter, currentPage, pageSize, _sourceInclude, type, context), + cmsHierarchies: (_, { filter, currentPage, pageSize, _sourceInclude, type = 'cms_hierarchy' }, context) => + list(filter, currentPage, pageSize, _sourceInclude, type, context) } }; diff --git a/src/graphql/elasticsearch/queryBuilder.js b/src/graphql/elasticsearch/queryBuilder.js index 0d76f7fb..8eb3927b 100644 --- a/src/graphql/elasticsearch/queryBuilder.js +++ b/src/graphql/elasticsearch/queryBuilder.js @@ -104,7 +104,7 @@ function applyFilters (filter, query, type) { } if (hasCatalogFilters) { - query = query.orFilter('bool', (b) => attrFilterBuilder(b)) + query = query.filterMinimumShouldMatch(1).orFilter('bool', (b) => attrFilterBuilder(b)) .orFilter('bool', (b) => attrFilterBuilder(b, optionsPrefix).filter('match', 'type_id', 'configurable')); // the queries can vary based on the product type } diff --git a/src/graphql/elasticsearch/review/resolver.js b/src/graphql/elasticsearch/review/resolver.js index 97bff500..886ed5c2 100644 --- a/src/graphql/elasticsearch/review/resolver.js +++ b/src/graphql/elasticsearch/review/resolver.js @@ -2,18 +2,18 @@ import config from 'config'; import client from '../client'; import { buildQuery } from '../queryBuilder'; import { getIndexName } from '../mapping' +import { adjustQuery } from './../../../lib/elastic' async function list (search, filter, currentPage, pageSize = 200, sort, context, rootValue, _sourceInclude) { let query = buildQuery({ search, filter, currentPage, pageSize, sort, type: 'review' }); - const response = await client.search({ + const response = await client.search(adjustQuery({ index: getIndexName(context.req.url), - type: config.elasticsearch.indexTypes[5], body: query, _sourceInclude - }); + }, 'review', config)); - return response; + return response.body; } const resolver = { diff --git a/src/graphql/elasticsearch/taxrule/resolver.js b/src/graphql/elasticsearch/taxrule/resolver.js index 0f84dce3..7a9aa4fd 100644 --- a/src/graphql/elasticsearch/taxrule/resolver.js +++ b/src/graphql/elasticsearch/taxrule/resolver.js @@ -2,17 +2,17 @@ import config from 'config'; import client from '../client'; import { buildQuery } from '../queryBuilder'; import { getIndexName } from '../mapping' +import { adjustQuery } from './../../../lib/elastic' async function taxrule (filter, context, rootValue) { let query = buildQuery({ filter, pageSize: 150, type: 'taxrule' }); - const response = await client.search({ + const response = await client.search(adjustQuery({ index: getIndexName(context.req.url), - type: config.elasticsearch.indexTypes[4], body: query - }); + }, 'taxrule', config)); - return response; + return response.body; } const resolver = { diff --git a/src/lib/elastic.js b/src/lib/elastic.js index 327936ea..84b8ad22 100644 --- a/src/lib/elastic.js +++ b/src/lib/elastic.js @@ -2,11 +2,87 @@ const path = require('path') const _ = require('lodash') const fs = require('fs'); const jsonFile = require('jsonfile') +const es = require('@elastic/elasticsearch') + +function _updateQueryStringParameter (uri, key, value) { + var re = new RegExp('([?&])' + key + '=.*?(&|#|$)', 'i'); + if (uri.match(re)) { + if (value) { + return uri.replace(re, '$1' + key + '=' + value + '$2'); + } else { + return uri.replace(re, '$1' + '$2'); + } + } else { + var hash = ''; + if (uri.indexOf('#') !== -1) { + hash = uri.replace(/.*#/, '#'); + uri = uri.replace(/#.*/, ''); + } + var separator = uri.indexOf('?') !== -1 ? '&' : '?'; + return uri + separator + key + '=' + value + hash; + } +} + +function adjustIndexName (indexName, entityType, config) { + if (parseInt(config.elasticsearch.apiVersion) < 6) { + return indexName + } else { + return `${indexName}_${entityType}` + } +} + +function adjustBackendProxyUrl (req, indexName, entityType, config) { + let url + if (parseInt(config.elasticsearch.apiVersion) < 6) { // legacy for ES 5 + url = config.elasticsearch.host + ':' + config.elasticsearch.port + (req.query.request ? _updateQueryStringParameter(req.url, 'request', null) : req.url) + } else { + const queryString = require('query-string'); + const parsedQuery = queryString.parseUrl(req.url).query + parsedQuery._source_includes = parsedQuery._source_include + parsedQuery._source_excludes = parsedQuery._source_exclude + delete parsedQuery._source_exclude + delete parsedQuery._source_include + delete parsedQuery.request + url = config.elasticsearch.host + ':' + config.elasticsearch.port + '/' + adjustIndexName(indexName, entityType, config) + '/_search?' + queryString.stringify(parsedQuery) + } + if (!url.startsWith('http')) { + url = config.elasticsearch.protocol + '://' + url + } + return url +} + +function adjustQuery (esQuery, entityType, config) { + if (parseInt(config.elasticsearch.apiVersion) < 6) { + esQuery.type = entityType + } + esQuery.index = adjustIndexName(esQuery.index, entityType, config) + return esQuery +} + +function getHits (result) { + if (result.body) { // differences between ES5 andd ES7 + return result.body.hits.hits + } else { + return result.hits.hits + } +} + +function getClient (config) { + const esConfig = { // as we're runing tax calculation and other data, we need a ES indexer + node: `${config.elasticsearch.protocol}://${config.elasticsearch.host}:${config.elasticsearch.port}`, + apiVersion: config.elasticsearch.apiVersion, + requestTimeout: 5000 + } + if (config.elasticsearch.user) { + esConfig.auth = config.elasticsearch.user + ':' + config.elasticsearch.password + } + return new es.Client(esConfig) +} function putAlias (db, originalName, aliasName, next) { let step2 = () => { db.indices.putAlias({ index: originalName, name: aliasName }).then(result => { - console.log('Index alias created', result) + console.log('Index alias created') }).then(next).catch(err => { console.log(err.message) next() @@ -16,7 +92,7 @@ function putAlias (db, originalName, aliasName, next) { index: aliasName, name: originalName }).then((result) => { - console.log('Public index alias deleted', result) + console.log('Public index alias deleted') step2() }).catch((err) => { console.log('Public index alias does not exists', err.message) @@ -32,15 +108,24 @@ function deleteIndex (db, indexName, next) { db.indices.delete({ 'index': indexName }).then((res) => { - console.dir(res, { depth: null, colors: true }) next() }).catch(err => { - console.error(err) - next(err) + return db.indices.deleteAlias({ + index: '*', + name: indexName + }).then((result) => { + console.log('Public index alias deleted') + next() + }).catch((err) => { + console.log('Public index alias does not exists', err.message) + next() + }) }) } + function reIndex (db, fromIndexName, toIndexName, next) { db.reindex({ + wait_for_completion: true, waitForCompletion: true, body: { 'source': { @@ -51,28 +136,24 @@ function reIndex (db, fromIndexName, toIndexName, next) { } } }).then(res => { - console.dir(res, { depth: null, colors: true }) next() }).catch(err => { - console.error(err) next(err) }) } -function createIndex (db, indexName, next) { - let indexSchema = loadSchema('index'); +function createIndex (db, indexName, collectionName, next) { + let indexSchema = collectionName ? loadSchema(collectionName) : loadSchema('index', '5.6'); /** index schema is used only for 5.6 */ const step2 = () => { db.indices.delete({ 'index': indexName }).then(res1 => { - console.dir(res1, { depth: null, colors: true }) db.indices.create( { 'index': indexName, 'body': indexSchema }).then(res2 => { - console.dir(res2, { depth: null, colors: true }) next() }).catch(err => { console.error(err) @@ -84,7 +165,6 @@ function createIndex (db, indexName, next) { 'index': indexName, 'body': indexSchema }).then(res2 => { - console.dir(res2, { depth: null, colors: true }) next() }).catch(err => { console.error(err) @@ -97,7 +177,7 @@ function createIndex (db, indexName, next) { index: '*', name: indexName }).then((result) => { - console.log('Public index alias deleted', result) + console.log('Public index alias deleted') step2() }).catch((err) => { console.log('Public index alias does not exists', err.message) @@ -109,83 +189,77 @@ function createIndex (db, indexName, next) { * Load the schema definition for particular entity type * @param {String} entityType */ -function loadSchema (entityType) { - let elasticSchema = jsonFile.readFileSync(path.join(__dirname, '../../config/elastic.schema.' + entityType + '.json')); +function loadSchema (entityType, apiVersion = '7.1') { + const rootSchemaPath = path.join(__dirname, '../../config/elastic.schema.' + entityType + '.json') + if (!fs.existsSync(rootSchemaPath)) { + return null + } + let schemaContent = jsonFile.readFileSync(rootSchemaPath) + let elasticSchema = parseInt(apiVersion) < 6 ? schemaContent : Object.assign({}, { mappings: schemaContent }); const extensionsPath = path.join(__dirname, '../../config/elastic.schema.' + entityType + '.extension.json'); if (fs.existsSync(extensionsPath)) { - let elasticSchemaExtensions = jsonFile.readFileSync(extensionsPath); + schemaContent = jsonFile.readFileSync(extensionsPath) + let elasticSchemaExtensions = parseInt(apiVersion) < 6 ? schemaContent : Object.assign({}, { mappings: schemaContent }); elasticSchema = _.merge(elasticSchema, elasticSchemaExtensions) // user extensions } return elasticSchema } +// this is deprecated just for ES 5.6 function putMappings (db, indexName, next) { - let productSchema = loadSchema('product'); - let categorySchema = loadSchema('category'); - let taxruleSchema = loadSchema('taxrule'); - let attributeSchema = loadSchema('attribute'); - let pageSchema = loadSchema('page'); - let blockSchema = loadSchema('block'); - - db.indices.putMapping({ - index: indexName, - type: 'product', - body: productSchema - }).then(res1 => { - console.dir(res1, { depth: null, colors: true }) + let productSchema = loadSchema('product', '5.6'); + let categorySchema = loadSchema('category', '5.6'); + let taxruleSchema = loadSchema('taxrule', '5.6'); + let attributeSchema = loadSchema('attribute', '5.6'); + let pageSchema = loadSchema('cms_page', '5.6'); + let blockSchema = loadSchema('cms_block', '5.6'); + Promise.all([ + db.indices.putMapping({ + index: indexName, + type: 'product', + body: productSchema + }), db.indices.putMapping({ index: indexName, type: 'taxrule', body: taxruleSchema - }).then(res2 => { - console.dir(res2, { depth: null, colors: true }) - - db.indices.putMapping({ - index: indexName, - type: 'attribute', - body: attributeSchema - }).then(res3 => { - console.dir(res3, { depth: null, colors: true }) - db.indices.putMapping({ - index: indexName, - type: 'cms_page', - body: pageSchema - }).then(res4 => { - console.dir(res4, { depth: null, colors: true }) - db.indices.putMapping({ - index: indexName, - type: 'cms_block', - body: blockSchema - }).then(res5 => { - console.dir(res5, { depth: null, colors: true }) - db.indices.putMapping({ - index: indexName, - type: 'category', - body: categorySchema - }).then(res6 => { - console.dir(res6, { depth: null, colors: true }) - next() - }) - }) - }) - }).catch(err3 => { - throw new Error(err3) - }) - }).catch(err2 => { - throw new Error(err2) + }), + db.indices.putMapping({ + index: indexName, + type: 'attribute', + body: attributeSchema + }), + db.indices.putMapping({ + index: indexName, + type: 'cms_page', + body: pageSchema + }), + db.indices.putMapping({ + index: indexName, + type: 'cms_block', + body: blockSchema + }), + db.indices.putMapping({ + index: indexName, + type: 'category', + body: categorySchema }) - }).catch(err1 => { - console.error(err1) - next(err1) - }) + ]).then(values => values.forEach(res => console.dir(res.body, { depth: null, colors: true }))) + .then(next) + .catch(next) } module.exports = { - putMappings, putAlias, createIndex, deleteIndex, reIndex, - search + search, + adjustQuery, + adjustBackendProxyUrl, + getClient, + getHits, + adjustIndexName, + putMappings } diff --git a/src/lib/redis.js b/src/lib/redis.js new file mode 100644 index 00000000..ba2f3fed --- /dev/null +++ b/src/lib/redis.js @@ -0,0 +1,16 @@ +import Redis from 'redis' + +/** + * Return Redis Client + * @param {config} config + */ +export function getClient (config) { + let redisClient = Redis.createClient(config.redis); // redis client + redisClient.on('error', (err) => { // workaround for https://github.com/NodeRedis/node_redis/issues/713 + redisClient = Redis.createClient(config.redis); // redis client + }); + if (config.redis.auth) { + redisClient.auth(config.redis.auth); + } + return redisClient +} diff --git a/src/lib/util.js b/src/lib/util.js index 415bb02f..78f3738d 100755 --- a/src/lib/util.js +++ b/src/lib/util.js @@ -2,6 +2,38 @@ import config from 'config'; import crypto from 'crypto'; const algorithm = 'aes-256-ctr'; +/** + * Get current store code from parameter passed from the vue storefront frotnend app + * @param {Express.Request} req + */ +export function getCurrentStoreCode (req) { + if (req.headers['x-vs-store-code']) { + return req.headers['x-vs-store-code'] + } + if (req.query.storeCode) { + return req.query.storeCode + } + return null +} + +/** + * Get the config.storeViews[storeCode] + * @param {string} storeCode + */ +export function getCurrentStoreView (storeCode = null) { + let storeView = { // current, default store + tax: config.tax, + i18n: config.i18n, + elasticsearch: config.elasticsearch, + storeCode: null, + storeId: config.defaultStoreCode && config.defaultStoreCode !== '' ? config.storeViews[config.defaultStoreCode].storeId : 1 + } + if (storeCode && config.storeViews[storeCode]) { + storeView = config.storeViews[storeCode] + } + return storeView // main config is used as default storeview +} + /** Creates a callback that proxies node callback style arguments to an Express Response object. * @param {express.Response} res Express HTTP Response * @param {number} [status=200] Status code to send on success diff --git a/src/platform/magento1/tax.js b/src/platform/magento1/tax.js index 5890d48f..f4bc8336 100644 --- a/src/platform/magento1/tax.js +++ b/src/platform/magento1/tax.js @@ -1,8 +1,8 @@ import AbstractTaxProxy from '../abstract/tax' import { calculateProductTax, checkIfTaxWithUserGroupIsActive, getUserGroupIdToUse } from '../../lib/taxcalc' import TierHelper from '../../helpers/priceTiers' -const es = require('elasticsearch') -const bodybuilder = require('bodybuilder') +import bodybuilder from 'bodybuilder' +import es from '../../lib/elastic' class TaxProxy extends AbstractTaxProxy { constructor (config, entityType, indexName, taxCountry, taxRegion = '', sourcePriceInclTax = null, finalPriceInclTax = null) { @@ -50,7 +50,6 @@ class TaxProxy extends AbstractTaxProxy { this._taxRegion = taxRegion this._sourcePriceInclTax = sourcePriceInclTax this._finalPriceInclTax = finalPriceInclTax - console.log('Taxes will be calculated for', taxCountry, taxRegion, sourcePriceInclTax) this.taxFor = this.taxFor.bind(this) } @@ -82,28 +81,14 @@ class TaxProxy extends AbstractTaxProxy { inst.applyTierPrices(productList, groupId) if (this._config.tax.calculateServerSide) { - const esConfig = { // as we're runing tax calculation and other data, we need a ES indexer - host: { - host: this._config.elasticsearch.host, - port: this._config.elasticsearch.port, - protocol: this._config.elasticsearch.protocol - }, - log: 'debug', - apiVersion: this._config.elasticsearch.apiVersion, - requestTimeout: 5000 - } - if (this._config.elasticsearch.user) { - esConfig.httpAuth = this._config.elasticsearch.user + ':' + this._config.elasticsearch.password - } - - const client = new es.Client(esConfig) - const esQuery = { + const client = es.getClient(this._config) + const esQuery = es.adjustQuery({ index: this._indexName, - type: 'taxrule', body: bodybuilder() - } - client.search(esQuery).then((taxClasses) => { // we're always trying to populate cache - when online - inst._taxClasses = taxClasses.hits.hits.map(el => { return el._source }) + }, 'taxrule', this._config) + + client.search(esQuery).then((result) => { // we're always trying to populate cache - when online + inst._taxClasses = es.getHits(result).map(el => { return el._source }) for (let item of productList) { const isActive = checkIfTaxWithUserGroupIsActive(inst._storeConfigTax) if (isActive) { diff --git a/src/platform/magento1/util.js b/src/platform/magento1/util.js index 28f04f7b..07a7de02 100644 --- a/src/platform/magento1/util.js +++ b/src/platform/magento1/util.js @@ -1,4 +1,5 @@ import config from 'config' +import { getCurrentStoreCode } from '../../lib/util' /** * Adjust the config provided to the current store selected via request params * @param Object config configuration @@ -6,15 +7,7 @@ import config from 'config' */ export function multiStoreConfig (apiConfig, req) { let confCopy = Object.assign({}, apiConfig) - let storeCode = '' - - if (req.headers['x-vs-store-code']) { - storeCode = req.headers['x-vs-store'] - } - if (req.query.storeCode) { - storeCode = req.query.storeCode - } - + let storeCode = getCurrentStoreCode(req) if (storeCode && config.availableStores.indexOf(storeCode) >= 0) { if (config.magento1['api_' + storeCode]) { confCopy = Object.assign({}, config.magento1['api_' + storeCode]) // we're to use the specific api configuration - maybe even separate magento instance diff --git a/src/platform/magento2/o2m.js b/src/platform/magento2/o2m.js index c5c51851..83cb8000 100644 --- a/src/platform/magento2/o2m.js +++ b/src/platform/magento2/o2m.js @@ -2,14 +2,8 @@ const Magento2Client = require('magento2-rest-client').Magento2Client; const config = require('config') -const Redis = require('redis'); -let redisClient = Redis.createClient(config.redis); // redis client -redisClient.on('error', (err) => { // workaround for https://github.com/NodeRedis/node_redis/issues/713 - redisClient = Redis.createClient(config.redis); // redis client -}); -if (config.redis.auth) { - redisClient.auth(config.redis.auth); -} +const redis = require('../../lib/redis'); +const redisClient = redis.getClient(config) const countryMapper = require('../../lib/countrymapper') const Ajv = require('ajv'); // json validator const fs = require('fs'); @@ -230,14 +224,16 @@ function processSingleOrder (orderData, config, job, done, logger = console) { logger.info(THREAD_ID + '[OK] Order placed with ORDER ID', result); logger.debug(THREAD_ID + result) - redisClient.set('order$$id$$' + orderData.order_id, JSON.stringify({ - platform_order_id: result, - transmited: true, - transmited_at: new Date(), - platform: 'magento2', - order: orderData - })); - redisClient.set('order$$totals$$' + orderData.order_id, JSON.stringify(result[1])); + if (orderData.order_id) { + redisClient.set('order$$id$$' + orderData.order_id, JSON.stringify({ + platform_order_id: result, + transmited: true, + transmited_at: new Date(), + platform: 'magento2', + order: orderData + })); + redisClient.set('order$$totals$$' + orderData.order_id, JSON.stringify(result[1])); + } let orderIncrementId = null; api.orders.incrementIdById(result).then(result => { orderIncrementId = result.increment_id diff --git a/src/platform/magento2/tax.js b/src/platform/magento2/tax.js index ffd2ab2b..175cd456 100644 --- a/src/platform/magento2/tax.js +++ b/src/platform/magento2/tax.js @@ -1,8 +1,8 @@ import AbstractTaxProxy from '../abstract/tax' import { calculateProductTax, checkIfTaxWithUserGroupIsActive, getUserGroupIdToUse } from '../../lib/taxcalc'; import TierHelper from '../../helpers/priceTiers' -const es = require('elasticsearch') -const bodybuilder = require('bodybuilder') +import es from '../../lib/elastic' +import bodybuilder from 'bodybuilder' class TaxProxy extends AbstractTaxProxy { constructor (config, entityType, indexName, taxCountry, taxRegion = '', sourcePriceInclTax = null, finalPriceInclTax = null) { @@ -49,7 +49,6 @@ class TaxProxy extends AbstractTaxProxy { this._taxRegion = taxRegion this._sourcePriceInclTax = sourcePriceInclTax this._finalPriceInclTax = finalPriceInclTax - console.log('Taxes will be calculated for', taxCountry, taxRegion, sourcePriceInclTax) this.taxFor = this.taxFor.bind(this) } @@ -81,28 +80,13 @@ class TaxProxy extends AbstractTaxProxy { inst.applyTierPrices(productList, groupId) if (this._config.tax.calculateServerSide) { - const esConfig = { // as we're runing tax calculation and other data, we need a ES indexer - host: { - host: this._config.elasticsearch.host, - port: this._config.elasticsearch.port, - protocol: this._config.elasticsearch.protocol - }, - log: 'debug', - apiVersion: this._config.elasticsearch.apiVersion, - requestTimeout: 5000 - } - if (this._config.elasticsearch.user) { - esConfig.httpAuth = this._config.elasticsearch.user + ':' + this._config.elasticsearch.password - } - - let client = new es.Client(esConfig) - const esQuery = { + const client = es.getClient(this._config) + const esQuery = es.adjustQuery({ index: this._indexName, - type: 'taxrule', body: bodybuilder() - } - client.search(esQuery).then((taxClasses) => { // we're always trying to populate cache - when online - inst._taxClasses = taxClasses.hits.hits.map(el => { return el._source }) + }, 'taxrule', this._config) + client.search(esQuery).then((body) => { // we're always trying to populate cache - when online + inst._taxClasses = es.getHits(body).map(el => { return el._source }) for (let item of productList) { const isActive = checkIfTaxWithUserGroupIsActive(inst._storeConfigTax) if (isActive) { diff --git a/src/platform/magento2/util.js b/src/platform/magento2/util.js index 644d5a16..b6975b4d 100644 --- a/src/platform/magento2/util.js +++ b/src/platform/magento2/util.js @@ -1,4 +1,5 @@ import config from 'config' +import { getCurrentStoreCode } from '../../lib/util' /** * Adjust the config provided to the current store selected via request params * @param Object config configuration @@ -6,14 +7,7 @@ import config from 'config' */ export function multiStoreConfig (apiConfig, req) { let confCopy = Object.assign({}, apiConfig) - let storeCode = '' - - if (req.headers['x-vs-store-code']) { - storeCode = req.headers['x-vs-store'] - } - if (req.query.storeCode) { - storeCode = req.query.storeCode - } + let storeCode = getCurrentStoreCode(req) if (storeCode && config.availableStores.indexOf(storeCode) >= 0) { if (config.magento2['api_' + storeCode]) { diff --git a/src/processor/default.ts b/src/processor/default.ts index 2ccc089b..4da1886b 100644 --- a/src/processor/default.ts +++ b/src/processor/default.ts @@ -19,10 +19,7 @@ class HmacProcessor { } public process (items) { - console.debug('Entering HmacProcessor::process') - const processorChain = [] - return new Promise((resolve, reject) => { const rs = items.map((item) => { if (this._req.query._source_exclude && this._req.query._source_exclude.indexOf('sgn') < 0) { diff --git a/src/processor/product.js b/src/processor/product.js index 20b9ba03..f83f0ced 100644 --- a/src/processor/product.js +++ b/src/processor/product.js @@ -13,10 +13,7 @@ class ProductProcessor { } process (items, groupId = null) { - console.debug('Entering ProductProcessor::process') - const processorChain = [] - const platform = this._config.platform const factory = new PlatformFactory(this._config, this._req) const taxCountry = this._config.tax.defaultCountry diff --git a/var/catalog_attribute.json b/var/catalog_attribute.json new file mode 100644 index 00000000..a0609167 --- /dev/null +++ b/var/catalog_attribute.json @@ -0,0 +1,75 @@ +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"77","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":true,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":77,"attribute_code":"price","frontend_input":"price","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":77,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"82","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":82,"attribute_code":"weight","frontend_input":"weight","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Weight","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Weight","is_unique":"0","validation_rules":[],"id":82,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"94","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":94,"attribute_code":"news_from_date","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Set Product as New from Date","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate","is_unique":"0","validation_rules":[],"id":94,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"80","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":80,"attribute_code":"special_to_date","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Special Price To Date","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime","is_unique":"0","validation_rules":[],"id":80,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"99","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":99,"attribute_code":"visibility","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Not Visible Individually","value":"1"},{"label":"Catalog","value":"2"},{"label":"Search","value":"3"},{"label":"Catalog, Search","value":"4"}],"is_user_defined":false,"default_frontend_label":"Visibility","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Catalog\\Model\\Product\\Visibility","default_value":"4","is_unique":"0","validation_rules":[],"id":99,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"107","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"global","attribute_id":107,"attribute_code":"required_options","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":107,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"102","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":102,"attribute_code":"custom_design_to","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Active To","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime","is_unique":"0","validation_rules":[],"id":102,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"95","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":95,"attribute_code":"news_to_date","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Set Product as New to Date","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime","is_unique":"0","validation_rules":[],"id":95,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"104","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":104,"attribute_code":"page_layout","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"No layout updates","value":""},{"label":"Empty","value":"empty"},{"label":"1 column","value":"1column"},{"label":"2 columns with left bar","value":"2columns-left"},{"label":"2 columns with right bar","value":"2columns-right"},{"label":"3 columns","value":"3columns"}],"is_user_defined":false,"default_frontend_label":"Layout","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Layout","is_unique":"0","validation_rules":[],"id":104,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"111","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"store","attribute_id":111,"attribute_code":"thumbnail_label","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Thumbnail Label","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":111,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"124","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":124,"attribute_code":"sku_type","frontend_input":"boolean","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Dynamic SKU","frontend_labels":null,"backend_type":"int","default_value":"0","is_unique":"0","validation_rules":[],"id":124,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"114","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","bundle","grouped","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"website","attribute_id":114,"attribute_code":"country_of_manufacture","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Afghanistan","value":"AF"},{"label":"Ã…land Islands","value":"AX"},{"label":"Albania","value":"AL"},{"label":"Algeria","value":"DZ"},{"label":"American Samoa","value":"AS"},{"label":"Andorra","value":"AD"},{"label":"Angola","value":"AO"},{"label":"Anguilla","value":"AI"},{"label":"Antarctica","value":"AQ"},{"label":"Antigua & Barbuda","value":"AG"},{"label":"Argentina","value":"AR"},{"label":"Armenia","value":"AM"},{"label":"Aruba","value":"AW"},{"label":"Australia","value":"AU"},{"label":"Austria","value":"AT"},{"label":"Azerbaijan","value":"AZ"},{"label":"Bahamas","value":"BS"},{"label":"Bahrain","value":"BH"},{"label":"Bangladesh","value":"BD"},{"label":"Barbados","value":"BB"},{"label":"Belarus","value":"BY"},{"label":"Belgium","value":"BE"},{"label":"Belize","value":"BZ"},{"label":"Benin","value":"BJ"},{"label":"Bermuda","value":"BM"},{"label":"Bhutan","value":"BT"},{"label":"Bolivia","value":"BO"},{"label":"Bosnia & Herzegovina","value":"BA"},{"label":"Botswana","value":"BW"},{"label":"Bouvet Island","value":"BV"},{"label":"Brazil","value":"BR"},{"label":"British Indian Ocean Territory","value":"IO"},{"label":"British Virgin Islands","value":"VG"},{"label":"Brunei","value":"BN"},{"label":"Bulgaria","value":"BG"},{"label":"Burkina Faso","value":"BF"},{"label":"Burundi","value":"BI"},{"label":"Cambodia","value":"KH"},{"label":"Cameroon","value":"CM"},{"label":"Canada","value":"CA"},{"label":"Cape Verde","value":"CV"},{"label":"Cayman Islands","value":"KY"},{"label":"Central African Republic","value":"CF"},{"label":"Chad","value":"TD"},{"label":"Chile","value":"CL"},{"label":"China","value":"CN"},{"label":"Christmas Island","value":"CX"},{"label":"Cocos (Keeling) Islands","value":"CC"},{"label":"Colombia","value":"CO"},{"label":"Comoros","value":"KM"},{"label":"Congo - Brazzaville","value":"CG"},{"label":"Congo - Kinshasa","value":"CD"},{"label":"Cook Islands","value":"CK"},{"label":"Costa Rica","value":"CR"},{"label":"Côte d’Ivoire","value":"CI"},{"label":"Croatia","value":"HR"},{"label":"Cuba","value":"CU"},{"label":"Cyprus","value":"CY"},{"label":"Czech Republic","value":"CZ"},{"label":"Denmark","value":"DK"},{"label":"Djibouti","value":"DJ"},{"label":"Dominica","value":"DM"},{"label":"Dominican Republic","value":"DO"},{"label":"Ecuador","value":"EC"},{"label":"Egypt","value":"EG"},{"label":"El Salvador","value":"SV"},{"label":"Equatorial Guinea","value":"GQ"},{"label":"Eritrea","value":"ER"},{"label":"Estonia","value":"EE"},{"label":"Ethiopia","value":"ET"},{"label":"Falkland Islands","value":"FK"},{"label":"Faroe Islands","value":"FO"},{"label":"Fiji","value":"FJ"},{"label":"Finland","value":"FI"},{"label":"France","value":"FR"},{"label":"French Guiana","value":"GF"},{"label":"French Polynesia","value":"PF"},{"label":"French Southern Territories","value":"TF"},{"label":"Gabon","value":"GA"},{"label":"Gambia","value":"GM"},{"label":"Georgia","value":"GE"},{"label":"Germany","value":"DE"},{"label":"Ghana","value":"GH"},{"label":"Gibraltar","value":"GI"},{"label":"Greece","value":"GR"},{"label":"Greenland","value":"GL"},{"label":"Grenada","value":"GD"},{"label":"Guadeloupe","value":"GP"},{"label":"Guam","value":"GU"},{"label":"Guatemala","value":"GT"},{"label":"Guernsey","value":"GG"},{"label":"Guinea","value":"GN"},{"label":"Guinea-Bissau","value":"GW"},{"label":"Guyana","value":"GY"},{"label":"Haiti","value":"HT"},{"label":"Heard & McDonald Islands","value":"HM"},{"label":"Honduras","value":"HN"},{"label":"Hong Kong SAR China","value":"HK"},{"label":"Hungary","value":"HU"},{"label":"Iceland","value":"IS"},{"label":"India","value":"IN"},{"label":"Indonesia","value":"ID"},{"label":"Iran","value":"IR"},{"label":"Iraq","value":"IQ"},{"label":"Ireland","value":"IE"},{"label":"Isle of Man","value":"IM"},{"label":"Israel","value":"IL"},{"label":"Italy","value":"IT"},{"label":"Jamaica","value":"JM"},{"label":"Japan","value":"JP"},{"label":"Jersey","value":"JE"},{"label":"Jordan","value":"JO"},{"label":"Kazakhstan","value":"KZ"},{"label":"Kenya","value":"KE"},{"label":"Kiribati","value":"KI"},{"label":"Kuwait","value":"KW"},{"label":"Kyrgyzstan","value":"KG"},{"label":"Laos","value":"LA"},{"label":"Latvia","value":"LV"},{"label":"Lebanon","value":"LB"},{"label":"Lesotho","value":"LS"},{"label":"Liberia","value":"LR"},{"label":"Libya","value":"LY"},{"label":"Liechtenstein","value":"LI"},{"label":"Lithuania","value":"LT"},{"label":"Luxembourg","value":"LU"},{"label":"Macau SAR China","value":"MO"},{"label":"Macedonia","value":"MK"},{"label":"Madagascar","value":"MG"},{"label":"Malawi","value":"MW"},{"label":"Malaysia","value":"MY"},{"label":"Maldives","value":"MV"},{"label":"Mali","value":"ML"},{"label":"Malta","value":"MT"},{"label":"Marshall Islands","value":"MH"},{"label":"Martinique","value":"MQ"},{"label":"Mauritania","value":"MR"},{"label":"Mauritius","value":"MU"},{"label":"Mayotte","value":"YT"},{"label":"Mexico","value":"MX"},{"label":"Micronesia","value":"FM"},{"label":"Moldova","value":"MD"},{"label":"Monaco","value":"MC"},{"label":"Mongolia","value":"MN"},{"label":"Montenegro","value":"ME"},{"label":"Montserrat","value":"MS"},{"label":"Morocco","value":"MA"},{"label":"Mozambique","value":"MZ"},{"label":"Myanmar (Burma)","value":"MM"},{"label":"Namibia","value":"NA"},{"label":"Nauru","value":"NR"},{"label":"Nepal","value":"NP"},{"label":"Netherlands","value":"NL"},{"label":"New Caledonia","value":"NC"},{"label":"New Zealand","value":"NZ"},{"label":"Nicaragua","value":"NI"},{"label":"Niger","value":"NE"},{"label":"Nigeria","value":"NG"},{"label":"Niue","value":"NU"},{"label":"Norfolk Island","value":"NF"},{"label":"Northern Mariana Islands","value":"MP"},{"label":"North Korea","value":"KP"},{"label":"Norway","value":"NO"},{"label":"Oman","value":"OM"},{"label":"Pakistan","value":"PK"},{"label":"Palau","value":"PW"},{"label":"Palestinian Territories","value":"PS"},{"label":"Panama","value":"PA"},{"label":"Papua New Guinea","value":"PG"},{"label":"Paraguay","value":"PY"},{"label":"Peru","value":"PE"},{"label":"Philippines","value":"PH"},{"label":"Pitcairn Islands","value":"PN"},{"label":"Poland","value":"PL"},{"label":"Portugal","value":"PT"},{"label":"Qatar","value":"QA"},{"label":"Réunion","value":"RE"},{"label":"Romania","value":"RO"},{"label":"Russia","value":"RU"},{"label":"Rwanda","value":"RW"},{"label":"Samoa","value":"WS"},{"label":"San Marino","value":"SM"},{"label":"São Tomé & Príncipe","value":"ST"},{"label":"Saudi Arabia","value":"SA"},{"label":"Senegal","value":"SN"},{"label":"Serbia","value":"RS"},{"label":"Seychelles","value":"SC"},{"label":"Sierra Leone","value":"SL"},{"label":"Singapore","value":"SG"},{"label":"Slovakia","value":"SK"},{"label":"Slovenia","value":"SI"},{"label":"Solomon Islands","value":"SB"},{"label":"Somalia","value":"SO"},{"label":"South Africa","value":"ZA"},{"label":"South Georgia & South Sandwich Islands","value":"GS"},{"label":"South Korea","value":"KR"},{"label":"Spain","value":"ES"},{"label":"Sri Lanka","value":"LK"},{"label":"St. Barthélemy","value":"BL"},{"label":"St. Helena","value":"SH"},{"label":"St. Kitts & Nevis","value":"KN"},{"label":"St. Lucia","value":"LC"},{"label":"St. Martin","value":"MF"},{"label":"St. Pierre & Miquelon","value":"PM"},{"label":"St. Vincent & Grenadines","value":"VC"},{"label":"Sudan","value":"SD"},{"label":"Suriname","value":"SR"},{"label":"Svalbard & Jan Mayen","value":"SJ"},{"label":"Swaziland","value":"SZ"},{"label":"Sweden","value":"SE"},{"label":"Switzerland","value":"CH"},{"label":"Syria","value":"SY"},{"label":"Taiwan","value":"TW"},{"label":"Tajikistan","value":"TJ"},{"label":"Tanzania","value":"TZ"},{"label":"Thailand","value":"TH"},{"label":"Timor-Leste","value":"TL"},{"label":"Togo","value":"TG"},{"label":"Tokelau","value":"TK"},{"label":"Tonga","value":"TO"},{"label":"Trinidad & Tobago","value":"TT"},{"label":"Tunisia","value":"TN"},{"label":"Turkey","value":"TR"},{"label":"Turkmenistan","value":"TM"},{"label":"Turks & Caicos Islands","value":"TC"},{"label":"Tuvalu","value":"TV"},{"label":"Uganda","value":"UG"},{"label":"Ukraine","value":"UA"},{"label":"United Arab Emirates","value":"AE"},{"label":"United Kingdom","value":"GB"},{"label":"United States","value":"US"},{"label":"Uruguay","value":"UY"},{"label":"U.S. Outlying Islands","value":"UM"},{"label":"U.S. Virgin Islands","value":"VI"},{"label":"Uzbekistan","value":"UZ"},{"label":"Vanuatu","value":"VU"},{"label":"Vatican City","value":"VA"},{"label":"Venezuela","value":"VE"},{"label":"Vietnam","value":"VN"},{"label":"Wallis & Futuna","value":"WF"},{"label":"Western Sahara","value":"EH"},{"label":"Yemen","value":"YE"},{"label":"Zambia","value":"ZM"},{"label":"Zimbabwe","value":"ZW"}],"is_user_defined":false,"default_frontend_label":"Country of Manufacture","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Countryofmanufacture","is_unique":"0","validation_rules":[],"id":114,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"108","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":108,"attribute_code":"has_options","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":108,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"133","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":133,"attribute_code":"swatch_image","frontend_input":"media_image","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Swatch","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":133,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"105","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":105,"attribute_code":"category_ids","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Categories","frontend_labels":null,"backend_type":"static","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Category","is_unique":"0","validation_rules":[],"id":105,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"90","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":90,"attribute_code":"media_gallery","frontend_input":"gallery","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Media Gallery","frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":90,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"132","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":132,"attribute_code":"gift_message_available","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"},{"label":"Use config","value":"2"}],"is_user_defined":false,"default_frontend_label":"Allow Gift Message","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Boolean","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Boolean","is_unique":"0","validation_rules":[],"id":132,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"154","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":154,"attribute_code":"climate","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"All-Weather","value":"202"},{"label":"Cold","value":"203"},{"label":"Cool","value":"204"},{"label":"Indoor","value":"205"},{"label":"Mild","value":"206"},{"label":"Rainy","value":"207"},{"label":"Spring","value":"208"},{"label":"Warm","value":"209"},{"label":"Windy","value":"210"},{"label":"Wintry","value":"211"},{"label":"Hot","value":"212"}],"is_user_defined":true,"default_frontend_label":"Climate","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":154,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"83","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple"],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"1","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":83,"attribute_code":"manufacturer","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""}],"is_user_defined":true,"default_frontend_label":"Manufacturer","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","is_unique":"0","validation_rules":[],"id":83,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"122","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","downloadable","bundle","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":122,"attribute_code":"msrp_display_actual_price_type","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Use config","value":"0"},{"label":"On Gesture","value":"1"},{"label":"In Cart","value":"2"},{"label":"Before Order Confirmation","value":"3"}],"is_user_defined":false,"default_frontend_label":"Display Actual Price","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Boolean","source_model":"Magento\\Msrp\\Model\\Product\\Attribute\\Source\\Type\\Price","default_value":"0","is_unique":"0","validation_rules":[],"id":122,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"147","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":147,"attribute_code":"sale","frontend_input":"boolean","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"}],"is_user_defined":true,"default_frontend_label":"Sale","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean","default_value":"","is_unique":"0","validation_rules":[],"id":147,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"126","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":126,"attribute_code":"price_view","frontend_input":"select","entity_type_id":"4","is_required":true,"options":[{"label":"Price Range","value":"0"},{"label":"As Low as","value":"1"}],"is_user_defined":false,"default_frontend_label":"Price View","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Bundle\\Model\\Product\\Attribute\\Source\\Price\\View","is_unique":"0","validation_rules":[],"id":126,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"134","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"1","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":134,"attribute_code":"tax_class_id","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"None","value":"0"},{"label":"Taxable Goods","value":"2"}],"is_user_defined":false,"default_frontend_label":"Tax Class","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Tax\\Model\\TaxClass\\Source\\Product","default_value":"2","is_unique":"0","validation_rules":[],"id":134,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"127","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":127,"attribute_code":"shipment_type","frontend_input":"select","entity_type_id":"4","is_required":true,"options":[{"label":"Together","value":"0"},{"label":"Separately","value":"1"}],"is_user_defined":false,"default_frontend_label":"Ship Bundle Items","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Bundle\\Model\\Product\\Attribute\\Source\\Shipment\\Type","default_value":"0","is_unique":"0","validation_rules":[],"id":127,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"139","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":139,"attribute_code":"features_bags","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Audio Pocket","value":"69"},{"label":"Wheeled","value":"70"},{"label":"Hydration Pocket","value":"71"},{"label":"Audio Pocket","value":"72"},{"label":"Flapover","value":"73"},{"label":"Waterproof","value":"74"},{"label":"Lightweight","value":"75"},{"label":"TSA Approved","value":"76"},{"label":"Reflective","value":"77"},{"label":"Laptop Sleeve","value":"78"},{"label":"Lockable","value":"79"}],"is_user_defined":true,"default_frontend_label":"Features","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":139,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"135","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"1","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":135,"attribute_code":"activity","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Hike","value":"4"},{"label":"Outdoor","value":"5"},{"label":"Running","value":"6"},{"label":"Warmup","value":"7"},{"label":"Yoga","value":"8"},{"label":"Recreation","value":"9"},{"label":"Lounge","value":"10"},{"label":"Gym","value":"11"},{"label":"Climbing","value":"12"},{"label":"Crosstraining","value":"13"},{"label":"Post-workout","value":"14"},{"label":"Cycling","value":"15"},{"label":"Athletic","value":"16"},{"label":"Sports","value":"17"},{"label":"Hiking","value":"18"},{"label":"Overnight","value":"19"},{"label":"School","value":"20"},{"label":"Trail","value":"21"},{"label":"Travel","value":"22"},{"label":"Urban","value":"23"}],"is_user_defined":true,"default_frontend_label":"Activity","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":135,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"136","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":136,"attribute_code":"style_bags","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Backpack","value":"24"},{"label":"Luggage","value":"25"},{"label":"Duffel","value":"26"},{"label":"Messenger","value":"27"},{"label":"Laptop","value":"28"},{"label":"Exercise","value":"29"},{"label":"Tote","value":"30"}],"is_user_defined":true,"default_frontend_label":"Style Bags","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":136,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"128","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"global","attribute_id":128,"attribute_code":"links_purchased_separately","frontend_input":null,"entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Links can be purchased separately","frontend_labels":null,"backend_type":"int","is_unique":"0","validation_rules":[],"id":128,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"125","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":125,"attribute_code":"weight_type","frontend_input":"boolean","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Dynamic Weight","frontend_labels":null,"backend_type":"int","default_value":"0","is_unique":"0","validation_rules":[],"id":125,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"98","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":98,"attribute_code":"minimal_price","frontend_input":"price","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Minimal Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":98,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"93","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":93,"attribute_code":"color","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Black","value":"49"},{"label":"Blue","value":"50"},{"label":"Brown","value":"51"},{"label":"Gray","value":"52"},{"label":"Green","value":"53"},{"label":"Lavender","value":"54"},{"label":"Multi","value":"55"},{"label":"Orange","value":"56"},{"label":"Purple","value":"57"},{"label":"Red","value":"58"},{"label":"White","value":"59"},{"label":"Yellow","value":"60"}],"is_user_defined":true,"default_frontend_label":"Color","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"49","is_unique":"0","validation_rules":[],"id":93,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"97","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":97,"attribute_code":"status","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Enabled","value":"1"},{"label":"Disabled","value":"2"}],"is_user_defined":false,"default_frontend_label":"Enable Product","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Status","default_value":"1","is_unique":"0","validation_rules":[],"id":97,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"116","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":116,"attribute_code":"custom_layout","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"No layout updates","value":""},{"label":"Empty","value":"empty"},{"label":"1 column","value":"1column"},{"label":"2 columns with left bar","value":"2columns-left"},{"label":"2 columns with right bar","value":"2columns-right"},{"label":"3 columns","value":"3columns"}],"is_user_defined":false,"default_frontend_label":"New Layout","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Layout","is_unique":"0","validation_rules":[],"id":116,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"75","_score":1,"_source":{"is_wysiwyg_enabled":true,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"1","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":75,"attribute_code":"description","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Description","frontend_labels":null,"backend_type":"text","is_unique":"0","validation_rules":[],"id":75,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"73","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":true,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":73,"attribute_code":"name","frontend_input":"text","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Product Name","frontend_labels":null,"backend_type":"varchar","is_unique":"0","frontend_class":"validate-length maximum-length-255","validation_rules":[],"id":73,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"88","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":88,"attribute_code":"small_image","frontend_input":"media_image","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Small","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":88,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"100","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":100,"attribute_code":"custom_design","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"-- Please Select --","value":""},{"label":"Magento Blank","value":"1"},{"label":"Magento Luma","value":"2"}],"is_user_defined":false,"default_frontend_label":"New Theme","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Theme\\Model\\Theme\\Source\\Theme","is_unique":"0","validation_rules":[],"id":100,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"78","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":78,"attribute_code":"special_price","frontend_input":"price","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Special Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":78,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"91","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":91,"attribute_code":"old_id","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"int","is_unique":"0","validation_rules":[],"id":91,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"87","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":87,"attribute_code":"image","frontend_input":"media_image","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Base","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":87,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"109","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"store","attribute_id":109,"attribute_code":"image_label","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Image Label","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":109,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"96","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":96,"attribute_code":"gallery","frontend_input":"gallery","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Image Gallery","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":96,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"79","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":79,"attribute_code":"special_from_date","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Special Price From Date","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate","is_unique":"0","validation_rules":[],"id":79,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"103","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":103,"attribute_code":"custom_layout_update","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Layout Update XML","frontend_labels":null,"backend_type":"text","backend_model":"Magento\\Catalog\\Model\\Attribute\\Backend\\Customlayoutupdate","is_unique":"0","validation_rules":[],"id":103,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"101","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":101,"attribute_code":"custom_design_from","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Active From","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate","is_unique":"0","validation_rules":[],"id":101,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"92","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"website","attribute_id":92,"attribute_code":"tier_price","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Tier Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Tierprice","is_unique":"0","validation_rules":[],"id":92,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"106","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":106,"attribute_code":"options_container","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Product Info Column","value":"container1"},{"label":"Block after Info Column","value":"container2"}],"is_user_defined":false,"default_frontend_label":"Display Product Options In","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Catalog\\Model\\Entity\\Product\\Attribute\\Design\\Options\\Container","default_value":"container2","is_unique":"0","validation_rules":[],"id":106,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"121","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","downloadable","bundle","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":121,"attribute_code":"msrp","frontend_input":"price","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Manufacturer's Suggested Retail Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":121,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"123","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":123,"attribute_code":"price_type","frontend_input":"boolean","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Dynamic Price","frontend_labels":null,"backend_type":"int","default_value":"0","is_unique":"0","validation_rules":[],"id":123,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"113","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":113,"attribute_code":"updated_at","frontend_input":"date","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":113,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"89","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":89,"attribute_code":"thumbnail","frontend_input":"media_image","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Thumbnail","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":89,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"119","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":119,"attribute_code":"url_key","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"URL Key","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":119,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"120","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"store","attribute_id":120,"attribute_code":"url_path","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":120,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"86","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":86,"attribute_code":"meta_description","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Meta Description","frontend_labels":null,"note":"Maximum 255 chars. Meta Description should optimally be between 150-160 characters","backend_type":"varchar","is_unique":"0","validation_rules":[],"id":86,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"131","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"global","attribute_id":131,"attribute_code":"links_exist","frontend_input":null,"entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"int","default_value":"0","is_unique":"0","validation_rules":[],"id":131,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"81","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":81,"attribute_code":"cost","frontend_input":"price","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":true,"default_frontend_label":"Cost","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":81,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"129","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"store","attribute_id":129,"attribute_code":"samples_title","frontend_input":null,"entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Samples title","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":129,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"130","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"store","attribute_id":130,"attribute_code":"links_title","frontend_input":null,"entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Links title","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":130,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"141","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":141,"attribute_code":"category_gear","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Cardio","value":"85"},{"label":"Electronic","value":"86"},{"label":"Exercise","value":"87"},{"label":"Fashion","value":"88"},{"label":"Hydration","value":"89"},{"label":"Timepiece","value":"90"}],"is_user_defined":true,"default_frontend_label":"Category Gear","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":141,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"144","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":144,"attribute_code":"performance_fabric","frontend_input":"boolean","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"}],"is_user_defined":true,"default_frontend_label":"Performance Fabric","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean","default_value":"","is_unique":"0","validation_rules":[],"id":144,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"138","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":138,"attribute_code":"strap_bags","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Adjustable","value":"61"},{"label":"Cross Body","value":"62"},{"label":"Detachable","value":"63"},{"label":"Double","value":"64"},{"label":"Padded","value":"65"},{"label":"Shoulder","value":"66"},{"label":"Single","value":"67"},{"label":"Telescoping","value":"68"}],"is_user_defined":true,"default_frontend_label":"Strap/Handle","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":138,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"112","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":112,"attribute_code":"created_at","frontend_input":"date","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":112,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"85","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":85,"attribute_code":"meta_keyword","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Meta Keywords","frontend_labels":null,"backend_type":"text","is_unique":"0","validation_rules":[],"id":85,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"110","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"store","attribute_id":110,"attribute_code":"small_image_label","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Small Image Label","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":110,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"137","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":137,"attribute_code":"material","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Burlap","value":"31"},{"label":"Cocona® performance fabric","value":"143"},{"label":"Canvas","value":"32"},{"label":"Wool","value":"144"},{"label":"Cotton","value":"33"},{"label":"Fleece","value":"145"},{"label":"Faux Leather","value":"34"},{"label":"Hemp","value":"146"},{"label":"Jersey","value":"147"},{"label":"Leather","value":"35"},{"label":"LumaTech™","value":"148"},{"label":"Mesh","value":"36"},{"label":"Lycra®","value":"149"},{"label":"Nylon","value":"37"},{"label":"Microfiber","value":"150"},{"label":"Polyester","value":"38"},{"label":"Rayon","value":"39"},{"label":"Spandex","value":"151"},{"label":"HeatTec®","value":"152"},{"label":"Ripstop","value":"40"},{"label":"EverCool™","value":"153"},{"label":"Suede","value":"41"},{"label":"Foam","value":"42"},{"label":"Organic Cotton","value":"154"},{"label":"Metal","value":"43"},{"label":"TENCEL","value":"155"},{"label":"CoolTech™","value":"156"},{"label":"Plastic","value":"44"},{"label":"Khaki","value":"157"},{"label":"Rubber","value":"45"},{"label":"Linen","value":"158"},{"label":"Synthetic","value":"46"},{"label":"Stainless Steel","value":"47"},{"label":"Wool","value":"159"},{"label":"Silicone","value":"48"},{"label":"Terry","value":"160"}],"is_user_defined":true,"default_frontend_label":"Material","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":137,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"115","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":115,"attribute_code":"quantity_and_stock_status","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"In Stock","value":"1"},{"label":"Out of Stock","value":"0"}],"is_user_defined":false,"default_frontend_label":"Quantity","frontend_labels":null,"backend_type":"int","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Stock","source_model":"Magento\\CatalogInventory\\Model\\Source\\Stock","default_value":"1","is_unique":"0","validation_rules":[],"id":115,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"74","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"1","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":74,"attribute_code":"sku","frontend_input":"text","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"SKU","frontend_labels":null,"backend_type":"static","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Sku","is_unique":"1","frontend_class":"validate-length maximum-length-64","validation_rules":[],"id":74,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"146","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":146,"attribute_code":"new","frontend_input":"boolean","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"}],"is_user_defined":true,"default_frontend_label":"New","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean","default_value":"","is_unique":"0","validation_rules":[],"id":146,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"140","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":140,"attribute_code":"gender","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Men","value":"80"},{"label":"Women","value":"81"},{"label":"Boys","value":"82"},{"label":"Girls","value":"83"},{"label":"Unisex","value":"84"}],"is_user_defined":true,"default_frontend_label":"Gender","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":140,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"151","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":151,"attribute_code":"sleeve","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Sleeve","value":"161"},{"label":"Long-Sleeve","value":"162"},{"label":"Short-Sleeve","value":"163"},{"label":"Sleeveless","value":"164"},{"label":"Tank","value":"165"},{"label":"Strap","value":"166"}],"is_user_defined":true,"default_frontend_label":"Sleeve","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":151,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"76","_score":1,"_source":{"is_wysiwyg_enabled":true,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"1","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":76,"attribute_code":"short_description","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Short Description","frontend_labels":null,"backend_type":"text","is_unique":"0","validation_rules":[],"id":76,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"149","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":149,"attribute_code":"style_bottom","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Base Layer","value":"105"},{"label":"Basic","value":"106"},{"label":"Capri","value":"107"},{"label":"Compression","value":"108"},{"label":"Leggings","value":"109"},{"label":"Parachute","value":"110"},{"label":"Skort","value":"111"},{"label":"Snug","value":"112"},{"label":"Sweatpants","value":"113"},{"label":"Tights","value":"114"},{"label":"Track Pants","value":"115"},{"label":"Workout Pants","value":"116"}],"is_user_defined":true,"default_frontend_label":"Style Bottom","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":149,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"152","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":152,"attribute_code":"collar","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"N/A","value":"181"},{"label":"? zip","value":"182"},{"label":"Boat Neck","value":"183"},{"label":"Crew","value":"184"},{"label":"Full zip","value":"185"},{"label":"V-neck","value":"186"},{"label":"Ballet","value":"187"},{"label":"Scoop","value":"188"},{"label":"High Collar","value":"189"},{"label":"Stand Collar","value":"190"},{"label":"Roll Neck","value":"191"},{"label":"Square Neck","value":"192"}],"is_user_defined":true,"default_frontend_label":"Collar","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":152,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"153","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":153,"attribute_code":"pattern","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Color-Blocked","value":"193"},{"label":"Checked","value":"194"},{"label":"Color-Blocked","value":"195"},{"label":"Graphic Print","value":"196"},{"label":"Solid","value":"197"},{"label":"Solid-Highlight","value":"198"},{"label":"Striped","value":"199"},{"label":"Camo","value":"200"},{"label":"Geometric","value":"201"}],"is_user_defined":true,"default_frontend_label":"Pattern","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":153,"tsk":1568838053278}} +{"_index":"vue_storefront_catalog_attribute_1568838132","_type":"_doc","_id":"150","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":150,"attribute_code":"style_general","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Insulated","value":"117"},{"label":"Jacket","value":"118"},{"label":"Vest","value":"119"},{"label":"Lightweight","value":"120"},{"label":"Hooded","value":"121"},{"label":"Heavy Duty","value":"122"},{"label":"Rain Coat","value":"123"},{"label":"Hard Shell","value":"124"},{"label":"Soft Shell","value":"125"},{"label":"Windbreaker","value":"126"},{"label":"½ zip","value":"127"},{"label":"¼ zip","value":"128"},{"label":"Full Zip","value":"129"},{"label":"Reversible","value":"130"},{"label":"Bra","value":"131"},{"label":"Hoodie","value":"132"},{"label":"Sweatshirt","value":"133"},{"label":"Polo","value":"134"},{"label":"Tank","value":"135"},{"label":"Tee","value":"136"},{"label":"Pullover","value":"137"},{"label":"Hoodie","value":"138"},{"label":"Cardigan","value":"139"},{"label":"Henley","value":"140"},{"label":"Tunic","value":"141"},{"label":"Camisole","value":"142"}],"is_user_defined":true,"default_frontend_label":"Style General","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":150,"tsk":1568838053278}} diff --git a/var/catalog_category.json b/var/catalog_category.json new file mode 100644 index 00000000..eb7c113e --- /dev/null +++ b/var/catalog_category.json @@ -0,0 +1,39 @@ +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"38","_score":1,"_source":{"id":38,"parent_id":2,"name":"What's New","is_active":true,"position":1,"level":2,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2018-05-27 14:05:17","path":"1/2/38","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","children_count":"0","url_key":"whats-new-38","url_path":"what-is-new/whats-new-38","slug":"whats-new-38","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"37","_score":1,"_source":{"id":37,"parent_id":2,"name":"Sale","is_active":true,"position":6,"level":2,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2018-05-27 14:04:10","path":"1/2/37","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","children_count":"0","url_key":"sale-37","url_path":"sale/sale-37","slug":"sale-37","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"3","_score":1,"_source":{"id":3,"parent_id":2,"name":"Gear","is_active":true,"position":4,"level":2,"product_count":46,"children_data":[{"is_anchor":"1","is_active":true,"level":3,"product_count":14,"children_count":"0","created_at":"2017-11-06 12:16:20","url_key":"bags-4","path":"1/2/3/4","updated_at":"2017-11-06 12:16:20","children":"","parent_id":3,"available_sort_by":[],"name":"Bags","id":4,"position":1,"include_in_menu":true,"slug":"bags-4","children_data":[],"url_path":"gear/bags/bags-4"},{"is_anchor":"1","is_active":true,"level":3,"product_count":23,"children_count":"0","created_at":"2017-11-06 12:16:20","url_key":"fitness-equipment-5","path":"1/2/3/5","updated_at":"2017-11-06 12:16:20","children":"","parent_id":3,"available_sort_by":[],"name":"Fitness Equipment","id":5,"position":2,"include_in_menu":true,"slug":"fitness-equipment-5","children_data":[],"url_path":"gear/fitness-equipment/fitness-equipment-5"},{"is_anchor":"1","is_active":true,"level":3,"product_count":9,"children_count":"0","created_at":"2017-11-06 12:16:20","url_key":"watches-6","path":"1/2/3/6","updated_at":"2017-11-06 12:16:20","children":"","parent_id":3,"available_sort_by":[],"name":"Watches","id":6,"position":3,"include_in_menu":true,"slug":"watches-6","children_data":[],"url_path":"gear/watches/watches-6"}],"children":"4,5,6","created_at":"2017-11-06 12:16:19","updated_at":"2018-05-27 14:06:53","path":"1/2/3","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"3","url_key":"gear-3","url_path":"gear/gear-3","slug":"gear-3","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"20","_score":1,"_source":{"id":20,"parent_id":2,"name":"Women","is_active":true,"position":2,"level":2,"product_count":0,"children_data":[{"is_anchor":"1","is_active":true,"meta_title":"Women Tops","display_mode":"PRODUCTS","level":3,"product_count":0,"children_count":"4","created_at":"2017-11-06 12:16:41","custom_apply_to_products":"0","url_key":"tops-21","path":"1/2/20/21","meta_description":"Best women tops on vuestorefront.","updated_at":"2019-01-03 10:35:27","children":"23,24,25,26","parent_id":20,"available_sort_by":[],"name":"Tops","id":21,"position":1,"custom_use_parent_settings":"0","include_in_menu":true,"slug":"tops-21","children_data":[{"is_anchor":"1","is_active":true,"level":4,"product_count":186,"children_count":"0","created_at":"2017-11-06 12:16:41","url_key":"jackets-23","path":"1/2/20/21/23","updated_at":"2017-11-06 12:16:41","children":"","parent_id":21,"available_sort_by":[],"name":"Jackets","id":23,"position":1,"include_in_menu":true,"slug":"jackets-23","children_data":[],"url_path":"women/tops-women/jackets-women/jackets-23"},{"is_anchor":"1","is_active":true,"level":4,"product_count":182,"children_count":"0","created_at":"2017-11-06 12:16:41","url_key":"hoodies-and-sweatshirts-24","path":"1/2/20/21/24","updated_at":"2017-11-06 12:16:41","children":"","parent_id":21,"available_sort_by":[],"name":"Hoodies & Sweatshirts","id":24,"position":2,"include_in_menu":true,"slug":"hoodies-and-sweatshirts-24","children_data":[],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"is_anchor":"1","is_active":true,"level":4,"product_count":192,"children_count":"0","created_at":"2017-11-06 12:16:41","url_key":"tees-25","path":"1/2/20/21/25","updated_at":"2017-11-06 12:16:41","children":"","parent_id":21,"available_sort_by":[],"name":"Tees","id":25,"position":3,"include_in_menu":true,"slug":"tees-25","children_data":[],"url_path":"women/tops-women/tees-women/tees-25"},{"is_anchor":"1","is_active":true,"level":4,"product_count":224,"children_count":"0","created_at":"2017-11-06 12:16:41","url_key":"bras-and-tanks-26","path":"1/2/20/21/26","updated_at":"2017-11-06 12:16:41","children":"","parent_id":21,"available_sort_by":[],"name":"Bras & Tanks","id":26,"position":4,"include_in_menu":true,"slug":"bras-and-tanks-26","children_data":[],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tops-21"},{"is_anchor":"1","is_active":true,"level":3,"product_count":0,"children_count":"2","created_at":"2017-11-06 12:16:41","url_key":"bottoms-22","path":"1/2/20/22","updated_at":"2017-11-06 12:16:41","children":"27,28","parent_id":20,"available_sort_by":[],"name":"Bottoms","id":22,"position":2,"include_in_menu":true,"slug":"bottoms-22","children_data":[{"is_anchor":"1","is_active":true,"level":4,"product_count":91,"children_count":"0","created_at":"2017-11-06 12:16:41","url_key":"pants-27","path":"1/2/20/22/27","updated_at":"2017-11-06 12:16:41","children":"","parent_id":22,"available_sort_by":[],"name":"Pants","id":27,"position":1,"include_in_menu":true,"slug":"pants-27","children_data":[],"url_path":"women/bottoms-women/pants-women/pants-27"},{"is_anchor":"1","is_active":true,"level":4,"product_count":137,"children_count":"0","created_at":"2017-11-06 12:16:41","url_key":"shorts-28","path":"1/2/20/22/28","updated_at":"2017-11-06 12:16:41","children":"","parent_id":22,"available_sort_by":[],"name":"Shorts","id":28,"position":2,"include_in_menu":true,"slug":"shorts-28","children_data":[],"url_path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/bottoms-22"}],"children":"21,22","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:08:58","path":"1/2/20","available_sort_by":[],"include_in_menu":true,"description":"

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum dui sapien, bibendum ac luctus sed, lobortis id lacus. Nulla nisi augue, accumsan id sapien maximus, hendrerit vehicula elit.

","meta_title":"Women Sale","meta_description":"Fit your style with vuestorefront","display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"8","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"women-20","url_path":"women/women-20","slug":"women-20","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"9","_score":1,"_source":{"id":9,"parent_id":2,"name":"Training","is_active":true,"position":5,"level":2,"product_count":6,"children_data":[{"is_anchor":"1","is_active":true,"level":3,"product_count":6,"children_count":"0","created_at":"2017-11-06 12:16:31","url_key":"video-download-10","path":"1/2/9/10","updated_at":"2017-11-06 12:16:31","children":"","parent_id":9,"available_sort_by":[],"name":"Video Download","id":10,"position":1,"include_in_menu":true,"slug":"video-download-10","children_data":[],"url_path":"training/training-video/video-download-10"}],"children":"10","created_at":"2017-11-06 12:16:31","updated_at":"2018-05-27 14:04:30","path":"1/2/9","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"1","url_key":"training-9","url_path":"training/training-9","slug":"training-9","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"7","_score":1,"_source":{"id":7,"parent_id":2,"name":"Collections","is_active":false,"position":5,"level":2,"product_count":13,"children_data":[{"is_anchor":"1","is_active":true,"level":3,"product_count":347,"children_count":"0","created_at":"2017-11-06 12:16:20","url_key":"new-luma-yoga-collection-8","path":"1/2/7/8","updated_at":"2017-11-06 12:16:20","children":"","parent_id":7,"available_sort_by":[],"name":"New Luma Yoga Collection","id":8,"position":1,"include_in_menu":false,"slug":"new-luma-yoga-collection-8","children_data":[],"url_path":"collections/yoga-new/new-luma-yoga-collection-8"},{"is_anchor":"1","is_active":true,"level":3,"product_count":279,"children_count":"0","created_at":"2017-11-06 12:16:42","url_key":"erin-recommends-34","path":"1/2/7/34","updated_at":"2017-11-06 12:16:42","children":"","parent_id":7,"available_sort_by":[],"name":"Erin Recommends","id":34,"position":2,"include_in_menu":false,"slug":"erin-recommends-34","children_data":[],"url_path":"collections/erin-recommends/erin-recommends-34"},{"is_anchor":"1","is_active":true,"level":3,"product_count":310,"children_count":"0","created_at":"2017-11-06 12:16:42","url_key":"performance-fabrics-35","path":"1/2/7/35","updated_at":"2017-11-06 12:16:42","children":"","parent_id":7,"available_sort_by":[],"name":"Performance Fabrics","id":35,"position":3,"include_in_menu":false,"slug":"performance-fabrics-35","children_data":[],"url_path":"collections/performance-fabrics/performance-fabrics-35"},{"is_anchor":"1","is_active":true,"level":3,"product_count":247,"children_count":"0","created_at":"2017-11-06 12:16:42","url_key":"eco-friendly-36","path":"1/2/7/36","updated_at":"2017-11-06 12:16:42","children":"","parent_id":7,"available_sort_by":[],"name":"Eco Friendly","id":36,"position":4,"include_in_menu":false,"slug":"eco-friendly-36","children_data":[],"url_path":"collections/eco-friendly/eco-friendly-36"},{"is_anchor":"0","is_active":true,"display_mode":"PAGE","level":3,"product_count":0,"children_count":"0","created_at":"2017-11-06 12:17:48","url_key":"performance-sportswear-new-39","path":"1/2/7/39","updated_at":"2017-11-06 12:17:48","children":"","parent_id":7,"page_layout":"1column","available_sort_by":[],"name":"Performance Sportswear New","id":39,"position":5,"include_in_menu":false,"slug":"performance-sportswear-new-39","children_data":[],"url_path":"collections/performance-new/performance-sportswear-new-39"},{"is_anchor":"0","is_active":true,"display_mode":"PAGE","level":3,"product_count":0,"children_count":"0","created_at":"2017-11-06 12:17:48","url_key":"eco-collection-new-40","path":"1/2/7/40","updated_at":"2017-11-06 12:17:48","children":"","parent_id":7,"page_layout":"1column","available_sort_by":[],"name":"Eco Collection New","id":40,"position":6,"include_in_menu":false,"slug":"eco-collection-new-40","children_data":[],"url_path":"collections/eco-new/eco-collection-new-40"}],"children":"34,35,36,39,40,8","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:17:48","path":"1/2/7","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","children_count":"6","url_key":"collections-7","url_path":"collections/collections-7","slug":"collections-7","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"29","_score":1,"_source":{"id":29,"parent_id":2,"name":"Promotions","is_active":false,"position":6,"level":2,"product_count":0,"children_data":[{"is_anchor":"1","is_active":true,"level":3,"product_count":224,"children_count":"0","created_at":"2017-11-06 12:16:41","url_key":"women-sale-30","path":"1/2/29/30","updated_at":"2017-11-06 12:16:41","children":"","parent_id":29,"available_sort_by":[],"name":"Women Sale","id":30,"position":1,"include_in_menu":false,"slug":"women-sale-30","children_data":[],"url_path":"promotions/women-sale/women-sale-30"},{"is_anchor":"1","is_active":true,"level":3,"product_count":39,"children_count":"0","created_at":"2017-11-06 12:16:41","url_key":"men-sale-31","path":"1/2/29/31","updated_at":"2017-11-06 12:16:41","children":"","parent_id":29,"available_sort_by":[],"name":"Men Sale","id":31,"position":2,"include_in_menu":false,"slug":"men-sale-31","children_data":[],"url_path":"promotions/men-sale/men-sale-31"},{"is_anchor":"1","is_active":true,"level":3,"product_count":247,"children_count":"0","created_at":"2017-11-06 12:16:42","url_key":"pants-32","path":"1/2/29/32","updated_at":"2017-11-06 12:16:42","children":"","parent_id":29,"available_sort_by":[],"name":"Pants","id":32,"position":3,"include_in_menu":false,"slug":"pants-32","children_data":[],"url_path":"promotions/pants-all/pants-32"},{"is_anchor":"1","is_active":true,"level":3,"product_count":192,"children_count":"0","created_at":"2017-11-06 12:16:42","url_key":"tees-33","path":"1/2/29/33","updated_at":"2017-11-06 12:16:42","children":"","parent_id":29,"available_sort_by":[],"name":"Tees","id":33,"position":4,"include_in_menu":false,"slug":"tees-33","children_data":[],"url_path":"promotions/tees-all/tees-33"}],"children":"30,31,32,33","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:42","path":"1/2/29","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","children_count":"4","url_key":"promotions-29","url_path":"promotions/promotions-29","slug":"promotions-29","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"11","_score":1,"_source":{"id":11,"parent_id":2,"name":"Men","is_active":true,"position":3,"level":2,"product_count":0,"children_data":[{"is_anchor":"1","is_active":true,"level":3,"product_count":0,"children_count":"4","created_at":"2017-11-06 12:16:40","url_key":"tops-12","path":"1/2/11/12","updated_at":"2017-11-06 12:16:40","children":"14,15,16,17","parent_id":11,"available_sort_by":[],"name":"Tops","id":12,"position":1,"include_in_menu":true,"slug":"tops-12","children_data":[{"is_anchor":"1","is_active":true,"display_mode":"PRODUCTS","level":4,"product_count":176,"children_count":"0","created_at":"2017-11-06 12:16:40","description":"

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum dui sapien, bibendum ac luctus sed, lobortis id lacus. Nulla nisi augue, accumsan id sapien maximus, hendrerit vehicula elit.

","custom_apply_to_products":"0","url_key":"jackets-14","path":"1/2/11/12/14","updated_at":"2019-04-17 11:10:23","children":"","parent_id":12,"available_sort_by":[],"name":"Jackets","id":14,"position":1,"custom_use_parent_settings":"0","include_in_menu":true,"slug":"jackets-14","children_data":[],"url_path":"men/tops-men/jackets-men/jackets-14"},{"is_anchor":"1","is_active":true,"level":4,"product_count":208,"children_count":"0","created_at":"2017-11-06 12:16:40","url_key":"hoodies-and-sweatshirts-15","path":"1/2/11/12/15","updated_at":"2017-11-06 12:16:40","children":"","parent_id":12,"available_sort_by":[],"name":"Hoodies & Sweatshirts","id":15,"position":2,"include_in_menu":true,"slug":"hoodies-and-sweatshirts-15","children_data":[],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"is_anchor":"1","is_active":true,"level":4,"product_count":192,"children_count":"0","created_at":"2017-11-06 12:16:40","url_key":"tees-16","path":"1/2/11/12/16","updated_at":"2017-11-06 12:16:40","children":"","parent_id":12,"available_sort_by":[],"name":"Tees","id":16,"position":3,"include_in_menu":true,"slug":"tees-16","children_data":[],"url_path":"men/tops-men/tees-men/tees-16"},{"is_anchor":"1","is_active":true,"level":4,"product_count":102,"children_count":"0","created_at":"2017-11-06 12:16:40","url_key":"tanks-17","path":"1/2/11/12/17","updated_at":"2017-11-06 12:16:40","children":"","parent_id":12,"available_sort_by":[],"name":"Tanks","id":17,"position":4,"include_in_menu":true,"slug":"tanks-17","children_data":[],"url_path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tops-12"},{"is_anchor":"1","is_active":true,"level":3,"product_count":0,"children_count":"2","created_at":"2017-11-06 12:16:40","url_key":"bottoms-13","path":"1/2/11/13","updated_at":"2017-11-06 12:16:40","children":"18,19","parent_id":11,"available_sort_by":[],"name":"Bottoms","id":13,"position":2,"include_in_menu":true,"slug":"bottoms-13","children_data":[{"is_anchor":"1","is_active":true,"level":4,"product_count":156,"children_count":"0","created_at":"2017-11-06 12:16:40","url_key":"pants-18","path":"1/2/11/13/18","updated_at":"2017-11-06 12:16:40","children":"","parent_id":13,"available_sort_by":[],"name":"Pants","id":18,"position":1,"include_in_menu":true,"slug":"pants-18","children_data":[],"url_path":"men/bottoms-men/pants-men/pants-18"},{"is_anchor":"1","is_active":true,"level":4,"product_count":148,"children_count":"0","created_at":"2017-11-06 12:16:40","url_key":"shorts-19","path":"1/2/11/13/19","updated_at":"2017-11-06 12:16:40","children":"","parent_id":13,"available_sort_by":[],"name":"Shorts","id":19,"position":2,"include_in_menu":true,"slug":"shorts-19","children_data":[],"url_path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/bottoms-13"}],"children":"12,13","created_at":"2017-11-06 12:16:39","updated_at":"2018-05-27 14:06:07","path":"1/2/11","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"8","url_key":"men-11","url_path":"men/men-11","slug":"men-11","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"4","_score":1,"_source":{"id":4,"parent_id":3,"name":"Bags","is_active":true,"position":1,"level":3,"product_count":14,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/4","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bags-4","url_path":"gear/bags/bags-4","slug":"bags-4","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"6","_score":1,"_source":{"id":6,"parent_id":3,"name":"Watches","is_active":true,"position":3,"level":3,"product_count":9,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/6","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"watches-6","url_path":"gear/watches/watches-6","slug":"watches-6","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"5","_score":1,"_source":{"id":5,"parent_id":3,"name":"Fitness Equipment","is_active":true,"position":2,"level":3,"product_count":23,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/5","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"fitness-equipment-5","url_path":"gear/fitness-equipment/fitness-equipment-5","slug":"fitness-equipment-5","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"10","_score":1,"_source":{"id":10,"parent_id":9,"name":"Video Download","is_active":true,"position":1,"level":3,"product_count":6,"children_data":[],"children":"","created_at":"2017-11-06 12:16:31","updated_at":"2017-11-06 12:16:31","path":"1/2/9/10","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"video-download-10","url_path":"training/training-video/video-download-10","slug":"video-download-10","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"30","_score":1,"_source":{"id":30,"parent_id":29,"name":"Women Sale","is_active":true,"position":1,"level":3,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/30","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"women-sale-30","url_path":"promotions/women-sale/women-sale-30","slug":"women-sale-30","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"31","_score":1,"_source":{"id":31,"parent_id":29,"name":"Men Sale","is_active":true,"position":2,"level":3,"product_count":39,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/31","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"men-sale-31","url_path":"promotions/men-sale/men-sale-31","slug":"men-sale-31","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"35","_score":1,"_source":{"id":35,"parent_id":7,"name":"Performance Fabrics","is_active":true,"position":3,"level":3,"product_count":310,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/35","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"performance-fabrics-35","url_path":"collections/performance-fabrics/performance-fabrics-35","slug":"performance-fabrics-35","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"8","_score":1,"_source":{"id":8,"parent_id":7,"name":"New Luma Yoga Collection","is_active":true,"position":1,"level":3,"product_count":347,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/7/8","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"new-luma-yoga-collection-8","url_path":"collections/yoga-new/new-luma-yoga-collection-8","slug":"new-luma-yoga-collection-8","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"40","_score":1,"_source":{"id":40,"parent_id":7,"name":"Eco Collection New","is_active":true,"position":6,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/40","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"eco-collection-new-40","url_path":"collections/eco-new/eco-collection-new-40","slug":"eco-collection-new-40","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"34","_score":1,"_source":{"id":34,"parent_id":7,"name":"Erin Recommends","is_active":true,"position":2,"level":3,"product_count":279,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/34","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"erin-recommends-34","url_path":"collections/erin-recommends/erin-recommends-34","slug":"erin-recommends-34","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"39","_score":1,"_source":{"id":39,"parent_id":7,"name":"Performance Sportswear New","is_active":true,"position":5,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/39","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"performance-sportswear-new-39","url_path":"collections/performance-new/performance-sportswear-new-39","slug":"performance-sportswear-new-39","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"36","_score":1,"_source":{"id":36,"parent_id":7,"name":"Eco Friendly","is_active":true,"position":4,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/36","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"eco-friendly-36","url_path":"collections/eco-friendly/eco-friendly-36","slug":"eco-friendly-36","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"33","_score":1,"_source":{"id":33,"parent_id":29,"name":"Tees","is_active":true,"position":4,"level":3,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/33","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"tees-33","url_path":"promotions/tees-all/tees-33","slug":"tees-33","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"32","_score":1,"_source":{"id":32,"parent_id":29,"name":"Pants","is_active":true,"position":3,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/32","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"pants-32","url_path":"promotions/pants-all/pants-32","slug":"pants-32","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"21","_score":1,"_source":{"id":21,"parent_id":20,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"is_anchor":"1","is_active":true,"level":4,"product_count":186,"children_count":"0","created_at":"2017-11-06 12:16:41","url_key":"jackets-23","path":"1/2/20/21/23","updated_at":"2017-11-06 12:16:41","children":"","parent_id":21,"available_sort_by":[],"name":"Jackets","id":23,"position":1,"include_in_menu":true,"slug":"jackets-23","children_data":[],"url_path":"women/tops-women/jackets-women/jackets-23"},{"is_anchor":"1","is_active":true,"level":4,"product_count":182,"children_count":"0","created_at":"2017-11-06 12:16:41","url_key":"hoodies-and-sweatshirts-24","path":"1/2/20/21/24","updated_at":"2017-11-06 12:16:41","children":"","parent_id":21,"available_sort_by":[],"name":"Hoodies & Sweatshirts","id":24,"position":2,"include_in_menu":true,"slug":"hoodies-and-sweatshirts-24","children_data":[],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"is_anchor":"1","is_active":true,"level":4,"product_count":192,"children_count":"0","created_at":"2017-11-06 12:16:41","url_key":"tees-25","path":"1/2/20/21/25","updated_at":"2017-11-06 12:16:41","children":"","parent_id":21,"available_sort_by":[],"name":"Tees","id":25,"position":3,"include_in_menu":true,"slug":"tees-25","children_data":[],"url_path":"women/tops-women/tees-women/tees-25"},{"is_anchor":"1","is_active":true,"level":4,"product_count":224,"children_count":"0","created_at":"2017-11-06 12:16:41","url_key":"bras-and-tanks-26","path":"1/2/20/21/26","updated_at":"2017-11-06 12:16:41","children":"","parent_id":21,"available_sort_by":[],"name":"Bras & Tanks","id":26,"position":4,"include_in_menu":true,"slug":"bras-and-tanks-26","children_data":[],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"children":"23,24,25,26","created_at":"2017-11-06 12:16:41","updated_at":"2019-01-03 10:35:27","path":"1/2/20/21","available_sort_by":[],"include_in_menu":true,"meta_title":"Women Tops","meta_description":"Best women tops on vuestorefront.","display_mode":"PRODUCTS","is_anchor":"1","children_count":"4","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"tops-21","url_path":"women/tops-women/tops-21","slug":"tops-21","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"22","_score":1,"_source":{"id":22,"parent_id":20,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"is_anchor":"1","is_active":true,"level":4,"product_count":91,"children_count":"0","created_at":"2017-11-06 12:16:41","url_key":"pants-27","path":"1/2/20/22/27","updated_at":"2017-11-06 12:16:41","children":"","parent_id":22,"available_sort_by":[],"name":"Pants","id":27,"position":1,"include_in_menu":true,"slug":"pants-27","children_data":[],"url_path":"women/bottoms-women/pants-women/pants-27"},{"is_anchor":"1","is_active":true,"level":4,"product_count":137,"children_count":"0","created_at":"2017-11-06 12:16:41","url_key":"shorts-28","path":"1/2/20/22/28","updated_at":"2017-11-06 12:16:41","children":"","parent_id":22,"available_sort_by":[],"name":"Shorts","id":28,"position":2,"include_in_menu":true,"slug":"shorts-28","children_data":[],"url_path":"women/bottoms-women/shorts-women/shorts-28"}],"children":"27,28","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-22","url_path":"women/bottoms-women/bottoms-22","slug":"bottoms-22","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"23","_score":1,"_source":{"id":23,"parent_id":21,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":186,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/23","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"jackets-23","url_path":"women/tops-women/jackets-women/jackets-23","slug":"jackets-23","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"26","_score":1,"_source":{"id":26,"parent_id":21,"name":"Bras & Tanks","is_active":true,"position":4,"level":4,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/26","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bras-and-tanks-26","url_path":"women/tops-women/tanks-women/bras-and-tanks-26","slug":"bras-and-tanks-26","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"28","_score":1,"_source":{"id":28,"parent_id":22,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":137,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/28","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-28","url_path":"women/bottoms-women/shorts-women/shorts-28","slug":"shorts-28","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"12","_score":1,"_source":{"id":12,"parent_id":11,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"is_anchor":"1","is_active":true,"display_mode":"PRODUCTS","level":4,"product_count":176,"children_count":"0","created_at":"2017-11-06 12:16:40","description":"

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum dui sapien, bibendum ac luctus sed, lobortis id lacus. Nulla nisi augue, accumsan id sapien maximus, hendrerit vehicula elit.

","custom_apply_to_products":"0","url_key":"jackets-14","path":"1/2/11/12/14","updated_at":"2019-04-17 11:10:23","children":"","parent_id":12,"available_sort_by":[],"name":"Jackets","id":14,"position":1,"custom_use_parent_settings":"0","include_in_menu":true,"slug":"jackets-14","children_data":[],"url_path":"men/tops-men/jackets-men/jackets-14"},{"is_anchor":"1","is_active":true,"level":4,"product_count":208,"children_count":"0","created_at":"2017-11-06 12:16:40","url_key":"hoodies-and-sweatshirts-15","path":"1/2/11/12/15","updated_at":"2017-11-06 12:16:40","children":"","parent_id":12,"available_sort_by":[],"name":"Hoodies & Sweatshirts","id":15,"position":2,"include_in_menu":true,"slug":"hoodies-and-sweatshirts-15","children_data":[],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"is_anchor":"1","is_active":true,"level":4,"product_count":192,"children_count":"0","created_at":"2017-11-06 12:16:40","url_key":"tees-16","path":"1/2/11/12/16","updated_at":"2017-11-06 12:16:40","children":"","parent_id":12,"available_sort_by":[],"name":"Tees","id":16,"position":3,"include_in_menu":true,"slug":"tees-16","children_data":[],"url_path":"men/tops-men/tees-men/tees-16"},{"is_anchor":"1","is_active":true,"level":4,"product_count":102,"children_count":"0","created_at":"2017-11-06 12:16:40","url_key":"tanks-17","path":"1/2/11/12/17","updated_at":"2017-11-06 12:16:40","children":"","parent_id":12,"available_sort_by":[],"name":"Tanks","id":17,"position":4,"include_in_menu":true,"slug":"tanks-17","children_data":[],"url_path":"men/tops-men/tanks-men/tanks-17"}],"children":"14,15,16,17","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"4","url_key":"tops-12","url_path":"men/tops-men/tops-12","slug":"tops-12","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"24","_score":1,"_source":{"id":24,"parent_id":21,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":182,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/24","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-24","url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","slug":"hoodies-and-sweatshirts-24","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"13","_score":1,"_source":{"id":13,"parent_id":11,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"is_anchor":"1","is_active":true,"level":4,"product_count":156,"children_count":"0","created_at":"2017-11-06 12:16:40","url_key":"pants-18","path":"1/2/11/13/18","updated_at":"2017-11-06 12:16:40","children":"","parent_id":13,"available_sort_by":[],"name":"Pants","id":18,"position":1,"include_in_menu":true,"slug":"pants-18","children_data":[],"url_path":"men/bottoms-men/pants-men/pants-18"},{"is_anchor":"1","is_active":true,"level":4,"product_count":148,"children_count":"0","created_at":"2017-11-06 12:16:40","url_key":"shorts-19","path":"1/2/11/13/19","updated_at":"2017-11-06 12:16:40","children":"","parent_id":13,"available_sort_by":[],"name":"Shorts","id":19,"position":2,"include_in_menu":true,"slug":"shorts-19","children_data":[],"url_path":"men/bottoms-men/shorts-men/shorts-19"}],"children":"18,19","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-13","url_path":"men/bottoms-men/bottoms-13","slug":"bottoms-13","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"2","_score":1,"_source":{"id":2,"parent_id":1,"name":"All","is_active":true,"position":1,"level":1,"product_count":1181,"children_data":[{"is_anchor":"0","is_active":true,"display_mode":"PAGE","level":2,"product_count":0,"children_count":"0","created_at":"2017-11-06 12:17:48","url_key":"whats-new-38","path":"1/2/38","updated_at":"2018-05-27 14:05:17","children":"","parent_id":2,"available_sort_by":[],"name":"What's New","id":38,"position":1,"include_in_menu":true,"slug":"whats-new-38","children_data":[],"url_path":"what-is-new/whats-new-38"},{"is_anchor":"0","display_mode":"PAGE","custom_layout_update":"","product_count":0,"children_count":"8","created_at":"2017-11-06 12:16:40","description":"

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum dui sapien, bibendum ac luctus sed, lobortis id lacus. Nulla nisi augue, accumsan id sapien maximus, hendrerit vehicula elit.

","path":"1/2/20","updated_at":"2019-04-17 11:08:58","children":"21,22","available_sort_by":[],"id":20,"include_in_menu":true,"slug":"women-20","url_path":"women/women-20","is_active":true,"meta_title":"Women Sale","level":2,"custom_apply_to_products":"0","url_key":"women-20","meta_description":"Fit your style with vuestorefront","parent_id":2,"name":"Women","position":2,"custom_use_parent_settings":"0","children_data":[{"is_anchor":"1","is_active":true,"meta_title":"Women Tops","display_mode":"PRODUCTS","level":3,"product_count":0,"children_count":"4","created_at":"2017-11-06 12:16:41","custom_apply_to_products":"0","url_key":"tops-21","path":"1/2/20/21","meta_description":"Best women tops on vuestorefront.","updated_at":"2019-01-03 10:35:27","children":"23,24,25,26","parent_id":20,"available_sort_by":[],"name":"Tops","id":21,"position":1,"custom_use_parent_settings":"0","include_in_menu":true,"slug":"tops-21","children_data":[{"is_anchor":"1","is_active":true,"level":4,"product_count":186,"children_count":"0","created_at":"2017-11-06 12:16:41","url_key":"jackets-23","path":"1/2/20/21/23","updated_at":"2017-11-06 12:16:41","children":"","parent_id":21,"available_sort_by":[],"name":"Jackets","id":23,"position":1,"include_in_menu":true,"slug":"jackets-23","children_data":[],"url_path":"women/tops-women/jackets-women/jackets-23"},{"is_anchor":"1","is_active":true,"level":4,"product_count":182,"children_count":"0","created_at":"2017-11-06 12:16:41","url_key":"hoodies-and-sweatshirts-24","path":"1/2/20/21/24","updated_at":"2017-11-06 12:16:41","children":"","parent_id":21,"available_sort_by":[],"name":"Hoodies & Sweatshirts","id":24,"position":2,"include_in_menu":true,"slug":"hoodies-and-sweatshirts-24","children_data":[],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"is_anchor":"1","is_active":true,"level":4,"product_count":192,"children_count":"0","created_at":"2017-11-06 12:16:41","url_key":"tees-25","path":"1/2/20/21/25","updated_at":"2017-11-06 12:16:41","children":"","parent_id":21,"available_sort_by":[],"name":"Tees","id":25,"position":3,"include_in_menu":true,"slug":"tees-25","children_data":[],"url_path":"women/tops-women/tees-women/tees-25"},{"is_anchor":"1","is_active":true,"level":4,"product_count":224,"children_count":"0","created_at":"2017-11-06 12:16:41","url_key":"bras-and-tanks-26","path":"1/2/20/21/26","updated_at":"2017-11-06 12:16:41","children":"","parent_id":21,"available_sort_by":[],"name":"Bras & Tanks","id":26,"position":4,"include_in_menu":true,"slug":"bras-and-tanks-26","children_data":[],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tops-21"},{"is_anchor":"1","is_active":true,"level":3,"product_count":0,"children_count":"2","created_at":"2017-11-06 12:16:41","url_key":"bottoms-22","path":"1/2/20/22","updated_at":"2017-11-06 12:16:41","children":"27,28","parent_id":20,"available_sort_by":[],"name":"Bottoms","id":22,"position":2,"include_in_menu":true,"slug":"bottoms-22","children_data":[{"is_anchor":"1","is_active":true,"level":4,"product_count":91,"children_count":"0","created_at":"2017-11-06 12:16:41","url_key":"pants-27","path":"1/2/20/22/27","updated_at":"2017-11-06 12:16:41","children":"","parent_id":22,"available_sort_by":[],"name":"Pants","id":27,"position":1,"include_in_menu":true,"slug":"pants-27","children_data":[],"url_path":"women/bottoms-women/pants-women/pants-27"},{"is_anchor":"1","is_active":true,"level":4,"product_count":137,"children_count":"0","created_at":"2017-11-06 12:16:41","url_key":"shorts-28","path":"1/2/20/22/28","updated_at":"2017-11-06 12:16:41","children":"","parent_id":22,"available_sort_by":[],"name":"Shorts","id":28,"position":2,"include_in_menu":true,"slug":"shorts-28","children_data":[],"url_path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/bottoms-22"}]},{"is_anchor":"0","is_active":true,"display_mode":"PAGE","level":2,"custom_layout_update":"","product_count":0,"children_count":"8","created_at":"2017-11-06 12:16:39","url_key":"men-11","path":"1/2/11","updated_at":"2018-05-27 14:06:07","children":"12,13","parent_id":2,"available_sort_by":[],"name":"Men","id":11,"position":3,"include_in_menu":true,"slug":"men-11","children_data":[{"is_anchor":"1","is_active":true,"level":3,"product_count":0,"children_count":"4","created_at":"2017-11-06 12:16:40","url_key":"tops-12","path":"1/2/11/12","updated_at":"2017-11-06 12:16:40","children":"14,15,16,17","parent_id":11,"available_sort_by":[],"name":"Tops","id":12,"position":1,"include_in_menu":true,"slug":"tops-12","children_data":[{"is_anchor":"1","is_active":true,"display_mode":"PRODUCTS","level":4,"product_count":176,"children_count":"0","created_at":"2017-11-06 12:16:40","description":"

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum dui sapien, bibendum ac luctus sed, lobortis id lacus. Nulla nisi augue, accumsan id sapien maximus, hendrerit vehicula elit.

","custom_apply_to_products":"0","url_key":"jackets-14","path":"1/2/11/12/14","updated_at":"2019-04-17 11:10:23","children":"","parent_id":12,"available_sort_by":[],"name":"Jackets","id":14,"position":1,"custom_use_parent_settings":"0","include_in_menu":true,"slug":"jackets-14","children_data":[],"url_path":"men/tops-men/jackets-men/jackets-14"},{"is_anchor":"1","is_active":true,"level":4,"product_count":208,"children_count":"0","created_at":"2017-11-06 12:16:40","url_key":"hoodies-and-sweatshirts-15","path":"1/2/11/12/15","updated_at":"2017-11-06 12:16:40","children":"","parent_id":12,"available_sort_by":[],"name":"Hoodies & Sweatshirts","id":15,"position":2,"include_in_menu":true,"slug":"hoodies-and-sweatshirts-15","children_data":[],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"is_anchor":"1","is_active":true,"level":4,"product_count":192,"children_count":"0","created_at":"2017-11-06 12:16:40","url_key":"tees-16","path":"1/2/11/12/16","updated_at":"2017-11-06 12:16:40","children":"","parent_id":12,"available_sort_by":[],"name":"Tees","id":16,"position":3,"include_in_menu":true,"slug":"tees-16","children_data":[],"url_path":"men/tops-men/tees-men/tees-16"},{"is_anchor":"1","is_active":true,"level":4,"product_count":102,"children_count":"0","created_at":"2017-11-06 12:16:40","url_key":"tanks-17","path":"1/2/11/12/17","updated_at":"2017-11-06 12:16:40","children":"","parent_id":12,"available_sort_by":[],"name":"Tanks","id":17,"position":4,"include_in_menu":true,"slug":"tanks-17","children_data":[],"url_path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tops-12"},{"is_anchor":"1","is_active":true,"level":3,"product_count":0,"children_count":"2","created_at":"2017-11-06 12:16:40","url_key":"bottoms-13","path":"1/2/11/13","updated_at":"2017-11-06 12:16:40","children":"18,19","parent_id":11,"available_sort_by":[],"name":"Bottoms","id":13,"position":2,"include_in_menu":true,"slug":"bottoms-13","children_data":[{"is_anchor":"1","is_active":true,"level":4,"product_count":156,"children_count":"0","created_at":"2017-11-06 12:16:40","url_key":"pants-18","path":"1/2/11/13/18","updated_at":"2017-11-06 12:16:40","children":"","parent_id":13,"available_sort_by":[],"name":"Pants","id":18,"position":1,"include_in_menu":true,"slug":"pants-18","children_data":[],"url_path":"men/bottoms-men/pants-men/pants-18"},{"is_anchor":"1","is_active":true,"level":4,"product_count":148,"children_count":"0","created_at":"2017-11-06 12:16:40","url_key":"shorts-19","path":"1/2/11/13/19","updated_at":"2017-11-06 12:16:40","children":"","parent_id":13,"available_sort_by":[],"name":"Shorts","id":19,"position":2,"include_in_menu":true,"slug":"shorts-19","children_data":[],"url_path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/bottoms-13"}],"url_path":"men/men-11"},{"is_anchor":"0","is_active":true,"display_mode":"PAGE","level":2,"custom_layout_update":"","product_count":46,"children_count":"3","created_at":"2017-11-06 12:16:19","url_key":"gear-3","path":"1/2/3","updated_at":"2018-05-27 14:06:53","children":"4,5,6","parent_id":2,"available_sort_by":[],"name":"Gear","id":3,"position":4,"include_in_menu":true,"slug":"gear-3","children_data":[{"is_anchor":"1","is_active":true,"level":3,"product_count":14,"children_count":"0","created_at":"2017-11-06 12:16:20","url_key":"bags-4","path":"1/2/3/4","updated_at":"2017-11-06 12:16:20","children":"","parent_id":3,"available_sort_by":[],"name":"Bags","id":4,"position":1,"include_in_menu":true,"slug":"bags-4","children_data":[],"url_path":"gear/bags/bags-4"},{"is_anchor":"1","is_active":true,"level":3,"product_count":23,"children_count":"0","created_at":"2017-11-06 12:16:20","url_key":"fitness-equipment-5","path":"1/2/3/5","updated_at":"2017-11-06 12:16:20","children":"","parent_id":3,"available_sort_by":[],"name":"Fitness Equipment","id":5,"position":2,"include_in_menu":true,"slug":"fitness-equipment-5","children_data":[],"url_path":"gear/fitness-equipment/fitness-equipment-5"},{"is_anchor":"1","is_active":true,"level":3,"product_count":9,"children_count":"0","created_at":"2017-11-06 12:16:20","url_key":"watches-6","path":"1/2/3/6","updated_at":"2017-11-06 12:16:20","children":"","parent_id":3,"available_sort_by":[],"name":"Watches","id":6,"position":3,"include_in_menu":true,"slug":"watches-6","children_data":[],"url_path":"gear/watches/watches-6"}],"url_path":"gear/gear-3"},{"is_anchor":"0","is_active":false,"display_mode":"PAGE","level":2,"product_count":13,"children_count":"6","created_at":"2017-11-06 12:16:20","url_key":"collections-7","path":"1/2/7","updated_at":"2017-11-06 12:17:48","children":"34,35,36,39,40,8","parent_id":2,"available_sort_by":[],"name":"Collections","id":7,"position":5,"include_in_menu":false,"slug":"collections-7","children_data":[{"is_anchor":"1","is_active":true,"level":3,"product_count":347,"children_count":"0","created_at":"2017-11-06 12:16:20","url_key":"new-luma-yoga-collection-8","path":"1/2/7/8","updated_at":"2017-11-06 12:16:20","children":"","parent_id":7,"available_sort_by":[],"name":"New Luma Yoga Collection","id":8,"position":1,"include_in_menu":false,"slug":"new-luma-yoga-collection-8","children_data":[],"url_path":"collections/yoga-new/new-luma-yoga-collection-8"},{"is_anchor":"1","is_active":true,"level":3,"product_count":279,"children_count":"0","created_at":"2017-11-06 12:16:42","url_key":"erin-recommends-34","path":"1/2/7/34","updated_at":"2017-11-06 12:16:42","children":"","parent_id":7,"available_sort_by":[],"name":"Erin Recommends","id":34,"position":2,"include_in_menu":false,"slug":"erin-recommends-34","children_data":[],"url_path":"collections/erin-recommends/erin-recommends-34"},{"is_anchor":"1","is_active":true,"level":3,"product_count":310,"children_count":"0","created_at":"2017-11-06 12:16:42","url_key":"performance-fabrics-35","path":"1/2/7/35","updated_at":"2017-11-06 12:16:42","children":"","parent_id":7,"available_sort_by":[],"name":"Performance Fabrics","id":35,"position":3,"include_in_menu":false,"slug":"performance-fabrics-35","children_data":[],"url_path":"collections/performance-fabrics/performance-fabrics-35"},{"is_anchor":"1","is_active":true,"level":3,"product_count":247,"children_count":"0","created_at":"2017-11-06 12:16:42","url_key":"eco-friendly-36","path":"1/2/7/36","updated_at":"2017-11-06 12:16:42","children":"","parent_id":7,"available_sort_by":[],"name":"Eco Friendly","id":36,"position":4,"include_in_menu":false,"slug":"eco-friendly-36","children_data":[],"url_path":"collections/eco-friendly/eco-friendly-36"},{"is_anchor":"0","is_active":true,"display_mode":"PAGE","level":3,"product_count":0,"children_count":"0","created_at":"2017-11-06 12:17:48","url_key":"performance-sportswear-new-39","path":"1/2/7/39","updated_at":"2017-11-06 12:17:48","children":"","parent_id":7,"page_layout":"1column","available_sort_by":[],"name":"Performance Sportswear New","id":39,"position":5,"include_in_menu":false,"slug":"performance-sportswear-new-39","children_data":[],"url_path":"collections/performance-new/performance-sportswear-new-39"},{"is_anchor":"0","is_active":true,"display_mode":"PAGE","level":3,"product_count":0,"children_count":"0","created_at":"2017-11-06 12:17:48","url_key":"eco-collection-new-40","path":"1/2/7/40","updated_at":"2017-11-06 12:17:48","children":"","parent_id":7,"page_layout":"1column","available_sort_by":[],"name":"Eco Collection New","id":40,"position":6,"include_in_menu":false,"slug":"eco-collection-new-40","children_data":[],"url_path":"collections/eco-new/eco-collection-new-40"}],"url_path":"collections/collections-7"},{"is_anchor":"0","is_active":true,"display_mode":"PAGE","level":2,"custom_layout_update":"","product_count":6,"children_count":"1","created_at":"2017-11-06 12:16:31","url_key":"training-9","path":"1/2/9","updated_at":"2018-05-27 14:04:30","children":"10","parent_id":2,"available_sort_by":[],"name":"Training","id":9,"position":5,"include_in_menu":true,"slug":"training-9","children_data":[{"is_anchor":"1","is_active":true,"level":3,"product_count":6,"children_count":"0","created_at":"2017-11-06 12:16:31","url_key":"video-download-10","path":"1/2/9/10","updated_at":"2017-11-06 12:16:31","children":"","parent_id":9,"available_sort_by":[],"name":"Video Download","id":10,"position":1,"include_in_menu":true,"slug":"video-download-10","children_data":[],"url_path":"training/training-video/video-download-10"}],"url_path":"training/training-9"},{"is_anchor":"0","is_active":false,"display_mode":"PAGE","level":2,"product_count":0,"children_count":"4","created_at":"2017-11-06 12:16:41","url_key":"promotions-29","path":"1/2/29","updated_at":"2017-11-06 12:16:42","children":"30,31,32,33","parent_id":2,"available_sort_by":[],"name":"Promotions","id":29,"position":6,"include_in_menu":false,"slug":"promotions-29","children_data":[{"is_anchor":"1","is_active":true,"level":3,"product_count":224,"children_count":"0","created_at":"2017-11-06 12:16:41","url_key":"women-sale-30","path":"1/2/29/30","updated_at":"2017-11-06 12:16:41","children":"","parent_id":29,"available_sort_by":[],"name":"Women Sale","id":30,"position":1,"include_in_menu":false,"slug":"women-sale-30","children_data":[],"url_path":"promotions/women-sale/women-sale-30"},{"is_anchor":"1","is_active":true,"level":3,"product_count":39,"children_count":"0","created_at":"2017-11-06 12:16:41","url_key":"men-sale-31","path":"1/2/29/31","updated_at":"2017-11-06 12:16:41","children":"","parent_id":29,"available_sort_by":[],"name":"Men Sale","id":31,"position":2,"include_in_menu":false,"slug":"men-sale-31","children_data":[],"url_path":"promotions/men-sale/men-sale-31"},{"is_anchor":"1","is_active":true,"level":3,"product_count":247,"children_count":"0","created_at":"2017-11-06 12:16:42","url_key":"pants-32","path":"1/2/29/32","updated_at":"2017-11-06 12:16:42","children":"","parent_id":29,"available_sort_by":[],"name":"Pants","id":32,"position":3,"include_in_menu":false,"slug":"pants-32","children_data":[],"url_path":"promotions/pants-all/pants-32"},{"is_anchor":"1","is_active":true,"level":3,"product_count":192,"children_count":"0","created_at":"2017-11-06 12:16:42","url_key":"tees-33","path":"1/2/29/33","updated_at":"2017-11-06 12:16:42","children":"","parent_id":29,"available_sort_by":[],"name":"Tees","id":33,"position":4,"include_in_menu":false,"slug":"tees-33","children_data":[],"url_path":"promotions/tees-all/tees-33"}],"url_path":"promotions/promotions-29"},{"is_anchor":"0","is_active":true,"display_mode":"PAGE","level":2,"product_count":0,"children_count":"0","created_at":"2017-11-06 12:17:48","url_key":"sale-37","path":"1/2/37","updated_at":"2018-05-27 14:04:10","children":"","parent_id":2,"available_sort_by":[],"name":"Sale","id":37,"position":6,"include_in_menu":true,"slug":"sale-37","children_data":[],"url_path":"sale/sale-37"}],"url_key":"all-2","slug":"all-2","url_path":"all-2","children":"3,9,11,20,37,38","created_at":"2017-11-03 08:34:39","updated_at":"2019-04-25 09:11:20","path":"1/2","available_sort_by":[],"include_in_menu":true,"display_mode":"PRODUCTS","is_anchor":"1","children_count":"38","custom_use_parent_settings":"0","custom_apply_to_products":"0","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"27","_score":1,"_source":{"id":27,"parent_id":22,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":91,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/27","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-27","url_path":"women/bottoms-women/pants-women/pants-27","slug":"pants-27","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"25","_score":1,"_source":{"id":25,"parent_id":21,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/25","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-25","url_path":"women/tops-women/tees-women/tees-25","slug":"tees-25","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"14","_score":1,"_source":{"id":14,"parent_id":12,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":176,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:10:23","path":"1/2/11/12/14","available_sort_by":[],"include_in_menu":true,"description":"

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum dui sapien, bibendum ac luctus sed, lobortis id lacus. Nulla nisi augue, accumsan id sapien maximus, hendrerit vehicula elit.

","display_mode":"PRODUCTS","is_anchor":"1","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"jackets-14","url_path":"men/tops-men/jackets-men/jackets-14","slug":"jackets-14","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"19","_score":1,"_source":{"id":19,"parent_id":13,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":148,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/19","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-19","url_path":"men/bottoms-men/shorts-men/shorts-19","slug":"shorts-19","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"18","_score":1,"_source":{"id":18,"parent_id":13,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":156,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/18","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-18","url_path":"men/bottoms-men/pants-men/pants-18","slug":"pants-18","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"16","_score":1,"_source":{"id":16,"parent_id":12,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/16","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-16","url_path":"men/tops-men/tees-men/tees-16","slug":"tees-16","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"17","_score":1,"_source":{"id":17,"parent_id":12,"name":"Tanks","is_active":true,"position":4,"level":4,"product_count":102,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/17","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tanks-17","url_path":"men/tops-men/tanks-men/tanks-17","slug":"tanks-17","tsk":1568838045024}} +{"_index":"vue_storefront_catalog_category_1568838132","_type":"_doc","_id":"15","_score":1,"_source":{"id":15,"parent_id":12,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":208,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/15","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-15","url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","slug":"hoodies-and-sweatshirts-15","tsk":1568838045024}} diff --git a/var/catalog_cms_block.json b/var/catalog_cms_block.json new file mode 100644 index 00000000..5599e70f --- /dev/null +++ b/var/catalog_cms_block.json @@ -0,0 +1,20 @@ +{"_index":"vue_storefront_catalog_cms_block_1568838132","_type":"_doc","_id":"5","_score":1,"_source":{"store_id":[0],"id":5,"identifier":"men-left-menu-block","title":"Men Left Menu Block","content":"
Tops\n\n\nBottoms\n\n
","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568838035549}} +{"_index":"vue_storefront_catalog_cms_block_1568838132","_type":"_doc","_id":"17","_score":1,"_source":{"store_id":[0],"id":17,"identifier":"giftcard-block","title":"Giftcard Block","content":"","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568838035549}} +{"_index":"vue_storefront_catalog_cms_block_1568838132","_type":"_doc","_id":"14","_score":1,"_source":{"store_id":[0],"id":14,"identifier":"home-page-block","title":"Home Page Block","content":"\n
\n

Hot Sellers

\n

Here is what`s trending on Luma right now

\n
\n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568838035549}} +{"_index":"vue_storefront_catalog_cms_block_1568838132","_type":"_doc","_id":"10","_score":1,"_source":{"store_id":[0],"id":10,"identifier":"men-block","title":"Men Block","content":"\n
\n

Hot Sellers

\n

Favorites from Luma shoppers

\n
\n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568838035549}} +{"_index":"vue_storefront_catalog_cms_block_1568838132","_type":"_doc","_id":"19","_score":1,"_source":{"store_id":[0],"id":19,"identifier":"no_reviews___","title":"no_reviews","content":"

lorem impsum

","creation_time":"2019-06-27 11:42:02","update_time":"2019-06-27 11:42:02","active":true,"type":"cms_block","tsk":1568838035549}} +{"_index":"vue_storefront_catalog_cms_block_1568838132","_type":"_doc","_id":"8","_score":1,"_source":{"store_id":[0],"id":8,"identifier":"women-block","title":"Women Block","content":"\n
\n

Hot Sellers

\n

Favorites from Luma shoppers

\n
\n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568838035549}} +{"_index":"vue_storefront_catalog_cms_block_1568838132","_type":"_doc","_id":"18","_score":1,"_source":{"store_id":[0],"id":18,"identifier":"login-data","title":"Login Info Block","content":"
\n

Try Demo Customer Access

\n

Email:roni_cost@example.com

\n

Password:roni_cost3@example.com

\n
","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568838035549}} +{"_index":"vue_storefront_catalog_cms_block_1568838132","_type":"_doc","_id":"3","_score":1,"_source":{"store_id":[0],"id":3,"identifier":"sale-left-menu-block","title":"Sale Left Menu Block","content":"
Women's Deals\n\n\nMens's Deals\n\n\nGear Deals\n\n
","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568838035549}} +{"_index":"vue_storefront_catalog_cms_block_1568838132","_type":"_doc","_id":"16","_score":1,"_source":{"store_id":[0],"id":16,"identifier":"eco-friendly-block","title":"Eco Friendly Block","content":"
\n
\n \"\"\n \n Eco-friendly, ego-friendly\n Recycled polyester, hemp and organic cotton apperel\n \n
\n
\n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568838035549}} +{"_index":"vue_storefront_catalog_cms_block_1568838132","_type":"_doc","_id":"7","_score":1,"_source":{"store_id":[0],"id":7,"identifier":"new-left-menu-block","title":"New Left Menu Block","content":"
New in women's\n\n\nNew in men's\n\n
","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568838035549}} +{"_index":"vue_storefront_catalog_cms_block_1568838132","_type":"_doc","_id":"6","_score":1,"_source":{"store_id":[0],"id":6,"identifier":"women-left-menu-block","title":"Women Left Menu Block","content":"
Tops\n\n\nBottoms\n\n
","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568838035549}} +{"_index":"vue_storefront_catalog_cms_block_1568838132","_type":"_doc","_id":"12","_score":1,"_source":{"store_id":[0],"id":12,"identifier":"sale-block","title":"Sale Block","content":"","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568838035549}} +{"_index":"vue_storefront_catalog_cms_block_1568838132","_type":"_doc","_id":"4","_score":1,"_source":{"store_id":[0],"id":4,"identifier":"gear-left-menu-block","title":"Gear Left Menu Block","content":"","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568838035549}} +{"_index":"vue_storefront_catalog_cms_block_1568838132","_type":"_doc","_id":"11","_score":1,"_source":{"store_id":[0],"id":11,"identifier":"gear-block","title":"Gear Block","content":"\n
\n

Hot Sellers

\n

Favorites from Luma shoppers

\n
\n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568838035549}} +{"_index":"vue_storefront_catalog_cms_block_1568838132","_type":"_doc","_id":"13","_score":1,"_source":{"store_id":[0],"id":13,"identifier":"new-block","title":"New Block","content":"\n
\n

Luma's Latest

\n

Just in time for the new season!

\n
\n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568838035549}} +{"_index":"vue_storefront_catalog_cms_block_1568838132","_type":"_doc","_id":"2","_score":1,"_source":{"store_id":[0],"id":2,"identifier":"contact-us-info","title":"Contact us info","content":"
\n

We love hearing from you, our Luma customers. Please contact us about anything at all. Your latest passion, unique health experience or request for a specific product. We’ll do everything we can to make your Luma experience unforgettable every time. Reach us however you like

\n
\n
\n Contact Us Info\n
\n
\n
\n \n Phone\n \n
\n 1-800-403-8838\n

Call the Luma Helpline for concerns, product questions, or anything else. We’re here for you 24 hours a day - 365 days a year.

\n
\n
\n
\n \n Apparel Design Inquiries\n \n
\n

Are you an independent clothing designer? Feature your products on the Luma website! Please direct all inquiries via email to: cs@luma.com

\n
\n
\n
\n \n Press Inquiries\n \n
\n

Please direct all media inquiries via email to: pr@luma.com

\n
\n
\n
\n
\n
\n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568838035549}} +{"_index":"vue_storefront_catalog_cms_block_1568838132","_type":"_doc","_id":"1","_score":1,"_source":{"store_id":[0],"id":1,"identifier":"footer_links_block","title":"Footer Links Block","content":"\n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568838035549}} +{"_index":"vue_storefront_catalog_cms_block_1568838132","_type":"_doc","_id":"15","_score":1,"_source":{"store_id":[0],"id":15,"identifier":"performance-fabrics-block","title":"Performance Fabrics Block","content":"
\n
\n \"\"\n \n You're the best\n Make a strong statement with Luma Performance sportswear\n \n
\n
\n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568838035549}} +{"_index":"vue_storefront_catalog_cms_block_1568838132","_type":"_doc","_id":"9","_score":1,"_source":{"store_id":[0],"id":9,"identifier":"training-block","title":"Training Block","content":"\n
\n

Top Videos

\n

Stream free with subscription

\n
\n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568838035549}} +{"_index":"vue_storefront_catalog_cms_block_1568838132","_type":"_doc","_id":"20","_score":1,"_source":{"store_id":[0],"id":20,"identifier":"footer_about_menu","title":"about","content":"

test

","creation_time":"2019-06-27 11:43:19","update_time":"2019-06-27 11:43:19","active":true,"type":"cms_block","tsk":1568838035549}} diff --git a/var/catalog_cms_page.json b/var/catalog_cms_page.json new file mode 100644 index 00000000..dee6f10b --- /dev/null +++ b/var/catalog_cms_page.json @@ -0,0 +1,6 @@ +{"_index":"vue_storefront_catalog_cms_page_1568838132","_type":"_doc","_id":"3","_score":1,"_source":{"store_id":[0],"id":3,"identifier":"enable-cookies","title":"Enable Cookies","page_layout":"1column","content_heading":"What are Cookies?","content":"
\r\n

\"Cookies\" are little pieces of data we send when you visit our store. Cookies help us get to know you better and personalize your experience. Plus they help protect you and other shoppers from fraud.

\r\n

Set your browser to accept cookies so you can buy items, save items, and receive customized recommendations. Here’s how:

\r\n\r\n
","creation_time":"2017-11-03 08:34:38","update_time":"2017-11-03 08:34:38","sort_order":"0","active":true,"type":"cms_page","tsk":1568838038375}} +{"_index":"vue_storefront_catalog_cms_page_1568838132","_type":"_doc","_id":"5","_score":1,"_source":{"store_id":[0],"id":5,"identifier":"about-us","title":"About us","page_layout":"1column","meta_keywords":"","meta_description":"","content_heading":"About us","content":"
\n

With more than 230 stores spanning 43 states and growing, Luma is a nationally recognized active wear manufacturer and retailer. We’re passionate about active lifestyles – and it goes way beyond apparel.

\n\n

At Luma, wellness is a way of life. We don’t believe age, gender or past actions define you, only your ambition and desire for wholeness... today.

\n\n

We differentiate ourselves through a combination of unique designs and styles merged with unequaled standards of quality and authenticity. Our founders have deep roots in yoga and health communities and our selections serve amateur practitioners and professional athletes alike.

\n\n \n
\n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","sort_order":"0","layout_update_xml":"","custom_theme":"","custom_root_template":"","custom_layout_update_xml":"","active":true,"type":"cms_page","tsk":1568838038375}} +{"_index":"vue_storefront_catalog_cms_page_1568838132","_type":"_doc","_id":"6","_score":1,"_source":{"store_id":[0],"id":6,"identifier":"customer-service","title":"Customer Service","page_layout":"1column","meta_keywords":"","meta_description":"","content_heading":"Customer Service","content":"
\n
\n

Luma Delivery and Returns

\n

We hope you love shopping with Luma. Here are our delivery and returns policies to help make sure we meet your expectations. Contact Us.

\n
\n\n

Shipping and Delivery

\n

Shipping and Delivery is the charge for internet order processing, item selection, packaging, transport and handling. We don’t guarantee delivery times, but we do our best to provide accurate estimates.

\n\n

Deliveries occur only on weekdays. Shipping and Delivery charges are subject to change and are determined when you order. Estimated delivery time assumes orders are placed before 12:00 noon (PST). Orders you place with Luma late on Friday or on Saturday will not be processed until Monday. Charges may be added to orders with Priority, Overnight and International shipping if we try unsuccessfully to deliver your order more than once.

\n\n

Delivery addresses in Alaska, Hawaii, Puerto Rico, and Guam should add an additional $5.00 charge for standard Shipping & Delivery. Orders arrive in 7 to 9 business days when ordered before 12:00 noon (PST).

\n\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Shipping and Delivery
Merchandise total *STANDARD
5—7 day shipping **
PRIORITY
2—3 day shipping **
OVERNIGHT
Next business day **
Up to $200$16$26$33
$200.01—500.00$21$31$38
$500.01—1000.00$29$39$46
Over $1000.00$34$44$51
\n
\n\n

\n *before tax and additional charges
\n **after processing if ordered by 12:00 noon PST\n

\n\n

Returns and Replacements

\n

We want you to be completely happy with your Luma order. If for any reason you are not satisfied, we will gladly accept your timely return of unworn, unwashed, or defective merchandise. Used merchandise cannot be returned unless defective. Returned merchandise should include the vendor packaging and tags and be in the same condition as when it was received. A pickup and/or restock fee may apply. Merchandise must be returned within 30 days of receipt of merchandise.

\n\n

Returning Gifts

\n

When returning a gift, a Luma Gift Card will be issued to the gift recipient for the amount of the returned merchandise. The card can be used for purchases from any Luma store, and online. In compliance with Federal law, for gifts valued at more than $2,000.00, the recipient will receive a check rather than an Luma Gift Card.

\n\n

Returning Merchandise by Mail

\n

On the back of the packing slip enclosed with your Luma order, please note the reason(s) for return and whether you wish to exchange the item(s) or receive a credit/refund (depending on the original form of payment).

\n

Enclose the return section of the packing slip with your item(s). Please use one of the return labels provided on the front of your packing slip to ensure proper return address and credit information. Restricted items must be returned using ground transportation.

\n

Please allow 10 to 14 days for Luma to process your return.

\n
\n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","sort_order":"0","layout_update_xml":"","custom_theme":"","custom_root_template":"","custom_layout_update_xml":"","active":true,"type":"cms_page","tsk":1568838038375}} +{"_index":"vue_storefront_catalog_cms_page_1568838132","_type":"_doc","_id":"2","_score":1,"_source":{"store_id":[0],"id":2,"identifier":"home","title":"Home Page","page_layout":"1column","meta_keywords":"","meta_description":"","content_heading":"Home Page","content":"","creation_time":"2017-11-03 08:34:38","update_time":"2017-11-03 08:34:38","sort_order":"0","layout_update_xml":"","custom_theme":"","custom_root_template":"","custom_layout_update_xml":"","active":true,"type":"cms_page","tsk":1568838038375}} +{"_index":"vue_storefront_catalog_cms_page_1568838132","_type":"_doc","_id":"1","_score":1,"_source":{"store_id":[0],"id":1,"identifier":"no-route","title":"404 Not Found","page_layout":"2columns-right","meta_keywords":"Page keywords","meta_description":"Page description","content_heading":"Whoops, our bad...","content":"
\r\n
The page you requested was not found, and we have a fine guess why.
\r\n
\r\n
    \r\n
  • If you typed the URL directly, please make sure the spelling is correct.
  • \r\n
  • If you clicked on a link to get here, the link is outdated.
  • \r\n
\r\n
\r\n
\r\n
What can you do?
\r\n
Have no fear, help is near! There are many ways you can get back on track with Magento Store.
\r\n
\r\n
    \r\n
  • Go back to the previous page.
  • \r\n
  • Use the search bar at the top of the page to search for your products.
  • \r\n
  • Follow these links to get you back on track!
    Store Home | My Account
\r\n","creation_time":"2017-11-03 08:34:38","update_time":"2017-11-03 08:34:38","sort_order":"0","active":true,"type":"cms_page","tsk":1568838038375}} +{"_index":"vue_storefront_catalog_cms_page_1568838132","_type":"_doc","_id":"4","_score":1,"_source":{"store_id":[0],"id":4,"identifier":"privacy-policy-cookie-restriction-mode","title":"Privacy Policy","page_layout":"1column","meta_keywords":"","meta_description":"","content_heading":"Privacy Policy","content":"
\n
\n

This website (\"website\") is operated by Luma Inc., which includes Luma stores, and Luma Private Sales. This privacy policy only covers information collected at this website, and does not cover any information collected offline by Luma. All Luma websites are covered by this privacy policy.

\n\n

Luma Security

\n

Personal information provided on the website and online credit card transactions are transmitted through a secure server. We are committed to handling your personal information with high standards of information security. We take appropriate physical, electronic, and administrative steps to maintain the security and accuracy of personally identifiable information we collect, including limiting the number of people who have physical access to our database servers, as well as employing electronic security systems and password protections that guard against unauthorized access.

\n\n

Our website uses encryption technology, like Secure Sockets Layer (SSL), to protect your personal information during data transport. SSL encrypts ordering information such as your name, address, and credit card number. Our Customer Care center and stores also operate over a private, secure network. Please note that email is not encrypted and is not considered to be a secure means of transmitting credit card information.

\n\n

Luma Privacy Policy

\n

To help us achieve our goal of providing the highest quality products and services, we use information from our interactions with you and other customers, as well as from other parties. Because we respect your privacy, we have implemented procedures to ensure that your personal information is handled in a safe, secure, and responsible manner. We have posted this privacy policy in order to explain our information collection practices and the choices you have about the way information is collected and used.

\n\n

As we continue to develop the Luma website and take advantage of advances in technology to improve the services we offer, this privacy policy likely will change. We therefore encourage you to refer to this policy on an ongoing basis so that you understand our current privacy policy.

\n\n

The Information We Collect

\n

Generally, you may browse the Luma website without providing any personally identifiable information. However, we may ask you to provide personally identifiable information at various times and places on this website. In some cases, if you choose not to provide us with the requested information, you may not be able to access all parts of this website or participate in all of its features, pricing, and product selection.

\n\n

We may collect the following information:

\n
    \n
  • name
  • \n
  • contact information including email address
  • \n
  • demographic information such as postcode, preferences and interests
  • \n
  • other information relevant to customer surveys and/or offers
  • \n
\n

For the exhaustive list of cookies we collect see the List of cookies we collect section. From your purchases and other interactions with us, we obtain information concerning the specific products or services you purchase or use. When you visit this website, our web server automatically collects anonymous information such as log data and IP addresses, and may collect general information concerning your location. We may use the automatically collected information for a number of purposes, such as improving our site design, product assortments, customer service, and special promotions.

\n

How We Use The Information We Collect

\n

We require this information to understand your needs and provide you with a better service, and in particular for the following reasons:

\n
    \n
  • Internal record keeping.
  • \n
  • We may use the information to improve our products and services.
  • \n
  • We may periodically send promotional emails about new products, special offers or other information which we think you may find interesting using the email address which you have provided.
  • \n
  • From time to time, we may also use your information to contact you for market research purposes. We may contact you by email, phone, fax or mail. We may use the information to customize the website according to your interests.
  • \n
\n\n

Security

\n

We are committed to ensuring that your information is secure. In order to prevent unauthorized access or disclosure, we have put in place suitable physical, electronic and managerial procedures to safeguard and secure the information we collect online.

\n\n

Others With Whom We Share Your Information.

\n

The Luma Group: All of the above information that we collect, as described above, may be shared among all Luma entities, including Luma Venia and Luma Terra stores, website and Private Sales.

\n\n

Service Providers: We also may disclose information to outside companies that help us bring you the products and services we offer. For example, we may work with an outside company to: (a) manage a database of customer information; (b) assist us in distributing emails; (c) assist us with direct marketing and data collection; (d) provide us storage and analysis; (d) provide fraud prevention; and (e) provide other services designed to assist us in maximizing our business potential. We require that these outside companies agree to keep confidential all information we share with them and to use the information only to perform their obligations in our agreements with them.

\n\n

Other Companies: We may provide information to carefully selected outside companies when we believe their products or services may be of interest to you.

\n\n

Business Transitions: We may transfer or share a copy of personal information about you in the event that Luma or one of its properties, affiliates, or subsidiaries goes through a business transition, such as a merger, being acquired by another company, or selling a portion of its assets. You will be notified via email or prominent notice on our website prior to a change of ownership or control of your personal information, if your personal information will be used contrary to this policy. However, nothing in this Privacy Policy is intended to interfere with the ability of Luma to transfer all or part of its business and/or assets to an affiliate or independent third party at any time, for any purpose, without any limitation whatsoever.

\n\n

Luma specifically reserves the right to transfer or share a copy of personally identifiable information collected from its websites to the buyer of that portion of its business relating to that information.

\n\n

Compliance with Law: We may provide access to information when legally required to do so, to cooperate with police investigations or other legal proceedings, to protect against misuse or unauthorized use of our website, to limit our legal liability, and to protect our rights or to protect the rights, property, or safety of visitors of this website or the public.

\n\n

Luma partners with advertising companies to place our advertising on publisher websites on the Internet. These advertising companies collect anonymous information about your visits to our web site. This technology involves the use of third party cookies that allow them to develop personalized advertising so that it directly relates to offers that may be of interest to you. You may choose to opt-out of this service we have with our third-party advertising partner. We may also use Luma cookies to provide similar enhanced online marketing to you based on your interests and preferences. You may also choose to opt out of these enhanced online marketing ads.

\n\n

Your Choices Regarding Use Of The Information We Collect

\n\n

You have several choices regarding our handling of your nonpublic personally identifiable information.

\n\n

\n Direct Mail or Telephone Marketing: If you shop at the Luma or Private Sales stores and wish to be removed from the list of customers that receive direct mail or telemarketing calls, please either write to Luma Customer Care at 112 West 34th Street, 18th Flr. New York, NY 10120 or call +1 800-403-8838. If you choose to write to us, please include your name, address, and credit card account number (if you have one), and state one of the following:\n

    \n
  • \"NO MAIL OFFERS\" (if you don't want to receive offers by mail);
  • \n
  • \"NO PHONE OFFERS\" (if you don't want to receive offers by phone);
  • \n
  • \"NO PHONE OR MAIL OFFERS\" (if you don't want to receive either).
  • \n
\n

\n\n

Because customer lists often are prepared well in advance of an offering (sometimes a few months before the offer is made), you may continue to receive some offers after you send us a request not to use your information for specified marketing purposes. We appreciate your patience and understanding in giving us time to carry out your request.

\n\n

Your California Privacy Rights

\n

Under California Civil Code sections 1798.83-1798.84, California residents are entitled to ask us for a notice describing what categories of personal customer information we share with third parties or corporate affiliates for those third parties or corporate affiliates' direct marketing purposes. That notice will identify the categories of information shared and will include a list of the third parties and affiliates with which it was shared, along with their names and addresses. If you are a California resident and would like a copy of this notice, please submit a written request to the following address: Luma Customer Care, 112 West 34th Street, 18th Floor, New York, NY 10120. Please allow 30 days for a response.

\n\n

Cookies, Web Beacons, and How We Use Them

\n

A cookie is a small file which asks permission to be placed on your computer's hard drive. Once you agree, the file is added and the cookie helps analyze web traffic or lets you know when you visit a particular site. Cookies allow web applications to respond to you as an individual. The web application can tailor its operations to your needs, likes and dislikes by gathering and remembering information about your preferences.

\n\n

We use traffic log cookies to identify which pages are being used. This helps us analyze data about web page traffic and improve our website in order to tailor it to customer needs. We only use this information for statistical analysis purposes and then the data is removed from the system.

\n\n

Overall, cookies help us provide you with a better website, by enabling us to monitor which pages you find useful and which you do not. A cookie in no way gives us access to your computer or any information about you, other than the data you choose to share with us. You can choose to accept or decline cookies. Most web browsers automatically accept cookies, but you can usually modify your browser setting to decline cookies if you prefer. This may prevent you from taking full advantage of the website.

\n\n

A \"web beacon\" or \"pixel tag\" or \"clear gif\" is typically a one-pixel image, used to pass information from your computer or mobile device to a website.

\n\n

We use cookies and web beacons to keep track of what you have in your shopping cart and to remember you when you return to the website as well as to identify the pages you click on during your visit to our site and the name of the website you visited immediately before clicking to the Luma website. We use this information to improve our site design, product assortments, customer service, and special promotions. You can, of course, disable cookies and web beacons on your computer by indicating this in the preferences or options menus in your browser. However, it is possible that some parts of our website will not operate correctly if you disable cookies. We may also use web beacons, and other technologies, to help track whether our communications are reaching you, to measure their effectiveness, or to collect certain non-personal information about your computer, device, or browser in order to allow us to better design future communications to you.

\n\n

We may contract with third parties who may use cookies and web beacons and collect information on our behalf or provide services such as credit card processing, shipping, promotional services, or data management. We call them our Customer Care Partners. These third parties are prohibited by our contract with them from sharing that information with anyone other than us or our other Customer Care Partners.

\n\n

List of cookies we collect

\n

The table below lists the cookies we collect and the information they store.

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
COOKIE nameCOOKIE Description
CARTThe association with your shopping cart.
CATEGORY_INFOAllows pages to be displayed more quickly.
COMPAREThe items that you have in the Compare Products list.
CUSTOMERAn encrypted version of your customer id.
CUSTOMER_AUTHAn indicator if you are signed into the store.
CUSTOMER_INFOAn encrypted version of the customer group you belong to.
CUSTOMER_SEGMENT_IDSStores your Customer Segment ID
EXTERNAL_NO_CACHEA flag that, indicates whether caching is on or off.
FRONTENDYour session ID on the server.
GUEST-VIEWAllows guests to edit their orders.
LAST_CATEGORYThe last category you visited.
LAST_PRODUCTThe last product you looked at.
NEWMESSAGEIndicates whether a new message has been received.
NO_CACHEIndicates whether it is allowed to use cache.
PERSISTENT_SHOPPING_CARTA link to information about your cart and viewing history if you have asked the site.
RECENTLYCOMPAREDThe items you recently compared.
STFInformation on products you emailed to friends.
STOREThe store view or language you have selected.
USER_ALLOWED_SAVE_COOKIEIndicates whether a customer authorized cookies.
VIEWED_PRODUCT_IDSThe products that you recently looked at.
WISHLISTAn encrypted list of products added to your wish list.
WISHLIST_CNTThe number of items in your wish list.
\n\n

Online Account Registration

\n

To make online shopping faster and easier, you may register on the Luma website. As a registered customer, you only have to enter your shipping addresses and billing information once; they will be securely stored with us for your future use. Using your name and a password of your choice, you may access your account online at any time to add, delete, or change information. If you are using a public computer, we strongly encourage you to Sign Out when you finish shopping. Your information will still be stored with us but it will not be accessible to anyone else from that computer.

\n\n

Emails

\n

You will receive promotional emails from us only if you have asked to receive them. If you do not want to receive email from Luma or its affiliates you can click on the \"Unsubscribe\" link at the bottom of any email communication sent by us. Please allow us 3 business days from when the request was received to complete the removal, as some of our promotions may already have been in process before you submitted your request.

\n\n

Acceptance

\n

By using this website, you accept the policies set forth in this Privacy Policy.

\n\n

Questions for Luma?

\n

Contact Us

\n
\n \n
\n","creation_time":"2017-11-03 08:34:38","update_time":"2017-11-03 08:34:38","sort_order":"0","layout_update_xml":"","custom_theme":"","custom_root_template":"","custom_layout_update_xml":"","active":true,"type":"cms_page","tsk":1568838038375}} diff --git a/var/catalog_de.json b/var/catalog_de.json deleted file mode 100644 index 5234933d..00000000 --- a/var/catalog_de.json +++ /dev/null @@ -1,2190 +0,0 @@ -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"14","_score":1,"_source":{"id":14,"sku":"24-WB04","name":"Push It Messenger Bag - tier price","attribute_set_id":15,"price":45,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:26","updated_at":"2018-08-22 09:27:59","product_links":[],"tier_prices":[{"customer_group_id":1,"qty":1,"value":35,"extension_attributes":{"website_id":0}}],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

The name says so, but the Push It Messenger Bag is much more than a busy commuter's tote. It's a closet away from home when you're pedaling from class or work to gym and back or home again. It's the perfect size and shape for laptop, folded clothes, even extra shoes.

\r\n
    \r\n
  • Adjustable crossbody strap.
  • \r\n
  • Top handle.
  • \r\n
  • Zippered interior pocket.
  • \r\n
  • Secure clip closures.
  • \r\n
  • Durable fabric construction.
  • \r\n
","image":"/w/b/wb04-blue-0.jpg","small_image":"/w/b/wb04-blue-0.jpg","thumbnail":"/w/b/wb04-blue-0.jpg","color":"49","category_ids":[3,7,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"push-it-messenger-bag","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[20,23,8],"style_bags":[27,28],"material":[37,38],"strap_bags":[61,62,63,65,66,67],"features_bags":[74,75,78,79],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","slug":"push-it-messenger-bag-tier-price-14","links":{},"stock":{"item_id":14,"product_id":14,"stock_id":1,"qty":40,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/gerat-3/push-it-messenger-bag-tier-price-14.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"19","_score":1,"_source":{"id":19,"sku":"24-UG05","name":"Go-Get'r Pushup Grips","attribute_set_id":11,"price":19,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2017-11-06 12:16:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":23.370001,"max_price":23.370001,"max_regular_price":23.370001,"minimal_regular_price":23.370001,"special_price":null,"minimal_price":23.370001,"regular_price":23.370001,"description":"

The Go-Get'r Pushup Grips safely provide the extra range of motion you need for a deep-dip routine targeting core, shoulder, chest and arm strength. Do fewer pushups using more energy, getting better results faster than the standard floor-level technique yield.

\n
    \n
  • Durable foam grips.
  • \n
  • Supportive base.
  • \n
","image":"/u/g/ug05-gr-0.jpg","small_image":"/u/g/ug05-gr-0.jpg","thumbnail":"/u/g/ug05-gr-0.jpg","category_ids":[3,7,5,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"go-get-r-pushup-grips","tax_class_id":"2","activity":[16,11],"material":[44,45],"gender":[80,81,84],"category_gear":"87","erin_recommends":"1","new":"1","slug":"go-getr-pushup-grips-19","links":{},"stock":{"item_id":19,"product_id":19,"stock_id":1,"qty":80,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/u/g/ug05-gr-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/gerat-3/go-getr-pushup-grips-19.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"40","_score":1,"_source":{"id":40,"sku":"24-MG02","name":"Dash Digital Watch","attribute_set_id":11,"price":92,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":113.160001,"max_price":113.160001,"max_regular_price":113.160001,"minimal_regular_price":113.160001,"special_price":null,"minimal_price":113.160001,"regular_price":113.160001,"description":"

The Dash Digital Watch will challenge you to push harder and longer. Log workouts by date, average, and segment times, and recharge by setting hydration and nutrition alarms. This watch is styled with a sleek, square face and durable rubber strap for a long life.

\n
    \n
  • Digital display.
  • \n
  • LED backlight.
  • \n
  • Rubber strap with buckle clasp.
  • \n
  • 1-year limited warranty.
  • ","image":"/m/g/mg02-bk-0.jpg","small_image":"/m/g/mg02-bk-0.jpg","thumbnail":"/m/g/mg02-bk-0.jpg","category_ids":[3,7,6,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"dash-digital-watch","tax_class_id":"2","activity":[16,17,5,11],"material":"45","gender":"80","category_gear":[86,87,90],"new":"1","slug":"dash-digital-watch-40","links":{},"stock":{"item_id":40,"product_id":40,"stock_id":1,"qty":49,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/g/mg02-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/gerat-3/dash-digital-watch-40.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"25","_score":1,"_source":{"id":25,"sku":"24-WG081-pink","name":"Sprite Stasis Ball 55 cm","attribute_set_id":12,"price":23,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28.290001,"max_price":28.290001,"max_regular_price":28.290001,"minimal_regular_price":28.290001,"special_price":null,"minimal_price":28.290001,"regular_price":28.290001,"description":"

    The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

    \n
      \n
    • Durable, burst-resistant design.
    • \n
    • Hand pump included.
    • \n
    ","image":"/l/u/luma-stability-ball-pink.jpg","small_image":"/l/u/luma-stability-ball-pink.jpg","thumbnail":"/l/u/luma-stability-ball-pink.jpg","color":"58","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-55-cm-pink","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"91","slug":"sprite-stasis-ball-55-cm-25","links":{},"stock":{"item_id":25,"product_id":25,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball-pink.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-stasis-ball-55-cm-25.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"44","_score":1,"_source":{"id":44,"sku":"24-WG02","name":"Didi Sport Watch","attribute_set_id":11,"price":92,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

    The Didi Sport Watch helps you keep your workout plan down to the second. The vertical, digital face looks sleek and futuristic. This watch is programmed with tons of helpful features such as a timer, an alarm clock, a pedometer, and more to help make your excercise more productive.

    \n
      \n
    • Digital display.
    • \n
    • LED backlight.
    • \n
    • Rubber strap with buckle clasp.
    • \n
    • 1-year limited warranty.
    • \n
    ","image":"/w/g/wg02-bk-0.jpg","small_image":"/w/g/wg02-bk-0.jpg","thumbnail":"/w/g/wg02-bk-0.jpg","category_ids":[3,7,6,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"didi-sport-watch","tax_class_id":"2","activity":[16,11],"material":[43,45,48],"gender":"81","category_gear":[86,87,90],"new":"1","slug":"didi-sport-watch-44","links":{},"stock":{"item_id":44,"product_id":44,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-02-07 19:23:59","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/g/wg02-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/gerat-3/didi-sport-watch-44.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"41","_score":1,"_source":{"id":41,"sku":"24-WG09","name":"Luma Analog Watch","attribute_set_id":11,"price":43,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52.890001,"max_price":52.890001,"max_regular_price":52.890001,"minimal_regular_price":52.890001,"special_price":"43.0000","minimal_price":52.890001,"regular_price":52.890001,"description":"

    Designed to stand up to your active lifestyle, this women's Luma Analog Watch features a tasteful brushed chrome finish and a stainless steel, water-resistant construction for lasting durability.

    \n
      \n
    • Precision Miyota® three-hand movement.
    • \n
    ","special_from_date":"2017-11-06 12:16:30","image":"/w/g/wg09-gr-0.jpg","small_image":"/w/g/wg09-gr-0.jpg","thumbnail":"/w/g/wg09-gr-0.jpg","category_ids":[3,6],"options_container":"container2","required_options":"0","has_options":"0","url_key":"luma-analog-watch","tax_class_id":"2","activity":"9","material":"47","gender":"81","category_gear":[86,88,90],"sale":"1","slug":"luma-analog-watch-41","links":{},"stock":{"item_id":41,"product_id":41,"stock_id":1,"qty":15,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/g/wg09-gr-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"}],"url_path":"gear/gerat-3/luma-analog-watch-41.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"26","_score":1,"_source":{"id":26,"sku":"24-WG081-blue","name":"Sprite Stasis Ball 55 cm - tier price","attribute_set_id":12,"price":23,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2018-08-22 09:27:13","product_links":[],"tier_prices":[{"customer_group_id":1,"qty":1,"value":15,"extension_attributes":{"website_id":0}}],"custom_attributes":null,"final_price":28.290001,"max_price":28.290001,"max_regular_price":28.290001,"minimal_regular_price":28.290001,"special_price":null,"minimal_price":28.290001,"regular_price":28.290001,"description":"

    The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

    \r\n
      \r\n
    • Durable, burst-resistant design.
    • \r\n
    • Hand pump included.
    • \r\n
    ","image":"/l/u/luma-stability-ball.jpg","small_image":"/l/u/luma-stability-ball.jpg","thumbnail":"/l/u/luma-stability-ball.jpg","color":"50","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-55-cm-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"91","slug":"sprite-stasis-ball-55-cm-tier-price-26","links":{},"stock":{"item_id":26,"product_id":26,"stock_id":1,"qty":48,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-stasis-ball-55-cm-tier-price-26.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"48","_score":1,"_source":{"id":48,"sku":"240-LV06","name":"Yoga Adventure","attribute_set_id":14,"price":22,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:33","updated_at":"2019-03-22 09:14:31","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18.450001,"max_price":18.450001,"max_regular_price":18.450001,"minimal_regular_price":18.450001,"special_price":"15.0000","minimal_price":18.450001,"regular_price":27.060001,"description":"

    Luma presents an innovative power vinyasa yoga class for intermediate and advanced practitioners. The video allows you to pace yourself, but more intense work yields longer rest. This class is great for more advanced students looking to learn proper alignment in their yoga practice.

    \r\n
      \r\n
    • Includes a breakdown of 12 different postures.
    • \r\n
    • Chataranga Dandasana and prayer twist.
    • \r\n
    • Challenging posture (side crow).
    • \r\n
    • 55 minutes of movement.
    • \r\n
    ","short_description":"

    \r\nThe practices on this downloadable training video are recommended only for experienced to advanced students. Those with the fundamental skills needed won't want to miss the insight and advice from world-renowned trainer Erin Renny in these exclusive Luma guided yoga sessions. Complete body, arm balance and leg strength workouts engage, strengthen and increase mobility.\r\n

    ","special_from_date":"2019-03-22 00:00:00","image":"/l/t/lt03.jpg","small_image":"/l/t/lt03.jpg","thumbnail":"/l/t/lt03.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"yoga-adventure","msrp_display_actual_price_type":"0","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","gift_message_available":"0","tax_class_id":"2","activity":[8,16],"format":"102","slug":"yoga-adventure-48","links":{},"stock":{"item_id":48,"product_id":48,"stock_id":1,"qty":2,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/t/lt03.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":9,"name":"Training","slug":"training-9","path":"training/training-9"},{"category_id":10,"name":"Video Download","slug":"video-download-10","path":"training/training-video/video-download-10"}],"url_path":"training/training-9/yoga-adventure-48.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"22","_score":1,"_source":{"id":22,"sku":"24-WG088","name":"Sprite Foam Roller","attribute_set_id":11,"price":19,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2018-07-23 08:05:45","product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

    It hurts so good to use the Sprite Foam Roller on achy, tired muscles for myofascial massage therapy. Or you can add this fundamental piece to your Pilates and yoga accouterment, or apply towards core stability, strengthening and balance exercise.

    \r\n
      \r\n
    • 6'' wide by 12'' long.
    • \r\n
    • Safe for myofascial release.
    • \r\n
    • EPP or PE foam options.
    • \r\n
    • Solid, dense, closed-cell foam.
    • \r\n
    ","image":"/l/u/luma-foam-roller.jpg","small_image":"/l/u/luma-foam-roller.jpg","thumbnail":"/l/u/luma-foam-roller.jpg","color":"50","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-foam-roller","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[8,11],"material":"42","gender":[80,81,84],"category_gear":"87","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"sprite-foam-roller-22","links":{},"stock":{"item_id":22,"product_id":22,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-04-16 10:43:08","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/l/u/luma-foam-roller.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-foam-roller-22.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"29","_score":1,"_source":{"id":29,"sku":"24-WG082-blue","name":"Sprite Stasis Ball 65 cm","attribute_set_id":12,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

    The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

    \n
      \n
    • 65 cm plastic shell.
    • \n
    • Durable, burst-resistant design.
    • \n
    • Hand pump included.
    • \n
    ","image":"/l/u/luma-stability-ball.jpg","small_image":"/l/u/luma-stability-ball.jpg","thumbnail":"/l/u/luma-stability-ball.jpg","color":"50","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-65-cm-blue","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"92","slug":"sprite-stasis-ball-65-cm-29","links":{},"stock":{"item_id":29,"product_id":29,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-stasis-ball-65-cm-29.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"24","_score":1,"_source":{"id":24,"sku":"24-WG081-gray","name":"Sprite Stasis Ball 55 cm","attribute_set_id":12,"price":23,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28.290001,"max_price":28.290001,"max_regular_price":28.290001,"minimal_regular_price":28.290001,"special_price":null,"minimal_price":28.290001,"regular_price":28.290001,"description":"

    The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

    \n
      \n
    • Durable, burst-resistant design.
    • \n
    • Hand pump included.
    • \n
    ","image":"/l/u/luma-stability-ball-gray.jpg","small_image":"/l/u/luma-stability-ball-gray.jpg","thumbnail":"/l/u/luma-stability-ball-gray.jpg","color":"52","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-55-cm-gray","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"91","slug":"sprite-stasis-ball-55-cm-24","links":{},"stock":{"item_id":24,"product_id":24,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball-gray.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-stasis-ball-55-cm-24.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"99","_score":1,"_source":{"id":99,"sku":"MH03","name":"Bruno Compete Hoodie","attribute_set_id":9,"price":63,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":63,"description":"

    Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

    \n

    • Full zip black hoodie pullover.
    • Adjustable drawstring hood.
    • Ribbed cuffs/waistband.
    • Kangaroo pocket.
    • Machine wash/dry.

    ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"bruno-compete-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","pattern":"197","climate":[202,204,205,208,210],"slug":"bruno-compete-hoodie-99","links":{},"stock":{"item_id":99,"product_id":99,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH03-XS-Black","id":84,"status":1,"name":"Bruno Compete Hoodie-XS-Black","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"49","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","url_key":"bruno-compete-hoodie-xs-black","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-XS-Blue","id":85,"status":1,"name":"Bruno Compete Hoodie-XS-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"50","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","url_key":"bruno-compete-hoodie-xs-blue","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-XS-Green","id":86,"status":1,"name":"Bruno Compete Hoodie-XS-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"53","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","url_key":"bruno-compete-hoodie-xs-green","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-S-Black","id":87,"status":1,"name":"Bruno Compete Hoodie-S-Black","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"49","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","url_key":"bruno-compete-hoodie-s-black","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-S-Blue","id":88,"status":1,"name":"Bruno Compete Hoodie-S-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"50","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","url_key":"bruno-compete-hoodie-s-blue","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-S-Green","id":89,"status":1,"name":"Bruno Compete Hoodie-S-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"53","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","url_key":"bruno-compete-hoodie-s-green","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-M-Black","id":90,"status":1,"name":"Bruno Compete Hoodie-M-Black","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"49","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","url_key":"bruno-compete-hoodie-m-black","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-M-Blue","id":91,"status":1,"name":"Bruno Compete Hoodie-M-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"50","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","url_key":"bruno-compete-hoodie-m-blue","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-M-Green","id":92,"status":1,"name":"Bruno Compete Hoodie-M-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"53","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","url_key":"bruno-compete-hoodie-m-green","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-L-Black","id":93,"status":1,"name":"Bruno Compete Hoodie-L-Black","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"49","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","url_key":"bruno-compete-hoodie-l-black","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-L-Blue","id":94,"status":1,"name":"Bruno Compete Hoodie-L-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"50","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","url_key":"bruno-compete-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-L-Green","id":95,"status":1,"name":"Bruno Compete Hoodie-L-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"53","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","url_key":"bruno-compete-hoodie-l-green","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-XL-Black","id":96,"status":1,"name":"Bruno Compete Hoodie-XL-Black","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"49","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","url_key":"bruno-compete-hoodie-xl-black","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-XL-Blue","id":97,"status":1,"name":"Bruno Compete Hoodie-XL-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"50","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","url_key":"bruno-compete-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-XL-Green","id":98,"status":1,"name":"Bruno Compete Hoodie-XL-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"53","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","url_key":"bruno-compete-hoodie-xl-green","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001}],"configurable_options":[{"id":7,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":99,"attribute_code":"color"},{"id":6,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":99,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-99.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"60","_score":1,"_source":{"id":60,"sku":"MH01-M-Orange","name":"Chaz Kangeroo Hoodie-M-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

    Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

    \n

    • Two-tone gray heather hoodie.
    • Drawstring-adjustable hood.
    • Machine wash/dry.

    ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chaz-kangeroo-hoodie-m-orange-60","links":{},"stock":{"item_id":60,"product_id":60,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-m-orange-60.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"79","_score":1,"_source":{"id":79,"sku":"MH02-L-Red","name":"Teton Pullover Hoodie-L-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

    This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

    \n

    • Black pullover hoodie.
    • Soft, brushed interior.
    • Front hand pockets.
    • Machine wash/dry.

    ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"teton-pullover-hoodie-l-red-79","links":{},"stock":{"item_id":79,"product_id":79,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-l-red-79.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"73","_score":1,"_source":{"id":73,"sku":"MH02-S-Red","name":"Teton Pullover Hoodie-S-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

    This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

    \n

    • Black pullover hoodie.
    • Soft, brushed interior.
    • Front hand pockets.
    • Machine wash/dry.

    ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"teton-pullover-hoodie-s-red-73","links":{},"stock":{"item_id":73,"product_id":73,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-s-red-73.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"84","_score":1,"_source":{"id":84,"sku":"MH03-XS-Black","name":"Bruno Compete Hoodie-XS-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

    Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

    \n

    • Full zip black hoodie pullover.
    • Adjustable drawstring hood.
    • Ribbed cuffs/waistband.
    • Kangaroo pocket.
    • Machine wash/dry.

    ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bruno-compete-hoodie-xs-black-84","links":{},"stock":{"item_id":84,"product_id":84,"stock_id":1,"qty":69,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xs-black-84.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"92","_score":1,"_source":{"id":92,"sku":"MH03-M-Green","name":"Bruno Compete Hoodie-M-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

    Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

    \n

    • Full zip black hoodie pullover.
    • Adjustable drawstring hood.
    • Ribbed cuffs/waistband.
    • Kangaroo pocket.
    • Machine wash/dry.

    ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bruno-compete-hoodie-m-green-92","links":{},"stock":{"item_id":92,"product_id":92,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-m-green-92.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"79","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":79,"attribute_code":"special_from_date","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Special Price From Date","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate","is_unique":"0","validation_rules":[],"id":79,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"73","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":true,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":73,"attribute_code":"name","frontend_input":"text","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Product Name","frontend_labels":null,"backend_type":"varchar","is_unique":"0","frontend_class":"validate-length maximum-length-255","validation_rules":[],"id":73,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"84","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":84,"attribute_code":"meta_title","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Meta Title","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":84,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"89","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":89,"attribute_code":"thumbnail","frontend_input":"media_image","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Thumbnail","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":89,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"92","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"website","attribute_id":92,"attribute_code":"tier_price","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Tier Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Tierprice","is_unique":"0","validation_rules":[],"id":92,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"99","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":99,"attribute_code":"visibility","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Not Visible Individually","value":"1"},{"label":"Catalog","value":"2"},{"label":"Search","value":"3"},{"label":"Catalog, Search","value":"4"}],"is_user_defined":false,"default_frontend_label":"Visibility","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Catalog\\Model\\Product\\Visibility","default_value":"4","is_unique":"0","validation_rules":[],"id":99,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"98","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":98,"attribute_code":"minimal_price","frontend_input":"price","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Minimal Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":98,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"105","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":105,"attribute_code":"category_ids","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Categories","frontend_labels":null,"backend_type":"static","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Category","is_unique":"0","validation_rules":[],"id":105,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"108","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":108,"attribute_code":"has_options","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":108,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"110","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"store","attribute_id":110,"attribute_code":"small_image_label","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Small Image Label","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":110,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"116","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":116,"attribute_code":"custom_layout","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"No layout updates","value":""},{"label":"Empty","value":"empty"},{"label":"1 column","value":"1column"},{"label":"2 columns with left bar","value":"2columns-left"},{"label":"2 columns with right bar","value":"2columns-right"},{"label":"3 columns","value":"3columns"}],"is_user_defined":false,"default_frontend_label":"New Layout","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Layout","is_unique":"0","validation_rules":[],"id":116,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"119","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":119,"attribute_code":"url_key","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"URL Key","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":119,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"120","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"store","attribute_id":120,"attribute_code":"url_path","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":120,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"123","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":123,"attribute_code":"price_type","frontend_input":"boolean","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Dynamic Price","frontend_labels":null,"backend_type":"int","default_value":"0","is_unique":"0","validation_rules":[],"id":123,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"126","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":126,"attribute_code":"price_view","frontend_input":"select","entity_type_id":"4","is_required":true,"options":[{"label":"Price Range","value":"0"},{"label":"As Low as","value":"1"}],"is_user_defined":false,"default_frontend_label":"Price View","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Bundle\\Model\\Product\\Attribute\\Source\\Price\\View","is_unique":"0","validation_rules":[],"id":126,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"130","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"store","attribute_id":130,"attribute_code":"links_title","frontend_input":null,"entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Links title","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":130,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"129","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"store","attribute_id":129,"attribute_code":"samples_title","frontend_input":null,"entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Samples title","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":129,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"132","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":132,"attribute_code":"gift_message_available","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"},{"label":"Use config","value":"2"}],"is_user_defined":false,"default_frontend_label":"Allow Gift Message","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Boolean","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Boolean","is_unique":"0","validation_rules":[],"id":132,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"143","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":143,"attribute_code":"eco_collection","frontend_input":"boolean","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"}],"is_user_defined":true,"default_frontend_label":"Eco Collection","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean","default_value":"","is_unique":"0","validation_rules":[],"id":143,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"145","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":145,"attribute_code":"erin_recommends","frontend_input":"boolean","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"}],"is_user_defined":true,"default_frontend_label":"Erin Recommends","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean","default_value":"","is_unique":"0","validation_rules":[],"id":145,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"144","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":144,"attribute_code":"performance_fabric","frontend_input":"boolean","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"}],"is_user_defined":true,"default_frontend_label":"Performance Fabric","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean","default_value":"","is_unique":"0","validation_rules":[],"id":144,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"149","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":149,"attribute_code":"style_bottom","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Base Layer","value":"105"},{"label":"Basic","value":"106"},{"label":"Capri","value":"107"},{"label":"Compression","value":"108"},{"label":"Leggings","value":"109"},{"label":"Parachute","value":"110"},{"label":"Skort","value":"111"},{"label":"Snug","value":"112"},{"label":"Sweatpants","value":"113"},{"label":"Tights","value":"114"},{"label":"Track Pants","value":"115"},{"label":"Workout Pants","value":"116"}],"is_user_defined":true,"default_frontend_label":"Style Bottom","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":149,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"98","_score":1,"_source":{"id":98,"sku":"MH03-XL-Green","name":"Bruno Compete Hoodie-XL-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

    Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

    \n

    • Full zip black hoodie pullover.
    • Adjustable drawstring hood.
    • Ribbed cuffs/waistband.
    • Kangaroo pocket.
    • Machine wash/dry.

    ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bruno-compete-hoodie-xl-green-98","links":{},"stock":{"item_id":98,"product_id":98,"stock_id":1,"qty":49,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xl-green-98.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"89","_score":1,"_source":{"id":89,"sku":"MH03-S-Green","name":"Bruno Compete Hoodie-S-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

    Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

    \n

    • Full zip black hoodie pullover.
    • Adjustable drawstring hood.
    • Ribbed cuffs/waistband.
    • Kangaroo pocket.
    • Machine wash/dry.

    ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bruno-compete-hoodie-s-green-89","links":{},"stock":{"item_id":89,"product_id":89,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-s-green-89.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"52","_score":1,"_source":{"id":52,"sku":"MH01-XS-Black","name":"Chaz Kangeroo Hoodie-XS-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

    Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

    \n

    • Two-tone gray heather hoodie.
    • Drawstring-adjustable hood.
    • Machine wash/dry.

    ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chaz-kangeroo-hoodie-xs-black-52","links":{},"stock":{"item_id":52,"product_id":52,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xs-black-52.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"119","_score":1,"_source":{"id":119,"sku":"MH05-S-Green","name":"Hollister Backyard Sweatshirt-S-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

    Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

    \n

    • Cream crewneck sweatshirt with navy sleeves/trim.
    • Relaxed fit.
    • Ribbed cuffs and hem.
    • Machine wash/dry.

    ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hollister-backyard-sweatshirt-s-green-119","links":{},"stock":{"item_id":119,"product_id":119,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-s-green-119.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"22","_score":1,"_source":{"id":22,"parent_id":20,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"id":27,"parent_id":22,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":91,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/27","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-27","url_path":"women/bottoms-women/pants-women/pants-27","slug":"pants-27"},{"id":28,"parent_id":22,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":137,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/28","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-28","url_path":"women/bottoms-women/shorts-women/shorts-28","slug":"shorts-28"}],"children":"27,28","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-22","url_path":"women/bottoms-women/bottoms-22","slug":"bottoms-22","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"25","_score":1,"_source":{"id":25,"parent_id":21,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/25","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-25","url_path":"women/tops-women/tees-women/tees-25","slug":"tees-25","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"19","_score":1,"_source":{"id":19,"parent_id":13,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":148,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/19","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-19","url_path":"men/bottoms-men/shorts-men/shorts-19","slug":"shorts-19","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"24","_score":1,"_source":{"id":24,"parent_id":21,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":182,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/24","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-24","url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","slug":"hoodies-and-sweatshirts-24","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"14","_score":1,"_source":{"id":14,"parent_id":12,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":176,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:10:23","path":"1/2/11/12/14","available_sort_by":[],"include_in_menu":true,"description":"

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum dui sapien, bibendum ac luctus sed, lobortis id lacus. Nulla nisi augue, accumsan id sapien maximus, hendrerit vehicula elit.

    ","display_mode":"PRODUCTS","is_anchor":"1","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"jackets-14","url_path":"men/tops-men/jackets-men/jackets-14","slug":"jackets-14","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"26","_score":1,"_source":{"id":26,"parent_id":21,"name":"Bras & Tanks","is_active":true,"position":4,"level":4,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/26","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bras-and-tanks-26","url_path":"women/tops-women/tanks-women/bras-and-tanks-26","slug":"bras-and-tanks-26","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"29","_score":1,"_source":{"id":29,"parent_id":2,"name":"Promotions","is_active":false,"position":6,"level":2,"product_count":0,"children_data":[{"id":30,"parent_id":29,"name":"Women Sale","is_active":true,"position":1,"level":3,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/30","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"women-sale-30","url_path":"promotions/women-sale/women-sale-30","slug":"women-sale-30"},{"id":31,"parent_id":29,"name":"Men Sale","is_active":true,"position":2,"level":3,"product_count":39,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/31","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"men-sale-31","url_path":"promotions/men-sale/men-sale-31","slug":"men-sale-31"},{"id":32,"parent_id":29,"name":"Pants","is_active":true,"position":3,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/32","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"pants-32","url_path":"promotions/pants-all/pants-32","slug":"pants-32"},{"id":33,"parent_id":29,"name":"Tees","is_active":true,"position":4,"level":3,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/33","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"tees-33","url_path":"promotions/tees-all/tees-33","slug":"tees-33"}],"children":"30,31,32,33","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:42","path":"1/2/29","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","children_count":"4","url_key":"promotions-29","url_path":"promotions/promotions-29","slug":"promotions-29","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"40","_score":1,"_source":{"id":40,"parent_id":7,"name":"Eco Collection New","is_active":true,"position":6,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/40","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"eco-collection-new-40","url_path":"collections/eco-new/eco-collection-new-40","slug":"eco-collection-new-40","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"cms_block","_id":"14","_score":1,"_source":{"store_id":[0],"id":14,"identifier":"home-page-block","title":"Home Page Block","content":"\n
    \n

    Hot Sellers

    \n

    Here is what`s trending on Luma right now

    \n
    \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556376570938}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"240","_score":1,"_source":{"id":240,"sku":"MH12-XL-Blue","name":"Ajax Full-Zip Sweatshirt -XL-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

    \n

    • Mint striped full zip hoodie.
    • 100% bonded polyester fleece.
    • Pouch pocket.
    • Rib cuffs and hem.
    • Machine washable.

    ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ajax-full-zip-sweatshirt-xl-blue-240","links":{},"stock":{"item_id":240,"product_id":240,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xl-blue-240.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"227","_score":1,"_source":{"id":227,"sku":"MH11","name":"Grayson Crewneck Sweatshirt ","attribute_set_id":9,"price":64,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":64,"description":"

    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

    \n

    • Cream crewneck sweatshirt with black accents.
    • 80% cotton/20% polyester fleece.
    • Patterned knit hood lining.
    • Knit cuffs and waist.
    • Pouch pocket.
    • Curl edged seam detail

    ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"grayson-crewneck-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"195","climate":[202,204,205,208,210],"slug":"grayson-crewneck-sweatshirt-227","links":{},"stock":{"item_id":227,"product_id":227,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH11-XS-Orange","id":212,"status":1,"name":"Grayson Crewneck Sweatshirt -XS-Orange","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"56","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","url_key":"grayson-crewneck-sweatshirt-xs-orange","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-XS-Red","id":213,"status":1,"name":"Grayson Crewneck Sweatshirt -XS-Red","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","url_key":"grayson-crewneck-sweatshirt-xs-red","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-XS-White","id":214,"status":1,"name":"Grayson Crewneck Sweatshirt -XS-White","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"59","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","url_key":"grayson-crewneck-sweatshirt-xs-white","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-S-Orange","id":215,"status":1,"name":"Grayson Crewneck Sweatshirt -S-Orange","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"56","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","url_key":"grayson-crewneck-sweatshirt-s-orange","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-S-Red","id":216,"status":1,"name":"Grayson Crewneck Sweatshirt -S-Red","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","url_key":"grayson-crewneck-sweatshirt-s-red","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-S-White","id":217,"status":1,"name":"Grayson Crewneck Sweatshirt -S-White","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"59","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","url_key":"grayson-crewneck-sweatshirt-s-white","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-M-Orange","id":218,"status":1,"name":"Grayson Crewneck Sweatshirt -M-Orange","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"56","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","url_key":"grayson-crewneck-sweatshirt-m-orange","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-M-Red","id":219,"status":1,"name":"Grayson Crewneck Sweatshirt -M-Red","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","url_key":"grayson-crewneck-sweatshirt-m-red","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-M-White","id":220,"status":1,"name":"Grayson Crewneck Sweatshirt -M-White","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"59","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","url_key":"grayson-crewneck-sweatshirt-m-white","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-L-Orange","id":221,"status":1,"name":"Grayson Crewneck Sweatshirt -L-Orange","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"56","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","url_key":"grayson-crewneck-sweatshirt-l-orange","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-L-Red","id":222,"status":1,"name":"Grayson Crewneck Sweatshirt -L-Red","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","url_key":"grayson-crewneck-sweatshirt-l-red","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-L-White","id":223,"status":1,"name":"Grayson Crewneck Sweatshirt -L-White","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"59","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","url_key":"grayson-crewneck-sweatshirt-l-white","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-XL-Orange","id":224,"status":1,"name":"Grayson Crewneck Sweatshirt -XL-Orange","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"56","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","url_key":"grayson-crewneck-sweatshirt-xl-orange","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-XL-Red","id":225,"status":1,"name":"Grayson Crewneck Sweatshirt -XL-Red","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","url_key":"grayson-crewneck-sweatshirt-xl-red","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-XL-White","id":226,"status":1,"name":"Grayson Crewneck Sweatshirt -XL-White","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"59","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","url_key":"grayson-crewneck-sweatshirt-xl-white","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001}],"configurable_options":[{"id":23,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":227,"attribute_code":"color"},{"id":22,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":227,"attribute_code":"size"}],"color_options":[56,58,59],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-227.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"116","_score":1,"_source":{"id":116,"sku":"MH05-XS-Green","name":"Hollister Backyard Sweatshirt-XS-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

    Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

    \n

    • Cream crewneck sweatshirt with navy sleeves/trim.
    • Relaxed fit.
    • Ribbed cuffs and hem.
    • Machine wash/dry.

    ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hollister-backyard-sweatshirt-xs-green-116","links":{},"stock":{"item_id":116,"product_id":116,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xs-green-116.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"108","_score":1,"_source":{"id":108,"sku":"MH04-M-Yellow","name":"Frankie Sweatshirt-M-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

    \n

    • Light green crewneck sweatshirt.
    • Hand pockets.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"frankie-sweatshirt-m-yellow-108","links":{},"stock":{"item_id":108,"product_id":108,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-m-yellow-108.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"105","_score":1,"_source":{"id":105,"sku":"MH04-S-Yellow","name":"Frankie Sweatshirt-S-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

    \n

    • Light green crewneck sweatshirt.
    • Hand pockets.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"frankie-sweatshirt-s-yellow-105","links":{},"stock":{"item_id":105,"product_id":105,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-s-yellow-105.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"120","_score":1,"_source":{"id":120,"sku":"MH05-S-Red","name":"Hollister Backyard Sweatshirt-S-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

    Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

    \n

    • Cream crewneck sweatshirt with navy sleeves/trim.
    • Relaxed fit.
    • Ribbed cuffs and hem.
    • Machine wash/dry.

    ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hollister-backyard-sweatshirt-s-red-120","links":{},"stock":{"item_id":120,"product_id":120,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-s-red-120.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"132","_score":1,"_source":{"id":132,"sku":"MH06-XS-Black","name":"Stark Fundamental Hoodie-XS-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

    \n

    • Navy specked full zip hoodie.
    • Ribbed cuffs, banded waist.
    • Side pockets.
    • Machine wash/dry.

    ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"stark-fundamental-hoodie-xs-black-132","links":{},"stock":{"item_id":132,"product_id":132,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xs-black-132.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"130","_score":1,"_source":{"id":130,"sku":"MH05-XL-White","name":"Hollister Backyard Sweatshirt-XL-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

    Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

    \n

    • Cream crewneck sweatshirt with navy sleeves/trim.
    • Relaxed fit.
    • Ribbed cuffs and hem.
    • Machine wash/dry.

    ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hollister-backyard-sweatshirt-xl-white-130","links":{},"stock":{"item_id":130,"product_id":130,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xl-white-130.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"208","_score":1,"_source":{"id":208,"sku":"MH10-XL-Black","name":"Mach Street Sweatshirt -XL-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

    \n

    • Navy heather crewneck sweatshirt.
    • LumaTech™ moisture-wicking fabric.
    • Antimicrobial, odor-resistant.
    • Zip hand pockets.
    • Chafe-resistant flatlock seams.
    • Rib-knit cuffs and hem.

    ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mach-street-sweatshirt-xl-black-208","links":{},"stock":{"item_id":208,"product_id":208,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xl-black-208.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"206","_score":1,"_source":{"id":206,"sku":"MH10-L-Blue","name":"Mach Street Sweatshirt -L-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

    \n

    • Navy heather crewneck sweatshirt.
    • LumaTech™ moisture-wicking fabric.
    • Antimicrobial, odor-resistant.
    • Zip hand pockets.
    • Chafe-resistant flatlock seams.
    • Rib-knit cuffs and hem.

    ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mach-street-sweatshirt-l-blue-206","links":{},"stock":{"item_id":206,"product_id":206,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-l-blue-206.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"222","_score":1,"_source":{"id":222,"sku":"MH11-L-Red","name":"Grayson Crewneck Sweatshirt -L-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

    \n

    • Cream crewneck sweatshirt with black accents.
    • 80% cotton/20% polyester fleece.
    • Patterned knit hood lining.
    • Knit cuffs and waist.
    • Pouch pocket.
    • Curl edged seam detail

    ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"grayson-crewneck-sweatshirt-l-red-222","links":{},"stock":{"item_id":222,"product_id":222,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-l-red-222.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"229","_score":1,"_source":{"id":229,"sku":"MH12-XS-Green","name":"Ajax Full-Zip Sweatshirt -XS-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

    \n

    • Mint striped full zip hoodie.
    • 100% bonded polyester fleece.
    • Pouch pocket.
    • Rib cuffs and hem.
    • Machine washable.

    ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ajax-full-zip-sweatshirt-xs-green-229","links":{},"stock":{"item_id":229,"product_id":229,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xs-green-229.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"183","_score":1,"_source":{"id":183,"sku":"MH09-S-Blue","name":"Abominable Hoodie-S-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

    \n

    • Blue heather hoodie.
    • Relaxed fit.
    • Moisture-wicking.
    • Machine wash/dry.

    ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"abominable-hoodie-s-blue-183","links":{},"stock":{"item_id":183,"product_id":183,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-s-blue-183.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"166","_score":1,"_source":{"id":166,"sku":"MH08-XS-Red","name":"Oslo Trek Hoodie-XS-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

    \n

    • Brown hoodie with black detail.
    • Pullover.
    • Adjustable drawstring hood.
    • Ribbed cuffs/waistband.
    • Machine wash/dry.

    ","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"oslo-trek-hoodie-xs-red-166","links":{},"stock":{"item_id":166,"product_id":166,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xs-red-166.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"172","_score":1,"_source":{"id":172,"sku":"MH08-M-Red","name":"Oslo Trek Hoodie-M-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2019-03-22 08:35:33","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":36.900001,"max_price":36.900001,"max_regular_price":36.900001,"minimal_regular_price":36.900001,"special_price":"30.0000","minimal_price":36.900001,"regular_price":51.660001,"description":"

    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

    \r\n

    • Brown hoodie with black detail.
    • Pullover.
    • Adjustable drawstring hood.
    • Ribbed cuffs/waistband.
    • Machine wash/dry.

    ","special_from_date":"2019-03-22 08:35:33","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-m-red","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"169","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"oslo-trek-hoodie-m-red-172","links":{},"stock":{"item_id":172,"product_id":172,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-m-red-172.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"129","_score":1,"_source":{"id":129,"sku":"MH05-XL-Red","name":"Hollister Backyard Sweatshirt-XL-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

    Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

    \n

    • Cream crewneck sweatshirt with navy sleeves/trim.
    • Relaxed fit.
    • Ribbed cuffs and hem.
    • Machine wash/dry.

    ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hollister-backyard-sweatshirt-xl-red-129","links":{},"stock":{"item_id":129,"product_id":129,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xl-red-129.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"110","_score":1,"_source":{"id":110,"sku":"MH04-L-White","name":"Frankie Sweatshirt-L-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

    \n

    • Light green crewneck sweatshirt.
    • Hand pockets.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"frankie-sweatshirt-l-white-110","links":{},"stock":{"item_id":110,"product_id":110,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-l-white-110.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"123","_score":1,"_source":{"id":123,"sku":"MH05-M-Red","name":"Hollister Backyard Sweatshirt-M-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

    Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

    \n

    • Cream crewneck sweatshirt with navy sleeves/trim.
    • Relaxed fit.
    • Ribbed cuffs and hem.
    • Machine wash/dry.

    ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hollister-backyard-sweatshirt-m-red-123","links":{},"stock":{"item_id":123,"product_id":123,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-m-red-123.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"143","_score":1,"_source":{"id":143,"sku":"MH06-L-Purple","name":"Stark Fundamental Hoodie-L-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

    \n

    • Navy specked full zip hoodie.
    • Ribbed cuffs, banded waist.
    • Side pockets.
    • Machine wash/dry.

    ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stark-fundamental-hoodie-l-purple-143","links":{},"stock":{"item_id":143,"product_id":143,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-l-purple-143.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"126","_score":1,"_source":{"id":126,"sku":"MH05-L-Red","name":"Hollister Backyard Sweatshirt-L-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

    Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

    \n

    • Cream crewneck sweatshirt with navy sleeves/trim.
    • Relaxed fit.
    • Ribbed cuffs and hem.
    • Machine wash/dry.

    ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hollister-backyard-sweatshirt-l-red-126","links":{},"stock":{"item_id":126,"product_id":126,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-l-red-126.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"144","_score":1,"_source":{"id":144,"sku":"MH06-XL-Black","name":"Stark Fundamental Hoodie-XL-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

    \n

    • Navy specked full zip hoodie.
    • Ribbed cuffs, banded waist.
    • Side pockets.
    • Machine wash/dry.

    ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"stark-fundamental-hoodie-xl-black-144","links":{},"stock":{"item_id":144,"product_id":144,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xl-black-144.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"145","_score":1,"_source":{"id":145,"sku":"MH06-XL-Blue","name":"Stark Fundamental Hoodie-XL-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

    \n

    • Navy specked full zip hoodie.
    • Ribbed cuffs, banded waist.
    • Side pockets.
    • Machine wash/dry.

    ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"stark-fundamental-hoodie-xl-blue-145","links":{},"stock":{"item_id":145,"product_id":145,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xl-blue-145.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"149","_score":1,"_source":{"id":149,"sku":"MH07-XS-Gray","name":"Hero Hoodie-XS-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

    Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

    \n

    • Full-zip gray and black hoodie.
    • Ribbed hem.
    • Standard fit.
    • Drawcord hood cinch.
    • Water-resistant coating.

    ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hero-hoodie-xs-gray-149","links":{},"stock":{"item_id":149,"product_id":149,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xs-gray-149.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"260","_score":1,"_source":{"id":260,"sku":"MJ01-XS-Orange","name":"Beaumont Summit Kit-XS-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

    \n

    • Yellow full zip rain jacket.
    • Full-zip front.
    • Stand-up collar.
    • Elasticized cuffs.
    • Machine wash/dry.

    ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"beaumont-summit-kit-xs-orange-260","links":{},"stock":{"item_id":260,"product_id":260,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xs-orange-260.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"254","_score":1,"_source":{"id":254,"sku":"MH13-L-Green","name":"Marco Lightweight Active Hoodie-L-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

    \n

    • Light blue heather full zip hoodie.
    • Fitted flatlock seams.
    • Matching lining and drawstring.
    • Machine wash/dry.

    ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"marco-lightweight-active-hoodie-l-green-254","links":{},"stock":{"item_id":254,"product_id":254,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-l-green-254.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"204","_score":1,"_source":{"id":204,"sku":"MH10-M-Red","name":"Mach Street Sweatshirt -M-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

    \n

    • Navy heather crewneck sweatshirt.
    • LumaTech™ moisture-wicking fabric.
    • Antimicrobial, odor-resistant.
    • Zip hand pockets.
    • Chafe-resistant flatlock seams.
    • Rib-knit cuffs and hem.

    ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mach-street-sweatshirt-m-red-204","links":{},"stock":{"item_id":204,"product_id":204,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-m-red-204.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"190","_score":1,"_source":{"id":190,"sku":"MH09-L-Green","name":"Abominable Hoodie-L-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

    \n

    • Blue heather hoodie.
    • Relaxed fit.
    • Moisture-wicking.
    • Machine wash/dry.

    ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"abominable-hoodie-l-green-190","links":{},"stock":{"item_id":190,"product_id":190,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-l-green-190.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"295","_score":1,"_source":{"id":295,"sku":"MJ04-S-Black","name":"Kenobi Trail Jacket-S-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

    \n

    • Black 1/4 zip pullover with royal zipper.
    • Adjustable hood and sleeve cuffs.
    • Machine wash/air dry.

    ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"kenobi-trail-jacket-s-black-295","links":{},"stock":{"item_id":295,"product_id":295,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-s-black-295.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"300","_score":1,"_source":{"id":300,"sku":"MJ04-M-Purple","name":"Kenobi Trail Jacket-M-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

    \n

    • Black 1/4 zip pullover with royal zipper.
    • Adjustable hood and sleeve cuffs.
    • Machine wash/air dry.

    ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"kenobi-trail-jacket-m-purple-300","links":{},"stock":{"item_id":300,"product_id":300,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-m-purple-300.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"259","_score":1,"_source":{"id":259,"sku":"MH13","name":"Marco Lightweight Active Hoodie","attribute_set_id":9,"price":74,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":74,"description":"

    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

    \n

    • Light blue heather full zip hoodie.
    • Fitted flatlock seams.
    • Matching lining and drawstring.
    • Machine wash/dry.

    ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"marco-lightweight-active-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,145],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"0","pattern":"197","climate":[202,204,205,208,210],"slug":"marco-lightweight-active-hoodie-259","links":{},"stock":{"item_id":259,"product_id":259,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH13-XS-Blue","id":244,"status":1,"name":"Marco Lightweight Active Hoodie-XS-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"50","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","url_key":"marco-lightweight-active-hoodie-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"MH13-XS-Green","id":245,"status":1,"name":"Marco Lightweight Active Hoodie-XS-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"53","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","url_key":"marco-lightweight-active-hoodie-xs-green","msrp_display_actual_price_type":"0"},{"sku":"MH13-XS-Lavender","id":246,"status":1,"name":"Marco Lightweight Active Hoodie-XS-Lavender","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"54","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","url_key":"marco-lightweight-active-hoodie-xs-lavender","msrp_display_actual_price_type":"0"},{"sku":"MH13-S-Blue","id":247,"status":1,"name":"Marco Lightweight Active Hoodie-S-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"50","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","url_key":"marco-lightweight-active-hoodie-s-blue","msrp_display_actual_price_type":"0"},{"sku":"MH13-S-Green","id":248,"status":1,"name":"Marco Lightweight Active Hoodie-S-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"53","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","url_key":"marco-lightweight-active-hoodie-s-green","msrp_display_actual_price_type":"0"},{"sku":"MH13-S-Lavender","id":249,"status":1,"name":"Marco Lightweight Active Hoodie-S-Lavender","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"54","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","url_key":"marco-lightweight-active-hoodie-s-lavender","msrp_display_actual_price_type":"0"},{"sku":"MH13-M-Blue","id":250,"status":1,"name":"Marco Lightweight Active Hoodie-M-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"50","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","url_key":"marco-lightweight-active-hoodie-m-blue","msrp_display_actual_price_type":"0"},{"sku":"MH13-M-Green","id":251,"status":1,"name":"Marco Lightweight Active Hoodie-M-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"53","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","url_key":"marco-lightweight-active-hoodie-m-green","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MH13-M-Lavender","id":252,"status":1,"name":"Marco Lightweight Active Hoodie-M-Lavender","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"54","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","url_key":"marco-lightweight-active-hoodie-m-lavender","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MH13-L-Blue","id":253,"status":1,"name":"Marco Lightweight Active Hoodie-L-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"50","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","url_key":"marco-lightweight-active-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MH13-L-Green","id":254,"status":1,"name":"Marco Lightweight Active Hoodie-L-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"53","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","url_key":"marco-lightweight-active-hoodie-l-green","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MH13-L-Lavender","id":255,"status":1,"name":"Marco Lightweight Active Hoodie-L-Lavender","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"54","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","url_key":"marco-lightweight-active-hoodie-l-lavender","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MH13-XL-Blue","id":256,"status":1,"name":"Marco Lightweight Active Hoodie-XL-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"50","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","url_key":"marco-lightweight-active-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MH13-XL-Green","id":257,"status":1,"name":"Marco Lightweight Active Hoodie-XL-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"53","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","url_key":"marco-lightweight-active-hoodie-xl-green","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MH13-XL-Lavender","id":258,"status":1,"name":"Marco Lightweight Active Hoodie-XL-Lavender","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"54","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","url_key":"marco-lightweight-active-hoodie-xl-lavender","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001}],"configurable_options":[{"id":27,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":54,"label":"Lavender"}],"product_id":259,"attribute_code":"color"},{"id":26,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":259,"attribute_code":"size"}],"color_options":[50,53,54],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-259.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"387","_score":1,"_source":{"id":387,"sku":"MJ11","name":"Typhon Performance Fleece-lined Jacket","attribute_set_id":9,"price":60,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":60,"description":"

    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

    \n

    • Black full-zip flight jacket.
    • Cocona® wicking fiber.
    • Machine wash/dry.

    ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"typhon-performance-fleece-lined-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,37,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[117,122,124,126,129],"pattern":"197","climate":[202,208,210,211],"slug":"typhon-performance-fleece-lined-jacket-387","links":{},"stock":{"item_id":387,"product_id":387,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ11-XS-Black","id":372,"status":1,"name":"Typhon Performance Fleece-lined Jacket-XS-Black","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"49","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-xs-black","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-XS-Green","id":373,"status":1,"name":"Typhon Performance Fleece-lined Jacket-XS-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"53","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-XS-Red","id":374,"status":1,"name":"Typhon Performance Fleece-lined Jacket-XS-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"58","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-xs-red","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-S-Black","id":375,"status":1,"name":"Typhon Performance Fleece-lined Jacket-S-Black","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"49","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-s-black","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-S-Green","id":376,"status":1,"name":"Typhon Performance Fleece-lined Jacket-S-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"53","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-s-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-S-Red","id":377,"status":1,"name":"Typhon Performance Fleece-lined Jacket-S-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"58","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-s-red","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-M-Black","id":378,"status":1,"name":"Typhon Performance Fleece-lined Jacket-M-Black","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"49","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-m-black","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-M-Green","id":379,"status":1,"name":"Typhon Performance Fleece-lined Jacket-M-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"53","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-m-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-M-Red","id":380,"status":1,"name":"Typhon Performance Fleece-lined Jacket-M-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"58","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-m-red","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-L-Black","id":381,"status":1,"name":"Typhon Performance Fleece-lined Jacket-L-Black","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"49","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-l-black","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-L-Green","id":382,"status":1,"name":"Typhon Performance Fleece-lined Jacket-L-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"53","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-l-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-L-Red","id":383,"status":1,"name":"Typhon Performance Fleece-lined Jacket-L-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"58","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-l-red","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-XL-Black","id":384,"status":1,"name":"Typhon Performance Fleece-lined Jacket-XL-Black","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"49","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-xl-black","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-XL-Green","id":385,"status":1,"name":"Typhon Performance Fleece-lined Jacket-XL-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"53","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-XL-Red","id":386,"status":1,"name":"Typhon Performance Fleece-lined Jacket-XL-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"58","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001}],"configurable_options":[{"id":43,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":387,"attribute_code":"color"},{"id":42,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":387,"attribute_code":"size"}],"color_options":[49,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-387.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"351","_score":1,"_source":{"id":351,"sku":"MJ09-L-Yellow","name":"Taurus Elements Shell-L-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

    \n

    • Yellow 1/4 zip pullover.
    • Two chest pockets.
    • Standard fit.
    • Waterproof, breathable, seam sealed.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"taurus-elements-shell-l-yellow-351","links":{},"stock":{"item_id":351,"product_id":351,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-l-yellow-351.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"356","_score":1,"_source":{"id":356,"sku":"MJ10-XS-Black","name":"Mars HeatTech™ Pullover-XS-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

    \n

    • Red 1/4 zip pullover.
    • Adjustable VELCRO® sleeve cuffs.
    • Two hand pockets.
    • Napoleon pocket.
    • Machine wash/dry

    ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mars-heattech-and-trade-pullover-xs-black-356","links":{},"stock":{"item_id":356,"product_id":356,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xs-black-356.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"369","_score":1,"_source":{"id":369,"sku":"MJ10-XL-Orange","name":"Mars HeatTech™ Pullover-XL-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

    \n

    • Red 1/4 zip pullover.
    • Adjustable VELCRO® sleeve cuffs.
    • Two hand pockets.
    • Napoleon pocket.
    • Machine wash/dry

    ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mars-heattech-and-trade-pullover-xl-orange-369","links":{},"stock":{"item_id":369,"product_id":369,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xl-orange-369.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"374","_score":1,"_source":{"id":374,"sku":"MJ11-XS-Red","name":"Typhon Performance Fleece-lined Jacket-XS-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

    \n

    • Black full-zip flight jacket.
    • Cocona® wicking fiber.
    • Machine wash/dry.

    ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"typhon-performance-fleece-lined-jacket-xs-red-374","links":{},"stock":{"item_id":374,"product_id":374,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xs-red-374.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"372","_score":1,"_source":{"id":372,"sku":"MJ11-XS-Black","name":"Typhon Performance Fleece-lined Jacket-XS-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

    \n

    • Black full-zip flight jacket.
    • Cocona® wicking fiber.
    • Machine wash/dry.

    ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"typhon-performance-fleece-lined-jacket-xs-black-372","links":{},"stock":{"item_id":372,"product_id":372,"stock_id":1,"qty":48,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xs-black-372.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"365","_score":1,"_source":{"id":365,"sku":"MJ10-L-Black","name":"Mars HeatTech™ Pullover-L-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

    \n

    • Red 1/4 zip pullover.
    • Adjustable VELCRO® sleeve cuffs.
    • Two hand pockets.
    • Napoleon pocket.
    • Machine wash/dry

    ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mars-heattech-and-trade-pullover-l-black-365","links":{},"stock":{"item_id":365,"product_id":365,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-l-black-365.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"383","_score":1,"_source":{"id":383,"sku":"MJ11-L-Red","name":"Typhon Performance Fleece-lined Jacket-L-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

    \n

    • Black full-zip flight jacket.
    • Cocona® wicking fiber.
    • Machine wash/dry.

    ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"typhon-performance-fleece-lined-jacket-l-red-383","links":{},"stock":{"item_id":383,"product_id":383,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-l-red-383.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"386","_score":1,"_source":{"id":386,"sku":"MJ11-XL-Red","name":"Typhon Performance Fleece-lined Jacket-XL-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

    \n

    • Black full-zip flight jacket.
    • Cocona® wicking fiber.
    • Machine wash/dry.

    ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"typhon-performance-fleece-lined-jacket-xl-red-386","links":{},"stock":{"item_id":386,"product_id":386,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xl-red-386.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"385","_score":1,"_source":{"id":385,"sku":"MJ11-XL-Green","name":"Typhon Performance Fleece-lined Jacket-XL-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

    \n

    • Black full-zip flight jacket.
    • Cocona® wicking fiber.
    • Machine wash/dry.

    ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"typhon-performance-fleece-lined-jacket-xl-green-385","links":{},"stock":{"item_id":385,"product_id":385,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xl-green-385.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"264","_score":1,"_source":{"id":264,"sku":"MJ01-S-Red","name":"Beaumont Summit Kit-S-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

    \n

    • Yellow full zip rain jacket.
    • Full-zip front.
    • Stand-up collar.
    • Elasticized cuffs.
    • Machine wash/dry.

    ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"beaumont-summit-kit-s-red-264","links":{},"stock":{"item_id":264,"product_id":264,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-s-red-264.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"253","_score":1,"_source":{"id":253,"sku":"MH13-L-Blue","name":"Marco Lightweight Active Hoodie-L-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

    \n

    • Light blue heather full zip hoodie.
    • Fitted flatlock seams.
    • Matching lining and drawstring.
    • Machine wash/dry.

    ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"marco-lightweight-active-hoodie-l-blue-253","links":{},"stock":{"item_id":253,"product_id":253,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-l-blue-253.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"256","_score":1,"_source":{"id":256,"sku":"MH13-XL-Blue","name":"Marco Lightweight Active Hoodie-XL-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

    \n

    • Light blue heather full zip hoodie.
    • Fitted flatlock seams.
    • Matching lining and drawstring.
    • Machine wash/dry.

    ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"marco-lightweight-active-hoodie-xl-blue-256","links":{},"stock":{"item_id":256,"product_id":256,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xl-blue-256.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"265","_score":1,"_source":{"id":265,"sku":"MJ01-S-Yellow","name":"Beaumont Summit Kit-S-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

    \n

    • Yellow full zip rain jacket.
    • Full-zip front.
    • Stand-up collar.
    • Elasticized cuffs.
    • Machine wash/dry.

    ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"beaumont-summit-kit-s-yellow-265","links":{},"stock":{"item_id":265,"product_id":265,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-s-yellow-265.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"270","_score":1,"_source":{"id":270,"sku":"MJ01-L-Red","name":"Beaumont Summit Kit-L-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

    \n

    • Yellow full zip rain jacket.
    • Full-zip front.
    • Stand-up collar.
    • Elasticized cuffs.
    • Machine wash/dry.

    ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"beaumont-summit-kit-l-red-270","links":{},"stock":{"item_id":270,"product_id":270,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-l-red-270.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"302","_score":1,"_source":{"id":302,"sku":"MJ04-L-Blue","name":"Kenobi Trail Jacket-L-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

    \n

    • Black 1/4 zip pullover with royal zipper.
    • Adjustable hood and sleeve cuffs.
    • Machine wash/air dry.

    ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"kenobi-trail-jacket-l-blue-302","links":{},"stock":{"item_id":302,"product_id":302,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-l-blue-302.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"313","_score":1,"_source":{"id":313,"sku":"MJ07-S-Yellow","name":"Orion Two-Tone Fitted Jacket-S-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

    \n

    • Red full zip fleece with gray insets.
    • Double-knit construction.
    • Full athletic cut.
    • Set in sleeves.
    • Front pouch pocket.

    ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"orion-two-tone-fitted-jacket-s-yellow-313","links":{},"stock":{"item_id":313,"product_id":313,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-s-yellow-313.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"314","_score":1,"_source":{"id":314,"sku":"MJ07-M-Black","name":"Orion Two-Tone Fitted Jacket-M-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

    \n

    • Red full zip fleece with gray insets.
    • Double-knit construction.
    • Full athletic cut.
    • Set in sleeves.
    • Front pouch pocket.

    ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"orion-two-tone-fitted-jacket-m-black-314","links":{},"stock":{"item_id":314,"product_id":314,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-m-black-314.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"322","_score":1,"_source":{"id":322,"sku":"MJ07-XL-Yellow","name":"Orion Two-Tone Fitted Jacket-XL-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

    \n

    • Red full zip fleece with gray insets.
    • Double-knit construction.
    • Full athletic cut.
    • Set in sleeves.
    • Front pouch pocket.

    ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"orion-two-tone-fitted-jacket-xl-yellow-322","links":{},"stock":{"item_id":322,"product_id":322,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xl-yellow-322.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"332","_score":1,"_source":{"id":332,"sku":"MJ08-M-Green","name":"Lando Gym Jacket-M-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

    \n

    • Gray polyester/spandex full zip jacket with orange lining.
    • Right pocket device storage.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lando-gym-jacket-m-green-332","links":{},"stock":{"item_id":332,"product_id":332,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-m-green-332.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"349","_score":1,"_source":{"id":349,"sku":"MJ09-L-Blue","name":"Taurus Elements Shell-L-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

    \n

    • Yellow 1/4 zip pullover.
    • Two chest pockets.
    • Standard fit.
    • Waterproof, breathable, seam sealed.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"taurus-elements-shell-l-blue-349","links":{},"stock":{"item_id":349,"product_id":349,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-l-blue-349.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"343","_score":1,"_source":{"id":343,"sku":"MJ09-S-Blue","name":"Taurus Elements Shell-S-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

    \n

    • Yellow 1/4 zip pullover.
    • Two chest pockets.
    • Standard fit.
    • Waterproof, breathable, seam sealed.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"taurus-elements-shell-s-blue-343","links":{},"stock":{"item_id":343,"product_id":343,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-s-blue-343.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"338","_score":1,"_source":{"id":338,"sku":"MJ08-XL-Green","name":"Lando Gym Jacket-XL-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

    \n

    • Gray polyester/spandex full zip jacket with orange lining.
    • Right pocket device storage.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lando-gym-jacket-xl-green-338","links":{},"stock":{"item_id":338,"product_id":338,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xl-green-338.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"340","_score":1,"_source":{"id":340,"sku":"MJ09-XS-Blue","name":"Taurus Elements Shell-XS-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

    \n

    • Yellow 1/4 zip pullover.
    • Two chest pockets.
    • Standard fit.
    • Waterproof, breathable, seam sealed.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"taurus-elements-shell-xs-blue-340","links":{},"stock":{"item_id":340,"product_id":340,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xs-blue-340.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"335","_score":1,"_source":{"id":335,"sku":"MJ08-L-Green","name":"Lando Gym Jacket-L-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

    \n

    • Gray polyester/spandex full zip jacket with orange lining.
    • Right pocket device storage.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lando-gym-jacket-l-green-335","links":{},"stock":{"item_id":335,"product_id":335,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-l-green-335.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"397","_score":1,"_source":{"id":397,"sku":"MJ06-L-Blue","name":"Jupiter All-Weather Trainer -L-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

    \n

    • Relaxed fit.
    • Hand pockets.
    • Machine wash/dry.
    • Reflective safety trim.

    ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jupiter-all-weather-trainer-l-blue-397","links":{},"stock":{"item_id":397,"product_id":397,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-l-blue-397.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"400","_score":1,"_source":{"id":400,"sku":"MJ06-XL-Blue","name":"Jupiter All-Weather Trainer -XL-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

    \n

    • Relaxed fit.
    • Hand pockets.
    • Machine wash/dry.
    • Reflective safety trim.

    ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jupiter-all-weather-trainer-xl-blue-400","links":{},"stock":{"item_id":400,"product_id":400,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xl-blue-400.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"366","_score":1,"_source":{"id":366,"sku":"MJ10-L-Orange","name":"Mars HeatTech™ Pullover-L-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

    \n

    • Red 1/4 zip pullover.
    • Adjustable VELCRO® sleeve cuffs.
    • Two hand pockets.
    • Napoleon pocket.
    • Machine wash/dry

    ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mars-heattech-and-trade-pullover-l-orange-366","links":{},"stock":{"item_id":366,"product_id":366,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-l-orange-366.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"535","_score":1,"_source":{"id":535,"sku":"MS06-S-Blue","name":"Zoltan Gym Tee-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

    \n

    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoltan-gym-tee-s-blue-535","links":{},"stock":{"item_id":535,"product_id":535,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-s-blue-535.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"531","_score":1,"_source":{"id":531,"sku":"MS03","name":"Balboa Persistence Tee","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

    The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

    \n

    • Crew neckline.
    • Semi-fitted.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms03-black_main.jpg","small_image":"/m/s/ms03-black_main.jpg","thumbnail":"/m/s/ms03-black_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"balboa-persistence-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"balboa-persistence-tee-531","links":{},"stock":{"item_id":531,"product_id":531,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS03-XS-Gray","id":516,"status":1,"name":"Balboa Persistence Tee-XS-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"52","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","url_key":"balboa-persistence-tee-xs-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-XS-Green","id":517,"status":1,"name":"Balboa Persistence Tee-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"53","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","url_key":"balboa-persistence-tee-xs-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-XS-Orange","id":518,"status":1,"name":"Balboa Persistence Tee-XS-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"56","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","url_key":"balboa-persistence-tee-xs-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-S-Gray","id":519,"status":1,"name":"Balboa Persistence Tee-S-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"52","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","url_key":"balboa-persistence-tee-s-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-S-Green","id":520,"status":1,"name":"Balboa Persistence Tee-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"53","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","url_key":"balboa-persistence-tee-s-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-S-Orange","id":521,"status":1,"name":"Balboa Persistence Tee-S-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"56","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","url_key":"balboa-persistence-tee-s-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-M-Gray","id":522,"status":1,"name":"Balboa Persistence Tee-M-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"52","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","url_key":"balboa-persistence-tee-m-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-M-Green","id":523,"status":1,"name":"Balboa Persistence Tee-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"53","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","url_key":"balboa-persistence-tee-m-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-M-Orange","id":524,"status":1,"name":"Balboa Persistence Tee-M-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"56","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","url_key":"balboa-persistence-tee-m-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-L-Gray","id":525,"status":1,"name":"Balboa Persistence Tee-L-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"52","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","url_key":"balboa-persistence-tee-l-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-L-Green","id":526,"status":1,"name":"Balboa Persistence Tee-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"53","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","url_key":"balboa-persistence-tee-l-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-L-Orange","id":527,"status":1,"name":"Balboa Persistence Tee-L-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"56","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","url_key":"balboa-persistence-tee-l-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-XL-Gray","id":528,"status":1,"name":"Balboa Persistence Tee-XL-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"52","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","url_key":"balboa-persistence-tee-xl-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-XL-Green","id":529,"status":1,"name":"Balboa Persistence Tee-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"53","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","url_key":"balboa-persistence-tee-xl-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-XL-Orange","id":530,"status":1,"name":"Balboa Persistence Tee-XL-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"56","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","url_key":"balboa-persistence-tee-xl-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":61,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":531,"attribute_code":"color"},{"id":60,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":531,"attribute_code":"size"}],"color_options":[52,53,56],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-531.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"499","_score":1,"_source":{"id":499,"sku":"MS11","name":"Atomic Endurance Running Tee (V-neck)","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":28,"description":"

    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

    \n

    • Lime heathered v-neck tee.
    • Ultra-lightweight.
    • Moisture-wicking Cocona® fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"atomic-endurance-running-tee-v-neck","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"atomic-endurance-running-tee-v-neck-499","links":{},"stock":{"item_id":499,"product_id":499,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS11-XS-Blue","id":484,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-XS-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-xs-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-XS-Green","id":485,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-XS-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"53","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-xs-green","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-XS-Yellow","id":486,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-XS-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"60","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-xs-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-S-Blue","id":487,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-S-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-s-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-S-Green","id":488,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-S-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"53","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-s-green","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-S-Yellow","id":489,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-S-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"60","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-s-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-M-Blue","id":490,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-M-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-m-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-M-Green","id":491,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-M-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"53","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-m-green","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-M-Yellow","id":492,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-M-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"60","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-m-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-L-Blue","id":493,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-L-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-l-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-L-Green","id":494,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-L-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"53","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-l-green","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-L-Yellow","id":495,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-L-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"60","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-l-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-XL-Blue","id":496,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-XL-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-xl-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-XL-Green","id":497,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-XL-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"53","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-xl-green","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-XL-Yellow","id":498,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-XL-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"60","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-xl-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001}],"configurable_options":[{"id":57,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":60,"label":"Yellow"}],"product_id":499,"attribute_code":"color"},{"id":56,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":499,"attribute_code":"size"}],"color_options":[50,53,60],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-499.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"470","_score":1,"_source":{"id":470,"sku":"MS09-XS-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

    \n

    • Royal polyester tee with black accents.
    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-crew-neck-xs-red-470","links":{},"stock":{"item_id":470,"product_id":470,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xs-red-470.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"460","_score":1,"_source":{"id":460,"sku":"MS05-M-Purple","name":"Helios EverCool™ Tee-M-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

    \n

    • Teal quick dry tee.
    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helios-evercool-and-trade-tee-m-purple-460","links":{},"stock":{"item_id":460,"product_id":460,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-m-purple-460.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"452","_score":1,"_source":{"id":452,"sku":"MS05-XS-Black","name":"Helios EverCool™ Tee-XS-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

    \n

    • Teal quick dry tee.
    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helios-evercool-and-trade-tee-xs-black-452","links":{},"stock":{"item_id":452,"product_id":452,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xs-black-452.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"458","_score":1,"_source":{"id":458,"sku":"MS05-M-Black","name":"Helios EverCool™ Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

    \n

    • Teal quick dry tee.
    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helios-evercool-and-trade-tee-m-black-458","links":{},"stock":{"item_id":458,"product_id":458,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-m-black-458.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"469","_score":1,"_source":{"id":469,"sku":"MS09-XS-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

    \n

    • Royal polyester tee with black accents.
    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-crew-neck-xs-blue-469","links":{},"stock":{"item_id":469,"product_id":469,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xs-blue-469.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"468","_score":1,"_source":{"id":468,"sku":"MS09-XS-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

    \n

    • Royal polyester tee with black accents.
    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-crew-neck-xs-black-468","links":{},"stock":{"item_id":468,"product_id":468,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xs-black-468.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"555","_score":1,"_source":{"id":555,"sku":"MS01-M-Brown","name":"Aero Daily Fitness Tee-M-Brown","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

    \n

    Relaxed fit.
    Short-Sleeve.
    Machine wash/dry.

    ","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-m-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"aero-daily-fitness-tee-m-brown-555","links":{},"stock":{"item_id":555,"product_id":555,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms01-brown_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-m-brown-555.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"575","_score":1,"_source":{"id":575,"sku":"MS02-L-Gray","name":"Ryker LumaTech™ Tee (V-neck)-L-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

    \n

    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-v-neck-l-gray-575","links":{},"stock":{"item_id":575,"product_id":575,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-l-gray-575.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"571","_score":1,"_source":{"id":571,"sku":"MS02-M-Blue","name":"Ryker LumaTech™ Tee (V-neck)-M-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

    \n

    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-v-neck-m-blue-571","links":{},"stock":{"item_id":571,"product_id":571,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-m-blue-571.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"572","_score":1,"_source":{"id":572,"sku":"MS02-M-Gray","name":"Ryker LumaTech™ Tee (V-neck)-M-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

    \n

    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-v-neck-m-gray-572","links":{},"stock":{"item_id":572,"product_id":572,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-m-gray-572.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"591","_score":1,"_source":{"id":591,"sku":"MS10-L-Red","name":"Logan HeatTec® Tee-L-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

    \n

    • Semi-fitted.
    • Crew neckline.
    • Machine wash/tumble dry.

    ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"logan-heattec-and-reg-tee-l-red-591","links":{},"stock":{"item_id":591,"product_id":591,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-l-red-591.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"478","_score":1,"_source":{"id":478,"sku":"MS09-L-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-L-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

    \n

    • Royal polyester tee with black accents.
    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-crew-neck-l-blue-478","links":{},"stock":{"item_id":478,"product_id":478,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-l-blue-478.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"486","_score":1,"_source":{"id":486,"sku":"MS11-XS-Yellow","name":"Atomic Endurance Running Tee (V-neck)-XS-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

    \n

    • Lime heathered v-neck tee.
    • Ultra-lightweight.
    • Moisture-wicking Cocona® fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-v-neck-xs-yellow-486","links":{},"stock":{"item_id":486,"product_id":486,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xs-yellow-486.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"485","_score":1,"_source":{"id":485,"sku":"MS11-XS-Green","name":"Atomic Endurance Running Tee (V-neck)-XS-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

    \n

    • Lime heathered v-neck tee.
    • Ultra-lightweight.
    • Moisture-wicking Cocona® fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-v-neck-xs-green-485","links":{},"stock":{"item_id":485,"product_id":485,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xs-green-485.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"491","_score":1,"_source":{"id":491,"sku":"MS11-M-Green","name":"Atomic Endurance Running Tee (V-neck)-M-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

    \n

    • Lime heathered v-neck tee.
    • Ultra-lightweight.
    • Moisture-wicking Cocona® fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-v-neck-m-green-491","links":{},"stock":{"item_id":491,"product_id":491,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-m-green-491.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"487","_score":1,"_source":{"id":487,"sku":"MS11-S-Blue","name":"Atomic Endurance Running Tee (V-neck)-S-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

    \n

    • Lime heathered v-neck tee.
    • Ultra-lightweight.
    • Moisture-wicking Cocona® fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-v-neck-s-blue-487","links":{},"stock":{"item_id":487,"product_id":487,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-s-blue-487.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"408","_score":1,"_source":{"id":408,"sku":"MJ03-S-Green","name":"Montana Wind Jacket-S-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

    \n

    Adjustable hood.
    Split pocket.
    Thumb holes.
    Machine wash/hang to dry.

    ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"montana-wind-jacket-s-green-408","links":{},"stock":{"item_id":408,"product_id":408,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-s-green-408.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"407","_score":1,"_source":{"id":407,"sku":"MJ03-S-Black","name":"Montana Wind Jacket-S-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

    \n

    Adjustable hood.
    Split pocket.
    Thumb holes.
    Machine wash/hang to dry.

    ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"montana-wind-jacket-s-black-407","links":{},"stock":{"item_id":407,"product_id":407,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-s-black-407.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"415","_score":1,"_source":{"id":415,"sku":"MJ03-L-Red","name":"Montana Wind Jacket-L-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

    \n

    Adjustable hood.
    Split pocket.
    Thumb holes.
    Machine wash/hang to dry.

    ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"montana-wind-jacket-l-red-415","links":{},"stock":{"item_id":415,"product_id":415,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-l-red-415.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"423","_score":1,"_source":{"id":423,"sku":"MJ12-S-Black","name":"Proteus Fitness Jackshirt-S-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

    \n

    • 1/4 zip. Stand-up collar.
    • Machine wash/dry.
    • Quilted inner layer.

    ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"proteus-fitness-jackshirt-s-black-423","links":{},"stock":{"item_id":423,"product_id":423,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-s-black-423.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"533","_score":1,"_source":{"id":533,"sku":"MS06-XS-Green","name":"Zoltan Gym Tee-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

    \n

    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoltan-gym-tee-xs-green-533","links":{},"stock":{"item_id":533,"product_id":533,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xs-green-533.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"520","_score":1,"_source":{"id":520,"sku":"MS03-S-Green","name":"Balboa Persistence Tee-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

    \n

    • Crew neckline.
    • Semi-fitted.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"balboa-persistence-tee-s-green-520","links":{},"stock":{"item_id":520,"product_id":520,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-s-green-520.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"512","_score":1,"_source":{"id":512,"sku":"MS12-XL-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

    \n

    • Red polyester tee.
    • Crew neckline.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-crew-neck-xl-black-512","links":{},"stock":{"item_id":512,"product_id":512,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xl-black-512.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"450","_score":1,"_source":{"id":450,"sku":"MS04-XL-Red","name":"Gobi HeatTec® Tee-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

    \n

    • Orange micropolyester shirt.
    • HeatTec® wicking fabric.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gobi-heattec-and-reg-tee-xl-red-450","links":{},"stock":{"item_id":450,"product_id":450,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xl-red-450.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"449","_score":1,"_source":{"id":449,"sku":"MS04-XL-Orange","name":"Gobi HeatTec® Tee-XL-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

    \n

    • Orange micropolyester shirt.
    • HeatTec® wicking fabric.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gobi-heattec-and-reg-tee-xl-orange-449","links":{},"stock":{"item_id":449,"product_id":449,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xl-orange-449.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"526","_score":1,"_source":{"id":526,"sku":"MS03-L-Green","name":"Balboa Persistence Tee-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

    \n

    • Crew neckline.
    • Semi-fitted.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"balboa-persistence-tee-l-green-526","links":{},"stock":{"item_id":526,"product_id":526,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-l-green-526.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"684","_score":1,"_source":{"id":684,"sku":"MT05-M-Blue","name":"Rocco Gym Tank-M-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

    \n

    • Light blue heather gray tank.
    • Quick-drying, moisture-wicking.
    • 4-way stretch construction.
    • Flatlock seams prevent chafing.
    • Mesh at back for breathability.
    • 100% Polyester.
    • UPF 50 protection.

    ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"rocco-gym-tank-m-blue-684","links":{},"stock":{"item_id":684,"product_id":684,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-m-blue-684.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"696","_score":1,"_source":{"id":696,"sku":"MT07-M-Gray","name":"Argus All-Weather Tank-M-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

    The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

    \n

    • Dark gray polyester spandex tank.
    • Reflective details for nighttime visibility.
    • Stash pocket.
    • Anti-chafe flatlock seams.

    ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"argus-all-weather-tank-m-gray-696","links":{},"stock":{"item_id":696,"product_id":696,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-m-gray-696.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"698","_score":1,"_source":{"id":698,"sku":"MT07-XL-Gray","name":"Argus All-Weather Tank-XL-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

    The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

    \n

    • Dark gray polyester spandex tank.
    • Reflective details for nighttime visibility.
    • Stash pocket.
    • Anti-chafe flatlock seams.

    ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"argus-all-weather-tank-xl-gray-698","links":{},"stock":{"item_id":698,"product_id":698,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-xl-gray-698.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"681","_score":1,"_source":{"id":681,"sku":"MT04","name":"Helios Endurance Tank","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":32,"description":"

    When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

    \n

    • Blue heather tank with gray pocket.
    • Contrast sides and back inserts.
    • Self-fabric binding at neck and armholes.
    • Machine wash/dry.

    ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"helios-endurance-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"1","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"helios-endurance-tank-681","links":{},"stock":{"item_id":681,"product_id":681,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT04-XS-Blue","id":676,"status":1,"name":"Helios Endurance Tank-XS-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"50","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","url_key":"helios-endurance-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MT04-S-Blue","id":677,"status":1,"name":"Helios Endurance Tank-S-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"50","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","url_key":"helios-endurance-tank-s-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MT04-M-Blue","id":678,"status":1,"name":"Helios Endurance Tank-M-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"50","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","url_key":"helios-endurance-tank-m-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MT04-L-Blue","id":679,"status":1,"name":"Helios Endurance Tank-L-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"50","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","url_key":"helios-endurance-tank-l-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MT04-XL-Blue","id":680,"status":1,"name":"Helios Endurance Tank-XL-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"50","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","url_key":"helios-endurance-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001}],"configurable_options":[{"id":81,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"}],"product_id":681,"attribute_code":"color"},{"id":80,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":681,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-681.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"687","_score":1,"_source":{"id":687,"sku":"MT05","name":"Rocco Gym Tank","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":24,"description":"

    Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

    \n

    • Light blue heather gray tank.
    • Quick-drying, moisture-wicking.
    • 4-way stretch construction.
    • Flatlock seams prevent chafing.
    • Mesh at back for breathability.
    • 100% Polyester.
    • UPF 50 protection.

    ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"rocco-gym-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"rocco-gym-tank-687","links":{},"stock":{"item_id":687,"product_id":687,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT05-XS-Blue","id":682,"status":1,"name":"Rocco Gym Tank-XS-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"50","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","url_key":"rocco-gym-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MT05-S-Blue","id":683,"status":1,"name":"Rocco Gym Tank-S-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"50","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","url_key":"rocco-gym-tank-s-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MT05-M-Blue","id":684,"status":1,"name":"Rocco Gym Tank-M-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"50","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","url_key":"rocco-gym-tank-m-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MT05-L-Blue","id":685,"status":1,"name":"Rocco Gym Tank-L-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"50","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","url_key":"rocco-gym-tank-l-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MT05-XL-Blue","id":686,"status":1,"name":"Rocco Gym Tank-XL-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"50","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","url_key":"rocco-gym-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001}],"configurable_options":[{"id":83,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"}],"product_id":687,"attribute_code":"color"},{"id":82,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":687,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-687.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"693","_score":1,"_source":{"id":693,"sku":"MT06","name":"Vulcan Weightlifting Tank","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":28,"description":"

    The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

    \n

    • Black polyester spandex tank.
    • 100% polyester.
    • Freedom of movement.
    • No-chafe seams.

    ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"vulcan-weightlifting-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"vulcan-weightlifting-tank-693","links":{},"stock":{"item_id":693,"product_id":693,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT06-XS-Black","id":688,"status":1,"name":"Vulcan Weightlifting Tank-XS-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"49","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","url_key":"vulcan-weightlifting-tank-xs-black","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MT06-S-Black","id":689,"status":1,"name":"Vulcan Weightlifting Tank-S-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"49","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","url_key":"vulcan-weightlifting-tank-s-black","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MT06-M-Black","id":690,"status":1,"name":"Vulcan Weightlifting Tank-M-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"49","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","url_key":"vulcan-weightlifting-tank-m-black","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MT06-L-Black","id":691,"status":1,"name":"Vulcan Weightlifting Tank-L-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"49","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","url_key":"vulcan-weightlifting-tank-l-black","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MT06-XL-Black","id":692,"status":1,"name":"Vulcan Weightlifting Tank-XL-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"49","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","url_key":"vulcan-weightlifting-tank-xl-black","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001}],"configurable_options":[{"id":85,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"}],"product_id":693,"attribute_code":"color"},{"id":84,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":693,"attribute_code":"size"}],"color_options":[49],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-693.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"595","_score":1,"_source":{"id":595,"sku":"MS10","name":"Logan HeatTec® Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":24,"description":"

    Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

    \n

    • Semi-fitted.
    • Crew neckline.
    • Machine wash/tumble dry.

    ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"logan-heattec-reg-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,152],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"logan-heattec-and-reg-tee-595","links":{},"stock":{"item_id":595,"product_id":595,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS10-XS-Black","id":580,"status":1,"name":"Logan HeatTec® Tee-XS-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","url_key":"logan-heattec-reg-tee-xs-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-XS-Blue","id":581,"status":1,"name":"Logan HeatTec® Tee-XS-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","url_key":"logan-heattec-reg-tee-xs-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-XS-Red","id":582,"status":1,"name":"Logan HeatTec® Tee-XS-Red","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"58","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","url_key":"logan-heattec-reg-tee-xs-red","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-S-Black","id":583,"status":1,"name":"Logan HeatTec® Tee-S-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","url_key":"logan-heattec-reg-tee-s-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-S-Blue","id":584,"status":1,"name":"Logan HeatTec® Tee-S-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","url_key":"logan-heattec-reg-tee-s-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-S-Red","id":585,"status":1,"name":"Logan HeatTec® Tee-S-Red","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"58","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","url_key":"logan-heattec-reg-tee-s-red","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-M-Black","id":586,"status":1,"name":"Logan HeatTec® Tee-M-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","url_key":"logan-heattec-reg-tee-m-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-M-Blue","id":587,"status":1,"name":"Logan HeatTec® Tee-M-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","url_key":"logan-heattec-reg-tee-m-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-M-Red","id":588,"status":1,"name":"Logan HeatTec® Tee-M-Red","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"58","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","url_key":"logan-heattec-reg-tee-m-red","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-L-Black","id":589,"status":1,"name":"Logan HeatTec® Tee-L-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","url_key":"logan-heattec-reg-tee-l-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-L-Blue","id":590,"status":1,"name":"Logan HeatTec® Tee-L-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","url_key":"logan-heattec-reg-tee-l-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-L-Red","id":591,"status":1,"name":"Logan HeatTec® Tee-L-Red","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"58","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","url_key":"logan-heattec-reg-tee-l-red","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-XL-Black","id":592,"status":1,"name":"Logan HeatTec® Tee-XL-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","url_key":"logan-heattec-reg-tee-xl-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-XL-Blue","id":593,"status":1,"name":"Logan HeatTec® Tee-XL-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","url_key":"logan-heattec-reg-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-XL-Red","id":594,"status":1,"name":"Logan HeatTec® Tee-XL-Red","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"58","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","url_key":"logan-heattec-reg-tee-xl-red","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001}],"configurable_options":[{"id":69,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":595,"attribute_code":"color"},{"id":68,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":595,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-595.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"708","_score":1,"_source":{"id":708,"sku":"MT09-M-Blue","name":"Sinbad Fitness Tank-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

    \n

    • Teal polyester tank.
    • Premium fit tank top.
    • Ultra lightweight.
    • Naturally odor-resistant.

    ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"sinbad-fitness-tank-m-blue-708","links":{},"stock":{"item_id":708,"product_id":708,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-m-blue-708.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"713","_score":1,"_source":{"id":713,"sku":"MT10-S-Yellow","name":"Tiberius Gym Tank-S-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

    Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

    \n

    • Yellow scoop neck cotton tank.
    • Comfortable, relaxed fit.
    • 55% Hemp / 45% Organic Cotton.
    • Pesticide- and herbicide-free hemp.

    ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tiberius-gym-tank-s-yellow-713","links":{},"stock":{"item_id":713,"product_id":713,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-s-yellow-713.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"728","_score":1,"_source":{"id":728,"sku":"MT12-XL-Blue","name":"Cassius Sparring Tank-XL-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

    Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

    \n

    • Royal crewneck cotton tank.
    • Contrast stitching.
    • Self fabric binding at neckline.
    • Slim fit.
    • 96% Merino / 4% LYCRA®.

    ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"cassius-sparring-tank-xl-blue-728","links":{},"stock":{"item_id":728,"product_id":728,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-xl-blue-728.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"734","_score":1,"_source":{"id":734,"sku":"MP01-33-Gray","name":"Caesar Warm-Up Pant-33-Gray","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

    \n

    • Light gray heather knit straight leg pants.
    • Relaxed fit.
    • Inseam: 32\".
    • Machine wash/dry.
    • CoolTech™ wicking fabric.

    ","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"caesar-warm-up-pant-33-gray-734","links":{},"stock":{"item_id":734,"product_id":734,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-33-gray-734.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"741","_score":1,"_source":{"id":741,"sku":"MP01-36-Purple","name":"Caesar Warm-Up Pant-36-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

    \n

    • Light gray heather knit straight leg pants.
    • Relaxed fit.
    • Inseam: 32\".
    • Machine wash/dry.
    • CoolTech™ wicking fabric.

    ","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","color":"57","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"caesar-warm-up-pant-36-purple-741","links":{},"stock":{"item_id":741,"product_id":741,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-36-purple-741.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"651","_score":1,"_source":{"id":651,"sku":"MT02-M-Red","name":"Tristan Endurance Tank-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

    \n

    • White performance tank.
    • Stylish contrast stitching.
    • Relaxed fit.
    • Ribbed crew neckline.
    • Machine wash/dry.

    ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tristan-endurance-tank-m-red-651","links":{},"stock":{"item_id":651,"product_id":651,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-m-red-651.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"665","_score":1,"_source":{"id":665,"sku":"MT03-S-Yellow","name":"Primo Endurance Tank-S-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

    \n

    • Red heather tank with gray pocket.
    • Chafe-resistant flatlock seams.
    • Relaxed fit.
    • Contrast topstitching.
    • Machine wash/dry.

    ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"primo-endurance-tank-s-yellow-665","links":{},"stock":{"item_id":665,"product_id":665,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-s-yellow-665.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"656","_score":1,"_source":{"id":656,"sku":"MT02-XL-Gray","name":"Tristan Endurance Tank-XL-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

    \n

    • White performance tank.
    • Stylish contrast stitching.
    • Relaxed fit.
    • Ribbed crew neckline.
    • Machine wash/dry.

    ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tristan-endurance-tank-xl-gray-656","links":{},"stock":{"item_id":656,"product_id":656,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xl-gray-656.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"666","_score":1,"_source":{"id":666,"sku":"MT03-M-Blue","name":"Primo Endurance Tank-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

    \n

    • Red heather tank with gray pocket.
    • Chafe-resistant flatlock seams.
    • Relaxed fit.
    • Contrast topstitching.
    • Machine wash/dry.

    ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"primo-endurance-tank-m-blue-666","links":{},"stock":{"item_id":666,"product_id":666,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-m-blue-666.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"672","_score":1,"_source":{"id":672,"sku":"MT03-XL-Blue","name":"Primo Endurance Tank-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

    \n

    • Red heather tank with gray pocket.
    • Chafe-resistant flatlock seams.
    • Relaxed fit.
    • Contrast topstitching.
    • Machine wash/dry.

    ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"primo-endurance-tank-xl-blue-672","links":{},"stock":{"item_id":672,"product_id":672,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xl-blue-672.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"688","_score":1,"_source":{"id":688,"sku":"MT06-XS-Black","name":"Vulcan Weightlifting Tank-XS-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

    \n

    • Black polyester spandex tank.
    • 100% polyester.
    • Freedom of movement.
    • No-chafe seams.

    ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"vulcan-weightlifting-tank-xs-black-688","links":{},"stock":{"item_id":688,"product_id":688,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-xs-black-688.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"630","_score":1,"_source":{"id":630,"sku":"MT01-XS-Red","name":"Erikssen CoolTech™ Fitness Tank-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

    \n

    • Red performance tank.
    • Slight scoop neckline.
    • Reflectivity.
    • Machine wash/dry.

    ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erikssen-cooltech-and-trade-fitness-tank-xs-red-630","links":{},"stock":{"item_id":630,"product_id":630,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xs-red-630.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"645","_score":1,"_source":{"id":645,"sku":"MT02-XS-Red","name":"Tristan Endurance Tank-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

    \n

    • White performance tank.
    • Stylish contrast stitching.
    • Relaxed fit.
    • Ribbed crew neckline.
    • Machine wash/dry.

    ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tristan-endurance-tank-xs-red-645","links":{},"stock":{"item_id":645,"product_id":645,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xs-red-645.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"644","_score":1,"_source":{"id":644,"sku":"MT02-XS-Gray","name":"Tristan Endurance Tank-XS-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

    \n

    • White performance tank.
    • Stylish contrast stitching.
    • Relaxed fit.
    • Ribbed crew neckline.
    • Machine wash/dry.

    ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tristan-endurance-tank-xs-gray-644","links":{},"stock":{"item_id":644,"product_id":644,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xs-gray-644.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"646","_score":1,"_source":{"id":646,"sku":"MT02-XS-White","name":"Tristan Endurance Tank-XS-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

    \n

    • White performance tank.
    • Stylish contrast stitching.
    • Relaxed fit.
    • Ribbed crew neckline.
    • Machine wash/dry.

    ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tristan-endurance-tank-xs-white-646","links":{},"stock":{"item_id":646,"product_id":646,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xs-white-646.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"613","_score":1,"_source":{"id":613,"sku":"MS08-XS-Blue","name":"Strike Endurance Tee-XS-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

    \n

    • Loose fit.
    • Ribbed cuffs/collar.
    • Machine wash/dry.

    ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"strike-endurance-tee-xs-blue-613","links":{},"stock":{"item_id":613,"product_id":613,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xs-blue-613.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"610","_score":1,"_source":{"id":610,"sku":"MS07-XL-White","name":"Deion Long-Sleeve EverCool™ Tee-XL-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

    \n

    • Fitted.
    • Contrast inner neck tape.
    • Machine wash/dry.

    ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"deion-long-sleeve-evercool-and-trade-tee-xl-white-610","links":{},"stock":{"item_id":610,"product_id":610,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xl-white-610.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"617","_score":1,"_source":{"id":617,"sku":"MS08-S-Red","name":"Strike Endurance Tee-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

    \n

    • Loose fit.
    • Ribbed cuffs/collar.
    • Machine wash/dry.

    ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"strike-endurance-tee-s-red-617","links":{},"stock":{"item_id":617,"product_id":617,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-s-red-617.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"559","_score":1,"_source":{"id":559,"sku":"MS01-L-Yellow","name":"Aero Daily Fitness Tee-L-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

    \n

    Relaxed fit.
    Short-Sleeve.
    Machine wash/dry.

    ","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"aero-daily-fitness-tee-l-yellow-559","links":{},"stock":{"item_id":559,"product_id":559,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-l-yellow-559.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"582","_score":1,"_source":{"id":582,"sku":"MS10-XS-Red","name":"Logan HeatTec® Tee-XS-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

    \n

    • Semi-fitted.
    • Crew neckline.
    • Machine wash/tumble dry.

    ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"logan-heattec-and-reg-tee-xs-red-582","links":{},"stock":{"item_id":582,"product_id":582,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xs-red-582.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"588","_score":1,"_source":{"id":588,"sku":"MS10-M-Red","name":"Logan HeatTec® Tee-M-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

    \n

    • Semi-fitted.
    • Crew neckline.
    • Machine wash/tumble dry.

    ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"logan-heattec-and-reg-tee-m-red-588","links":{},"stock":{"item_id":588,"product_id":588,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-m-red-588.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"635","_score":1,"_source":{"id":635,"sku":"MT01-M-Orange","name":"Erikssen CoolTech™ Fitness Tank-M-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

    \n

    • Red performance tank.
    • Slight scoop neckline.
    • Reflectivity.
    • Machine wash/dry.

    ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erikssen-cooltech-and-trade-fitness-tank-m-orange-635","links":{},"stock":{"item_id":635,"product_id":635,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-m-orange-635.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"618","_score":1,"_source":{"id":618,"sku":"MS08-M-Black","name":"Strike Endurance Tee-M-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

    \n

    • Loose fit.
    • Ribbed cuffs/collar.
    • Machine wash/dry.

    ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"strike-endurance-tee-m-black-618","links":{},"stock":{"item_id":618,"product_id":618,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-m-black-618.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"701","_score":1,"_source":{"id":701,"sku":"MT08-S-Green","name":"Sparta Gym Tank-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

    \n

    • Green polyester tank.
    • Ultra lightweight.
    • Naturally odor-resistant.
    • Close-to-body athletic fit.
    • Chafe-resistant flatlock seams.

    ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"sparta-gym-tank-s-green-701","links":{},"stock":{"item_id":701,"product_id":701,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-s-green-701.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"712","_score":1,"_source":{"id":712,"sku":"MT10-XS-Yellow","name":"Tiberius Gym Tank-XS-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

    Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

    \n

    • Yellow scoop neck cotton tank.
    • Comfortable, relaxed fit.
    • 55% Hemp / 45% Organic Cotton.
    • Pesticide- and herbicide-free hemp.

    ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tiberius-gym-tank-xs-yellow-712","links":{},"stock":{"item_id":712,"product_id":712,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-xs-yellow-712.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"754","_score":1,"_source":{"id":754,"sku":"MP02-36-Red","name":"Viktor LumaTech™ Pant-36-Red","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001,"description":"

    You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

    \n

    • Dark gray polyester/spandex straight leg pants.
    • Elastic waistband and internal drawstring.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","color":"58","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"viktor-lumatech-and-trade-pant-36-red-754","links":{},"stock":{"item_id":754,"product_id":754,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-36-red-754.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"755","_score":1,"_source":{"id":755,"sku":"MP02","name":"Viktor LumaTech™ Pant","attribute_set_id":10,"price":46,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":46,"description":"

    You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

    \n

    • Dark gray polyester/spandex straight leg pants.
    • Elastic waistband and internal drawstring.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"viktor-lumatech-trade-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38,151],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,115],"pattern":"197","climate":[203,204,211],"slug":"viktor-lumatech-and-trade-pant-755","links":{},"stock":{"item_id":755,"product_id":755,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP02-32-Blue","id":743,"status":1,"name":"Viktor LumaTech™ Pant-32-Blue","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"176","color":"50","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","url_key":"viktor-lumatech-trade-pant-32-blue","msrp_display_actual_price_type":"0"},{"sku":"MP02-32-Gray","id":744,"status":1,"name":"Viktor LumaTech™ Pant-32-Gray","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"176","color":"52","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","url_key":"viktor-lumatech-trade-pant-32-gray","msrp_display_actual_price_type":"0"},{"sku":"MP02-32-Red","id":745,"status":1,"name":"Viktor LumaTech™ Pant-32-Red","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"176","color":"58","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","url_key":"viktor-lumatech-trade-pant-32-red","msrp_display_actual_price_type":"0"},{"sku":"MP02-33-Blue","id":746,"status":1,"name":"Viktor LumaTech™ Pant-33-Blue","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"177","color":"50","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","url_key":"viktor-lumatech-trade-pant-33-blue","msrp_display_actual_price_type":"0"},{"sku":"MP02-33-Gray","id":747,"status":1,"name":"Viktor LumaTech™ Pant-33-Gray","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"177","color":"52","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","url_key":"viktor-lumatech-trade-pant-33-gray","msrp_display_actual_price_type":"0"},{"sku":"MP02-33-Red","id":748,"status":1,"name":"Viktor LumaTech™ Pant-33-Red","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"177","color":"58","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","url_key":"viktor-lumatech-trade-pant-33-red","msrp_display_actual_price_type":"0"},{"sku":"MP02-34-Blue","id":749,"status":1,"name":"Viktor LumaTech™ Pant-34-Blue","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"178","color":"50","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","url_key":"viktor-lumatech-trade-pant-34-blue","msrp_display_actual_price_type":"0"},{"sku":"MP02-34-Gray","id":750,"status":1,"name":"Viktor LumaTech™ Pant-34-Gray","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"178","color":"52","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","url_key":"viktor-lumatech-trade-pant-34-gray","msrp_display_actual_price_type":"0"},{"sku":"MP02-34-Red","id":751,"status":1,"name":"Viktor LumaTech™ Pant-34-Red","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"178","color":"58","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","url_key":"viktor-lumatech-trade-pant-34-red","msrp_display_actual_price_type":"0","final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001},{"sku":"MP02-36-Blue","id":752,"status":1,"name":"Viktor LumaTech™ Pant-36-Blue","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"179","color":"50","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","url_key":"viktor-lumatech-trade-pant-36-blue","msrp_display_actual_price_type":"0","final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001},{"sku":"MP02-36-Gray","id":753,"status":1,"name":"Viktor LumaTech™ Pant-36-Gray","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"179","color":"52","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","url_key":"viktor-lumatech-trade-pant-36-gray","msrp_display_actual_price_type":"0","final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001},{"sku":"MP02-36-Red","id":754,"status":1,"name":"Viktor LumaTech™ Pant-36-Red","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"179","color":"58","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","url_key":"viktor-lumatech-trade-pant-36-red","msrp_display_actual_price_type":"0","final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001}],"configurable_options":[{"id":101,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"}],"product_id":755,"attribute_code":"color"},{"id":100,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":755,"attribute_code":"size"}],"color_options":[50,52,58],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-755.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"731","_score":1,"_source":{"id":731,"sku":"MP01-32-Gray","name":"Caesar Warm-Up Pant-32-Gray","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2018-02-11 12:06:30","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28.290001,"max_price":28.290001,"max_regular_price":28.290001,"minimal_regular_price":28.290001,"special_price":"23.0000","minimal_price":28.290001,"regular_price":43.050001,"description":"

    Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

    \r\n

    • Light gray heather knit straight leg pants.
    • Relaxed fit.
    • Inseam: 32\".
    • Machine wash/dry.
    • CoolTech™ wicking fabric.

    ","special_from_date":"2018-02-11 12:06:30","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-32-gray","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"176","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"caesar-warm-up-pant-32-gray-731","links":{},"stock":{"item_id":731,"product_id":731,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-32-gray-731.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"705","_score":1,"_source":{"id":705,"sku":"MT08","name":"Sparta Gym Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

    The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

    \n

    • Green polyester tank.
    • Ultra lightweight.
    • Naturally odor-resistant.
    • Close-to-body athletic fit.
    • Chafe-resistant flatlock seams.

    ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sparta-gym-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"sparta-gym-tank-705","links":{},"stock":{"item_id":705,"product_id":705,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT08-XS-Green","id":700,"status":1,"name":"Sparta Gym Tank-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"53","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","url_key":"sparta-gym-tank-xs-green","msrp_display_actual_price_type":"0"},{"sku":"MT08-S-Green","id":701,"status":1,"name":"Sparta Gym Tank-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"53","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","url_key":"sparta-gym-tank-s-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT08-M-Green","id":702,"status":1,"name":"Sparta Gym Tank-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"53","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","url_key":"sparta-gym-tank-m-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT08-L-Green","id":703,"status":1,"name":"Sparta Gym Tank-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"53","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","url_key":"sparta-gym-tank-l-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT08-XL-Green","id":704,"status":1,"name":"Sparta Gym Tank-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"53","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","url_key":"sparta-gym-tank-xl-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":89,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"}],"product_id":705,"attribute_code":"color"},{"id":88,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":705,"attribute_code":"size"}],"color_options":[53],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-705.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"742","_score":1,"_source":{"id":742,"sku":"MP01","name":"Caesar Warm-Up Pant","attribute_set_id":10,"price":35,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2018-02-11 12:01:51","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28.290001,"max_price":28.290001,"max_regular_price":28.290001,"minimal_regular_price":28.290001,"special_price":null,"minimal_price":28.290001,"regular_price":35,"description":"

    Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

    \r\n

    • Light gray heather knit straight leg pants.
    • Relaxed fit.
    • Inseam: 32\".
    • Machine wash/dry.
    • CoolTech™ wicking fabric.

    ","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","category_ids":[18,32,2],"options_container":"container2","required_options":"1","has_options":"1","url_key":"caesar-warm-up-pant","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":[156,145,146,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[204,208],"slug":"caesar-warm-up-pant-742","links":{},"stock":{"item_id":742,"product_id":742,"stock_id":1,"qty":1,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"configurable_children":[{"sku":"MP01-32-Black","id":730,"status":1,"name":"Caesar Warm-Up Pant-32-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"49","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","url_key":"caesar-warm-up-pant-32-black","msrp_display_actual_price_type":"0"},{"sku":"MP01-32-Gray","id":731,"status":1,"name":"Caesar Warm-Up Pant-32-Gray","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"52","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","url_key":"caesar-warm-up-pant-32-gray","special_price":28.290001,"special_from_date":"2018-02-11 12:06:30","msrp_display_actual_price_type":"0","final_price":28.290001,"max_price":28.290001,"max_regular_price":28.290001,"minimal_regular_price":28.290001,"minimal_price":28.290001,"regular_price":43.050001},{"sku":"MP01-32-Purple","id":732,"status":1,"name":"Caesar Warm-Up Pant-32-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"57","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","url_key":"caesar-warm-up-pant-32-purple","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MP01-33-Black","id":733,"status":1,"name":"Caesar Warm-Up Pant-33-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"49","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","url_key":"caesar-warm-up-pant-33-black","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MP01-33-Gray","id":734,"status":1,"name":"Caesar Warm-Up Pant-33-Gray","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"52","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","url_key":"caesar-warm-up-pant-33-gray","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MP01-33-Purple","id":735,"status":1,"name":"Caesar Warm-Up Pant-33-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"57","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","url_key":"caesar-warm-up-pant-33-purple","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MP01-34-Black","id":736,"status":1,"name":"Caesar Warm-Up Pant-34-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"49","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","url_key":"caesar-warm-up-pant-34-black","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MP01-34-Gray","id":737,"status":1,"name":"Caesar Warm-Up Pant-34-Gray","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"52","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","url_key":"caesar-warm-up-pant-34-gray","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MP01-34-Purple","id":738,"status":1,"name":"Caesar Warm-Up Pant-34-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"57","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","url_key":"caesar-warm-up-pant-34-purple","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MP01-36-Black","id":739,"status":1,"name":"Caesar Warm-Up Pant-36-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"49","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","url_key":"caesar-warm-up-pant-36-black","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MP01-36-Gray","id":740,"status":1,"name":"Caesar Warm-Up Pant-36-Gray","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"52","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","url_key":"caesar-warm-up-pant-36-gray","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MP01-36-Purple","id":741,"status":1,"name":"Caesar Warm-Up Pant-36-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"57","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","url_key":"caesar-warm-up-pant-36-purple","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001}],"configurable_options":[{"id":296,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"}],"product_id":742,"attribute_code":"color"},{"id":297,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":742,"attribute_code":"size"}],"color_options":[49,52,57],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-742.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"773","_score":1,"_source":{"id":773,"sku":"MP04-33-Gray","name":"Supernova Sport Pant-33-Gray","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

    \n

    • Dark heather gray straight leg cotton pants.
    • Relaxed fit.
    • Internal drawstring.
    • Machine wash/dry.

    ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"supernova-sport-pant-33-gray-773","links":{},"stock":{"item_id":773,"product_id":773,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-33-gray-773.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"767","_score":1,"_source":{"id":767,"sku":"MP03-36-Red","name":"Geo Insulated Jogging Pant-36-Red","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

    \n

    • Black polyester spandex pants with zipper pockets.
    • Reflective safety accents.
    • Loose fit.
    • On-seam pockets.
    • 8\" leg zips. 32\" inseam.
    • Machine wash/dry.

    ","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"geo-insulated-jogging-pant-36-red-767","links":{},"stock":{"item_id":767,"product_id":767,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-36-red-767.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"778","_score":1,"_source":{"id":778,"sku":"MP04-36-Black","name":"Supernova Sport Pant-36-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

    \n

    • Dark heather gray straight leg cotton pants.
    • Relaxed fit.
    • Internal drawstring.
    • Machine wash/dry.

    ","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"supernova-sport-pant-36-black-778","links":{},"stock":{"item_id":778,"product_id":778,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-36-black-778.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"786","_score":1,"_source":{"id":786,"sku":"MP05-33-Blue","name":"Kratos Gym Pant-33-Blue","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

    \n

    • Navy cotton straight leg pants.
    • Relaxed fit.
    • 2 side-seam pockets.
    • Internal zip pocket.
    • Drawstring waist.
    • Machine wash/dry.

    ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"kratos-gym-pant-33-blue-786","links":{},"stock":{"item_id":786,"product_id":786,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-33-blue-786.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"759","_score":1,"_source":{"id":759,"sku":"MP03-33-Blue","name":"Geo Insulated Jogging Pant-33-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

    \n

    • Black polyester spandex pants with zipper pockets.
    • Reflective safety accents.
    • Loose fit.
    • On-seam pockets.
    • 8\" leg zips. 32\" inseam.
    • Machine wash/dry.

    ","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"geo-insulated-jogging-pant-33-blue-759","links":{},"stock":{"item_id":759,"product_id":759,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-33-blue-759.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"782","_score":1,"_source":{"id":782,"sku":"MP05-32-Black","name":"Kratos Gym Pant-32-Black","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

    \n

    • Navy cotton straight leg pants.
    • Relaxed fit.
    • 2 side-seam pockets.
    • Internal zip pocket.
    • Drawstring waist.
    • Machine wash/dry.

    ","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"kratos-gym-pant-32-black-782","links":{},"stock":{"item_id":782,"product_id":782,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-32-black-782.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"785","_score":1,"_source":{"id":785,"sku":"MP05-33-Black","name":"Kratos Gym Pant-33-Black","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

    \n

    • Navy cotton straight leg pants.
    • Relaxed fit.
    • 2 side-seam pockets.
    • Internal zip pocket.
    • Drawstring waist.
    • Machine wash/dry.

    ","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"kratos-gym-pant-33-black-785","links":{},"stock":{"item_id":785,"product_id":785,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-33-black-785.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"784","_score":1,"_source":{"id":784,"sku":"MP05-32-Green","name":"Kratos Gym Pant-32-Green","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

    \n

    • Navy cotton straight leg pants.
    • Relaxed fit.
    • 2 side-seam pockets.
    • Internal zip pocket.
    • Drawstring waist.
    • Machine wash/dry.

    ","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"kratos-gym-pant-32-green-784","links":{},"stock":{"item_id":784,"product_id":784,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-32-green-784.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"787","_score":1,"_source":{"id":787,"sku":"MP05-33-Green","name":"Kratos Gym Pant-33-Green","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

    \n

    • Navy cotton straight leg pants.
    • Relaxed fit.
    • 2 side-seam pockets.
    • Internal zip pocket.
    • Drawstring waist.
    • Machine wash/dry.

    ","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"kratos-gym-pant-33-green-787","links":{},"stock":{"item_id":787,"product_id":787,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-33-green-787.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"792","_score":1,"_source":{"id":792,"sku":"MP05-36-Blue","name":"Kratos Gym Pant-36-Blue","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

    \n

    • Navy cotton straight leg pants.
    • Relaxed fit.
    • 2 side-seam pockets.
    • Internal zip pocket.
    • Drawstring waist.
    • Machine wash/dry.

    ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"kratos-gym-pant-36-blue-792","links":{},"stock":{"item_id":792,"product_id":792,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-36-blue-792.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"789","_score":1,"_source":{"id":789,"sku":"MP05-34-Blue","name":"Kratos Gym Pant-34-Blue","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

    \n

    • Navy cotton straight leg pants.
    • Relaxed fit.
    • 2 side-seam pockets.
    • Internal zip pocket.
    • Drawstring waist.
    • Machine wash/dry.

    ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"kratos-gym-pant-34-blue-789","links":{},"stock":{"item_id":789,"product_id":789,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-34-blue-789.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"803","_score":1,"_source":{"id":803,"sku":"MP06-34-Orange","name":"Mithra Warmup Pant-34-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

    \n

    • Ankle zips.
    • Elasticized waistband with draw cord.
    • Dual hand pockets.
    • Reflective elements for low-light safety.

    ","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","color":"56","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-34-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"mithra-warmup-pant-34-orange-803","links":{},"stock":{"item_id":803,"product_id":803,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-34-orange-803.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"828","_score":1,"_source":{"id":828,"sku":"MP08-34-Green","name":"Zeppelin Yoga Pant-34-Green","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001,"description":"

    Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

    \n

    • Smooth exterior for easy over-layering.
    • Brushed fleece interior insulates and wicks.
    • No-roll elastic waistband with inner drawstring.
    • Chafe-resistant flatlock seams.

    ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"zeppelin-yoga-pant-34-green-828","links":{},"stock":{"item_id":828,"product_id":828,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-34-green-828.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"840","_score":1,"_source":{"id":840,"sku":"MP09-34-Black","name":"Livingston All-Purpose Tight-34-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

    It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

    \n

    • Breathable stretch organic cotton/spandex.
    • Compression fit
    • Hidden key pocket
    • Elastic waist with internal drawcord.

    ","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","color":"49","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"livingston-all-purpose-tight-34-black-840","links":{},"stock":{"item_id":840,"product_id":840,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-34-black-840.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"847","_score":1,"_source":{"id":847,"sku":"MP10-32-Black","name":"Orestes Yoga Pant -32-Black","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

    The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

    \n

    • A yoga essential.
    • Breathable stretch organic cotton/spandex.
    • Standard Fit.

    ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","color":"49","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-yoga-pant-32-black-847","links":{},"stock":{"item_id":847,"product_id":847,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-32-black-847.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"827","_score":1,"_source":{"id":827,"sku":"MP08-34-Blue","name":"Zeppelin Yoga Pant-34-Blue","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001,"description":"

    Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

    \n

    • Smooth exterior for easy over-layering.
    • Brushed fleece interior insulates and wicks.
    • No-roll elastic waistband with inner drawstring.
    • Chafe-resistant flatlock seams.

    ","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"zeppelin-yoga-pant-34-blue-827","links":{},"stock":{"item_id":827,"product_id":827,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-34-blue-827.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"808","_score":1,"_source":{"id":808,"sku":"MP07-32-Black","name":"Thorpe Track Pant-32-Black","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

    Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

    \n

    • Moisture transfer properties.
    • 7% stretch.
    • Reflective safety trim.
    • Elastic drawcord waist.

    ","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"thorpe-track-pant-32-black-808","links":{},"stock":{"item_id":808,"product_id":808,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-32-black-808.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"806","_score":1,"_source":{"id":806,"sku":"MP06-36-Orange","name":"Mithra Warmup Pant-36-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

    \n

    • Ankle zips.
    • Elasticized waistband with draw cord.
    • Dual hand pockets.
    • Reflective elements for low-light safety.

    ","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","color":"56","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-36-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"mithra-warmup-pant-36-orange-806","links":{},"stock":{"item_id":806,"product_id":806,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-36-orange-806.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"830","_score":1,"_source":{"id":830,"sku":"MP08-36-Blue","name":"Zeppelin Yoga Pant-36-Blue","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001,"description":"

    Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

    \n

    • Smooth exterior for easy over-layering.
    • Brushed fleece interior insulates and wicks.
    • No-roll elastic waistband with inner drawstring.
    • Chafe-resistant flatlock seams.

    ","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"zeppelin-yoga-pant-36-blue-830","links":{},"stock":{"item_id":830,"product_id":830,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-36-blue-830.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"805","_score":1,"_source":{"id":805,"sku":"MP06-36-Green","name":"Mithra Warmup Pant-36-Green","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

    \n

    • Ankle zips.
    • Elasticized waistband with draw cord.
    • Dual hand pockets.
    • Reflective elements for low-light safety.

    ","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","color":"53","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"mithra-warmup-pant-36-green-805","links":{},"stock":{"item_id":805,"product_id":805,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-36-green-805.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"836","_score":1,"_source":{"id":836,"sku":"MP09-32-Red","name":"Livingston All-Purpose Tight-32-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

    It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

    \n

    • Breathable stretch organic cotton/spandex.
    • Compression fit
    • Hidden key pocket
    • Elastic waist with internal drawcord.

    ","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","color":"58","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"livingston-all-purpose-tight-32-red-836","links":{},"stock":{"item_id":836,"product_id":836,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-32-red-836.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"829","_score":1,"_source":{"id":829,"sku":"MP08-34-Red","name":"Zeppelin Yoga Pant-34-Red","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001,"description":"

    Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

    \n

    • Smooth exterior for easy over-layering.
    • Brushed fleece interior insulates and wicks.
    • No-roll elastic waistband with inner drawstring.
    • Chafe-resistant flatlock seams.

    ","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"zeppelin-yoga-pant-34-red-829","links":{},"stock":{"item_id":829,"product_id":829,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-34-red-829.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"844","_score":1,"_source":{"id":844,"sku":"MP09-36-Blue","name":"Livingston All-Purpose Tight-36-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

    It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

    \n

    • Breathable stretch organic cotton/spandex.
    • Compression fit
    • Hidden key pocket
    • Elastic waist with internal drawcord.

    ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","color":"50","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"livingston-all-purpose-tight-36-blue-844","links":{},"stock":{"item_id":844,"product_id":844,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-36-blue-844.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"860","_score":1,"_source":{"id":860,"sku":"MP11-32-Blue","name":"Aether Gym Pant -32-Blue","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

    The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

    \n

    • Pants/shorts convertible.
    • Lightweight moisture wicking.
    • Water repellent.
    • Belted waist.

    ","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"aether-gym-pant-32-blue-860","links":{},"stock":{"item_id":860,"product_id":860,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-32-blue-860.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"852","_score":1,"_source":{"id":852,"sku":"MP10-33-Green","name":"Orestes Yoga Pant -33-Green","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

    The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

    \n

    • A yoga essential.
    • Breathable stretch organic cotton/spandex.
    • Standard Fit.

    ","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-yoga-pant-33-green-852","links":{},"stock":{"item_id":852,"product_id":852,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-33-green-852.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"855","_score":1,"_source":{"id":855,"sku":"MP10-34-Green","name":"Orestes Yoga Pant -34-Green","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

    The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

    \n

    • A yoga essential.
    • Breathable stretch organic cotton/spandex.
    • Standard Fit.

    ","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-yoga-pant-34-green-855","links":{},"stock":{"item_id":855,"product_id":855,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-34-green-855.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"752","_score":1,"_source":{"id":752,"sku":"MP02-36-Blue","name":"Viktor LumaTech™ Pant-36-Blue","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001,"description":"

    You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

    \n

    • Dark gray polyester/spandex straight leg pants.
    • Elastic waistband and internal drawstring.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","color":"50","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"viktor-lumatech-and-trade-pant-36-blue-752","links":{},"stock":{"item_id":752,"product_id":752,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-36-blue-752.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"898","_score":1,"_source":{"id":898,"sku":"MSH01","name":"Cobalt CoolTech™ Fitness Short","attribute_set_id":10,"price":44,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":44,"description":"

    It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

    \n

    • Light blue nylon shorts.
    • Relaxed fit.
    • 5\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cobalt-cooltech-trade-fitness-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,37,38,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[202,205,212],"slug":"cobalt-cooltech-and-trade-fitness-short-898","links":{},"stock":{"item_id":898,"product_id":898,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH01-32-Black","id":886,"status":1,"name":"Cobalt CoolTech™ Fitness Short-32-Black","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"176","color":"49","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-32-black","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"MSH01-32-Blue","id":887,"status":1,"name":"Cobalt CoolTech™ Fitness Short-32-Blue","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"176","color":"50","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-32-blue","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"MSH01-32-Red","id":888,"status":1,"name":"Cobalt CoolTech™ Fitness Short-32-Red","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"176","color":"58","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-32-red","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"MSH01-33-Black","id":889,"status":1,"name":"Cobalt CoolTech™ Fitness Short-33-Black","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"177","color":"49","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-33-black","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"MSH01-33-Blue","id":890,"status":1,"name":"Cobalt CoolTech™ Fitness Short-33-Blue","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"177","color":"50","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-33-blue","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"MSH01-33-Red","id":891,"status":1,"name":"Cobalt CoolTech™ Fitness Short-33-Red","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"177","color":"58","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-33-red","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"MSH01-34-Black","id":892,"status":1,"name":"Cobalt CoolTech™ Fitness Short-34-Black","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"178","color":"49","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-34-black","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"MSH01-34-Blue","id":893,"status":1,"name":"Cobalt CoolTech™ Fitness Short-34-Blue","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"178","color":"50","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-34-blue","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"MSH01-34-Red","id":894,"status":1,"name":"Cobalt CoolTech™ Fitness Short-34-Red","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"178","color":"58","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-34-red","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"MSH01-36-Black","id":895,"status":1,"name":"Cobalt CoolTech™ Fitness Short-36-Black","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"179","color":"49","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-36-black","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"MSH01-36-Blue","id":896,"status":1,"name":"Cobalt CoolTech™ Fitness Short-36-Blue","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"179","color":"50","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-36-blue","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"MSH01-36-Red","id":897,"status":1,"name":"Cobalt CoolTech™ Fitness Short-36-Red","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"179","color":"58","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-36-red","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001}],"configurable_options":[{"id":123,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":898,"attribute_code":"color"},{"id":122,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":898,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-898.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"942","_score":1,"_source":{"id":942,"sku":"MSH05","name":"Hawkeye Yoga Short","attribute_set_id":10,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

    What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

    \n

    • Dark gray shorts with red accents.
    • 92% Organic Cotton 8% Spandex.
    • Breathable stretch organic cotton.
    • Medium=8.0\" (21.0cm) inseam.

    ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hawkeye-yoga-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,158,38,39,159],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":[197,199],"climate":[205,208,209],"slug":"hawkeye-yoga-short-942","links":{},"stock":{"item_id":942,"product_id":942,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH05-32-Black","id":930,"status":1,"name":"Hawkeye Yoga Short-32-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"49","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","url_key":"hawkeye-yoga-short-32-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MSH05-32-Blue","id":931,"status":1,"name":"Hawkeye Yoga Short-32-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"50","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","url_key":"hawkeye-yoga-short-32-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MSH05-32-Gray","id":932,"status":1,"name":"Hawkeye Yoga Short-32-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"52","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","url_key":"hawkeye-yoga-short-32-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MSH05-33-Black","id":933,"status":1,"name":"Hawkeye Yoga Short-33-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"49","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","url_key":"hawkeye-yoga-short-33-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MSH05-33-Blue","id":934,"status":1,"name":"Hawkeye Yoga Short-33-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"50","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","url_key":"hawkeye-yoga-short-33-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MSH05-33-Gray","id":935,"status":1,"name":"Hawkeye Yoga Short-33-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"52","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","url_key":"hawkeye-yoga-short-33-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MSH05-34-Black","id":936,"status":1,"name":"Hawkeye Yoga Short-34-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"49","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","url_key":"hawkeye-yoga-short-34-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MSH05-34-Blue","id":937,"status":1,"name":"Hawkeye Yoga Short-34-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"50","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","url_key":"hawkeye-yoga-short-34-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MSH05-34-Gray","id":938,"status":1,"name":"Hawkeye Yoga Short-34-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"52","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","url_key":"hawkeye-yoga-short-34-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MSH05-36-Black","id":939,"status":1,"name":"Hawkeye Yoga Short-36-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"49","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","url_key":"hawkeye-yoga-short-36-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MSH05-36-Blue","id":940,"status":1,"name":"Hawkeye Yoga Short-36-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"50","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","url_key":"hawkeye-yoga-short-36-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MSH05-36-Gray","id":941,"status":1,"name":"Hawkeye Yoga Short-36-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"52","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","url_key":"hawkeye-yoga-short-36-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":131,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"}],"product_id":942,"attribute_code":"color"},{"id":130,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":942,"attribute_code":"size"}],"color_options":[49,50,52],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-942.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"886","_score":1,"_source":{"id":886,"sku":"MSH01-32-Black","name":"Cobalt CoolTech™ Fitness Short-32-Black","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

    It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

    \n

    • Light blue nylon shorts.
    • Relaxed fit.
    • 5\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","color":"49","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cobalt-cooltech-and-trade-fitness-short-32-black-886","links":{},"stock":{"item_id":886,"product_id":886,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-32-black-886.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"895","_score":1,"_source":{"id":895,"sku":"MSH01-36-Black","name":"Cobalt CoolTech™ Fitness Short-36-Black","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

    It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

    \n

    • Light blue nylon shorts.
    • Relaxed fit.
    • 5\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","color":"49","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cobalt-cooltech-and-trade-fitness-short-36-black-895","links":{},"stock":{"item_id":895,"product_id":895,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-36-black-895.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"900","_score":1,"_source":{"id":900,"sku":"MSH02-33-Black","name":"Apollo Running Short-33-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

    Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

    \n

    • Black shorts with green accents.
    • Side pockets.
    • 4\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"apollo-running-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"apollo-running-short-33-black-900","links":{},"stock":{"item_id":900,"product_id":900,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-33-black-900.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"865","_score":1,"_source":{"id":865,"sku":"MP11-33-Green","name":"Aether Gym Pant -33-Green","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

    The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

    \n

    • Pants/shorts convertible.
    • Lightweight moisture wicking.
    • Water repellent.
    • Belted waist.

    ","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"aether-gym-pant-33-green-865","links":{},"stock":{"item_id":865,"product_id":865,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-33-green-865.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"915","_score":1,"_source":{"id":915,"sku":"MSH03-36-Green","name":"Meteor Workout Short-36-Green","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

    Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

    \n

    • Royal blue shorts with light blue accents.
    • Interior drawstring waistband.
    • 7\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"meteor-workout-short-36-green-915","links":{},"stock":{"item_id":915,"product_id":915,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-36-green-915.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"948","_score":1,"_source":{"id":948,"sku":"MSH06-33-Red","name":"Lono Yoga Short-33-Red","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

    \n

    • Dark gray shorts with mesh accents.
    • Ultra flexible four-way stretch.
    • Flatlock seams and waistband.
    • Two pockets, phony fly.
    • Nylon/Lycra outer, Polyester/Lycra inner.

    ","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","color":"58","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"lono-yoga-short-33-red-948","links":{},"stock":{"item_id":948,"product_id":948,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-33-red-948.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"944","_score":1,"_source":{"id":944,"sku":"MSH06-32-Gray","name":"Lono Yoga Short-32-Gray","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

    \n

    • Dark gray shorts with mesh accents.
    • Ultra flexible four-way stretch.
    • Flatlock seams and waistband.
    • Two pockets, phony fly.
    • Nylon/Lycra outer, Polyester/Lycra inner.

    ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","color":"52","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"lono-yoga-short-32-gray-944","links":{},"stock":{"item_id":944,"product_id":944,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-32-gray-944.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"922","_score":1,"_source":{"id":922,"sku":"MSH04-33-Yellow","name":"Torque Power Short-33-Yellow","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

    Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

    \n

    • Light gray shorts.
    • Fitted design.
    • Elastic waistband.
    • Flat-seam construction.
    • 7\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","color":"60","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-33-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"torque-power-short-33-yellow-922","links":{},"stock":{"item_id":922,"product_id":922,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-33-yellow-922.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"879","_score":1,"_source":{"id":879,"sku":"MP12-34-Black","name":"Cronus Yoga Pant -34-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

    \n

    • Drawstring waist.
    • Loose, straight-leg fit.
    • Lightweight cotton-recycled blend.
    • Front pockets with stitching detail.
    • Elastic ankle.

    ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cronus-yoga-pant-34-black-879","links":{},"stock":{"item_id":879,"product_id":879,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-34-black-879.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"880","_score":1,"_source":{"id":880,"sku":"MP12-34-Blue","name":"Cronus Yoga Pant -34-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

    \n

    • Drawstring waist.
    • Loose, straight-leg fit.
    • Lightweight cotton-recycled blend.
    • Front pockets with stitching detail.
    • Elastic ankle.

    ","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","color":"50","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cronus-yoga-pant-34-blue-880","links":{},"stock":{"item_id":880,"product_id":880,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-34-blue-880.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"935","_score":1,"_source":{"id":935,"sku":"MSH05-33-Gray","name":"Hawkeye Yoga Short-33-Gray","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

    \n

    • Dark gray shorts with red accents.
    • 92% Organic Cotton 8% Spandex.
    • Breathable stretch organic cotton.
    • Medium=8.0\" (21.0cm) inseam.

    ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","color":"52","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"hawkeye-yoga-short-33-gray-935","links":{},"stock":{"item_id":935,"product_id":935,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-33-gray-935.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"933","_score":1,"_source":{"id":933,"sku":"MSH05-33-Black","name":"Hawkeye Yoga Short-33-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

    \n

    • Dark gray shorts with red accents.
    • 92% Organic Cotton 8% Spandex.
    • Breathable stretch organic cotton.
    • Medium=8.0\" (21.0cm) inseam.

    ","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"hawkeye-yoga-short-33-black-933","links":{},"stock":{"item_id":933,"product_id":933,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-33-black-933.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"930","_score":1,"_source":{"id":930,"sku":"MSH05-32-Black","name":"Hawkeye Yoga Short-32-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

    \n

    • Dark gray shorts with red accents.
    • 92% Organic Cotton 8% Spandex.
    • Breathable stretch organic cotton.
    • Medium=8.0\" (21.0cm) inseam.

    ","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"hawkeye-yoga-short-32-black-930","links":{},"stock":{"item_id":930,"product_id":930,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-32-black-930.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"994","_score":1,"_source":{"id":994,"sku":"MSH09","name":"Troy Yoga Short","attribute_set_id":10,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":24,"description":"

    The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

    \n

    • Navy polyester pinstripe shorts.
    • Woven fabric with moderate stretch.
    • 62% cotton/34% nylon/4% spandex.
    • LumaTech™ lining.

    ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"troy-yoga-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,37,148,151],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[205,212,209],"slug":"troy-yoga-short-994","links":{},"stock":{"item_id":994,"product_id":994,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH09-32-Black","id":982,"status":1,"name":"Troy Yoga Short-32-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"49","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","url_key":"troy-yoga-short-32-black","msrp_display_actual_price_type":"0"},{"sku":"MSH09-32-Blue","id":983,"status":1,"name":"Troy Yoga Short-32-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"50","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","url_key":"troy-yoga-short-32-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MSH09-32-Green","id":984,"status":1,"name":"Troy Yoga Short-32-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"53","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","url_key":"troy-yoga-short-32-green","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MSH09-33-Black","id":985,"status":1,"name":"Troy Yoga Short-33-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"49","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","url_key":"troy-yoga-short-33-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MSH09-33-Blue","id":986,"status":1,"name":"Troy Yoga Short-33-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"50","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","url_key":"troy-yoga-short-33-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MSH09-33-Green","id":987,"status":1,"name":"Troy Yoga Short-33-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"53","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","url_key":"troy-yoga-short-33-green","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MSH09-34-Black","id":988,"status":1,"name":"Troy Yoga Short-34-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"49","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","url_key":"troy-yoga-short-34-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MSH09-34-Blue","id":989,"status":1,"name":"Troy Yoga Short-34-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"50","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","url_key":"troy-yoga-short-34-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MSH09-34-Green","id":990,"status":1,"name":"Troy Yoga Short-34-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"53","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","url_key":"troy-yoga-short-34-green","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MSH09-36-Black","id":991,"status":1,"name":"Troy Yoga Short-36-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"49","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","url_key":"troy-yoga-short-36-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MSH09-36-Blue","id":992,"status":1,"name":"Troy Yoga Short-36-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"50","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","url_key":"troy-yoga-short-36-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MSH09-36-Green","id":993,"status":1,"name":"Troy Yoga Short-36-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"53","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","url_key":"troy-yoga-short-36-green","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001}],"configurable_options":[{"id":139,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":994,"attribute_code":"color"},{"id":138,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":994,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-994.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1035","_score":1,"_source":{"id":1035,"sku":"WH01-XS-Orange","name":"Mona Pullover Hoodlie-XS-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

    • Light green heathered hoodie.
    • Long-Sleeve, pullover.
    • Long elliptical hem for extra coverage.
    • Deep button placket for layering.
    • Double rib design.
    • Mid layer, mid weight.
    • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mona-pullover-hoodlie-xs-orange-1035","links":{},"stock":{"item_id":1035,"product_id":1035,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xs-orange-1035.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1036","_score":1,"_source":{"id":1036,"sku":"WH01-XS-Purple","name":"Mona Pullover Hoodlie-XS-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

    • Light green heathered hoodie.
    • Long-Sleeve, pullover.
    • Long elliptical hem for extra coverage.
    • Deep button placket for layering.
    • Double rib design.
    • Mid layer, mid weight.
    • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mona-pullover-hoodlie-xs-purple-1036","links":{},"stock":{"item_id":1036,"product_id":1036,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xs-purple-1036.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1006","_score":1,"_source":{"id":1006,"sku":"MSH10-36-Purple","name":"Sol Active Short-36-Purple","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

    \n

    • Light blue jersey shorts with mesh detail.
    • 87% Spandex 13% Lycra.
    • Machine wash cold, tumble dry low.
    • Superior performance fabric.
    • Flat-lock seams.

    ","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","color":"57","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"sol-active-short-36-purple-1006","links":{},"stock":{"item_id":1006,"product_id":1006,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-36-purple-1006.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1032","_score":1,"_source":{"id":1032,"sku":"MSH12-36-Red","name":"Pierce Gym Short-36-Red","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

    The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

    \n

    • Dark red cotton shorts.
    • 87% Supplex, 13% Lycra.
    • Adjustable drawstring waistband.
    • Built-in mesh brief.
    • Machine wash cold, tumble dry low.

    ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","color":"58","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"pierce-gym-short-36-red-1032","links":{},"stock":{"item_id":1032,"product_id":1032,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-36-red-1032.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1013","_score":1,"_source":{"id":1013,"sku":"MSH11-33-Red","name":"Arcadio Gym Short-33-Red","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001,"description":"

    The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

    \n

    • Royal blue cotton shorts.
    • Built-in mesh brief.
    • 87% Spandex 13% Lycra.
    • Adjustable drawstring.

    ","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","color":"58","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"arcadio-gym-short-33-red-1013","links":{},"stock":{"item_id":1013,"product_id":1013,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-33-red-1013.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1044","_score":1,"_source":{"id":1044,"sku":"WH01-L-Orange","name":"Mona Pullover Hoodlie-L-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

    • Light green heathered hoodie.
    • Long-Sleeve, pullover.
    • Long elliptical hem for extra coverage.
    • Deep button placket for layering.
    • Double rib design.
    • Mid layer, mid weight.
    • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mona-pullover-hoodlie-l-orange-1044","links":{},"stock":{"item_id":1044,"product_id":1044,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-l-orange-1044.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1045","_score":1,"_source":{"id":1045,"sku":"WH01-L-Purple","name":"Mona Pullover Hoodlie-L-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

    • Light green heathered hoodie.
    • Long-Sleeve, pullover.
    • Long elliptical hem for extra coverage.
    • Deep button placket for layering.
    • Double rib design.
    • Mid layer, mid weight.
    • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mona-pullover-hoodlie-l-purple-1045","links":{},"stock":{"item_id":1045,"product_id":1045,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-l-purple-1045.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"963","_score":1,"_source":{"id":963,"sku":"MSH07-34-Blue","name":"Rapha Sports Short-34-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

    \n

    • Black shorts with royal accents.
    • Compression liner.
    • Inseam: 8\".
    • Machine wash/dry.

    ","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","color":"50","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"rapha-sports-short-34-blue-963","links":{},"stock":{"item_id":963,"product_id":963,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-34-blue-963.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"984","_score":1,"_source":{"id":984,"sku":"MSH09-32-Green","name":"Troy Yoga Short-32-Green","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

    \n

    • Navy polyester pinstripe shorts.
    • Woven fabric with moderate stretch.
    • 62% cotton/34% nylon/4% spandex.
    • LumaTech™ lining.

    ","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"troy-yoga-short-32-green-984","links":{},"stock":{"item_id":984,"product_id":984,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-32-green-984.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1004","_score":1,"_source":{"id":1004,"sku":"MSH10-36-Blue","name":"Sol Active Short-36-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

    \n

    • Light blue jersey shorts with mesh detail.
    • 87% Spandex 13% Lycra.
    • Machine wash cold, tumble dry low.
    • Superior performance fabric.
    • Flat-lock seams.

    ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"sol-active-short-36-blue-1004","links":{},"stock":{"item_id":1004,"product_id":1004,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-36-blue-1004.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1001","_score":1,"_source":{"id":1001,"sku":"MSH10-34-Blue","name":"Sol Active Short-34-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

    \n

    • Light blue jersey shorts with mesh detail.
    • 87% Spandex 13% Lycra.
    • Machine wash cold, tumble dry low.
    • Superior performance fabric.
    • Flat-lock seams.

    ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"sol-active-short-34-blue-1001","links":{},"stock":{"item_id":1001,"product_id":1001,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-34-blue-1001.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"980","_score":1,"_source":{"id":980,"sku":"MSH08-36-Green","name":"Orestes Fitness Short-36-Green","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

    \n

    • Black shorts with dark gray accents.
    • Elasticized waistband with interior drawstring.
    • Ventilating mesh detailing.
    • 100% polyester and recycled polyester.
    • Machine wash cold, tumble dry low.

    ","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","color":"53","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-fitness-short-36-green-980","links":{},"stock":{"item_id":980,"product_id":980,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-36-green-980.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"977","_score":1,"_source":{"id":977,"sku":"MSH08-34-Green","name":"Orestes Fitness Short-34-Green","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

    \n

    • Black shorts with dark gray accents.
    • Elasticized waistband with interior drawstring.
    • Ventilating mesh detailing.
    • 100% polyester and recycled polyester.
    • Machine wash cold, tumble dry low.

    ","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","color":"53","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-fitness-short-34-green-977","links":{},"stock":{"item_id":977,"product_id":977,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-34-green-977.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"953","_score":1,"_source":{"id":953,"sku":"MSH06-36-Gray","name":"Lono Yoga Short-36-Gray","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

    \n

    • Dark gray shorts with mesh accents.
    • Ultra flexible four-way stretch.
    • Flatlock seams and waistband.
    • Two pockets, phony fly.
    • Nylon/Lycra outer, Polyester/Lycra inner.

    ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","color":"52","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"lono-yoga-short-36-gray-953","links":{},"stock":{"item_id":953,"product_id":953,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-36-gray-953.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"995","_score":1,"_source":{"id":995,"sku":"MSH10-32-Blue","name":"Sol Active Short-32-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

    \n

    • Light blue jersey shorts with mesh detail.
    • 87% Spandex 13% Lycra.
    • Machine wash cold, tumble dry low.
    • Superior performance fabric.
    • Flat-lock seams.

    ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"sol-active-short-32-blue-995","links":{},"stock":{"item_id":995,"product_id":995,"stock_id":1,"qty":56,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-32-blue-995.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"985","_score":1,"_source":{"id":985,"sku":"MSH09-33-Black","name":"Troy Yoga Short-33-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

    \n

    • Navy polyester pinstripe shorts.
    • Woven fabric with moderate stretch.
    • 62% cotton/34% nylon/4% spandex.
    • LumaTech™ lining.

    ","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"troy-yoga-short-33-black-985","links":{},"stock":{"item_id":985,"product_id":985,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-33-black-985.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"982","_score":1,"_source":{"id":982,"sku":"MSH09-32-Black","name":"Troy Yoga Short-32-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

    The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

    \n

    • Navy polyester pinstripe shorts.
    • Woven fabric with moderate stretch.
    • 62% cotton/34% nylon/4% spandex.
    • LumaTech™ lining.

    ","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"troy-yoga-short-32-black-982","links":{},"stock":{"item_id":982,"product_id":982,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-03-21 13:14:03","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/m/s/msh09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-32-black-982.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1007","_score":1,"_source":{"id":1007,"sku":"MSH10","name":"Sol Active Short","attribute_set_id":10,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":32,"description":"

    You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

    \n

    • Light blue jersey shorts with mesh detail.
    • 87% Spandex 13% Lycra.
    • Machine wash cold, tumble dry low.
    • Superior performance fabric.
    • Flat-lock seams.

    ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sol-active-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[205,212,209],"slug":"sol-active-short-1007","links":{},"stock":{"item_id":1007,"product_id":1007,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH10-32-Blue","id":995,"status":1,"name":"Sol Active Short-32-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"176","color":"50","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","url_key":"sol-active-short-32-blue","msrp_display_actual_price_type":"0"},{"sku":"MSH10-32-Green","id":996,"status":1,"name":"Sol Active Short-32-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"176","color":"53","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","url_key":"sol-active-short-32-green","msrp_display_actual_price_type":"0"},{"sku":"MSH10-32-Purple","id":997,"status":1,"name":"Sol Active Short-32-Purple","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"176","color":"57","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","url_key":"sol-active-short-32-purple","msrp_display_actual_price_type":"0"},{"sku":"MSH10-33-Blue","id":998,"status":1,"name":"Sol Active Short-33-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"177","color":"50","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","url_key":"sol-active-short-33-blue","msrp_display_actual_price_type":"0"},{"sku":"MSH10-33-Green","id":999,"status":1,"name":"Sol Active Short-33-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"177","color":"53","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","url_key":"sol-active-short-33-green","msrp_display_actual_price_type":"0"},{"sku":"MSH10-33-Purple","id":1000,"status":1,"name":"Sol Active Short-33-Purple","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"177","color":"57","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","url_key":"sol-active-short-33-purple","msrp_display_actual_price_type":"0"},{"sku":"MSH10-34-Blue","id":1001,"status":1,"name":"Sol Active Short-34-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"178","color":"50","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","url_key":"sol-active-short-34-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MSH10-34-Green","id":1002,"status":1,"name":"Sol Active Short-34-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"178","color":"53","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","url_key":"sol-active-short-34-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MSH10-34-Purple","id":1003,"status":1,"name":"Sol Active Short-34-Purple","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"178","color":"57","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","url_key":"sol-active-short-34-purple","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MSH10-36-Blue","id":1004,"status":1,"name":"Sol Active Short-36-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"179","color":"50","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","url_key":"sol-active-short-36-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MSH10-36-Green","id":1005,"status":1,"name":"Sol Active Short-36-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"179","color":"53","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","url_key":"sol-active-short-36-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MSH10-36-Purple","id":1006,"status":1,"name":"Sol Active Short-36-Purple","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"179","color":"57","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","url_key":"sol-active-short-36-purple","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001}],"configurable_options":[{"id":141,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"}],"product_id":1007,"attribute_code":"color"},{"id":140,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":1007,"attribute_code":"size"}],"color_options":[50,53,57],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-1007.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1033","_score":1,"_source":{"id":1033,"sku":"MSH12","name":"Pierce Gym Short","attribute_set_id":10,"price":27,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":27,"description":"

    The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

    \n

    • Dark red cotton shorts.
    • 87% Supplex, 13% Lycra.
    • Adjustable drawstring waistband.
    • Built-in mesh brief.
    • Machine wash cold, tumble dry low.

    ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"pierce-gym-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,36,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_bottom":[116,105,108,114],"pattern":"197","climate":[205,212,209],"slug":"pierce-gym-short-1033","links":{},"stock":{"item_id":1033,"product_id":1033,"stock_id":1,"qty":7,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH12-32-Black","id":1021,"status":1,"name":"Pierce Gym Short-32-Black","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"176","color":"49","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","url_key":"pierce-gym-short-32-black","msrp_display_actual_price_type":"0","final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001},{"sku":"MSH12-32-Gray","id":1022,"status":1,"name":"Pierce Gym Short-32-Gray","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"176","color":"52","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","url_key":"pierce-gym-short-32-gray","msrp_display_actual_price_type":"0","final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001},{"sku":"MSH12-32-Red","id":1023,"status":1,"name":"Pierce Gym Short-32-Red","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"176","color":"58","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","url_key":"pierce-gym-short-32-red","msrp_display_actual_price_type":"0","final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001},{"sku":"MSH12-33-Black","id":1024,"status":1,"name":"Pierce Gym Short-33-Black","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"177","color":"49","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","url_key":"pierce-gym-short-33-black","msrp_display_actual_price_type":"0","final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001},{"sku":"MSH12-33-Gray","id":1025,"status":1,"name":"Pierce Gym Short-33-Gray","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"177","color":"52","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","url_key":"pierce-gym-short-33-gray","msrp_display_actual_price_type":"0","final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001},{"sku":"MSH12-33-Red","id":1026,"status":1,"name":"Pierce Gym Short-33-Red","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"177","color":"58","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","url_key":"pierce-gym-short-33-red","msrp_display_actual_price_type":"0","final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001},{"sku":"MSH12-34-Black","id":1027,"status":1,"name":"Pierce Gym Short-34-Black","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"178","color":"49","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","url_key":"pierce-gym-short-34-black","msrp_display_actual_price_type":"0","final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001},{"sku":"MSH12-34-Gray","id":1028,"status":1,"name":"Pierce Gym Short-34-Gray","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"178","color":"52","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","url_key":"pierce-gym-short-34-gray","msrp_display_actual_price_type":"0","final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001},{"sku":"MSH12-34-Red","id":1029,"status":1,"name":"Pierce Gym Short-34-Red","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"178","color":"58","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","url_key":"pierce-gym-short-34-red","msrp_display_actual_price_type":"0","final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001},{"sku":"MSH12-36-Black","id":1030,"status":1,"name":"Pierce Gym Short-36-Black","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"179","color":"49","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","url_key":"pierce-gym-short-36-black","msrp_display_actual_price_type":"0","final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001},{"sku":"MSH12-36-Gray","id":1031,"status":1,"name":"Pierce Gym Short-36-Gray","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"179","color":"52","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","url_key":"pierce-gym-short-36-gray","msrp_display_actual_price_type":"0","final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001},{"sku":"MSH12-36-Red","id":1032,"status":1,"name":"Pierce Gym Short-36-Red","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"179","color":"58","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","url_key":"pierce-gym-short-36-red","msrp_display_actual_price_type":"0","final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001}],"configurable_options":[{"id":145,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"}],"product_id":1033,"attribute_code":"color"},{"id":144,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":1033,"attribute_code":"size"}],"color_options":[49,52,58],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-1033.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1110","_score":1,"_source":{"id":1110,"sku":"WH05-XL-Orange","name":"Selene Yoga Hoodie-XL-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

    \n

    • Ivory heather full zip 3/4 sleeve hoodie.
    • Zip pocket at arm for convenient storage.
    • 24.0\" body length.
    • 89% Polyester / 11% Spandex.

    ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"selene-yoga-hoodie-xl-orange-1110","links":{},"stock":{"item_id":1110,"product_id":1110,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xl-orange-1110.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1102","_score":1,"_source":{"id":1102,"sku":"WH05-S-Purple","name":"Selene Yoga Hoodie-S-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

    \n

    • Ivory heather full zip 3/4 sleeve hoodie.
    • Zip pocket at arm for convenient storage.
    • 24.0\" body length.
    • 89% Polyester / 11% Spandex.

    ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"selene-yoga-hoodie-s-purple-1102","links":{},"stock":{"item_id":1102,"product_id":1102,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-s-purple-1102.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1115","_score":1,"_source":{"id":1115,"sku":"WH06-S-Purple","name":"Daphne Full-Zip Hoodie-S-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

    \n

    • Purple full zip hoodie with pink accents.
    • Heather texture.
    • 4-way stretch.
    • Pre-shrunk.
    • Hood lined in vegan Sherpa for added warmth.
    • Ribbed hem on hood and front pouch pocket.
    • 60% Cotton / 40% Polyester.

    ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"daphne-full-zip-hoodie-s-purple-1115","links":{},"stock":{"item_id":1115,"product_id":1115,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-s-purple-1115.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1136","_score":1,"_source":{"id":1136,"sku":"WH08-XS-Orange","name":"Cassia Funnel Sweatshirt-XS-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

    \n

    • White full zip hoodie with gray detail.
    • 65% Cotton/28% Nylon/7% Spandex.
    • Front slash pockets.
    • Tagless label at back neck.

    ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"cassia-funnel-sweatshirt-xs-orange-1136","links":{},"stock":{"item_id":1136,"product_id":1136,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xs-orange-1136.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1124","_score":1,"_source":{"id":1124,"sku":"WH07-S-Purple","name":"Phoebe Zipper Sweatshirt-S-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

    \n

    • Gray full zip hoodie with yellow detail.
    • Hand-warmer pockets.
    • Zip MP3 pocket with outlet for earphones wire.
    • Polyester/cotton.
    • Washable.

    ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"phoebe-zipper-sweatshirt-s-purple-1124","links":{},"stock":{"item_id":1124,"product_id":1124,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-s-purple-1124.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1123","_score":1,"_source":{"id":1123,"sku":"WH07-S-Gray","name":"Phoebe Zipper Sweatshirt-S-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

    \n

    • Gray full zip hoodie with yellow detail.
    • Hand-warmer pockets.
    • Zip MP3 pocket with outlet for earphones wire.
    • Polyester/cotton.
    • Washable.

    ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"phoebe-zipper-sweatshirt-s-gray-1123","links":{},"stock":{"item_id":1123,"product_id":1123,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-s-gray-1123.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1128","_score":1,"_source":{"id":1128,"sku":"WH07-M-White","name":"Phoebe Zipper Sweatshirt-M-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

    \n

    • Gray full zip hoodie with yellow detail.
    • Hand-warmer pockets.
    • Zip MP3 pocket with outlet for earphones wire.
    • Polyester/cotton.
    • Washable.

    ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"phoebe-zipper-sweatshirt-m-white-1128","links":{},"stock":{"item_id":1128,"product_id":1128,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-m-white-1128.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1146","_score":1,"_source":{"id":1146,"sku":"WH08-L-Purple","name":"Cassia Funnel Sweatshirt-L-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

    \n

    • White full zip hoodie with gray detail.
    • 65% Cotton/28% Nylon/7% Spandex.
    • Front slash pockets.
    • Tagless label at back neck.

    ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"cassia-funnel-sweatshirt-l-purple-1146","links":{},"stock":{"item_id":1146,"product_id":1146,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-l-purple-1146.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1131","_score":1,"_source":{"id":1131,"sku":"WH07-L-White","name":"Phoebe Zipper Sweatshirt-L-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

    \n

    • Gray full zip hoodie with yellow detail.
    • Hand-warmer pockets.
    • Zip MP3 pocket with outlet for earphones wire.
    • Polyester/cotton.
    • Washable.

    ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"phoebe-zipper-sweatshirt-l-white-1131","links":{},"stock":{"item_id":1131,"product_id":1131,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-l-white-1131.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1147","_score":1,"_source":{"id":1147,"sku":"WH08-L-White","name":"Cassia Funnel Sweatshirt-L-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

    \n

    • White full zip hoodie with gray detail.
    • 65% Cotton/28% Nylon/7% Spandex.
    • Front slash pockets.
    • Tagless label at back neck.

    ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"cassia-funnel-sweatshirt-l-white-1147","links":{},"stock":{"item_id":1147,"product_id":1147,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-l-white-1147.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1167","_score":1,"_source":{"id":1167,"sku":"WH09","name":"Ariel Roll Sleeve Sweatshirt","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:12","updated_at":"2019-04-11 09:24:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":39,"description":"

    Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

    \r\n

    • Purple two-tone lightweight hoodie.
    • 100% cotton.
    • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
    • Casual, comfy piece for running errands or weekend activities.

    ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","category_ids":[24,36,2],"options_container":"container2","required_options":"1","has_options":"1","url_key":"ariel-roll-sleeve-sweatshirt","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":"33","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[138,137],"pattern":"195","climate":[205,206,208,209],"slug":"ariel-roll-sleeve-sweatshirt-1167","links":{},"stock":{"item_id":1167,"product_id":1167,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":null,"vid":null},{"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":null,"vid":null}],"configurable_children":[{"sku":"WH09-XS-Green","id":1152,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-XS-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"167","color":"53","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-xs-green","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-XS-Purple","id":1153,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-XS-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"167","color":"57","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-xs-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-XS-Red","id":1154,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-XS-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"167","color":"58","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-xs-red","msrp_display_actual_price_type":"0"},{"sku":"WH09-S-Green","id":1155,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-S-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"168","color":"53","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-s-green","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-S-Purple","id":1156,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-S-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"168","color":"57","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-s-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-S-Red","id":1157,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-S-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"168","color":"58","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-s-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-M-Green","id":1158,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-M-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"169","color":"53","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-m-green","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-M-Purple","id":1159,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-M-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"169","color":"57","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-m-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-M-Red","id":1160,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-M-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"169","color":"58","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-m-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-L-Green","id":1161,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-L-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"170","color":"53","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-l-green","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-L-Purple","id":1162,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-L-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"170","color":"57","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-l-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-L-Red","id":1163,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-L-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"170","color":"58","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-l-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-XL-Green","id":1164,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-XL-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"171","color":"53","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-xl-green","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-XL-Purple","id":1165,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-XL-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"171","color":"57","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-xl-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-XL-Red","id":1166,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-XL-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"171","color":"58","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-xl-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001}],"configurable_options":[{"id":304,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1167,"attribute_code":"color"},{"id":305,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1167,"attribute_code":"size"}],"color_options":[53,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-1167.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1069","_score":1,"_source":{"id":1069,"sku":"WH03-S-Green","name":"Autumn Pullie-S-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

    \n

    • Cayenne Short-Sleeve roll neck sweatshirt.
    • Relaxed fit.
    • Short-Sleeves.
    • Machine wash/dry.

    ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"autumn-pullie-s-green-1069","links":{},"stock":{"item_id":1069,"product_id":1069,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-s-green-1069.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1052","_score":1,"_source":{"id":1052,"sku":"WH02-XS-Orange","name":"Hera Pullover Hoodie-XS-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

    \n

    • Teal with purple stiching.
    • Hoodie pullover.
    • Snug fit.

    ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hera-pullover-hoodie-xs-orange-1052","links":{},"stock":{"item_id":1052,"product_id":1052,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xs-orange-1052.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1087","_score":1,"_source":{"id":1087,"sku":"WH04-S-Purple","name":"Miko Pullover Hoodie-S-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

    \n

    • Teal two-tone hoodie.
    • Low scoop neckline.
    • Adjustable hood drawstrings.
    • Longer rounded hemline for extra back coverage.
    • Long-Sleeve style.

    ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"miko-pullover-hoodie-s-purple-1087","links":{},"stock":{"item_id":1087,"product_id":1087,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-s-purple-1087.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1084","_score":1,"_source":{"id":1084,"sku":"WH04-XS-Purple","name":"Miko Pullover Hoodie-XS-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

    \n

    • Teal two-tone hoodie.
    • Low scoop neckline.
    • Adjustable hood drawstrings.
    • Longer rounded hemline for extra back coverage.
    • Long-Sleeve style.

    ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"miko-pullover-hoodie-xs-purple-1084","links":{},"stock":{"item_id":1084,"product_id":1084,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xs-purple-1084.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1082","_score":1,"_source":{"id":1082,"sku":"WH04-XS-Blue","name":"Miko Pullover Hoodie-XS-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

    \n

    • Teal two-tone hoodie.
    • Low scoop neckline.
    • Adjustable hood drawstrings.
    • Longer rounded hemline for extra back coverage.
    • Long-Sleeve style.

    ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"miko-pullover-hoodie-xs-blue-1082","links":{},"stock":{"item_id":1082,"product_id":1082,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xs-blue-1082.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1099","_score":1,"_source":{"id":1099,"sku":"WH05-XS-Purple","name":"Selene Yoga Hoodie-XS-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

    \n

    • Ivory heather full zip 3/4 sleeve hoodie.
    • Zip pocket at arm for convenient storage.
    • 24.0\" body length.
    • 89% Polyester / 11% Spandex.

    ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"selene-yoga-hoodie-xs-purple-1099","links":{},"stock":{"item_id":1099,"product_id":1099,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xs-purple-1099.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1073","_score":1,"_source":{"id":1073,"sku":"WH03-M-Purple","name":"Autumn Pullie-M-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

    \n

    • Cayenne Short-Sleeve roll neck sweatshirt.
    • Relaxed fit.
    • Short-Sleeves.
    • Machine wash/dry.

    ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"autumn-pullie-m-purple-1073","links":{},"stock":{"item_id":1073,"product_id":1073,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-m-purple-1073.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1089","_score":1,"_source":{"id":1089,"sku":"WH04-M-Orange","name":"Miko Pullover Hoodie-M-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

    \n

    • Teal two-tone hoodie.
    • Low scoop neckline.
    • Adjustable hood drawstrings.
    • Longer rounded hemline for extra back coverage.
    • Long-Sleeve style.

    ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"miko-pullover-hoodie-m-orange-1089","links":{},"stock":{"item_id":1089,"product_id":1089,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-m-orange-1089.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1174","_score":1,"_source":{"id":1174,"sku":"WH10-M-Blue","name":"Helena Hooded Fleece-M-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

    Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

    \n

    Full zip.
    Banded cuffs and waist.
    Front pockets.
    Machine wash/dry.

    ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helena-hooded-fleece-m-blue-1174","links":{},"stock":{"item_id":1174,"product_id":1174,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-m-blue-1174.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1159","_score":1,"_source":{"id":1159,"sku":"WH09-M-Purple","name":"Ariel Roll Sleeve Sweatshirt-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

    \n

    • Purple two-tone lightweight hoodie.
    • 100% cotton.
    • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
    • Casual, comfy piece for running errands or weekend activities.

    ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ariel-roll-sleeve-sweatshirt-m-purple-1159","links":{},"stock":{"item_id":1159,"product_id":1159,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-m-purple-1159.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1164","_score":1,"_source":{"id":1164,"sku":"WH09-XL-Green","name":"Ariel Roll Sleeve Sweatshirt-XL-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

    \n

    • Purple two-tone lightweight hoodie.
    • 100% cotton.
    • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
    • Casual, comfy piece for running errands or weekend activities.

    ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ariel-roll-sleeve-sweatshirt-xl-green-1164","links":{},"stock":{"item_id":1164,"product_id":1164,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xl-green-1164.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1172","_score":1,"_source":{"id":1172,"sku":"WH10-S-Gray","name":"Helena Hooded Fleece-S-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

    Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

    \n

    Full zip.
    Banded cuffs and waist.
    Front pockets.
    Machine wash/dry.

    ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helena-hooded-fleece-s-gray-1172","links":{},"stock":{"item_id":1172,"product_id":1172,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-s-gray-1172.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1185","_score":1,"_source":{"id":1185,"sku":"WH11-XS-Green","name":"Eos V-Neck Hoodie-XS-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

    Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

    \n

    Semi-fitted.
    Long-Sleeve.
    Machine wash/line dry.

    ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"eos-v-neck-hoodie-xs-green-1185","links":{},"stock":{"item_id":1185,"product_id":1185,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xs-green-1185.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1169","_score":1,"_source":{"id":1169,"sku":"WH10-XS-Gray","name":"Helena Hooded Fleece-XS-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

    Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

    \n

    Full zip.
    Banded cuffs and waist.
    Front pockets.
    Machine wash/dry.

    ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helena-hooded-fleece-xs-gray-1169","links":{},"stock":{"item_id":1169,"product_id":1169,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xs-gray-1169.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1160","_score":1,"_source":{"id":1160,"sku":"WH09-M-Red","name":"Ariel Roll Sleeve Sweatshirt-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

    \n

    • Purple two-tone lightweight hoodie.
    • 100% cotton.
    • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
    • Casual, comfy piece for running errands or weekend activities.

    ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ariel-roll-sleeve-sweatshirt-m-red-1160","links":{},"stock":{"item_id":1160,"product_id":1160,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-m-red-1160.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1161","_score":1,"_source":{"id":1161,"sku":"WH09-L-Green","name":"Ariel Roll Sleeve Sweatshirt-L-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

    \n

    • Purple two-tone lightweight hoodie.
    • 100% cotton.
    • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
    • Casual, comfy piece for running errands or weekend activities.

    ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ariel-roll-sleeve-sweatshirt-l-green-1161","links":{},"stock":{"item_id":1161,"product_id":1161,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-l-green-1161.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1156","_score":1,"_source":{"id":1156,"sku":"WH09-S-Purple","name":"Ariel Roll Sleeve Sweatshirt-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

    \n

    • Purple two-tone lightweight hoodie.
    • 100% cotton.
    • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
    • Casual, comfy piece for running errands or weekend activities.

    ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ariel-roll-sleeve-sweatshirt-s-purple-1156","links":{},"stock":{"item_id":1156,"product_id":1156,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-s-purple-1156.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1054","_score":1,"_source":{"id":1054,"sku":"WH02-S-Green","name":"Hera Pullover Hoodie-S-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

    \n

    • Teal with purple stiching.
    • Hoodie pullover.
    • Snug fit.

    ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hera-pullover-hoodie-s-green-1054","links":{},"stock":{"item_id":1054,"product_id":1054,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-s-green-1054.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1055","_score":1,"_source":{"id":1055,"sku":"WH02-S-Orange","name":"Hera Pullover Hoodie-S-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

    \n

    • Teal with purple stiching.
    • Hoodie pullover.
    • Snug fit.

    ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hera-pullover-hoodie-s-orange-1055","links":{},"stock":{"item_id":1055,"product_id":1055,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-s-orange-1055.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1075","_score":1,"_source":{"id":1075,"sku":"WH03-L-Green","name":"Autumn Pullie-L-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

    \n

    • Cayenne Short-Sleeve roll neck sweatshirt.
    • Relaxed fit.
    • Short-Sleeves.
    • Machine wash/dry.

    ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"autumn-pullie-l-green-1075","links":{},"stock":{"item_id":1075,"product_id":1075,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-l-green-1075.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1061","_score":1,"_source":{"id":1061,"sku":"WH02-L-Orange","name":"Hera Pullover Hoodie-L-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

    \n

    • Teal with purple stiching.
    • Hoodie pullover.
    • Snug fit.

    ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hera-pullover-hoodie-l-orange-1061","links":{},"stock":{"item_id":1061,"product_id":1061,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-l-orange-1061.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1064","_score":1,"_source":{"id":1064,"sku":"WH02-XL-Orange","name":"Hera Pullover Hoodie-XL-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

    \n

    • Teal with purple stiching.
    • Hoodie pullover.
    • Snug fit.

    ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hera-pullover-hoodie-xl-orange-1064","links":{},"stock":{"item_id":1064,"product_id":1064,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xl-orange-1064.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1212","_score":1,"_source":{"id":1212,"sku":"WH12-XL-Gray","name":"Circe Hooded Ice Fleece-XL-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

    Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

    \n

    Full-zip front.
    Three-panel hood.
    Flatlock seams throughout.
    Welt hand pockets.
    Machine wash/dry.

    ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"circe-hooded-ice-fleece-xl-gray-1212","links":{},"stock":{"item_id":1212,"product_id":1212,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xl-gray-1212.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1219","_score":1,"_source":{"id":1219,"sku":"WJ01-M-Blue","name":"Stellar Solar Jacket-M-Blue","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

    Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

    \n

    • Loose fit.
    • Reflectivity.
    • Flat seams.
    • Machine wash/dry.
    • Deep pink jacket with front panel rouching

    ","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","color":"50","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stellar-solar-jacket-m-blue-1219","links":{},"stock":{"item_id":1219,"product_id":1219,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-m-blue-1219.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1145","_score":1,"_source":{"id":1145,"sku":"WH08-L-Orange","name":"Cassia Funnel Sweatshirt-L-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

    \n

    • White full zip hoodie with gray detail.
    • 65% Cotton/28% Nylon/7% Spandex.
    • Front slash pockets.
    • Tagless label at back neck.

    ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"cassia-funnel-sweatshirt-l-orange-1145","links":{},"stock":{"item_id":1145,"product_id":1145,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-l-orange-1145.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1343","_score":1,"_source":{"id":1343,"sku":"WJ10-S-Yellow","name":"Nadia Elements Shell-S-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

    \n

    • Zippered front.
    • Zippered side pockets.
    • Drawstring-adjustable waist and hood.
    • Machine wash/line dry.
    • Light blue 1/4 zip pullover.

    ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nadia-elements-shell-s-yellow-1343","links":{},"stock":{"item_id":1343,"product_id":1343,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-s-yellow-1343.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1345","_score":1,"_source":{"id":1345,"sku":"WJ10-M-Orange","name":"Nadia Elements Shell-M-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

    \n

    • Zippered front.
    • Zippered side pockets.
    • Drawstring-adjustable waist and hood.
    • Machine wash/line dry.
    • Light blue 1/4 zip pullover.

    ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nadia-elements-shell-m-orange-1345","links":{},"stock":{"item_id":1345,"product_id":1345,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-m-orange-1345.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1349","_score":1,"_source":{"id":1349,"sku":"WJ10-L-Yellow","name":"Nadia Elements Shell-L-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

    \n

    • Zippered front.
    • Zippered side pockets.
    • Drawstring-adjustable waist and hood.
    • Machine wash/line dry.
    • Light blue 1/4 zip pullover.

    ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nadia-elements-shell-l-yellow-1349","links":{},"stock":{"item_id":1349,"product_id":1349,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-l-yellow-1349.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1350","_score":1,"_source":{"id":1350,"sku":"WJ10-XL-Black","name":"Nadia Elements Shell-XL-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

    \n

    • Zippered front.
    • Zippered side pockets.
    • Drawstring-adjustable waist and hood.
    • Machine wash/line dry.
    • Light blue 1/4 zip pullover.

    ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nadia-elements-shell-xl-black-1350","links":{},"stock":{"item_id":1350,"product_id":1350,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xl-black-1350.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1333","_score":1,"_source":{"id":1333,"sku":"WJ09-L-Green","name":"Jade Yoga Jacket-L-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


    If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

    \n

    • Seafoam 1/4 zip pullover with purple stitching.
    • Lightweight, quick-drying, water-resistant construction.
    • Shirred details at front and back for a feminine look.
    • Hood collapses into collar.
    • Mesh liner for breathability.
    • Front zip pockets.
    • Hem cinches at sideseam.
    • 100% Polyester.

    ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jade-yoga-jacket-l-green-1333","links":{},"stock":{"item_id":1333,"product_id":1333,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-l-green-1333.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1305","_score":1,"_source":{"id":1305,"sku":"WJ07","name":"Inez Full Zip Jacket","attribute_set_id":9,"price":59,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":59,"description":"

    The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

    \n

    • Purple heather inset full zip jacket.
    • Full zip hoodie.
    • Contrast binding along the zipper, hood and sleeves.
    • Inseam pockets for storage.
    • Thumbholes for comfortable fit.

    ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"inez-full-zip-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38,151,156],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[117,118,121,125,129],"pattern":"195","climate":[204,206,207,208,210],"slug":"inez-full-zip-jacket-1305","links":{},"stock":{"item_id":1305,"product_id":1305,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ07-XS-Orange","id":1290,"status":1,"name":"Inez Full Zip Jacket-XS-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"56","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","url_key":"inez-full-zip-jacket-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ07-XS-Purple","id":1291,"status":1,"name":"Inez Full Zip Jacket-XS-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"57","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","url_key":"inez-full-zip-jacket-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ07-XS-Red","id":1292,"status":1,"name":"Inez Full Zip Jacket-XS-Red","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"58","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","url_key":"inez-full-zip-jacket-xs-red","msrp_display_actual_price_type":"0"},{"sku":"WJ07-S-Orange","id":1293,"status":1,"name":"Inez Full Zip Jacket-S-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"56","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","url_key":"inez-full-zip-jacket-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ07-S-Purple","id":1294,"status":1,"name":"Inez Full Zip Jacket-S-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"57","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","url_key":"inez-full-zip-jacket-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ07-S-Red","id":1295,"status":1,"name":"Inez Full Zip Jacket-S-Red","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"58","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","url_key":"inez-full-zip-jacket-s-red","msrp_display_actual_price_type":"0"},{"sku":"WJ07-M-Orange","id":1296,"status":1,"name":"Inez Full Zip Jacket-M-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"56","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","url_key":"inez-full-zip-jacket-m-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ07-M-Purple","id":1297,"status":1,"name":"Inez Full Zip Jacket-M-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"57","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","url_key":"inez-full-zip-jacket-m-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ07-M-Red","id":1298,"status":1,"name":"Inez Full Zip Jacket-M-Red","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"58","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","url_key":"inez-full-zip-jacket-m-red","msrp_display_actual_price_type":"0"},{"sku":"WJ07-L-Orange","id":1299,"status":1,"name":"Inez Full Zip Jacket-L-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"56","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","url_key":"inez-full-zip-jacket-l-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ07-L-Purple","id":1300,"status":1,"name":"Inez Full Zip Jacket-L-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"57","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","url_key":"inez-full-zip-jacket-l-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ07-L-Red","id":1301,"status":1,"name":"Inez Full Zip Jacket-L-Red","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"58","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","url_key":"inez-full-zip-jacket-l-red","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WJ07-XL-Orange","id":1302,"status":1,"name":"Inez Full Zip Jacket-XL-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"56","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","url_key":"inez-full-zip-jacket-xl-orange","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WJ07-XL-Purple","id":1303,"status":1,"name":"Inez Full Zip Jacket-XL-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"57","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","url_key":"inez-full-zip-jacket-xl-purple","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WJ07-XL-Red","id":1304,"status":1,"name":"Inez Full Zip Jacket-XL-Red","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"58","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","url_key":"inez-full-zip-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001}],"configurable_options":[{"id":181,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1305,"attribute_code":"color"},{"id":180,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1305,"attribute_code":"size"}],"color_options":[56,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-1305.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1307","_score":1,"_source":{"id":1307,"sku":"WJ08-XS-Orange","name":"Adrienne Trek Jacket-XS-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

    \n

    • gray 1/4 zip pullover.
    • Comfortable, relaxed fit.
    • Front zip for venting.
    • Spacious, kangaroo pockets.
    • 27\" body length.
    • 95% Organic Cotton / 5% Spandex.

    ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"adrienne-trek-jacket-xs-orange-1307","links":{},"stock":{"item_id":1307,"product_id":1307,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xs-orange-1307.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1315","_score":1,"_source":{"id":1315,"sku":"WJ08-L-Gray","name":"Adrienne Trek Jacket-L-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

    \n

    • gray 1/4 zip pullover.
    • Comfortable, relaxed fit.
    • Front zip for venting.
    • Spacious, kangaroo pockets.
    • 27\" body length.
    • 95% Organic Cotton / 5% Spandex.

    ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"adrienne-trek-jacket-l-gray-1315","links":{},"stock":{"item_id":1315,"product_id":1315,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-l-gray-1315.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1327","_score":1,"_source":{"id":1327,"sku":"WJ09-S-Green","name":"Jade Yoga Jacket-S-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


    If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

    \n

    • Seafoam 1/4 zip pullover with purple stitching.
    • Lightweight, quick-drying, water-resistant construction.
    • Shirred details at front and back for a feminine look.
    • Hood collapses into collar.
    • Mesh liner for breathability.
    • Front zip pockets.
    • Hem cinches at sideseam.
    • 100% Polyester.

    ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jade-yoga-jacket-s-green-1327","links":{},"stock":{"item_id":1327,"product_id":1327,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-s-green-1327.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1326","_score":1,"_source":{"id":1326,"sku":"WJ09-S-Gray","name":"Jade Yoga Jacket-S-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


    If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

    \n

    • Seafoam 1/4 zip pullover with purple stitching.
    • Lightweight, quick-drying, water-resistant construction.
    • Shirred details at front and back for a feminine look.
    • Hood collapses into collar.
    • Mesh liner for breathability.
    • Front zip pockets.
    • Hem cinches at sideseam.
    • 100% Polyester.

    ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jade-yoga-jacket-s-gray-1326","links":{},"stock":{"item_id":1326,"product_id":1326,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-s-gray-1326.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1325","_score":1,"_source":{"id":1325,"sku":"WJ09-S-Blue","name":"Jade Yoga Jacket-S-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


    If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

    \n

    • Seafoam 1/4 zip pullover with purple stitching.
    • Lightweight, quick-drying, water-resistant construction.
    • Shirred details at front and back for a feminine look.
    • Hood collapses into collar.
    • Mesh liner for breathability.
    • Front zip pockets.
    • Hem cinches at sideseam.
    • 100% Polyester.

    ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jade-yoga-jacket-s-blue-1325","links":{},"stock":{"item_id":1325,"product_id":1325,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-s-blue-1325.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1323","_score":1,"_source":{"id":1323,"sku":"WJ09-XS-Gray","name":"Jade Yoga Jacket-XS-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


    If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

    \n

    • Seafoam 1/4 zip pullover with purple stitching.
    • Lightweight, quick-drying, water-resistant construction.
    • Shirred details at front and back for a feminine look.
    • Hood collapses into collar.
    • Mesh liner for breathability.
    • Front zip pockets.
    • Hem cinches at sideseam.
    • 100% Polyester.

    ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jade-yoga-jacket-xs-gray-1323","links":{},"stock":{"item_id":1323,"product_id":1323,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xs-gray-1323.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1330","_score":1,"_source":{"id":1330,"sku":"WJ09-M-Green","name":"Jade Yoga Jacket-M-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


    If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

    \n

    • Seafoam 1/4 zip pullover with purple stitching.
    • Lightweight, quick-drying, water-resistant construction.
    • Shirred details at front and back for a feminine look.
    • Hood collapses into collar.
    • Mesh liner for breathability.
    • Front zip pockets.
    • Hem cinches at sideseam.
    • 100% Polyester.

    ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jade-yoga-jacket-m-green-1330","links":{},"stock":{"item_id":1330,"product_id":1330,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-m-green-1330.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1351","_score":1,"_source":{"id":1351,"sku":"WJ10-XL-Orange","name":"Nadia Elements Shell-XL-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

    \n

    • Zippered front.
    • Zippered side pockets.
    • Drawstring-adjustable waist and hood.
    • Machine wash/line dry.
    • Light blue 1/4 zip pullover.

    ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nadia-elements-shell-xl-orange-1351","links":{},"stock":{"item_id":1351,"product_id":1351,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xl-orange-1351.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1361","_score":1,"_source":{"id":1361,"sku":"WJ11-M-Blue","name":"Neve Studio Dance Jacket-M-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

    \n

    • Bright blue 1/4 zip pullover.
    • CoolTech™ liner is sweat-wicking.
    • Sleeve thumbholes.
    • Zipper garage to protect your chin.
    • Stretchy collar drawcords.

    ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"neve-studio-dance-jacket-m-blue-1361","links":{},"stock":{"item_id":1361,"product_id":1361,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-m-blue-1361.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1359","_score":1,"_source":{"id":1359,"sku":"WJ11-S-Orange","name":"Neve Studio Dance Jacket-S-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

    \n

    • Bright blue 1/4 zip pullover.
    • CoolTech™ liner is sweat-wicking.
    • Sleeve thumbholes.
    • Zipper garage to protect your chin.
    • Stretchy collar drawcords.

    ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"neve-studio-dance-jacket-s-orange-1359","links":{},"stock":{"item_id":1359,"product_id":1359,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-s-orange-1359.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1364","_score":1,"_source":{"id":1364,"sku":"WJ11-L-Blue","name":"Neve Studio Dance Jacket-L-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

    \n

    • Bright blue 1/4 zip pullover.
    • CoolTech™ liner is sweat-wicking.
    • Sleeve thumbholes.
    • Zipper garage to protect your chin.
    • Stretchy collar drawcords.

    ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"neve-studio-dance-jacket-l-blue-1364","links":{},"stock":{"item_id":1364,"product_id":1364,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-l-blue-1364.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1371","_score":1,"_source":{"id":1371,"sku":"WJ06-XS-Green","name":"Juno Jacket-XS-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

    On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

    \n

    • Adjustable hood.
    • Fleece-lined, zippered hand pockets.
    • Thumbhole cuffs.
    • Full zip.
    • Mock-neck collar.
    • Machine wash/dry.

    ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juno-jacket-xs-green-1371","links":{},"stock":{"item_id":1371,"product_id":1371,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xs-green-1371.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1379","_score":1,"_source":{"id":1379,"sku":"WJ06-L-Blue","name":"Juno Jacket-L-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

    On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

    \n

    • Adjustable hood.
    • Fleece-lined, zippered hand pockets.
    • Thumbhole cuffs.
    • Full zip.
    • Mock-neck collar.
    • Machine wash/dry.

    ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juno-jacket-l-blue-1379","links":{},"stock":{"item_id":1379,"product_id":1379,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-l-blue-1379.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1400","_score":1,"_source":{"id":1400,"sku":"WJ12-XL-Purple","name":"Olivia 1/4 Zip Light Jacket-XL-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

    Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

    \n

    • Loose fit.
    • Reflectivity.
    • Flat seams.
    • Machine wash/dry.

    ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"olivia-14-zip-light-jacket-xl-purple-1400","links":{},"stock":{"item_id":1400,"product_id":1400,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xl-purple-1400.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1381","_score":1,"_source":{"id":1381,"sku":"WJ06-L-Purple","name":"Juno Jacket-L-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

    On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

    \n

    • Adjustable hood.
    • Fleece-lined, zippered hand pockets.
    • Thumbhole cuffs.
    • Full zip.
    • Mock-neck collar.
    • Machine wash/dry.

    ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juno-jacket-l-purple-1381","links":{},"stock":{"item_id":1381,"product_id":1381,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-l-purple-1381.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1397","_score":1,"_source":{"id":1397,"sku":"WJ12-L-Purple","name":"Olivia 1/4 Zip Light Jacket-L-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

    Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

    \n

    • Loose fit.
    • Reflectivity.
    • Flat seams.
    • Machine wash/dry.

    ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"olivia-14-zip-light-jacket-l-purple-1397","links":{},"stock":{"item_id":1397,"product_id":1397,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-l-purple-1397.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1392","_score":1,"_source":{"id":1392,"sku":"WJ12-M-Black","name":"Olivia 1/4 Zip Light Jacket-M-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

    Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

    \n

    • Loose fit.
    • Reflectivity.
    • Flat seams.
    • Machine wash/dry.

    ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"olivia-14-zip-light-jacket-m-black-1392","links":{},"stock":{"item_id":1392,"product_id":1392,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-m-black-1392.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1388","_score":1,"_source":{"id":1388,"sku":"WJ12-XS-Purple","name":"Olivia 1/4 Zip Light Jacket-XS-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

    Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

    \n

    • Loose fit.
    • Reflectivity.
    • Flat seams.
    • Machine wash/dry.

    ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"olivia-14-zip-light-jacket-xs-purple-1388","links":{},"stock":{"item_id":1388,"product_id":1388,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xs-purple-1388.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1313","_score":1,"_source":{"id":1313,"sku":"WJ08-M-Orange","name":"Adrienne Trek Jacket-M-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

    \n

    • gray 1/4 zip pullover.
    • Comfortable, relaxed fit.
    • Front zip for venting.
    • Spacious, kangaroo pockets.
    • 27\" body length.
    • 95% Organic Cotton / 5% Spandex.

    ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"adrienne-trek-jacket-m-orange-1313","links":{},"stock":{"item_id":1313,"product_id":1313,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-m-orange-1313.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1309","_score":1,"_source":{"id":1309,"sku":"WJ08-S-Gray","name":"Adrienne Trek Jacket-S-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

    \n

    • gray 1/4 zip pullover.
    • Comfortable, relaxed fit.
    • Front zip for venting.
    • Spacious, kangaroo pockets.
    • 27\" body length.
    • 95% Organic Cotton / 5% Spandex.

    ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"adrienne-trek-jacket-s-gray-1309","links":{},"stock":{"item_id":1309,"product_id":1309,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-s-gray-1309.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1320","_score":1,"_source":{"id":1320,"sku":"WJ08-XL-Purple","name":"Adrienne Trek Jacket-XL-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

    \n

    • gray 1/4 zip pullover.
    • Comfortable, relaxed fit.
    • Front zip for venting.
    • Spacious, kangaroo pockets.
    • 27\" body length.
    • 95% Organic Cotton / 5% Spandex.

    ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"adrienne-trek-jacket-xl-purple-1320","links":{},"stock":{"item_id":1320,"product_id":1320,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xl-purple-1320.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1316","_score":1,"_source":{"id":1316,"sku":"WJ08-L-Orange","name":"Adrienne Trek Jacket-L-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

    \n

    • gray 1/4 zip pullover.
    • Comfortable, relaxed fit.
    • Front zip for venting.
    • Spacious, kangaroo pockets.
    • 27\" body length.
    • 95% Organic Cotton / 5% Spandex.

    ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"adrienne-trek-jacket-l-orange-1316","links":{},"stock":{"item_id":1316,"product_id":1316,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-l-orange-1316.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1314","_score":1,"_source":{"id":1314,"sku":"WJ08-M-Purple","name":"Adrienne Trek Jacket-M-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

    \n

    • gray 1/4 zip pullover.
    • Comfortable, relaxed fit.
    • Front zip for venting.
    • Spacious, kangaroo pockets.
    • 27\" body length.
    • 95% Organic Cotton / 5% Spandex.

    ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"adrienne-trek-jacket-m-purple-1314","links":{},"stock":{"item_id":1314,"product_id":1314,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-m-purple-1314.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1267","_score":1,"_source":{"id":1267,"sku":"WJ04-L-Orange","name":"Ingrid Running Jacket-L-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

    The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
    • Slim fit.
    • Moisture-wicking fabric.
    • Two side pockets.
    • Zippered pocket at back waist.
    • Machine wash/dry.
    • Ivory specked full zip

    ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ingrid-running-jacket-l-orange-1267","links":{},"stock":{"item_id":1267,"product_id":1267,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-l-orange-1267.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1262","_score":1,"_source":{"id":1262,"sku":"WJ04-S-Red","name":"Ingrid Running Jacket-S-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

    The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
    • Slim fit.
    • Moisture-wicking fabric.
    • Two side pockets.
    • Zippered pocket at back waist.
    • Machine wash/dry.
    • Ivory specked full zip

    ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ingrid-running-jacket-s-red-1262","links":{},"stock":{"item_id":1262,"product_id":1262,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-s-red-1262.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1254","_score":1,"_source":{"id":1254,"sku":"WJ03-XL-Blue","name":"Augusta Pullover Jacket-XL-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

    \n

    • Pink half-zip pullover.
    • Front pouch pockets.
    • Fold-down collar.

    ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"augusta-pullover-jacket-xl-blue-1254","links":{},"stock":{"item_id":1254,"product_id":1254,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xl-blue-1254.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1251","_score":1,"_source":{"id":1251,"sku":"WJ03-L-Blue","name":"Augusta Pullover Jacket-L-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

    \n

    • Pink half-zip pullover.
    • Front pouch pockets.
    • Fold-down collar.

    ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"augusta-pullover-jacket-l-blue-1251","links":{},"stock":{"item_id":1251,"product_id":1251,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-l-blue-1251.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1255","_score":1,"_source":{"id":1255,"sku":"WJ03-XL-Orange","name":"Augusta Pullover Jacket-XL-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

    \n

    • Pink half-zip pullover.
    • Front pouch pockets.
    • Fold-down collar.

    ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"augusta-pullover-jacket-xl-orange-1255","links":{},"stock":{"item_id":1255,"product_id":1255,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xl-orange-1255.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1274","_score":1,"_source":{"id":1274,"sku":"WJ05-XS-Brown","name":"Riona Full Zip Jacket-XS-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

    \n

    • Brown heather full zip rouched jacket.
    • Side hand pockets for extra storage.
    • High collar.
    • Thick cuffs for extra coverage.
    • Durable, shape retention material to longer wear.

    ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xs-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"riona-full-zip-jacket-xs-brown-1274","links":{},"stock":{"item_id":1274,"product_id":1274,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xs-brown-1274.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1275","_score":1,"_source":{"id":1275,"sku":"WJ05-XS-Green","name":"Riona Full Zip Jacket-XS-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

    \n

    • Brown heather full zip rouched jacket.
    • Side hand pockets for extra storage.
    • High collar.
    • Thick cuffs for extra coverage.
    • Durable, shape retention material to longer wear.

    ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"riona-full-zip-jacket-xs-green-1275","links":{},"stock":{"item_id":1275,"product_id":1275,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xs-green-1275.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1283","_score":1,"_source":{"id":1283,"sku":"WJ05-L-Brown","name":"Riona Full Zip Jacket-L-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

    \n

    • Brown heather full zip rouched jacket.
    • Side hand pockets for extra storage.
    • High collar.
    • Thick cuffs for extra coverage.
    • Durable, shape retention material to longer wear.

    ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-l-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"riona-full-zip-jacket-l-brown-1283","links":{},"stock":{"item_id":1283,"product_id":1283,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-l-brown-1283.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1230","_score":1,"_source":{"id":1230,"sku":"WJ02-S-Blue","name":"Josie Yoga Jacket-S-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

    When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

    \n

    • Slate rouched neck pullover.
    • Moisture-wicking fabric.
    • Hidden zipper.
    • Mesh armpit venting.
    • Dropped rear hem.

    ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"josie-yoga-jacket-s-blue-1230","links":{},"stock":{"item_id":1230,"product_id":1230,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-s-blue-1230.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1210","_score":1,"_source":{"id":1210,"sku":"WH12-L-Green","name":"Circe Hooded Ice Fleece-L-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

    Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

    \n

    Full-zip front.
    Three-panel hood.
    Flatlock seams throughout.
    Welt hand pockets.
    Machine wash/dry.

    ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"circe-hooded-ice-fleece-l-green-1210","links":{},"stock":{"item_id":1210,"product_id":1210,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-l-green-1210.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1231","_score":1,"_source":{"id":1231,"sku":"WJ02-S-Gray","name":"Josie Yoga Jacket-S-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

    When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

    \n

    • Slate rouched neck pullover.
    • Moisture-wicking fabric.
    • Hidden zipper.
    • Mesh armpit venting.
    • Dropped rear hem.

    ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"josie-yoga-jacket-s-gray-1231","links":{},"stock":{"item_id":1231,"product_id":1231,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-s-gray-1231.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1249","_score":1,"_source":{"id":1249,"sku":"WJ03-M-Orange","name":"Augusta Pullover Jacket-M-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

    \n

    • Pink half-zip pullover.
    • Front pouch pockets.
    • Fold-down collar.

    ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"augusta-pullover-jacket-m-orange-1249","links":{},"stock":{"item_id":1249,"product_id":1249,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-m-orange-1249.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1246","_score":1,"_source":{"id":1246,"sku":"WJ03-S-Orange","name":"Augusta Pullover Jacket-S-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

    \n

    • Pink half-zip pullover.
    • Front pouch pockets.
    • Fold-down collar.

    ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"augusta-pullover-jacket-s-orange-1246","links":{},"stock":{"item_id":1246,"product_id":1246,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-s-orange-1246.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1353","_score":1,"_source":{"id":1353,"sku":"WJ10","name":"Nadia Elements Shell","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":69,"description":"

    Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

    \n

    • Zippered front.
    • Zippered side pockets.
    • Drawstring-adjustable waist and hood.
    • Machine wash/line dry.
    • Light blue 1/4 zip pullover.

    ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"nadia-elements-shell","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38,156],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_general":[117,118,123,124,126,129],"pattern":"197","climate":[204,206,207,208,210],"slug":"nadia-elements-shell-1353","links":{},"stock":{"item_id":1353,"product_id":1353,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ10-XS-Black","id":1338,"status":1,"name":"Nadia Elements Shell-XS-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"167","color":"49","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","url_key":"nadia-elements-shell-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WJ10-XS-Orange","id":1339,"status":1,"name":"Nadia Elements Shell-XS-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"167","color":"56","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","url_key":"nadia-elements-shell-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ10-XS-Yellow","id":1340,"status":1,"name":"Nadia Elements Shell-XS-Yellow","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"167","color":"60","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","url_key":"nadia-elements-shell-xs-yellow","msrp_display_actual_price_type":"0"},{"sku":"WJ10-S-Black","id":1341,"status":1,"name":"Nadia Elements Shell-S-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"168","color":"49","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","url_key":"nadia-elements-shell-s-black","msrp_display_actual_price_type":"0"},{"sku":"WJ10-S-Orange","id":1342,"status":1,"name":"Nadia Elements Shell-S-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"168","color":"56","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","url_key":"nadia-elements-shell-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ10-S-Yellow","id":1343,"status":1,"name":"Nadia Elements Shell-S-Yellow","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"168","color":"60","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","url_key":"nadia-elements-shell-s-yellow","msrp_display_actual_price_type":"0"},{"sku":"WJ10-M-Black","id":1344,"status":1,"name":"Nadia Elements Shell-M-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"169","color":"49","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","url_key":"nadia-elements-shell-m-black","msrp_display_actual_price_type":"0"},{"sku":"WJ10-M-Orange","id":1345,"status":1,"name":"Nadia Elements Shell-M-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"169","color":"56","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","url_key":"nadia-elements-shell-m-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ10-M-Yellow","id":1346,"status":1,"name":"Nadia Elements Shell-M-Yellow","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"169","color":"60","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","url_key":"nadia-elements-shell-m-yellow","msrp_display_actual_price_type":"0"},{"sku":"WJ10-L-Black","id":1347,"status":1,"name":"Nadia Elements Shell-L-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"170","color":"49","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","url_key":"nadia-elements-shell-l-black","msrp_display_actual_price_type":"0"},{"sku":"WJ10-L-Orange","id":1348,"status":1,"name":"Nadia Elements Shell-L-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"170","color":"56","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","url_key":"nadia-elements-shell-l-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ10-L-Yellow","id":1349,"status":1,"name":"Nadia Elements Shell-L-Yellow","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"170","color":"60","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","url_key":"nadia-elements-shell-l-yellow","msrp_display_actual_price_type":"0"},{"sku":"WJ10-XL-Black","id":1350,"status":1,"name":"Nadia Elements Shell-XL-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"171","color":"49","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","url_key":"nadia-elements-shell-xl-black","msrp_display_actual_price_type":"0"},{"sku":"WJ10-XL-Orange","id":1351,"status":1,"name":"Nadia Elements Shell-XL-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"171","color":"56","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","url_key":"nadia-elements-shell-xl-orange","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ10-XL-Yellow","id":1352,"status":1,"name":"Nadia Elements Shell-XL-Yellow","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"171","color":"60","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","url_key":"nadia-elements-shell-xl-yellow","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001}],"configurable_options":[{"id":187,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1353,"attribute_code":"color"},{"id":186,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1353,"attribute_code":"size"}],"color_options":[49,56,60],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-1353.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1369","_score":1,"_source":{"id":1369,"sku":"WJ11","name":"Neve Studio Dance Jacket","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":69,"description":"

    If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

    \n

    • Bright blue 1/4 zip pullover.
    • CoolTech™ liner is sweat-wicking.
    • Sleeve thumbholes.
    • Zipper garage to protect your chin.
    • Stretchy collar drawcords.

    ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"neve-studio-dance-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,36,37,156],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":[118,137,121,120,125,128,130],"pattern":"197","climate":[205,206,208],"slug":"neve-studio-dance-jacket-1369","links":{},"stock":{"item_id":1369,"product_id":1369,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ11-XS-Black","id":1354,"status":1,"name":"Neve Studio Dance Jacket-XS-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"167","color":"49","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","url_key":"neve-studio-dance-jacket-xs-black","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-XS-Blue","id":1355,"status":1,"name":"Neve Studio Dance Jacket-XS-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"167","color":"50","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","url_key":"neve-studio-dance-jacket-xs-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-XS-Orange","id":1356,"status":1,"name":"Neve Studio Dance Jacket-XS-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"167","color":"56","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","url_key":"neve-studio-dance-jacket-xs-orange","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-S-Black","id":1357,"status":1,"name":"Neve Studio Dance Jacket-S-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"168","color":"49","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","url_key":"neve-studio-dance-jacket-s-black","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-S-Blue","id":1358,"status":1,"name":"Neve Studio Dance Jacket-S-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"168","color":"50","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","url_key":"neve-studio-dance-jacket-s-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-S-Orange","id":1359,"status":1,"name":"Neve Studio Dance Jacket-S-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"168","color":"56","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","url_key":"neve-studio-dance-jacket-s-orange","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-M-Black","id":1360,"status":1,"name":"Neve Studio Dance Jacket-M-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"169","color":"49","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","url_key":"neve-studio-dance-jacket-m-black","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-M-Blue","id":1361,"status":1,"name":"Neve Studio Dance Jacket-M-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"169","color":"50","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","url_key":"neve-studio-dance-jacket-m-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-M-Orange","id":1362,"status":1,"name":"Neve Studio Dance Jacket-M-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"169","color":"56","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","url_key":"neve-studio-dance-jacket-m-orange","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-L-Black","id":1363,"status":1,"name":"Neve Studio Dance Jacket-L-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"170","color":"49","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","url_key":"neve-studio-dance-jacket-l-black","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-L-Blue","id":1364,"status":1,"name":"Neve Studio Dance Jacket-L-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"170","color":"50","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","url_key":"neve-studio-dance-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-L-Orange","id":1365,"status":1,"name":"Neve Studio Dance Jacket-L-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"170","color":"56","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","url_key":"neve-studio-dance-jacket-l-orange","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-XL-Black","id":1366,"status":1,"name":"Neve Studio Dance Jacket-XL-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"171","color":"49","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","url_key":"neve-studio-dance-jacket-xl-black","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-XL-Blue","id":1367,"status":1,"name":"Neve Studio Dance Jacket-XL-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"171","color":"50","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","url_key":"neve-studio-dance-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-XL-Orange","id":1368,"status":1,"name":"Neve Studio Dance Jacket-XL-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"171","color":"56","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","url_key":"neve-studio-dance-jacket-xl-orange","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001}],"configurable_options":[{"id":189,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":1369,"attribute_code":"color"},{"id":188,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1369,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-1369.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1385","_score":1,"_source":{"id":1385,"sku":"WJ06","name":"Juno Jacket","attribute_set_id":9,"price":77,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":77,"description":"

    On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

    \n

    • Adjustable hood.
    • Fleece-lined, zippered hand pockets.
    • Thumbhole cuffs.
    • Full zip.
    • Mock-neck collar.
    • Machine wash/dry.

    ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"juno-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,145],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[117,118,122,124,129,130],"pattern":"197","climate":[203,204,208,210,211],"slug":"juno-jacket-1385","links":{},"stock":{"item_id":1385,"product_id":1385,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ06-XS-Blue","id":1370,"status":1,"name":"Juno Jacket-XS-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"167","color":"50","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","url_key":"juno-jacket-xs-blue","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-XS-Green","id":1371,"status":1,"name":"Juno Jacket-XS-Green","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"167","color":"53","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","url_key":"juno-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-XS-Purple","id":1372,"status":1,"name":"Juno Jacket-XS-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"167","color":"57","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","url_key":"juno-jacket-xs-purple","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-S-Blue","id":1373,"status":1,"name":"Juno Jacket-S-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"168","color":"50","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","url_key":"juno-jacket-s-blue","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-S-Green","id":1374,"status":1,"name":"Juno Jacket-S-Green","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"168","color":"53","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","url_key":"juno-jacket-s-green","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-S-Purple","id":1375,"status":1,"name":"Juno Jacket-S-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"168","color":"57","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","url_key":"juno-jacket-s-purple","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-M-Blue","id":1376,"status":1,"name":"Juno Jacket-M-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"169","color":"50","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","url_key":"juno-jacket-m-blue","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-M-Green","id":1377,"status":1,"name":"Juno Jacket-M-Green","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"169","color":"53","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","url_key":"juno-jacket-m-green","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-M-Purple","id":1378,"status":1,"name":"Juno Jacket-M-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"169","color":"57","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","url_key":"juno-jacket-m-purple","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-L-Blue","id":1379,"status":1,"name":"Juno Jacket-L-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"170","color":"50","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","url_key":"juno-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-L-Green","id":1380,"status":1,"name":"Juno Jacket-L-Green","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"170","color":"53","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","url_key":"juno-jacket-l-green","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-L-Purple","id":1381,"status":1,"name":"Juno Jacket-L-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"170","color":"57","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","url_key":"juno-jacket-l-purple","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-XL-Blue","id":1382,"status":1,"name":"Juno Jacket-XL-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"171","color":"50","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","url_key":"juno-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-XL-Green","id":1383,"status":1,"name":"Juno Jacket-XL-Green","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"171","color":"53","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","url_key":"juno-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-XL-Purple","id":1384,"status":1,"name":"Juno Jacket-XL-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"171","color":"57","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","url_key":"juno-jacket-xl-purple","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001}],"configurable_options":[{"id":191,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"}],"product_id":1385,"attribute_code":"color"},{"id":190,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1385,"attribute_code":"size"}],"color_options":[50,53,57],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-1385.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1414","_score":1,"_source":{"id":1414,"sku":"WS02-XL-Blue","name":"Gabrielle Micro Sleeve Top-XL-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

    \n

    • Lime green v-neck tee.
    • Slimming, flattering fit.
    • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
    • Longer curved hem provides additional coverage.
    • 55% Hemp / 45% Organic Cotton.

    ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gabrielle-micro-sleeve-top-xl-blue-1414","links":{},"stock":{"item_id":1414,"product_id":1414,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xl-blue-1414.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1403","_score":1,"_source":{"id":1403,"sku":"WS02-XS-Green","name":"Gabrielle Micro Sleeve Top-XS-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

    \n

    • Lime green v-neck tee.
    • Slimming, flattering fit.
    • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
    • Longer curved hem provides additional coverage.
    • 55% Hemp / 45% Organic Cotton.

    ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gabrielle-micro-sleeve-top-xs-green-1403","links":{},"stock":{"item_id":1403,"product_id":1403,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xs-green-1403.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1419","_score":1,"_source":{"id":1419,"sku":"WS03-XS-Green","name":"Iris Workout Top-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

    \n

    • Pink heather rouched v-neck.
    • Scoop neckline.
    • Angled flat seams.
    • Moisture wicking.
    • Body skimming.
    • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

    ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"iris-workout-top-xs-green-1419","links":{},"stock":{"item_id":1419,"product_id":1419,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xs-green-1419.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1435","_score":1,"_source":{"id":1435,"sku":"WS04-XS-Green","name":"Layla Tee-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

    \n

    • Teal tee.
    • Long back hem.
    • Dropped shoulders.

    ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"layla-tee-xs-green-1435","links":{},"stock":{"item_id":1435,"product_id":1435,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xs-green-1435.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1422","_score":1,"_source":{"id":1422,"sku":"WS03-S-Green","name":"Iris Workout Top-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

    \n

    • Pink heather rouched v-neck.
    • Scoop neckline.
    • Angled flat seams.
    • Moisture wicking.
    • Body skimming.
    • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

    ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"iris-workout-top-s-green-1422","links":{},"stock":{"item_id":1422,"product_id":1422,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-s-green-1422.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1478","_score":1,"_source":{"id":1478,"sku":"WS07-XL-Black","name":"Juliana Short-Sleeve Tee-XL-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

    \n

    • Black scoop neck tee.
    • Side rouching.
    • Relaxed fit.

    ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juliana-short-sleeve-tee-xl-black-1478","links":{},"stock":{"item_id":1478,"product_id":1478,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xl-black-1478.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1494","_score":1,"_source":{"id":1494,"sku":"WS08-XL-Black","name":"Minerva LumaTech™ V-Tee-XL-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

    \n

    • Navy blue heather soft v-neck tee.
    • Flatlock seams for chafe-free comfort.
    • Relaxed cut.
    • Ultra-lightweight fabric.
    • Machine wash/dry.

    ","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"minerva-lumatech-and-trade-v-tee-xl-black-1494","links":{},"stock":{"item_id":1494,"product_id":1494,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xl-black-1494.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1480","_score":1,"_source":{"id":1480,"sku":"WS07-XL-Yellow","name":"Juliana Short-Sleeve Tee-XL-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

    \n

    • Black scoop neck tee.
    • Side rouching.
    • Relaxed fit.

    ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juliana-short-sleeve-tee-xl-yellow-1480","links":{},"stock":{"item_id":1480,"product_id":1480,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xl-yellow-1480.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1444","_score":1,"_source":{"id":1444,"sku":"WS04-L-Green","name":"Layla Tee-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

    \n

    • Teal tee.
    • Long back hem.
    • Dropped shoulders.

    ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"layla-tee-l-green-1444","links":{},"stock":{"item_id":1444,"product_id":1444,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-l-green-1444.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1432","_score":1,"_source":{"id":1432,"sku":"WS03-XL-Red","name":"Iris Workout Top-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

    \n

    • Pink heather rouched v-neck.
    • Scoop neckline.
    • Angled flat seams.
    • Moisture wicking.
    • Body skimming.
    • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

    ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"iris-workout-top-xl-red-1432","links":{},"stock":{"item_id":1432,"product_id":1432,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xl-red-1432.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1448","_score":1,"_source":{"id":1448,"sku":"WS04-XL-Red","name":"Layla Tee-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

    \n

    • Teal tee.
    • Long back hem.
    • Dropped shoulders.

    ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"layla-tee-xl-red-1448","links":{},"stock":{"item_id":1448,"product_id":1448,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xl-red-1448.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1498","_score":1,"_source":{"id":1498,"sku":"WS09-XS-Blue","name":"Tiffany Fitness Tee-XS-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

    You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

    \n

    • Teal soft scoop neck tee.
    • Contrast stitching pattern.
    • Machine wash/dry.

    ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tiffany-fitness-tee-xs-blue-1498","links":{},"stock":{"item_id":1498,"product_id":1498,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-03-08 08:34:51","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xs-blue-1498.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1463","_score":1,"_source":{"id":1463,"sku":"WS06-XL-Purple","name":"Elisa EverCool™ Tee-XL-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

    \n

    • Purple heather v-neck tee.
    • Short-Sleeves.
    • Luma EverCool™ fabric.
    • Machine wash/line dry.

    ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"elisa-evercool-and-trade-tee-xl-purple-1463","links":{},"stock":{"item_id":1463,"product_id":1463,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xl-purple-1463.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1451","_score":1,"_source":{"id":1451,"sku":"WS06-XS-Purple","name":"Elisa EverCool™ Tee-XS-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

    \n

    • Purple heather v-neck tee.
    • Short-Sleeves.
    • Luma EverCool™ fabric.
    • Machine wash/line dry.

    ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"elisa-evercool-and-trade-tee-xs-purple-1451","links":{},"stock":{"item_id":1451,"product_id":1451,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xs-purple-1451.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1455","_score":1,"_source":{"id":1455,"sku":"WS06-S-Red","name":"Elisa EverCool™ Tee-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

    \n

    • Purple heather v-neck tee.
    • Short-Sleeves.
    • Luma EverCool™ fabric.
    • Machine wash/line dry.

    ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"elisa-evercool-and-trade-tee-s-red-1455","links":{},"stock":{"item_id":1455,"product_id":1455,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-s-red-1455.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1462","_score":1,"_source":{"id":1462,"sku":"WS06-XL-Gray","name":"Elisa EverCool™ Tee-XL-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

    \n

    • Purple heather v-neck tee.
    • Short-Sleeves.
    • Luma EverCool™ fabric.
    • Machine wash/line dry.

    ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"elisa-evercool-and-trade-tee-xl-gray-1462","links":{},"stock":{"item_id":1462,"product_id":1462,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xl-gray-1462.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1484","_score":1,"_source":{"id":1484,"sku":"WS08-XS-Red","name":"Minerva LumaTech™ V-Tee-XS-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

    \n

    • Navy blue heather soft v-neck tee.
    • Flatlock seams for chafe-free comfort.
    • Relaxed cut.
    • Ultra-lightweight fabric.
    • Machine wash/dry.

    ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"minerva-lumatech-and-trade-v-tee-xs-red-1484","links":{},"stock":{"item_id":1484,"product_id":1484,"stock_id":1,"qty":79,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xs-red-1484.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1479","_score":1,"_source":{"id":1479,"sku":"WS07-XL-White","name":"Juliana Short-Sleeve Tee-XL-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

    \n

    • Black scoop neck tee.
    • Side rouching.
    • Relaxed fit.

    ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juliana-short-sleeve-tee-xl-white-1479","links":{},"stock":{"item_id":1479,"product_id":1479,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xl-white-1479.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1409","_score":1,"_source":{"id":1409,"sku":"WS02-M-Green","name":"Gabrielle Micro Sleeve Top-M-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

    \n

    • Lime green v-neck tee.
    • Slimming, flattering fit.
    • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
    • Longer curved hem provides additional coverage.
    • 55% Hemp / 45% Organic Cotton.

    ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gabrielle-micro-sleeve-top-m-green-1409","links":{},"stock":{"item_id":1409,"product_id":1409,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-m-green-1409.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1430","_score":1,"_source":{"id":1430,"sku":"WS03-XL-Blue","name":"Iris Workout Top-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

    \n

    • Pink heather rouched v-neck.
    • Scoop neckline.
    • Angled flat seams.
    • Moisture wicking.
    • Body skimming.
    • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

    ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"iris-workout-top-xl-blue-1430","links":{},"stock":{"item_id":1430,"product_id":1430,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xl-blue-1430.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1450","_score":1,"_source":{"id":1450,"sku":"WS06-XS-Gray","name":"Elisa EverCool™ Tee-XS-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

    When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

    \n

    • Purple heather v-neck tee.
    • Short-Sleeves.
    • Luma EverCool™ fabric.
    • Machine wash/line dry.

    ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"elisa-evercool-and-trade-tee-xs-gray-1450","links":{},"stock":{"item_id":1450,"product_id":1450,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-01-09 15:01:40","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xs-gray-1450.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1561","_score":1,"_source":{"id":1561,"sku":"WS12","name":"Radiant Tee","attribute_set_id":9,"price":22,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":22,"description":"

    So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

    \n

    • Salmon soft scoop neck tee.
    • Athletic, semi-form fit.
    • Flat seams prevent chafing.
    • 67% Organic Cotton / 28% Hemp / 5% Spandex.

    ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"radiant-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[146,154,151],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"radiant-tee-1561","links":{},"stock":{"item_id":1561,"product_id":1561,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS12-XS-Blue","id":1546,"status":1,"name":"Radiant Tee-XS-Blue","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"50","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","url_key":"radiant-tee-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WS12-XS-Orange","id":1547,"status":1,"name":"Radiant Tee-XS-Orange","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"56","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","url_key":"radiant-tee-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WS12-XS-Purple","id":1548,"status":1,"name":"Radiant Tee-XS-Purple","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"57","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","url_key":"radiant-tee-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WS12-S-Blue","id":1549,"status":1,"name":"Radiant Tee-S-Blue","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"50","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","url_key":"radiant-tee-s-blue","msrp_display_actual_price_type":"0"},{"sku":"WS12-S-Orange","id":1550,"status":1,"name":"Radiant Tee-S-Orange","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"56","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","url_key":"radiant-tee-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WS12-S-Purple","id":1551,"status":1,"name":"Radiant Tee-S-Purple","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"57","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","url_key":"radiant-tee-s-purple","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"WS12-M-Blue","id":1552,"status":1,"name":"Radiant Tee-M-Blue","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"50","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","url_key":"radiant-tee-m-blue","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"WS12-M-Orange","id":1553,"status":1,"name":"Radiant Tee-M-Orange","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"56","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","url_key":"radiant-tee-m-orange","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"WS12-M-Purple","id":1554,"status":1,"name":"Radiant Tee-M-Purple","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"57","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","url_key":"radiant-tee-m-purple","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"WS12-L-Blue","id":1555,"status":1,"name":"Radiant Tee-L-Blue","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"50","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","url_key":"radiant-tee-l-blue","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"WS12-L-Orange","id":1556,"status":1,"name":"Radiant Tee-L-Orange","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"56","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","url_key":"radiant-tee-l-orange","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"WS12-L-Purple","id":1557,"status":1,"name":"Radiant Tee-L-Purple","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"57","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","url_key":"radiant-tee-l-purple","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"WS12-XL-Blue","id":1558,"status":1,"name":"Radiant Tee-XL-Blue","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"50","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","url_key":"radiant-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"WS12-XL-Orange","id":1559,"status":1,"name":"Radiant Tee-XL-Orange","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"56","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","url_key":"radiant-tee-xl-orange","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"WS12-XL-Purple","id":1560,"status":1,"name":"Radiant Tee-XL-Purple","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"57","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","url_key":"radiant-tee-xl-purple","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001}],"configurable_options":[{"id":213,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1561,"attribute_code":"color"},{"id":212,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1561,"attribute_code":"size"}],"color_options":[50,56,57],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-1561.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1501","_score":1,"_source":{"id":1501,"sku":"WS09-S-Blue","name":"Tiffany Fitness Tee-S-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

    \n

    • Teal soft scoop neck tee.
    • Contrast stitching pattern.
    • Machine wash/dry.

    ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tiffany-fitness-tee-s-blue-1501","links":{},"stock":{"item_id":1501,"product_id":1501,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-s-blue-1501.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1503","_score":1,"_source":{"id":1503,"sku":"WS09-S-White","name":"Tiffany Fitness Tee-S-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

    \n

    • Teal soft scoop neck tee.
    • Contrast stitching pattern.
    • Machine wash/dry.

    ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tiffany-fitness-tee-s-white-1503","links":{},"stock":{"item_id":1503,"product_id":1503,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-s-white-1503.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1502","_score":1,"_source":{"id":1502,"sku":"WS09-S-Red","name":"Tiffany Fitness Tee-S-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

    \n

    • Teal soft scoop neck tee.
    • Contrast stitching pattern.
    • Machine wash/dry.

    ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tiffany-fitness-tee-s-red-1502","links":{},"stock":{"item_id":1502,"product_id":1502,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-s-red-1502.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1526","_score":1,"_source":{"id":1526,"sku":"WS10-XL-Green","name":"Karissa V-Neck Tee-XL-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

    \n

    • Pink heather soft v-neck tee.
    • Luma signature micro sleeves.
    • Semi-fitted.
    • Machine wash/dry.

    ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"karissa-v-neck-tee-xl-green-1526","links":{},"stock":{"item_id":1526,"product_id":1526,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xl-green-1526.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1514","_score":1,"_source":{"id":1514,"sku":"WS10-XS-Green","name":"Karissa V-Neck Tee-XS-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

    The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

    \n

    • Pink heather soft v-neck tee.
    • Luma signature micro sleeves.
    • Semi-fitted.
    • Machine wash/dry.

    ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"karissa-v-neck-tee-xs-green-1514","links":{},"stock":{"item_id":1514,"product_id":1514,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-28 11:56:40","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xs-green-1514.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1517","_score":1,"_source":{"id":1517,"sku":"WS10-S-Green","name":"Karissa V-Neck Tee-S-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

    \n

    • Pink heather soft v-neck tee.
    • Luma signature micro sleeves.
    • Semi-fitted.
    • Machine wash/dry.

    ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"karissa-v-neck-tee-s-green-1517","links":{},"stock":{"item_id":1517,"product_id":1517,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-s-green-1517.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1509","_score":1,"_source":{"id":1509,"sku":"WS09-L-White","name":"Tiffany Fitness Tee-L-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

    \n

    • Teal soft scoop neck tee.
    • Contrast stitching pattern.
    • Machine wash/dry.

    ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tiffany-fitness-tee-l-white-1509","links":{},"stock":{"item_id":1509,"product_id":1509,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-l-white-1509.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1531","_score":1,"_source":{"id":1531,"sku":"WS11-XS-Orange","name":"Diva Gym Tee-XS-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

    \n

    • Bright yellow v-neck tee.
    • Moisture-wicking fabric.
    • Long-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"diva-gym-tee-xs-orange-1531","links":{},"stock":{"item_id":1531,"product_id":1531,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xs-orange-1531.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1523","_score":1,"_source":{"id":1523,"sku":"WS10-L-Green","name":"Karissa V-Neck Tee-L-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

    \n

    • Pink heather soft v-neck tee.
    • Luma signature micro sleeves.
    • Semi-fitted.
    • Machine wash/dry.

    ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"karissa-v-neck-tee-l-green-1523","links":{},"stock":{"item_id":1523,"product_id":1523,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-l-green-1523.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1542","_score":1,"_source":{"id":1542,"sku":"WS11-XL-Green","name":"Diva Gym Tee-XL-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

    \n

    • Bright yellow v-neck tee.
    • Moisture-wicking fabric.
    • Long-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"diva-gym-tee-xl-green-1542","links":{},"stock":{"item_id":1542,"product_id":1542,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xl-green-1542.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1535","_score":1,"_source":{"id":1535,"sku":"WS11-S-Yellow","name":"Diva Gym Tee-S-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

    \n

    • Bright yellow v-neck tee.
    • Moisture-wicking fabric.
    • Long-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"diva-gym-tee-s-yellow-1535","links":{},"stock":{"item_id":1535,"product_id":1535,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-s-yellow-1535.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1550","_score":1,"_source":{"id":1550,"sku":"WS12-S-Orange","name":"Radiant Tee-S-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

    So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

    \n

    • Salmon soft scoop neck tee.
    • Athletic, semi-form fit.
    • Flat seams prevent chafing.
    • 67% Organic Cotton / 28% Hemp / 5% Spandex.

    ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"radiant-tee-s-orange-1550","links":{},"stock":{"item_id":1550,"product_id":1550,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-s-orange-1550.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1544","_score":1,"_source":{"id":1544,"sku":"WS11-XL-Yellow","name":"Diva Gym Tee-XL-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

    \n

    • Bright yellow v-neck tee.
    • Moisture-wicking fabric.
    • Long-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"diva-gym-tee-xl-yellow-1544","links":{},"stock":{"item_id":1544,"product_id":1544,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xl-yellow-1544.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1559","_score":1,"_source":{"id":1559,"sku":"WS12-XL-Orange","name":"Radiant Tee-XL-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

    So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

    \n

    • Salmon soft scoop neck tee.
    • Athletic, semi-form fit.
    • Flat seams prevent chafing.
    • 67% Organic Cotton / 28% Hemp / 5% Spandex.

    ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"radiant-tee-xl-orange-1559","links":{},"stock":{"item_id":1559,"product_id":1559,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xl-orange-1559.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1564","_score":1,"_source":{"id":1564,"sku":"WS01-XS-Yellow","name":"Gwyn Endurance Tee-XS-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

    \n

    • Short-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gwyn-endurance-tee-xs-yellow-1564","links":{},"stock":{"item_id":1564,"product_id":1564,"stock_id":1,"qty":67,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xs-yellow-1564.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1579","_score":1,"_source":{"id":1579,"sku":"WS05-XS-Orange","name":"Desiree Fitness Tee-XS-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

    \n

    • Short-Sleeves.
    • Performance fabric.
    • Machine wash/line dry.

    ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"desiree-fitness-tee-xs-orange-1579","links":{},"stock":{"item_id":1579,"product_id":1579,"stock_id":1,"qty":66,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xs-orange-1579.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1570","_score":1,"_source":{"id":1570,"sku":"WS01-M-Yellow","name":"Gwyn Endurance Tee-M-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

    \n

    • Short-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gwyn-endurance-tee-m-yellow-1570","links":{},"stock":{"item_id":1570,"product_id":1570,"stock_id":1,"qty":60,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-m-yellow-1570.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1588","_score":1,"_source":{"id":1588,"sku":"WS05-L-Orange","name":"Desiree Fitness Tee-L-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

    \n

    • Short-Sleeves.
    • Performance fabric.
    • Machine wash/line dry.

    ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"desiree-fitness-tee-l-orange-1588","links":{},"stock":{"item_id":1588,"product_id":1588,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-l-orange-1588.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1591","_score":1,"_source":{"id":1591,"sku":"WS05-XL-Orange","name":"Desiree Fitness Tee-XL-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

    \n

    • Short-Sleeves.
    • Performance fabric.
    • Machine wash/line dry.

    ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"desiree-fitness-tee-xl-orange-1591","links":{},"stock":{"item_id":1591,"product_id":1591,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xl-orange-1591.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1606","_score":1,"_source":{"id":1606,"sku":"WB01-XL-Black","name":"Electra Bra Top-XL-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

    \n

    • Gray rouched bra top.
    • Attractive back straps feature contrasting motif fabric.
    • Interior bra top is lined with breathable mesh.
    • Elastic underband for superior support.
    • Removable cup inserts.
    • Chafe-free flat lock seams provide added comfort.

    ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"electra-bra-top-xl-black-1606","links":{},"stock":{"item_id":1606,"product_id":1606,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xl-black-1606.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1612","_score":1,"_source":{"id":1612,"sku":"WB02-XS-Yellow","name":"Erica Evercool Sports Bra-XS-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

    \n

    • Honeycomb light blue bra top.
    • Elastic hem.
    • Reinforced binding.
    • Machine wash/dry.

    ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erica-evercool-sports-bra-xs-yellow-1612","links":{},"stock":{"item_id":1612,"product_id":1612,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xs-yellow-1612.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1620","_score":1,"_source":{"id":1620,"sku":"WB02-L-Orange","name":"Erica Evercool Sports Bra-L-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

    \n

    • Honeycomb light blue bra top.
    • Elastic hem.
    • Reinforced binding.
    • Machine wash/dry.

    ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erica-evercool-sports-bra-l-orange-1620","links":{},"stock":{"item_id":1620,"product_id":1620,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-l-orange-1620.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1614","_score":1,"_source":{"id":1614,"sku":"WB02-S-Orange","name":"Erica Evercool Sports Bra-S-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

    \n

    • Honeycomb light blue bra top.
    • Elastic hem.
    • Reinforced binding.
    • Machine wash/dry.

    ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erica-evercool-sports-bra-s-orange-1614","links":{},"stock":{"item_id":1614,"product_id":1614,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-s-orange-1614.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1607","_score":1,"_source":{"id":1607,"sku":"WB01-XL-Gray","name":"Electra Bra Top-XL-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

    \n

    • Gray rouched bra top.
    • Attractive back straps feature contrasting motif fabric.
    • Interior bra top is lined with breathable mesh.
    • Elastic underband for superior support.
    • Removable cup inserts.
    • Chafe-free flat lock seams provide added comfort.

    ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"electra-bra-top-xl-gray-1607","links":{},"stock":{"item_id":1607,"product_id":1607,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xl-gray-1607.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1594","_score":1,"_source":{"id":1594,"sku":"WB01-XS-Black","name":"Electra Bra Top-XS-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

    \n

    • Gray rouched bra top.
    • Attractive back straps feature contrasting motif fabric.
    • Interior bra top is lined with breathable mesh.
    • Elastic underband for superior support.
    • Removable cup inserts.
    • Chafe-free flat lock seams provide added comfort.

    ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"electra-bra-top-xs-black-1594","links":{},"stock":{"item_id":1594,"product_id":1594,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xs-black-1594.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1589","_score":1,"_source":{"id":1589,"sku":"WS05-L-Yellow","name":"Desiree Fitness Tee-L-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

    \n

    • Short-Sleeves.
    • Performance fabric.
    • Machine wash/line dry.

    ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"desiree-fitness-tee-l-yellow-1589","links":{},"stock":{"item_id":1589,"product_id":1589,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-l-yellow-1589.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1590","_score":1,"_source":{"id":1590,"sku":"WS05-XL-Black","name":"Desiree Fitness Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

    \n

    • Short-Sleeves.
    • Performance fabric.
    • Machine wash/line dry.

    ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"desiree-fitness-tee-xl-black-1590","links":{},"stock":{"item_id":1590,"product_id":1590,"stock_id":1,"qty":61,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xl-black-1590.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1592","_score":1,"_source":{"id":1592,"sku":"WS05-XL-Yellow","name":"Desiree Fitness Tee-XL-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

    \n

    • Short-Sleeves.
    • Performance fabric.
    • Machine wash/line dry.

    ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"desiree-fitness-tee-xl-yellow-1592","links":{},"stock":{"item_id":1592,"product_id":1592,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xl-yellow-1592.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1566","_score":1,"_source":{"id":1566,"sku":"WS01-S-Green","name":"Gwyn Endurance Tee-S-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

    \n

    • Short-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gwyn-endurance-tee-s-green-1566","links":{},"stock":{"item_id":1566,"product_id":1566,"stock_id":1,"qty":61,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-s-green-1566.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1536","_score":1,"_source":{"id":1536,"sku":"WS11-M-Green","name":"Diva Gym Tee-M-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

    \n

    • Bright yellow v-neck tee.
    • Moisture-wicking fabric.
    • Long-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"diva-gym-tee-m-green-1536","links":{},"stock":{"item_id":1536,"product_id":1536,"stock_id":1,"qty":20,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-m-green-1536.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1563","_score":1,"_source":{"id":1563,"sku":"WS01-XS-Green","name":"Gwyn Endurance Tee-XS-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

    \n

    • Short-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gwyn-endurance-tee-xs-green-1563","links":{},"stock":{"item_id":1563,"product_id":1563,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xs-green-1563.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1737","_score":1,"_source":{"id":1737,"sku":"WT04","name":"Nona Fitness Tank","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":39,"description":"

    It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

    \n

    • Blue/white striped mesh tank.
    • Relaxed fit.
    • Chafe-resistant trim around armholes and collar.
    • Machine wash/dry.

    ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"nona-fitness-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,151],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"199","climate":[205,209],"slug":"nona-fitness-tank-1737","links":{},"stock":{"item_id":1737,"product_id":1737,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT04-XS-Blue","id":1722,"status":1,"name":"Nona Fitness Tank-XS-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"167","color":"50","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","url_key":"nona-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-XS-Purple","id":1723,"status":1,"name":"Nona Fitness Tank-XS-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"167","color":"57","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","url_key":"nona-fitness-tank-xs-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-XS-Red","id":1724,"status":1,"name":"Nona Fitness Tank-XS-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"167","color":"58","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","url_key":"nona-fitness-tank-xs-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-S-Blue","id":1725,"status":1,"name":"Nona Fitness Tank-S-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"168","color":"50","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","url_key":"nona-fitness-tank-s-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-S-Purple","id":1726,"status":1,"name":"Nona Fitness Tank-S-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"168","color":"57","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","url_key":"nona-fitness-tank-s-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-S-Red","id":1727,"status":1,"name":"Nona Fitness Tank-S-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"168","color":"58","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","url_key":"nona-fitness-tank-s-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-M-Blue","id":1728,"status":1,"name":"Nona Fitness Tank-M-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"169","color":"50","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","url_key":"nona-fitness-tank-m-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-M-Purple","id":1729,"status":1,"name":"Nona Fitness Tank-M-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"169","color":"57","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","url_key":"nona-fitness-tank-m-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-M-Red","id":1730,"status":1,"name":"Nona Fitness Tank-M-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"169","color":"58","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","url_key":"nona-fitness-tank-m-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-L-Blue","id":1731,"status":1,"name":"Nona Fitness Tank-L-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"170","color":"50","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","url_key":"nona-fitness-tank-l-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-L-Purple","id":1732,"status":1,"name":"Nona Fitness Tank-L-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"170","color":"57","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","url_key":"nona-fitness-tank-l-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-L-Red","id":1733,"status":1,"name":"Nona Fitness Tank-L-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"170","color":"58","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","url_key":"nona-fitness-tank-l-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-XL-Blue","id":1734,"status":1,"name":"Nona Fitness Tank-XL-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"171","color":"50","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","url_key":"nona-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-XL-Purple","id":1735,"status":1,"name":"Nona Fitness Tank-XL-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"171","color":"57","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","url_key":"nona-fitness-tank-xl-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-XL-Red","id":1736,"status":1,"name":"Nona Fitness Tank-XL-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"171","color":"58","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","url_key":"nona-fitness-tank-xl-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001}],"configurable_options":[{"id":235,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1737,"attribute_code":"color"},{"id":234,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1737,"attribute_code":"size"}],"color_options":[50,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-1737.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1735","_score":1,"_source":{"id":1735,"sku":"WT04-XL-Purple","name":"Nona Fitness Tank-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

    \n

    • Blue/white striped mesh tank.
    • Relaxed fit.
    • Chafe-resistant trim around armholes and collar.
    • Machine wash/dry.

    ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nona-fitness-tank-xl-purple-1735","links":{},"stock":{"item_id":1735,"product_id":1735,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xl-purple-1735.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1734","_score":1,"_source":{"id":1734,"sku":"WT04-XL-Blue","name":"Nona Fitness Tank-XL-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

    \n

    • Blue/white striped mesh tank.
    • Relaxed fit.
    • Chafe-resistant trim around armholes and collar.
    • Machine wash/dry.

    ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nona-fitness-tank-xl-blue-1734","links":{},"stock":{"item_id":1734,"product_id":1734,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xl-blue-1734.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1724","_score":1,"_source":{"id":1724,"sku":"WT04-XS-Red","name":"Nona Fitness Tank-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

    \n

    • Blue/white striped mesh tank.
    • Relaxed fit.
    • Chafe-resistant trim around armholes and collar.
    • Machine wash/dry.

    ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nona-fitness-tank-xs-red-1724","links":{},"stock":{"item_id":1724,"product_id":1724,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xs-red-1724.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1728","_score":1,"_source":{"id":1728,"sku":"WT04-M-Blue","name":"Nona Fitness Tank-M-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

    \n

    • Blue/white striped mesh tank.
    • Relaxed fit.
    • Chafe-resistant trim around armholes and collar.
    • Machine wash/dry.

    ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nona-fitness-tank-m-blue-1728","links":{},"stock":{"item_id":1728,"product_id":1728,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-m-blue-1728.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1740","_score":1,"_source":{"id":1740,"sku":"WT05-XS-White","name":"Leah Yoga Top-XS-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

    \n

    • Blue heather rouched tank top.
    • Camisole tank top.
    • Banding and shirring details.
    • Body hugging fit.
    • Contrast topstitch.
    • Interior shelf bra with shapewear technology.
    • 65% Polyester 35% Cotton.

    ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"leah-yoga-top-xs-white-1740","links":{},"stock":{"item_id":1740,"product_id":1740,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xs-white-1740.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1743","_score":1,"_source":{"id":1743,"sku":"WT05-S-White","name":"Leah Yoga Top-S-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

    \n

    • Blue heather rouched tank top.
    • Camisole tank top.
    • Banding and shirring details.
    • Body hugging fit.
    • Contrast topstitch.
    • Interior shelf bra with shapewear technology.
    • 65% Polyester 35% Cotton.

    ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"leah-yoga-top-s-white-1743","links":{},"stock":{"item_id":1743,"product_id":1743,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-s-white-1743.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1719","_score":1,"_source":{"id":1719,"sku":"WT03-XL-Purple","name":"Nora Practice Tank-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

    \n

    • Pink stripped tank with side rouching.
    • Pre-shrunk.
    • Garment dyed.
    • 92% Organic Cotton/8% Lycra.

    ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nora-practice-tank-xl-purple-1719","links":{},"stock":{"item_id":1719,"product_id":1719,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xl-purple-1719.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1703","_score":1,"_source":{"id":1703,"sku":"WT02-XL-Orange","name":"Zoe Tank-XL-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

    \n

    • Salmon heather tank top.
    • 1\" elastic band on inner bra.
    • Mesh lining on shelf bra for support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoe-tank-xl-orange-1703","links":{},"stock":{"item_id":1703,"product_id":1703,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xl-orange-1703.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1725","_score":1,"_source":{"id":1725,"sku":"WT04-S-Blue","name":"Nona Fitness Tank-S-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

    \n

    • Blue/white striped mesh tank.
    • Relaxed fit.
    • Chafe-resistant trim around armholes and collar.
    • Machine wash/dry.

    ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nona-fitness-tank-s-blue-1725","links":{},"stock":{"item_id":1725,"product_id":1725,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-s-blue-1725.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1633","_score":1,"_source":{"id":1633,"sku":"WB03-M-Red","name":"Celeste Sports Bra-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

    \n

    • Mint bra top.
    • Seam-free interior molded cups
    • Odor control.
    • UV protection.
    • Machine wash/dry.

    ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"celeste-sports-bra-m-red-1633","links":{},"stock":{"item_id":1633,"product_id":1633,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-m-red-1633.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1635","_score":1,"_source":{"id":1635,"sku":"WB03-L-Green","name":"Celeste Sports Bra-L-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2019-04-18 09:54:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":9.99,"max_price":9.99,"max_regular_price":9.99,"minimal_regular_price":9.99,"special_price":"9.9900","minimal_price":9.99,"regular_price":39,"description":"

    Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

    \r\n

    • Mint bra top.
    • Seam-free interior molded cups
    • Odor control.
    • UV protection.
    • Machine wash/dry.

    ","special_from_date":"2019-04-18 00:00:00","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-l-green","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"0","size":"170","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"celeste-sports-bra-l-green-1635","links":{},"stock":{"item_id":1635,"product_id":1635,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":null,"vid":null},{"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-l-green-1635.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1664","_score":1,"_source":{"id":1664,"sku":"WB05-M-Black","name":"Lucia Cross-Fit Bra -M-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

    \n

    • Black/white bra top.
    • Criss-cross back design.
    • Machine wash/dry.

    ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lucia-cross-fit-bra-m-black-1664","links":{},"stock":{"item_id":1664,"product_id":1664,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-m-black-1664.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1678","_score":1,"_source":{"id":1678,"sku":"WT01-S-Blue","name":"Bella Tank-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

    \n

    • Navy blue tank top - cotton.
    • Feminine scoop neckline.
    • Power mesh lining in shelf bra for superior support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bella-tank-s-blue-1678","links":{},"stock":{"item_id":1678,"product_id":1678,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-s-blue-1678.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1696","_score":1,"_source":{"id":1696,"sku":"WT02-M-Green","name":"Zoe Tank-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

    \n

    • Salmon heather tank top.
    • 1\" elastic band on inner bra.
    • Mesh lining on shelf bra for support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoe-tank-m-green-1696","links":{},"stock":{"item_id":1696,"product_id":1696,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-m-green-1696.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1687","_score":1,"_source":{"id":1687,"sku":"WT01-XL-Blue","name":"Bella Tank-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

    \n

    • Navy blue tank top - cotton.
    • Feminine scoop neckline.
    • Power mesh lining in shelf bra for superior support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bella-tank-xl-blue-1687","links":{},"stock":{"item_id":1687,"product_id":1687,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xl-blue-1687.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1692","_score":1,"_source":{"id":1692,"sku":"WT02-XS-Yellow","name":"Zoe Tank-XS-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

    \n

    • Salmon heather tank top.
    • 1\" elastic band on inner bra.
    • Mesh lining on shelf bra for support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoe-tank-xs-yellow-1692","links":{},"stock":{"item_id":1692,"product_id":1692,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xs-yellow-1692.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1699","_score":1,"_source":{"id":1699,"sku":"WT02-L-Green","name":"Zoe Tank-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

    \n

    • Salmon heather tank top.
    • 1\" elastic band on inner bra.
    • Mesh lining on shelf bra for support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoe-tank-l-green-1699","links":{},"stock":{"item_id":1699,"product_id":1699,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-l-green-1699.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1648","_score":1,"_source":{"id":1648,"sku":"WB04-M-Blue","name":"Prima Compete Bra Top-M-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
    `
    • Colorblocked details.
    • Machine wash/line dry.

    ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"prima-compete-bra-top-m-blue-1648","links":{},"stock":{"item_id":1648,"product_id":1648,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-m-blue-1648.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1645","_score":1,"_source":{"id":1645,"sku":"WB04-S-Blue","name":"Prima Compete Bra Top-S-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
    `
    • Colorblocked details.
    • Machine wash/line dry.

    ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"prima-compete-bra-top-s-blue-1645","links":{},"stock":{"item_id":1645,"product_id":1645,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-s-blue-1645.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1647","_score":1,"_source":{"id":1647,"sku":"WB04-S-Yellow","name":"Prima Compete Bra Top-S-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
    `
    • Colorblocked details.
    • Machine wash/line dry.

    ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"prima-compete-bra-top-s-yellow-1647","links":{},"stock":{"item_id":1647,"product_id":1647,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-s-yellow-1647.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1852","_score":1,"_source":{"id":1852,"sku":"WP05","name":"Sahara Leggings","attribute_set_id":10,"price":75,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":75,"description":"

    Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

    \n

    • Pinstripe legging with rouched ankles.
    • Secret pocket at waistband.
    • Flat seams for comfort.
    • Shaped fit with low rise.
    • 4-way stretch, moisture-wicking material.

    ","image":"/w/p/wp05-gray_main.jpg","small_image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sahara-leggings","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[109,113,115],"pattern":"197","climate":[204,205,208],"slug":"sahara-leggings-1852","links":{},"stock":{"item_id":1852,"product_id":1852,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP05-28-Blue","id":1846,"status":1,"name":"Sahara Leggings-28-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"50","image":"/w/p/wp05-blue_main.jpg","small_image":"/w/p/wp05-blue_main.jpg","thumbnail":"/w/p/wp05-blue_main.jpg","url_key":"sahara-leggings-28-blue","msrp_display_actual_price_type":"0"},{"sku":"WP05-28-Gray","id":1847,"status":1,"name":"Sahara Leggings-28-Gray","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"52","image":"/w/p/wp05-gray_main.jpg","small_image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","url_key":"sahara-leggings-28-gray","msrp_display_actual_price_type":"0"},{"sku":"WP05-28-Red","id":1848,"status":1,"name":"Sahara Leggings-28-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"58","image":"/w/p/wp05-red_main.jpg","small_image":"/w/p/wp05-red_main.jpg","thumbnail":"/w/p/wp05-red_main.jpg","url_key":"sahara-leggings-28-red","msrp_display_actual_price_type":"0"},{"sku":"WP05-29-Blue","id":1849,"status":1,"name":"Sahara Leggings-29-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"50","image":"/w/p/wp05-blue_main.jpg","small_image":"/w/p/wp05-blue_main.jpg","thumbnail":"/w/p/wp05-blue_main.jpg","url_key":"sahara-leggings-29-blue","msrp_display_actual_price_type":"0"},{"sku":"WP05-29-Gray","id":1850,"status":1,"name":"Sahara Leggings-29-Gray","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"52","image":"/w/p/wp05-gray_main.jpg","small_image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","url_key":"sahara-leggings-29-gray","msrp_display_actual_price_type":"0"},{"sku":"WP05-29-Red","id":1851,"status":1,"name":"Sahara Leggings-29-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"58","image":"/w/p/wp05-red_main.jpg","small_image":"/w/p/wp05-red_main.jpg","thumbnail":"/w/p/wp05-red_main.jpg","url_key":"sahara-leggings-29-red","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001}],"configurable_options":[{"id":255,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"}],"product_id":1852,"attribute_code":"color"},{"id":254,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1852,"attribute_code":"size"}],"color_options":[50,52,58],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-1852.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1859","_score":1,"_source":{"id":1859,"sku":"WP06","name":"Diana Tights","attribute_set_id":10,"price":59,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":59,"description":"

    Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

    \n

    • Black legging with slate details.
    • Flat-lock, chafe-free side seams.
    • Vented gusset.
    • Secret interior pocket.
    • Sustainable and recycled fabric.

    ","image":"/w/p/wp06-black_main.jpg","small_image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"diana-tights","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[150,38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[107,109],"pattern":"197","climate":[202,204,205,206,208,209],"slug":"diana-tights-1859","links":{},"stock":{"item_id":1859,"product_id":1859,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_outfit.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP06-28-Black","id":1853,"status":1,"name":"Diana Tights-28-Black","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"49","image":"/w/p/wp06-black_main.jpg","small_image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","url_key":"diana-tights-28-black","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WP06-28-Blue","id":1854,"status":1,"name":"Diana Tights-28-Blue","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"50","image":"/w/p/wp06-blue_main.jpg","small_image":"/w/p/wp06-blue_main.jpg","thumbnail":"/w/p/wp06-blue_main.jpg","url_key":"diana-tights-28-blue","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WP06-28-Orange","id":1855,"status":1,"name":"Diana Tights-28-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"56","image":"/w/p/wp06-orange_main.jpg","small_image":"/w/p/wp06-orange_main.jpg","thumbnail":"/w/p/wp06-orange_main.jpg","url_key":"diana-tights-28-orange","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WP06-29-Black","id":1856,"status":1,"name":"Diana Tights-29-Black","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"49","image":"/w/p/wp06-black_main.jpg","small_image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","url_key":"diana-tights-29-black","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WP06-29-Blue","id":1857,"status":1,"name":"Diana Tights-29-Blue","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"50","image":"/w/p/wp06-blue_main.jpg","small_image":"/w/p/wp06-blue_main.jpg","thumbnail":"/w/p/wp06-blue_main.jpg","url_key":"diana-tights-29-blue","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WP06-29-Orange","id":1858,"status":1,"name":"Diana Tights-29-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"56","image":"/w/p/wp06-orange_main.jpg","small_image":"/w/p/wp06-orange_main.jpg","thumbnail":"/w/p/wp06-orange_main.jpg","url_key":"diana-tights-29-orange","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001}],"configurable_options":[{"id":257,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":1859,"attribute_code":"color"},{"id":256,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1859,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-1859.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1893","_score":1,"_source":{"id":1893,"sku":"WP11-29-Red","name":"Sylvia Capri-29-Red","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

    \n

    • Green striped capri.
    • Strategic side seam
    • Comfort gusset with lining.
    • Flat seaming.
    • Wide waistband.
    • Moisture wicking.

    ","image":"/w/p/wp11-red_main.jpg","small_image":"/w/p/wp11-red_main.jpg","thumbnail":"/w/p/wp11-red_main.jpg","color":"58","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sylvia-capri-29-red-1893","links":{},"stock":{"item_id":1893,"product_id":1893,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-29-red-1893.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1899","_score":1,"_source":{"id":1899,"sku":"WP12-29-Gray","name":"Deirdre Relaxed-Fit Capri-29-Gray","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

    Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

    \n

    • Heather gray capris with mint green waist & accents.
    • Comfortable, relaxed fit with high rise.
    • Moisture-wicking, 4-way stretch construction.
    • Lined with mesh for better support.
    • Hidden pocket at waistband.
    • Flatlock seams and lined gusset for comfort.

    ","image":"/w/p/wp12-gray_main.jpg","small_image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","color":"52","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"deirdre-relaxed-fit-capri-29-gray-1899","links":{},"stock":{"item_id":1899,"product_id":1899,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-29-gray-1899.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1898","_score":1,"_source":{"id":1898,"sku":"WP12-29-Blue","name":"Deirdre Relaxed-Fit Capri-29-Blue","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

    Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

    \n

    • Heather gray capris with mint green waist & accents.
    • Comfortable, relaxed fit with high rise.
    • Moisture-wicking, 4-way stretch construction.
    • Lined with mesh for better support.
    • Hidden pocket at waistband.
    • Flatlock seams and lined gusset for comfort.

    ","image":"/w/p/wp12-blue_main.jpg","small_image":"/w/p/wp12-blue_main.jpg","thumbnail":"/w/p/wp12-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"deirdre-relaxed-fit-capri-29-blue-1898","links":{},"stock":{"item_id":1898,"product_id":1898,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-29-blue-1898.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1769","_score":1,"_source":{"id":1769,"sku":"WT06","name":"Chloe Compete Tank","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:24","updated_at":"2018-08-22 10:34:49","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":39,"description":"

    You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

    \r\n

    • Royal blue tank top - nylon/spandex.
    • Flatlock stitching.
    • Moisture-wicking fabric.
    • Ergonomic seaming.
    • Machine wash/dry.

    ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"1","has_options":"1","url_key":"chloe-compete-tank","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":[36,37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"chloe-compete-tank-1769","links":{},"stock":{"item_id":1769,"product_id":1769,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"configurable_children":[{"sku":"WT06-XS-Blue","id":1754,"status":1,"name":"Chloe Compete Tank-XS-Blue - tier price","price":39,"tier_prices":[{"customer_group_id":1,"qty":1,"value":30,"extension_attributes":{"website_id":0}}],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"50","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","url_key":"chloe-compete-tank-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WT06-XS-Red","id":1755,"status":1,"name":"Chloe Compete Tank-XS-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"58","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","url_key":"chloe-compete-tank-xs-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-XS-Yellow","id":1756,"status":1,"name":"Chloe Compete Tank-XS-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"60","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","url_key":"chloe-compete-tank-xs-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-S-Blue","id":1757,"status":1,"name":"Chloe Compete Tank-S-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"50","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","url_key":"chloe-compete-tank-s-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-S-Red","id":1758,"status":1,"name":"Chloe Compete Tank-S-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"58","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","url_key":"chloe-compete-tank-s-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-S-Yellow","id":1759,"status":1,"name":"Chloe Compete Tank-S-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"60","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","url_key":"chloe-compete-tank-s-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-M-Blue","id":1760,"status":1,"name":"Chloe Compete Tank-M-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"50","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","url_key":"chloe-compete-tank-m-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-M-Red","id":1761,"status":1,"name":"Chloe Compete Tank-M-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"58","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","url_key":"chloe-compete-tank-m-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-M-Yellow","id":1762,"status":1,"name":"Chloe Compete Tank-M-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"60","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","url_key":"chloe-compete-tank-m-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-L-Blue","id":1763,"status":1,"name":"Chloe Compete Tank-L-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"50","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","url_key":"chloe-compete-tank-l-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-L-Red","id":1764,"status":1,"name":"Chloe Compete Tank-L-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"58","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","url_key":"chloe-compete-tank-l-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-L-Yellow","id":1765,"status":1,"name":"Chloe Compete Tank-L-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"60","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","url_key":"chloe-compete-tank-l-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-XL-Blue","id":1766,"status":1,"name":"Chloe Compete Tank-XL-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"50","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","url_key":"chloe-compete-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-XL-Red","id":1767,"status":1,"name":"Chloe Compete Tank-XL-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"58","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","url_key":"chloe-compete-tank-xl-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-XL-Yellow","id":1768,"status":1,"name":"Chloe Compete Tank-XL-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"60","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","url_key":"chloe-compete-tank-xl-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001}],"configurable_options":[{"id":300,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":1769,"attribute_code":"color"},{"id":301,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1769,"attribute_code":"size"}],"color_options":[50,58,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-1769.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1838","_score":1,"_source":{"id":1838,"sku":"WP03","name":"Ida Workout Parachute Pant","attribute_set_id":10,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":48,"description":"

    The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

    \n

    • Royal blue parachute pants.
    • Contrast stripe.
    • Relaxed fit.
    • Drawstring closure.
    • Machine wash/dry.

    ","image":"/w/p/wp03-blue_main.jpg","small_image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ida-workout-parachute-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,37,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[110,115],"pattern":"195","climate":[205,212,206,208,209],"slug":"ida-workout-parachute-pant-1838","links":{},"stock":{"item_id":1838,"product_id":1838,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP03-28-Black","id":1832,"status":1,"name":"Ida Workout Parachute Pant-28-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","8","2"],"size":"172","color":"49","image":"/w/p/wp03-black_main.jpg","small_image":"/w/p/wp03-black_main.jpg","thumbnail":"/w/p/wp03-black_main.jpg","url_key":"ida-workout-parachute-pant-28-black","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP03-28-Blue","id":1833,"status":1,"name":"Ida Workout Parachute Pant-28-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","8","2"],"size":"172","color":"50","image":"/w/p/wp03-blue_main.jpg","small_image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","url_key":"ida-workout-parachute-pant-28-blue","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP03-28-Purple","id":1834,"status":1,"name":"Ida Workout Parachute Pant-28-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","8","2"],"size":"172","color":"57","image":"/w/p/wp03-purple_main.jpg","small_image":"/w/p/wp03-purple_main.jpg","thumbnail":"/w/p/wp03-purple_main.jpg","url_key":"ida-workout-parachute-pant-28-purple","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP03-29-Black","id":1835,"status":1,"name":"Ida Workout Parachute Pant-29-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","8","2"],"size":"173","color":"49","image":"/w/p/wp03-black_main.jpg","small_image":"/w/p/wp03-black_main.jpg","thumbnail":"/w/p/wp03-black_main.jpg","url_key":"ida-workout-parachute-pant-29-black","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP03-29-Blue","id":1836,"status":1,"name":"Ida Workout Parachute Pant-29-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","8","2"],"size":"173","color":"50","image":"/w/p/wp03-blue_main.jpg","small_image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","url_key":"ida-workout-parachute-pant-29-blue","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP03-29-Purple","id":1837,"status":1,"name":"Ida Workout Parachute Pant-29-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","8","2"],"size":"173","color":"57","image":"/w/p/wp03-purple_main.jpg","small_image":"/w/p/wp03-purple_main.jpg","thumbnail":"/w/p/wp03-purple_main.jpg","url_key":"ida-workout-parachute-pant-29-purple","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001}],"configurable_options":[{"id":251,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":1838,"attribute_code":"color"},{"id":250,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1838,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-1838.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1760","_score":1,"_source":{"id":1760,"sku":"WT06-M-Blue","name":"Chloe Compete Tank-M-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

    \n

    • Royal blue tank top - nylon/spandex.
    • Flatlock stitching.
    • Moisture-wicking fabric.
    • Ergonomic seaming.
    • Machine wash/dry.

    ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chloe-compete-tank-m-blue-1760","links":{},"stock":{"item_id":1760,"product_id":1760,"stock_id":1,"qty":31,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-m-blue-1760.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1756","_score":1,"_source":{"id":1756,"sku":"WT06-XS-Yellow","name":"Chloe Compete Tank-XS-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

    \n

    • Royal blue tank top - nylon/spandex.
    • Flatlock stitching.
    • Moisture-wicking fabric.
    • Ergonomic seaming.
    • Machine wash/dry.

    ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chloe-compete-tank-xs-yellow-1756","links":{},"stock":{"item_id":1756,"product_id":1756,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xs-yellow-1756.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1754","_score":1,"_source":{"id":1754,"sku":"WT06-XS-Blue","name":"Chloe Compete Tank-XS-Blue - tier price","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2018-08-22 09:33:22","weight":1,"product_links":[],"tier_prices":[{"customer_group_id":1,"qty":1,"value":30,"extension_attributes":{"website_id":0}}],"custom_attributes":null,"description":"

    You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

    \r\n

    • Royal blue tank top - nylon/spandex.
    • Flatlock stitching.
    • Moisture-wicking fabric.
    • Ergonomic seaming.
    • Machine wash/dry.

    ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xs-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"167","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"chloe-compete-tank-xs-blue-tier-price-1754","links":{},"stock":{"item_id":1754,"product_id":1754,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-12-11 12:02:37","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xs-blue-tier-price-1754.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1762","_score":1,"_source":{"id":1762,"sku":"WT06-M-Yellow","name":"Chloe Compete Tank-M-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

    \n

    • Royal blue tank top - nylon/spandex.
    • Flatlock stitching.
    • Moisture-wicking fabric.
    • Ergonomic seaming.
    • Machine wash/dry.

    ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chloe-compete-tank-m-yellow-1762","links":{},"stock":{"item_id":1762,"product_id":1762,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-m-yellow-1762.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1781","_score":1,"_source":{"id":1781,"sku":"WT07-L-Yellow","name":"Maya Tunic-L-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

    \n

    • Mint green heather tunic-style tank.
    • Wrapped back with cut out detail.
    • Drawcord detail at end.
    • Abutted seams.

    ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"maya-tunic-l-yellow-1781","links":{},"stock":{"item_id":1781,"product_id":1781,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-l-yellow-1781.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1878","_score":1,"_source":{"id":1878,"sku":"WP09-29-Blue","name":"Carina Basic Capri-29-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

    \n

    • Black capris with rouching detail.
    • 93% cotton, 7% spandex.
    • Elasticized waistband.
    • Reinforced seams with exposed topstitching.
    • Soft, medium-weight jersey with added stretch.

    ","image":"/w/p/wp09-blue_main.jpg","small_image":"/w/p/wp09-blue_main.jpg","thumbnail":"/w/p/wp09-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"carina-basic-capri-29-blue-1878","links":{},"stock":{"item_id":1878,"product_id":1878,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-29-blue-1878.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1874","_score":1,"_source":{"id":1874,"sku":"WP09-28-Black","name":"Carina Basic Capri-28-Black","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

    \n

    • Black capris with rouching detail.
    • 93% cotton, 7% spandex.
    • Elasticized waistband.
    • Reinforced seams with exposed topstitching.
    • Soft, medium-weight jersey with added stretch.

    ","image":"/w/p/wp09-black_main.jpg","small_image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"carina-basic-capri-28-black-1874","links":{},"stock":{"item_id":1874,"product_id":1874,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_outfit.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-28-black-1874.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1876","_score":1,"_source":{"id":1876,"sku":"WP09-28-Purple","name":"Carina Basic Capri-28-Purple","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

    \n

    • Black capris with rouching detail.
    • 93% cotton, 7% spandex.
    • Elasticized waistband.
    • Reinforced seams with exposed topstitching.
    • Soft, medium-weight jersey with added stretch.

    ","image":"/w/p/wp09-purple_main.jpg","small_image":"/w/p/wp09-purple_main.jpg","thumbnail":"/w/p/wp09-purple_main.jpg","color":"57","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"carina-basic-capri-28-purple-1876","links":{},"stock":{"item_id":1876,"product_id":1876,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-28-purple-1876.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1877","_score":1,"_source":{"id":1877,"sku":"WP09-29-Black","name":"Carina Basic Capri-29-Black","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

    \n

    • Black capris with rouching detail.
    • 93% cotton, 7% spandex.
    • Elasticized waistband.
    • Reinforced seams with exposed topstitching.
    • Soft, medium-weight jersey with added stretch.

    ","image":"/w/p/wp09-black_main.jpg","small_image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"carina-basic-capri-29-black-1877","links":{},"stock":{"item_id":1877,"product_id":1877,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_outfit.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-29-black-1877.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1868","_score":1,"_source":{"id":1868,"sku":"WP08-28-Green","name":"Bardot Capri-28-Green","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

    \n

    • Black capris with pink waistband.
    • Cropped leggings.
    • Waistband drawcord.
    • Flat, thin and flattering.
    • Made with organic fabric.

    ","image":"/w/p/wp08-green_main.jpg","small_image":"/w/p/wp08-green_main.jpg","thumbnail":"/w/p/wp08-green_main.jpg","color":"53","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bardot-capri-28-green-1868","links":{},"stock":{"item_id":1868,"product_id":1868,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-28-green-1868.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1890","_score":1,"_source":{"id":1890,"sku":"WP11-28-Red","name":"Sylvia Capri-28-Red","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

    \n

    • Green striped capri.
    • Strategic side seam
    • Comfort gusset with lining.
    • Flat seaming.
    • Wide waistband.
    • Moisture wicking.

    ","image":"/w/p/wp11-red_main.jpg","small_image":"/w/p/wp11-red_main.jpg","thumbnail":"/w/p/wp11-red_main.jpg","color":"58","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sylvia-capri-28-red-1890","links":{},"stock":{"item_id":1890,"product_id":1890,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-28-red-1890.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1879","_score":1,"_source":{"id":1879,"sku":"WP09-29-Purple","name":"Carina Basic Capri-29-Purple","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

    \n

    • Black capris with rouching detail.
    • 93% cotton, 7% spandex.
    • Elasticized waistband.
    • Reinforced seams with exposed topstitching.
    • Soft, medium-weight jersey with added stretch.

    ","image":"/w/p/wp09-purple_main.jpg","small_image":"/w/p/wp09-purple_main.jpg","thumbnail":"/w/p/wp09-purple_main.jpg","color":"57","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"carina-basic-capri-29-purple-1879","links":{},"stock":{"item_id":1879,"product_id":1879,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-29-purple-1879.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1829","_score":1,"_source":{"id":1829,"sku":"WP02-29-Purple","name":"Emma Leggings-29-Purple","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

    \n

    • Light blue heather yoga pants.
    • Body hugging fit.
    • Low rise fit.

    ","image":"/w/p/wp02-purple_main.jpg","small_image":"/w/p/wp02-purple_main.jpg","thumbnail":"/w/p/wp02-purple_main.jpg","color":"57","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"emma-leggings-29-purple-1829","links":{},"stock":{"item_id":1829,"product_id":1829,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-29-purple-1829.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1840","_score":1,"_source":{"id":1840,"sku":"WP04-28-Blue","name":"Cora Parachute Pant-28-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

    Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

    \n

    • Light blue parachute pants.
    • Power mesh internal waistband for support.
    • Internal waistband pocket.
    • Antimicrobial finish.

    ","image":"/w/p/wp04-blue_main.jpg","small_image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"cora-parachute-pant-28-blue-1840","links":{},"stock":{"item_id":1840,"product_id":1840,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-28-blue-1840.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1850","_score":1,"_source":{"id":1850,"sku":"WP05-29-Gray","name":"Sahara Leggings-29-Gray","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

    Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

    \n

    • Pinstripe legging with rouched ankles.
    • Secret pocket at waistband.
    • Flat seams for comfort.
    • Shaped fit with low rise.
    • 4-way stretch, moisture-wicking material.

    ","image":"/w/p/wp05-gray_main.jpg","small_image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","color":"52","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sahara-leggings-29-gray-1850","links":{},"stock":{"item_id":1850,"product_id":1850,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-29-gray-1850.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1844","_score":1,"_source":{"id":1844,"sku":"WP04-29-White","name":"Cora Parachute Pant-29-White","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

    Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

    \n

    • Light blue parachute pants.
    • Power mesh internal waistband for support.
    • Internal waistband pocket.
    • Antimicrobial finish.

    ","image":"/w/p/wp04-white_main.jpg","small_image":"/w/p/wp04-white_main.jpg","thumbnail":"/w/p/wp04-white_main.jpg","color":"59","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"cora-parachute-pant-29-white-1844","links":{},"stock":{"item_id":1844,"product_id":1844,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-29-white-1844.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1843","_score":1,"_source":{"id":1843,"sku":"WP04-29-Blue","name":"Cora Parachute Pant-29-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

    Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

    \n

    • Light blue parachute pants.
    • Power mesh internal waistband for support.
    • Internal waistband pocket.
    • Antimicrobial finish.

    ","image":"/w/p/wp04-blue_main.jpg","small_image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"cora-parachute-pant-29-blue-1843","links":{},"stock":{"item_id":1843,"product_id":1843,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-29-blue-1843.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1796","_score":1,"_source":{"id":1796,"sku":"WT08-L-Purple","name":"Antonia Racer Tank-L-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

    \n

    • Machine wash.
    • Line dry.

    ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"antonia-racer-tank-l-purple-1796","links":{},"stock":{"item_id":1796,"product_id":1796,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-l-purple-1796.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1789","_score":1,"_source":{"id":1789,"sku":"WT08-S-Black","name":"Antonia Racer Tank-S-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

    \n

    • Machine wash.
    • Line dry.

    ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"antonia-racer-tank-s-black-1789","links":{},"stock":{"item_id":1789,"product_id":1789,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-s-black-1789.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1784","_score":1,"_source":{"id":1784,"sku":"WT07-XL-Yellow","name":"Maya Tunic-XL-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

    \n

    • Mint green heather tunic-style tank.
    • Wrapped back with cut out detail.
    • Drawcord detail at end.
    • Abutted seams.

    ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"maya-tunic-xl-yellow-1784","links":{},"stock":{"item_id":1784,"product_id":1784,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xl-yellow-1784.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1810","_score":1,"_source":{"id":1810,"sku":"WT09-M-Yellow","name":"Breathe-Easy Tank-M-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

    \n

    • Machine wash/dry.
    • Cocona® fabric.

    ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"breathe-easy-tank-m-yellow-1810","links":{},"stock":{"item_id":1810,"product_id":1810,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-m-yellow-1810.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1814","_score":1,"_source":{"id":1814,"sku":"WT09-XL-Purple","name":"Breathe-Easy Tank-XL-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

    \n

    • Machine wash/dry.
    • Cocona® fabric.

    ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"breathe-easy-tank-xl-purple-1814","links":{},"stock":{"item_id":1814,"product_id":1814,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xl-purple-1814.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1802","_score":1,"_source":{"id":1802,"sku":"WT09-XS-Purple","name":"Breathe-Easy Tank-XS-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

    \n

    • Machine wash/dry.
    • Cocona® fabric.

    ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"breathe-easy-tank-xs-purple-1802","links":{},"stock":{"item_id":1802,"product_id":1802,"stock_id":1,"qty":48,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xs-purple-1802.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1900","_score":1,"_source":{"id":1900,"sku":"WP12-29-Green","name":"Deirdre Relaxed-Fit Capri-29-Green","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

    Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

    \n

    • Heather gray capris with mint green waist & accents.
    • Comfortable, relaxed fit with high rise.
    • Moisture-wicking, 4-way stretch construction.
    • Lined with mesh for better support.
    • Hidden pocket at waistband.
    • Flatlock seams and lined gusset for comfort.

    ","image":"/w/p/wp12-green_main.jpg","small_image":"/w/p/wp12-green_main.jpg","thumbnail":"/w/p/wp12-green_main.jpg","color":"53","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"deirdre-relaxed-fit-capri-29-green-1900","links":{},"stock":{"item_id":1900,"product_id":1900,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-29-green-1900.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1972","_score":1,"_source":{"id":1972,"sku":"WSH04","name":"Artemis Running Short","attribute_set_id":10,"price":45,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":45,"description":"

    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

    \n

    • Black rouched shorts with mint waist.
    • Soft, lightweight construction.
    • LumaTech™ wicking technology.
    • Semi-fitted.

    ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"artemis-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"106","pattern":"198","climate":[202,205,212,206,209],"slug":"artemis-running-short-1972","links":{},"stock":{"item_id":1972,"product_id":1972,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH04-28-Black","id":1957,"status":1,"name":"Artemis Running Short-28-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"49","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","url_key":"artemis-running-short-28-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-28-Green","id":1958,"status":1,"name":"Artemis Running Short-28-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"53","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","url_key":"artemis-running-short-28-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-28-Orange","id":1959,"status":1,"name":"Artemis Running Short-28-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"56","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","url_key":"artemis-running-short-28-orange","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-29-Black","id":1960,"status":1,"name":"Artemis Running Short-29-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"49","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","url_key":"artemis-running-short-29-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-29-Green","id":1961,"status":1,"name":"Artemis Running Short-29-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"53","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","url_key":"artemis-running-short-29-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-29-Orange","id":1962,"status":1,"name":"Artemis Running Short-29-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"56","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","url_key":"artemis-running-short-29-orange","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-30-Black","id":1963,"status":1,"name":"Artemis Running Short-30-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"174","color":"49","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","url_key":"artemis-running-short-30-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-30-Green","id":1964,"status":1,"name":"Artemis Running Short-30-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"174","color":"53","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","url_key":"artemis-running-short-30-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-30-Orange","id":1965,"status":1,"name":"Artemis Running Short-30-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"174","color":"56","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","url_key":"artemis-running-short-30-orange","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-31-Black","id":1966,"status":1,"name":"Artemis Running Short-31-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"175","color":"49","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","url_key":"artemis-running-short-31-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-31-Green","id":1967,"status":1,"name":"Artemis Running Short-31-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"175","color":"53","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","url_key":"artemis-running-short-31-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-31-Orange","id":1968,"status":1,"name":"Artemis Running Short-31-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"175","color":"56","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","url_key":"artemis-running-short-31-orange","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-32-Black","id":1969,"status":1,"name":"Artemis Running Short-32-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"176","color":"49","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","url_key":"artemis-running-short-32-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-32-Green","id":1970,"status":1,"name":"Artemis Running Short-32-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"176","color":"53","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","url_key":"artemis-running-short-32-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-32-Orange","id":1971,"status":1,"name":"Artemis Running Short-32-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"176","color":"56","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","url_key":"artemis-running-short-32-orange","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001}],"configurable_options":[{"id":279,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":1972,"attribute_code":"color"},{"id":278,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1972,"attribute_code":"size"}],"color_options":[49,53,56],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-1972.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1908","_score":1,"_source":{"id":1908,"sku":"WP13","name":"Portia Capri","attribute_set_id":10,"price":49,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":49,"description":"

    From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

    \n

    • Salmon heather capri sweats.
    • Relaxed fit, high waist.
    • Inseam: 21\".
    • Wide elastic waistband.
    • Machine wash/dry.

    ","image":"/w/p/wp13-orange_main.jpg","small_image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"portia-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":"107","pattern":"197","climate":[205,212,206],"slug":"portia-capri-1908","links":{},"stock":{"item_id":1908,"product_id":1908,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp13-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP13-28-Blue","id":1902,"status":1,"name":"Portia Capri-28-Blue","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"50","image":"/w/p/wp13-blue_main.jpg","small_image":"/w/p/wp13-blue_main.jpg","thumbnail":"/w/p/wp13-blue_main.jpg","url_key":"portia-capri-28-blue","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"WP13-28-Green","id":1903,"status":1,"name":"Portia Capri-28-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"53","image":"/w/p/wp13-green_main.jpg","small_image":"/w/p/wp13-green_main.jpg","thumbnail":"/w/p/wp13-green_main.jpg","url_key":"portia-capri-28-green","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"WP13-28-Orange","id":1904,"status":1,"name":"Portia Capri-28-Orange","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"56","image":"/w/p/wp13-orange_main.jpg","small_image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","url_key":"portia-capri-28-orange","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"WP13-29-Blue","id":1905,"status":1,"name":"Portia Capri-29-Blue","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"50","image":"/w/p/wp13-blue_main.jpg","small_image":"/w/p/wp13-blue_main.jpg","thumbnail":"/w/p/wp13-blue_main.jpg","url_key":"portia-capri-29-blue","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"WP13-29-Green","id":1906,"status":1,"name":"Portia Capri-29-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"53","image":"/w/p/wp13-green_main.jpg","small_image":"/w/p/wp13-green_main.jpg","thumbnail":"/w/p/wp13-green_main.jpg","url_key":"portia-capri-29-green","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"WP13-29-Orange","id":1907,"status":1,"name":"Portia Capri-29-Orange","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"56","image":"/w/p/wp13-orange_main.jpg","small_image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","url_key":"portia-capri-29-orange","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001}],"configurable_options":[{"id":271,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":1908,"attribute_code":"color"},{"id":270,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1908,"attribute_code":"size"}],"color_options":[50,53,56],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-1908.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1866","_score":1,"_source":{"id":1866,"sku":"WP07","name":"Aeon Capri","attribute_set_id":10,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":48,"description":"

    Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

    \n

    • Black capris with teal accents.
    • Thick, 3\" flattering waistband.
    • Media pocket on inner waistband.
    • Dry wick finish for ultimate comfort and dryness.

    ","image":"/w/p/wp07-black_main.jpg","small_image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"aeon-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,150,154],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"107","pattern":"195","climate":[205,212,206],"slug":"aeon-capri-1866","links":{},"stock":{"item_id":1866,"product_id":1866,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP07-28-Black","id":1860,"status":1,"name":"Aeon Capri-28-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"49","image":"/w/p/wp07-black_main.jpg","small_image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","url_key":"aeon-capri-28-black","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP07-28-Blue","id":1861,"status":1,"name":"Aeon Capri-28-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"50","image":"/w/p/wp07-blue_main.jpg","small_image":"/w/p/wp07-blue_main.jpg","thumbnail":"/w/p/wp07-blue_main.jpg","url_key":"aeon-capri-28-blue","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP07-28-Orange","id":1862,"status":1,"name":"Aeon Capri-28-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"56","image":"/w/p/wp07-orange_main.jpg","small_image":"/w/p/wp07-orange_main.jpg","thumbnail":"/w/p/wp07-orange_main.jpg","url_key":"aeon-capri-28-orange","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP07-29-Black","id":1863,"status":1,"name":"Aeon Capri-29-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"49","image":"/w/p/wp07-black_main.jpg","small_image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","url_key":"aeon-capri-29-black","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP07-29-Blue","id":1864,"status":1,"name":"Aeon Capri-29-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"50","image":"/w/p/wp07-blue_main.jpg","small_image":"/w/p/wp07-blue_main.jpg","thumbnail":"/w/p/wp07-blue_main.jpg","url_key":"aeon-capri-29-blue","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP07-29-Orange","id":1865,"status":1,"name":"Aeon Capri-29-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"56","image":"/w/p/wp07-orange_main.jpg","small_image":"/w/p/wp07-orange_main.jpg","thumbnail":"/w/p/wp07-orange_main.jpg","url_key":"aeon-capri-29-orange","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001}],"configurable_options":[{"id":259,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":1866,"attribute_code":"color"},{"id":258,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1866,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-1866.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1917","_score":1,"_source":{"id":1917,"sku":"WSH01-30-Red","name":"Fiona Fitness Short-30-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

    \n

    • Black run shorts
    - cotton/spandex.
    • 5” inseam.
    • Machine wash/Line dry.

    ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-30-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"fiona-fitness-short-30-red-1917","links":{},"stock":{"item_id":1917,"product_id":1917,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-30-red-1917.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1921","_score":1,"_source":{"id":1921,"sku":"WSH01-32-Black","name":"Fiona Fitness Short-32-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

    \n

    • Black run shorts
    - cotton/spandex.
    • 5” inseam.
    • Machine wash/Line dry.

    ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"fiona-fitness-short-32-black-1921","links":{},"stock":{"item_id":1921,"product_id":1921,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-32-black-1921.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1932","_score":1,"_source":{"id":1932,"sku":"WSH02-30-Orange","name":"Maxima Drawstring Short-30-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

    \n

    • Light gray run shorts
    - cotton polyester.
    • Contrast binding.
    • 3\" inseam.
    • Machine wash/dry.

    ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-30-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"maxima-drawstring-short-30-orange-1932","links":{},"stock":{"item_id":1932,"product_id":1932,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-30-orange-1932.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1930","_score":1,"_source":{"id":1930,"sku":"WSH02-29-Yellow","name":"Maxima Drawstring Short-29-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

    \n

    • Light gray run shorts
    - cotton polyester.
    • Contrast binding.
    • 3\" inseam.
    • Machine wash/dry.

    ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-29-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"maxima-drawstring-short-29-yellow-1930","links":{},"stock":{"item_id":1930,"product_id":1930,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-29-yellow-1930.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1927","_score":1,"_source":{"id":1927,"sku":"WSH02-28-Yellow","name":"Maxima Drawstring Short-28-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

    \n

    • Light gray run shorts
    - cotton polyester.
    • Contrast binding.
    • 3\" inseam.
    • Machine wash/dry.

    ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-28-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"maxima-drawstring-short-28-yellow-1927","links":{},"stock":{"item_id":1927,"product_id":1927,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-28-yellow-1927.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1934","_score":1,"_source":{"id":1934,"sku":"WSH02-31-Gray","name":"Maxima Drawstring Short-31-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

    \n

    • Light gray run shorts
    - cotton polyester.
    • Contrast binding.
    • 3\" inseam.
    • Machine wash/dry.

    ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-31-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"maxima-drawstring-short-31-gray-1934","links":{},"stock":{"item_id":1934,"product_id":1934,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-31-gray-1934.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1926","_score":1,"_source":{"id":1926,"sku":"WSH02-28-Orange","name":"Maxima Drawstring Short-28-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

    \n

    • Light gray run shorts
    - cotton polyester.
    • Contrast binding.
    • 3\" inseam.
    • Machine wash/dry.

    ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"maxima-drawstring-short-28-orange-1926","links":{},"stock":{"item_id":1926,"product_id":1926,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-28-orange-1926.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1990","_score":1,"_source":{"id":1990,"sku":"WSH06-28-Orange","name":"Angel Light Running Short-28-Orange","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

    \n

    • Dark heather gray running shorts.
    • Snug fit.
    • Elastic waistband.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/w/s/wsh06-orange_main.jpg","small_image":"/w/s/wsh06-orange_main.jpg","thumbnail":"/w/s/wsh06-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"angel-light-running-short-28-orange-1990","links":{},"stock":{"item_id":1990,"product_id":1990,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-28-orange-1990.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1993","_score":1,"_source":{"id":1993,"sku":"WSH06-29-Orange","name":"Angel Light Running Short-29-Orange","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

    \n

    • Dark heather gray running shorts.
    • Snug fit.
    • Elastic waistband.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/w/s/wsh06-orange_main.jpg","small_image":"/w/s/wsh06-orange_main.jpg","thumbnail":"/w/s/wsh06-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"angel-light-running-short-29-orange-1993","links":{},"stock":{"item_id":1993,"product_id":1993,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-29-orange-1993.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2000","_score":1,"_source":{"id":2000,"sku":"WSH07-29-Blue","name":"Echo Fit Compression Short-29-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

    \n

    • Black compression shorts.
    • High-waisted cut.
    • Compression fit.
    • Inseam: 1.0\".
    • Machine wash/dry.

    ","image":"/w/s/wsh07-blue_main.jpg","small_image":"/w/s/wsh07-blue_main.jpg","thumbnail":"/w/s/wsh07-blue_main.jpg","color":"50","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"echo-fit-compression-short-29-blue-2000","links":{},"stock":{"item_id":2000,"product_id":2000,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-29-blue-2000.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1955","_score":1,"_source":{"id":1955,"sku":"WSH03-32-Orange","name":"Gwen Drawstring Bike Short-32-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

    \n

    • Dark heather gray rouched bike shorts.
    • Fitted. Inseam: 2\".
    • Machine wash/dry.

    ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-32-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"gwen-drawstring-bike-short-32-orange-1955","links":{},"stock":{"item_id":1955,"product_id":1955,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-32-orange-1955.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1961","_score":1,"_source":{"id":1961,"sku":"WSH04-29-Green","name":"Artemis Running Short-29-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

    \n

    • Black rouched shorts with mint waist.
    • Soft, lightweight construction.
    • LumaTech™ wicking technology.
    • Semi-fitted.

    ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"artemis-running-short-29-green-1961","links":{},"stock":{"item_id":1961,"product_id":1961,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-29-green-1961.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1987","_score":1,"_source":{"id":1987,"sku":"WSH05-32-Yellow","name":"Bess Yoga Short-32-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

    \n

    • Navy cotton shorts with light bue waist detail.
    • Front shirred waistband.
    • Flat-lock, chafe-free side seams.
    • Vented gusset.
    • Hidden interior pocket.
    • Sustainable and recycled fabric.

    ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-32-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"bess-yoga-short-32-yellow-1987","links":{},"stock":{"item_id":1987,"product_id":1987,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-32-yellow-1987.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1959","_score":1,"_source":{"id":1959,"sku":"WSH04-28-Orange","name":"Artemis Running Short-28-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

    \n

    • Black rouched shorts with mint waist.
    • Soft, lightweight construction.
    • LumaTech™ wicking technology.
    • Semi-fitted.

    ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"artemis-running-short-28-orange-1959","links":{},"stock":{"item_id":1959,"product_id":1959,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-28-orange-1959.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1949","_score":1,"_source":{"id":1949,"sku":"WSH03-30-Orange","name":"Gwen Drawstring Bike Short-30-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

    \n

    • Dark heather gray rouched bike shorts.
    • Fitted. Inseam: 2\".
    • Machine wash/dry.

    ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-30-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"gwen-drawstring-bike-short-30-orange-1949","links":{},"stock":{"item_id":1949,"product_id":1949,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-30-orange-1949.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1950","_score":1,"_source":{"id":1950,"sku":"WSH03-31-Blue","name":"Gwen Drawstring Bike Short-31-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

    \n

    • Dark heather gray rouched bike shorts.
    • Fitted. Inseam: 2\".
    • Machine wash/dry.

    ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-31-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"gwen-drawstring-bike-short-31-blue-1950","links":{},"stock":{"item_id":1950,"product_id":1950,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-31-blue-1950.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1915","_score":1,"_source":{"id":1915,"sku":"WSH01-30-Black","name":"Fiona Fitness Short-30-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

    \n

    • Black run shorts
    - cotton/spandex.
    • 5” inseam.
    • Machine wash/Line dry.

    ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-30-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"fiona-fitness-short-30-black-1915","links":{},"stock":{"item_id":1915,"product_id":1915,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-30-black-1915.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2013","_score":1,"_source":{"id":2013,"sku":"WSH09-29-Green","name":"Mimi All-Purpose Short-29-Green","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

    You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

    \n

    • Gray/seafoam two-layer shorts.
    • Water-resistant construction.
    • Inner mesh brief for breathable support.
    • 2.0\" inseam.
    • Reflective trim for visibility.

    ","image":"/w/s/wsh09-green_main.jpg","small_image":"/w/s/wsh09-green_main.jpg","thumbnail":"/w/s/wsh09-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"mimi-all-purpose-short-29-green-2013","links":{},"stock":{"item_id":2013,"product_id":2013,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-29-green-2013.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2006","_score":1,"_source":{"id":2006,"sku":"WSH08-31-Purple","name":"Sybil Running Short-31-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

    Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

    \n

    • Blue running shorts with green waist.
    • Drawstring-adjustable waist.
    • 4\" inseam. Machine wash/line dry.

    ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-31-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"sybil-running-short-31-purple-2006","links":{},"stock":{"item_id":2006,"product_id":2006,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-01-14 09:38:48","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-31-purple-2006.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2024","_score":1,"_source":{"id":2024,"sku":"WSH11-28-Orange","name":"Ina Compression Short-28-Orange","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

    One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

    \n

    • Royal blue bike shorts.
    • Compression fit.
    • Moisture-wicking.
    • Anti-microbial.
    • Machine wash/dry.

    ","image":"/w/s/wsh11-orange_main.jpg","small_image":"/w/s/wsh11-orange_main.jpg","thumbnail":"/w/s/wsh11-orange_main.jpg","color":"56","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ina-compression-short-28-orange-2024","links":{},"stock":{"item_id":2024,"product_id":2024,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-28-orange-2024.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2039","_score":1,"_source":{"id":2039,"sku":"WSH12-31-Green","name":"Erika Running Short-31-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

    \n

    • Seafoam pattern running shorts.
    • Elastic waistband.
    • Snug fit.
    • 4'' inseam.
    • 76% premium brushed Nylon / 24% Spandex.

    ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-31-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"erika-running-short-31-green-2039","links":{},"stock":{"item_id":2039,"product_id":2039,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-31-green-2039.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2027","_score":1,"_source":{"id":2027,"sku":"WSH11-29-Orange","name":"Ina Compression Short-29-Orange","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

    One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

    \n

    • Royal blue bike shorts.
    • Compression fit.
    • Moisture-wicking.
    • Anti-microbial.
    • Machine wash/dry.

    ","image":"/w/s/wsh11-orange_main.jpg","small_image":"/w/s/wsh11-orange_main.jpg","thumbnail":"/w/s/wsh11-orange_main.jpg","color":"56","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ina-compression-short-29-orange-2027","links":{},"stock":{"item_id":2027,"product_id":2027,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-29-orange-2027.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2028","_score":1,"_source":{"id":2028,"sku":"WSH11-29-Red","name":"Ina Compression Short-29-Red","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

    One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

    \n

    • Royal blue bike shorts.
    • Compression fit.
    • Moisture-wicking.
    • Anti-microbial.
    • Machine wash/dry.

    ","image":"/w/s/wsh11-red_main.jpg","small_image":"/w/s/wsh11-red_main.jpg","thumbnail":"/w/s/wsh11-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ina-compression-short-29-red-2028","links":{},"stock":{"item_id":2028,"product_id":2028,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-29-red-2028.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2022","_score":1,"_source":{"id":2022,"sku":"WSH10","name":"Ana Running Short","attribute_set_id":10,"price":40,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":40,"description":"

    Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

    \n

    • Black/pink two-layer shorts.
    • Low-rise elastic waistband.
    • Relaxed fit.
    • Ultra-lightweight fabric.
    • Internal drawstring.
    • Machine wash/dry.

    ","image":"/w/s/wsh10-black_main.jpg","small_image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ana-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,154,38],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"106","pattern":"198","climate":[202,209],"slug":"ana-running-short-2022","links":{},"stock":{"item_id":2022,"product_id":2022,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH10-28-Black","id":2016,"status":1,"name":"Ana Running Short-28-Black","price":40,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","36","2"],"size":"172","color":"49","image":"/w/s/wsh10-black_main.jpg","small_image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","url_key":"ana-running-short-28-black","msrp_display_actual_price_type":"0","final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":49.200001},{"sku":"WSH10-28-Orange","id":2017,"status":1,"name":"Ana Running Short-28-Orange","price":40,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","36","2"],"size":"172","color":"56","image":"/w/s/wsh10-orange_main.jpg","small_image":"/w/s/wsh10-orange_main.jpg","thumbnail":"/w/s/wsh10-orange_main.jpg","url_key":"ana-running-short-28-orange","msrp_display_actual_price_type":"0","final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":49.200001},{"sku":"WSH10-28-White","id":2018,"status":1,"name":"Ana Running Short-28-White","price":40,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","36","2"],"size":"172","color":"59","image":"/w/s/wsh10-white_main.jpg","small_image":"/w/s/wsh10-white_main.jpg","thumbnail":"/w/s/wsh10-white_main.jpg","url_key":"ana-running-short-28-white","msrp_display_actual_price_type":"0","final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":49.200001},{"sku":"WSH10-29-Black","id":2019,"status":1,"name":"Ana Running Short-29-Black","price":40,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","36","2"],"size":"173","color":"49","image":"/w/s/wsh10-black_main.jpg","small_image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","url_key":"ana-running-short-29-black","msrp_display_actual_price_type":"0","final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":49.200001},{"sku":"WSH10-29-Orange","id":2020,"status":1,"name":"Ana Running Short-29-Orange","price":40,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","36","2"],"size":"173","color":"56","image":"/w/s/wsh10-orange_main.jpg","small_image":"/w/s/wsh10-orange_main.jpg","thumbnail":"/w/s/wsh10-orange_main.jpg","url_key":"ana-running-short-29-orange","msrp_display_actual_price_type":"0","final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":49.200001},{"sku":"WSH10-29-White","id":2021,"status":1,"name":"Ana Running Short-29-White","price":40,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","36","2"],"size":"173","color":"59","image":"/w/s/wsh10-white_main.jpg","small_image":"/w/s/wsh10-white_main.jpg","thumbnail":"/w/s/wsh10-white_main.jpg","url_key":"ana-running-short-29-white","msrp_display_actual_price_type":"0","final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":49.200001}],"configurable_options":[{"id":291,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":59,"label":"White"}],"product_id":2022,"attribute_code":"color"},{"id":290,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":2022,"attribute_code":"size"}],"color_options":[49,56,59],"size_options":[172,173],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-2022.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"8","_score":1,"_source":{"id":8,"sku":"24-WB01","name":"Voyage Yoga Bag - tier price","attribute_set_id":15,"price":32,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:24","updated_at":"2018-08-22 09:32:35","product_links":[],"tier_prices":[{"customer_group_id":1,"qty":1,"value":15,"extension_attributes":{"website_id":0}}],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    Everything you need for a trip to the gym will fit inside this surprisingly spacious Voyage Yoga Bag. Stock it with a water bottle, change of clothes, pair of shoes, and even a few beauty products. Fits inside a locker and zips shut for security.

    \r\n
      \r\n
    • Slip pocket on front.
    • \r\n
    • Contrast piping.
    • \r\n
    • Durable nylon construction.
    • \r\n
    ","image":"/w/b/wb01-black-0.jpg","small_image":"/w/b/wb01-black-0.jpg","thumbnail":"/w/b/wb01-black-0.jpg","color":"49","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"voyage-yoga-bag","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[11,8],"style_bags":[29,30],"material":[37,38],"strap_bags":[64,66],"features_bags":[74,77,79],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"voyage-yoga-bag-tier-price-8","links":{},"stock":{"item_id":8,"product_id":8,"stock_id":1,"qty":43,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-black-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/gerat-3/voyage-yoga-bag-tier-price-8.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"5","_score":1,"_source":{"id":5,"sku":"24-MB06","name":"Rival Field Messenger","attribute_set_id":15,"price":45,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:23","updated_at":"2017-11-06 12:16:23","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    The Rival Field Messenger packs all your campus, studio or trail essentials inside a unique design of soft, textured leather - with loads of character to spare. Two exterior pockets keep all your smaller items handy, and the roomy interior offers even more space.

    \n
      \n
    • Leather construction.
    • \n
    • Adjustable fabric carry strap.
    • \n
    • Dimensions: 18\" x 10\" x 4\".
    • \n
    ","image":"/m/b/mb06-gray-0.jpg","small_image":"/m/b/mb06-gray-0.jpg","thumbnail":"/m/b/mb06-gray-0.jpg","category_ids":[3,7,4,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rival-field-messenger","tax_class_id":"2","activity":[22,23],"style_bags":[27,28,29],"material":[35,37,41],"strap_bags":[61,62,66,67],"features_bags":[73,75,78],"new":"1","slug":"rival-field-messenger-5","links":{},"stock":{"item_id":5,"product_id":5,"stock_id":1,"qty":32,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/b/mb06-gray-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/gerat-3/rival-field-messenger-5.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"12","_score":1,"_source":{"id":12,"sku":"24-WB03","name":"Driven Backpack","attribute_set_id":15,"price":36,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:25","updated_at":"2017-11-06 12:16:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44.280001,"max_price":44.280001,"max_regular_price":44.280001,"minimal_regular_price":44.280001,"special_price":null,"minimal_price":44.280001,"regular_price":44.280001,"description":"

    School books, camp gear and yoga clothes get along just fine in the all-purpose Driven Backpack. Crafted with tough polyester ripstop fabric, it's outfitted with rubberized end panels and padded, adjustable shoulder straps. The roomy main compartment features molded foam pockets that host everything you need.

    \n
      \n
    • Large main and small zip compartments.
    • \n
    • Adjustable, padded straps.
    • \n
    • Interior foam pockets.
    • \n
    • Exterior zip compartment.
    • \n
    • Left sport bottle pocket.
    • \n
    • Survival gear sold separately.
    • \n
    ","image":"/w/b/wb03-purple-0.jpg","small_image":"/w/b/wb03-purple-0.jpg","thumbnail":"/w/b/wb03-purple-0.jpg","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"driven-backpack","tax_class_id":"2","activity":[11,20,8],"style_bags":[24,28,29],"material":[36,37,38],"strap_bags":[61,64,65],"features_bags":[71,72,75,78],"slug":"driven-backpack-12","links":{},"stock":{"item_id":12,"product_id":12,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-purple-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/gerat-3/driven-backpack-12.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"10","_score":1,"_source":{"id":10,"sku":"24-WB05","name":"Savvy Shoulder Tote","attribute_set_id":15,"price":32,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:25","updated_at":"2017-11-06 12:16:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":"24.0000","minimal_price":29.520001,"regular_price":39.360001,"description":"

    Powerwalking to the gym or strolling to the local coffeehouse, the Savvy Shoulder Tote lets you stash your essentials in sporty style! A top-loading compartment provides quick and easy access to larger items, while zippered pockets on the front and side hold cash, credit cards and phone.

    \n
      \n
    • Water-resistant shell.
    • \n
    • Water bottle pocket.
    • \n
    • Padded, articulating shoulder strap.
    • \n
    • Dimensions: W 21\" x H 15\" x D 10\".
    • \n
    ","special_from_date":"2017-11-06 12:16:25","image":"/w/b/wb05-red-0.jpg","small_image":"/w/b/wb05-red-0.jpg","thumbnail":"/w/b/wb05-red-0.jpg","category_ids":[3,7,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"savvy-shoulder-tote","tax_class_id":"2","activity":[11,8],"style_bags":[29,30],"strap_bags":[61,62,66,67],"features_bags":[72,75],"erin_recommends":"1","sale":"1","slug":"savvy-shoulder-tote-10","links":{},"stock":{"item_id":10,"product_id":10,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-red-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/gerat-3/savvy-shoulder-tote-10.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"9","_score":1,"_source":{"id":9,"sku":"24-WB02","name":"Compete Track Tote","attribute_set_id":15,"price":32,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:24","updated_at":"2017-11-06 12:16:24","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Compete Track Tote holds a host of exercise supplies with ease. Stash your towel, jacket and street shoes inside. Tuck water bottles in easy-access external spaces. Perfect for trips to gym or yoga studio, with dual top handles for convenience to and from.

    \n

      \n
    • Two-way zippers.
    • \n
    • Contrast detailing.
    • \n
    • W 22.0\" x H 17\" x D 10\".
    • \n
    ","image":"/w/b/wb02-green-0.jpg","small_image":"/w/b/wb02-green-0.jpg","thumbnail":"/w/b/wb02-green-0.jpg","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"compete-track-tote","tax_class_id":"2","activity":[11,20,8],"style_bags":[29,30],"material":[37,38,39],"strap_bags":[61,64,66],"features_bags":[74,75,77],"slug":"compete-track-tote-9","links":{},"stock":{"item_id":9,"product_id":9,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-green-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/gerat-3/compete-track-tote-9.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"21","_score":1,"_source":{"id":21,"sku":"24-WG084","name":"Sprite Foam Yoga Brick","attribute_set_id":11,"price":5,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2017-11-06 12:16:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":6.150001,"max_price":6.150001,"max_regular_price":6.150001,"minimal_regular_price":6.150001,"special_price":null,"minimal_price":6.150001,"regular_price":6.150001,"description":"

    Our top-selling yoga prop, the 4-inch, high-quality Sprite Foam Yoga Brick is popular among yoga novices and studio professionals alike. An essential yoga accessory, the yoga brick is a critical tool for finding balance and alignment in many common yoga poses. Choose from 5 color options.

    \n
      \n
    • Standard Large Size: 4\" x 6\" x 9\".\n
    • Beveled edges for ideal contour grip.\n
    • Durable and soft, scratch-proof foam.\n
    • Individually wrapped.\n
    • Ten color choices.\n
    ","image":"/l/u/luma-yoga-brick.jpg","small_image":"/l/u/luma-yoga-brick.jpg","thumbnail":"/l/u/luma-yoga-brick.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-foam-yoga-brick","tax_class_id":"2","activity":[8,9,17,11],"material":"42","gender":[80,81,84],"category_gear":"87","slug":"sprite-foam-yoga-brick-21","links":{},"stock":{"item_id":21,"product_id":21,"stock_id":1,"qty":42,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-yoga-brick.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-foam-yoga-brick-21.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"30","_score":1,"_source":{"id":30,"sku":"24-WG083-gray","name":"Sprite Stasis Ball 75 cm","attribute_set_id":12,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

    \n
      \n
    • 75 cm plastic shell.
    • \n
    • Durable, burst-resistant design.
    • \n
    • Hand pump included.
    • \n
    ","image":"/l/u/luma-stability-ball-gray.jpg","small_image":"/l/u/luma-stability-ball-gray.jpg","thumbnail":"/l/u/luma-stability-ball-gray.jpg","color":"52","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-75-cm-gray","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"93","slug":"sprite-stasis-ball-75-cm-30","links":{},"stock":{"item_id":30,"product_id":30,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball-gray.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-stasis-ball-75-cm-30.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"42","_score":1,"_source":{"id":42,"sku":"24-WG01","name":"Bolo Sport Watch","attribute_set_id":11,"price":49,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":"49.0000","minimal_price":60.270001,"regular_price":60.270001,"description":"

    The Bolo Sport Watch is sleek, sporty and sized just right to fit your smaller wrist. Easy to read and set up, it features a large digital face and button-activated alarm and stopwatch. The soft-touch resin band promises no-pinch comfort, while the water-resistant design lets you take your workout to the lap pool.

    \n
      \n
    • Displays time, day and date.
    • \n
    • Two-tone design.
    • \n
    • 12/24 hour formats.
    • \n
    • Nickel-free buckle on band.
    • \n
    • Battery included.
    • \n
    ","special_from_date":"2017-11-06 12:16:30","image":"/w/g/wg01-bk-0.jpg","small_image":"/w/g/wg01-bk-0.jpg","thumbnail":"/w/g/wg01-bk-0.jpg","category_ids":[3,6],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bolo-sport-watch","tax_class_id":"2","activity":[9,17],"material":"48","gender":"81","category_gear":[86,87,90],"sale":"1","slug":"bolo-sport-watch-42","links":{},"stock":{"item_id":42,"product_id":42,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/g/wg01-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"}],"url_path":"gear/gerat-3/bolo-sport-watch-42.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"32","_score":1,"_source":{"id":32,"sku":"24-WG083-blue","name":"Sprite Stasis Ball 75 cm","attribute_set_id":12,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

    \n
      \n
    • 75 cm plastic shell.
    • \n
    • Durable, burst-resistant design.
    • \n
    • Hand pump included.
    • \n
    ","image":"/l/u/luma-stability-ball.jpg","small_image":"/l/u/luma-stability-ball.jpg","thumbnail":"/l/u/luma-stability-ball.jpg","color":"50","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-75-cm-blue","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"93","slug":"sprite-stasis-ball-75-cm-32","links":{},"stock":{"item_id":32,"product_id":32,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-stasis-ball-75-cm-32.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"34","_score":1,"_source":{"id":34,"sku":"24-WG086","name":"Sprite Yoga Strap 8 foot","attribute_set_id":13,"price":17,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20.910001,"max_price":20.910001,"max_regular_price":20.910001,"minimal_regular_price":20.910001,"special_price":null,"minimal_price":20.910001,"regular_price":20.910001,"description":"

    The Sprite Yoga Strap is your untiring partner in demanding stretches, holds and alignment routines. The strap's 100% organic cotton fabric is woven tightly to form a soft, textured yet non-slip surface. The plastic clasp buckle is easily adjustable, lightweight and durable under strain.

    \n
      \n
    • 8' long x 1.0\" wide.\n
    • 100% soft and durable cotton.\n
    • Plastic cinch buckle is easy to use.\n
    • Three natural colors made from phthalate and heavy metal free dyes.\n
    ","image":"/l/u/luma-yoga-strap.jpg","small_image":"/l/u/luma-yoga-strap.jpg","thumbnail":"/l/u/luma-yoga-strap.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-yoga-strap-8-foot","tax_class_id":"2","activity":"8","material":[32,44],"gender":[80,81,84],"category_gear":"87","size":"95","slug":"sprite-yoga-strap-8-foot-34","links":{},"stock":{"item_id":34,"product_id":34,"stock_id":1,"qty":29,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-yoga-strap.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-yoga-strap-8-foot-34.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"33","_score":1,"_source":{"id":33,"sku":"24-WG085","name":"Sprite Yoga Strap 6 foot - tier price","attribute_set_id":13,"price":14,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2018-08-22 09:34:15","product_links":[],"tier_prices":[{"customer_group_id":1,"qty":1,"value":10,"extension_attributes":{"website_id":0}}],"custom_attributes":null,"description":"

    The Sprite Yoga Strap is your untiring partner in demanding stretches, holds and alignment routines. The strap's 100% organic cotton fabric is woven tightly to form a soft, textured yet non-slip surface. The plastic clasp buckle is easily adjustable, lightweight and durable under strain.

    \r\n
      \r\n
    • 100% soft and durable cotton.\r\n
    • Plastic cinch buckle is easy to use.\r\n
    • Three natural colors made from phthalate and heavy metal free dyes.\r\n
    ","image":"/l/u/luma-yoga-strap.jpg","small_image":"/l/u/luma-yoga-strap.jpg","thumbnail":"/l/u/luma-yoga-strap.jpg","color":"49","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-yoga-strap-6-foot","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":"8","material":[32,44],"gender":[80,81,84],"category_gear":"87","size":"94","slug":"sprite-yoga-strap-6-foot-tier-price-33","links":{},"stock":{"item_id":33,"product_id":33,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-02-06 09:20:56","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/l/u/luma-yoga-strap.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-yoga-strap-6-foot-tier-price-33.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"70","_score":1,"_source":{"id":70,"sku":"MH02-XS-Red","name":"Teton Pullover Hoodie-XS-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

    This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

    \n

    • Black pullover hoodie.
    • Soft, brushed interior.
    • Front hand pockets.
    • Machine wash/dry.

    ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"teton-pullover-hoodie-xs-red-70","links":{},"stock":{"item_id":70,"product_id":70,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xs-red-70.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"88","_score":1,"_source":{"id":88,"sku":"MH03-S-Blue","name":"Bruno Compete Hoodie-S-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

    Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

    \n

    • Full zip black hoodie pullover.
    • Adjustable drawstring hood.
    • Ribbed cuffs/waistband.
    • Kangaroo pocket.
    • Machine wash/dry.

    ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bruno-compete-hoodie-s-blue-88","links":{},"stock":{"item_id":88,"product_id":88,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-s-blue-88.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"82","_score":1,"_source":{"id":82,"sku":"MH02-XL-Red","name":"Teton Pullover Hoodie-XL-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

    This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

    \n

    • Black pullover hoodie.
    • Soft, brushed interior.
    • Front hand pockets.
    • Machine wash/dry.

    ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"teton-pullover-hoodie-xl-red-82","links":{},"stock":{"item_id":82,"product_id":82,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xl-red-82.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"96","_score":1,"_source":{"id":96,"sku":"MH03-XL-Black","name":"Bruno Compete Hoodie-XL-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

    Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

    \n

    • Full zip black hoodie pullover.
    • Adjustable drawstring hood.
    • Ribbed cuffs/waistband.
    • Kangaroo pocket.
    • Machine wash/dry.

    ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bruno-compete-hoodie-xl-black-96","links":{},"stock":{"item_id":96,"product_id":96,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xl-black-96.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"87","_score":1,"_source":{"id":87,"sku":"MH03-S-Black","name":"Bruno Compete Hoodie-S-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

    Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

    \n

    • Full zip black hoodie pullover.
    • Adjustable drawstring hood.
    • Ribbed cuffs/waistband.
    • Kangaroo pocket.
    • Machine wash/dry.

    ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bruno-compete-hoodie-s-black-87","links":{},"stock":{"item_id":87,"product_id":87,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-s-black-87.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"62","_score":1,"_source":{"id":62,"sku":"MH01-L-Gray","name":"Chaz Kangeroo Hoodie-L-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

    Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

    \n

    • Two-tone gray heather hoodie.
    • Drawstring-adjustable hood.
    • Machine wash/dry.

    ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chaz-kangeroo-hoodie-l-gray-62","links":{},"stock":{"item_id":62,"product_id":62,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-l-gray-62.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"65","_score":1,"_source":{"id":65,"sku":"MH01-XL-Gray","name":"Chaz Kangeroo Hoodie-XL-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

    Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

    \n

    • Two-tone gray heather hoodie.
    • Drawstring-adjustable hood.
    • Machine wash/dry.

    ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chaz-kangeroo-hoodie-xl-gray-65","links":{},"stock":{"item_id":65,"product_id":65,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xl-gray-65.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"78","_score":1,"_source":{"id":78,"sku":"MH02-L-Purple","name":"Teton Pullover Hoodie-L-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

    This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

    \n

    • Black pullover hoodie.
    • Soft, brushed interior.
    • Front hand pockets.
    • Machine wash/dry.

    ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"teton-pullover-hoodie-l-purple-78","links":{},"stock":{"item_id":78,"product_id":78,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-l-purple-78.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"59","_score":1,"_source":{"id":59,"sku":"MH01-M-Gray","name":"Chaz Kangeroo Hoodie-M-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

    Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

    \n

    • Two-tone gray heather hoodie.
    • Drawstring-adjustable hood.
    • Machine wash/dry.

    ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chaz-kangeroo-hoodie-m-gray-59","links":{},"stock":{"item_id":59,"product_id":59,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-m-gray-59.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"82","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":82,"attribute_code":"weight","frontend_input":"weight","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Weight","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Weight","is_unique":"0","validation_rules":[],"id":82,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"78","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":78,"attribute_code":"special_price","frontend_input":"price","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Special Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":78,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"87","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":87,"attribute_code":"image","frontend_input":"media_image","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Base","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":87,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"88","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":88,"attribute_code":"small_image","frontend_input":"media_image","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Small","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":88,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"94","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":94,"attribute_code":"news_from_date","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Set Product as New from Date","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate","is_unique":"0","validation_rules":[],"id":94,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"96","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":96,"attribute_code":"gallery","frontend_input":"gallery","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Image Gallery","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":96,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"100","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":100,"attribute_code":"custom_design","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"-- Please Select --","value":""},{"label":"Magento Blank","value":"1"},{"label":"Magento Luma","value":"2"}],"is_user_defined":false,"default_frontend_label":"New Theme","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Theme\\Model\\Theme\\Source\\Theme","is_unique":"0","validation_rules":[],"id":100,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"101","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":101,"attribute_code":"custom_design_from","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Active From","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate","is_unique":"0","validation_rules":[],"id":101,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"103","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":103,"attribute_code":"custom_layout_update","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Layout Update XML","frontend_labels":null,"backend_type":"text","backend_model":"Magento\\Catalog\\Model\\Attribute\\Backend\\Customlayoutupdate","is_unique":"0","validation_rules":[],"id":103,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"104","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":104,"attribute_code":"page_layout","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"No layout updates","value":""},{"label":"Empty","value":"empty"},{"label":"1 column","value":"1column"},{"label":"2 columns with left bar","value":"2columns-left"},{"label":"2 columns with right bar","value":"2columns-right"},{"label":"3 columns","value":"3columns"}],"is_user_defined":false,"default_frontend_label":"Layout","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Layout","is_unique":"0","validation_rules":[],"id":104,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"113","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":113,"attribute_code":"updated_at","frontend_input":"date","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":113,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"127","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":127,"attribute_code":"shipment_type","frontend_input":"select","entity_type_id":"4","is_required":true,"options":[{"label":"Together","value":"0"},{"label":"Separately","value":"1"}],"is_user_defined":false,"default_frontend_label":"Ship Bundle Items","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Bundle\\Model\\Product\\Attribute\\Source\\Shipment\\Type","default_value":"0","is_unique":"0","validation_rules":[],"id":127,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"135","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"1","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":135,"attribute_code":"activity","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Hike","value":"4"},{"label":"Outdoor","value":"5"},{"label":"Running","value":"6"},{"label":"Warmup","value":"7"},{"label":"Yoga","value":"8"},{"label":"Recreation","value":"9"},{"label":"Lounge","value":"10"},{"label":"Gym","value":"11"},{"label":"Climbing","value":"12"},{"label":"Crosstraining","value":"13"},{"label":"Post-workout","value":"14"},{"label":"Cycling","value":"15"},{"label":"Athletic","value":"16"},{"label":"Sports","value":"17"},{"label":"Hiking","value":"18"},{"label":"Overnight","value":"19"},{"label":"School","value":"20"},{"label":"Trail","value":"21"},{"label":"Travel","value":"22"},{"label":"Urban","value":"23"}],"is_user_defined":true,"default_frontend_label":"Activity","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":135,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"136","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":136,"attribute_code":"style_bags","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Backpack","value":"24"},{"label":"Luggage","value":"25"},{"label":"Duffel","value":"26"},{"label":"Messenger","value":"27"},{"label":"Laptop","value":"28"},{"label":"Exercise","value":"29"},{"label":"Tote","value":"30"}],"is_user_defined":true,"default_frontend_label":"Style Bags","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":136,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"137","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":137,"attribute_code":"material","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Burlap","value":"31"},{"label":"Cocona® performance fabric","value":"143"},{"label":"Canvas","value":"32"},{"label":"Wool","value":"144"},{"label":"Cotton","value":"33"},{"label":"Fleece","value":"145"},{"label":"Faux Leather","value":"34"},{"label":"Hemp","value":"146"},{"label":"Jersey","value":"147"},{"label":"Leather","value":"35"},{"label":"LumaTech™","value":"148"},{"label":"Mesh","value":"36"},{"label":"Lycra®","value":"149"},{"label":"Nylon","value":"37"},{"label":"Microfiber","value":"150"},{"label":"Polyester","value":"38"},{"label":"Rayon","value":"39"},{"label":"Spandex","value":"151"},{"label":"HeatTec®","value":"152"},{"label":"Ripstop","value":"40"},{"label":"EverCool™","value":"153"},{"label":"Suede","value":"41"},{"label":"Foam","value":"42"},{"label":"Organic Cotton","value":"154"},{"label":"Metal","value":"43"},{"label":"TENCEL","value":"155"},{"label":"CoolTech™","value":"156"},{"label":"Plastic","value":"44"},{"label":"Khaki","value":"157"},{"label":"Rubber","value":"45"},{"label":"Linen","value":"158"},{"label":"Synthetic","value":"46"},{"label":"Stainless Steel","value":"47"},{"label":"Wool","value":"159"},{"label":"Silicone","value":"48"},{"label":"Terry","value":"160"}],"is_user_defined":true,"default_frontend_label":"Material","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":137,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"142","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":142,"attribute_code":"size","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"55 cm","value":"91"},{"label":"XS","value":"167"},{"label":"65 cm","value":"92"},{"label":"S","value":"168"},{"label":"75 cm","value":"93"},{"label":"M","value":"169"},{"label":"6 foot","value":"94"},{"label":"L","value":"170"},{"label":"8 foot","value":"95"},{"label":"XL","value":"171"},{"label":"10 foot","value":"96"},{"label":"28","value":"172"},{"label":"29","value":"173"},{"label":"30","value":"174"},{"label":"31","value":"175"},{"label":"32","value":"176"},{"label":"33","value":"177"},{"label":"34","value":"178"},{"label":"36","value":"179"},{"label":"38","value":"180"}],"is_user_defined":true,"default_frontend_label":"Size","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"91","is_unique":"0","validation_rules":[],"id":142,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"146","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":146,"attribute_code":"new","frontend_input":"boolean","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"}],"is_user_defined":true,"default_frontend_label":"New","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean","default_value":"","is_unique":"0","validation_rules":[],"id":146,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"94","_score":1,"_source":{"id":94,"sku":"MH03-L-Blue","name":"Bruno Compete Hoodie-L-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

    Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

    \n

    • Full zip black hoodie pullover.
    • Adjustable drawstring hood.
    • Ribbed cuffs/waistband.
    • Kangaroo pocket.
    • Machine wash/dry.

    ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bruno-compete-hoodie-l-blue-94","links":{},"stock":{"item_id":94,"product_id":94,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-l-blue-94.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"100","_score":1,"_source":{"id":100,"sku":"MH04-XS-Green","name":"Frankie Sweatshirt-XS-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

    \n

    • Light green crewneck sweatshirt.
    • Hand pockets.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"frankie-sweatshirt-xs-green-100","links":{},"stock":{"item_id":100,"product_id":100,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xs-green-100.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"104","_score":1,"_source":{"id":104,"sku":"MH04-S-White","name":"Frankie Sweatshirt-S-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

    \n

    • Light green crewneck sweatshirt.
    • Hand pockets.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"frankie-sweatshirt-s-white-104","links":{},"stock":{"item_id":104,"product_id":104,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-s-white-104.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"12","_score":1,"_source":{"id":12,"parent_id":11,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"id":14,"parent_id":12,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":176,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:10:23","path":"1/2/11/12/14","available_sort_by":[],"include_in_menu":true,"description":"

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum dui sapien, bibendum ac luctus sed, lobortis id lacus. Nulla nisi augue, accumsan id sapien maximus, hendrerit vehicula elit.

    ","display_mode":"PRODUCTS","is_anchor":"1","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"jackets-14","url_path":"men/tops-men/jackets-men/jackets-14","slug":"jackets-14"},{"id":15,"parent_id":12,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":208,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/15","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-15","url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","slug":"hoodies-and-sweatshirts-15"},{"id":16,"parent_id":12,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/16","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-16","url_path":"men/tops-men/tees-men/tees-16","slug":"tees-16"},{"id":17,"parent_id":12,"name":"Tanks","is_active":true,"position":4,"level":4,"product_count":102,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/17","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tanks-17","url_path":"men/tops-men/tanks-men/tanks-17","slug":"tanks-17"}],"children":"14,15,16,17","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"4","url_key":"tops-12","url_path":"men/tops-men/tops-12","slug":"tops-12","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"21","_score":1,"_source":{"id":21,"parent_id":20,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"id":23,"parent_id":21,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":186,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/23","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"jackets-23","url_path":"women/tops-women/jackets-women/jackets-23","slug":"jackets-23"},{"id":24,"parent_id":21,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":182,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/24","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-24","url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","slug":"hoodies-and-sweatshirts-24"},{"id":25,"parent_id":21,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/25","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-25","url_path":"women/tops-women/tees-women/tees-25","slug":"tees-25"},{"id":26,"parent_id":21,"name":"Bras & Tanks","is_active":true,"position":4,"level":4,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/26","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bras-and-tanks-26","url_path":"women/tops-women/tanks-women/bras-and-tanks-26","slug":"bras-and-tanks-26"}],"children":"23,24,25,26","created_at":"2017-11-06 12:16:41","updated_at":"2019-01-03 10:35:27","path":"1/2/20/21","available_sort_by":[],"include_in_menu":true,"meta_title":"Women Tops","meta_description":"Best women tops on vuestorefront.","display_mode":"PRODUCTS","is_anchor":"1","children_count":"4","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"tops-21","url_path":"women/tops-women/tops-21","slug":"tops-21","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"9","_score":1,"_source":{"id":9,"parent_id":2,"name":"Training","is_active":false,"position":5,"level":2,"product_count":6,"children_data":[{"id":10,"parent_id":9,"name":"Video Download","is_active":true,"position":1,"level":3,"product_count":6,"children_data":[],"children":"","created_at":"2017-11-06 12:16:31","updated_at":"2017-11-06 12:16:31","path":"1/2/9/10","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"video-download-10","url_path":"training/training-video/video-download-10","slug":"video-download-10"}],"children":"10","created_at":"2017-11-06 12:16:31","updated_at":"2018-05-27 14:04:30","path":"1/2/9","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"1","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"training-9","url_path":"training/training-9","slug":"training-9","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"10","_score":1,"_source":{"id":10,"parent_id":9,"name":"Video Download","is_active":true,"position":1,"level":3,"product_count":6,"children_data":[],"children":"","created_at":"2017-11-06 12:16:31","updated_at":"2017-11-06 12:16:31","path":"1/2/9/10","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"video-download-10","url_path":"training/training-video/video-download-10","slug":"video-download-10","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"8","_score":1,"_source":{"id":8,"parent_id":7,"name":"New Luma Yoga Collection","is_active":true,"position":1,"level":3,"product_count":347,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/7/8","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"new-luma-yoga-collection-8","url_path":"collections/yoga-new/new-luma-yoga-collection-8","slug":"new-luma-yoga-collection-8","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"34","_score":1,"_source":{"id":34,"parent_id":7,"name":"Erin Recommends","is_active":true,"position":2,"level":3,"product_count":279,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/34","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"erin-recommends-34","url_path":"collections/erin-recommends/erin-recommends-34","slug":"erin-recommends-34","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"5","_score":1,"_source":{"id":5,"parent_id":3,"name":"Fitness Equipment","is_active":true,"position":2,"level":3,"product_count":23,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/5","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"fitness-equipment-5","url_path":"gear/fitness-equipment/fitness-equipment-5","slug":"fitness-equipment-5","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"32","_score":1,"_source":{"id":32,"parent_id":29,"name":"Pants","is_active":true,"position":3,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/32","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"pants-32","url_path":"promotions/pants-all/pants-32","slug":"pants-32","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"30","_score":1,"_source":{"id":30,"parent_id":29,"name":"Women Sale","is_active":true,"position":1,"level":3,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/30","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"women-sale-30","url_path":"promotions/women-sale/women-sale-30","slug":"women-sale-30","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"33","_score":1,"_source":{"id":33,"parent_id":29,"name":"Tees","is_active":true,"position":4,"level":3,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/33","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"tees-33","url_path":"promotions/tees-all/tees-33","slug":"tees-33","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"cms_block","_id":"8","_score":1,"_source":{"store_id":[0],"id":8,"identifier":"women-block","title":"Women Block","content":"\n
    \n

    Hot Sellers

    \n

    Favorites from Luma shoppers

    \n
    \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556376570938}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"cms_block","_id":"10","_score":1,"_source":{"store_id":[0],"id":10,"identifier":"men-block","title":"Men Block","content":"\n
    \n

    Hot Sellers

    \n

    Favorites from Luma shoppers

    \n
    \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556376570938}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"cms_block","_id":"5","_score":1,"_source":{"store_id":[0],"id":5,"identifier":"men-left-menu-block","title":"Men Left Menu Block","content":"
    Tops\n\n\nBottoms\n\n
    ","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556376570938}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"cms_block","_id":"9","_score":1,"_source":{"store_id":[0],"id":9,"identifier":"training-block","title":"Training Block","content":"\n
    \n

    Top Videos

    \n

    Stream free with subscription

    \n
    \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556376570938}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"cms_block","_id":"12","_score":1,"_source":{"store_id":[0],"id":12,"identifier":"sale-block","title":"Sale Block","content":"","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556376570938}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"cms_page","_id":"5","_score":1,"_source":{"store_id":[0],"id":5,"identifier":"about-us","title":"About us","page_layout":"1column","meta_keywords":"","meta_description":"","content_heading":"About us","content":"
    \n

    With more than 230 stores spanning 43 states and growing, Luma is a nationally recognized active wear manufacturer and retailer. We’re passionate about active lifestyles – and it goes way beyond apparel.

    \n\n

    At Luma, wellness is a way of life. We don’t believe age, gender or past actions define you, only your ambition and desire for wholeness... today.

    \n\n

    We differentiate ourselves through a combination of unique designs and styles merged with unequaled standards of quality and authenticity. Our founders have deep roots in yoga and health communities and our selections serve amateur practitioners and professional athletes alike.

    \n\n \n
    \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","sort_order":"0","layout_update_xml":"","custom_theme":"","custom_root_template":"","custom_layout_update_xml":"","active":true,"type":"cms_page","tsk":1556376573724}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"243","_score":1,"_source":{"id":243,"sku":"MH12","name":"Ajax Full-Zip Sweatshirt ","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":69,"description":"

    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

    \n

    • Mint striped full zip hoodie.
    • 100% bonded polyester fleece.
    • Pouch pocket.
    • Rib cuffs and hem.
    • Machine washable.

    ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ajax-full-zip-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"199","climate":[202,204,205,208,210],"slug":"ajax-full-zip-sweatshirt-243","links":{},"stock":{"item_id":243,"product_id":243,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH12-XS-Blue","id":228,"status":1,"name":"Ajax Full-Zip Sweatshirt -XS-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"50","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","url_key":"ajax-full-zip-sweatshirt-xs-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-XS-Green","id":229,"status":1,"name":"Ajax Full-Zip Sweatshirt -XS-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"53","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","url_key":"ajax-full-zip-sweatshirt-xs-green","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-XS-Red","id":230,"status":1,"name":"Ajax Full-Zip Sweatshirt -XS-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","url_key":"ajax-full-zip-sweatshirt-xs-red","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-S-Blue","id":231,"status":1,"name":"Ajax Full-Zip Sweatshirt -S-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"50","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","url_key":"ajax-full-zip-sweatshirt-s-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-S-Green","id":232,"status":1,"name":"Ajax Full-Zip Sweatshirt -S-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"53","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","url_key":"ajax-full-zip-sweatshirt-s-green","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-S-Red","id":233,"status":1,"name":"Ajax Full-Zip Sweatshirt -S-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","url_key":"ajax-full-zip-sweatshirt-s-red","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-M-Blue","id":234,"status":1,"name":"Ajax Full-Zip Sweatshirt -M-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"50","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","url_key":"ajax-full-zip-sweatshirt-m-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-M-Green","id":235,"status":1,"name":"Ajax Full-Zip Sweatshirt -M-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"53","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","url_key":"ajax-full-zip-sweatshirt-m-green","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-M-Red","id":236,"status":1,"name":"Ajax Full-Zip Sweatshirt -M-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","url_key":"ajax-full-zip-sweatshirt-m-red","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-L-Blue","id":237,"status":1,"name":"Ajax Full-Zip Sweatshirt -L-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"50","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","url_key":"ajax-full-zip-sweatshirt-l-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-L-Green","id":238,"status":1,"name":"Ajax Full-Zip Sweatshirt -L-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"53","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","url_key":"ajax-full-zip-sweatshirt-l-green","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-L-Red","id":239,"status":1,"name":"Ajax Full-Zip Sweatshirt -L-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","url_key":"ajax-full-zip-sweatshirt-l-red","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-XL-Blue","id":240,"status":1,"name":"Ajax Full-Zip Sweatshirt -XL-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"50","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","url_key":"ajax-full-zip-sweatshirt-xl-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-XL-Green","id":241,"status":1,"name":"Ajax Full-Zip Sweatshirt -XL-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"53","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","url_key":"ajax-full-zip-sweatshirt-xl-green","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-XL-Red","id":242,"status":1,"name":"Ajax Full-Zip Sweatshirt -XL-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","url_key":"ajax-full-zip-sweatshirt-xl-red","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001}],"configurable_options":[{"id":25,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":243,"attribute_code":"color"},{"id":24,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":243,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-243.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"209","_score":1,"_source":{"id":209,"sku":"MH10-XL-Blue","name":"Mach Street Sweatshirt -XL-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

    \n

    • Navy heather crewneck sweatshirt.
    • LumaTech™ moisture-wicking fabric.
    • Antimicrobial, odor-resistant.
    • Zip hand pockets.
    • Chafe-resistant flatlock seams.
    • Rib-knit cuffs and hem.

    ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mach-street-sweatshirt-xl-blue-209","links":{},"stock":{"item_id":209,"product_id":209,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xl-blue-209.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"221","_score":1,"_source":{"id":221,"sku":"MH11-L-Orange","name":"Grayson Crewneck Sweatshirt -L-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

    \n

    • Cream crewneck sweatshirt with black accents.
    • 80% cotton/20% polyester fleece.
    • Patterned knit hood lining.
    • Knit cuffs and waist.
    • Pouch pocket.
    • Curl edged seam detail

    ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"grayson-crewneck-sweatshirt-l-orange-221","links":{},"stock":{"item_id":221,"product_id":221,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-l-orange-221.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"220","_score":1,"_source":{"id":220,"sku":"MH11-M-White","name":"Grayson Crewneck Sweatshirt -M-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

    \n

    • Cream crewneck sweatshirt with black accents.
    • 80% cotton/20% polyester fleece.
    • Patterned knit hood lining.
    • Knit cuffs and waist.
    • Pouch pocket.
    • Curl edged seam detail

    ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"grayson-crewneck-sweatshirt-m-white-220","links":{},"stock":{"item_id":220,"product_id":220,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-m-white-220.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"224","_score":1,"_source":{"id":224,"sku":"MH11-XL-Orange","name":"Grayson Crewneck Sweatshirt -XL-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

    \n

    • Cream crewneck sweatshirt with black accents.
    • 80% cotton/20% polyester fleece.
    • Patterned knit hood lining.
    • Knit cuffs and waist.
    • Pouch pocket.
    • Curl edged seam detail

    ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"grayson-crewneck-sweatshirt-xl-orange-224","links":{},"stock":{"item_id":224,"product_id":224,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xl-orange-224.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"223","_score":1,"_source":{"id":223,"sku":"MH11-L-White","name":"Grayson Crewneck Sweatshirt -L-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

    \n

    • Cream crewneck sweatshirt with black accents.
    • 80% cotton/20% polyester fleece.
    • Patterned knit hood lining.
    • Knit cuffs and waist.
    • Pouch pocket.
    • Curl edged seam detail

    ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"grayson-crewneck-sweatshirt-l-white-223","links":{},"stock":{"item_id":223,"product_id":223,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-l-white-223.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"226","_score":1,"_source":{"id":226,"sku":"MH11-XL-White","name":"Grayson Crewneck Sweatshirt -XL-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

    \n

    • Cream crewneck sweatshirt with black accents.
    • 80% cotton/20% polyester fleece.
    • Patterned knit hood lining.
    • Knit cuffs and waist.
    • Pouch pocket.
    • Curl edged seam detail

    ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"grayson-crewneck-sweatshirt-xl-white-226","links":{},"stock":{"item_id":226,"product_id":226,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xl-white-226.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"236","_score":1,"_source":{"id":236,"sku":"MH12-M-Red","name":"Ajax Full-Zip Sweatshirt -M-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

    \n

    • Mint striped full zip hoodie.
    • 100% bonded polyester fleece.
    • Pouch pocket.
    • Rib cuffs and hem.
    • Machine washable.

    ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ajax-full-zip-sweatshirt-m-red-236","links":{},"stock":{"item_id":236,"product_id":236,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-m-red-236.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"214","_score":1,"_source":{"id":214,"sku":"MH11-XS-White","name":"Grayson Crewneck Sweatshirt -XS-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

    \n

    • Cream crewneck sweatshirt with black accents.
    • 80% cotton/20% polyester fleece.
    • Patterned knit hood lining.
    • Knit cuffs and waist.
    • Pouch pocket.
    • Curl edged seam detail

    ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"grayson-crewneck-sweatshirt-xs-white-214","links":{},"stock":{"item_id":214,"product_id":214,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xs-white-214.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"233","_score":1,"_source":{"id":233,"sku":"MH12-S-Red","name":"Ajax Full-Zip Sweatshirt -S-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

    \n

    • Mint striped full zip hoodie.
    • 100% bonded polyester fleece.
    • Pouch pocket.
    • Rib cuffs and hem.
    • Machine washable.

    ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ajax-full-zip-sweatshirt-s-red-233","links":{},"stock":{"item_id":233,"product_id":233,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-s-red-233.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"238","_score":1,"_source":{"id":238,"sku":"MH12-L-Green","name":"Ajax Full-Zip Sweatshirt -L-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

    \n

    • Mint striped full zip hoodie.
    • 100% bonded polyester fleece.
    • Pouch pocket.
    • Rib cuffs and hem.
    • Machine washable.

    ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ajax-full-zip-sweatshirt-l-green-238","links":{},"stock":{"item_id":238,"product_id":238,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-l-green-238.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"103","_score":1,"_source":{"id":103,"sku":"MH04-S-Green","name":"Frankie Sweatshirt-S-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

    \n

    • Light green crewneck sweatshirt.
    • Hand pockets.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"frankie-sweatshirt-s-green-103","links":{},"stock":{"item_id":103,"product_id":103,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-s-green-103.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"117","_score":1,"_source":{"id":117,"sku":"MH05-XS-Red","name":"Hollister Backyard Sweatshirt-XS-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

    Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

    \n

    • Cream crewneck sweatshirt with navy sleeves/trim.
    • Relaxed fit.
    • Ribbed cuffs and hem.
    • Machine wash/dry.

    ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hollister-backyard-sweatshirt-xs-red-117","links":{},"stock":{"item_id":117,"product_id":117,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xs-red-117.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"127","_score":1,"_source":{"id":127,"sku":"MH05-L-White","name":"Hollister Backyard Sweatshirt-L-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

    Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

    \n

    • Cream crewneck sweatshirt with navy sleeves/trim.
    • Relaxed fit.
    • Ribbed cuffs and hem.
    • Machine wash/dry.

    ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hollister-backyard-sweatshirt-l-white-127","links":{},"stock":{"item_id":127,"product_id":127,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-l-white-127.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"136","_score":1,"_source":{"id":136,"sku":"MH06-S-Blue","name":"Stark Fundamental Hoodie-S-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

    \n

    • Navy specked full zip hoodie.
    • Ribbed cuffs, banded waist.
    • Side pockets.
    • Machine wash/dry.

    ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stark-fundamental-hoodie-s-blue-136","links":{},"stock":{"item_id":136,"product_id":136,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-s-blue-136.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"160","_score":1,"_source":{"id":160,"sku":"MH07-XL-Black","name":"Hero Hoodie-XL-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

    Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

    \n

    • Full-zip gray and black hoodie.
    • Ribbed hem.
    • Standard fit.
    • Drawcord hood cinch.
    • Water-resistant coating.

    ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hero-hoodie-xl-black-160","links":{},"stock":{"item_id":160,"product_id":160,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xl-black-160.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"168","_score":1,"_source":{"id":168,"sku":"MH08-S-Purple","name":"Oslo Trek Hoodie-S-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

    \n

    • Brown hoodie with black detail.
    • Pullover.
    • Adjustable drawstring hood.
    • Ribbed cuffs/waistband.
    • Machine wash/dry.

    ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"oslo-trek-hoodie-s-purple-168","links":{},"stock":{"item_id":168,"product_id":168,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-s-purple-168.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"164","_score":1,"_source":{"id":164,"sku":"MH08-XS-Brown","name":"Oslo Trek Hoodie-XS-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

    \n

    • Brown hoodie with black detail.
    • Pullover.
    • Adjustable drawstring hood.
    • Ribbed cuffs/waistband.
    • Machine wash/dry.

    ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xs-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"oslo-trek-hoodie-xs-brown-164","links":{},"stock":{"item_id":164,"product_id":164,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xs-brown-164.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"157","_score":1,"_source":{"id":157,"sku":"MH07-L-Black","name":"Hero Hoodie-L-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

    Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

    \n

    • Full-zip gray and black hoodie.
    • Ribbed hem.
    • Standard fit.
    • Drawcord hood cinch.
    • Water-resistant coating.

    ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hero-hoodie-l-black-157","links":{},"stock":{"item_id":157,"product_id":157,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-l-black-157.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"137","_score":1,"_source":{"id":137,"sku":"MH06-S-Purple","name":"Stark Fundamental Hoodie-S-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

    \n

    • Navy specked full zip hoodie.
    • Ribbed cuffs, banded waist.
    • Side pockets.
    • Machine wash/dry.

    ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stark-fundamental-hoodie-s-purple-137","links":{},"stock":{"item_id":137,"product_id":137,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-s-purple-137.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"142","_score":1,"_source":{"id":142,"sku":"MH06-L-Blue","name":"Stark Fundamental Hoodie-L-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

    \n

    • Navy specked full zip hoodie.
    • Ribbed cuffs, banded waist.
    • Side pockets.
    • Machine wash/dry.

    ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stark-fundamental-hoodie-l-blue-142","links":{},"stock":{"item_id":142,"product_id":142,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-l-blue-142.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"146","_score":1,"_source":{"id":146,"sku":"MH06-XL-Purple","name":"Stark Fundamental Hoodie-XL-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

    \n

    • Navy specked full zip hoodie.
    • Ribbed cuffs, banded waist.
    • Side pockets.
    • Machine wash/dry.

    ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"stark-fundamental-hoodie-xl-purple-146","links":{},"stock":{"item_id":146,"product_id":146,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xl-purple-146.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"191","_score":1,"_source":{"id":191,"sku":"MH09-L-Red","name":"Abominable Hoodie-L-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

    \n

    • Blue heather hoodie.
    • Relaxed fit.
    • Moisture-wicking.
    • Machine wash/dry.

    ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"abominable-hoodie-l-red-191","links":{},"stock":{"item_id":191,"product_id":191,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-l-red-191.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"200","_score":1,"_source":{"id":200,"sku":"MH10-S-Blue","name":"Mach Street Sweatshirt -S-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

    \n

    • Navy heather crewneck sweatshirt.
    • LumaTech™ moisture-wicking fabric.
    • Antimicrobial, odor-resistant.
    • Zip hand pockets.
    • Chafe-resistant flatlock seams.
    • Rib-knit cuffs and hem.

    ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mach-street-sweatshirt-s-blue-200","links":{},"stock":{"item_id":200,"product_id":200,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-s-blue-200.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"248","_score":1,"_source":{"id":248,"sku":"MH13-S-Green","name":"Marco Lightweight Active Hoodie-S-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

    \n

    • Light blue heather full zip hoodie.
    • Fitted flatlock seams.
    • Matching lining and drawstring.
    • Machine wash/dry.

    ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"marco-lightweight-active-hoodie-s-green-248","links":{},"stock":{"item_id":248,"product_id":248,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-s-green-248.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"244","_score":1,"_source":{"id":244,"sku":"MH13-XS-Blue","name":"Marco Lightweight Active Hoodie-XS-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

    \n

    • Light blue heather full zip hoodie.
    • Fitted flatlock seams.
    • Matching lining and drawstring.
    • Machine wash/dry.

    ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"marco-lightweight-active-hoodie-xs-blue-244","links":{},"stock":{"item_id":244,"product_id":244,"stock_id":1,"qty":53,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xs-blue-244.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"101","_score":1,"_source":{"id":101,"sku":"MH04-XS-White","name":"Frankie Sweatshirt-XS-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

    \n

    • Light green crewneck sweatshirt.
    • Hand pockets.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"frankie-sweatshirt-xs-white-101","links":{},"stock":{"item_id":101,"product_id":101,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xs-white-101.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"113","_score":1,"_source":{"id":113,"sku":"MH04-XL-White","name":"Frankie Sweatshirt-XL-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

    \n

    • Light green crewneck sweatshirt.
    • Hand pockets.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"frankie-sweatshirt-xl-white-113","links":{},"stock":{"item_id":113,"product_id":113,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xl-white-113.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"135","_score":1,"_source":{"id":135,"sku":"MH06-S-Black","name":"Stark Fundamental Hoodie-S-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

    \n

    • Navy specked full zip hoodie.
    • Ribbed cuffs, banded waist.
    • Side pockets.
    • Machine wash/dry.

    ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stark-fundamental-hoodie-s-black-135","links":{},"stock":{"item_id":135,"product_id":135,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-s-black-135.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"344","_score":1,"_source":{"id":344,"sku":"MJ09-S-White","name":"Taurus Elements Shell-S-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

    \n

    • Yellow 1/4 zip pullover.
    • Two chest pockets.
    • Standard fit.
    • Waterproof, breathable, seam sealed.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"taurus-elements-shell-s-white-344","links":{},"stock":{"item_id":344,"product_id":344,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-s-white-344.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"339","_score":1,"_source":{"id":339,"sku":"MJ08","name":"Lando Gym Jacket","attribute_set_id":9,"price":99,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":99,"description":"

    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

    \n

    • Gray polyester/spandex full zip jacket with orange lining.
    • Right pocket device storage.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"lando-gym-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[151,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[125,128,129],"pattern":"197","climate":[203,204,210,211],"slug":"lando-gym-jacket-339","links":{},"stock":{"item_id":339,"product_id":339,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ08-XS-Blue","id":324,"status":1,"name":"Lando Gym Jacket-XS-Blue","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"50","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","url_key":"lando-gym-jacket-xs-blue","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-XS-Gray","id":325,"status":1,"name":"Lando Gym Jacket-XS-Gray","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"52","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","url_key":"lando-gym-jacket-xs-gray","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-XS-Green","id":326,"status":1,"name":"Lando Gym Jacket-XS-Green","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"53","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","url_key":"lando-gym-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-S-Blue","id":327,"status":1,"name":"Lando Gym Jacket-S-Blue","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"50","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","url_key":"lando-gym-jacket-s-blue","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-S-Gray","id":328,"status":1,"name":"Lando Gym Jacket-S-Gray","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"52","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","url_key":"lando-gym-jacket-s-gray","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-S-Green","id":329,"status":1,"name":"Lando Gym Jacket-S-Green","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"53","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","url_key":"lando-gym-jacket-s-green","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-M-Blue","id":330,"status":1,"name":"Lando Gym Jacket-M-Blue","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"50","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","url_key":"lando-gym-jacket-m-blue","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-M-Gray","id":331,"status":1,"name":"Lando Gym Jacket-M-Gray","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"52","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","url_key":"lando-gym-jacket-m-gray","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-M-Green","id":332,"status":1,"name":"Lando Gym Jacket-M-Green","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"53","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","url_key":"lando-gym-jacket-m-green","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-L-Blue","id":333,"status":1,"name":"Lando Gym Jacket-L-Blue","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"50","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","url_key":"lando-gym-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-L-Gray","id":334,"status":1,"name":"Lando Gym Jacket-L-Gray","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"52","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","url_key":"lando-gym-jacket-l-gray","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-L-Green","id":335,"status":1,"name":"Lando Gym Jacket-L-Green","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"53","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","url_key":"lando-gym-jacket-l-green","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-XL-Blue","id":336,"status":1,"name":"Lando Gym Jacket-XL-Blue","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"50","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","url_key":"lando-gym-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-XL-Gray","id":337,"status":1,"name":"Lando Gym Jacket-XL-Gray","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"52","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","url_key":"lando-gym-jacket-xl-gray","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-XL-Green","id":338,"status":1,"name":"Lando Gym Jacket-XL-Green","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"53","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","url_key":"lando-gym-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001}],"configurable_options":[{"id":37,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":339,"attribute_code":"color"},{"id":36,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":339,"attribute_code":"size"}],"color_options":[50,52,53],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-339.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"362","_score":1,"_source":{"id":362,"sku":"MJ10-M-Black","name":"Mars HeatTech™ Pullover-M-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

    \n

    • Red 1/4 zip pullover.
    • Adjustable VELCRO® sleeve cuffs.
    • Two hand pockets.
    • Napoleon pocket.
    • Machine wash/dry

    ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mars-heattech-and-trade-pullover-m-black-362","links":{},"stock":{"item_id":362,"product_id":362,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-m-black-362.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"367","_score":1,"_source":{"id":367,"sku":"MJ10-L-Red","name":"Mars HeatTech™ Pullover-L-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

    \n

    • Red 1/4 zip pullover.
    • Adjustable VELCRO® sleeve cuffs.
    • Two hand pockets.
    • Napoleon pocket.
    • Machine wash/dry

    ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mars-heattech-and-trade-pullover-l-red-367","links":{},"stock":{"item_id":367,"product_id":367,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-l-red-367.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"368","_score":1,"_source":{"id":368,"sku":"MJ10-XL-Black","name":"Mars HeatTech™ Pullover-XL-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

    \n

    • Red 1/4 zip pullover.
    • Adjustable VELCRO® sleeve cuffs.
    • Two hand pockets.
    • Napoleon pocket.
    • Machine wash/dry

    ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mars-heattech-and-trade-pullover-xl-black-368","links":{},"stock":{"item_id":368,"product_id":368,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xl-black-368.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"378","_score":1,"_source":{"id":378,"sku":"MJ11-M-Black","name":"Typhon Performance Fleece-lined Jacket-M-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

    \n

    • Black full-zip flight jacket.
    • Cocona® wicking fiber.
    • Machine wash/dry.

    ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"typhon-performance-fleece-lined-jacket-m-black-378","links":{},"stock":{"item_id":378,"product_id":378,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-m-black-378.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"363","_score":1,"_source":{"id":363,"sku":"MJ10-M-Orange","name":"Mars HeatTech™ Pullover-M-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

    \n

    • Red 1/4 zip pullover.
    • Adjustable VELCRO® sleeve cuffs.
    • Two hand pockets.
    • Napoleon pocket.
    • Machine wash/dry

    ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mars-heattech-and-trade-pullover-m-orange-363","links":{},"stock":{"item_id":363,"product_id":363,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-m-orange-363.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"396","_score":1,"_source":{"id":396,"sku":"MJ06-M-Purple","name":"Jupiter All-Weather Trainer -M-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

    \n

    • Relaxed fit.
    • Hand pockets.
    • Machine wash/dry.
    • Reflective safety trim.

    ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jupiter-all-weather-trainer-m-purple-396","links":{},"stock":{"item_id":396,"product_id":396,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-m-purple-396.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"262","_score":1,"_source":{"id":262,"sku":"MJ01-XS-Yellow","name":"Beaumont Summit Kit-XS-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

    \n

    • Yellow full zip rain jacket.
    • Full-zip front.
    • Stand-up collar.
    • Elasticized cuffs.
    • Machine wash/dry.

    ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"beaumont-summit-kit-xs-yellow-262","links":{},"stock":{"item_id":262,"product_id":262,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xs-yellow-262.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"274","_score":1,"_source":{"id":274,"sku":"MJ01-XL-Yellow","name":"Beaumont Summit Kit-XL-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

    \n

    • Yellow full zip rain jacket.
    • Full-zip front.
    • Stand-up collar.
    • Elasticized cuffs.
    • Machine wash/dry.

    ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"beaumont-summit-kit-xl-yellow-274","links":{},"stock":{"item_id":274,"product_id":274,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xl-yellow-274.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"273","_score":1,"_source":{"id":273,"sku":"MJ01-XL-Red","name":"Beaumont Summit Kit-XL-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

    \n

    • Yellow full zip rain jacket.
    • Full-zip front.
    • Stand-up collar.
    • Elasticized cuffs.
    • Machine wash/dry.

    ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"beaumont-summit-kit-xl-red-273","links":{},"stock":{"item_id":273,"product_id":273,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xl-red-273.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"278","_score":1,"_source":{"id":278,"sku":"MJ02-XS-Red","name":"Hyperion Elements Jacket-XS-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

    \n

    • Lime 1/4 zip pullover.
    • Split pocket.
    • Thumb holes.
    • Machine wash/hang to dry.

    ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hyperion-elements-jacket-xs-red-278","links":{},"stock":{"item_id":278,"product_id":278,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xs-red-278.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"276","_score":1,"_source":{"id":276,"sku":"MJ02-XS-Green","name":"Hyperion Elements Jacket-XS-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

    \n

    • Lime 1/4 zip pullover.
    • Split pocket.
    • Thumb holes.
    • Machine wash/hang to dry.

    ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hyperion-elements-jacket-xs-green-276","links":{},"stock":{"item_id":276,"product_id":276,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xs-green-276.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"283","_score":1,"_source":{"id":283,"sku":"MJ02-M-Orange","name":"Hyperion Elements Jacket-M-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

    \n

    • Lime 1/4 zip pullover.
    • Split pocket.
    • Thumb holes.
    • Machine wash/hang to dry.

    ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hyperion-elements-jacket-m-orange-283","links":{},"stock":{"item_id":283,"product_id":283,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-m-orange-283.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"281","_score":1,"_source":{"id":281,"sku":"MJ02-S-Red","name":"Hyperion Elements Jacket-S-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

    \n

    • Lime 1/4 zip pullover.
    • Split pocket.
    • Thumb holes.
    • Machine wash/hang to dry.

    ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hyperion-elements-jacket-s-red-281","links":{},"stock":{"item_id":281,"product_id":281,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-s-red-281.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"282","_score":1,"_source":{"id":282,"sku":"MJ02-M-Green","name":"Hyperion Elements Jacket-M-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

    \n

    • Lime 1/4 zip pullover.
    • Split pocket.
    • Thumb holes.
    • Machine wash/hang to dry.

    ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hyperion-elements-jacket-m-green-282","links":{},"stock":{"item_id":282,"product_id":282,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-m-green-282.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"402","_score":1,"_source":{"id":402,"sku":"MJ06-XL-Purple","name":"Jupiter All-Weather Trainer -XL-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

    \n

    • Relaxed fit.
    • Hand pockets.
    • Machine wash/dry.
    • Reflective safety trim.

    ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jupiter-all-weather-trainer-xl-purple-402","links":{},"stock":{"item_id":402,"product_id":402,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xl-purple-402.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"413","_score":1,"_source":{"id":413,"sku":"MJ03-L-Black","name":"Montana Wind Jacket-L-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

    \n

    Adjustable hood.
    Split pocket.
    Thumb holes.
    Machine wash/hang to dry.

    ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"montana-wind-jacket-l-black-413","links":{},"stock":{"item_id":413,"product_id":413,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-l-black-413.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"405","_score":1,"_source":{"id":405,"sku":"MJ03-XS-Green","name":"Montana Wind Jacket-XS-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

    \n

    Adjustable hood.
    Split pocket.
    Thumb holes.
    Machine wash/hang to dry.

    ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"montana-wind-jacket-xs-green-405","links":{},"stock":{"item_id":405,"product_id":405,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xs-green-405.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"406","_score":1,"_source":{"id":406,"sku":"MJ03-XS-Red","name":"Montana Wind Jacket-XS-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

    \n

    Adjustable hood.
    Split pocket.
    Thumb holes.
    Machine wash/hang to dry.

    ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"montana-wind-jacket-xs-red-406","links":{},"stock":{"item_id":406,"product_id":406,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xs-red-406.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"427","_score":1,"_source":{"id":427,"sku":"MJ12-M-Blue","name":"Proteus Fitness Jackshirt-M-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

    \n

    • 1/4 zip. Stand-up collar.
    • Machine wash/dry.
    • Quilted inner layer.

    ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"proteus-fitness-jackshirt-m-blue-427","links":{},"stock":{"item_id":427,"product_id":427,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-m-blue-427.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"432","_score":1,"_source":{"id":432,"sku":"MJ12-XL-Black","name":"Proteus Fitness Jackshirt-XL-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

    \n

    • 1/4 zip. Stand-up collar.
    • Machine wash/dry.
    • Quilted inner layer.

    ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"proteus-fitness-jackshirt-xl-black-432","links":{},"stock":{"item_id":432,"product_id":432,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xl-black-432.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"303","_score":1,"_source":{"id":303,"sku":"MJ04-L-Purple","name":"Kenobi Trail Jacket-L-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

    \n

    • Black 1/4 zip pullover with royal zipper.
    • Adjustable hood and sleeve cuffs.
    • Machine wash/air dry.

    ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"kenobi-trail-jacket-l-purple-303","links":{},"stock":{"item_id":303,"product_id":303,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-l-purple-303.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"350","_score":1,"_source":{"id":350,"sku":"MJ09-L-White","name":"Taurus Elements Shell-L-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

    \n

    • Yellow 1/4 zip pullover.
    • Two chest pockets.
    • Standard fit.
    • Waterproof, breathable, seam sealed.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"taurus-elements-shell-l-white-350","links":{},"stock":{"item_id":350,"product_id":350,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-l-white-350.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"311","_score":1,"_source":{"id":311,"sku":"MJ07-S-Black","name":"Orion Two-Tone Fitted Jacket-S-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

    \n

    • Red full zip fleece with gray insets.
    • Double-knit construction.
    • Full athletic cut.
    • Set in sleeves.
    • Front pouch pocket.

    ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"orion-two-tone-fitted-jacket-s-black-311","links":{},"stock":{"item_id":311,"product_id":311,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-s-black-311.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"331","_score":1,"_source":{"id":331,"sku":"MJ08-M-Gray","name":"Lando Gym Jacket-M-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

    \n

    • Gray polyester/spandex full zip jacket with orange lining.
    • Right pocket device storage.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lando-gym-jacket-m-gray-331","links":{},"stock":{"item_id":331,"product_id":331,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-m-gray-331.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"317","_score":1,"_source":{"id":317,"sku":"MJ07-L-Black","name":"Orion Two-Tone Fitted Jacket-L-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

    \n

    • Red full zip fleece with gray insets.
    • Double-knit construction.
    • Full athletic cut.
    • Set in sleeves.
    • Front pouch pocket.

    ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"orion-two-tone-fitted-jacket-l-black-317","links":{},"stock":{"item_id":317,"product_id":317,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-l-black-317.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"324","_score":1,"_source":{"id":324,"sku":"MJ08-XS-Blue","name":"Lando Gym Jacket-XS-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

    \n

    • Gray polyester/spandex full zip jacket with orange lining.
    • Right pocket device storage.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lando-gym-jacket-xs-blue-324","links":{},"stock":{"item_id":324,"product_id":324,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xs-blue-324.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"357","_score":1,"_source":{"id":357,"sku":"MJ10-XS-Orange","name":"Mars HeatTech™ Pullover-XS-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

    \n

    • Red 1/4 zip pullover.
    • Adjustable VELCRO® sleeve cuffs.
    • Two hand pockets.
    • Napoleon pocket.
    • Machine wash/dry

    ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mars-heattech-and-trade-pullover-xs-orange-357","links":{},"stock":{"item_id":357,"product_id":357,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xs-orange-357.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"361","_score":1,"_source":{"id":361,"sku":"MJ10-S-Red","name":"Mars HeatTech™ Pullover-S-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

    \n

    • Red 1/4 zip pullover.
    • Adjustable VELCRO® sleeve cuffs.
    • Two hand pockets.
    • Napoleon pocket.
    • Machine wash/dry

    ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mars-heattech-and-trade-pullover-s-red-361","links":{},"stock":{"item_id":361,"product_id":361,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-s-red-361.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"309","_score":1,"_source":{"id":309,"sku":"MJ07-XS-Red","name":"Orion Two-Tone Fitted Jacket-XS-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

    \n

    • Red full zip fleece with gray insets.
    • Double-knit construction.
    • Full athletic cut.
    • Set in sleeves.
    • Front pouch pocket.

    ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"orion-two-tone-fitted-jacket-xs-red-309","links":{},"stock":{"item_id":309,"product_id":309,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xs-red-309.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"483","_score":1,"_source":{"id":483,"sku":"MS09","name":"Ryker LumaTech™ Tee (Crew-neck)","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":32,"description":"

    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

    \n

    • Royal polyester tee with black accents.
    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ryker-lumatech-trade-tee-crew-neck","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"ryker-lumatech-and-trade-tee-crew-neck-483","links":{},"stock":{"item_id":483,"product_id":483,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS09-XS-Black","id":468,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-black","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-XS-Blue","id":469,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-XS-Red","id":470,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"58","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-S-Black","id":471,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-S-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-s-black","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-S-Blue","id":472,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-S-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-s-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-S-Red","id":473,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-S-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"58","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-s-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-M-Black","id":474,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-M-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-m-black","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-M-Blue","id":475,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-M-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-m-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-M-Red","id":476,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-M-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"58","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-m-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-L-Black","id":477,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-L-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-l-black","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-L-Blue","id":478,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-L-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-l-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-L-Red","id":479,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-L-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"58","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-l-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-XL-Black","id":480,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-black","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-XL-Blue","id":481,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-XL-Red","id":482,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"58","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001}],"configurable_options":[{"id":55,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":483,"attribute_code":"color"},{"id":54,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":483,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-483.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"451","_score":1,"_source":{"id":451,"sku":"MS04","name":"Gobi HeatTec® Tee","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

    \n

    • Orange micropolyester shirt.
    • HeatTec® wicking fabric.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"gobi-heattec-reg-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,152,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"gobi-heattec-and-reg-tee-451","links":{},"stock":{"item_id":451,"product_id":451,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS04-XS-Black","id":436,"status":1,"name":"Gobi HeatTec® Tee-XS-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","url_key":"gobi-heattec-reg-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MS04-XS-Orange","id":437,"status":1,"name":"Gobi HeatTec® Tee-XS-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"56","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","url_key":"gobi-heattec-reg-tee-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"MS04-XS-Red","id":438,"status":1,"name":"Gobi HeatTec® Tee-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"58","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","url_key":"gobi-heattec-reg-tee-xs-red","msrp_display_actual_price_type":"0"},{"sku":"MS04-S-Black","id":439,"status":1,"name":"Gobi HeatTec® Tee-S-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","url_key":"gobi-heattec-reg-tee-s-black","msrp_display_actual_price_type":"0"},{"sku":"MS04-S-Orange","id":440,"status":1,"name":"Gobi HeatTec® Tee-S-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"56","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","url_key":"gobi-heattec-reg-tee-s-orange","msrp_display_actual_price_type":"0"},{"sku":"MS04-S-Red","id":441,"status":1,"name":"Gobi HeatTec® Tee-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"58","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","url_key":"gobi-heattec-reg-tee-s-red","msrp_display_actual_price_type":"0"},{"sku":"MS04-M-Black","id":442,"status":1,"name":"Gobi HeatTec® Tee-M-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","url_key":"gobi-heattec-reg-tee-m-black","msrp_display_actual_price_type":"0"},{"sku":"MS04-M-Orange","id":443,"status":1,"name":"Gobi HeatTec® Tee-M-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"56","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","url_key":"gobi-heattec-reg-tee-m-orange","msrp_display_actual_price_type":"0"},{"sku":"MS04-M-Red","id":444,"status":1,"name":"Gobi HeatTec® Tee-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"58","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","url_key":"gobi-heattec-reg-tee-m-red","msrp_display_actual_price_type":"0"},{"sku":"MS04-L-Black","id":445,"status":1,"name":"Gobi HeatTec® Tee-L-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","url_key":"gobi-heattec-reg-tee-l-black","msrp_display_actual_price_type":"0"},{"sku":"MS04-L-Orange","id":446,"status":1,"name":"Gobi HeatTec® Tee-L-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"56","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","url_key":"gobi-heattec-reg-tee-l-orange","msrp_display_actual_price_type":"0"},{"sku":"MS04-L-Red","id":447,"status":1,"name":"Gobi HeatTec® Tee-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"58","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","url_key":"gobi-heattec-reg-tee-l-red","msrp_display_actual_price_type":"0"},{"sku":"MS04-XL-Black","id":448,"status":1,"name":"Gobi HeatTec® Tee-XL-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","url_key":"gobi-heattec-reg-tee-xl-black","msrp_display_actual_price_type":"0"},{"sku":"MS04-XL-Orange","id":449,"status":1,"name":"Gobi HeatTec® Tee-XL-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"56","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","url_key":"gobi-heattec-reg-tee-xl-orange","msrp_display_actual_price_type":"0"},{"sku":"MS04-XL-Red","id":450,"status":1,"name":"Gobi HeatTec® Tee-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"58","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","url_key":"gobi-heattec-reg-tee-xl-red","msrp_display_actual_price_type":"0"}],"configurable_options":[{"id":51,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":451,"attribute_code":"color"},{"id":50,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":451,"attribute_code":"size"}],"color_options":[49,56,58],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-451.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"480","_score":1,"_source":{"id":480,"sku":"MS09-XL-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

    \n

    • Royal polyester tee with black accents.
    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-crew-neck-xl-black-480","links":{},"stock":{"item_id":480,"product_id":480,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xl-black-480.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"471","_score":1,"_source":{"id":471,"sku":"MS09-S-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-S-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

    \n

    • Royal polyester tee with black accents.
    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-crew-neck-s-black-471","links":{},"stock":{"item_id":471,"product_id":471,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-s-black-471.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"463","_score":1,"_source":{"id":463,"sku":"MS05-L-Purple","name":"Helios EverCool™ Tee-L-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

    \n

    • Teal quick dry tee.
    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helios-evercool-and-trade-tee-l-purple-463","links":{},"stock":{"item_id":463,"product_id":463,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-l-purple-463.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"494","_score":1,"_source":{"id":494,"sku":"MS11-L-Green","name":"Atomic Endurance Running Tee (V-neck)-L-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

    \n

    • Lime heathered v-neck tee.
    • Ultra-lightweight.
    • Moisture-wicking Cocona® fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-v-neck-l-green-494","links":{},"stock":{"item_id":494,"product_id":494,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-l-green-494.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"490","_score":1,"_source":{"id":490,"sku":"MS11-M-Blue","name":"Atomic Endurance Running Tee (V-neck)-M-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

    \n

    • Lime heathered v-neck tee.
    • Ultra-lightweight.
    • Moisture-wicking Cocona® fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-v-neck-m-blue-490","links":{},"stock":{"item_id":490,"product_id":490,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-m-blue-490.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"482","_score":1,"_source":{"id":482,"sku":"MS09-XL-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

    \n

    • Royal polyester tee with black accents.
    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-crew-neck-xl-red-482","links":{},"stock":{"item_id":482,"product_id":482,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xl-red-482.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"489","_score":1,"_source":{"id":489,"sku":"MS11-S-Yellow","name":"Atomic Endurance Running Tee (V-neck)-S-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

    \n

    • Lime heathered v-neck tee.
    • Ultra-lightweight.
    • Moisture-wicking Cocona® fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-v-neck-s-yellow-489","links":{},"stock":{"item_id":489,"product_id":489,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-s-yellow-489.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"523","_score":1,"_source":{"id":523,"sku":"MS03-M-Green","name":"Balboa Persistence Tee-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

    \n

    • Crew neckline.
    • Semi-fitted.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"balboa-persistence-tee-m-green-523","links":{},"stock":{"item_id":523,"product_id":523,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-m-green-523.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"514","_score":1,"_source":{"id":514,"sku":"MS12-XL-Red","name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

    \n

    • Red polyester tee.
    • Crew neckline.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-crew-neck-xl-red-514","links":{},"stock":{"item_id":514,"product_id":514,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xl-red-514.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"508","_score":1,"_source":{"id":508,"sku":"MS12-M-Red","name":"Atomic Endurance Running Tee (Crew-Neck)-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

    \n

    • Red polyester tee.
    • Crew neckline.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-crew-neck-m-red-508","links":{},"stock":{"item_id":508,"product_id":508,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-m-red-508.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"528","_score":1,"_source":{"id":528,"sku":"MS03-XL-Gray","name":"Balboa Persistence Tee-XL-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

    \n

    • Crew neckline.
    • Semi-fitted.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"balboa-persistence-tee-xl-gray-528","links":{},"stock":{"item_id":528,"product_id":528,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xl-gray-528.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"522","_score":1,"_source":{"id":522,"sku":"MS03-M-Gray","name":"Balboa Persistence Tee-M-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

    \n

    • Crew neckline.
    • Semi-fitted.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"balboa-persistence-tee-m-gray-522","links":{},"stock":{"item_id":522,"product_id":522,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-m-gray-522.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"524","_score":1,"_source":{"id":524,"sku":"MS03-M-Orange","name":"Balboa Persistence Tee-M-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

    \n

    • Crew neckline.
    • Semi-fitted.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"balboa-persistence-tee-m-orange-524","links":{},"stock":{"item_id":524,"product_id":524,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-m-orange-524.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"519","_score":1,"_source":{"id":519,"sku":"MS03-S-Gray","name":"Balboa Persistence Tee-S-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

    \n

    • Crew neckline.
    • Semi-fitted.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"balboa-persistence-tee-s-gray-519","links":{},"stock":{"item_id":519,"product_id":519,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-s-gray-519.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"545","_score":1,"_source":{"id":545,"sku":"MS06-XL-Green","name":"Zoltan Gym Tee-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

    \n

    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoltan-gym-tee-xl-green-545","links":{},"stock":{"item_id":545,"product_id":545,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xl-green-545.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"507","_score":1,"_source":{"id":507,"sku":"MS12-M-Blue","name":"Atomic Endurance Running Tee (Crew-Neck)-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

    \n

    • Red polyester tee.
    • Crew neckline.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-crew-neck-m-blue-507","links":{},"stock":{"item_id":507,"product_id":507,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-m-blue-507.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"438","_score":1,"_source":{"id":438,"sku":"MS04-XS-Red","name":"Gobi HeatTec® Tee-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

    \n

    • Orange micropolyester shirt.
    • HeatTec® wicking fabric.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gobi-heattec-and-reg-tee-xs-red-438","links":{},"stock":{"item_id":438,"product_id":438,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xs-red-438.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"445","_score":1,"_source":{"id":445,"sku":"MS04-L-Black","name":"Gobi HeatTec® Tee-L-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

    \n

    • Orange micropolyester shirt.
    • HeatTec® wicking fabric.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gobi-heattec-and-reg-tee-l-black-445","links":{},"stock":{"item_id":445,"product_id":445,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-l-black-445.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"534","_score":1,"_source":{"id":534,"sku":"MS06-XS-Yellow","name":"Zoltan Gym Tee-XS-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

    \n

    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoltan-gym-tee-xs-yellow-534","links":{},"stock":{"item_id":534,"product_id":534,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xs-yellow-534.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"539","_score":1,"_source":{"id":539,"sku":"MS06-M-Green","name":"Zoltan Gym Tee-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

    \n

    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoltan-gym-tee-m-green-539","links":{},"stock":{"item_id":539,"product_id":539,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-m-green-539.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"453","_score":1,"_source":{"id":453,"sku":"MS05-XS-Blue","name":"Helios EverCool™ Tee-XS-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

    \n

    • Teal quick dry tee.
    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helios-evercool-and-trade-tee-xs-blue-453","links":{},"stock":{"item_id":453,"product_id":453,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xs-blue-453.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"611","_score":1,"_source":{"id":611,"sku":"MS07","name":"Deion Long-Sleeve EverCool™ Tee","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":39,"description":"

    When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

    \n

    • Fitted.
    • Contrast inner neck tape.
    • Machine wash/dry.

    ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"deion-long-sleeve-evercool-trade-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,153,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,204,205,209],"slug":"deion-long-sleeve-evercool-and-trade-tee-611","links":{},"stock":{"item_id":611,"product_id":611,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS07-XS-Black","id":596,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-XS-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MS07-XS-Green","id":597,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-XS-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"53","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-xs-green","msrp_display_actual_price_type":"0"},{"sku":"MS07-XS-White","id":598,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-XS-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"59","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-xs-white","msrp_display_actual_price_type":"0"},{"sku":"MS07-S-Black","id":599,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-S-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-s-black","msrp_display_actual_price_type":"0"},{"sku":"MS07-S-Green","id":600,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-S-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"53","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-s-green","msrp_display_actual_price_type":"0"},{"sku":"MS07-S-White","id":601,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-S-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"59","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-s-white","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS07-M-Black","id":602,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-M-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-m-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS07-M-Green","id":603,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-M-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"53","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-m-green","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS07-M-White","id":604,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-M-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"59","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-m-white","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS07-L-Black","id":605,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-L-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-l-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS07-L-Green","id":606,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-L-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"53","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-l-green","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS07-L-White","id":607,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-L-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"59","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-l-white","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS07-XL-Black","id":608,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-XL-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-xl-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS07-XL-Green","id":609,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-XL-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"53","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-xl-green","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS07-XL-White","id":610,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-XL-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"59","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-xl-white","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001}],"configurable_options":[{"id":71,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":59,"label":"White"}],"product_id":611,"attribute_code":"color"},{"id":70,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":611,"attribute_code":"size"}],"color_options":[49,53,59],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-611.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"643","_score":1,"_source":{"id":643,"sku":"MT01","name":"Erikssen CoolTech™ Fitness Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

    A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

    \n

    • Red performance tank.
    • Slight scoop neckline.
    • Reflectivity.
    • Machine wash/dry.

    ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"erikssen-cooltech-trade-fitness-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,152,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"erikssen-cooltech-and-trade-fitness-tank-643","links":{},"stock":{"item_id":643,"product_id":643,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT01-XS-Gray","id":628,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-XS-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"52","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-xs-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-XS-Orange","id":629,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-XS-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"56","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-xs-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-XS-Red","id":630,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"58","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-xs-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-S-Gray","id":631,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-S-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"52","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-s-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-S-Orange","id":632,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-S-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"56","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-s-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-S-Red","id":633,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"58","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-s-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-M-Gray","id":634,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-M-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"52","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-m-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-M-Orange","id":635,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-M-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"56","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-m-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-M-Red","id":636,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"58","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-m-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-L-Gray","id":637,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-L-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"52","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-l-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-L-Orange","id":638,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-L-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"56","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-l-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-L-Red","id":639,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"58","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-l-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-XL-Gray","id":640,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-XL-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"52","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-xl-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-XL-Orange","id":641,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-XL-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"56","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-xl-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-XL-Red","id":642,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"58","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-xl-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":75,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":643,"attribute_code":"color"},{"id":74,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":643,"attribute_code":"size"}],"color_options":[52,56,58],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-643.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"552","_score":1,"_source":{"id":552,"sku":"MS01-S-Brown","name":"Aero Daily Fitness Tee-S-Brown","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

    \n

    Relaxed fit.
    Short-Sleeve.
    Machine wash/dry.

    ","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-s-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"aero-daily-fitness-tee-s-brown-552","links":{},"stock":{"item_id":552,"product_id":552,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms01-brown_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-s-brown-552.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"566","_score":1,"_source":{"id":566,"sku":"MS02-XS-Gray","name":"Ryker LumaTech™ Tee (V-neck)-XS-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

    \n

    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-v-neck-xs-gray-566","links":{},"stock":{"item_id":566,"product_id":566,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xs-gray-566.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"565","_score":1,"_source":{"id":565,"sku":"MS02-XS-Blue","name":"Ryker LumaTech™ Tee (V-neck)-XS-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

    \n

    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-v-neck-xs-blue-565","links":{},"stock":{"item_id":565,"product_id":565,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xs-blue-565.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"568","_score":1,"_source":{"id":568,"sku":"MS02-S-Blue","name":"Ryker LumaTech™ Tee (V-neck)-S-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

    \n

    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-v-neck-s-blue-568","links":{},"stock":{"item_id":568,"product_id":568,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-s-blue-568.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"558","_score":1,"_source":{"id":558,"sku":"MS01-L-Brown","name":"Aero Daily Fitness Tee-L-Brown","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

    \n

    Relaxed fit.
    Short-Sleeve.
    Machine wash/dry.

    ","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-l-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"aero-daily-fitness-tee-l-brown-558","links":{},"stock":{"item_id":558,"product_id":558,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms01-brown_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-l-brown-558.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"576","_score":1,"_source":{"id":576,"sku":"MS02-XL-Black","name":"Ryker LumaTech™ Tee (V-neck)-XL-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

    \n

    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-v-neck-xl-black-576","links":{},"stock":{"item_id":576,"product_id":576,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xl-black-576.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"574","_score":1,"_source":{"id":574,"sku":"MS02-L-Blue","name":"Ryker LumaTech™ Tee (V-neck)-L-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

    \n

    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-v-neck-l-blue-574","links":{},"stock":{"item_id":574,"product_id":574,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-l-blue-574.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"580","_score":1,"_source":{"id":580,"sku":"MS10-XS-Black","name":"Logan HeatTec® Tee-XS-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

    \n

    • Semi-fitted.
    • Crew neckline.
    • Machine wash/tumble dry.

    ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"logan-heattec-and-reg-tee-xs-black-580","links":{},"stock":{"item_id":580,"product_id":580,"stock_id":1,"qty":8,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xs-black-580.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"600","_score":1,"_source":{"id":600,"sku":"MS07-S-Green","name":"Deion Long-Sleeve EverCool™ Tee-S-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

    \n

    • Fitted.
    • Contrast inner neck tape.
    • Machine wash/dry.

    ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"deion-long-sleeve-evercool-and-trade-tee-s-green-600","links":{},"stock":{"item_id":600,"product_id":600,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-s-green-600.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"605","_score":1,"_source":{"id":605,"sku":"MS07-L-Black","name":"Deion Long-Sleeve EverCool™ Tee-L-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

    \n

    • Fitted.
    • Contrast inner neck tape.
    • Machine wash/dry.

    ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"deion-long-sleeve-evercool-and-trade-tee-l-black-605","links":{},"stock":{"item_id":605,"product_id":605,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-l-black-605.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"615","_score":1,"_source":{"id":615,"sku":"MS08-S-Black","name":"Strike Endurance Tee-S-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

    \n

    • Loose fit.
    • Ribbed cuffs/collar.
    • Machine wash/dry.

    ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"strike-endurance-tee-s-black-615","links":{},"stock":{"item_id":615,"product_id":615,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-s-black-615.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"631","_score":1,"_source":{"id":631,"sku":"MT01-S-Gray","name":"Erikssen CoolTech™ Fitness Tank-S-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

    \n

    • Red performance tank.
    • Slight scoop neckline.
    • Reflectivity.
    • Machine wash/dry.

    ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erikssen-cooltech-and-trade-fitness-tank-s-gray-631","links":{},"stock":{"item_id":631,"product_id":631,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-s-gray-631.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"624","_score":1,"_source":{"id":624,"sku":"MS08-XL-Black","name":"Strike Endurance Tee-XL-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

    \n

    • Loose fit.
    • Ribbed cuffs/collar.
    • Machine wash/dry.

    ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"strike-endurance-tee-xl-black-624","links":{},"stock":{"item_id":624,"product_id":624,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xl-black-624.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"633","_score":1,"_source":{"id":633,"sku":"MT01-S-Red","name":"Erikssen CoolTech™ Fitness Tank-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

    \n

    • Red performance tank.
    • Slight scoop neckline.
    • Reflectivity.
    • Machine wash/dry.

    ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erikssen-cooltech-and-trade-fitness-tank-s-red-633","links":{},"stock":{"item_id":633,"product_id":633,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-s-red-633.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"640","_score":1,"_source":{"id":640,"sku":"MT01-XL-Gray","name":"Erikssen CoolTech™ Fitness Tank-XL-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

    \n

    • Red performance tank.
    • Slight scoop neckline.
    • Reflectivity.
    • Machine wash/dry.

    ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erikssen-cooltech-and-trade-fitness-tank-xl-gray-640","links":{},"stock":{"item_id":640,"product_id":640,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xl-gray-640.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"657","_score":1,"_source":{"id":657,"sku":"MT02-XL-Red","name":"Tristan Endurance Tank-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

    \n

    • White performance tank.
    • Stylish contrast stitching.
    • Relaxed fit.
    • Ribbed crew neckline.
    • Machine wash/dry.

    ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tristan-endurance-tank-xl-red-657","links":{},"stock":{"item_id":657,"product_id":657,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xl-red-657.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"683","_score":1,"_source":{"id":683,"sku":"MT05-S-Blue","name":"Rocco Gym Tank-S-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

    \n

    • Light blue heather gray tank.
    • Quick-drying, moisture-wicking.
    • 4-way stretch construction.
    • Flatlock seams prevent chafing.
    • Mesh at back for breathability.
    • 100% Polyester.
    • UPF 50 protection.

    ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"rocco-gym-tank-s-blue-683","links":{},"stock":{"item_id":683,"product_id":683,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-s-blue-683.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"596","_score":1,"_source":{"id":596,"sku":"MS07-XS-Black","name":"Deion Long-Sleeve EverCool™ Tee-XS-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

    \n

    • Fitted.
    • Contrast inner neck tape.
    • Machine wash/dry.

    ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"deion-long-sleeve-evercool-and-trade-tee-xs-black-596","links":{},"stock":{"item_id":596,"product_id":596,"stock_id":1,"qty":3,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xs-black-596.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"601","_score":1,"_source":{"id":601,"sku":"MS07-S-White","name":"Deion Long-Sleeve EverCool™ Tee-S-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

    \n

    • Fitted.
    • Contrast inner neck tape.
    • Machine wash/dry.

    ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"deion-long-sleeve-evercool-and-trade-tee-s-white-601","links":{},"stock":{"item_id":601,"product_id":601,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-s-white-601.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"554","_score":1,"_source":{"id":554,"sku":"MS01-M-Black","name":"Aero Daily Fitness Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

    \n

    Relaxed fit.
    Short-Sleeve.
    Machine wash/dry.

    ","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"aero-daily-fitness-tee-m-black-554","links":{},"stock":{"item_id":554,"product_id":554,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-m-black-554.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"589","_score":1,"_source":{"id":589,"sku":"MS10-L-Black","name":"Logan HeatTec® Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

    \n

    • Semi-fitted.
    • Crew neckline.
    • Machine wash/tumble dry.

    ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"logan-heattec-and-reg-tee-l-black-589","links":{},"stock":{"item_id":589,"product_id":589,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-l-black-589.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"694","_score":1,"_source":{"id":694,"sku":"MT07-XS-Gray","name":"Argus All-Weather Tank-XS-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

    The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

    \n

    • Dark gray polyester spandex tank.
    • Reflective details for nighttime visibility.
    • Stash pocket.
    • Anti-chafe flatlock seams.

    ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"argus-all-weather-tank-xs-gray-694","links":{},"stock":{"item_id":694,"product_id":694,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-xs-gray-694.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"697","_score":1,"_source":{"id":697,"sku":"MT07-L-Gray","name":"Argus All-Weather Tank-L-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

    The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

    \n

    • Dark gray polyester spandex tank.
    • Reflective details for nighttime visibility.
    • Stash pocket.
    • Anti-chafe flatlock seams.

    ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"argus-all-weather-tank-l-gray-697","links":{},"stock":{"item_id":697,"product_id":697,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-l-gray-697.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"659","_score":1,"_source":{"id":659,"sku":"MT02","name":"Tristan Endurance Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

    Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

    \n

    • White performance tank.
    • Stylish contrast stitching.
    • Relaxed fit.
    • Ribbed crew neckline.
    • Machine wash/dry.

    ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"tristan-endurance-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,149,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"tristan-endurance-tank-659","links":{},"stock":{"item_id":659,"product_id":659,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT02-XS-Gray","id":644,"status":1,"name":"Tristan Endurance Tank-XS-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"52","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","url_key":"tristan-endurance-tank-xs-gray","msrp_display_actual_price_type":"0"},{"sku":"MT02-XS-Red","id":645,"status":1,"name":"Tristan Endurance Tank-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"58","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","url_key":"tristan-endurance-tank-xs-red","msrp_display_actual_price_type":"0"},{"sku":"MT02-XS-White","id":646,"status":1,"name":"Tristan Endurance Tank-XS-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"59","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","url_key":"tristan-endurance-tank-xs-white","msrp_display_actual_price_type":"0"},{"sku":"MT02-S-Gray","id":647,"status":1,"name":"Tristan Endurance Tank-S-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"52","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","url_key":"tristan-endurance-tank-s-gray","msrp_display_actual_price_type":"0"},{"sku":"MT02-S-Red","id":648,"status":1,"name":"Tristan Endurance Tank-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"58","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","url_key":"tristan-endurance-tank-s-red","msrp_display_actual_price_type":"0"},{"sku":"MT02-S-White","id":649,"status":1,"name":"Tristan Endurance Tank-S-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"59","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","url_key":"tristan-endurance-tank-s-white","msrp_display_actual_price_type":"0"},{"sku":"MT02-M-Gray","id":650,"status":1,"name":"Tristan Endurance Tank-M-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"52","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","url_key":"tristan-endurance-tank-m-gray","msrp_display_actual_price_type":"0"},{"sku":"MT02-M-Red","id":651,"status":1,"name":"Tristan Endurance Tank-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"58","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","url_key":"tristan-endurance-tank-m-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT02-M-White","id":652,"status":1,"name":"Tristan Endurance Tank-M-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"59","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","url_key":"tristan-endurance-tank-m-white","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT02-L-Gray","id":653,"status":1,"name":"Tristan Endurance Tank-L-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"52","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","url_key":"tristan-endurance-tank-l-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT02-L-Red","id":654,"status":1,"name":"Tristan Endurance Tank-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"58","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","url_key":"tristan-endurance-tank-l-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT02-L-White","id":655,"status":1,"name":"Tristan Endurance Tank-L-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"59","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","url_key":"tristan-endurance-tank-l-white","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT02-XL-Gray","id":656,"status":1,"name":"Tristan Endurance Tank-XL-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"52","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","url_key":"tristan-endurance-tank-xl-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT02-XL-Red","id":657,"status":1,"name":"Tristan Endurance Tank-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"58","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","url_key":"tristan-endurance-tank-xl-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT02-XL-White","id":658,"status":1,"name":"Tristan Endurance Tank-XL-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"59","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","url_key":"tristan-endurance-tank-xl-white","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":77,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":659,"attribute_code":"color"},{"id":76,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":659,"attribute_code":"size"}],"color_options":[52,58,59],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-659.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"781","_score":1,"_source":{"id":781,"sku":"MP04","name":"Supernova Sport Pant","attribute_set_id":10,"price":45,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":45,"description":"

    Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

    \n

    • Dark heather gray straight leg cotton pants.
    • Relaxed fit.
    • Internal drawstring.
    • Machine wash/dry.

    ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"supernova-sport-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[202,203,204,208,210,211],"slug":"supernova-sport-pant-781","links":{},"stock":{"item_id":781,"product_id":781,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP04-32-Black","id":769,"status":1,"name":"Supernova Sport Pant-32-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"49","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","url_key":"supernova-sport-pant-32-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MP04-32-Gray","id":770,"status":1,"name":"Supernova Sport Pant-32-Gray","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"52","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","url_key":"supernova-sport-pant-32-gray","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MP04-32-Green","id":771,"status":1,"name":"Supernova Sport Pant-32-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"53","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","url_key":"supernova-sport-pant-32-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MP04-33-Black","id":772,"status":1,"name":"Supernova Sport Pant-33-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"49","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","url_key":"supernova-sport-pant-33-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MP04-33-Gray","id":773,"status":1,"name":"Supernova Sport Pant-33-Gray","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"52","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","url_key":"supernova-sport-pant-33-gray","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MP04-33-Green","id":774,"status":1,"name":"Supernova Sport Pant-33-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"53","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","url_key":"supernova-sport-pant-33-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MP04-34-Black","id":775,"status":1,"name":"Supernova Sport Pant-34-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"49","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","url_key":"supernova-sport-pant-34-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MP04-34-Gray","id":776,"status":1,"name":"Supernova Sport Pant-34-Gray","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"52","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","url_key":"supernova-sport-pant-34-gray","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MP04-34-Green","id":777,"status":1,"name":"Supernova Sport Pant-34-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"53","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","url_key":"supernova-sport-pant-34-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MP04-36-Black","id":778,"status":1,"name":"Supernova Sport Pant-36-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"49","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","url_key":"supernova-sport-pant-36-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MP04-36-Gray","id":779,"status":1,"name":"Supernova Sport Pant-36-Gray","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"52","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","url_key":"supernova-sport-pant-36-gray","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MP04-36-Green","id":780,"status":1,"name":"Supernova Sport Pant-36-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"53","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","url_key":"supernova-sport-pant-36-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001}],"configurable_options":[{"id":105,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":781,"attribute_code":"color"},{"id":104,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":781,"attribute_code":"size"}],"color_options":[49,52,53],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-781.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"729","_score":1,"_source":{"id":729,"sku":"MT12","name":"Cassius Sparring Tank","attribute_set_id":9,"price":18,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":18,"description":"

    Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

    \n

    • Royal crewneck cotton tank.
    • Contrast stitching.
    • Self fabric binding at neckline.
    • Slim fit.
    • 96% Merino / 4% LYCRA®.

    ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cassius-sparring-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"cassius-sparring-tank-729","links":{},"stock":{"item_id":729,"product_id":729,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT12-XS-Blue","id":724,"status":1,"name":"Cassius Sparring Tank-XS-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"50","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","url_key":"cassius-sparring-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001},{"sku":"MT12-S-Blue","id":725,"status":1,"name":"Cassius Sparring Tank-S-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"50","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","url_key":"cassius-sparring-tank-s-blue","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001},{"sku":"MT12-M-Blue","id":726,"status":1,"name":"Cassius Sparring Tank-M-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"50","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","url_key":"cassius-sparring-tank-m-blue","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001},{"sku":"MT12-L-Blue","id":727,"status":1,"name":"Cassius Sparring Tank-L-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"50","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","url_key":"cassius-sparring-tank-l-blue","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001},{"sku":"MT12-XL-Blue","id":728,"status":1,"name":"Cassius Sparring Tank-XL-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"50","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","url_key":"cassius-sparring-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001}],"configurable_options":[{"id":97,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"}],"product_id":729,"attribute_code":"color"},{"id":96,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":729,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-729.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"702","_score":1,"_source":{"id":702,"sku":"MT08-M-Green","name":"Sparta Gym Tank-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

    \n

    • Green polyester tank.
    • Ultra lightweight.
    • Naturally odor-resistant.
    • Close-to-body athletic fit.
    • Chafe-resistant flatlock seams.

    ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"sparta-gym-tank-m-green-702","links":{},"stock":{"item_id":702,"product_id":702,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-m-green-702.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"704","_score":1,"_source":{"id":704,"sku":"MT08-XL-Green","name":"Sparta Gym Tank-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

    \n

    • Green polyester tank.
    • Ultra lightweight.
    • Naturally odor-resistant.
    • Close-to-body athletic fit.
    • Chafe-resistant flatlock seams.

    ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"sparta-gym-tank-xl-green-704","links":{},"stock":{"item_id":704,"product_id":704,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-xl-green-704.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"739","_score":1,"_source":{"id":739,"sku":"MP01-36-Black","name":"Caesar Warm-Up Pant-36-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

    \n

    • Light gray heather knit straight leg pants.
    • Relaxed fit.
    • Inseam: 32\".
    • Machine wash/dry.
    • CoolTech™ wicking fabric.

    ","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"caesar-warm-up-pant-36-black-739","links":{},"stock":{"item_id":739,"product_id":739,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-36-black-739.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"722","_score":1,"_source":{"id":722,"sku":"MT11-XL-Blue","name":"Atlas Fitness Tank-XL-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

    From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

    \n

    • Teal scoop neck cotton tank.
    • Triblend, soft fabric.
    • Relaxed fit.

    ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atlas-fitness-tank-xl-blue-722","links":{},"stock":{"item_id":722,"product_id":722,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-xl-blue-722.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"738","_score":1,"_source":{"id":738,"sku":"MP01-34-Purple","name":"Caesar Warm-Up Pant-34-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

    \n

    • Light gray heather knit straight leg pants.
    • Relaxed fit.
    • Inseam: 32\".
    • Machine wash/dry.
    • CoolTech™ wicking fabric.

    ","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","color":"57","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"caesar-warm-up-pant-34-purple-738","links":{},"stock":{"item_id":738,"product_id":738,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-34-purple-738.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"735","_score":1,"_source":{"id":735,"sku":"MP01-33-Purple","name":"Caesar Warm-Up Pant-33-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

    \n

    • Light gray heather knit straight leg pants.
    • Relaxed fit.
    • Inseam: 32\".
    • Machine wash/dry.
    • CoolTech™ wicking fabric.

    ","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","color":"57","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"caesar-warm-up-pant-33-purple-735","links":{},"stock":{"item_id":735,"product_id":735,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-33-purple-735.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"730","_score":1,"_source":{"id":730,"sku":"MP01-32-Black","name":"Caesar Warm-Up Pant-32-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2018-02-11 12:04:31","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

    Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

    \r\n

    • Light gray heather knit straight leg pants.
    • Relaxed fit.
    • Inseam: 32\".
    • Machine wash/dry.
    • CoolTech™ wicking fabric.

    ","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-32-black","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"176","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"caesar-warm-up-pant-32-black-730","links":{},"stock":{"item_id":730,"product_id":730,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-02-21 16:07:12","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/m/p/mp01-black_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-32-black-730.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"826","_score":1,"_source":{"id":826,"sku":"MP08-33-Red","name":"Zeppelin Yoga Pant-33-Red","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001,"description":"

    Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

    \n

    • Smooth exterior for easy over-layering.
    • Brushed fleece interior insulates and wicks.
    • No-roll elastic waistband with inner drawstring.
    • Chafe-resistant flatlock seams.

    ","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"zeppelin-yoga-pant-33-red-826","links":{},"stock":{"item_id":826,"product_id":826,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-33-red-826.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"819","_score":1,"_source":{"id":819,"sku":"MP07-36-Purple","name":"Thorpe Track Pant-36-Purple","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

    Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

    \n

    • Moisture transfer properties.
    • 7% stretch.
    • Reflective safety trim.
    • Elastic drawcord waist.

    ","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","color":"57","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"thorpe-track-pant-36-purple-819","links":{},"stock":{"item_id":819,"product_id":819,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-36-purple-819.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"849","_score":1,"_source":{"id":849,"sku":"MP10-32-Green","name":"Orestes Yoga Pant -32-Green","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

    The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

    \n

    • A yoga essential.
    • Breathable stretch organic cotton/spandex.
    • Standard Fit.

    ","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-yoga-pant-32-green-849","links":{},"stock":{"item_id":849,"product_id":849,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-32-green-849.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"832","_score":1,"_source":{"id":832,"sku":"MP08-36-Red","name":"Zeppelin Yoga Pant-36-Red","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001,"description":"

    Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

    \n

    • Smooth exterior for easy over-layering.
    • Brushed fleece interior insulates and wicks.
    • No-roll elastic waistband with inner drawstring.
    • Chafe-resistant flatlock seams.

    ","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"zeppelin-yoga-pant-36-red-832","links":{},"stock":{"item_id":832,"product_id":832,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-36-red-832.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"845","_score":1,"_source":{"id":845,"sku":"MP09-36-Red","name":"Livingston All-Purpose Tight-36-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

    It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

    \n

    • Breathable stretch organic cotton/spandex.
    • Compression fit
    • Hidden key pocket
    • Elastic waist with internal drawcord.

    ","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","color":"58","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"livingston-all-purpose-tight-36-red-845","links":{},"stock":{"item_id":845,"product_id":845,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-36-red-845.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"825","_score":1,"_source":{"id":825,"sku":"MP08-33-Green","name":"Zeppelin Yoga Pant-33-Green","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001,"description":"

    Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

    \n

    • Smooth exterior for easy over-layering.
    • Brushed fleece interior insulates and wicks.
    • No-roll elastic waistband with inner drawstring.
    • Chafe-resistant flatlock seams.

    ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"zeppelin-yoga-pant-33-green-825","links":{},"stock":{"item_id":825,"product_id":825,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-33-green-825.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"764","_score":1,"_source":{"id":764,"sku":"MP03-34-Red","name":"Geo Insulated Jogging Pant-34-Red","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

    \n

    • Black polyester spandex pants with zipper pockets.
    • Reflective safety accents.
    • Loose fit.
    • On-seam pockets.
    • 8\" leg zips. 32\" inseam.
    • Machine wash/dry.

    ","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"geo-insulated-jogging-pant-34-red-764","links":{},"stock":{"item_id":764,"product_id":764,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-34-red-764.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"763","_score":1,"_source":{"id":763,"sku":"MP03-34-Green","name":"Geo Insulated Jogging Pant-34-Green","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

    \n

    • Black polyester spandex pants with zipper pockets.
    • Reflective safety accents.
    • Loose fit.
    • On-seam pockets.
    • 8\" leg zips. 32\" inseam.
    • Machine wash/dry.

    ","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"geo-insulated-jogging-pant-34-green-763","links":{},"stock":{"item_id":763,"product_id":763,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-34-green-763.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"776","_score":1,"_source":{"id":776,"sku":"MP04-34-Gray","name":"Supernova Sport Pant-34-Gray","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

    \n

    • Dark heather gray straight leg cotton pants.
    • Relaxed fit.
    • Internal drawstring.
    • Machine wash/dry.

    ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"supernova-sport-pant-34-gray-776","links":{},"stock":{"item_id":776,"product_id":776,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-34-gray-776.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"775","_score":1,"_source":{"id":775,"sku":"MP04-34-Black","name":"Supernova Sport Pant-34-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

    \n

    • Dark heather gray straight leg cotton pants.
    • Relaxed fit.
    • Internal drawstring.
    • Machine wash/dry.

    ","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"supernova-sport-pant-34-black-775","links":{},"stock":{"item_id":775,"product_id":775,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-34-black-775.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"800","_score":1,"_source":{"id":800,"sku":"MP06-33-Orange","name":"Mithra Warmup Pant-33-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

    \n

    • Ankle zips.
    • Elasticized waistband with draw cord.
    • Dual hand pockets.
    • Reflective elements for low-light safety.

    ","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","color":"56","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-33-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"mithra-warmup-pant-33-orange-800","links":{},"stock":{"item_id":800,"product_id":800,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-33-orange-800.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"813","_score":1,"_source":{"id":813,"sku":"MP07-33-Purple","name":"Thorpe Track Pant-33-Purple","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

    Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

    \n

    • Moisture transfer properties.
    • 7% stretch.
    • Reflective safety trim.
    • Elastic drawcord waist.

    ","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","color":"57","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"thorpe-track-pant-33-purple-813","links":{},"stock":{"item_id":813,"product_id":813,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-33-purple-813.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"822","_score":1,"_source":{"id":822,"sku":"MP08-32-Green","name":"Zeppelin Yoga Pant-32-Green","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001,"description":"

    Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

    \n

    • Smooth exterior for easy over-layering.
    • Brushed fleece interior insulates and wicks.
    • No-roll elastic waistband with inner drawstring.
    • Chafe-resistant flatlock seams.

    ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"zeppelin-yoga-pant-32-green-822","links":{},"stock":{"item_id":822,"product_id":822,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-32-green-822.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"810","_score":1,"_source":{"id":810,"sku":"MP07-32-Purple","name":"Thorpe Track Pant-32-Purple","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

    Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

    \n

    • Moisture transfer properties.
    • 7% stretch.
    • Reflective safety trim.
    • Elastic drawcord waist.

    ","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","color":"57","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"thorpe-track-pant-32-purple-810","links":{},"stock":{"item_id":810,"product_id":810,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-32-purple-810.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"818","_score":1,"_source":{"id":818,"sku":"MP07-36-Blue","name":"Thorpe Track Pant-36-Blue","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

    Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

    \n

    • Moisture transfer properties.
    • 7% stretch.
    • Reflective safety trim.
    • Elastic drawcord waist.

    ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"thorpe-track-pant-36-blue-818","links":{},"stock":{"item_id":818,"product_id":818,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-36-blue-818.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"710","_score":1,"_source":{"id":710,"sku":"MT09-XL-Blue","name":"Sinbad Fitness Tank-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

    \n

    • Teal polyester tank.
    • Premium fit tank top.
    • Ultra lightweight.
    • Naturally odor-resistant.

    ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"sinbad-fitness-tank-xl-blue-710","links":{},"stock":{"item_id":710,"product_id":710,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-xl-blue-710.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"703","_score":1,"_source":{"id":703,"sku":"MT08-L-Green","name":"Sparta Gym Tank-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

    \n

    • Green polyester tank.
    • Ultra lightweight.
    • Naturally odor-resistant.
    • Close-to-body athletic fit.
    • Chafe-resistant flatlock seams.

    ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"sparta-gym-tank-l-green-703","links":{},"stock":{"item_id":703,"product_id":703,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-l-green-703.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"751","_score":1,"_source":{"id":751,"sku":"MP02-34-Red","name":"Viktor LumaTech™ Pant-34-Red","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001,"description":"

    You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

    \n

    • Dark gray polyester/spandex straight leg pants.
    • Elastic waistband and internal drawstring.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","color":"58","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"viktor-lumatech-and-trade-pant-34-red-751","links":{},"stock":{"item_id":751,"product_id":751,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-34-red-751.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"848","_score":1,"_source":{"id":848,"sku":"MP10-32-Blue","name":"Orestes Yoga Pant -32-Blue","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

    The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

    \n

    • A yoga essential.
    • Breathable stretch organic cotton/spandex.
    • Standard Fit.

    ","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-yoga-pant-32-blue-848","links":{},"stock":{"item_id":848,"product_id":848,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-32-blue-848.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"841","_score":1,"_source":{"id":841,"sku":"MP09-34-Blue","name":"Livingston All-Purpose Tight-34-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

    It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

    \n

    • Breathable stretch organic cotton/spandex.
    • Compression fit
    • Hidden key pocket
    • Elastic waist with internal drawcord.

    ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","color":"50","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"livingston-all-purpose-tight-34-blue-841","links":{},"stock":{"item_id":841,"product_id":841,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-34-blue-841.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"833","_score":1,"_source":{"id":833,"sku":"MP08","name":"Zeppelin Yoga Pant","attribute_set_id":10,"price":82,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":82,"description":"

    Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

    \n

    • Smooth exterior for easy over-layering.
    • Brushed fleece interior insulates and wicks.
    • No-roll elastic waistband with inner drawstring.
    • Chafe-resistant flatlock seams.

    ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"zeppelin-yoga-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,148,151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,113,105,115,109],"pattern":"197","climate":[202,204,208,210,211],"slug":"zeppelin-yoga-pant-833","links":{},"stock":{"item_id":833,"product_id":833,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP08-32-Blue","id":821,"status":1,"name":"Zeppelin Yoga Pant-32-Blue","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"50","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","url_key":"zeppelin-yoga-pant-32-blue","msrp_display_actual_price_type":"0","final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001},{"sku":"MP08-32-Green","id":822,"status":1,"name":"Zeppelin Yoga Pant-32-Green","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"53","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","url_key":"zeppelin-yoga-pant-32-green","msrp_display_actual_price_type":"0","final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001},{"sku":"MP08-32-Red","id":823,"status":1,"name":"Zeppelin Yoga Pant-32-Red","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"58","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","url_key":"zeppelin-yoga-pant-32-red","msrp_display_actual_price_type":"0","final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001},{"sku":"MP08-33-Blue","id":824,"status":1,"name":"Zeppelin Yoga Pant-33-Blue","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"50","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","url_key":"zeppelin-yoga-pant-33-blue","msrp_display_actual_price_type":"0","final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001},{"sku":"MP08-33-Green","id":825,"status":1,"name":"Zeppelin Yoga Pant-33-Green","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"53","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","url_key":"zeppelin-yoga-pant-33-green","msrp_display_actual_price_type":"0","final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001},{"sku":"MP08-33-Red","id":826,"status":1,"name":"Zeppelin Yoga Pant-33-Red","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"58","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","url_key":"zeppelin-yoga-pant-33-red","msrp_display_actual_price_type":"0","final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001},{"sku":"MP08-34-Blue","id":827,"status":1,"name":"Zeppelin Yoga Pant-34-Blue","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"50","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","url_key":"zeppelin-yoga-pant-34-blue","msrp_display_actual_price_type":"0","final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001},{"sku":"MP08-34-Green","id":828,"status":1,"name":"Zeppelin Yoga Pant-34-Green","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"53","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","url_key":"zeppelin-yoga-pant-34-green","msrp_display_actual_price_type":"0","final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001},{"sku":"MP08-34-Red","id":829,"status":1,"name":"Zeppelin Yoga Pant-34-Red","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"58","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","url_key":"zeppelin-yoga-pant-34-red","msrp_display_actual_price_type":"0","final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001},{"sku":"MP08-36-Blue","id":830,"status":1,"name":"Zeppelin Yoga Pant-36-Blue","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"50","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","url_key":"zeppelin-yoga-pant-36-blue","msrp_display_actual_price_type":"0","final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001},{"sku":"MP08-36-Green","id":831,"status":1,"name":"Zeppelin Yoga Pant-36-Green","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"53","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","url_key":"zeppelin-yoga-pant-36-green","msrp_display_actual_price_type":"0","final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001},{"sku":"MP08-36-Red","id":832,"status":1,"name":"Zeppelin Yoga Pant-36-Red","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"58","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","url_key":"zeppelin-yoga-pant-36-red","msrp_display_actual_price_type":"0","final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001}],"configurable_options":[{"id":113,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":833,"attribute_code":"color"},{"id":112,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":833,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-833.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"846","_score":1,"_source":{"id":846,"sku":"MP09","name":"Livingston All-Purpose Tight","attribute_set_id":10,"price":75,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":75,"description":"

    It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

    \n

    • Breathable stretch organic cotton/spandex.
    • Compression fit
    • Hidden key pocket
    • Elastic waist with internal drawcord.

    ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"livingston-all-purpose-tight","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,145,38,39],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"1","sale":"0","style_bottom":[113,105,108,115,109],"pattern":"197","climate":[202,203,204,210,211],"slug":"livingston-all-purpose-tight-846","links":{},"stock":{"item_id":846,"product_id":846,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP09-32-Black","id":834,"status":1,"name":"Livingston All-Purpose Tight-32-Black","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"176","color":"49","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","url_key":"livingston-all-purpose-tight-32-black","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"MP09-32-Blue","id":835,"status":1,"name":"Livingston All-Purpose Tight-32-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"176","color":"50","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","url_key":"livingston-all-purpose-tight-32-blue","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"MP09-32-Red","id":836,"status":1,"name":"Livingston All-Purpose Tight-32-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"176","color":"58","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","url_key":"livingston-all-purpose-tight-32-red","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"MP09-33-Black","id":837,"status":1,"name":"Livingston All-Purpose Tight-33-Black","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"177","color":"49","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","url_key":"livingston-all-purpose-tight-33-black","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"MP09-33-Blue","id":838,"status":1,"name":"Livingston All-Purpose Tight-33-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"177","color":"50","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","url_key":"livingston-all-purpose-tight-33-blue","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"MP09-33-Red","id":839,"status":1,"name":"Livingston All-Purpose Tight-33-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"177","color":"58","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","url_key":"livingston-all-purpose-tight-33-red","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"MP09-34-Black","id":840,"status":1,"name":"Livingston All-Purpose Tight-34-Black","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"178","color":"49","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","url_key":"livingston-all-purpose-tight-34-black","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"MP09-34-Blue","id":841,"status":1,"name":"Livingston All-Purpose Tight-34-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"178","color":"50","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","url_key":"livingston-all-purpose-tight-34-blue","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"MP09-34-Red","id":842,"status":1,"name":"Livingston All-Purpose Tight-34-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"178","color":"58","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","url_key":"livingston-all-purpose-tight-34-red","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"MP09-36-Black","id":843,"status":1,"name":"Livingston All-Purpose Tight-36-Black","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"179","color":"49","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","url_key":"livingston-all-purpose-tight-36-black","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"MP09-36-Blue","id":844,"status":1,"name":"Livingston All-Purpose Tight-36-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"179","color":"50","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","url_key":"livingston-all-purpose-tight-36-blue","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"MP09-36-Red","id":845,"status":1,"name":"Livingston All-Purpose Tight-36-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"179","color":"58","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","url_key":"livingston-all-purpose-tight-36-red","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001}],"configurable_options":[{"id":115,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":846,"attribute_code":"color"},{"id":114,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":846,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-846.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"820","_score":1,"_source":{"id":820,"sku":"MP07","name":"Thorpe Track Pant","attribute_set_id":10,"price":68,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":68,"description":"

    Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

    \n

    • Moisture transfer properties.
    • 7% stretch.
    • Reflective safety trim.
    • Elastic drawcord waist.

    ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"thorpe-track-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38,39,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[202,203,204,208,211],"slug":"thorpe-track-pant-820","links":{},"stock":{"item_id":820,"product_id":820,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP07-32-Black","id":808,"status":1,"name":"Thorpe Track Pant-32-Black","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"49","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","url_key":"thorpe-track-pant-32-black","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"MP07-32-Blue","id":809,"status":1,"name":"Thorpe Track Pant-32-Blue","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"50","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","url_key":"thorpe-track-pant-32-blue","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"MP07-32-Purple","id":810,"status":1,"name":"Thorpe Track Pant-32-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"57","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","url_key":"thorpe-track-pant-32-purple","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"MP07-33-Black","id":811,"status":1,"name":"Thorpe Track Pant-33-Black","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"49","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","url_key":"thorpe-track-pant-33-black","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"MP07-33-Blue","id":812,"status":1,"name":"Thorpe Track Pant-33-Blue","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"50","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","url_key":"thorpe-track-pant-33-blue","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"MP07-33-Purple","id":813,"status":1,"name":"Thorpe Track Pant-33-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"57","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","url_key":"thorpe-track-pant-33-purple","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"MP07-34-Black","id":814,"status":1,"name":"Thorpe Track Pant-34-Black","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"49","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","url_key":"thorpe-track-pant-34-black","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"MP07-34-Blue","id":815,"status":1,"name":"Thorpe Track Pant-34-Blue","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"50","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","url_key":"thorpe-track-pant-34-blue","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"MP07-34-Purple","id":816,"status":1,"name":"Thorpe Track Pant-34-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"57","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","url_key":"thorpe-track-pant-34-purple","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"MP07-36-Black","id":817,"status":1,"name":"Thorpe Track Pant-36-Black","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"49","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","url_key":"thorpe-track-pant-36-black","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"MP07-36-Blue","id":818,"status":1,"name":"Thorpe Track Pant-36-Blue","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"50","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","url_key":"thorpe-track-pant-36-blue","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"MP07-36-Purple","id":819,"status":1,"name":"Thorpe Track Pant-36-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"57","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","url_key":"thorpe-track-pant-36-purple","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001}],"configurable_options":[{"id":111,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":820,"attribute_code":"color"},{"id":110,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":820,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-820.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"875","_score":1,"_source":{"id":875,"sku":"MP12-32-Red","name":"Cronus Yoga Pant -32-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

    \n

    • Drawstring waist.
    • Loose, straight-leg fit.
    • Lightweight cotton-recycled blend.
    • Front pockets with stitching detail.
    • Elastic ankle.

    ","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","color":"58","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cronus-yoga-pant-32-red-875","links":{},"stock":{"item_id":875,"product_id":875,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-32-red-875.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"864","_score":1,"_source":{"id":864,"sku":"MP11-33-Brown","name":"Aether Gym Pant -33-Brown","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

    The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

    \n

    • Pants/shorts convertible.
    • Lightweight moisture wicking.
    • Water repellent.
    • Belted waist.

    ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","color":"51","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-33-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"aether-gym-pant-33-brown-864","links":{},"stock":{"item_id":864,"product_id":864,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-33-brown-864.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"884","_score":1,"_source":{"id":884,"sku":"MP12-36-Red","name":"Cronus Yoga Pant -36-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

    \n

    • Drawstring waist.
    • Loose, straight-leg fit.
    • Lightweight cotton-recycled blend.
    • Front pockets with stitching detail.
    • Elastic ankle.

    ","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","color":"58","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cronus-yoga-pant-36-red-884","links":{},"stock":{"item_id":884,"product_id":884,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-36-red-884.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"892","_score":1,"_source":{"id":892,"sku":"MSH01-34-Black","name":"Cobalt CoolTech™ Fitness Short-34-Black","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

    It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

    \n

    • Light blue nylon shorts.
    • Relaxed fit.
    • 5\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","color":"49","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cobalt-cooltech-and-trade-fitness-short-34-black-892","links":{},"stock":{"item_id":892,"product_id":892,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-34-black-892.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"897","_score":1,"_source":{"id":897,"sku":"MSH01-36-Red","name":"Cobalt CoolTech™ Fitness Short-36-Red","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

    It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

    \n

    • Light blue nylon shorts.
    • Relaxed fit.
    • 5\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","color":"58","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cobalt-cooltech-and-trade-fitness-short-36-red-897","links":{},"stock":{"item_id":897,"product_id":897,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-36-red-897.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"899","_score":1,"_source":{"id":899,"sku":"MSH02-32-Black","name":"Apollo Running Short-32-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

    Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

    \n

    • Black shorts with green accents.
    • Side pockets.
    • 4\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"apollo-running-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"apollo-running-short-32-black-899","links":{},"stock":{"item_id":899,"product_id":899,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-32-black-899.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"890","_score":1,"_source":{"id":890,"sku":"MSH01-33-Blue","name":"Cobalt CoolTech™ Fitness Short-33-Blue","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

    It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

    \n

    • Light blue nylon shorts.
    • Relaxed fit.
    • 5\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","color":"50","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cobalt-cooltech-and-trade-fitness-short-33-blue-890","links":{},"stock":{"item_id":890,"product_id":890,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-33-blue-890.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"905","_score":1,"_source":{"id":905,"sku":"MSH03-32-Blue","name":"Meteor Workout Short-32-Blue","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

    Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

    \n

    • Royal blue shorts with light blue accents.
    • Interior drawstring waistband.
    • 7\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"meteor-workout-short-32-blue-905","links":{},"stock":{"item_id":905,"product_id":905,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-32-blue-905.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"927","_score":1,"_source":{"id":927,"sku":"MSH04-36-Purple","name":"Torque Power Short-36-Purple","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

    Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

    \n

    • Light gray shorts.
    • Fitted design.
    • Elastic waistband.
    • Flat-seam construction.
    • 7\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","color":"57","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"torque-power-short-36-purple-927","links":{},"stock":{"item_id":927,"product_id":927,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-36-purple-927.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"911","_score":1,"_source":{"id":911,"sku":"MSH03-34-Blue","name":"Meteor Workout Short-34-Blue","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

    Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

    \n

    • Royal blue shorts with light blue accents.
    • Interior drawstring waistband.
    • 7\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"meteor-workout-short-34-blue-911","links":{},"stock":{"item_id":911,"product_id":911,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-34-blue-911.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"913","_score":1,"_source":{"id":913,"sku":"MSH03-36-Black","name":"Meteor Workout Short-36-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

    Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

    \n

    • Royal blue shorts with light blue accents.
    • Interior drawstring waistband.
    • 7\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"meteor-workout-short-36-black-913","links":{},"stock":{"item_id":913,"product_id":913,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-36-black-913.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"943","_score":1,"_source":{"id":943,"sku":"MSH06-32-Blue","name":"Lono Yoga Short-32-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

    \n

    • Dark gray shorts with mesh accents.
    • Ultra flexible four-way stretch.
    • Flatlock seams and waistband.
    • Two pockets, phony fly.
    • Nylon/Lycra outer, Polyester/Lycra inner.

    ","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"lono-yoga-short-32-blue-943","links":{},"stock":{"item_id":943,"product_id":943,"stock_id":1,"qty":44,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-32-blue-943.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"945","_score":1,"_source":{"id":945,"sku":"MSH06-32-Red","name":"Lono Yoga Short-32-Red","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

    \n

    • Dark gray shorts with mesh accents.
    • Ultra flexible four-way stretch.
    • Flatlock seams and waistband.
    • Two pockets, phony fly.
    • Nylon/Lycra outer, Polyester/Lycra inner.

    ","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","color":"58","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"lono-yoga-short-32-red-945","links":{},"stock":{"item_id":945,"product_id":945,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-32-red-945.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"973","_score":1,"_source":{"id":973,"sku":"MSH08-33-Blue","name":"Orestes Fitness Short-33-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

    \n

    • Black shorts with dark gray accents.
    • Elasticized waistband with interior drawstring.
    • Ventilating mesh detailing.
    • 100% polyester and recycled polyester.
    • Machine wash cold, tumble dry low.

    ","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","color":"50","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-fitness-short-33-blue-973","links":{},"stock":{"item_id":973,"product_id":973,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-33-blue-973.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"955","_score":1,"_source":{"id":955,"sku":"MSH06","name":"Lono Yoga Short","attribute_set_id":10,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":32,"description":"

    Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

    \n

    • Dark gray shorts with mesh accents.
    • Ultra flexible four-way stretch.
    • Flatlock seams and waistband.
    • Two pockets, phony fly.
    • Nylon/Lycra outer, Polyester/Lycra inner.

    ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"lono-yoga-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38,39],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,105,108],"pattern":"197","climate":[202,205,212,209],"slug":"lono-yoga-short-955","links":{},"stock":{"item_id":955,"product_id":955,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH06-32-Blue","id":943,"status":1,"name":"Lono Yoga Short-32-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"176","color":"50","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","url_key":"lono-yoga-short-32-blue","msrp_display_actual_price_type":"0"},{"sku":"MSH06-32-Gray","id":944,"status":1,"name":"Lono Yoga Short-32-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"176","color":"52","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","url_key":"lono-yoga-short-32-gray","msrp_display_actual_price_type":"0"},{"sku":"MSH06-32-Red","id":945,"status":1,"name":"Lono Yoga Short-32-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"176","color":"58","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","url_key":"lono-yoga-short-32-red","msrp_display_actual_price_type":"0"},{"sku":"MSH06-33-Blue","id":946,"status":1,"name":"Lono Yoga Short-33-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"177","color":"50","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","url_key":"lono-yoga-short-33-blue","msrp_display_actual_price_type":"0"},{"sku":"MSH06-33-Gray","id":947,"status":1,"name":"Lono Yoga Short-33-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"177","color":"52","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","url_key":"lono-yoga-short-33-gray","msrp_display_actual_price_type":"0"},{"sku":"MSH06-33-Red","id":948,"status":1,"name":"Lono Yoga Short-33-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"177","color":"58","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","url_key":"lono-yoga-short-33-red","msrp_display_actual_price_type":"0"},{"sku":"MSH06-34-Blue","id":949,"status":1,"name":"Lono Yoga Short-34-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"178","color":"50","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","url_key":"lono-yoga-short-34-blue","msrp_display_actual_price_type":"0"},{"sku":"MSH06-34-Gray","id":950,"status":1,"name":"Lono Yoga Short-34-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"178","color":"52","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","url_key":"lono-yoga-short-34-gray","msrp_display_actual_price_type":"0"},{"sku":"MSH06-34-Red","id":951,"status":1,"name":"Lono Yoga Short-34-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"178","color":"58","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","url_key":"lono-yoga-short-34-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MSH06-36-Blue","id":952,"status":1,"name":"Lono Yoga Short-36-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"179","color":"50","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","url_key":"lono-yoga-short-36-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MSH06-36-Gray","id":953,"status":1,"name":"Lono Yoga Short-36-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"179","color":"52","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","url_key":"lono-yoga-short-36-gray","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MSH06-36-Red","id":954,"status":1,"name":"Lono Yoga Short-36-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"179","color":"58","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","url_key":"lono-yoga-short-36-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001}],"configurable_options":[{"id":133,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"}],"product_id":955,"attribute_code":"color"},{"id":132,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":955,"attribute_code":"size"}],"color_options":[50,52,58],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-955.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"999","_score":1,"_source":{"id":999,"sku":"MSH10-33-Green","name":"Sol Active Short-33-Green","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

    \n

    • Light blue jersey shorts with mesh detail.
    • 87% Spandex 13% Lycra.
    • Machine wash cold, tumble dry low.
    • Superior performance fabric.
    • Flat-lock seams.

    ","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","color":"53","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"sol-active-short-33-green-999","links":{},"stock":{"item_id":999,"product_id":999,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-33-green-999.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"903","_score":1,"_source":{"id":903,"sku":"MSH02","name":"Apollo Running Short","attribute_set_id":10,"price":32.5,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":32.5,"description":"

    Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

    \n

    • Black shorts with green accents.
    • Side pockets.
    • 4\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"apollo-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[38,39],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[202,205,209],"slug":"apollo-running-short-903","links":{},"stock":{"item_id":903,"product_id":903,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH02-32-Black","id":899,"status":1,"name":"Apollo Running Short-32-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"49","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","url_key":"apollo-running-short-32-black","msrp_display_actual_price_type":"0"},{"sku":"MSH02-33-Black","id":900,"status":1,"name":"Apollo Running Short-33-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"49","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","url_key":"apollo-running-short-33-black","msrp_display_actual_price_type":"0"},{"sku":"MSH02-34-Black","id":901,"status":1,"name":"Apollo Running Short-34-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"49","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","url_key":"apollo-running-short-34-black","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH02-36-Black","id":902,"status":1,"name":"Apollo Running Short-36-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"49","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","url_key":"apollo-running-short-36-black","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001}],"configurable_options":[{"id":125,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"}],"product_id":903,"attribute_code":"color"},{"id":124,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":903,"attribute_code":"size"}],"color_options":[49],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-903.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1010","_score":1,"_source":{"id":1010,"sku":"MSH11-32-Red","name":"Arcadio Gym Short-32-Red","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001,"description":"

    The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

    \n

    • Royal blue cotton shorts.
    • Built-in mesh brief.
    • 87% Spandex 13% Lycra.
    • Adjustable drawstring.

    ","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","color":"58","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"arcadio-gym-short-32-red-1010","links":{},"stock":{"item_id":1010,"product_id":1010,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-32-red-1010.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1031","_score":1,"_source":{"id":1031,"sku":"MSH12-36-Gray","name":"Pierce Gym Short-36-Gray","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

    The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

    \n

    • Dark red cotton shorts.
    • 87% Supplex, 13% Lycra.
    • Adjustable drawstring waistband.
    • Built-in mesh brief.
    • Machine wash cold, tumble dry low.

    ","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","color":"52","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"pierce-gym-short-36-gray-1031","links":{},"stock":{"item_id":1031,"product_id":1031,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-36-gray-1031.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1042","_score":1,"_source":{"id":1042,"sku":"WH01-M-Purple","name":"Mona Pullover Hoodlie-M-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

    • Light green heathered hoodie.
    • Long-Sleeve, pullover.
    • Long elliptical hem for extra coverage.
    • Deep button placket for layering.
    • Double rib design.
    • Mid layer, mid weight.
    • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mona-pullover-hoodlie-m-purple-1042","links":{},"stock":{"item_id":1042,"product_id":1042,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-m-purple-1042.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1043","_score":1,"_source":{"id":1043,"sku":"WH01-L-Green","name":"Mona Pullover Hoodlie-L-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

    • Light green heathered hoodie.
    • Long-Sleeve, pullover.
    • Long elliptical hem for extra coverage.
    • Deep button placket for layering.
    • Double rib design.
    • Mid layer, mid weight.
    • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mona-pullover-hoodlie-l-green-1043","links":{},"stock":{"item_id":1043,"product_id":1043,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-l-green-1043.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1025","_score":1,"_source":{"id":1025,"sku":"MSH12-33-Gray","name":"Pierce Gym Short-33-Gray","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

    The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

    \n

    • Dark red cotton shorts.
    • 87% Supplex, 13% Lycra.
    • Adjustable drawstring waistband.
    • Built-in mesh brief.
    • Machine wash cold, tumble dry low.

    ","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","color":"52","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"pierce-gym-short-33-gray-1025","links":{},"stock":{"item_id":1025,"product_id":1025,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-33-gray-1025.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1039","_score":1,"_source":{"id":1039,"sku":"WH01-S-Purple","name":"Mona Pullover Hoodlie-S-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

    • Light green heathered hoodie.
    • Long-Sleeve, pullover.
    • Long elliptical hem for extra coverage.
    • Deep button placket for layering.
    • Double rib design.
    • Mid layer, mid weight.
    • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mona-pullover-hoodlie-s-purple-1039","links":{},"stock":{"item_id":1039,"product_id":1039,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-s-purple-1039.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"974","_score":1,"_source":{"id":974,"sku":"MSH08-33-Green","name":"Orestes Fitness Short-33-Green","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

    \n

    • Black shorts with dark gray accents.
    • Elasticized waistband with interior drawstring.
    • Ventilating mesh detailing.
    • 100% polyester and recycled polyester.
    • Machine wash cold, tumble dry low.

    ","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","color":"53","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-fitness-short-33-green-974","links":{},"stock":{"item_id":974,"product_id":974,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-33-green-974.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"961","_score":1,"_source":{"id":961,"sku":"MSH07-33-Purple","name":"Rapha Sports Short-33-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

    \n

    • Black shorts with royal accents.
    • Compression liner.
    • Inseam: 8\".
    • Machine wash/dry.

    ","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","color":"57","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"rapha-sports-short-33-purple-961","links":{},"stock":{"item_id":961,"product_id":961,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-33-purple-961.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"971","_score":1,"_source":{"id":971,"sku":"MSH08-32-Green","name":"Orestes Fitness Short-32-Green","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

    \n

    • Black shorts with dark gray accents.
    • Elasticized waistband with interior drawstring.
    • Ventilating mesh detailing.
    • 100% polyester and recycled polyester.
    • Machine wash cold, tumble dry low.

    ","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","color":"53","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-fitness-short-32-green-971","links":{},"stock":{"item_id":971,"product_id":971,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-32-green-971.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"998","_score":1,"_source":{"id":998,"sku":"MSH10-33-Blue","name":"Sol Active Short-33-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

    \n

    • Light blue jersey shorts with mesh detail.
    • 87% Spandex 13% Lycra.
    • Machine wash cold, tumble dry low.
    • Superior performance fabric.
    • Flat-lock seams.

    ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"sol-active-short-33-blue-998","links":{},"stock":{"item_id":998,"product_id":998,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-33-blue-998.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"965","_score":1,"_source":{"id":965,"sku":"MSH07-36-Black","name":"Rapha Sports Short-36-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

    \n

    • Black shorts with royal accents.
    • Compression liner.
    • Inseam: 8\".
    • Machine wash/dry.

    ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","color":"49","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"rapha-sports-short-36-black-965","links":{},"stock":{"item_id":965,"product_id":965,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-36-black-965.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1008","_score":1,"_source":{"id":1008,"sku":"MSH11-32-Black","name":"Arcadio Gym Short-32-Black","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001,"description":"

    The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

    \n

    • Royal blue cotton shorts.
    • Built-in mesh brief.
    • 87% Spandex 13% Lycra.
    • Adjustable drawstring.

    ","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"arcadio-gym-short-32-black-1008","links":{},"stock":{"item_id":1008,"product_id":1008,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-32-black-1008.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1050","_score":1,"_source":{"id":1050,"sku":"WH02-XS-Blue","name":"Hera Pullover Hoodie-XS-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

    \n

    • Teal with purple stiching.
    • Hoodie pullover.
    • Snug fit.

    ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hera-pullover-hoodie-xs-blue-1050","links":{},"stock":{"item_id":1050,"product_id":1050,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xs-blue-1050.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"952","_score":1,"_source":{"id":952,"sku":"MSH06-36-Blue","name":"Lono Yoga Short-36-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

    \n

    • Dark gray shorts with mesh accents.
    • Ultra flexible four-way stretch.
    • Flatlock seams and waistband.
    • Two pockets, phony fly.
    • Nylon/Lycra outer, Polyester/Lycra inner.

    ","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"lono-yoga-short-36-blue-952","links":{},"stock":{"item_id":952,"product_id":952,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-36-blue-952.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"972","_score":1,"_source":{"id":972,"sku":"MSH08-33-Black","name":"Orestes Fitness Short-33-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

    \n

    • Black shorts with dark gray accents.
    • Elasticized waistband with interior drawstring.
    • Ventilating mesh detailing.
    • 100% polyester and recycled polyester.
    • Machine wash cold, tumble dry low.

    ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-fitness-short-33-black-972","links":{},"stock":{"item_id":972,"product_id":972,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-33-black-972.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"991","_score":1,"_source":{"id":991,"sku":"MSH09-36-Black","name":"Troy Yoga Short-36-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

    \n

    • Navy polyester pinstripe shorts.
    • Woven fabric with moderate stretch.
    • 62% cotton/34% nylon/4% spandex.
    • LumaTech™ lining.

    ","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"troy-yoga-short-36-black-991","links":{},"stock":{"item_id":991,"product_id":991,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-36-black-991.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"996","_score":1,"_source":{"id":996,"sku":"MSH10-32-Green","name":"Sol Active Short-32-Green","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

    \n

    • Light blue jersey shorts with mesh detail.
    • 87% Spandex 13% Lycra.
    • Machine wash cold, tumble dry low.
    • Superior performance fabric.
    • Flat-lock seams.

    ","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","color":"53","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"sol-active-short-32-green-996","links":{},"stock":{"item_id":996,"product_id":996,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-32-green-996.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"958","_score":1,"_source":{"id":958,"sku":"MSH07-32-Purple","name":"Rapha Sports Short-32-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

    \n

    • Black shorts with royal accents.
    • Compression liner.
    • Inseam: 8\".
    • Machine wash/dry.

    ","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","color":"57","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"rapha-sports-short-32-purple-958","links":{},"stock":{"item_id":958,"product_id":958,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-32-purple-958.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1095","_score":1,"_source":{"id":1095,"sku":"WH04-XL-Orange","name":"Miko Pullover Hoodie-XL-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

    \n

    • Teal two-tone hoodie.
    • Low scoop neckline.
    • Adjustable hood drawstrings.
    • Longer rounded hemline for extra back coverage.
    • Long-Sleeve style.

    ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"miko-pullover-hoodie-xl-orange-1095","links":{},"stock":{"item_id":1095,"product_id":1095,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xl-orange-1095.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1081","_score":1,"_source":{"id":1081,"sku":"WH03","name":"Autumn Pullie","attribute_set_id":9,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":57,"description":"

    With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

    \n

    • Cayenne Short-Sleeve roll neck sweatshirt.
    • Relaxed fit.
    • Short-Sleeves.
    • Machine wash/dry.

    ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"autumn-pullie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[137,133],"pattern":"197","climate":[205,206,208],"slug":"autumn-pullie-1081","links":{},"stock":{"item_id":1081,"product_id":1081,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH03-XS-Green","id":1066,"status":1,"name":"Autumn Pullie-XS-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"53","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","url_key":"autumn-pullie-xs-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-XS-Purple","id":1067,"status":1,"name":"Autumn Pullie-XS-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"57","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","url_key":"autumn-pullie-xs-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-XS-Red","id":1068,"status":1,"name":"Autumn Pullie-XS-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"58","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","url_key":"autumn-pullie-xs-red","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-S-Green","id":1069,"status":1,"name":"Autumn Pullie-S-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"53","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","url_key":"autumn-pullie-s-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-S-Purple","id":1070,"status":1,"name":"Autumn Pullie-S-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"57","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","url_key":"autumn-pullie-s-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-S-Red","id":1071,"status":1,"name":"Autumn Pullie-S-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"58","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","url_key":"autumn-pullie-s-red","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-M-Green","id":1072,"status":1,"name":"Autumn Pullie-M-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"53","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","url_key":"autumn-pullie-m-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-M-Purple","id":1073,"status":1,"name":"Autumn Pullie-M-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"57","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","url_key":"autumn-pullie-m-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-M-Red","id":1074,"status":1,"name":"Autumn Pullie-M-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"58","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","url_key":"autumn-pullie-m-red","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-L-Green","id":1075,"status":1,"name":"Autumn Pullie-L-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"53","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","url_key":"autumn-pullie-l-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-L-Purple","id":1076,"status":1,"name":"Autumn Pullie-L-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"57","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","url_key":"autumn-pullie-l-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-L-Red","id":1077,"status":1,"name":"Autumn Pullie-L-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"58","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","url_key":"autumn-pullie-l-red","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-XL-Green","id":1078,"status":1,"name":"Autumn Pullie-XL-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"53","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","url_key":"autumn-pullie-xl-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-XL-Purple","id":1079,"status":1,"name":"Autumn Pullie-XL-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"57","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","url_key":"autumn-pullie-xl-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-XL-Red","id":1080,"status":1,"name":"Autumn Pullie-XL-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"58","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","url_key":"autumn-pullie-xl-red","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001}],"configurable_options":[{"id":151,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1081,"attribute_code":"color"},{"id":150,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1081,"attribute_code":"size"}],"color_options":[53,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-1081.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1097","_score":1,"_source":{"id":1097,"sku":"WH04","name":"Miko Pullover Hoodie","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":69,"description":"

    After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

    \n

    • Teal two-tone hoodie.
    • Low scoop neckline.
    • Adjustable hood drawstrings.
    • Longer rounded hemline for extra back coverage.
    • Long-Sleeve style.

    ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"miko-pullover-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[147,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[137,133],"pattern":"197","climate":[202,204,208],"slug":"miko-pullover-hoodie-1097","links":{},"stock":{"item_id":1097,"product_id":1097,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH04-XS-Blue","id":1082,"status":1,"name":"Miko Pullover Hoodie-XS-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"50","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","url_key":"miko-pullover-hoodie-xs-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-XS-Orange","id":1083,"status":1,"name":"Miko Pullover Hoodie-XS-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"56","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","url_key":"miko-pullover-hoodie-xs-orange","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-XS-Purple","id":1084,"status":1,"name":"Miko Pullover Hoodie-XS-Purple","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"57","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","url_key":"miko-pullover-hoodie-xs-purple","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-S-Blue","id":1085,"status":1,"name":"Miko Pullover Hoodie-S-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"50","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","url_key":"miko-pullover-hoodie-s-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-S-Orange","id":1086,"status":1,"name":"Miko Pullover Hoodie-S-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"56","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","url_key":"miko-pullover-hoodie-s-orange","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-S-Purple","id":1087,"status":1,"name":"Miko Pullover Hoodie-S-Purple","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"57","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","url_key":"miko-pullover-hoodie-s-purple","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-M-Blue","id":1088,"status":1,"name":"Miko Pullover Hoodie-M-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"50","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","url_key":"miko-pullover-hoodie-m-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-M-Orange","id":1089,"status":1,"name":"Miko Pullover Hoodie-M-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"56","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","url_key":"miko-pullover-hoodie-m-orange","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-M-Purple","id":1090,"status":1,"name":"Miko Pullover Hoodie-M-Purple","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"57","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","url_key":"miko-pullover-hoodie-m-purple","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-L-Blue","id":1091,"status":1,"name":"Miko Pullover Hoodie-L-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"50","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","url_key":"miko-pullover-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-L-Orange","id":1092,"status":1,"name":"Miko Pullover Hoodie-L-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"56","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","url_key":"miko-pullover-hoodie-l-orange","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-L-Purple","id":1093,"status":1,"name":"Miko Pullover Hoodie-L-Purple","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"57","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","url_key":"miko-pullover-hoodie-l-purple","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-XL-Blue","id":1094,"status":1,"name":"Miko Pullover Hoodie-XL-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"50","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","url_key":"miko-pullover-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-XL-Orange","id":1095,"status":1,"name":"Miko Pullover Hoodie-XL-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"56","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","url_key":"miko-pullover-hoodie-xl-orange","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-XL-Purple","id":1096,"status":1,"name":"Miko Pullover Hoodie-XL-Purple","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"57","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","url_key":"miko-pullover-hoodie-xl-purple","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001}],"configurable_options":[{"id":153,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1097,"attribute_code":"color"},{"id":152,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1097,"attribute_code":"size"}],"color_options":[50,56,57],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-1097.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1117","_score":1,"_source":{"id":1117,"sku":"WH06-L-Purple","name":"Daphne Full-Zip Hoodie-L-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

    \n

    • Purple full zip hoodie with pink accents.
    • Heather texture.
    • 4-way stretch.
    • Pre-shrunk.
    • Hood lined in vegan Sherpa for added warmth.
    • Ribbed hem on hood and front pouch pocket.
    • 60% Cotton / 40% Polyester.

    ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"daphne-full-zip-hoodie-l-purple-1117","links":{},"stock":{"item_id":1117,"product_id":1117,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-l-purple-1117.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1104","_score":1,"_source":{"id":1104,"sku":"WH05-M-Orange","name":"Selene Yoga Hoodie-M-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

    \n

    • Ivory heather full zip 3/4 sleeve hoodie.
    • Zip pocket at arm for convenient storage.
    • 24.0\" body length.
    • 89% Polyester / 11% Spandex.

    ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"selene-yoga-hoodie-m-orange-1104","links":{},"stock":{"item_id":1104,"product_id":1104,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-m-orange-1104.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1121","_score":1,"_source":{"id":1121,"sku":"WH07-XS-Purple","name":"Phoebe Zipper Sweatshirt-XS-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

    \n

    • Gray full zip hoodie with yellow detail.
    • Hand-warmer pockets.
    • Zip MP3 pocket with outlet for earphones wire.
    • Polyester/cotton.
    • Washable.

    ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"phoebe-zipper-sweatshirt-xs-purple-1121","links":{},"stock":{"item_id":1121,"product_id":1121,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xs-purple-1121.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1129","_score":1,"_source":{"id":1129,"sku":"WH07-L-Gray","name":"Phoebe Zipper Sweatshirt-L-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

    \n

    • Gray full zip hoodie with yellow detail.
    • Hand-warmer pockets.
    • Zip MP3 pocket with outlet for earphones wire.
    • Polyester/cotton.
    • Washable.

    ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"phoebe-zipper-sweatshirt-l-gray-1129","links":{},"stock":{"item_id":1129,"product_id":1129,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-l-gray-1129.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1112","_score":1,"_source":{"id":1112,"sku":"WH05-XL-White","name":"Selene Yoga Hoodie-XL-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

    \n

    • Ivory heather full zip 3/4 sleeve hoodie.
    • Zip pocket at arm for convenient storage.
    • 24.0\" body length.
    • 89% Polyester / 11% Spandex.

    ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"selene-yoga-hoodie-xl-white-1112","links":{},"stock":{"item_id":1112,"product_id":1112,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xl-white-1112.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1111","_score":1,"_source":{"id":1111,"sku":"WH05-XL-Purple","name":"Selene Yoga Hoodie-XL-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

    \n

    • Ivory heather full zip 3/4 sleeve hoodie.
    • Zip pocket at arm for convenient storage.
    • 24.0\" body length.
    • 89% Polyester / 11% Spandex.

    ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"selene-yoga-hoodie-xl-purple-1111","links":{},"stock":{"item_id":1111,"product_id":1111,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xl-purple-1111.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1143","_score":1,"_source":{"id":1143,"sku":"WH08-M-Purple","name":"Cassia Funnel Sweatshirt-M-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

    \n

    • White full zip hoodie with gray detail.
    • 65% Cotton/28% Nylon/7% Spandex.
    • Front slash pockets.
    • Tagless label at back neck.

    ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"cassia-funnel-sweatshirt-m-purple-1143","links":{},"stock":{"item_id":1143,"product_id":1143,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-m-purple-1143.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1070","_score":1,"_source":{"id":1070,"sku":"WH03-S-Purple","name":"Autumn Pullie-S-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

    \n

    • Cayenne Short-Sleeve roll neck sweatshirt.
    • Relaxed fit.
    • Short-Sleeves.
    • Machine wash/dry.

    ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"autumn-pullie-s-purple-1070","links":{},"stock":{"item_id":1070,"product_id":1070,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-s-purple-1070.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1067","_score":1,"_source":{"id":1067,"sku":"WH03-XS-Purple","name":"Autumn Pullie-XS-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

    \n

    • Cayenne Short-Sleeve roll neck sweatshirt.
    • Relaxed fit.
    • Short-Sleeves.
    • Machine wash/dry.

    ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"autumn-pullie-xs-purple-1067","links":{},"stock":{"item_id":1067,"product_id":1067,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xs-purple-1067.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1053","_score":1,"_source":{"id":1053,"sku":"WH02-S-Blue","name":"Hera Pullover Hoodie-S-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

    \n

    • Teal with purple stiching.
    • Hoodie pullover.
    • Snug fit.

    ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hera-pullover-hoodie-s-blue-1053","links":{},"stock":{"item_id":1053,"product_id":1053,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-s-blue-1053.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1090","_score":1,"_source":{"id":1090,"sku":"WH04-M-Purple","name":"Miko Pullover Hoodie-M-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

    \n

    • Teal two-tone hoodie.
    • Low scoop neckline.
    • Adjustable hood drawstrings.
    • Longer rounded hemline for extra back coverage.
    • Long-Sleeve style.

    ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"miko-pullover-hoodie-m-purple-1090","links":{},"stock":{"item_id":1090,"product_id":1090,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-m-purple-1090.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1076","_score":1,"_source":{"id":1076,"sku":"WH03-L-Purple","name":"Autumn Pullie-L-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

    \n

    • Cayenne Short-Sleeve roll neck sweatshirt.
    • Relaxed fit.
    • Short-Sleeves.
    • Machine wash/dry.

    ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"autumn-pullie-l-purple-1076","links":{},"stock":{"item_id":1076,"product_id":1076,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-l-purple-1076.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1088","_score":1,"_source":{"id":1088,"sku":"WH04-M-Blue","name":"Miko Pullover Hoodie-M-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

    \n

    • Teal two-tone hoodie.
    • Low scoop neckline.
    • Adjustable hood drawstrings.
    • Longer rounded hemline for extra back coverage.
    • Long-Sleeve style.

    ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"miko-pullover-hoodie-m-blue-1088","links":{},"stock":{"item_id":1088,"product_id":1088,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-m-blue-1088.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1100","_score":1,"_source":{"id":1100,"sku":"WH05-XS-White","name":"Selene Yoga Hoodie-XS-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

    \n

    • Ivory heather full zip 3/4 sleeve hoodie.
    • Zip pocket at arm for convenient storage.
    • 24.0\" body length.
    • 89% Polyester / 11% Spandex.

    ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"selene-yoga-hoodie-xs-white-1100","links":{},"stock":{"item_id":1100,"product_id":1100,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xs-white-1100.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1171","_score":1,"_source":{"id":1171,"sku":"WH10-S-Blue","name":"Helena Hooded Fleece-S-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

    Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

    \n

    Full zip.
    Banded cuffs and waist.
    Front pockets.
    Machine wash/dry.

    ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helena-hooded-fleece-s-blue-1171","links":{},"stock":{"item_id":1171,"product_id":1171,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-s-blue-1171.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1189","_score":1,"_source":{"id":1189,"sku":"WH11-S-Orange","name":"Eos V-Neck Hoodie-S-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

    Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

    \n

    Semi-fitted.
    Long-Sleeve.
    Machine wash/line dry.

    ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"eos-v-neck-hoodie-s-orange-1189","links":{},"stock":{"item_id":1189,"product_id":1189,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-s-orange-1189.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1186","_score":1,"_source":{"id":1186,"sku":"WH11-XS-Orange","name":"Eos V-Neck Hoodie-XS-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

    Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

    \n

    Semi-fitted.
    Long-Sleeve.
    Machine wash/line dry.

    ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"eos-v-neck-hoodie-xs-orange-1186","links":{},"stock":{"item_id":1186,"product_id":1186,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xs-orange-1186.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1177","_score":1,"_source":{"id":1177,"sku":"WH10-L-Blue","name":"Helena Hooded Fleece-L-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

    Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

    \n

    Full zip.
    Banded cuffs and waist.
    Front pockets.
    Machine wash/dry.

    ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helena-hooded-fleece-l-blue-1177","links":{},"stock":{"item_id":1177,"product_id":1177,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-l-blue-1177.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1195","_score":1,"_source":{"id":1195,"sku":"WH11-L-Orange","name":"Eos V-Neck Hoodie-L-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

    Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

    \n

    Semi-fitted.
    Long-Sleeve.
    Machine wash/line dry.

    ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"eos-v-neck-hoodie-l-orange-1195","links":{},"stock":{"item_id":1195,"product_id":1195,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-l-orange-1195.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1157","_score":1,"_source":{"id":1157,"sku":"WH09-S-Red","name":"Ariel Roll Sleeve Sweatshirt-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

    \n

    • Purple two-tone lightweight hoodie.
    • 100% cotton.
    • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
    • Casual, comfy piece for running errands or weekend activities.

    ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ariel-roll-sleeve-sweatshirt-s-red-1157","links":{},"stock":{"item_id":1157,"product_id":1157,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-s-red-1157.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1158","_score":1,"_source":{"id":1158,"sku":"WH09-M-Green","name":"Ariel Roll Sleeve Sweatshirt-M-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

    \n

    • Purple two-tone lightweight hoodie.
    • 100% cotton.
    • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
    • Casual, comfy piece for running errands or weekend activities.

    ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ariel-roll-sleeve-sweatshirt-m-green-1158","links":{},"stock":{"item_id":1158,"product_id":1158,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-m-green-1158.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1153","_score":1,"_source":{"id":1153,"sku":"WH09-XS-Purple","name":"Ariel Roll Sleeve Sweatshirt-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

    \n

    • Purple two-tone lightweight hoodie.
    • 100% cotton.
    • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
    • Casual, comfy piece for running errands or weekend activities.

    ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ariel-roll-sleeve-sweatshirt-xs-purple-1153","links":{},"stock":{"item_id":1153,"product_id":1153,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xs-purple-1153.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1155","_score":1,"_source":{"id":1155,"sku":"WH09-S-Green","name":"Ariel Roll Sleeve Sweatshirt-S-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

    \n

    • Purple two-tone lightweight hoodie.
    • 100% cotton.
    • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
    • Casual, comfy piece for running errands or weekend activities.

    ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ariel-roll-sleeve-sweatshirt-s-green-1155","links":{},"stock":{"item_id":1155,"product_id":1155,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-s-green-1155.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1057","_score":1,"_source":{"id":1057,"sku":"WH02-M-Green","name":"Hera Pullover Hoodie-M-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

    \n

    • Teal with purple stiching.
    • Hoodie pullover.
    • Snug fit.

    ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hera-pullover-hoodie-m-green-1057","links":{},"stock":{"item_id":1057,"product_id":1057,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-m-green-1057.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1060","_score":1,"_source":{"id":1060,"sku":"WH02-L-Green","name":"Hera Pullover Hoodie-L-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

    \n

    • Teal with purple stiching.
    • Hoodie pullover.
    • Snug fit.

    ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hera-pullover-hoodie-l-green-1060","links":{},"stock":{"item_id":1060,"product_id":1060,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-l-green-1060.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1063","_score":1,"_source":{"id":1063,"sku":"WH02-XL-Green","name":"Hera Pullover Hoodie-XL-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

    \n

    • Teal with purple stiching.
    • Hoodie pullover.
    • Snug fit.

    ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hera-pullover-hoodie-xl-green-1063","links":{},"stock":{"item_id":1063,"product_id":1063,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xl-green-1063.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1191","_score":1,"_source":{"id":1191,"sku":"WH11-M-Green","name":"Eos V-Neck Hoodie-M-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

    Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

    \n

    Semi-fitted.
    Long-Sleeve.
    Machine wash/line dry.

    ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"eos-v-neck-hoodie-m-green-1191","links":{},"stock":{"item_id":1191,"product_id":1191,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-m-green-1191.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1103","_score":1,"_source":{"id":1103,"sku":"WH05-S-White","name":"Selene Yoga Hoodie-S-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

    \n

    • Ivory heather full zip 3/4 sleeve hoodie.
    • Zip pocket at arm for convenient storage.
    • 24.0\" body length.
    • 89% Polyester / 11% Spandex.

    ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"selene-yoga-hoodie-s-white-1103","links":{},"stock":{"item_id":1103,"product_id":1103,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-s-white-1103.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1287","_score":1,"_source":{"id":1287,"sku":"WJ05-XL-Green","name":"Riona Full Zip Jacket-XL-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

    \n

    • Brown heather full zip rouched jacket.
    • Side hand pockets for extra storage.
    • High collar.
    • Thick cuffs for extra coverage.
    • Durable, shape retention material to longer wear.

    ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"riona-full-zip-jacket-xl-green-1287","links":{},"stock":{"item_id":1287,"product_id":1287,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xl-green-1287.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1289","_score":1,"_source":{"id":1289,"sku":"WJ05","name":"Riona Full Zip Jacket","attribute_set_id":9,"price":60,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":60,"description":"

    The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

    \n

    • Brown heather full zip rouched jacket.
    • Side hand pockets for extra storage.
    • High collar.
    • Thick cuffs for extra coverage.
    • Durable, shape retention material to longer wear.

    ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"riona-full-zip-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,148,149],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[117,118,121,125,126,129],"pattern":"197","climate":[203,204,208,211],"slug":"riona-full-zip-jacket-1289","links":{},"stock":{"item_id":1289,"product_id":1289,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ05-XS-Brown","id":1274,"status":1,"name":"Riona Full Zip Jacket-XS-Brown","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"51","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","url_key":"riona-full-zip-jacket-xs-brown","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-XS-Green","id":1275,"status":1,"name":"Riona Full Zip Jacket-XS-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"53","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","url_key":"riona-full-zip-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-XS-Red","id":1276,"status":1,"name":"Riona Full Zip Jacket-XS-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"58","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","url_key":"riona-full-zip-jacket-xs-red","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-S-Brown","id":1277,"status":1,"name":"Riona Full Zip Jacket-S-Brown","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"51","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","url_key":"riona-full-zip-jacket-s-brown","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-S-Green","id":1278,"status":1,"name":"Riona Full Zip Jacket-S-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"53","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","url_key":"riona-full-zip-jacket-s-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-S-Red","id":1279,"status":1,"name":"Riona Full Zip Jacket-S-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"58","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","url_key":"riona-full-zip-jacket-s-red","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-M-Brown","id":1280,"status":1,"name":"Riona Full Zip Jacket-M-Brown","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"51","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","url_key":"riona-full-zip-jacket-m-brown","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-M-Green","id":1281,"status":1,"name":"Riona Full Zip Jacket-M-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"53","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","url_key":"riona-full-zip-jacket-m-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-M-Red","id":1282,"status":1,"name":"Riona Full Zip Jacket-M-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"58","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","url_key":"riona-full-zip-jacket-m-red","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-L-Brown","id":1283,"status":1,"name":"Riona Full Zip Jacket-L-Brown","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"51","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","url_key":"riona-full-zip-jacket-l-brown","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-L-Green","id":1284,"status":1,"name":"Riona Full Zip Jacket-L-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"53","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","url_key":"riona-full-zip-jacket-l-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-L-Red","id":1285,"status":1,"name":"Riona Full Zip Jacket-L-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"58","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","url_key":"riona-full-zip-jacket-l-red","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-XL-Brown","id":1286,"status":1,"name":"Riona Full Zip Jacket-XL-Brown","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"51","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","url_key":"riona-full-zip-jacket-xl-brown","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-XL-Green","id":1287,"status":1,"name":"Riona Full Zip Jacket-XL-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"53","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","url_key":"riona-full-zip-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-XL-Red","id":1288,"status":1,"name":"Riona Full Zip Jacket-XL-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"58","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","url_key":"riona-full-zip-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001}],"configurable_options":[{"id":179,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":51,"label":"Brown"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1289,"attribute_code":"color"},{"id":178,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1289,"attribute_code":"size"}],"color_options":[51,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-1289.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1238","_score":1,"_source":{"id":1238,"sku":"WJ02-XL-Black","name":"Josie Yoga Jacket-XL-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

    When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

    \n

    • Slate rouched neck pullover.
    • Moisture-wicking fabric.
    • Hidden zipper.
    • Mesh armpit venting.
    • Dropped rear hem.

    ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"josie-yoga-jacket-xl-black-1238","links":{},"stock":{"item_id":1238,"product_id":1238,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xl-black-1238.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1239","_score":1,"_source":{"id":1239,"sku":"WJ02-XL-Blue","name":"Josie Yoga Jacket-XL-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

    When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

    \n

    • Slate rouched neck pullover.
    • Moisture-wicking fabric.
    • Hidden zipper.
    • Mesh armpit venting.
    • Dropped rear hem.

    ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"josie-yoga-jacket-xl-blue-1239","links":{},"stock":{"item_id":1239,"product_id":1239,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xl-blue-1239.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1216","_score":1,"_source":{"id":1216,"sku":"WJ01-S-Blue","name":"Stellar Solar Jacket-S-Blue","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

    Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

    \n

    • Loose fit.
    • Reflectivity.
    • Flat seams.
    • Machine wash/dry.
    • Deep pink jacket with front panel rouching

    ","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","color":"50","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stellar-solar-jacket-s-blue-1216","links":{},"stock":{"item_id":1216,"product_id":1216,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-s-blue-1216.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1220","_score":1,"_source":{"id":1220,"sku":"WJ01-M-Red","name":"Stellar Solar Jacket-M-Red","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

    Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

    \n

    • Loose fit.
    • Reflectivity.
    • Flat seams.
    • Machine wash/dry.
    • Deep pink jacket with front panel rouching

    ","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","color":"58","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stellar-solar-jacket-m-red-1220","links":{},"stock":{"item_id":1220,"product_id":1220,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-m-red-1220.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1233","_score":1,"_source":{"id":1233,"sku":"WJ02-M-Blue","name":"Josie Yoga Jacket-M-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

    When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

    \n

    • Slate rouched neck pullover.
    • Moisture-wicking fabric.
    • Hidden zipper.
    • Mesh armpit venting.
    • Dropped rear hem.

    ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"josie-yoga-jacket-m-blue-1233","links":{},"stock":{"item_id":1233,"product_id":1233,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-m-blue-1233.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1206","_score":1,"_source":{"id":1206,"sku":"WH12-M-Gray","name":"Circe Hooded Ice Fleece-M-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

    Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

    \n

    Full-zip front.
    Three-panel hood.
    Flatlock seams throughout.
    Welt hand pockets.
    Machine wash/dry.

    ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"circe-hooded-ice-fleece-m-gray-1206","links":{},"stock":{"item_id":1206,"product_id":1206,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-m-gray-1206.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1214","_score":1,"_source":{"id":1214,"sku":"WH12-XL-Purple","name":"Circe Hooded Ice Fleece-XL-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

    Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

    \n

    Full-zip front.
    Three-panel hood.
    Flatlock seams throughout.
    Welt hand pockets.
    Machine wash/dry.

    ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"circe-hooded-ice-fleece-xl-purple-1214","links":{},"stock":{"item_id":1214,"product_id":1214,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xl-purple-1214.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1256","_score":1,"_source":{"id":1256,"sku":"WJ03-XL-Red","name":"Augusta Pullover Jacket-XL-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

    \n

    • Pink half-zip pullover.
    • Front pouch pockets.
    • Fold-down collar.

    ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"augusta-pullover-jacket-xl-red-1256","links":{},"stock":{"item_id":1256,"product_id":1256,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xl-red-1256.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1258","_score":1,"_source":{"id":1258,"sku":"WJ04-XS-Orange","name":"Ingrid Running Jacket-XS-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

    The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
    • Slim fit.
    • Moisture-wicking fabric.
    • Two side pockets.
    • Zippered pocket at back waist.
    • Machine wash/dry.
    • Ivory specked full zip

    ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ingrid-running-jacket-xs-orange-1258","links":{},"stock":{"item_id":1258,"product_id":1258,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xs-orange-1258.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1263","_score":1,"_source":{"id":1263,"sku":"WJ04-S-White","name":"Ingrid Running Jacket-S-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

    The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
    • Slim fit.
    • Moisture-wicking fabric.
    • Two side pockets.
    • Zippered pocket at back waist.
    • Machine wash/dry.
    • Ivory specked full zip

    ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ingrid-running-jacket-s-white-1263","links":{},"stock":{"item_id":1263,"product_id":1263,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-s-white-1263.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1271","_score":1,"_source":{"id":1271,"sku":"WJ04-XL-Red","name":"Ingrid Running Jacket-XL-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

    The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
    • Slim fit.
    • Moisture-wicking fabric.
    • Two side pockets.
    • Zippered pocket at back waist.
    • Machine wash/dry.
    • Ivory specked full zip

    ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ingrid-running-jacket-xl-red-1271","links":{},"stock":{"item_id":1271,"product_id":1271,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xl-red-1271.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1290","_score":1,"_source":{"id":1290,"sku":"WJ07-XS-Orange","name":"Inez Full Zip Jacket-XS-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

    \n

    • Purple heather inset full zip jacket.
    • Full zip hoodie.
    • Contrast binding along the zipper, hood and sleeves.
    • Inseam pockets for storage.
    • Thumbholes for comfortable fit.

    ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"inez-full-zip-jacket-xs-orange-1290","links":{},"stock":{"item_id":1290,"product_id":1290,"stock_id":1,"qty":53,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xs-orange-1290.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1227","_score":1,"_source":{"id":1227,"sku":"WJ02-XS-Blue","name":"Josie Yoga Jacket-XS-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

    When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

    \n

    • Slate rouched neck pullover.
    • Moisture-wicking fabric.
    • Hidden zipper.
    • Mesh armpit venting.
    • Dropped rear hem.

    ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"josie-yoga-jacket-xs-blue-1227","links":{},"stock":{"item_id":1227,"product_id":1227,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xs-blue-1227.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1213","_score":1,"_source":{"id":1213,"sku":"WH12-XL-Green","name":"Circe Hooded Ice Fleece-XL-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

    Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

    \n

    Full-zip front.
    Three-panel hood.
    Flatlock seams throughout.
    Welt hand pockets.
    Machine wash/dry.

    ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"circe-hooded-ice-fleece-xl-green-1213","links":{},"stock":{"item_id":1213,"product_id":1213,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xl-green-1213.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1261","_score":1,"_source":{"id":1261,"sku":"WJ04-S-Orange","name":"Ingrid Running Jacket-S-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

    The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
    • Slim fit.
    • Moisture-wicking fabric.
    • Two side pockets.
    • Zippered pocket at back waist.
    • Machine wash/dry.
    • Ivory specked full zip

    ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ingrid-running-jacket-s-orange-1261","links":{},"stock":{"item_id":1261,"product_id":1261,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-s-orange-1261.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1268","_score":1,"_source":{"id":1268,"sku":"WJ04-L-Red","name":"Ingrid Running Jacket-L-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

    The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
    • Slim fit.
    • Moisture-wicking fabric.
    • Two side pockets.
    • Zippered pocket at back waist.
    • Machine wash/dry.
    • Ivory specked full zip

    ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ingrid-running-jacket-l-red-1268","links":{},"stock":{"item_id":1268,"product_id":1268,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-l-red-1268.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1264","_score":1,"_source":{"id":1264,"sku":"WJ04-M-Orange","name":"Ingrid Running Jacket-M-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

    The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
    • Slim fit.
    • Moisture-wicking fabric.
    • Two side pockets.
    • Zippered pocket at back waist.
    • Machine wash/dry.
    • Ivory specked full zip

    ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ingrid-running-jacket-m-orange-1264","links":{},"stock":{"item_id":1264,"product_id":1264,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-m-orange-1264.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1203","_score":1,"_source":{"id":1203,"sku":"WH12-S-Gray","name":"Circe Hooded Ice Fleece-S-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

    Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

    \n

    Full-zip front.
    Three-panel hood.
    Flatlock seams throughout.
    Welt hand pockets.
    Machine wash/dry.

    ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"circe-hooded-ice-fleece-s-gray-1203","links":{},"stock":{"item_id":1203,"product_id":1203,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-s-gray-1203.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1205","_score":1,"_source":{"id":1205,"sku":"WH12-S-Purple","name":"Circe Hooded Ice Fleece-S-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

    Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

    \n

    Full-zip front.
    Three-panel hood.
    Flatlock seams throughout.
    Welt hand pockets.
    Machine wash/dry.

    ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"circe-hooded-ice-fleece-s-purple-1205","links":{},"stock":{"item_id":1205,"product_id":1205,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-s-purple-1205.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1200","_score":1,"_source":{"id":1200,"sku":"WH12-XS-Gray","name":"Circe Hooded Ice Fleece-XS-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

    Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

    \n

    Full-zip front.
    Three-panel hood.
    Flatlock seams throughout.
    Welt hand pockets.
    Machine wash/dry.

    ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"circe-hooded-ice-fleece-xs-gray-1200","links":{},"stock":{"item_id":1200,"product_id":1200,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xs-gray-1200.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1308","_score":1,"_source":{"id":1308,"sku":"WJ08-XS-Purple","name":"Adrienne Trek Jacket-XS-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

    \n

    • gray 1/4 zip pullover.
    • Comfortable, relaxed fit.
    • Front zip for venting.
    • Spacious, kangaroo pockets.
    • 27\" body length.
    • 95% Organic Cotton / 5% Spandex.

    ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"adrienne-trek-jacket-xs-purple-1308","links":{},"stock":{"item_id":1308,"product_id":1308,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xs-purple-1308.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1247","_score":1,"_source":{"id":1247,"sku":"WJ03-S-Red","name":"Augusta Pullover Jacket-S-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

    \n

    • Pink half-zip pullover.
    • Front pouch pockets.
    • Fold-down collar.

    ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"augusta-pullover-jacket-s-red-1247","links":{},"stock":{"item_id":1247,"product_id":1247,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-s-red-1247.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1449","_score":1,"_source":{"id":1449,"sku":"WS04","name":"Layla Tee","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

    Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

    \n

    • Teal tee.
    • Long back hem.
    • Dropped shoulders.

    ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"layla-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"33","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"layla-tee-1449","links":{},"stock":{"item_id":1449,"product_id":1449,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS04-XS-Blue","id":1434,"status":1,"name":"Layla Tee-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"167","color":"50","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","url_key":"layla-tee-xs-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-XS-Green","id":1435,"status":1,"name":"Layla Tee-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"167","color":"53","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","url_key":"layla-tee-xs-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-XS-Red","id":1436,"status":1,"name":"Layla Tee-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"167","color":"58","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","url_key":"layla-tee-xs-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-S-Blue","id":1437,"status":1,"name":"Layla Tee-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"168","color":"50","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","url_key":"layla-tee-s-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-S-Green","id":1438,"status":1,"name":"Layla Tee-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"168","color":"53","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","url_key":"layla-tee-s-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-S-Red","id":1439,"status":1,"name":"Layla Tee-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"168","color":"58","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","url_key":"layla-tee-s-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-M-Blue","id":1440,"status":1,"name":"Layla Tee-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"169","color":"50","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","url_key":"layla-tee-m-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-M-Green","id":1441,"status":1,"name":"Layla Tee-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"169","color":"53","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","url_key":"layla-tee-m-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-M-Red","id":1442,"status":1,"name":"Layla Tee-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"169","color":"58","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","url_key":"layla-tee-m-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-L-Blue","id":1443,"status":1,"name":"Layla Tee-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"170","color":"50","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","url_key":"layla-tee-l-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-L-Green","id":1444,"status":1,"name":"Layla Tee-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"170","color":"53","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","url_key":"layla-tee-l-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-L-Red","id":1445,"status":1,"name":"Layla Tee-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"170","color":"58","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","url_key":"layla-tee-l-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-XL-Blue","id":1446,"status":1,"name":"Layla Tee-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"171","color":"50","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","url_key":"layla-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-XL-Green","id":1447,"status":1,"name":"Layla Tee-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"171","color":"53","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","url_key":"layla-tee-xl-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-XL-Red","id":1448,"status":1,"name":"Layla Tee-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"171","color":"58","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","url_key":"layla-tee-xl-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":199,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1449,"attribute_code":"color"},{"id":198,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1449,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-1449.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1311","_score":1,"_source":{"id":1311,"sku":"WJ08-S-Purple","name":"Adrienne Trek Jacket-S-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

    \n

    • gray 1/4 zip pullover.
    • Comfortable, relaxed fit.
    • Front zip for venting.
    • Spacious, kangaroo pockets.
    • 27\" body length.
    • 95% Organic Cotton / 5% Spandex.

    ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"adrienne-trek-jacket-s-purple-1311","links":{},"stock":{"item_id":1311,"product_id":1311,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-s-purple-1311.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1312","_score":1,"_source":{"id":1312,"sku":"WJ08-M-Gray","name":"Adrienne Trek Jacket-M-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

    \n

    • gray 1/4 zip pullover.
    • Comfortable, relaxed fit.
    • Front zip for venting.
    • Spacious, kangaroo pockets.
    • 27\" body length.
    • 95% Organic Cotton / 5% Spandex.

    ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"adrienne-trek-jacket-m-gray-1312","links":{},"stock":{"item_id":1312,"product_id":1312,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-m-gray-1312.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1322","_score":1,"_source":{"id":1322,"sku":"WJ09-XS-Blue","name":"Jade Yoga Jacket-XS-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


    If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

    \n

    • Seafoam 1/4 zip pullover with purple stitching.
    • Lightweight, quick-drying, water-resistant construction.
    • Shirred details at front and back for a feminine look.
    • Hood collapses into collar.
    • Mesh liner for breathability.
    • Front zip pockets.
    • Hem cinches at sideseam.
    • 100% Polyester.

    ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jade-yoga-jacket-xs-blue-1322","links":{},"stock":{"item_id":1322,"product_id":1322,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xs-blue-1322.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1331","_score":1,"_source":{"id":1331,"sku":"WJ09-L-Blue","name":"Jade Yoga Jacket-L-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


    If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

    \n

    • Seafoam 1/4 zip pullover with purple stitching.
    • Lightweight, quick-drying, water-resistant construction.
    • Shirred details at front and back for a feminine look.
    • Hood collapses into collar.
    • Mesh liner for breathability.
    • Front zip pockets.
    • Hem cinches at sideseam.
    • 100% Polyester.

    ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jade-yoga-jacket-l-blue-1331","links":{},"stock":{"item_id":1331,"product_id":1331,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-l-blue-1331.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1347","_score":1,"_source":{"id":1347,"sku":"WJ10-L-Black","name":"Nadia Elements Shell-L-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

    \n

    • Zippered front.
    • Zippered side pockets.
    • Drawstring-adjustable waist and hood.
    • Machine wash/line dry.
    • Light blue 1/4 zip pullover.

    ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nadia-elements-shell-l-black-1347","links":{},"stock":{"item_id":1347,"product_id":1347,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-l-black-1347.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1332","_score":1,"_source":{"id":1332,"sku":"WJ09-L-Gray","name":"Jade Yoga Jacket-L-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


    If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

    \n

    • Seafoam 1/4 zip pullover with purple stitching.
    • Lightweight, quick-drying, water-resistant construction.
    • Shirred details at front and back for a feminine look.
    • Hood collapses into collar.
    • Mesh liner for breathability.
    • Front zip pockets.
    • Hem cinches at sideseam.
    • 100% Polyester.

    ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jade-yoga-jacket-l-gray-1332","links":{},"stock":{"item_id":1332,"product_id":1332,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-l-gray-1332.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1410","_score":1,"_source":{"id":1410,"sku":"WS02-M-Red","name":"Gabrielle Micro Sleeve Top-M-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

    \n

    • Lime green v-neck tee.
    • Slimming, flattering fit.
    • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
    • Longer curved hem provides additional coverage.
    • 55% Hemp / 45% Organic Cotton.

    ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gabrielle-micro-sleeve-top-m-red-1410","links":{},"stock":{"item_id":1410,"product_id":1410,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-m-red-1410.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1440","_score":1,"_source":{"id":1440,"sku":"WS04-M-Blue","name":"Layla Tee-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

    \n

    • Teal tee.
    • Long back hem.
    • Dropped shoulders.

    ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"layla-tee-m-blue-1440","links":{},"stock":{"item_id":1440,"product_id":1440,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-m-blue-1440.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1413","_score":1,"_source":{"id":1413,"sku":"WS02-L-Red","name":"Gabrielle Micro Sleeve Top-L-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

    \n

    • Lime green v-neck tee.
    • Slimming, flattering fit.
    • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
    • Longer curved hem provides additional coverage.
    • 55% Hemp / 45% Organic Cotton.

    ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gabrielle-micro-sleeve-top-l-red-1413","links":{},"stock":{"item_id":1413,"product_id":1413,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-l-red-1413.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1446","_score":1,"_source":{"id":1446,"sku":"WS04-XL-Blue","name":"Layla Tee-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

    \n

    • Teal tee.
    • Long back hem.
    • Dropped shoulders.

    ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"layla-tee-xl-blue-1446","links":{},"stock":{"item_id":1446,"product_id":1446,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xl-blue-1446.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1342","_score":1,"_source":{"id":1342,"sku":"WJ10-S-Orange","name":"Nadia Elements Shell-S-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

    \n

    • Zippered front.
    • Zippered side pockets.
    • Drawstring-adjustable waist and hood.
    • Machine wash/line dry.
    • Light blue 1/4 zip pullover.

    ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nadia-elements-shell-s-orange-1342","links":{},"stock":{"item_id":1342,"product_id":1342,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-s-orange-1342.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1336","_score":1,"_source":{"id":1336,"sku":"WJ09-XL-Green","name":"Jade Yoga Jacket-XL-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


    If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

    \n

    • Seafoam 1/4 zip pullover with purple stitching.
    • Lightweight, quick-drying, water-resistant construction.
    • Shirred details at front and back for a feminine look.
    • Hood collapses into collar.
    • Mesh liner for breathability.
    • Front zip pockets.
    • Hem cinches at sideseam.
    • 100% Polyester.

    ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jade-yoga-jacket-xl-green-1336","links":{},"stock":{"item_id":1336,"product_id":1336,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xl-green-1336.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1408","_score":1,"_source":{"id":1408,"sku":"WS02-M-Blue","name":"Gabrielle Micro Sleeve Top-M-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

    \n

    • Lime green v-neck tee.
    • Slimming, flattering fit.
    • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
    • Longer curved hem provides additional coverage.
    • 55% Hemp / 45% Organic Cotton.

    ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gabrielle-micro-sleeve-top-m-blue-1408","links":{},"stock":{"item_id":1408,"product_id":1408,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-m-blue-1408.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1437","_score":1,"_source":{"id":1437,"sku":"WS04-S-Blue","name":"Layla Tee-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

    \n

    • Teal tee.
    • Long back hem.
    • Dropped shoulders.

    ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"layla-tee-s-blue-1437","links":{},"stock":{"item_id":1437,"product_id":1437,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-s-blue-1437.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1390","_score":1,"_source":{"id":1390,"sku":"WJ12-S-Blue","name":"Olivia 1/4 Zip Light Jacket-S-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

    Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

    \n

    • Loose fit.
    • Reflectivity.
    • Flat seams.
    • Machine wash/dry.

    ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"olivia-14-zip-light-jacket-s-blue-1390","links":{},"stock":{"item_id":1390,"product_id":1390,"stock_id":1,"qty":80,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-s-blue-1390.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1391","_score":1,"_source":{"id":1391,"sku":"WJ12-S-Purple","name":"Olivia 1/4 Zip Light Jacket-S-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

    Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

    \n

    • Loose fit.
    • Reflectivity.
    • Flat seams.
    • Machine wash/dry.

    ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"olivia-14-zip-light-jacket-s-purple-1391","links":{},"stock":{"item_id":1391,"product_id":1391,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-s-purple-1391.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1402","_score":1,"_source":{"id":1402,"sku":"WS02-XS-Blue","name":"Gabrielle Micro Sleeve Top-XS-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

    \n

    • Lime green v-neck tee.
    • Slimming, flattering fit.
    • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
    • Longer curved hem provides additional coverage.
    • 55% Hemp / 45% Organic Cotton.

    ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gabrielle-micro-sleeve-top-xs-blue-1402","links":{},"stock":{"item_id":1402,"product_id":1402,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xs-blue-1402.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1412","_score":1,"_source":{"id":1412,"sku":"WS02-L-Green","name":"Gabrielle Micro Sleeve Top-L-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

    \n

    • Lime green v-neck tee.
    • Slimming, flattering fit.
    • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
    • Longer curved hem provides additional coverage.
    • 55% Hemp / 45% Organic Cotton.

    ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gabrielle-micro-sleeve-top-l-green-1412","links":{},"stock":{"item_id":1412,"product_id":1412,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-l-green-1412.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1445","_score":1,"_source":{"id":1445,"sku":"WS04-L-Red","name":"Layla Tee-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

    \n

    • Teal tee.
    • Long back hem.
    • Dropped shoulders.

    ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"layla-tee-l-red-1445","links":{},"stock":{"item_id":1445,"product_id":1445,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-l-red-1445.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1373","_score":1,"_source":{"id":1373,"sku":"WJ06-S-Blue","name":"Juno Jacket-S-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

    On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

    \n

    • Adjustable hood.
    • Fleece-lined, zippered hand pockets.
    • Thumbhole cuffs.
    • Full zip.
    • Mock-neck collar.
    • Machine wash/dry.

    ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juno-jacket-s-blue-1373","links":{},"stock":{"item_id":1373,"product_id":1373,"stock_id":1,"qty":78,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-s-blue-1373.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1475","_score":1,"_source":{"id":1475,"sku":"WS07-L-Black","name":"Juliana Short-Sleeve Tee-L-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

    \n

    • Black scoop neck tee.
    • Side rouching.
    • Relaxed fit.

    ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juliana-short-sleeve-tee-l-black-1475","links":{},"stock":{"item_id":1475,"product_id":1475,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-l-black-1475.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1495","_score":1,"_source":{"id":1495,"sku":"WS08-XL-Blue","name":"Minerva LumaTech™ V-Tee-XL-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

    \n

    • Navy blue heather soft v-neck tee.
    • Flatlock seams for chafe-free comfort.
    • Relaxed cut.
    • Ultra-lightweight fabric.
    • Machine wash/dry.

    ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"minerva-lumatech-and-trade-v-tee-xl-blue-1495","links":{},"stock":{"item_id":1495,"product_id":1495,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xl-blue-1495.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1482","_score":1,"_source":{"id":1482,"sku":"WS08-XS-Black","name":"Minerva LumaTech™ V-Tee-XS-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2019-04-15 08:30:18","weight":1,"product_links":[{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WS08","linked_product_type":"configurable","position":1},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WH02","linked_product_type":"configurable","position":2},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WS09","linked_product_type":"configurable","position":3},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WJ03","linked_product_type":"configurable","position":4},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WP10","linked_product_type":"configurable","position":5},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WT03","linked_product_type":"configurable","position":6},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WH10","linked_product_type":"configurable","position":7},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WJ12","linked_product_type":"configurable","position":8}],"tier_prices":[],"custom_attributes":null,"description":"

    Don't be fooled by the simple design of our Minerva LumaTechâ„¢ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup. Beatufiul style.

    \r\n

    • Navy blue heather soft v-neck tee.
    • Flatlock seams for chafe-free comfort.
    • Relaxed cut.
    • Ultra-lightweight fabric.
    • Machine wash/dry. Beatufiull drying features

    ","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xs-black","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"167","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"1","style_general":"126","slug":"minerva-lumatech-and-trade-v-tee-xs-black-1482","links":{"related":[{"sku":"WS08","pos":1},{"sku":"WH02","pos":2},{"sku":"WS09","pos":3},{"sku":"WJ03","pos":4},{"sku":"WP10","pos":5},{"sku":"WT03","pos":6},{"sku":"WH10","pos":7},{"sku":"WJ12","pos":8}]},"stock":{"item_id":1482,"product_id":1482,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-04-15 08:30:18","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xs-black-1482.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1485","_score":1,"_source":{"id":1485,"sku":"WS08-S-Black","name":"Minerva LumaTech™ V-Tee-S-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

    \n

    • Navy blue heather soft v-neck tee.
    • Flatlock seams for chafe-free comfort.
    • Relaxed cut.
    • Ultra-lightweight fabric.
    • Machine wash/dry.

    ","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"minerva-lumatech-and-trade-v-tee-s-black-1485","links":{},"stock":{"item_id":1485,"product_id":1485,"stock_id":1,"qty":36,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-s-black-1485.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1567","_score":1,"_source":{"id":1567,"sku":"WS01-S-Yellow","name":"Gwyn Endurance Tee-S-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

    \n

    • Short-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gwyn-endurance-tee-s-yellow-1567","links":{},"stock":{"item_id":1567,"product_id":1567,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-s-yellow-1567.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1569","_score":1,"_source":{"id":1569,"sku":"WS01-M-Green","name":"Gwyn Endurance Tee-M-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

    \n

    • Short-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gwyn-endurance-tee-m-green-1569","links":{},"stock":{"item_id":1569,"product_id":1569,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-m-green-1569.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1573","_score":1,"_source":{"id":1573,"sku":"WS01-L-Yellow","name":"Gwyn Endurance Tee-L-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

    \n

    • Short-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gwyn-endurance-tee-l-yellow-1573","links":{},"stock":{"item_id":1573,"product_id":1573,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-l-yellow-1573.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1580","_score":1,"_source":{"id":1580,"sku":"WS05-XS-Yellow","name":"Desiree Fitness Tee-XS-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

    \n

    • Short-Sleeves.
    • Performance fabric.
    • Machine wash/line dry.

    ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"desiree-fitness-tee-xs-yellow-1580","links":{},"stock":{"item_id":1580,"product_id":1580,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xs-yellow-1580.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1554","_score":1,"_source":{"id":1554,"sku":"WS12-M-Purple","name":"Radiant Tee-M-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

    So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

    \n

    • Salmon soft scoop neck tee.
    • Athletic, semi-form fit.
    • Flat seams prevent chafing.
    • 67% Organic Cotton / 28% Hemp / 5% Spandex.

    ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"radiant-tee-m-purple-1554","links":{},"stock":{"item_id":1554,"product_id":1554,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-m-purple-1554.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1557","_score":1,"_source":{"id":1557,"sku":"WS12-L-Purple","name":"Radiant Tee-L-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

    So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

    \n

    • Salmon soft scoop neck tee.
    • Athletic, semi-form fit.
    • Flat seams prevent chafing.
    • 67% Organic Cotton / 28% Hemp / 5% Spandex.

    ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"radiant-tee-l-purple-1557","links":{},"stock":{"item_id":1557,"product_id":1557,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-l-purple-1557.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1575","_score":1,"_source":{"id":1575,"sku":"WS01-XL-Green","name":"Gwyn Endurance Tee-XL-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

    \n

    • Short-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gwyn-endurance-tee-xl-green-1575","links":{},"stock":{"item_id":1575,"product_id":1575,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xl-green-1575.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1458","_score":1,"_source":{"id":1458,"sku":"WS06-M-Red","name":"Elisa EverCool™ Tee-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

    \n

    • Purple heather v-neck tee.
    • Short-Sleeves.
    • Luma EverCool™ fabric.
    • Machine wash/line dry.

    ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"elisa-evercool-and-trade-tee-m-red-1458","links":{},"stock":{"item_id":1458,"product_id":1458,"stock_id":1,"qty":59,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-m-red-1458.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1456","_score":1,"_source":{"id":1456,"sku":"WS06-M-Gray","name":"Elisa EverCool™ Tee-M-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

    \n

    • Purple heather v-neck tee.
    • Short-Sleeves.
    • Luma EverCool™ fabric.
    • Machine wash/line dry.

    ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"elisa-evercool-and-trade-tee-m-gray-1456","links":{},"stock":{"item_id":1456,"product_id":1456,"stock_id":1,"qty":78,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-m-gray-1456.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1467","_score":1,"_source":{"id":1467,"sku":"WS07-XS-White","name":"Juliana Short-Sleeve Tee-XS-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

    \n

    • Black scoop neck tee.
    • Side rouching.
    • Relaxed fit.

    ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juliana-short-sleeve-tee-xs-white-1467","links":{},"stock":{"item_id":1467,"product_id":1467,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xs-white-1467.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1468","_score":1,"_source":{"id":1468,"sku":"WS07-XS-Yellow","name":"Juliana Short-Sleeve Tee-XS-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

    \n

    • Black scoop neck tee.
    • Side rouching.
    • Relaxed fit.

    ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juliana-short-sleeve-tee-xs-yellow-1468","links":{},"stock":{"item_id":1468,"product_id":1468,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xs-yellow-1468.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1508","_score":1,"_source":{"id":1508,"sku":"WS09-L-Red","name":"Tiffany Fitness Tee-L-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

    \n

    • Teal soft scoop neck tee.
    • Contrast stitching pattern.
    • Machine wash/dry.

    ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tiffany-fitness-tee-l-red-1508","links":{},"stock":{"item_id":1508,"product_id":1508,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-l-red-1508.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1518","_score":1,"_source":{"id":1518,"sku":"WS10-S-Red","name":"Karissa V-Neck Tee-S-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

    \n

    • Pink heather soft v-neck tee.
    • Luma signature micro sleeves.
    • Semi-fitted.
    • Machine wash/dry.

    ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"karissa-v-neck-tee-s-red-1518","links":{},"stock":{"item_id":1518,"product_id":1518,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-s-red-1518.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1507","_score":1,"_source":{"id":1507,"sku":"WS09-L-Blue","name":"Tiffany Fitness Tee-L-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

    \n

    • Teal soft scoop neck tee.
    • Contrast stitching pattern.
    • Machine wash/dry.

    ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tiffany-fitness-tee-l-blue-1507","links":{},"stock":{"item_id":1507,"product_id":1507,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-l-blue-1507.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1520","_score":1,"_source":{"id":1520,"sku":"WS10-M-Green","name":"Karissa V-Neck Tee-M-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

    \n

    • Pink heather soft v-neck tee.
    • Luma signature micro sleeves.
    • Semi-fitted.
    • Machine wash/dry.

    ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"karissa-v-neck-tee-m-green-1520","links":{},"stock":{"item_id":1520,"product_id":1520,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-m-green-1520.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1552","_score":1,"_source":{"id":1552,"sku":"WS12-M-Blue","name":"Radiant Tee-M-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

    So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

    \n

    • Salmon soft scoop neck tee.
    • Athletic, semi-form fit.
    • Flat seams prevent chafing.
    • 67% Organic Cotton / 28% Hemp / 5% Spandex.

    ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"radiant-tee-m-blue-1552","links":{},"stock":{"item_id":1552,"product_id":1552,"stock_id":1,"qty":78,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-m-blue-1552.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1560","_score":1,"_source":{"id":1560,"sku":"WS12-XL-Purple","name":"Radiant Tee-XL-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

    So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

    \n

    • Salmon soft scoop neck tee.
    • Athletic, semi-form fit.
    • Flat seams prevent chafing.
    • 67% Organic Cotton / 28% Hemp / 5% Spandex.

    ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"radiant-tee-xl-purple-1560","links":{},"stock":{"item_id":1560,"product_id":1560,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xl-purple-1560.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1565","_score":1,"_source":{"id":1565,"sku":"WS01-S-Black","name":"Gwyn Endurance Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

    \n

    • Short-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gwyn-endurance-tee-s-black-1565","links":{},"stock":{"item_id":1565,"product_id":1565,"stock_id":1,"qty":37,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-s-black-1565.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1553","_score":1,"_source":{"id":1553,"sku":"WS12-M-Orange","name":"Radiant Tee-M-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

    So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

    \n

    • Salmon soft scoop neck tee.
    • Athletic, semi-form fit.
    • Flat seams prevent chafing.
    • 67% Organic Cotton / 28% Hemp / 5% Spandex.

    ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"radiant-tee-m-orange-1553","links":{},"stock":{"item_id":1553,"product_id":1553,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-m-orange-1553.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1524","_score":1,"_source":{"id":1524,"sku":"WS10-L-Red","name":"Karissa V-Neck Tee-L-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

    \n

    • Pink heather soft v-neck tee.
    • Luma signature micro sleeves.
    • Semi-fitted.
    • Machine wash/dry.

    ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"karissa-v-neck-tee-l-red-1524","links":{},"stock":{"item_id":1524,"product_id":1524,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-l-red-1524.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1538","_score":1,"_source":{"id":1538,"sku":"WS11-M-Yellow","name":"Diva Gym Tee-M-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

    \n

    • Bright yellow v-neck tee.
    • Moisture-wicking fabric.
    • Long-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"diva-gym-tee-m-yellow-1538","links":{},"stock":{"item_id":1538,"product_id":1538,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-m-yellow-1538.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1533","_score":1,"_source":{"id":1533,"sku":"WS11-S-Green","name":"Diva Gym Tee-S-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

    \n

    • Bright yellow v-neck tee.
    • Moisture-wicking fabric.
    • Long-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"diva-gym-tee-s-green-1533","links":{},"stock":{"item_id":1533,"product_id":1533,"stock_id":1,"qty":44,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-s-green-1533.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1491","_score":1,"_source":{"id":1491,"sku":"WS08-L-Black","name":"Minerva LumaTech™ V-Tee-L-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

    \n

    • Navy blue heather soft v-neck tee.
    • Flatlock seams for chafe-free comfort.
    • Relaxed cut.
    • Ultra-lightweight fabric.
    • Machine wash/dry.

    ","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"minerva-lumatech-and-trade-v-tee-l-black-1491","links":{},"stock":{"item_id":1491,"product_id":1491,"stock_id":1,"qty":37,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-l-black-1491.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1488","_score":1,"_source":{"id":1488,"sku":"WS08-M-Black","name":"Minerva LumaTech™ V-Tee-M-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

    \n

    • Navy blue heather soft v-neck tee.
    • Flatlock seams for chafe-free comfort.
    • Relaxed cut.
    • Ultra-lightweight fabric.
    • Machine wash/dry.

    ","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"minerva-lumatech-and-trade-v-tee-m-black-1488","links":{},"stock":{"item_id":1488,"product_id":1488,"stock_id":1,"qty":28,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-m-black-1488.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1505","_score":1,"_source":{"id":1505,"sku":"WS09-M-Red","name":"Tiffany Fitness Tee-M-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

    \n

    • Teal soft scoop neck tee.
    • Contrast stitching pattern.
    • Machine wash/dry.

    ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tiffany-fitness-tee-m-red-1505","links":{},"stock":{"item_id":1505,"product_id":1505,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-m-red-1505.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1649","_score":1,"_source":{"id":1649,"sku":"WB04-M-Purple","name":"Prima Compete Bra Top-M-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
    `
    • Colorblocked details.
    • Machine wash/line dry.

    ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"prima-compete-bra-top-m-purple-1649","links":{},"stock":{"item_id":1649,"product_id":1649,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-m-purple-1649.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1641","_score":1,"_source":{"id":1641,"sku":"WB03","name":"Celeste Sports Bra","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:21","updated_at":"2019-04-16 07:59:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":12.287701,"max_price":12.287701,"max_regular_price":12.287701,"minimal_regular_price":12.287701,"special_price":null,"minimal_price":12.287701,"regular_price":39,"description":"

    Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

    \r\n

    • Mint bra top.
    • Seam-free interior molded cups
    • Odor control.
    • UV protection.
    • Machine wash/dry.

    ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","category_ids":[26,8,35,2],"options_container":"container2","required_options":"1","has_options":"1","url_key":"celeste-sports-bra","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":[143,154],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":"131","pattern":"197","climate":[205,209],"slug":"celeste-sports-bra-1641","links":{},"stock":{"item_id":1641,"product_id":1641,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":null,"vid":null},{"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":null,"vid":null}],"configurable_children":[{"sku":"WB03-XS-Green","id":1626,"status":1,"name":"Celeste Sports Bra-XS-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"167","color":"53","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","url_key":"celeste-sports-bra-xs-green","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-XS-Red","id":1627,"status":1,"name":"Celeste Sports Bra-XS-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"167","color":"58","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","url_key":"celeste-sports-bra-xs-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-XS-Yellow","id":1628,"status":1,"name":"Celeste Sports Bra-XS-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"167","color":"60","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","url_key":"celeste-sports-bra-xs-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-S-Green","id":1629,"status":1,"name":"Celeste Sports Bra-S-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"168","color":"53","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","url_key":"celeste-sports-bra-s-green","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-S-Red","id":1630,"status":1,"name":"Celeste Sports Bra-S-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"168","color":"58","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","url_key":"celeste-sports-bra-s-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-S-Yellow","id":1631,"status":1,"name":"Celeste Sports Bra-S-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"168","color":"60","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","url_key":"celeste-sports-bra-s-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-M-Green","id":1632,"status":1,"name":"Celeste Sports Bra-M-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"169","color":"53","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","url_key":"celeste-sports-bra-m-green","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-M-Red","id":1633,"status":1,"name":"Celeste Sports Bra-M-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"169","color":"58","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","url_key":"celeste-sports-bra-m-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-M-Yellow","id":1634,"status":1,"name":"Celeste Sports Bra-M-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"169","color":"60","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","url_key":"celeste-sports-bra-m-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-L-Green","id":1635,"status":1,"name":"Celeste Sports Bra-L-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"0","category_ids":["26","8","35","2"],"size":"170","color":"53","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","url_key":"celeste-sports-bra-l-green","special_price":9.99,"special_from_date":"2019-04-18 00:00:00","msrp_display_actual_price_type":"0","final_price":9.99,"max_price":9.99,"max_regular_price":9.99,"minimal_regular_price":9.99,"minimal_price":9.99,"regular_price":39},{"sku":"WB03-L-Red","id":1636,"status":1,"name":"Celeste Sports Bra-L-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"170","color":"58","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","url_key":"celeste-sports-bra-l-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-L-Yellow","id":1637,"status":1,"name":"Celeste Sports Bra-L-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"170","color":"60","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","url_key":"celeste-sports-bra-l-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-XL-Green","id":1638,"status":1,"name":"Celeste Sports Bra-XL-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"171","color":"53","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","url_key":"celeste-sports-bra-xl-green","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-XL-Red","id":1639,"status":1,"name":"Celeste Sports Bra-XL-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"171","color":"58","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","url_key":"celeste-sports-bra-xl-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-XL-Yellow","id":1640,"status":1,"name":"Celeste Sports Bra-XL-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"171","color":"60","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","url_key":"celeste-sports-bra-xl-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001}],"configurable_options":[{"id":314,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":1641,"attribute_code":"color"},{"id":315,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1641,"attribute_code":"size"}],"color_options":[53,58,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-1641.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1593","_score":1,"_source":{"id":1593,"sku":"WS05","name":"Desiree Fitness Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":24,"description":"

    When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

    \n

    • Short-Sleeves.
    • Performance fabric.
    • Machine wash/line dry.

    ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"desiree-fitness-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[152,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"desiree-fitness-tee-1593","links":{},"stock":{"item_id":1593,"product_id":1593,"stock_id":1,"qty":24,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS05-XS-Black","id":1578,"status":1,"name":"Desiree Fitness Tee-XS-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"167","color":"49","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","url_key":"desiree-fitness-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WS05-XS-Orange","id":1579,"status":1,"name":"Desiree Fitness Tee-XS-Orange","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"167","color":"56","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","url_key":"desiree-fitness-tee-xs-orange","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-XS-Yellow","id":1580,"status":1,"name":"Desiree Fitness Tee-XS-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"167","color":"60","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","url_key":"desiree-fitness-tee-xs-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-S-Black","id":1581,"status":1,"name":"Desiree Fitness Tee-S-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"168","color":"49","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","url_key":"desiree-fitness-tee-s-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-S-Orange","id":1582,"status":1,"name":"Desiree Fitness Tee-S-Orange","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"168","color":"56","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","url_key":"desiree-fitness-tee-s-orange","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-S-Yellow","id":1583,"status":1,"name":"Desiree Fitness Tee-S-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"168","color":"60","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","url_key":"desiree-fitness-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-M-Black","id":1584,"status":1,"name":"Desiree Fitness Tee-M-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"169","color":"49","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","url_key":"desiree-fitness-tee-m-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-M-Orange","id":1585,"status":1,"name":"Desiree Fitness Tee-M-Orange","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"169","color":"56","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","url_key":"desiree-fitness-tee-m-orange","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-M-Yellow","id":1586,"status":1,"name":"Desiree Fitness Tee-M-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"169","color":"60","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","url_key":"desiree-fitness-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-L-Black","id":1587,"status":1,"name":"Desiree Fitness Tee-L-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"170","color":"49","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","url_key":"desiree-fitness-tee-l-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-L-Orange","id":1588,"status":1,"name":"Desiree Fitness Tee-L-Orange","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"170","color":"56","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","url_key":"desiree-fitness-tee-l-orange","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-L-Yellow","id":1589,"status":1,"name":"Desiree Fitness Tee-L-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"170","color":"60","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","url_key":"desiree-fitness-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-XL-Black","id":1590,"status":1,"name":"Desiree Fitness Tee-XL-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"171","color":"49","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","url_key":"desiree-fitness-tee-xl-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-XL-Orange","id":1591,"status":1,"name":"Desiree Fitness Tee-XL-Orange","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"171","color":"56","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","url_key":"desiree-fitness-tee-xl-orange","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-XL-Yellow","id":1592,"status":1,"name":"Desiree Fitness Tee-XL-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"171","color":"60","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","url_key":"desiree-fitness-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001}],"configurable_options":[{"id":217,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1593,"attribute_code":"color"},{"id":216,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1593,"attribute_code":"size"}],"color_options":[49,56,60],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-1593.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1601","_score":1,"_source":{"id":1601,"sku":"WB01-M-Gray","name":"Electra Bra Top-M-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

    \n

    • Gray rouched bra top.
    • Attractive back straps feature contrasting motif fabric.
    • Interior bra top is lined with breathable mesh.
    • Elastic underband for superior support.
    • Removable cup inserts.
    • Chafe-free flat lock seams provide added comfort.

    ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"electra-bra-top-m-gray-1601","links":{},"stock":{"item_id":1601,"product_id":1601,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-m-gray-1601.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1603","_score":1,"_source":{"id":1603,"sku":"WB01-L-Black","name":"Electra Bra Top-L-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

    \n

    • Gray rouched bra top.
    • Attractive back straps feature contrasting motif fabric.
    • Interior bra top is lined with breathable mesh.
    • Elastic underband for superior support.
    • Removable cup inserts.
    • Chafe-free flat lock seams provide added comfort.

    ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"electra-bra-top-l-black-1603","links":{},"stock":{"item_id":1603,"product_id":1603,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-l-black-1603.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1611","_score":1,"_source":{"id":1611,"sku":"WB02-XS-Orange","name":"Erica Evercool Sports Bra-XS-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

    \n

    • Honeycomb light blue bra top.
    • Elastic hem.
    • Reinforced binding.
    • Machine wash/dry.

    ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erica-evercool-sports-bra-xs-orange-1611","links":{},"stock":{"item_id":1611,"product_id":1611,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xs-orange-1611.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1650","_score":1,"_source":{"id":1650,"sku":"WB04-M-Yellow","name":"Prima Compete Bra Top-M-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
    `
    • Colorblocked details.
    • Machine wash/line dry.

    ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"prima-compete-bra-top-m-yellow-1650","links":{},"stock":{"item_id":1650,"product_id":1650,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-m-yellow-1650.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1638","_score":1,"_source":{"id":1638,"sku":"WB03-XL-Green","name":"Celeste Sports Bra-XL-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

    \n

    • Mint bra top.
    • Seam-free interior molded cups
    • Odor control.
    • UV protection.
    • Machine wash/dry.

    ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"celeste-sports-bra-xl-green-1638","links":{},"stock":{"item_id":1638,"product_id":1638,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xl-green-1638.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1634","_score":1,"_source":{"id":1634,"sku":"WB03-M-Yellow","name":"Celeste Sports Bra-M-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

    \n

    • Mint bra top.
    • Seam-free interior molded cups
    • Odor control.
    • UV protection.
    • Machine wash/dry.

    ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"celeste-sports-bra-m-yellow-1634","links":{},"stock":{"item_id":1634,"product_id":1634,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-m-yellow-1634.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1631","_score":1,"_source":{"id":1631,"sku":"WB03-S-Yellow","name":"Celeste Sports Bra-S-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

    \n

    • Mint bra top.
    • Seam-free interior molded cups
    • Odor control.
    • UV protection.
    • Machine wash/dry.

    ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"celeste-sports-bra-s-yellow-1631","links":{},"stock":{"item_id":1631,"product_id":1631,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-s-yellow-1631.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1599","_score":1,"_source":{"id":1599,"sku":"WB01-S-Purple","name":"Electra Bra Top-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

    \n

    • Gray rouched bra top.
    • Attractive back straps feature contrasting motif fabric.
    • Interior bra top is lined with breathable mesh.
    • Elastic underband for superior support.
    • Removable cup inserts.
    • Chafe-free flat lock seams provide added comfort.

    ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"electra-bra-top-s-purple-1599","links":{},"stock":{"item_id":1599,"product_id":1599,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-s-purple-1599.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1578","_score":1,"_source":{"id":1578,"sku":"WS05-XS-Black","name":"Desiree Fitness Tee-XS-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

    When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

    \n

    • Short-Sleeves.
    • Performance fabric.
    • Machine wash/line dry.

    ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"desiree-fitness-tee-xs-black-1578","links":{},"stock":{"item_id":1578,"product_id":1578,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-07 12:11:20","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xs-black-1578.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1644","_score":1,"_source":{"id":1644,"sku":"WB04-XS-Yellow","name":"Prima Compete Bra Top-XS-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
    `
    • Colorblocked details.
    • Machine wash/line dry.

    ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"prima-compete-bra-top-xs-yellow-1644","links":{},"stock":{"item_id":1644,"product_id":1644,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xs-yellow-1644.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1653","_score":1,"_source":{"id":1653,"sku":"WB04-L-Yellow","name":"Prima Compete Bra Top-L-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
    `
    • Colorblocked details.
    • Machine wash/line dry.

    ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"prima-compete-bra-top-l-yellow-1653","links":{},"stock":{"item_id":1653,"product_id":1653,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-l-yellow-1653.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1721","_score":1,"_source":{"id":1721,"sku":"WT03","name":"Nora Practice Tank","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":39,"description":"

    A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

    \n

    • Pink stripped tank with side rouching.
    • Pre-shrunk.
    • Garment dyed.
    • 92% Organic Cotton/8% Lycra.

    ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"nora-practice-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"nora-practice-tank-1721","links":{},"stock":{"item_id":1721,"product_id":1721,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT03-XS-Orange","id":1706,"status":1,"name":"Nora Practice Tank-XS-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"167","color":"56","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","url_key":"nora-practice-tank-xs-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-XS-Purple","id":1707,"status":1,"name":"Nora Practice Tank-XS-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"167","color":"57","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","url_key":"nora-practice-tank-xs-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-XS-Red","id":1708,"status":1,"name":"Nora Practice Tank-XS-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"167","color":"58","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","url_key":"nora-practice-tank-xs-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-S-Orange","id":1709,"status":1,"name":"Nora Practice Tank-S-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"168","color":"56","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","url_key":"nora-practice-tank-s-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-S-Purple","id":1710,"status":1,"name":"Nora Practice Tank-S-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"168","color":"57","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","url_key":"nora-practice-tank-s-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-S-Red","id":1711,"status":1,"name":"Nora Practice Tank-S-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"168","color":"58","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","url_key":"nora-practice-tank-s-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-M-Orange","id":1712,"status":1,"name":"Nora Practice Tank-M-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"169","color":"56","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","url_key":"nora-practice-tank-m-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-M-Purple","id":1713,"status":1,"name":"Nora Practice Tank-M-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"169","color":"57","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","url_key":"nora-practice-tank-m-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-M-Red","id":1714,"status":1,"name":"Nora Practice Tank-M-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"169","color":"58","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","url_key":"nora-practice-tank-m-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-L-Orange","id":1715,"status":1,"name":"Nora Practice Tank-L-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"170","color":"56","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","url_key":"nora-practice-tank-l-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-L-Purple","id":1716,"status":1,"name":"Nora Practice Tank-L-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"170","color":"57","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","url_key":"nora-practice-tank-l-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-L-Red","id":1717,"status":1,"name":"Nora Practice Tank-L-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"170","color":"58","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","url_key":"nora-practice-tank-l-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-XL-Orange","id":1718,"status":1,"name":"Nora Practice Tank-XL-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"171","color":"56","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","url_key":"nora-practice-tank-xl-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-XL-Purple","id":1719,"status":1,"name":"Nora Practice Tank-XL-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"171","color":"57","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","url_key":"nora-practice-tank-xl-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-XL-Red","id":1720,"status":1,"name":"Nora Practice Tank-XL-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"171","color":"58","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","url_key":"nora-practice-tank-xl-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001}],"configurable_options":[{"id":233,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1721,"attribute_code":"color"},{"id":232,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1721,"attribute_code":"size"}],"color_options":[56,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-1721.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1652","_score":1,"_source":{"id":1652,"sku":"WB04-L-Purple","name":"Prima Compete Bra Top-L-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
    `
    • Colorblocked details.
    • Machine wash/line dry.

    ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"prima-compete-bra-top-l-purple-1652","links":{},"stock":{"item_id":1652,"product_id":1652,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-l-purple-1652.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1659","_score":1,"_source":{"id":1659,"sku":"WB05-XS-Orange","name":"Lucia Cross-Fit Bra -XS-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

    \n

    • Black/white bra top.
    • Criss-cross back design.
    • Machine wash/dry.

    ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lucia-cross-fit-bra-xs-orange-1659","links":{},"stock":{"item_id":1659,"product_id":1659,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xs-orange-1659.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1660","_score":1,"_source":{"id":1660,"sku":"WB05-XS-Purple","name":"Lucia Cross-Fit Bra -XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

    \n

    • Black/white bra top.
    • Criss-cross back design.
    • Machine wash/dry.

    ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lucia-cross-fit-bra-xs-purple-1660","links":{},"stock":{"item_id":1660,"product_id":1660,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xs-purple-1660.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1658","_score":1,"_source":{"id":1658,"sku":"WB05-XS-Black","name":"Lucia Cross-Fit Bra -XS-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

    \n

    • Black/white bra top.
    • Criss-cross back design.
    • Machine wash/dry.

    ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lucia-cross-fit-bra-xs-black-1658","links":{},"stock":{"item_id":1658,"product_id":1658,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xs-black-1658.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1671","_score":1,"_source":{"id":1671,"sku":"WB05-XL-Orange","name":"Lucia Cross-Fit Bra -XL-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

    \n

    • Black/white bra top.
    • Criss-cross back design.
    • Machine wash/dry.

    ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lucia-cross-fit-bra-xl-orange-1671","links":{},"stock":{"item_id":1671,"product_id":1671,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xl-orange-1671.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1669","_score":1,"_source":{"id":1669,"sku":"WB05-L-Purple","name":"Lucia Cross-Fit Bra -L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

    \n

    • Black/white bra top.
    • Criss-cross back design.
    • Machine wash/dry.

    ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lucia-cross-fit-bra-l-purple-1669","links":{},"stock":{"item_id":1669,"product_id":1669,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-l-purple-1669.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1677","_score":1,"_source":{"id":1677,"sku":"WT01-S-Black","name":"Bella Tank-S-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

    \n

    • Navy blue tank top - cotton.
    • Feminine scoop neckline.
    • Power mesh lining in shelf bra for superior support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bella-tank-s-black-1677","links":{},"stock":{"item_id":1677,"product_id":1677,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-s-black-1677.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1682","_score":1,"_source":{"id":1682,"sku":"WT01-M-Orange","name":"Bella Tank-M-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

    \n

    • Navy blue tank top - cotton.
    • Feminine scoop neckline.
    • Power mesh lining in shelf bra for superior support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bella-tank-m-orange-1682","links":{},"stock":{"item_id":1682,"product_id":1682,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-m-orange-1682.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1681","_score":1,"_source":{"id":1681,"sku":"WT01-M-Blue","name":"Bella Tank-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

    \n

    • Navy blue tank top - cotton.
    • Feminine scoop neckline.
    • Power mesh lining in shelf bra for superior support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bella-tank-m-blue-1681","links":{},"stock":{"item_id":1681,"product_id":1681,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-m-blue-1681.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1680","_score":1,"_source":{"id":1680,"sku":"WT01-M-Black","name":"Bella Tank-M-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

    \n

    • Navy blue tank top - cotton.
    • Feminine scoop neckline.
    • Power mesh lining in shelf bra for superior support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bella-tank-m-black-1680","links":{},"stock":{"item_id":1680,"product_id":1680,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-m-black-1680.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1714","_score":1,"_source":{"id":1714,"sku":"WT03-M-Red","name":"Nora Practice Tank-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

    \n

    • Pink stripped tank with side rouching.
    • Pre-shrunk.
    • Garment dyed.
    • 92% Organic Cotton/8% Lycra.

    ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nora-practice-tank-m-red-1714","links":{},"stock":{"item_id":1714,"product_id":1714,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-m-red-1714.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1720","_score":1,"_source":{"id":1720,"sku":"WT03-XL-Red","name":"Nora Practice Tank-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

    \n

    • Pink stripped tank with side rouching.
    • Pre-shrunk.
    • Garment dyed.
    • 92% Organic Cotton/8% Lycra.

    ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nora-practice-tank-xl-red-1720","links":{},"stock":{"item_id":1720,"product_id":1720,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xl-red-1720.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1746","_score":1,"_source":{"id":1746,"sku":"WT05-M-White","name":"Leah Yoga Top-M-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

    \n

    • Blue heather rouched tank top.
    • Camisole tank top.
    • Banding and shirring details.
    • Body hugging fit.
    • Contrast topstitch.
    • Interior shelf bra with shapewear technology.
    • 65% Polyester 35% Cotton.

    ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"leah-yoga-top-m-white-1746","links":{},"stock":{"item_id":1746,"product_id":1746,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-m-white-1746.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1722","_score":1,"_source":{"id":1722,"sku":"WT04-XS-Blue","name":"Nona Fitness Tank-XS-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

    \n

    • Blue/white striped mesh tank.
    • Relaxed fit.
    • Chafe-resistant trim around armholes and collar.
    • Machine wash/dry.

    ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nona-fitness-tank-xs-blue-1722","links":{},"stock":{"item_id":1722,"product_id":1722,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xs-blue-1722.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1738","_score":1,"_source":{"id":1738,"sku":"WT05-XS-Orange","name":"Leah Yoga Top-XS-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

    \n

    • Blue heather rouched tank top.
    • Camisole tank top.
    • Banding and shirring details.
    • Body hugging fit.
    • Contrast topstitch.
    • Interior shelf bra with shapewear technology.
    • 65% Polyester 35% Cotton.

    ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"leah-yoga-top-xs-orange-1738","links":{},"stock":{"item_id":1738,"product_id":1738,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xs-orange-1738.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1729","_score":1,"_source":{"id":1729,"sku":"WT04-M-Purple","name":"Nona Fitness Tank-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

    \n

    • Blue/white striped mesh tank.
    • Relaxed fit.
    • Chafe-resistant trim around armholes and collar.
    • Machine wash/dry.

    ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nona-fitness-tank-m-purple-1729","links":{},"stock":{"item_id":1729,"product_id":1729,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-m-purple-1729.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1805","_score":1,"_source":{"id":1805,"sku":"WT09-S-Purple","name":"Breathe-Easy Tank-S-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

    \n

    • Machine wash/dry.
    • Cocona® fabric.

    ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"breathe-easy-tank-s-purple-1805","links":{},"stock":{"item_id":1805,"product_id":1805,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-03-06 13:46:27","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-s-purple-1805.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1806","_score":1,"_source":{"id":1806,"sku":"WT09-S-White","name":"Breathe-Easy Tank-S-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

    \n

    • Machine wash/dry.
    • Cocona® fabric.

    ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"breathe-easy-tank-s-white-1806","links":{},"stock":{"item_id":1806,"product_id":1806,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-s-white-1806.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1807","_score":1,"_source":{"id":1807,"sku":"WT09-S-Yellow","name":"Breathe-Easy Tank-S-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

    \n

    • Machine wash/dry.
    • Cocona® fabric.

    ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"breathe-easy-tank-s-yellow-1807","links":{},"stock":{"item_id":1807,"product_id":1807,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-s-yellow-1807.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1803","_score":1,"_source":{"id":1803,"sku":"WT09-XS-White","name":"Breathe-Easy Tank-XS-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

    \n

    • Machine wash/dry.
    • Cocona® fabric.

    ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"breathe-easy-tank-xs-white-1803","links":{},"stock":{"item_id":1803,"product_id":1803,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xs-white-1803.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1823","_score":1,"_source":{"id":1823,"sku":"WP01-29-White","name":"Karmen Yoga Pant-29-White","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

    \n

    • Light blue parachute pants.
    • Power mesh internal waistband for support.
    • Internal waistband pocket.
    • Antimicrobial finish.

    ","image":"/w/p/wp01-white_main.jpg","small_image":"/w/p/wp01-white_main.jpg","thumbnail":"/w/p/wp01-white_main.jpg","color":"59","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"karmen-yoga-pant-29-white-1823","links":{},"stock":{"item_id":1823,"product_id":1823,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-29-white-1823.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1811","_score":1,"_source":{"id":1811,"sku":"WT09-L-Purple","name":"Breathe-Easy Tank-L-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

    \n

    • Machine wash/dry.
    • Cocona® fabric.

    ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"breathe-easy-tank-l-purple-1811","links":{},"stock":{"item_id":1811,"product_id":1811,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-l-purple-1811.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1834","_score":1,"_source":{"id":1834,"sku":"WP03-28-Purple","name":"Ida Workout Parachute Pant-28-Purple","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

    \n

    • Royal blue parachute pants.
    • Contrast stripe.
    • Relaxed fit.
    • Drawstring closure.
    • Machine wash/dry.

    ","image":"/w/p/wp03-purple_main.jpg","small_image":"/w/p/wp03-purple_main.jpg","thumbnail":"/w/p/wp03-purple_main.jpg","color":"57","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ida-workout-parachute-pant-28-purple-1834","links":{},"stock":{"item_id":1834,"product_id":1834,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-28-purple-1834.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1827","_score":1,"_source":{"id":1827,"sku":"WP02-28-Red","name":"Emma Leggings-28-Red","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

    \n

    • Light blue heather yoga pants.
    • Body hugging fit.
    • Low rise fit.

    ","image":"/w/p/wp02-red_main.jpg","small_image":"/w/p/wp02-red_main.jpg","thumbnail":"/w/p/wp02-red_main.jpg","color":"58","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"emma-leggings-28-red-1827","links":{},"stock":{"item_id":1827,"product_id":1827,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-28-red-1827.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1835","_score":1,"_source":{"id":1835,"sku":"WP03-29-Black","name":"Ida Workout Parachute Pant-29-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

    \n

    • Royal blue parachute pants.
    • Contrast stripe.
    • Relaxed fit.
    • Drawstring closure.
    • Machine wash/dry.

    ","image":"/w/p/wp03-black_main.jpg","small_image":"/w/p/wp03-black_main.jpg","thumbnail":"/w/p/wp03-black_main.jpg","color":"49","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ida-workout-parachute-pant-29-black-1835","links":{},"stock":{"item_id":1835,"product_id":1835,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-29-black-1835.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1752","_score":1,"_source":{"id":1752,"sku":"WT05-XL-White","name":"Leah Yoga Top-XL-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

    \n

    • Blue heather rouched tank top.
    • Camisole tank top.
    • Banding and shirring details.
    • Body hugging fit.
    • Contrast topstitch.
    • Interior shelf bra with shapewear technology.
    • 65% Polyester 35% Cotton.

    ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"leah-yoga-top-xl-white-1752","links":{},"stock":{"item_id":1752,"product_id":1752,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xl-white-1752.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1755","_score":1,"_source":{"id":1755,"sku":"WT06-XS-Red","name":"Chloe Compete Tank-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

    \n

    • Royal blue tank top - nylon/spandex.
    • Flatlock stitching.
    • Moisture-wicking fabric.
    • Ergonomic seaming.
    • Machine wash/dry.

    ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chloe-compete-tank-xs-red-1755","links":{},"stock":{"item_id":1755,"product_id":1755,"stock_id":1,"qty":51,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xs-red-1755.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1761","_score":1,"_source":{"id":1761,"sku":"WT06-M-Red","name":"Chloe Compete Tank-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

    \n

    • Royal blue tank top - nylon/spandex.
    • Flatlock stitching.
    • Moisture-wicking fabric.
    • Ergonomic seaming.
    • Machine wash/dry.

    ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chloe-compete-tank-m-red-1761","links":{},"stock":{"item_id":1761,"product_id":1761,"stock_id":1,"qty":80,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-m-red-1761.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1786","_score":1,"_source":{"id":1786,"sku":"WT08-XS-Black","name":"Antonia Racer Tank-XS-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

    \n

    • Machine wash.
    • Line dry.

    ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"antonia-racer-tank-xs-black-1786","links":{},"stock":{"item_id":1786,"product_id":1786,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-03-30 21:09:00","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xs-black-1786.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1713","_score":1,"_source":{"id":1713,"sku":"WT03-M-Purple","name":"Nora Practice Tank-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

    \n

    • Pink stripped tank with side rouching.
    • Pre-shrunk.
    • Garment dyed.
    • 92% Organic Cotton/8% Lycra.

    ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nora-practice-tank-m-purple-1713","links":{},"stock":{"item_id":1713,"product_id":1713,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-m-purple-1713.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1711","_score":1,"_source":{"id":1711,"sku":"WT03-S-Red","name":"Nora Practice Tank-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

    \n

    • Pink stripped tank with side rouching.
    • Pre-shrunk.
    • Garment dyed.
    • 92% Organic Cotton/8% Lycra.

    ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nora-practice-tank-s-red-1711","links":{},"stock":{"item_id":1711,"product_id":1711,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-s-red-1711.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1716","_score":1,"_source":{"id":1716,"sku":"WT03-L-Purple","name":"Nora Practice Tank-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

    \n

    • Pink stripped tank with side rouching.
    • Pre-shrunk.
    • Garment dyed.
    • 92% Organic Cotton/8% Lycra.

    ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nora-practice-tank-l-purple-1716","links":{},"stock":{"item_id":1716,"product_id":1716,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-l-purple-1716.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1710","_score":1,"_source":{"id":1710,"sku":"WT03-S-Purple","name":"Nora Practice Tank-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

    \n

    • Pink stripped tank with side rouching.
    • Pre-shrunk.
    • Garment dyed.
    • 92% Organic Cotton/8% Lycra.

    ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nora-practice-tank-s-purple-1710","links":{},"stock":{"item_id":1710,"product_id":1710,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-s-purple-1710.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1708","_score":1,"_source":{"id":1708,"sku":"WT03-XS-Red","name":"Nora Practice Tank-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

    \n

    • Pink stripped tank with side rouching.
    • Pre-shrunk.
    • Garment dyed.
    • 92% Organic Cotton/8% Lycra.

    ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nora-practice-tank-xs-red-1708","links":{},"stock":{"item_id":1708,"product_id":1708,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xs-red-1708.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1715","_score":1,"_source":{"id":1715,"sku":"WT03-L-Orange","name":"Nora Practice Tank-L-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

    \n

    • Pink stripped tank with side rouching.
    • Pre-shrunk.
    • Garment dyed.
    • 92% Organic Cotton/8% Lycra.

    ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nora-practice-tank-l-orange-1715","links":{},"stock":{"item_id":1715,"product_id":1715,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-l-orange-1715.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1774","_score":1,"_source":{"id":1774,"sku":"WT07-S-White","name":"Maya Tunic-S-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

    \n

    • Mint green heather tunic-style tank.
    • Wrapped back with cut out detail.
    • Drawcord detail at end.
    • Abutted seams.

    ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"maya-tunic-s-white-1774","links":{},"stock":{"item_id":1774,"product_id":1774,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-s-white-1774.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1782","_score":1,"_source":{"id":1782,"sku":"WT07-XL-Green","name":"Maya Tunic-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

    \n

    • Mint green heather tunic-style tank.
    • Wrapped back with cut out detail.
    • Drawcord detail at end.
    • Abutted seams.

    ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"maya-tunic-xl-green-1782","links":{},"stock":{"item_id":1782,"product_id":1782,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xl-green-1782.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1779","_score":1,"_source":{"id":1779,"sku":"WT07-L-Green","name":"Maya Tunic-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

    \n

    • Mint green heather tunic-style tank.
    • Wrapped back with cut out detail.
    • Drawcord detail at end.
    • Abutted seams.

    ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"maya-tunic-l-green-1779","links":{},"stock":{"item_id":1779,"product_id":1779,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-l-green-1779.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1776","_score":1,"_source":{"id":1776,"sku":"WT07-M-Green","name":"Maya Tunic-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

    \n

    • Mint green heather tunic-style tank.
    • Wrapped back with cut out detail.
    • Drawcord detail at end.
    • Abutted seams.

    ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"maya-tunic-m-green-1776","links":{},"stock":{"item_id":1776,"product_id":1776,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-m-green-1776.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1778","_score":1,"_source":{"id":1778,"sku":"WT07-M-Yellow","name":"Maya Tunic-M-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

    \n

    • Mint green heather tunic-style tank.
    • Wrapped back with cut out detail.
    • Drawcord detail at end.
    • Abutted seams.

    ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"maya-tunic-m-yellow-1778","links":{},"stock":{"item_id":1778,"product_id":1778,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-m-yellow-1778.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1686","_score":1,"_source":{"id":1686,"sku":"WT01-XL-Black","name":"Bella Tank-XL-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

    \n

    • Navy blue tank top - cotton.
    • Feminine scoop neckline.
    • Power mesh lining in shelf bra for superior support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bella-tank-xl-black-1686","links":{},"stock":{"item_id":1686,"product_id":1686,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xl-black-1686.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1695","_score":1,"_source":{"id":1695,"sku":"WT02-S-Yellow","name":"Zoe Tank-S-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

    \n

    • Salmon heather tank top.
    • 1\" elastic band on inner bra.
    • Mesh lining on shelf bra for support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoe-tank-s-yellow-1695","links":{},"stock":{"item_id":1695,"product_id":1695,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-s-yellow-1695.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1688","_score":1,"_source":{"id":1688,"sku":"WT01-XL-Orange","name":"Bella Tank-XL-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

    \n

    • Navy blue tank top - cotton.
    • Feminine scoop neckline.
    • Power mesh lining in shelf bra for superior support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bella-tank-xl-orange-1688","links":{},"stock":{"item_id":1688,"product_id":1688,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xl-orange-1688.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1824","_score":1,"_source":{"id":1824,"sku":"WP01","name":"Karmen Yoga Pant","attribute_set_id":10,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":39,"description":"

    Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

    \n

    • Light blue parachute pants.
    • Power mesh internal waistband for support.
    • Internal waistband pocket.
    • Antimicrobial finish.

    ","image":"/w/p/wp01-gray_main.jpg","small_image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"karmen-yoga-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,154],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"113","pattern":"197","climate":[205,206],"slug":"karmen-yoga-pant-1824","links":{},"stock":{"item_id":1824,"product_id":1824,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp01-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP01-28-Black","id":1818,"status":1,"name":"Karmen Yoga Pant-28-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"49","image":"/w/p/wp01-black_main.jpg","small_image":"/w/p/wp01-black_main.jpg","thumbnail":"/w/p/wp01-black_main.jpg","url_key":"karmen-yoga-pant-28-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WP01-28-Gray","id":1819,"status":1,"name":"Karmen Yoga Pant-28-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"52","image":"/w/p/wp01-gray_main.jpg","small_image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","url_key":"karmen-yoga-pant-28-gray","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WP01-28-White","id":1820,"status":1,"name":"Karmen Yoga Pant-28-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"59","image":"/w/p/wp01-white_main.jpg","small_image":"/w/p/wp01-white_main.jpg","thumbnail":"/w/p/wp01-white_main.jpg","url_key":"karmen-yoga-pant-28-white","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WP01-29-Black","id":1821,"status":1,"name":"Karmen Yoga Pant-29-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"49","image":"/w/p/wp01-black_main.jpg","small_image":"/w/p/wp01-black_main.jpg","thumbnail":"/w/p/wp01-black_main.jpg","url_key":"karmen-yoga-pant-29-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WP01-29-Gray","id":1822,"status":1,"name":"Karmen Yoga Pant-29-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"52","image":"/w/p/wp01-gray_main.jpg","small_image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","url_key":"karmen-yoga-pant-29-gray","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WP01-29-White","id":1823,"status":1,"name":"Karmen Yoga Pant-29-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"59","image":"/w/p/wp01-white_main.jpg","small_image":"/w/p/wp01-white_main.jpg","thumbnail":"/w/p/wp01-white_main.jpg","url_key":"karmen-yoga-pant-29-white","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001}],"configurable_options":[{"id":247,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":59,"label":"White"}],"product_id":1824,"attribute_code":"color"},{"id":246,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1824,"attribute_code":"size"}],"color_options":[49,52,59],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-1824.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1801","_score":1,"_source":{"id":1801,"sku":"WT08","name":"Antonia Racer Tank","attribute_set_id":9,"price":34,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":34,"description":"

    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

    \n

    • Machine wash.
    • Line dry.

    ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"antonia-racer-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[152,37,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[205,209],"slug":"antonia-racer-tank-1801","links":{},"stock":{"item_id":1801,"product_id":1801,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT08-XS-Black","id":1786,"status":1,"name":"Antonia Racer Tank-XS-Black","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"167","color":"49","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","url_key":"antonia-racer-tank-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WT08-XS-Purple","id":1787,"status":1,"name":"Antonia Racer Tank-XS-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"167","color":"57","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","url_key":"antonia-racer-tank-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WT08-XS-Yellow","id":1788,"status":1,"name":"Antonia Racer Tank-XS-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"167","color":"60","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","url_key":"antonia-racer-tank-xs-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT08-S-Black","id":1789,"status":1,"name":"Antonia Racer Tank-S-Black","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"168","color":"49","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","url_key":"antonia-racer-tank-s-black","msrp_display_actual_price_type":"0"},{"sku":"WT08-S-Purple","id":1790,"status":1,"name":"Antonia Racer Tank-S-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"168","color":"57","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","url_key":"antonia-racer-tank-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WT08-S-Yellow","id":1791,"status":1,"name":"Antonia Racer Tank-S-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"168","color":"60","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","url_key":"antonia-racer-tank-s-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT08-M-Black","id":1792,"status":1,"name":"Antonia Racer Tank-M-Black","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"169","color":"49","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","url_key":"antonia-racer-tank-m-black","msrp_display_actual_price_type":"0"},{"sku":"WT08-M-Purple","id":1793,"status":1,"name":"Antonia Racer Tank-M-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"169","color":"57","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","url_key":"antonia-racer-tank-m-purple","msrp_display_actual_price_type":"0"},{"sku":"WT08-M-Yellow","id":1794,"status":1,"name":"Antonia Racer Tank-M-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"169","color":"60","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","url_key":"antonia-racer-tank-m-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT08-L-Black","id":1795,"status":1,"name":"Antonia Racer Tank-L-Black","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"170","color":"49","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","url_key":"antonia-racer-tank-l-black","msrp_display_actual_price_type":"0"},{"sku":"WT08-L-Purple","id":1796,"status":1,"name":"Antonia Racer Tank-L-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"170","color":"57","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","url_key":"antonia-racer-tank-l-purple","msrp_display_actual_price_type":"0"},{"sku":"WT08-L-Yellow","id":1797,"status":1,"name":"Antonia Racer Tank-L-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"170","color":"60","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","url_key":"antonia-racer-tank-l-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT08-XL-Black","id":1798,"status":1,"name":"Antonia Racer Tank-XL-Black","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"171","color":"49","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","url_key":"antonia-racer-tank-xl-black","msrp_display_actual_price_type":"0"},{"sku":"WT08-XL-Purple","id":1799,"status":1,"name":"Antonia Racer Tank-XL-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"171","color":"57","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","url_key":"antonia-racer-tank-xl-purple","msrp_display_actual_price_type":"0"},{"sku":"WT08-XL-Yellow","id":1800,"status":1,"name":"Antonia Racer Tank-XL-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"171","color":"60","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","url_key":"antonia-racer-tank-xl-yellow","msrp_display_actual_price_type":"0"}],"configurable_options":[{"id":243,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":57,"label":"Purple"},{"value_index":60,"label":"Yellow"}],"product_id":1801,"attribute_code":"color"},{"id":242,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1801,"attribute_code":"size"}],"color_options":[49,57,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-1801.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1897","_score":1,"_source":{"id":1897,"sku":"WP12-28-Green","name":"Deirdre Relaxed-Fit Capri-28-Green","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

    Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

    \n

    • Heather gray capris with mint green waist & accents.
    • Comfortable, relaxed fit with high rise.
    • Moisture-wicking, 4-way stretch construction.
    • Lined with mesh for better support.
    • Hidden pocket at waistband.
    • Flatlock seams and lined gusset for comfort.

    ","image":"/w/p/wp12-green_main.jpg","small_image":"/w/p/wp12-green_main.jpg","thumbnail":"/w/p/wp12-green_main.jpg","color":"53","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"deirdre-relaxed-fit-capri-28-green-1897","links":{},"stock":{"item_id":1897,"product_id":1897,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-28-green-1897.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1894","_score":1,"_source":{"id":1894,"sku":"WP11","name":"Sylvia Capri","attribute_set_id":10,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":42,"description":"

    Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

    \n

    • Green striped capri.
    • Strategic side seam
    • Comfort gusset with lining.
    • Flat seaming.
    • Wide waistband.
    • Moisture wicking.

    ","image":"/w/p/wp11-green_main.jpg","small_image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sylvia-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,154,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"107","pattern":"199","climate":"205","slug":"sylvia-capri-1894","links":{},"stock":{"item_id":1894,"product_id":1894,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP11-28-Blue","id":1888,"status":1,"name":"Sylvia Capri-28-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"50","image":"/w/p/wp11-blue_main.jpg","small_image":"/w/p/wp11-blue_main.jpg","thumbnail":"/w/p/wp11-blue_main.jpg","url_key":"sylvia-capri-28-blue","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WP11-28-Green","id":1889,"status":1,"name":"Sylvia Capri-28-Green","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"53","image":"/w/p/wp11-green_main.jpg","small_image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","url_key":"sylvia-capri-28-green","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WP11-28-Red","id":1890,"status":1,"name":"Sylvia Capri-28-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"58","image":"/w/p/wp11-red_main.jpg","small_image":"/w/p/wp11-red_main.jpg","thumbnail":"/w/p/wp11-red_main.jpg","url_key":"sylvia-capri-28-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WP11-29-Blue","id":1891,"status":1,"name":"Sylvia Capri-29-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"50","image":"/w/p/wp11-blue_main.jpg","small_image":"/w/p/wp11-blue_main.jpg","thumbnail":"/w/p/wp11-blue_main.jpg","url_key":"sylvia-capri-29-blue","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WP11-29-Green","id":1892,"status":1,"name":"Sylvia Capri-29-Green","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"53","image":"/w/p/wp11-green_main.jpg","small_image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","url_key":"sylvia-capri-29-green","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WP11-29-Red","id":1893,"status":1,"name":"Sylvia Capri-29-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"58","image":"/w/p/wp11-red_main.jpg","small_image":"/w/p/wp11-red_main.jpg","thumbnail":"/w/p/wp11-red_main.jpg","url_key":"sylvia-capri-29-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001}],"configurable_options":[{"id":267,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1894,"attribute_code":"color"},{"id":266,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1894,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-1894.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1845","_score":1,"_source":{"id":1845,"sku":"WP04","name":"Cora Parachute Pant","attribute_set_id":10,"price":75,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":75,"description":"

    Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

    \n

    • Light blue parachute pants.
    • Power mesh internal waistband for support.
    • Internal waistband pocket.
    • Antimicrobial finish.

    ","image":"/w/p/wp04-blue_main.jpg","small_image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cora-parachute-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,37,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[110,115],"pattern":"197","climate":[205,212,206,208,209],"slug":"cora-parachute-pant-1845","links":{},"stock":{"item_id":1845,"product_id":1845,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP04-28-Black","id":1839,"status":1,"name":"Cora Parachute Pant-28-Black","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"49","image":"/w/p/wp04-black_main.jpg","small_image":"/w/p/wp04-black_main.jpg","thumbnail":"/w/p/wp04-black_main.jpg","url_key":"cora-parachute-pant-28-black","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WP04-28-Blue","id":1840,"status":1,"name":"Cora Parachute Pant-28-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"50","image":"/w/p/wp04-blue_main.jpg","small_image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","url_key":"cora-parachute-pant-28-blue","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WP04-28-White","id":1841,"status":1,"name":"Cora Parachute Pant-28-White","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"59","image":"/w/p/wp04-white_main.jpg","small_image":"/w/p/wp04-white_main.jpg","thumbnail":"/w/p/wp04-white_main.jpg","url_key":"cora-parachute-pant-28-white","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WP04-29-Black","id":1842,"status":1,"name":"Cora Parachute Pant-29-Black","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"49","image":"/w/p/wp04-black_main.jpg","small_image":"/w/p/wp04-black_main.jpg","thumbnail":"/w/p/wp04-black_main.jpg","url_key":"cora-parachute-pant-29-black","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WP04-29-Blue","id":1843,"status":1,"name":"Cora Parachute Pant-29-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"50","image":"/w/p/wp04-blue_main.jpg","small_image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","url_key":"cora-parachute-pant-29-blue","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WP04-29-White","id":1844,"status":1,"name":"Cora Parachute Pant-29-White","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"59","image":"/w/p/wp04-white_main.jpg","small_image":"/w/p/wp04-white_main.jpg","thumbnail":"/w/p/wp04-white_main.jpg","url_key":"cora-parachute-pant-29-white","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001}],"configurable_options":[{"id":253,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":59,"label":"White"}],"product_id":1845,"attribute_code":"color"},{"id":252,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1845,"attribute_code":"size"}],"color_options":[49,50,59],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-1845.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1864","_score":1,"_source":{"id":1864,"sku":"WP07-29-Blue","name":"Aeon Capri-29-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

    \n

    • Black capris with teal accents.
    • Thick, 3\" flattering waistband.
    • Media pocket on inner waistband.
    • Dry wick finish for ultimate comfort and dryness.

    ","image":"/w/p/wp07-blue_main.jpg","small_image":"/w/p/wp07-blue_main.jpg","thumbnail":"/w/p/wp07-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"aeon-capri-29-blue-1864","links":{},"stock":{"item_id":1864,"product_id":1864,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-29-blue-1864.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1892","_score":1,"_source":{"id":1892,"sku":"WP11-29-Green","name":"Sylvia Capri-29-Green","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

    \n

    • Green striped capri.
    • Strategic side seam
    • Comfort gusset with lining.
    • Flat seaming.
    • Wide waistband.
    • Moisture wicking.

    ","image":"/w/p/wp11-green_main.jpg","small_image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","color":"53","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sylvia-capri-29-green-1892","links":{},"stock":{"item_id":1892,"product_id":1892,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-29-green-1892.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1867","_score":1,"_source":{"id":1867,"sku":"WP08-28-Black","name":"Bardot Capri-28-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

    \n

    • Black capris with pink waistband.
    • Cropped leggings.
    • Waistband drawcord.
    • Flat, thin and flattering.
    • Made with organic fabric.

    ","image":"/w/p/wp08-black_main.jpg","small_image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bardot-capri-28-black-1867","links":{},"stock":{"item_id":1867,"product_id":1867,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-28-black-1867.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1881","_score":1,"_source":{"id":1881,"sku":"WP10-28-Black","name":"Daria Bikram Pant-28-Black","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

    \n

    • Heather gray capris with pink striped waist.
    • Flatlock seams.
    • Interior pocket.

    ","image":"/w/p/wp10-black_main.jpg","small_image":"/w/p/wp10-black_main.jpg","thumbnail":"/w/p/wp10-black_main.jpg","color":"49","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"daria-bikram-pant-28-black-1881","links":{},"stock":{"item_id":1881,"product_id":1881,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-28-black-1881.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1886","_score":1,"_source":{"id":1886,"sku":"WP10-29-White","name":"Daria Bikram Pant-29-White","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

    \n

    • Heather gray capris with pink striped waist.
    • Flatlock seams.
    • Interior pocket.

    ","image":"/w/p/wp10-white_main.jpg","small_image":"/w/p/wp10-white_main.jpg","thumbnail":"/w/p/wp10-white_main.jpg","color":"59","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"daria-bikram-pant-29-white-1886","links":{},"stock":{"item_id":1886,"product_id":1886,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-29-white-1886.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1895","_score":1,"_source":{"id":1895,"sku":"WP12-28-Blue","name":"Deirdre Relaxed-Fit Capri-28-Blue","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

    Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

    \n

    • Heather gray capris with mint green waist & accents.
    • Comfortable, relaxed fit with high rise.
    • Moisture-wicking, 4-way stretch construction.
    • Lined with mesh for better support.
    • Hidden pocket at waistband.
    • Flatlock seams and lined gusset for comfort.

    ","image":"/w/p/wp12-blue_main.jpg","small_image":"/w/p/wp12-blue_main.jpg","thumbnail":"/w/p/wp12-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"deirdre-relaxed-fit-capri-28-blue-1895","links":{},"stock":{"item_id":1895,"product_id":1895,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-28-blue-1895.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1922","_score":1,"_source":{"id":1922,"sku":"WSH01-32-Green","name":"Fiona Fitness Short-32-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

    \n

    • Black run shorts
    - cotton/spandex.
    • 5” inseam.
    • Machine wash/Line dry.

    ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"fiona-fitness-short-32-green-1922","links":{},"stock":{"item_id":1922,"product_id":1922,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-32-green-1922.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1929","_score":1,"_source":{"id":1929,"sku":"WSH02-29-Orange","name":"Maxima Drawstring Short-29-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

    \n

    • Light gray run shorts
    - cotton polyester.
    • Contrast binding.
    • 3\" inseam.
    • Machine wash/dry.

    ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"maxima-drawstring-short-29-orange-1929","links":{},"stock":{"item_id":1929,"product_id":1929,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-29-orange-1929.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1910","_score":1,"_source":{"id":1910,"sku":"WSH01-28-Green","name":"Fiona Fitness Short-28-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

    \n

    • Black run shorts
    - cotton/spandex.
    • 5” inseam.
    • Machine wash/Line dry.

    ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"fiona-fitness-short-28-green-1910","links":{},"stock":{"item_id":1910,"product_id":1910,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-28-green-1910.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1913","_score":1,"_source":{"id":1913,"sku":"WSH01-29-Green","name":"Fiona Fitness Short-29-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

    \n

    • Black run shorts
    - cotton/spandex.
    • 5” inseam.
    • Machine wash/Line dry.

    ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"fiona-fitness-short-29-green-1913","links":{},"stock":{"item_id":1913,"product_id":1913,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-29-green-1913.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1919","_score":1,"_source":{"id":1919,"sku":"WSH01-31-Green","name":"Fiona Fitness Short-31-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

    \n

    • Black run shorts
    - cotton/spandex.
    • 5” inseam.
    • Machine wash/Line dry.

    ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-31-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"fiona-fitness-short-31-green-1919","links":{},"stock":{"item_id":1919,"product_id":1919,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-31-green-1919.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1861","_score":1,"_source":{"id":1861,"sku":"WP07-28-Blue","name":"Aeon Capri-28-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

    \n

    • Black capris with teal accents.
    • Thick, 3\" flattering waistband.
    • Media pocket on inner waistband.
    • Dry wick finish for ultimate comfort and dryness.

    ","image":"/w/p/wp07-blue_main.jpg","small_image":"/w/p/wp07-blue_main.jpg","thumbnail":"/w/p/wp07-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"aeon-capri-28-blue-1861","links":{},"stock":{"item_id":1861,"product_id":1861,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-28-blue-1861.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1863","_score":1,"_source":{"id":1863,"sku":"WP07-29-Black","name":"Aeon Capri-29-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

    \n

    • Black capris with teal accents.
    • Thick, 3\" flattering waistband.
    • Media pocket on inner waistband.
    • Dry wick finish for ultimate comfort and dryness.

    ","image":"/w/p/wp07-black_main.jpg","small_image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","color":"49","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"aeon-capri-29-black-1863","links":{},"stock":{"item_id":1863,"product_id":1863,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-29-black-1863.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1914","_score":1,"_source":{"id":1914,"sku":"WSH01-29-Red","name":"Fiona Fitness Short-29-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

    \n

    • Black run shorts
    - cotton/spandex.
    • 5” inseam.
    • Machine wash/Line dry.

    ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"fiona-fitness-short-29-red-1914","links":{},"stock":{"item_id":1914,"product_id":1914,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-29-red-1914.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2021","_score":1,"_source":{"id":2021,"sku":"WSH10-29-White","name":"Ana Running Short-29-White","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":49.200001,"description":"

    Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

    \n

    • Black/pink two-layer shorts.
    • Low-rise elastic waistband.
    • Relaxed fit.
    • Ultra-lightweight fabric.
    • Internal drawstring.
    • Machine wash/dry.

    ","image":"/w/s/wsh10-white_main.jpg","small_image":"/w/s/wsh10-white_main.jpg","thumbnail":"/w/s/wsh10-white_main.jpg","color":"59","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ana-running-short-29-white-2021","links":{},"stock":{"item_id":2021,"product_id":2021,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-29-white-2021.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2036","_score":1,"_source":{"id":2036,"sku":"WSH12-30-Green","name":"Erika Running Short-30-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

    \n

    • Seafoam pattern running shorts.
    • Elastic waistband.
    • Snug fit.
    • 4'' inseam.
    • 76% premium brushed Nylon / 24% Spandex.

    ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-30-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"erika-running-short-30-green-2036","links":{},"stock":{"item_id":2036,"product_id":2036,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-30-green-2036.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2037","_score":1,"_source":{"id":2037,"sku":"WSH12-30-Purple","name":"Erika Running Short-30-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

    \n

    • Seafoam pattern running shorts.
    • Elastic waistband.
    • Snug fit.
    • 4'' inseam.
    • 76% premium brushed Nylon / 24% Spandex.

    ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-30-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"erika-running-short-30-purple-2037","links":{},"stock":{"item_id":2037,"product_id":2037,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-30-purple-2037.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2035","_score":1,"_source":{"id":2035,"sku":"WSH12-29-Red","name":"Erika Running Short-29-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

    \n

    • Seafoam pattern running shorts.
    • Elastic waistband.
    • Snug fit.
    • 4'' inseam.
    • 76% premium brushed Nylon / 24% Spandex.

    ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"erika-running-short-29-red-2035","links":{},"stock":{"item_id":2035,"product_id":2035,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-29-red-2035.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1971","_score":1,"_source":{"id":1971,"sku":"WSH04-32-Orange","name":"Artemis Running Short-32-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

    \n

    • Black rouched shorts with mint waist.
    • Soft, lightweight construction.
    • LumaTech™ wicking technology.
    • Semi-fitted.

    ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-32-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"artemis-running-short-32-orange-1971","links":{},"stock":{"item_id":1971,"product_id":1971,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-32-orange-1971.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1981","_score":1,"_source":{"id":1981,"sku":"WSH05-30-Yellow","name":"Bess Yoga Short-30-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

    \n

    • Navy cotton shorts with light bue waist detail.
    • Front shirred waistband.
    • Flat-lock, chafe-free side seams.
    • Vented gusset.
    • Hidden interior pocket.
    • Sustainable and recycled fabric.

    ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-30-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"bess-yoga-short-30-yellow-1981","links":{},"stock":{"item_id":1981,"product_id":1981,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-30-yellow-1981.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1975","_score":1,"_source":{"id":1975,"sku":"WSH05-28-Yellow","name":"Bess Yoga Short-28-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

    \n

    • Navy cotton shorts with light bue waist detail.
    • Front shirred waistband.
    • Flat-lock, chafe-free side seams.
    • Vented gusset.
    • Hidden interior pocket.
    • Sustainable and recycled fabric.

    ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-28-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bess-yoga-short-28-yellow-1975","links":{},"stock":{"item_id":1975,"product_id":1975,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-28-yellow-1975.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1957","_score":1,"_source":{"id":1957,"sku":"WSH04-28-Black","name":"Artemis Running Short-28-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

    \n

    • Black rouched shorts with mint waist.
    • Soft, lightweight construction.
    • LumaTech™ wicking technology.
    • Semi-fitted.

    ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"artemis-running-short-28-black-1957","links":{},"stock":{"item_id":1957,"product_id":1957,"stock_id":1,"qty":80,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-28-black-1957.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1976","_score":1,"_source":{"id":1976,"sku":"WSH05-29-Blue","name":"Bess Yoga Short-29-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

    \n

    • Navy cotton shorts with light bue waist detail.
    • Front shirred waistband.
    • Flat-lock, chafe-free side seams.
    • Vented gusset.
    • Hidden interior pocket.
    • Sustainable and recycled fabric.

    ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bess-yoga-short-29-blue-1976","links":{},"stock":{"item_id":1976,"product_id":1976,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-29-blue-1976.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1982","_score":1,"_source":{"id":1982,"sku":"WSH05-31-Blue","name":"Bess Yoga Short-31-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

    \n

    • Navy cotton shorts with light bue waist detail.
    • Front shirred waistband.
    • Flat-lock, chafe-free side seams.
    • Vented gusset.
    • Hidden interior pocket.
    • Sustainable and recycled fabric.

    ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-31-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"bess-yoga-short-31-blue-1982","links":{},"stock":{"item_id":1982,"product_id":1982,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-31-blue-1982.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2016","_score":1,"_source":{"id":2016,"sku":"WSH10-28-Black","name":"Ana Running Short-28-Black","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":49.200001,"description":"

    Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

    \n

    • Black/pink two-layer shorts.
    • Low-rise elastic waistband.
    • Relaxed fit.
    • Ultra-lightweight fabric.
    • Internal drawstring.
    • Machine wash/dry.

    ","image":"/w/s/wsh10-black_main.jpg","small_image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","color":"49","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ana-running-short-28-black-2016","links":{},"stock":{"item_id":2016,"product_id":2016,"stock_id":1,"qty":55,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-28-black-2016.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2003","_score":1,"_source":{"id":2003,"sku":"WSH08-28-Purple","name":"Sybil Running Short-28-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

    Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

    \n

    • Blue running shorts with green waist.
    • Drawstring-adjustable waist.
    • 4\" inseam. Machine wash/line dry.

    ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sybil-running-short-28-purple-2003","links":{},"stock":{"item_id":2003,"product_id":2003,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-28-purple-2003.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1992","_score":1,"_source":{"id":1992,"sku":"WSH06-29-Gray","name":"Angel Light Running Short-29-Gray","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

    \n

    • Dark heather gray running shorts.
    • Snug fit.
    • Elastic waistband.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/w/s/wsh06-gray_main.jpg","small_image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","color":"52","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"angel-light-running-short-29-gray-1992","links":{},"stock":{"item_id":1992,"product_id":1992,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-29-gray-1992.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1963","_score":1,"_source":{"id":1963,"sku":"WSH04-30-Black","name":"Artemis Running Short-30-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

    \n

    • Black rouched shorts with mint waist.
    • Soft, lightweight construction.
    • LumaTech™ wicking technology.
    • Semi-fitted.

    ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-30-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"artemis-running-short-30-black-1963","links":{},"stock":{"item_id":1963,"product_id":1963,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-30-black-1963.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1991","_score":1,"_source":{"id":1991,"sku":"WSH06-28-Purple","name":"Angel Light Running Short-28-Purple","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

    \n

    • Dark heather gray running shorts.
    • Snug fit.
    • Elastic waistband.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/w/s/wsh06-purple_main.jpg","small_image":"/w/s/wsh06-purple_main.jpg","thumbnail":"/w/s/wsh06-purple_main.jpg","color":"57","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"angel-light-running-short-28-purple-1991","links":{},"stock":{"item_id":1991,"product_id":1991,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-28-purple-1991.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2002","_score":1,"_source":{"id":2002,"sku":"WSH07","name":"Echo Fit Compression Short","attribute_set_id":10,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":24,"description":"

    Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

    \n

    • Black compression shorts.
    • High-waisted cut.
    • Compression fit.
    • Inseam: 1.0\".
    • Machine wash/dry.

    ","image":"/w/s/wsh07-black_main.jpg","small_image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"echo-fit-compression-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[112,105,108],"pattern":"197","climate":[202,205,212,206,209],"slug":"echo-fit-compression-short-2002","links":{},"stock":{"item_id":2002,"product_id":2002,"stock_id":1,"qty":14,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh07-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH07-28-Black","id":1996,"status":1,"name":"Echo Fit Compression Short-28-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","2"],"size":"172","color":"49","image":"/w/s/wsh07-black_main.jpg","small_image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","url_key":"echo-fit-compression-short-28-black","msrp_display_actual_price_type":"0"},{"sku":"WSH07-28-Blue","id":1997,"status":1,"name":"Echo Fit Compression Short-28-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","2"],"size":"172","color":"50","image":"/w/s/wsh07-blue_main.jpg","small_image":"/w/s/wsh07-blue_main.jpg","thumbnail":"/w/s/wsh07-blue_main.jpg","url_key":"echo-fit-compression-short-28-blue","msrp_display_actual_price_type":"0"},{"sku":"WSH07-28-Purple","id":1998,"status":1,"name":"Echo Fit Compression Short-28-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","2"],"size":"172","color":"57","image":"/w/s/wsh07-purple_main.jpg","small_image":"/w/s/wsh07-purple_main.jpg","thumbnail":"/w/s/wsh07-purple_main.jpg","url_key":"echo-fit-compression-short-28-purple","msrp_display_actual_price_type":"0"},{"sku":"WSH07-29-Black","id":1999,"status":1,"name":"Echo Fit Compression Short-29-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","2"],"size":"173","color":"49","image":"/w/s/wsh07-black_main.jpg","small_image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","url_key":"echo-fit-compression-short-29-black","msrp_display_actual_price_type":"0"},{"sku":"WSH07-29-Blue","id":2000,"status":1,"name":"Echo Fit Compression Short-29-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","2"],"size":"173","color":"50","image":"/w/s/wsh07-blue_main.jpg","small_image":"/w/s/wsh07-blue_main.jpg","thumbnail":"/w/s/wsh07-blue_main.jpg","url_key":"echo-fit-compression-short-29-blue","msrp_display_actual_price_type":"0"},{"sku":"WSH07-29-Purple","id":2001,"status":1,"name":"Echo Fit Compression Short-29-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","2"],"size":"173","color":"57","image":"/w/s/wsh07-purple_main.jpg","small_image":"/w/s/wsh07-purple_main.jpg","thumbnail":"/w/s/wsh07-purple_main.jpg","url_key":"echo-fit-compression-short-29-purple","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001}],"configurable_options":[{"id":285,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":2002,"attribute_code":"color"},{"id":284,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":2002,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[172,173],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-2002.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2015","_score":1,"_source":{"id":2015,"sku":"WSH09","name":"Mimi All-Purpose Short","attribute_set_id":10,"price":44,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":44,"description":"

    You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

    \n

    • Gray/seafoam two-layer shorts.
    • Water-resistant construction.
    • Inner mesh brief for breathable support.
    • 2.0\" inseam.
    • Reflective trim for visibility.

    ","image":"/w/s/wsh09-gray_main.jpg","small_image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mimi-all-purpose-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,154,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"106","pattern":"198","climate":[206,209],"slug":"mimi-all-purpose-short-2015","links":{},"stock":{"item_id":2015,"product_id":2015,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh09-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh09-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH09-28-Gray","id":2009,"status":1,"name":"Mimi All-Purpose Short-28-Gray","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"52","image":"/w/s/wsh09-gray_main.jpg","small_image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","url_key":"mimi-all-purpose-short-28-gray","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"WSH09-28-Green","id":2010,"status":1,"name":"Mimi All-Purpose Short-28-Green","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"53","image":"/w/s/wsh09-green_main.jpg","small_image":"/w/s/wsh09-green_main.jpg","thumbnail":"/w/s/wsh09-green_main.jpg","url_key":"mimi-all-purpose-short-28-green","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"WSH09-28-White","id":2011,"status":1,"name":"Mimi All-Purpose Short-28-White","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"59","image":"/w/s/wsh09-white_main.jpg","small_image":"/w/s/wsh09-white_main.jpg","thumbnail":"/w/s/wsh09-white_main.jpg","url_key":"mimi-all-purpose-short-28-white","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"WSH09-29-Gray","id":2012,"status":1,"name":"Mimi All-Purpose Short-29-Gray","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"52","image":"/w/s/wsh09-gray_main.jpg","small_image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","url_key":"mimi-all-purpose-short-29-gray","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"WSH09-29-Green","id":2013,"status":1,"name":"Mimi All-Purpose Short-29-Green","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"53","image":"/w/s/wsh09-green_main.jpg","small_image":"/w/s/wsh09-green_main.jpg","thumbnail":"/w/s/wsh09-green_main.jpg","url_key":"mimi-all-purpose-short-29-green","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"WSH09-29-White","id":2014,"status":1,"name":"Mimi All-Purpose Short-29-White","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"59","image":"/w/s/wsh09-white_main.jpg","small_image":"/w/s/wsh09-white_main.jpg","thumbnail":"/w/s/wsh09-white_main.jpg","url_key":"mimi-all-purpose-short-29-white","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001}],"configurable_options":[{"id":289,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"},{"value_index":59,"label":"White"}],"product_id":2015,"attribute_code":"color"},{"id":288,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":2015,"attribute_code":"size"}],"color_options":[52,53,59],"size_options":[172,173],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-2015.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2045","_score":1,"_source":{"id":2045,"sku":"WSH12","name":"Erika Running Short","attribute_set_id":10,"price":45,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":45,"description":"

    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

    \n

    • Seafoam pattern running shorts.
    • Elastic waistband.
    • Snug fit.
    • 4'' inseam.
    • 76% premium brushed Nylon / 24% Spandex.

    ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"erika-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[106,112],"pattern":"196","climate":[212,206,209],"slug":"erika-running-short-2045","links":{},"stock":{"item_id":2045,"product_id":2045,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH12-28-Green","id":2030,"status":1,"name":"Erika Running Short-28-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"172","color":"53","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","url_key":"erika-running-short-28-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-28-Purple","id":2031,"status":1,"name":"Erika Running Short-28-Purple","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"172","color":"57","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","url_key":"erika-running-short-28-purple","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-28-Red","id":2032,"status":1,"name":"Erika Running Short-28-Red","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"172","color":"58","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","url_key":"erika-running-short-28-red","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-29-Green","id":2033,"status":1,"name":"Erika Running Short-29-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"173","color":"53","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","url_key":"erika-running-short-29-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-29-Purple","id":2034,"status":1,"name":"Erika Running Short-29-Purple","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"173","color":"57","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","url_key":"erika-running-short-29-purple","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-29-Red","id":2035,"status":1,"name":"Erika Running Short-29-Red","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"173","color":"58","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","url_key":"erika-running-short-29-red","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-30-Green","id":2036,"status":1,"name":"Erika Running Short-30-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"174","color":"53","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","url_key":"erika-running-short-30-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-30-Purple","id":2037,"status":1,"name":"Erika Running Short-30-Purple","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"174","color":"57","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","url_key":"erika-running-short-30-purple","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-30-Red","id":2038,"status":1,"name":"Erika Running Short-30-Red","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"174","color":"58","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","url_key":"erika-running-short-30-red","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-31-Green","id":2039,"status":1,"name":"Erika Running Short-31-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"175","color":"53","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","url_key":"erika-running-short-31-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-31-Purple","id":2040,"status":1,"name":"Erika Running Short-31-Purple","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"175","color":"57","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","url_key":"erika-running-short-31-purple","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-31-Red","id":2041,"status":1,"name":"Erika Running Short-31-Red","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"175","color":"58","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","url_key":"erika-running-short-31-red","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-32-Green","id":2042,"status":1,"name":"Erika Running Short-32-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"176","color":"53","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","url_key":"erika-running-short-32-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-32-Purple","id":2043,"status":1,"name":"Erika Running Short-32-Purple","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"176","color":"57","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","url_key":"erika-running-short-32-purple","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-32-Red","id":2044,"status":1,"name":"Erika Running Short-32-Red","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"176","color":"58","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","url_key":"erika-running-short-32-red","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001}],"configurable_options":[{"id":295,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":2045,"attribute_code":"color"},{"id":294,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":2045,"attribute_code":"size"}],"color_options":[53,57,58],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-2045.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"2","_score":1,"_source":{"id":2,"parent_id":1,"name":"Hauptkategorie","is_active":true,"position":1,"level":1,"product_count":1181,"children_data":[{"id":38,"parent_id":2,"name":"What's New","is_active":false,"position":1,"level":2,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2018-05-27 14:05:17","path":"1/2/38","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"whats-new-38","url_path":"what-is-new/whats-new-38","slug":"whats-new-38"},{"id":20,"parent_id":2,"name":"Frauen","is_active":true,"position":2,"level":2,"product_count":0,"children_data":[{"id":21,"parent_id":20,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"id":23,"parent_id":21,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":186,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/23","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"jackets-23","url_path":"women/tops-women/jackets-women/jackets-23","slug":"jackets-23"},{"id":24,"parent_id":21,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":182,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/24","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-24","url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","slug":"hoodies-and-sweatshirts-24"},{"id":25,"parent_id":21,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/25","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-25","url_path":"women/tops-women/tees-women/tees-25","slug":"tees-25"},{"id":26,"parent_id":21,"name":"Bras & Tanks","is_active":true,"position":4,"level":4,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/26","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bras-and-tanks-26","url_path":"women/tops-women/tanks-women/bras-and-tanks-26","slug":"bras-and-tanks-26"}],"children":"23,24,25,26","created_at":"2017-11-06 12:16:41","updated_at":"2019-01-03 10:35:27","path":"1/2/20/21","available_sort_by":[],"include_in_menu":true,"meta_title":"Women Tops","meta_description":"Best women tops on vuestorefront.","display_mode":"PRODUCTS","is_anchor":"1","children_count":"4","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"tops-21","url_path":"women/tops-women/tops-21","slug":"tops-21"},{"id":22,"parent_id":20,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"id":27,"parent_id":22,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":91,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/27","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-27","url_path":"women/bottoms-women/pants-women/pants-27","slug":"pants-27"},{"id":28,"parent_id":22,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":137,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/28","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-28","url_path":"women/bottoms-women/shorts-women/shorts-28","slug":"shorts-28"}],"children":"27,28","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-22","url_path":"women/bottoms-women/bottoms-22","slug":"bottoms-22"}],"children":"21,22","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:08:58","path":"1/2/20","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"8","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"frauen-20","url_path":"women/frauen-20","slug":"frauen-20"},{"id":11,"parent_id":2,"name":"Herren","is_active":true,"position":3,"level":2,"product_count":0,"children_data":[{"id":12,"parent_id":11,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"id":14,"parent_id":12,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":176,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:10:23","path":"1/2/11/12/14","available_sort_by":[],"include_in_menu":true,"description":"

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum dui sapien, bibendum ac luctus sed, lobortis id lacus. Nulla nisi augue, accumsan id sapien maximus, hendrerit vehicula elit.

    ","display_mode":"PRODUCTS","is_anchor":"1","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"jackets-14","url_path":"men/tops-men/jackets-men/jackets-14","slug":"jackets-14"},{"id":15,"parent_id":12,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":208,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/15","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-15","url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","slug":"hoodies-and-sweatshirts-15"},{"id":16,"parent_id":12,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/16","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-16","url_path":"men/tops-men/tees-men/tees-16","slug":"tees-16"},{"id":17,"parent_id":12,"name":"Tanks","is_active":true,"position":4,"level":4,"product_count":102,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/17","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tanks-17","url_path":"men/tops-men/tanks-men/tanks-17","slug":"tanks-17"}],"children":"14,15,16,17","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"4","url_key":"tops-12","url_path":"men/tops-men/tops-12","slug":"tops-12"},{"id":13,"parent_id":11,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"id":18,"parent_id":13,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":156,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/18","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-18","url_path":"men/bottoms-men/pants-men/pants-18","slug":"pants-18"},{"id":19,"parent_id":13,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":148,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/19","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-19","url_path":"men/bottoms-men/shorts-men/shorts-19","slug":"shorts-19"}],"children":"18,19","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-13","url_path":"men/bottoms-men/bottoms-13","slug":"bottoms-13"}],"children":"12,13","created_at":"2017-11-06 12:16:39","updated_at":"2018-05-27 14:06:07","path":"1/2/11","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"8","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"herren-11","url_path":"men/herren-11","slug":"herren-11"},{"id":3,"parent_id":2,"name":"Gerät","is_active":true,"position":4,"level":2,"product_count":46,"children_data":[{"id":4,"parent_id":3,"name":"Bags","is_active":true,"position":1,"level":3,"product_count":14,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/4","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bags-4","url_path":"gear/bags/bags-4","slug":"bags-4"},{"id":5,"parent_id":3,"name":"Fitness Equipment","is_active":true,"position":2,"level":3,"product_count":23,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/5","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"fitness-equipment-5","url_path":"gear/fitness-equipment/fitness-equipment-5","slug":"fitness-equipment-5"},{"id":6,"parent_id":3,"name":"Watches","is_active":true,"position":3,"level":3,"product_count":9,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/6","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"watches-6","url_path":"gear/watches/watches-6","slug":"watches-6"}],"children":"4,5,6","created_at":"2017-11-06 12:16:19","updated_at":"2018-05-27 14:06:53","path":"1/2/3","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"3","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"gerat-3","url_path":"gear/gerat-3","slug":"gerat-3"},{"id":7,"parent_id":2,"name":"Collections","is_active":false,"position":5,"level":2,"product_count":13,"children_data":[{"id":8,"parent_id":7,"name":"New Luma Yoga Collection","is_active":true,"position":1,"level":3,"product_count":347,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/7/8","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"new-luma-yoga-collection-8","url_path":"collections/yoga-new/new-luma-yoga-collection-8","slug":"new-luma-yoga-collection-8"},{"id":34,"parent_id":7,"name":"Erin Recommends","is_active":true,"position":2,"level":3,"product_count":279,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/34","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"erin-recommends-34","url_path":"collections/erin-recommends/erin-recommends-34","slug":"erin-recommends-34"},{"id":35,"parent_id":7,"name":"Performance Fabrics","is_active":true,"position":3,"level":3,"product_count":310,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/35","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"performance-fabrics-35","url_path":"collections/performance-fabrics/performance-fabrics-35","slug":"performance-fabrics-35"},{"id":36,"parent_id":7,"name":"Eco Friendly","is_active":true,"position":4,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/36","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"eco-friendly-36","url_path":"collections/eco-friendly/eco-friendly-36","slug":"eco-friendly-36"},{"id":39,"parent_id":7,"name":"Performance Sportswear New","is_active":true,"position":5,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/39","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"performance-sportswear-new-39","url_path":"collections/performance-new/performance-sportswear-new-39","slug":"performance-sportswear-new-39"},{"id":40,"parent_id":7,"name":"Eco Collection New","is_active":true,"position":6,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/40","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"eco-collection-new-40","url_path":"collections/eco-new/eco-collection-new-40","slug":"eco-collection-new-40"}],"children":"34,35,36,39,40,8","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:17:48","path":"1/2/7","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","children_count":"6","url_key":"collections-7","url_path":"collections/collections-7","slug":"collections-7"},{"id":9,"parent_id":2,"name":"Training","is_active":false,"position":5,"level":2,"product_count":6,"children_data":[{"id":10,"parent_id":9,"name":"Video Download","is_active":true,"position":1,"level":3,"product_count":6,"children_data":[],"children":"","created_at":"2017-11-06 12:16:31","updated_at":"2017-11-06 12:16:31","path":"1/2/9/10","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"video-download-10","url_path":"training/training-video/video-download-10","slug":"video-download-10"}],"children":"10","created_at":"2017-11-06 12:16:31","updated_at":"2018-05-27 14:04:30","path":"1/2/9","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"1","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"training-9","url_path":"training/training-9","slug":"training-9"},{"id":29,"parent_id":2,"name":"Promotions","is_active":false,"position":6,"level":2,"product_count":0,"children_data":[{"id":30,"parent_id":29,"name":"Women Sale","is_active":true,"position":1,"level":3,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/30","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"women-sale-30","url_path":"promotions/women-sale/women-sale-30","slug":"women-sale-30"},{"id":31,"parent_id":29,"name":"Men Sale","is_active":true,"position":2,"level":3,"product_count":39,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/31","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"men-sale-31","url_path":"promotions/men-sale/men-sale-31","slug":"men-sale-31"},{"id":32,"parent_id":29,"name":"Pants","is_active":true,"position":3,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/32","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"pants-32","url_path":"promotions/pants-all/pants-32","slug":"pants-32"},{"id":33,"parent_id":29,"name":"Tees","is_active":true,"position":4,"level":3,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/33","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"tees-33","url_path":"promotions/tees-all/tees-33","slug":"tees-33"}],"children":"30,31,32,33","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:42","path":"1/2/29","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","children_count":"4","url_key":"promotions-29","url_path":"promotions/promotions-29","slug":"promotions-29"},{"id":37,"parent_id":2,"name":"Sale","is_active":false,"position":6,"level":2,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2018-05-27 14:04:10","path":"1/2/37","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"sale-37","url_path":"sale/sale-37","slug":"sale-37"}],"url_key":"hauptkategorie-2","slug":"hauptkategorie-2","url_path":"hauptkategorie-2","children":"3,11,20","created_at":"2017-11-03 08:34:39","updated_at":"2019-04-25 09:11:20","path":"1/2","available_sort_by":[],"include_in_menu":true,"display_mode":"PRODUCTS","is_anchor":"1","children_count":"38","custom_use_parent_settings":"0","custom_apply_to_products":"0","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"38","_score":1,"_source":{"id":38,"parent_id":2,"name":"What's New","is_active":false,"position":1,"level":2,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2018-05-27 14:05:17","path":"1/2/38","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"whats-new-38","url_path":"what-is-new/whats-new-38","slug":"whats-new-38","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"20","_score":1,"_source":{"id":20,"parent_id":2,"name":"Frauen","is_active":true,"position":2,"level":2,"product_count":0,"children_data":[{"id":21,"parent_id":20,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"id":23,"parent_id":21,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":186,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/23","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"jackets-23","url_path":"women/tops-women/jackets-women/jackets-23","slug":"jackets-23"},{"id":24,"parent_id":21,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":182,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/24","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-24","url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","slug":"hoodies-and-sweatshirts-24"},{"id":25,"parent_id":21,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/25","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-25","url_path":"women/tops-women/tees-women/tees-25","slug":"tees-25"},{"id":26,"parent_id":21,"name":"Bras & Tanks","is_active":true,"position":4,"level":4,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/26","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bras-and-tanks-26","url_path":"women/tops-women/tanks-women/bras-and-tanks-26","slug":"bras-and-tanks-26"}],"children":"23,24,25,26","created_at":"2017-11-06 12:16:41","updated_at":"2019-01-03 10:35:27","path":"1/2/20/21","available_sort_by":[],"include_in_menu":true,"meta_title":"Women Tops","meta_description":"Best women tops on vuestorefront.","display_mode":"PRODUCTS","is_anchor":"1","children_count":"4","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"tops-21","url_path":"women/tops-women/tops-21","slug":"tops-21"},{"id":22,"parent_id":20,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"id":27,"parent_id":22,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":91,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/27","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-27","url_path":"women/bottoms-women/pants-women/pants-27","slug":"pants-27"},{"id":28,"parent_id":22,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":137,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/28","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-28","url_path":"women/bottoms-women/shorts-women/shorts-28","slug":"shorts-28"}],"children":"27,28","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-22","url_path":"women/bottoms-women/bottoms-22","slug":"bottoms-22"}],"children":"21,22","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:08:58","path":"1/2/20","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"8","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"frauen-20","url_path":"women/frauen-20","slug":"frauen-20","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"6","_score":1,"_source":{"id":6,"parent_id":3,"name":"Watches","is_active":true,"position":3,"level":3,"product_count":9,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/6","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"watches-6","url_path":"gear/watches/watches-6","slug":"watches-6","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"35","_score":1,"_source":{"id":35,"parent_id":7,"name":"Performance Fabrics","is_active":true,"position":3,"level":3,"product_count":310,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/35","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"performance-fabrics-35","url_path":"collections/performance-fabrics/performance-fabrics-35","slug":"performance-fabrics-35","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"36","_score":1,"_source":{"id":36,"parent_id":7,"name":"Eco Friendly","is_active":true,"position":4,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/36","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"eco-friendly-36","url_path":"collections/eco-friendly/eco-friendly-36","slug":"eco-friendly-36","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"4","_score":1,"_source":{"id":4,"parent_id":3,"name":"Bags","is_active":true,"position":1,"level":3,"product_count":14,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/4","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bags-4","url_path":"gear/bags/bags-4","slug":"bags-4","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"20","_score":1,"_source":{"id":20,"sku":"24-UG01","name":"Quest Lumaflex™ Band","attribute_set_id":11,"price":19,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2017-11-06 12:16:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":23.370001,"max_price":23.370001,"max_regular_price":23.370001,"minimal_regular_price":23.370001,"special_price":null,"minimal_price":23.370001,"regular_price":23.370001,"description":"

    From leg extensions and standing squats to a full range of floor routines, the Quest Strength Band brings your own personal gym with you everywhere you go. Designed to add extra resistance to any training session, this strength band helps you tone and define your muscles. You'll love the extra comfort of its grippy handles and adjustable design.

    \n
      \n
    • Adjusts from 30\" to 55\".\n
    • Grippy comfort handles.\n
    • Stretchy rubber construction.\n
    ","image":"/u/g/ug01-bk-0.jpg","small_image":"/u/g/ug01-bk-0.jpg","thumbnail":"/u/g/ug01-bk-0.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"quest-lumaflex-trade-band","tax_class_id":"2","activity":"11","material":[35,44,45],"gender":[80,81,84],"category_gear":[85,87],"slug":"quest-lumaflex-and-trade-band-20","links":{},"stock":{"item_id":20,"product_id":20,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/u/g/ug01-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/quest-lumaflex-and-trade-band-20.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2","_score":1,"_source":{"id":2,"sku":"24-MB04","name":"Strive Shoulder Pack","attribute_set_id":15,"price":32,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:22","updated_at":"2017-11-06 12:16:22","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":"32.0000","minimal_price":39.360001,"regular_price":39.360001,"description":"

    Convenience is next to nothing when your day is crammed with action. So whether you're heading to class, gym, or the unbeaten path, make sure you've got your Strive Shoulder Pack stuffed with all your essentials, and extras as well.

    \n
      \n
    • Zippered main compartment.
    • \n
    • Front zippered pocket.
    • \n
    • Side mesh pocket.
    • \n
    • Cell phone pocket on strap.
    • \n
    • Adjustable shoulder strap and top carry handle.
    • \n
    ","special_from_date":"2017-11-06 12:16:22","image":"/m/b/mb04-black-0.jpg","small_image":"/m/b/mb04-black-0.jpg","thumbnail":"/m/b/mb04-black-0.jpg","category_ids":[3,7,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strive-shoulder-pack","tax_class_id":"2","activity":[11,21,23,18],"style_bags":[27,29,30],"material":[32,33,36,38],"strap_bags":[61,62,65,66,67],"features_bags":[72,74,75,78],"erin_recommends":"1","sale":"1","slug":"strive-shoulder-pack-2","links":{},"stock":{"item_id":2,"product_id":2,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/b/mb04-black-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null},{"image":"/m/b/mb04-black-0_alt1.jpg","pos":2,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/gerat-3/strive-shoulder-pack-2.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"6","_score":1,"_source":{"id":6,"sku":"24-MB02","name":"Fusion Backpack","attribute_set_id":15,"price":59,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:23","updated_at":"2017-11-06 12:16:23","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    With the Fusion Backpack strapped on, every trek is an adventure - even a bus ride to work. That's partly because two large zippered compartments store everything you need, while a front zippered pocket and side mesh pouches are perfect for stashing those little extras, in case you change your mind and take the day off.

    \n
      \n
    • Durable nylon construction.
    • \n
    • 2 main zippered compartments.
    • \n
    • 1 exterior zippered pocket.
    • \n
    • Mesh side pouches.
    • \n
    • Padded, adjustable straps.
    • \n
    • Top carry handle.
    • \n
    • Dimensions: 18\" x 10\" x 6\".
    • \n
    ","image":"/m/b/mb02-gray-0.jpg","small_image":"/m/b/mb02-gray-0.jpg","thumbnail":"/m/b/mb02-gray-0.jpg","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fusion-backpack","tax_class_id":"2","activity":[18,20,8],"style_bags":[24,28],"material":[31,37,38],"strap_bags":[61,64,65],"features_bags":[71,72,74,75],"slug":"fusion-backpack-6","links":{},"stock":{"item_id":6,"product_id":6,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/b/mb02-gray-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null},{"image":"/m/b/mb02-blue-0.jpg","pos":2,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/gerat-3/fusion-backpack-6.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"4","_score":1,"_source":{"id":4,"sku":"24-MB05","name":"Wayfarer Messenger Bag - custom options","attribute_set_id":15,"price":45,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:22","updated_at":"2019-04-24 08:09:51","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":74.415001,"special_price":null,"minimal_price":74.415001,"regular_price":55.350001,"description":"

    Perfect for class, work or the gym, the Wayfarer Messenger Bag is packed with pockets. The dual-buckle flap closure reveals an organizational panel, and the roomy main compartment has spaces for your laptop and a change of clothes. An adjustable shoulder strap and easy-grip handle promise easy carrying.

    \r\n
      \r\n
    • Multiple internal zip pockets.
    • \r\n
    • Made of durable nylon.
    • \r\n
    ","image":"/m/b/mb05-black-0.jpg","small_image":"/m/b/mb05-black-0.jpg","thumbnail":"/m/b/mb05-black-0.jpg","color":"49","category_ids":[3,7,4,8],"options_container":"container2","required_options":"1","has_options":"1","url_key":"wayfarer-messenger-bag","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[11,19,22],"style_bags":[27,28],"material":[37,38],"strap_bags":[61,63,64,65,66],"features_bags":[74,75,77,78,79],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","slug":"wayfarer-messenger-bag-custom-options-4","links":{},"stock":{"item_id":4,"product_id":4,"stock_id":1,"qty":73,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/b/mb05-black-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"custom_options":[{"product_sku":"24-MB05","option_id":1,"title":"Radio button ","type":"radio","sort_order":1,"is_require":true,"max_characters":0,"image_size_x":0,"image_size_y":0,"values":[{"title":"radio option 1","sort_order":1,"price":1,"price_type":"fixed","option_type_id":1},{"title":"radio option 2","sort_order":2,"price":2,"price_type":"fixed","option_type_id":2}]},{"product_sku":"24-MB05","option_id":2,"title":"Dropdown","type":"drop_down","sort_order":2,"is_require":true,"max_characters":0,"image_size_x":0,"image_size_y":0,"values":[{"title":"option 1","sort_order":1,"price":10,"price_type":"percent","option_type_id":3},{"title":"option 2","sort_order":2,"price":20,"price_type":"percent","option_type_id":4}]},{"product_sku":"24-MB05","option_id":3,"title":"Text field","type":"field","sort_order":3,"is_require":true,"price":10,"price_type":"fixed","max_characters":0,"image_size_x":0,"image_size_y":0},{"product_sku":"24-MB05","option_id":4,"title":"Checkbox options","type":"checkbox","sort_order":4,"is_require":true,"max_characters":0,"image_size_x":0,"image_size_y":0,"values":[{"title":"checkbox option 1","sort_order":1,"price":10,"price_type":"fixed","option_type_id":5},{"title":"checkbox option 2","sort_order":2,"price":20,"price_type":"fixed","option_type_id":6},{"title":"checkbox option 3","sort_order":3,"price":30,"price_type":"fixed","option_type_id":7}]}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/gerat-3/wayfarer-messenger-bag-custom-options-4.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"15","_score":1,"_source":{"id":15,"sku":"24-UG06","name":"Affirm Water Bottle ","attribute_set_id":11,"price":7,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2017-11-06 12:16:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":8.610001,"max_price":8.610001,"max_regular_price":8.610001,"minimal_regular_price":8.610001,"special_price":null,"minimal_price":8.610001,"regular_price":8.610001,"description":"

    You'll stay hydrated with ease with the Affirm Water Bottle by your side or in hand. Measurements on the outside help you keep track of how much you're drinking, while the screw-top lid prevents spills. A metal carabiner clip allows you to attach it to the outside of a backpack or bag for easy access.

    \n
      \n
    • Made of plastic.
    • \n
    • Grooved sides for an easy grip.
    • \n
    ","image":"/u/g/ug06-lb-0.jpg","small_image":"/u/g/ug06-lb-0.jpg","thumbnail":"/u/g/ug06-lb-0.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"affirm-water-bottle","tax_class_id":"2","activity":[8,9,17,11],"material":"44","slug":"affirm-water-bottle-15","links":{},"stock":{"item_id":15,"product_id":15,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/u/g/ug06-lb-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/affirm-water-bottle-15.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"27","_score":1,"_source":{"id":27,"sku":"24-WG082-gray","name":"Sprite Stasis Ball 65 cm","attribute_set_id":12,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

    The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

    \n
      \n
    • 65 cm plastic shell.
    • \n
    • Durable, burst-resistant design.
    • \n
    • Hand pump included.
    • \n
    ","image":"/l/u/luma-stability-ball-gray.jpg","small_image":"/l/u/luma-stability-ball-gray.jpg","thumbnail":"/l/u/luma-stability-ball-gray.jpg","color":"52","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-65-cm-gray","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"92","slug":"sprite-stasis-ball-65-cm-27","links":{},"stock":{"item_id":27,"product_id":27,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball-gray.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-stasis-ball-65-cm-27.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"36","_score":1,"_source":{"id":36,"sku":"24-MG04","name":"Aim Analog Watch","attribute_set_id":11,"price":45,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Stay light-years ahead of the competition with our Aim Analog Watch. The flexible, rubberized strap is contoured to conform to the shape of your wrist for a comfortable all-day fit. The face features three illuminated hands, a digital read-out of the current time, and stopwatch functions.

    \n
      \n
    • Japanese quartz movement.
    • \n
    • Strap fits 7\" to 8.0\".
    • \n
    ","image":"/m/g/mg04-bk-0.jpg","small_image":"/m/g/mg04-bk-0.jpg","thumbnail":"/m/g/mg04-bk-0.jpg","category_ids":[3,6],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aim-analog-watch","tax_class_id":"2","activity":[9,17,5,11],"material":[44,45],"gender":"80","category_gear":[86,87,90],"slug":"aim-analog-watch-36","links":{},"stock":{"item_id":36,"product_id":36,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/g/mg04-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"}],"url_path":"gear/gerat-3/aim-analog-watch-36.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"35","_score":1,"_source":{"id":35,"sku":"24-WG087","name":"Sprite Yoga Strap 10 foot","attribute_set_id":13,"price":21,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":25.830001,"max_price":25.830001,"max_regular_price":25.830001,"minimal_regular_price":25.830001,"special_price":null,"minimal_price":25.830001,"regular_price":25.830001,"description":"

    The Sprite Yoga Strap is your untiring partner in demanding stretches, holds and alignment routines. The strap's 100% organic cotton fabric is woven tightly to form a soft, textured yet non-slip surface. The plastic clasp buckle is easily adjustable, lightweight and durable under strain.

    \n
      \n
    • 10' long x 1.0\" wide.\n
    • 100% soft and durable cotton.\n
    • Plastic cinch buckle is easy to use.\n
    • Three natural colors made from phthalate and heavy metal free dyes.\n
    ","image":"/l/u/luma-yoga-strap.jpg","small_image":"/l/u/luma-yoga-strap.jpg","thumbnail":"/l/u/luma-yoga-strap.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-yoga-strap-10-foot","tax_class_id":"2","activity":"8","material":[32,44],"gender":[80,81,84],"category_gear":"87","size":"96","slug":"sprite-yoga-strap-10-foot-35","links":{},"stock":{"item_id":35,"product_id":35,"stock_id":1,"qty":31,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-yoga-strap.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-yoga-strap-10-foot-35.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"43","_score":1,"_source":{"id":43,"sku":"24-WG03","name":"Clamber Watch","attribute_set_id":11,"price":54,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

    Keep track of time on the treadmill or trail with our Clamber Watch. The flexible, rubberized strap is contoured to conform to your wrist for a comfortable fit all day. The face features an illuminated digital read-out of the current time and stopwatch functions.

    \n
      \n
    • Japanese quartz movement.
    • \n
    • Strap fits 5\" to 6.0\".
    • \n
    ","image":"/w/g/wg03-gr-0.jpg","small_image":"/w/g/wg03-gr-0.jpg","thumbnail":"/w/g/wg03-gr-0.jpg","category_ids":[3,6],"options_container":"container2","required_options":"0","has_options":"0","url_key":"clamber-watch","tax_class_id":"2","activity":[9,16,5,11],"material":[44,45,48],"gender":"81","category_gear":[86,87,90],"slug":"clamber-watch-43","links":{},"stock":{"item_id":43,"product_id":43,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/g/wg03-gr-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null},{"image":"/w/g/wg03-sa-0.jpg","pos":2,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"}],"url_path":"gear/gerat-3/clamber-watch-43.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"38","_score":1,"_source":{"id":38,"sku":"24-MG03","name":"Summit Watch","attribute_set_id":11,"price":54,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

    Trek high and low in the attractive Summit Watch, which features a digital LED display with time and date, stopwatch, lap counter, and 3-second backlight. It can also calculate the number of steps taken and calories burned.

    \n
      \n
    • Brushed metal case.
    • \n
    • Water resistant (100 meters).
    • \n
    • Buckle clasp.
    • \n
    • Strap fits 7\" - 10\".
    • \n
    • 1-year limited warranty.
    • \n
    ","image":"/m/g/mg03-br-0.jpg","small_image":"/m/g/mg03-br-0.jpg","thumbnail":"/m/g/mg03-br-0.jpg","category_ids":[3,7,6,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"summit-watch","tax_class_id":"2","activity":[9,16,17,5,11],"material":[43,44,48],"gender":[80,81,84],"category_gear":[86,87,90],"new":"1","slug":"summit-watch-38","links":{},"stock":{"item_id":38,"product_id":38,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/g/mg03-br-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/gerat-3/summit-watch-38.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"80","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":80,"attribute_code":"special_to_date","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Special Price To Date","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime","is_unique":"0","validation_rules":[],"id":80,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"85","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":85,"attribute_code":"meta_keyword","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Meta Keywords","frontend_labels":null,"backend_type":"text","is_unique":"0","validation_rules":[],"id":85,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"93","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":93,"attribute_code":"color","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Black","value":"49"},{"label":"Blue","value":"50"},{"label":"Brown","value":"51"},{"label":"Gray","value":"52"},{"label":"Green","value":"53"},{"label":"Lavender","value":"54"},{"label":"Multi","value":"55"},{"label":"Orange","value":"56"},{"label":"Purple","value":"57"},{"label":"Red","value":"58"},{"label":"White","value":"59"},{"label":"Yellow","value":"60"}],"is_user_defined":true,"default_frontend_label":"Color","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"49","is_unique":"0","validation_rules":[],"id":93,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"106","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":106,"attribute_code":"options_container","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Product Info Column","value":"container1"},{"label":"Block after Info Column","value":"container2"}],"is_user_defined":false,"default_frontend_label":"Display Product Options In","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Catalog\\Model\\Entity\\Product\\Attribute\\Design\\Options\\Container","default_value":"container2","is_unique":"0","validation_rules":[],"id":106,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"109","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"store","attribute_id":109,"attribute_code":"image_label","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Image Label","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":109,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"114","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","bundle","grouped","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"website","attribute_id":114,"attribute_code":"country_of_manufacture","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Afghanistan","value":"AF"},{"label":"Ã…land Islands","value":"AX"},{"label":"Albania","value":"AL"},{"label":"Algeria","value":"DZ"},{"label":"American Samoa","value":"AS"},{"label":"Andorra","value":"AD"},{"label":"Angola","value":"AO"},{"label":"Anguilla","value":"AI"},{"label":"Antarctica","value":"AQ"},{"label":"Antigua & Barbuda","value":"AG"},{"label":"Argentina","value":"AR"},{"label":"Armenia","value":"AM"},{"label":"Aruba","value":"AW"},{"label":"Australia","value":"AU"},{"label":"Austria","value":"AT"},{"label":"Azerbaijan","value":"AZ"},{"label":"Bahamas","value":"BS"},{"label":"Bahrain","value":"BH"},{"label":"Bangladesh","value":"BD"},{"label":"Barbados","value":"BB"},{"label":"Belarus","value":"BY"},{"label":"Belgium","value":"BE"},{"label":"Belize","value":"BZ"},{"label":"Benin","value":"BJ"},{"label":"Bermuda","value":"BM"},{"label":"Bhutan","value":"BT"},{"label":"Bolivia","value":"BO"},{"label":"Bosnia & Herzegovina","value":"BA"},{"label":"Botswana","value":"BW"},{"label":"Bouvet Island","value":"BV"},{"label":"Brazil","value":"BR"},{"label":"British Indian Ocean Territory","value":"IO"},{"label":"British Virgin Islands","value":"VG"},{"label":"Brunei","value":"BN"},{"label":"Bulgaria","value":"BG"},{"label":"Burkina Faso","value":"BF"},{"label":"Burundi","value":"BI"},{"label":"Cambodia","value":"KH"},{"label":"Cameroon","value":"CM"},{"label":"Canada","value":"CA"},{"label":"Cape Verde","value":"CV"},{"label":"Cayman Islands","value":"KY"},{"label":"Central African Republic","value":"CF"},{"label":"Chad","value":"TD"},{"label":"Chile","value":"CL"},{"label":"China","value":"CN"},{"label":"Christmas Island","value":"CX"},{"label":"Cocos (Keeling) Islands","value":"CC"},{"label":"Colombia","value":"CO"},{"label":"Comoros","value":"KM"},{"label":"Congo - Brazzaville","value":"CG"},{"label":"Congo - Kinshasa","value":"CD"},{"label":"Cook Islands","value":"CK"},{"label":"Costa Rica","value":"CR"},{"label":"Côte d’Ivoire","value":"CI"},{"label":"Croatia","value":"HR"},{"label":"Cuba","value":"CU"},{"label":"Cyprus","value":"CY"},{"label":"Czech Republic","value":"CZ"},{"label":"Denmark","value":"DK"},{"label":"Djibouti","value":"DJ"},{"label":"Dominica","value":"DM"},{"label":"Dominican Republic","value":"DO"},{"label":"Ecuador","value":"EC"},{"label":"Egypt","value":"EG"},{"label":"El Salvador","value":"SV"},{"label":"Equatorial Guinea","value":"GQ"},{"label":"Eritrea","value":"ER"},{"label":"Estonia","value":"EE"},{"label":"Ethiopia","value":"ET"},{"label":"Falkland Islands","value":"FK"},{"label":"Faroe Islands","value":"FO"},{"label":"Fiji","value":"FJ"},{"label":"Finland","value":"FI"},{"label":"France","value":"FR"},{"label":"French Guiana","value":"GF"},{"label":"French Polynesia","value":"PF"},{"label":"French Southern Territories","value":"TF"},{"label":"Gabon","value":"GA"},{"label":"Gambia","value":"GM"},{"label":"Georgia","value":"GE"},{"label":"Germany","value":"DE"},{"label":"Ghana","value":"GH"},{"label":"Gibraltar","value":"GI"},{"label":"Greece","value":"GR"},{"label":"Greenland","value":"GL"},{"label":"Grenada","value":"GD"},{"label":"Guadeloupe","value":"GP"},{"label":"Guam","value":"GU"},{"label":"Guatemala","value":"GT"},{"label":"Guernsey","value":"GG"},{"label":"Guinea","value":"GN"},{"label":"Guinea-Bissau","value":"GW"},{"label":"Guyana","value":"GY"},{"label":"Haiti","value":"HT"},{"label":"Heard & McDonald Islands","value":"HM"},{"label":"Honduras","value":"HN"},{"label":"Hong Kong SAR China","value":"HK"},{"label":"Hungary","value":"HU"},{"label":"Iceland","value":"IS"},{"label":"India","value":"IN"},{"label":"Indonesia","value":"ID"},{"label":"Iran","value":"IR"},{"label":"Iraq","value":"IQ"},{"label":"Ireland","value":"IE"},{"label":"Isle of Man","value":"IM"},{"label":"Israel","value":"IL"},{"label":"Italy","value":"IT"},{"label":"Jamaica","value":"JM"},{"label":"Japan","value":"JP"},{"label":"Jersey","value":"JE"},{"label":"Jordan","value":"JO"},{"label":"Kazakhstan","value":"KZ"},{"label":"Kenya","value":"KE"},{"label":"Kiribati","value":"KI"},{"label":"Kuwait","value":"KW"},{"label":"Kyrgyzstan","value":"KG"},{"label":"Laos","value":"LA"},{"label":"Latvia","value":"LV"},{"label":"Lebanon","value":"LB"},{"label":"Lesotho","value":"LS"},{"label":"Liberia","value":"LR"},{"label":"Libya","value":"LY"},{"label":"Liechtenstein","value":"LI"},{"label":"Lithuania","value":"LT"},{"label":"Luxembourg","value":"LU"},{"label":"Macau SAR China","value":"MO"},{"label":"Macedonia","value":"MK"},{"label":"Madagascar","value":"MG"},{"label":"Malawi","value":"MW"},{"label":"Malaysia","value":"MY"},{"label":"Maldives","value":"MV"},{"label":"Mali","value":"ML"},{"label":"Malta","value":"MT"},{"label":"Marshall Islands","value":"MH"},{"label":"Martinique","value":"MQ"},{"label":"Mauritania","value":"MR"},{"label":"Mauritius","value":"MU"},{"label":"Mayotte","value":"YT"},{"label":"Mexico","value":"MX"},{"label":"Micronesia","value":"FM"},{"label":"Moldova","value":"MD"},{"label":"Monaco","value":"MC"},{"label":"Mongolia","value":"MN"},{"label":"Montenegro","value":"ME"},{"label":"Montserrat","value":"MS"},{"label":"Morocco","value":"MA"},{"label":"Mozambique","value":"MZ"},{"label":"Myanmar (Burma)","value":"MM"},{"label":"Namibia","value":"NA"},{"label":"Nauru","value":"NR"},{"label":"Nepal","value":"NP"},{"label":"Netherlands","value":"NL"},{"label":"New Caledonia","value":"NC"},{"label":"New Zealand","value":"NZ"},{"label":"Nicaragua","value":"NI"},{"label":"Niger","value":"NE"},{"label":"Nigeria","value":"NG"},{"label":"Niue","value":"NU"},{"label":"Norfolk Island","value":"NF"},{"label":"Northern Mariana Islands","value":"MP"},{"label":"North Korea","value":"KP"},{"label":"Norway","value":"NO"},{"label":"Oman","value":"OM"},{"label":"Pakistan","value":"PK"},{"label":"Palau","value":"PW"},{"label":"Palestinian Territories","value":"PS"},{"label":"Panama","value":"PA"},{"label":"Papua New Guinea","value":"PG"},{"label":"Paraguay","value":"PY"},{"label":"Peru","value":"PE"},{"label":"Philippines","value":"PH"},{"label":"Pitcairn Islands","value":"PN"},{"label":"Poland","value":"PL"},{"label":"Portugal","value":"PT"},{"label":"Qatar","value":"QA"},{"label":"Réunion","value":"RE"},{"label":"Romania","value":"RO"},{"label":"Russia","value":"RU"},{"label":"Rwanda","value":"RW"},{"label":"Samoa","value":"WS"},{"label":"San Marino","value":"SM"},{"label":"São Tomé & Príncipe","value":"ST"},{"label":"Saudi Arabia","value":"SA"},{"label":"Senegal","value":"SN"},{"label":"Serbia","value":"RS"},{"label":"Seychelles","value":"SC"},{"label":"Sierra Leone","value":"SL"},{"label":"Singapore","value":"SG"},{"label":"Slovakia","value":"SK"},{"label":"Slovenia","value":"SI"},{"label":"Solomon Islands","value":"SB"},{"label":"Somalia","value":"SO"},{"label":"South Africa","value":"ZA"},{"label":"South Georgia & South Sandwich Islands","value":"GS"},{"label":"South Korea","value":"KR"},{"label":"Spain","value":"ES"},{"label":"Sri Lanka","value":"LK"},{"label":"St. Barthélemy","value":"BL"},{"label":"St. Helena","value":"SH"},{"label":"St. Kitts & Nevis","value":"KN"},{"label":"St. Lucia","value":"LC"},{"label":"St. Martin","value":"MF"},{"label":"St. Pierre & Miquelon","value":"PM"},{"label":"St. Vincent & Grenadines","value":"VC"},{"label":"Sudan","value":"SD"},{"label":"Suriname","value":"SR"},{"label":"Svalbard & Jan Mayen","value":"SJ"},{"label":"Swaziland","value":"SZ"},{"label":"Sweden","value":"SE"},{"label":"Switzerland","value":"CH"},{"label":"Syria","value":"SY"},{"label":"Taiwan","value":"TW"},{"label":"Tajikistan","value":"TJ"},{"label":"Tanzania","value":"TZ"},{"label":"Thailand","value":"TH"},{"label":"Timor-Leste","value":"TL"},{"label":"Togo","value":"TG"},{"label":"Tokelau","value":"TK"},{"label":"Tonga","value":"TO"},{"label":"Trinidad & Tobago","value":"TT"},{"label":"Tunisia","value":"TN"},{"label":"Turkey","value":"TR"},{"label":"Turkmenistan","value":"TM"},{"label":"Turks & Caicos Islands","value":"TC"},{"label":"Tuvalu","value":"TV"},{"label":"Uganda","value":"UG"},{"label":"Ukraine","value":"UA"},{"label":"United Arab Emirates","value":"AE"},{"label":"United Kingdom","value":"GB"},{"label":"United States","value":"US"},{"label":"Uruguay","value":"UY"},{"label":"U.S. Outlying Islands","value":"UM"},{"label":"U.S. Virgin Islands","value":"VI"},{"label":"Uzbekistan","value":"UZ"},{"label":"Vanuatu","value":"VU"},{"label":"Vatican City","value":"VA"},{"label":"Venezuela","value":"VE"},{"label":"Vietnam","value":"VN"},{"label":"Wallis & Futuna","value":"WF"},{"label":"Western Sahara","value":"EH"},{"label":"Yemen","value":"YE"},{"label":"Zambia","value":"ZM"},{"label":"Zimbabwe","value":"ZW"}],"is_user_defined":false,"default_frontend_label":"Country of Manufacture","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Countryofmanufacture","is_unique":"0","validation_rules":[],"id":114,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"131","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"global","attribute_id":131,"attribute_code":"links_exist","frontend_input":null,"entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"int","default_value":"0","is_unique":"0","validation_rules":[],"id":131,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"134","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"1","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":134,"attribute_code":"tax_class_id","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"None","value":"0"},{"label":"Taxable Goods","value":"2"}],"is_user_defined":false,"default_frontend_label":"Tax Class","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Tax\\Model\\TaxClass\\Source\\Product","default_value":"2","is_unique":"0","validation_rules":[],"id":134,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"150","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":150,"attribute_code":"style_general","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Insulated","value":"117"},{"label":"Jacket","value":"118"},{"label":"Vest","value":"119"},{"label":"Lightweight","value":"120"},{"label":"Hooded","value":"121"},{"label":"Heavy Duty","value":"122"},{"label":"Rain Coat","value":"123"},{"label":"Hard Shell","value":"124"},{"label":"Soft Shell","value":"125"},{"label":"Windbreaker","value":"126"},{"label":"½ zip","value":"127"},{"label":"¼ zip","value":"128"},{"label":"Full Zip","value":"129"},{"label":"Reversible","value":"130"},{"label":"Bra","value":"131"},{"label":"Hoodie","value":"132"},{"label":"Sweatshirt","value":"133"},{"label":"Polo","value":"134"},{"label":"Tank","value":"135"},{"label":"Tee","value":"136"},{"label":"Pullover","value":"137"},{"label":"Hoodie","value":"138"},{"label":"Cardigan","value":"139"},{"label":"Henley","value":"140"},{"label":"Tunic","value":"141"},{"label":"Camisole","value":"142"}],"is_user_defined":true,"default_frontend_label":"Style General","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":150,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"cms_page","_id":"4","_score":1,"_source":{"store_id":[0],"id":4,"identifier":"privacy-policy-cookie-restriction-mode","title":"Privacy Policy","page_layout":"1column","meta_keywords":"","meta_description":"","content_heading":"Privacy Policy","content":"
    \n
    \n

    This website (\"website\") is operated by Luma Inc., which includes Luma stores, and Luma Private Sales. This privacy policy only covers information collected at this website, and does not cover any information collected offline by Luma. All Luma websites are covered by this privacy policy.

    \n\n

    Luma Security

    \n

    Personal information provided on the website and online credit card transactions are transmitted through a secure server. We are committed to handling your personal information with high standards of information security. We take appropriate physical, electronic, and administrative steps to maintain the security and accuracy of personally identifiable information we collect, including limiting the number of people who have physical access to our database servers, as well as employing electronic security systems and password protections that guard against unauthorized access.

    \n\n

    Our website uses encryption technology, like Secure Sockets Layer (SSL), to protect your personal information during data transport. SSL encrypts ordering information such as your name, address, and credit card number. Our Customer Care center and stores also operate over a private, secure network. Please note that email is not encrypted and is not considered to be a secure means of transmitting credit card information.

    \n\n

    Luma Privacy Policy

    \n

    To help us achieve our goal of providing the highest quality products and services, we use information from our interactions with you and other customers, as well as from other parties. Because we respect your privacy, we have implemented procedures to ensure that your personal information is handled in a safe, secure, and responsible manner. We have posted this privacy policy in order to explain our information collection practices and the choices you have about the way information is collected and used.

    \n\n

    As we continue to develop the Luma website and take advantage of advances in technology to improve the services we offer, this privacy policy likely will change. We therefore encourage you to refer to this policy on an ongoing basis so that you understand our current privacy policy.

    \n\n

    The Information We Collect

    \n

    Generally, you may browse the Luma website without providing any personally identifiable information. However, we may ask you to provide personally identifiable information at various times and places on this website. In some cases, if you choose not to provide us with the requested information, you may not be able to access all parts of this website or participate in all of its features, pricing, and product selection.

    \n\n

    We may collect the following information:

    \n
      \n
    • name
    • \n
    • contact information including email address
    • \n
    • demographic information such as postcode, preferences and interests
    • \n
    • other information relevant to customer surveys and/or offers
    • \n
    \n

    For the exhaustive list of cookies we collect see the List of cookies we collect section. From your purchases and other interactions with us, we obtain information concerning the specific products or services you purchase or use. When you visit this website, our web server automatically collects anonymous information such as log data and IP addresses, and may collect general information concerning your location. We may use the automatically collected information for a number of purposes, such as improving our site design, product assortments, customer service, and special promotions.

    \n

    How We Use The Information We Collect

    \n

    We require this information to understand your needs and provide you with a better service, and in particular for the following reasons:

    \n
      \n
    • Internal record keeping.
    • \n
    • We may use the information to improve our products and services.
    • \n
    • We may periodically send promotional emails about new products, special offers or other information which we think you may find interesting using the email address which you have provided.
    • \n
    • From time to time, we may also use your information to contact you for market research purposes. We may contact you by email, phone, fax or mail. We may use the information to customize the website according to your interests.
    • \n
    \n\n

    Security

    \n

    We are committed to ensuring that your information is secure. In order to prevent unauthorized access or disclosure, we have put in place suitable physical, electronic and managerial procedures to safeguard and secure the information we collect online.

    \n\n

    Others With Whom We Share Your Information.

    \n

    The Luma Group: All of the above information that we collect, as described above, may be shared among all Luma entities, including Luma Venia and Luma Terra stores, website and Private Sales.

    \n\n

    Service Providers: We also may disclose information to outside companies that help us bring you the products and services we offer. For example, we may work with an outside company to: (a) manage a database of customer information; (b) assist us in distributing emails; (c) assist us with direct marketing and data collection; (d) provide us storage and analysis; (d) provide fraud prevention; and (e) provide other services designed to assist us in maximizing our business potential. We require that these outside companies agree to keep confidential all information we share with them and to use the information only to perform their obligations in our agreements with them.

    \n\n

    Other Companies: We may provide information to carefully selected outside companies when we believe their products or services may be of interest to you.

    \n\n

    Business Transitions: We may transfer or share a copy of personal information about you in the event that Luma or one of its properties, affiliates, or subsidiaries goes through a business transition, such as a merger, being acquired by another company, or selling a portion of its assets. You will be notified via email or prominent notice on our website prior to a change of ownership or control of your personal information, if your personal information will be used contrary to this policy. However, nothing in this Privacy Policy is intended to interfere with the ability of Luma to transfer all or part of its business and/or assets to an affiliate or independent third party at any time, for any purpose, without any limitation whatsoever.

    \n\n

    Luma specifically reserves the right to transfer or share a copy of personally identifiable information collected from its websites to the buyer of that portion of its business relating to that information.

    \n\n

    Compliance with Law: We may provide access to information when legally required to do so, to cooperate with police investigations or other legal proceedings, to protect against misuse or unauthorized use of our website, to limit our legal liability, and to protect our rights or to protect the rights, property, or safety of visitors of this website or the public.

    \n\n

    Luma partners with advertising companies to place our advertising on publisher websites on the Internet. These advertising companies collect anonymous information about your visits to our web site. This technology involves the use of third party cookies that allow them to develop personalized advertising so that it directly relates to offers that may be of interest to you. You may choose to opt-out of this service we have with our third-party advertising partner. We may also use Luma cookies to provide similar enhanced online marketing to you based on your interests and preferences. You may also choose to opt out of these enhanced online marketing ads.

    \n\n

    Your Choices Regarding Use Of The Information We Collect

    \n\n

    You have several choices regarding our handling of your nonpublic personally identifiable information.

    \n\n

    \n Direct Mail or Telephone Marketing: If you shop at the Luma or Private Sales stores and wish to be removed from the list of customers that receive direct mail or telemarketing calls, please either write to Luma Customer Care at 112 West 34th Street, 18th Flr. New York, NY 10120 or call +1 800-403-8838. If you choose to write to us, please include your name, address, and credit card account number (if you have one), and state one of the following:\n

      \n
    • \"NO MAIL OFFERS\" (if you don't want to receive offers by mail);
    • \n
    • \"NO PHONE OFFERS\" (if you don't want to receive offers by phone);
    • \n
    • \"NO PHONE OR MAIL OFFERS\" (if you don't want to receive either).
    • \n
    \n

    \n\n

    Because customer lists often are prepared well in advance of an offering (sometimes a few months before the offer is made), you may continue to receive some offers after you send us a request not to use your information for specified marketing purposes. We appreciate your patience and understanding in giving us time to carry out your request.

    \n\n

    Your California Privacy Rights

    \n

    Under California Civil Code sections 1798.83-1798.84, California residents are entitled to ask us for a notice describing what categories of personal customer information we share with third parties or corporate affiliates for those third parties or corporate affiliates' direct marketing purposes. That notice will identify the categories of information shared and will include a list of the third parties and affiliates with which it was shared, along with their names and addresses. If you are a California resident and would like a copy of this notice, please submit a written request to the following address: Luma Customer Care, 112 West 34th Street, 18th Floor, New York, NY 10120. Please allow 30 days for a response.

    \n\n

    Cookies, Web Beacons, and How We Use Them

    \n

    A cookie is a small file which asks permission to be placed on your computer's hard drive. Once you agree, the file is added and the cookie helps analyze web traffic or lets you know when you visit a particular site. Cookies allow web applications to respond to you as an individual. The web application can tailor its operations to your needs, likes and dislikes by gathering and remembering information about your preferences.

    \n\n

    We use traffic log cookies to identify which pages are being used. This helps us analyze data about web page traffic and improve our website in order to tailor it to customer needs. We only use this information for statistical analysis purposes and then the data is removed from the system.

    \n\n

    Overall, cookies help us provide you with a better website, by enabling us to monitor which pages you find useful and which you do not. A cookie in no way gives us access to your computer or any information about you, other than the data you choose to share with us. You can choose to accept or decline cookies. Most web browsers automatically accept cookies, but you can usually modify your browser setting to decline cookies if you prefer. This may prevent you from taking full advantage of the website.

    \n\n

    A \"web beacon\" or \"pixel tag\" or \"clear gif\" is typically a one-pixel image, used to pass information from your computer or mobile device to a website.

    \n\n

    We use cookies and web beacons to keep track of what you have in your shopping cart and to remember you when you return to the website as well as to identify the pages you click on during your visit to our site and the name of the website you visited immediately before clicking to the Luma website. We use this information to improve our site design, product assortments, customer service, and special promotions. You can, of course, disable cookies and web beacons on your computer by indicating this in the preferences or options menus in your browser. However, it is possible that some parts of our website will not operate correctly if you disable cookies. We may also use web beacons, and other technologies, to help track whether our communications are reaching you, to measure their effectiveness, or to collect certain non-personal information about your computer, device, or browser in order to allow us to better design future communications to you.

    \n\n

    We may contract with third parties who may use cookies and web beacons and collect information on our behalf or provide services such as credit card processing, shipping, promotional services, or data management. We call them our Customer Care Partners. These third parties are prohibited by our contract with them from sharing that information with anyone other than us or our other Customer Care Partners.

    \n\n

    List of cookies we collect

    \n

    The table below lists the cookies we collect and the information they store.

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    COOKIE nameCOOKIE Description
    CARTThe association with your shopping cart.
    CATEGORY_INFOAllows pages to be displayed more quickly.
    COMPAREThe items that you have in the Compare Products list.
    CUSTOMERAn encrypted version of your customer id.
    CUSTOMER_AUTHAn indicator if you are signed into the store.
    CUSTOMER_INFOAn encrypted version of the customer group you belong to.
    CUSTOMER_SEGMENT_IDSStores your Customer Segment ID
    EXTERNAL_NO_CACHEA flag that, indicates whether caching is on or off.
    FRONTENDYour session ID on the server.
    GUEST-VIEWAllows guests to edit their orders.
    LAST_CATEGORYThe last category you visited.
    LAST_PRODUCTThe last product you looked at.
    NEWMESSAGEIndicates whether a new message has been received.
    NO_CACHEIndicates whether it is allowed to use cache.
    PERSISTENT_SHOPPING_CARTA link to information about your cart and viewing history if you have asked the site.
    RECENTLYCOMPAREDThe items you recently compared.
    STFInformation on products you emailed to friends.
    STOREThe store view or language you have selected.
    USER_ALLOWED_SAVE_COOKIEIndicates whether a customer authorized cookies.
    VIEWED_PRODUCT_IDSThe products that you recently looked at.
    WISHLISTAn encrypted list of products added to your wish list.
    WISHLIST_CNTThe number of items in your wish list.
    \n\n

    Online Account Registration

    \n

    To make online shopping faster and easier, you may register on the Luma website. As a registered customer, you only have to enter your shipping addresses and billing information once; they will be securely stored with us for your future use. Using your name and a password of your choice, you may access your account online at any time to add, delete, or change information. If you are using a public computer, we strongly encourage you to Sign Out when you finish shopping. Your information will still be stored with us but it will not be accessible to anyone else from that computer.

    \n\n

    Emails

    \n

    You will receive promotional emails from us only if you have asked to receive them. If you do not want to receive email from Luma or its affiliates you can click on the \"Unsubscribe\" link at the bottom of any email communication sent by us. Please allow us 3 business days from when the request was received to complete the removal, as some of our promotions may already have been in process before you submitted your request.

    \n\n

    Acceptance

    \n

    By using this website, you accept the policies set forth in this Privacy Policy.

    \n\n

    Questions for Luma?

    \n

    Contact Us

    \n
    \n \n
    \n","creation_time":"2017-11-03 08:34:38","update_time":"2017-11-03 08:34:38","sort_order":"0","layout_update_xml":"","custom_theme":"","custom_root_template":"","custom_layout_update_xml":"","active":true,"type":"cms_page","tsk":1556376573724}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"55","_score":1,"_source":{"id":55,"sku":"MH01-S-Black","name":"Chaz Kangeroo Hoodie-S-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

    Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

    \n

    • Two-tone gray heather hoodie.
    • Drawstring-adjustable hood.
    • Machine wash/dry.

    ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chaz-kangeroo-hoodie-s-black-55","links":{},"stock":{"item_id":55,"product_id":55,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-s-black-55.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"54","_score":1,"_source":{"id":54,"sku":"MH01-XS-Orange","name":"Chaz Kangeroo Hoodie-XS-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

    Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

    \n

    • Two-tone gray heather hoodie.
    • Drawstring-adjustable hood.
    • Machine wash/dry.

    ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chaz-kangeroo-hoodie-xs-orange-54","links":{},"stock":{"item_id":54,"product_id":54,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xs-orange-54.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"cms_page","_id":"2","_score":1,"_source":{"store_id":[0],"id":2,"identifier":"home","title":"Home Page","page_layout":"1column","meta_keywords":"","meta_description":"","content_heading":"Home Page","content":"","creation_time":"2017-11-03 08:34:38","update_time":"2017-11-03 08:34:38","sort_order":"0","layout_update_xml":"","custom_theme":"","custom_root_template":"","custom_layout_update_xml":"","active":true,"type":"cms_page","tsk":1556376573724}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"cms_page","_id":"6","_score":1,"_source":{"store_id":[0],"id":6,"identifier":"customer-service","title":"Customer Service","page_layout":"1column","meta_keywords":"","meta_description":"","content_heading":"Customer Service","content":"
    \n
    \n

    Luma Delivery and Returns

    \n

    We hope you love shopping with Luma. Here are our delivery and returns policies to help make sure we meet your expectations. Contact Us.

    \n
    \n\n

    Shipping and Delivery

    \n

    Shipping and Delivery is the charge for internet order processing, item selection, packaging, transport and handling. We don’t guarantee delivery times, but we do our best to provide accurate estimates.

    \n\n

    Deliveries occur only on weekdays. Shipping and Delivery charges are subject to change and are determined when you order. Estimated delivery time assumes orders are placed before 12:00 noon (PST). Orders you place with Luma late on Friday or on Saturday will not be processed until Monday. Charges may be added to orders with Priority, Overnight and International shipping if we try unsuccessfully to deliver your order more than once.

    \n\n

    Delivery addresses in Alaska, Hawaii, Puerto Rico, and Guam should add an additional $5.00 charge for standard Shipping & Delivery. Orders arrive in 7 to 9 business days when ordered before 12:00 noon (PST).

    \n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Shipping and Delivery
    Merchandise total *STANDARD
    5—7 day shipping **
    PRIORITY
    2—3 day shipping **
    OVERNIGHT
    Next business day **
    Up to $200$16$26$33
    $200.01—500.00$21$31$38
    $500.01—1000.00$29$39$46
    Over $1000.00$34$44$51
    \n
    \n\n

    \n *before tax and additional charges
    \n **after processing if ordered by 12:00 noon PST\n

    \n\n

    Returns and Replacements

    \n

    We want you to be completely happy with your Luma order. If for any reason you are not satisfied, we will gladly accept your timely return of unworn, unwashed, or defective merchandise. Used merchandise cannot be returned unless defective. Returned merchandise should include the vendor packaging and tags and be in the same condition as when it was received. A pickup and/or restock fee may apply. Merchandise must be returned within 30 days of receipt of merchandise.

    \n\n

    Returning Gifts

    \n

    When returning a gift, a Luma Gift Card will be issued to the gift recipient for the amount of the returned merchandise. The card can be used for purchases from any Luma store, and online. In compliance with Federal law, for gifts valued at more than $2,000.00, the recipient will receive a check rather than an Luma Gift Card.

    \n\n

    Returning Merchandise by Mail

    \n

    On the back of the packing slip enclosed with your Luma order, please note the reason(s) for return and whether you wish to exchange the item(s) or receive a credit/refund (depending on the original form of payment).

    \n

    Enclose the return section of the packing slip with your item(s). Please use one of the return labels provided on the front of your packing slip to ensure proper return address and credit information. Restricted items must be returned using ground transportation.

    \n

    Please allow 10 to 14 days for Luma to process your return.

    \n
    \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","sort_order":"0","layout_update_xml":"","custom_theme":"","custom_root_template":"","custom_layout_update_xml":"","active":true,"type":"cms_page","tsk":1556376573724}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"cms_block","_id":"2","_score":1,"_source":{"store_id":[0],"id":2,"identifier":"contact-us-info","title":"Contact us info","content":"
    \n

    We love hearing from you, our Luma customers. Please contact us about anything at all. Your latest passion, unique health experience or request for a specific product. We’ll do everything we can to make your Luma experience unforgettable every time. Reach us however you like

    \n
    \n
    \n Contact Us Info\n
    \n
    \n
    \n \n Phone\n \n
    \n 1-800-403-8838\n

    Call the Luma Helpline for concerns, product questions, or anything else. We’re here for you 24 hours a day - 365 days a year.

    \n
    \n
    \n
    \n \n Apparel Design Inquiries\n \n
    \n

    Are you an independent clothing designer? Feature your products on the Luma website! Please direct all inquiries via email to: cs@luma.com

    \n
    \n
    \n
    \n \n Press Inquiries\n \n
    \n

    Please direct all media inquiries via email to: pr@luma.com

    \n
    \n
    \n
    \n
    \n
    \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556376570938}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"cms_block","_id":"4","_score":1,"_source":{"store_id":[0],"id":4,"identifier":"gear-left-menu-block","title":"Gear Left Menu Block","content":"","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556376570938}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"cms_block","_id":"15","_score":1,"_source":{"store_id":[0],"id":15,"identifier":"performance-fabrics-block","title":"Performance Fabrics Block","content":"
    \n
    \n \"\"\n \n You're the best\n Make a strong statement with Luma Performance sportswear\n \n
    \n
    \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556376570938}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"15","_score":1,"_source":{"id":15,"parent_id":12,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":208,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/15","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-15","url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","slug":"hoodies-and-sweatshirts-15","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"27","_score":1,"_source":{"id":27,"parent_id":22,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":91,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/27","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-27","url_path":"women/bottoms-women/pants-women/pants-27","slug":"pants-27","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"cms_block","_id":"6","_score":1,"_source":{"store_id":[0],"id":6,"identifier":"women-left-menu-block","title":"Women Left Menu Block","content":"
    Tops\n\n\nBottoms\n\n
    ","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556376570938}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"taxrule","_id":"2","_score":1,"_source":{"id":2,"code":"General Taxes","priority":0,"position":0,"customer_tax_class_ids":[3],"product_tax_class_ids":[2],"tax_rate_ids":[6,5,7,4],"calculate_subtotal":false,"rates":[{"id":7,"tax_country_id":"PL","tax_region_id":0,"tax_postcode":"*","rate":23,"code":"VAT23-PL","titles":[]},{"id":4,"tax_country_id":"US","tax_region_id":0,"tax_postcode":"*","rate":23,"code":"VAT23","titles":[]},{"id":6,"tax_country_id":"DE","tax_region_id":0,"tax_postcode":"*","rate":23,"code":"VAT23-DE","titles":[]},{"id":5,"tax_country_id":"IT","tax_region_id":0,"tax_postcode":"*","rate":23,"code":"VAT23-IT","titles":[]}],"tsk":1556376591237}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"150","_score":1,"_source":{"id":150,"sku":"MH07-XS-Green","name":"Hero Hoodie-XS-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

    Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

    \n

    • Full-zip gray and black hoodie.
    • Ribbed hem.
    • Standard fit.
    • Drawcord hood cinch.
    • Water-resistant coating.

    ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hero-hoodie-xs-green-150","links":{},"stock":{"item_id":150,"product_id":150,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xs-green-150.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"131","_score":1,"_source":{"id":131,"sku":"MH05","name":"Hollister Backyard Sweatshirt","attribute_set_id":9,"price":52,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":52,"description":"

    Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

    \n

    • Cream crewneck sweatshirt with navy sleeves/trim.
    • Relaxed fit.
    • Ribbed cuffs and hem.
    • Machine wash/dry.

    ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hollister-backyard-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,38,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"195","climate":"204","slug":"hollister-backyard-sweatshirt-131","links":{},"stock":{"item_id":131,"product_id":131,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH05-XS-Green","id":116,"status":1,"name":"Hollister Backyard Sweatshirt-XS-Green","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"53","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","url_key":"hollister-backyard-sweatshirt-xs-green","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-XS-Red","id":117,"status":1,"name":"Hollister Backyard Sweatshirt-XS-Red","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","url_key":"hollister-backyard-sweatshirt-xs-red","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-XS-White","id":118,"status":1,"name":"Hollister Backyard Sweatshirt-XS-White","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"59","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","url_key":"hollister-backyard-sweatshirt-xs-white","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-S-Green","id":119,"status":1,"name":"Hollister Backyard Sweatshirt-S-Green","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"53","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","url_key":"hollister-backyard-sweatshirt-s-green","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-S-Red","id":120,"status":1,"name":"Hollister Backyard Sweatshirt-S-Red","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","url_key":"hollister-backyard-sweatshirt-s-red","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-S-White","id":121,"status":1,"name":"Hollister Backyard Sweatshirt-S-White","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"59","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","url_key":"hollister-backyard-sweatshirt-s-white","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-M-Green","id":122,"status":1,"name":"Hollister Backyard Sweatshirt-M-Green","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"53","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","url_key":"hollister-backyard-sweatshirt-m-green","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-M-Red","id":123,"status":1,"name":"Hollister Backyard Sweatshirt-M-Red","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","url_key":"hollister-backyard-sweatshirt-m-red","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-M-White","id":124,"status":1,"name":"Hollister Backyard Sweatshirt-M-White","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"59","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","url_key":"hollister-backyard-sweatshirt-m-white","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-L-Green","id":125,"status":1,"name":"Hollister Backyard Sweatshirt-L-Green","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"53","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","url_key":"hollister-backyard-sweatshirt-l-green","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-L-Red","id":126,"status":1,"name":"Hollister Backyard Sweatshirt-L-Red","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","url_key":"hollister-backyard-sweatshirt-l-red","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-L-White","id":127,"status":1,"name":"Hollister Backyard Sweatshirt-L-White","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"59","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","url_key":"hollister-backyard-sweatshirt-l-white","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-XL-Green","id":128,"status":1,"name":"Hollister Backyard Sweatshirt-XL-Green","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"53","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","url_key":"hollister-backyard-sweatshirt-xl-green","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-XL-Red","id":129,"status":1,"name":"Hollister Backyard Sweatshirt-XL-Red","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","url_key":"hollister-backyard-sweatshirt-xl-red","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-XL-White","id":130,"status":1,"name":"Hollister Backyard Sweatshirt-XL-White","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"59","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","url_key":"hollister-backyard-sweatshirt-xl-white","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001}],"configurable_options":[{"id":11,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":131,"attribute_code":"color"},{"id":10,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":131,"attribute_code":"size"}],"color_options":[53,58,59],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-131.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"163","_score":1,"_source":{"id":163,"sku":"MH07","name":"Hero Hoodie","attribute_set_id":9,"price":54,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":54,"description":"

    Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

    \n

    • Full-zip gray and black hoodie.
    • Ribbed hem.
    • Standard fit.
    • Drawcord hood cinch.
    • Water-resistant coating.

    ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hero-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,146,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","pattern":"195","climate":"208","slug":"hero-hoodie-163","links":{},"stock":{"item_id":163,"product_id":163,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH07-XS-Black","id":148,"status":1,"name":"Hero Hoodie-XS-Black","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"49","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","url_key":"hero-hoodie-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MH07-XS-Gray","id":149,"status":1,"name":"Hero Hoodie-XS-Gray","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"52","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","url_key":"hero-hoodie-xs-gray","msrp_display_actual_price_type":"0"},{"sku":"MH07-XS-Green","id":150,"status":1,"name":"Hero Hoodie-XS-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"53","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","url_key":"hero-hoodie-xs-green","msrp_display_actual_price_type":"0"},{"sku":"MH07-S-Black","id":151,"status":1,"name":"Hero Hoodie-S-Black","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"49","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","url_key":"hero-hoodie-s-black","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"MH07-S-Gray","id":152,"status":1,"name":"Hero Hoodie-S-Gray","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"52","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","url_key":"hero-hoodie-s-gray","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"MH07-S-Green","id":153,"status":1,"name":"Hero Hoodie-S-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"53","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","url_key":"hero-hoodie-s-green","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"MH07-M-Black","id":154,"status":1,"name":"Hero Hoodie-M-Black","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"49","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","url_key":"hero-hoodie-m-black","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"MH07-M-Gray","id":155,"status":1,"name":"Hero Hoodie-M-Gray","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"52","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","url_key":"hero-hoodie-m-gray","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"MH07-M-Green","id":156,"status":1,"name":"Hero Hoodie-M-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"53","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","url_key":"hero-hoodie-m-green","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"MH07-L-Black","id":157,"status":1,"name":"Hero Hoodie-L-Black","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"49","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","url_key":"hero-hoodie-l-black","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"MH07-L-Gray","id":158,"status":1,"name":"Hero Hoodie-L-Gray","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"52","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","url_key":"hero-hoodie-l-gray","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"MH07-L-Green","id":159,"status":1,"name":"Hero Hoodie-L-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"53","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","url_key":"hero-hoodie-l-green","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"MH07-XL-Black","id":160,"status":1,"name":"Hero Hoodie-XL-Black","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"49","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","url_key":"hero-hoodie-xl-black","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"MH07-XL-Gray","id":161,"status":1,"name":"Hero Hoodie-XL-Gray","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"52","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","url_key":"hero-hoodie-xl-gray","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"MH07-XL-Green","id":162,"status":1,"name":"Hero Hoodie-XL-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"53","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","url_key":"hero-hoodie-xl-green","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001}],"configurable_options":[{"id":15,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":163,"attribute_code":"color"},{"id":14,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":163,"attribute_code":"size"}],"color_options":[49,52,53],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-163.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"51","_score":1,"_source":{"id":51,"sku":"240-LV09","name":"Luma Yoga For Life","attribute_set_id":14,"price":0,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:34","updated_at":"2019-02-22 10:56:18","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":0,"max_price":0,"max_regular_price":0,"minimal_regular_price":11.070001,"special_price":null,"minimal_price":11.070001,"regular_price":0,"description":"
    • Increase strength + flexibility + metabolism
    • Burn calories + feel great
    • Gain energy + youthfulness + mental wellness

    Download description

    Tone up mind and bodyPro Yoga Instructor and Master Practitioner Marie Peale helps tone and sculpt your physique with her invigorating yet gentle approach.

    You'll learn to use yoga to relax, control stress and increase your calorie-burning capacity, all while exploring traditional and new yoga poses that lengthen and strengthen your full muscular structure.

    • Easy download
    • Audio options: Music and instruction or instruction only
    • Heart rate techniques explained
    • Breathing techniques explained
    • Move through exercises at your own pace

    Two 25-minute workout episodes and one 40-minute workout episode with warm-up and cool down:

    Episode 1Creative, fun session geared toward opening your lungs. Combines stretching and breathing with a focus on hips and shoulders.

    Episode 2Ramp up the tempo and energy with calorie-burning flows. A stimulating workout introducing the body-sculpting power of yoga.

    Episode 3Push your fitness reach and stamina with an intense series of standing and floor exercises and poses. End this extra-length session with a meditative cool down.

    instructor bio

    About MarieMarie is a trained martial artist and dancer with a BS in Biological Engineering and over 10 years as a certified yoga teacher. Marie has studied yoga in England, India and, in 2009, at the Ashraqat Ashram Yoga Farm in the United States. She has been teaching full time since then. Her focus on strength and wellness combines a deep knowledge of human biology and motivation guided by unconditional love for her audience.

    ","short_description":"

    \r\nLuma founder Erin Renny on yoga and longevity: \"I won't promise you'll live longer with yoga. No one can promise that. But your life will be healthier, less stressful, and more physically in tune when you focus on connecting your mind and body or a regular basis. Yoga is my favorite way to express this connection. I want to share the secrets of lifelong yoga with anyone willing to breathe and learn with me.\"\r\n

    ","meta_description":"You'll learn to use yoga to relax, control stress and increase your calorie-burning capacity, all while exploring traditional and new yoga poses that lengthen and strengthen your full muscular structure.","image":"/l/t/lt06.jpg","small_image":"/l/t/lt06.jpg","thumbnail":"/l/t/lt06.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"luma-yoga-for-life","msrp_display_actual_price_type":"0","links_purchased_separately":"1","samples_title":"Trailers","links_title":"Downloads","gift_message_available":"0","tax_class_id":"2","activity":[8,16],"format":"102","slug":"luma-yoga-for-life-51","links":{},"stock":{"item_id":51,"product_id":51,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":"2019-02-22 10:56:18","is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/t/lt06.jpg","pos":1,"typ":"image","lab":"Image","vid":null},{"image":"/6/5/654598283_640.jpg","pos":2,"typ":"external-video","lab":null,"vid":{"url":"https://vimeo.com/233305101","title":"Yoga For Life","desc":"Creative, fun session geared toward opening your lungs. Combines stretching and breathing with a focus on hips and shoulders.","meta":"","video_id":"233305101","type":"vimeo"}},{"image":"/h/q/hqdefault_1.jpg","pos":5,"typ":"external-video","lab":null,"vid":{"url":"https://youtu.be/L4K-mq9JoaQ","title":"Vue Storefront - Open Source PWA eCommerce Solution Demo","desc":"Vue Storefront is a progressive web application for eCommerce based on Vuejs.\r\n\r\nhttps://vuestorefront.io/\r\n\r\nWe created Vue Storefront to improve the shopping experience by making the storefront ultra fast, off-line ready and impervious to traffic overloads.\r\n\r\nVue Storefront is 100% open source and distributed under the MIT license. You can take the source code from GitHub, customize your template and use it for your eCommerce as a PWA.\r\n\r\nPlatforms we work with right now: Magento ( Magento2 and Magento 1 ), PrestaShop. \r\nYou can easily connect our Storefront to: hybris, spryker, shopify, demandware, sylius.\r\n\r\n--\r\nâ–º Subscribe to Divante Channel Here: \r\nhttps://www.youtube.com/channel/UCXELY-WzF41oJlM-8qt5z8g?sub_confirmation=1 \r\n\r\n--\r\nAs one of the biggest eCommerce Software Houses in Europe, headquartered in Poland and employing about 150 people, our core competencies are built around Magento. This is the leading eCommerce platform for medium to large companies. We have been operating since 2008 and we are part of the OEX Group which is listed on the Warsaw Stock Exchange. Our annual revenue has been growing at a minimum of about 30% y/y.\r\n\r\n----\r\nFollow Divante Online Here:\r\n\r\n\r\nFacebook: http://facebook.com/Divante.co\r\nWebsite: http://divante.co\r\nTwitter: http://twitter.com/DivanteLTD\r\nCEO Twitter: http://twitter.com/tomik99\r\nGitHub: https://github.com/DivanteLtd\r\nBehance: http://behance.net/behancead24\r\nLinkedIn: https://www.linkedin.com/company-beta/600853\r\n\r\n-","meta":"","video_id":"L4K-mq9JoaQ","type":"youtube"}}],"category":[{"category_id":9,"name":"Training","slug":"training-9","path":"training/training-9"},{"category_id":10,"name":"Video Download","slug":"video-download-10","path":"training/training-video/video-download-10"}],"url_path":"training/training-9/luma-yoga-for-life-51.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"169","_score":1,"_source":{"id":169,"sku":"MH08-S-Red","name":"Oslo Trek Hoodie-S-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

    \n

    • Brown hoodie with black detail.
    • Pullover.
    • Adjustable drawstring hood.
    • Ribbed cuffs/waistband.
    • Machine wash/dry.

    ","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"oslo-trek-hoodie-s-red-169","links":{},"stock":{"item_id":169,"product_id":169,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-s-red-169.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"170","_score":1,"_source":{"id":170,"sku":"MH08-M-Brown","name":"Oslo Trek Hoodie-M-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

    \n

    • Brown hoodie with black detail.
    • Pullover.
    • Adjustable drawstring hood.
    • Ribbed cuffs/waistband.
    • Machine wash/dry.

    ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-m-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"oslo-trek-hoodie-m-brown-170","links":{},"stock":{"item_id":170,"product_id":170,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-m-brown-170.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"162","_score":1,"_source":{"id":162,"sku":"MH07-XL-Green","name":"Hero Hoodie-XL-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

    Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

    \n

    • Full-zip gray and black hoodie.
    • Ribbed hem.
    • Standard fit.
    • Drawcord hood cinch.
    • Water-resistant coating.

    ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hero-hoodie-xl-green-162","links":{},"stock":{"item_id":162,"product_id":162,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xl-green-162.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"161","_score":1,"_source":{"id":161,"sku":"MH07-XL-Gray","name":"Hero Hoodie-XL-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

    Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

    \n

    • Full-zip gray and black hoodie.
    • Ribbed hem.
    • Standard fit.
    • Drawcord hood cinch.
    • Water-resistant coating.

    ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hero-hoodie-xl-gray-161","links":{},"stock":{"item_id":161,"product_id":161,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xl-gray-161.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"176","_score":1,"_source":{"id":176,"sku":"MH08-XL-Brown","name":"Oslo Trek Hoodie-XL-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

    \n

    • Brown hoodie with black detail.
    • Pullover.
    • Adjustable drawstring hood.
    • Ribbed cuffs/waistband.
    • Machine wash/dry.

    ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xl-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"oslo-trek-hoodie-xl-brown-176","links":{},"stock":{"item_id":176,"product_id":176,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xl-brown-176.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"175","_score":1,"_source":{"id":175,"sku":"MH08-L-Red","name":"Oslo Trek Hoodie-L-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

    \n

    • Brown hoodie with black detail.
    • Pullover.
    • Adjustable drawstring hood.
    • Ribbed cuffs/waistband.
    • Machine wash/dry.

    ","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"oslo-trek-hoodie-l-red-175","links":{},"stock":{"item_id":175,"product_id":175,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-l-red-175.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"178","_score":1,"_source":{"id":178,"sku":"MH08-XL-Red","name":"Oslo Trek Hoodie-XL-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

    \n

    • Brown hoodie with black detail.
    • Pullover.
    • Adjustable drawstring hood.
    • Ribbed cuffs/waistband.
    • Machine wash/dry.

    ","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"oslo-trek-hoodie-xl-red-178","links":{},"stock":{"item_id":178,"product_id":178,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xl-red-178.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"199","_score":1,"_source":{"id":199,"sku":"MH10-S-Black","name":"Mach Street Sweatshirt -S-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

    \n

    • Navy heather crewneck sweatshirt.
    • LumaTech™ moisture-wicking fabric.
    • Antimicrobial, odor-resistant.
    • Zip hand pockets.
    • Chafe-resistant flatlock seams.
    • Rib-knit cuffs and hem.

    ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mach-street-sweatshirt-s-black-199","links":{},"stock":{"item_id":199,"product_id":199,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-s-black-199.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"180","_score":1,"_source":{"id":180,"sku":"MH09-XS-Blue","name":"Abominable Hoodie-XS-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-12-01 13:03:34","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":"20.0000","minimal_price":84.870001,"regular_price":84.870001,"description":"

    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

    \r\n

    • Blue heather hoodie.
    • Relaxed fit.
    • Moisture-wicking.
    • Machine wash/dry.

    ","special_from_date":"2017-11-15 00:00:00","special_to_date":"2017-12-11 00:00:00","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xs-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"167","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"abominable-hoodie-xs-blue-180","links":{},"stock":{"item_id":180,"product_id":180,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":null,"vid":null},{"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xs-blue-180.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"188","_score":1,"_source":{"id":188,"sku":"MH09-M-Red","name":"Abominable Hoodie-M-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

    \n

    • Blue heather hoodie.
    • Relaxed fit.
    • Moisture-wicking.
    • Machine wash/dry.

    ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"abominable-hoodie-m-red-188","links":{},"stock":{"item_id":188,"product_id":188,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-m-red-188.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"198","_score":1,"_source":{"id":198,"sku":"MH10-XS-Red","name":"Mach Street Sweatshirt -XS-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

    \n

    • Navy heather crewneck sweatshirt.
    • LumaTech™ moisture-wicking fabric.
    • Antimicrobial, odor-resistant.
    • Zip hand pockets.
    • Chafe-resistant flatlock seams.
    • Rib-knit cuffs and hem.

    ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mach-street-sweatshirt-xs-red-198","links":{},"stock":{"item_id":198,"product_id":198,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xs-red-198.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"57","_score":1,"_source":{"id":57,"sku":"MH01-S-Orange","name":"Chaz Kangeroo Hoodie-S-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

    Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

    \n

    • Two-tone gray heather hoodie.
    • Drawstring-adjustable hood.
    • Machine wash/dry.

    ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chaz-kangeroo-hoodie-s-orange-57","links":{},"stock":{"item_id":57,"product_id":57,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-s-orange-57.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"80","_score":1,"_source":{"id":80,"sku":"MH02-XL-Black","name":"Teton Pullover Hoodie-XL-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

    This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

    \n

    • Black pullover hoodie.
    • Soft, brushed interior.
    • Front hand pockets.
    • Machine wash/dry.

    ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"teton-pullover-hoodie-xl-black-80","links":{},"stock":{"item_id":80,"product_id":80,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xl-black-80.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"85","_score":1,"_source":{"id":85,"sku":"MH03-XS-Blue","name":"Bruno Compete Hoodie-XS-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

    Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

    \n

    • Full zip black hoodie pullover.
    • Adjustable drawstring hood.
    • Ribbed cuffs/waistband.
    • Kangaroo pocket.
    • Machine wash/dry.

    ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bruno-compete-hoodie-xs-blue-85","links":{},"stock":{"item_id":85,"product_id":85,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xs-blue-85.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"93","_score":1,"_source":{"id":93,"sku":"MH03-L-Black","name":"Bruno Compete Hoodie-L-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

    Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

    \n

    • Full zip black hoodie pullover.
    • Adjustable drawstring hood.
    • Ribbed cuffs/waistband.
    • Kangaroo pocket.
    • Machine wash/dry.

    ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bruno-compete-hoodie-l-black-93","links":{},"stock":{"item_id":93,"product_id":93,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-l-black-93.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"114","_score":1,"_source":{"id":114,"sku":"MH04-XL-Yellow","name":"Frankie Sweatshirt-XL-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

    \n

    • Light green crewneck sweatshirt.
    • Hand pockets.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"frankie-sweatshirt-xl-yellow-114","links":{},"stock":{"item_id":114,"product_id":114,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xl-yellow-114.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"106","_score":1,"_source":{"id":106,"sku":"MH04-M-Green","name":"Frankie Sweatshirt-M-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

    \n

    • Light green crewneck sweatshirt.
    • Hand pockets.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"frankie-sweatshirt-m-green-106","links":{},"stock":{"item_id":106,"product_id":106,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-m-green-106.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"118","_score":1,"_source":{"id":118,"sku":"MH05-XS-White","name":"Hollister Backyard Sweatshirt-XS-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

    Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

    \n

    • Cream crewneck sweatshirt with navy sleeves/trim.
    • Relaxed fit.
    • Ribbed cuffs and hem.
    • Machine wash/dry.

    ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hollister-backyard-sweatshirt-xs-white-118","links":{},"stock":{"item_id":118,"product_id":118,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xs-white-118.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"109","_score":1,"_source":{"id":109,"sku":"MH04-L-Green","name":"Frankie Sweatshirt-L-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

    \n

    • Light green crewneck sweatshirt.
    • Hand pockets.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"frankie-sweatshirt-l-green-109","links":{},"stock":{"item_id":109,"product_id":109,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-l-green-109.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"134","_score":1,"_source":{"id":134,"sku":"MH06-XS-Purple","name":"Stark Fundamental Hoodie-XS-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

    \n

    • Navy specked full zip hoodie.
    • Ribbed cuffs, banded waist.
    • Side pockets.
    • Machine wash/dry.

    ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"stark-fundamental-hoodie-xs-purple-134","links":{},"stock":{"item_id":134,"product_id":134,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xs-purple-134.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"159","_score":1,"_source":{"id":159,"sku":"MH07-L-Green","name":"Hero Hoodie-L-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

    Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

    \n

    • Full-zip gray and black hoodie.
    • Ribbed hem.
    • Standard fit.
    • Drawcord hood cinch.
    • Water-resistant coating.

    ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hero-hoodie-l-green-159","links":{},"stock":{"item_id":159,"product_id":159,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-l-green-159.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"242","_score":1,"_source":{"id":242,"sku":"MH12-XL-Red","name":"Ajax Full-Zip Sweatshirt -XL-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

    \n

    • Mint striped full zip hoodie.
    • 100% bonded polyester fleece.
    • Pouch pocket.
    • Rib cuffs and hem.
    • Machine washable.

    ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ajax-full-zip-sweatshirt-xl-red-242","links":{},"stock":{"item_id":242,"product_id":242,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xl-red-242.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"249","_score":1,"_source":{"id":249,"sku":"MH13-S-Lavender","name":"Marco Lightweight Active Hoodie-S-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

    \n

    • Light blue heather full zip hoodie.
    • Fitted flatlock seams.
    • Matching lining and drawstring.
    • Machine wash/dry.

    ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-s-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"marco-lightweight-active-hoodie-s-lavender-249","links":{},"stock":{"item_id":249,"product_id":249,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-s-lavender-249.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"211","_score":1,"_source":{"id":211,"sku":"MH10","name":"Mach Street Sweatshirt ","attribute_set_id":9,"price":62,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":62,"description":"

    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

    \n

    • Navy heather crewneck sweatshirt.
    • LumaTech™ moisture-wicking fabric.
    • Antimicrobial, odor-resistant.
    • Zip hand pockets.
    • Chafe-resistant flatlock seams.
    • Rib-knit cuffs and hem.

    ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mach-street-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,148],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","pattern":"197","climate":[202,204,205,208],"slug":"mach-street-sweatshirt-211","links":{},"stock":{"item_id":211,"product_id":211,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH10-XS-Black","id":196,"status":1,"name":"Mach Street Sweatshirt -XS-Black","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"49","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","url_key":"mach-street-sweatshirt-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MH10-XS-Blue","id":197,"status":1,"name":"Mach Street Sweatshirt -XS-Blue","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"50","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","url_key":"mach-street-sweatshirt-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"MH10-XS-Red","id":198,"status":1,"name":"Mach Street Sweatshirt -XS-Red","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","url_key":"mach-street-sweatshirt-xs-red","msrp_display_actual_price_type":"0"},{"sku":"MH10-S-Black","id":199,"status":1,"name":"Mach Street Sweatshirt -S-Black","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"49","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","url_key":"mach-street-sweatshirt-s-black","msrp_display_actual_price_type":"0"},{"sku":"MH10-S-Blue","id":200,"status":1,"name":"Mach Street Sweatshirt -S-Blue","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"50","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","url_key":"mach-street-sweatshirt-s-blue","msrp_display_actual_price_type":"0"},{"sku":"MH10-S-Red","id":201,"status":1,"name":"Mach Street Sweatshirt -S-Red","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","url_key":"mach-street-sweatshirt-s-red","msrp_display_actual_price_type":"0","final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001},{"sku":"MH10-M-Black","id":202,"status":1,"name":"Mach Street Sweatshirt -M-Black","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"49","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","url_key":"mach-street-sweatshirt-m-black","msrp_display_actual_price_type":"0","final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001},{"sku":"MH10-M-Blue","id":203,"status":1,"name":"Mach Street Sweatshirt -M-Blue","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"50","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","url_key":"mach-street-sweatshirt-m-blue","msrp_display_actual_price_type":"0","final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001},{"sku":"MH10-M-Red","id":204,"status":1,"name":"Mach Street Sweatshirt -M-Red","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","url_key":"mach-street-sweatshirt-m-red","msrp_display_actual_price_type":"0","final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001},{"sku":"MH10-L-Black","id":205,"status":1,"name":"Mach Street Sweatshirt -L-Black","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"49","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","url_key":"mach-street-sweatshirt-l-black","msrp_display_actual_price_type":"0","final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001},{"sku":"MH10-L-Blue","id":206,"status":1,"name":"Mach Street Sweatshirt -L-Blue","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"50","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","url_key":"mach-street-sweatshirt-l-blue","msrp_display_actual_price_type":"0","final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001},{"sku":"MH10-L-Red","id":207,"status":1,"name":"Mach Street Sweatshirt -L-Red","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","url_key":"mach-street-sweatshirt-l-red","msrp_display_actual_price_type":"0","final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001},{"sku":"MH10-XL-Black","id":208,"status":1,"name":"Mach Street Sweatshirt -XL-Black","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"49","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","url_key":"mach-street-sweatshirt-xl-black","msrp_display_actual_price_type":"0","final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001},{"sku":"MH10-XL-Blue","id":209,"status":1,"name":"Mach Street Sweatshirt -XL-Blue","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"50","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","url_key":"mach-street-sweatshirt-xl-blue","msrp_display_actual_price_type":"0","final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001},{"sku":"MH10-XL-Red","id":210,"status":1,"name":"Mach Street Sweatshirt -XL-Red","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","url_key":"mach-street-sweatshirt-xl-red","msrp_display_actual_price_type":"0","final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001}],"configurable_options":[{"id":21,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":211,"attribute_code":"color"},{"id":20,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":211,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-211.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"213","_score":1,"_source":{"id":213,"sku":"MH11-XS-Red","name":"Grayson Crewneck Sweatshirt -XS-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

    \n

    • Cream crewneck sweatshirt with black accents.
    • 80% cotton/20% polyester fleece.
    • Patterned knit hood lining.
    • Knit cuffs and waist.
    • Pouch pocket.
    • Curl edged seam detail

    ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"grayson-crewneck-sweatshirt-xs-red-213","links":{},"stock":{"item_id":213,"product_id":213,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xs-red-213.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"207","_score":1,"_source":{"id":207,"sku":"MH10-L-Red","name":"Mach Street Sweatshirt -L-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

    \n

    • Navy heather crewneck sweatshirt.
    • LumaTech™ moisture-wicking fabric.
    • Antimicrobial, odor-resistant.
    • Zip hand pockets.
    • Chafe-resistant flatlock seams.
    • Rib-knit cuffs and hem.

    ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mach-street-sweatshirt-l-red-207","links":{},"stock":{"item_id":207,"product_id":207,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-l-red-207.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"210","_score":1,"_source":{"id":210,"sku":"MH10-XL-Red","name":"Mach Street Sweatshirt -XL-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

    \n

    • Navy heather crewneck sweatshirt.
    • LumaTech™ moisture-wicking fabric.
    • Antimicrobial, odor-resistant.
    • Zip hand pockets.
    • Chafe-resistant flatlock seams.
    • Rib-knit cuffs and hem.

    ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mach-street-sweatshirt-xl-red-210","links":{},"stock":{"item_id":210,"product_id":210,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xl-red-210.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"225","_score":1,"_source":{"id":225,"sku":"MH11-XL-Red","name":"Grayson Crewneck Sweatshirt -XL-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

    \n

    • Cream crewneck sweatshirt with black accents.
    • 80% cotton/20% polyester fleece.
    • Patterned knit hood lining.
    • Knit cuffs and waist.
    • Pouch pocket.
    • Curl edged seam detail

    ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"grayson-crewneck-sweatshirt-xl-red-225","links":{},"stock":{"item_id":225,"product_id":225,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xl-red-225.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"219","_score":1,"_source":{"id":219,"sku":"MH11-M-Red","name":"Grayson Crewneck Sweatshirt -M-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

    \n

    • Cream crewneck sweatshirt with black accents.
    • 80% cotton/20% polyester fleece.
    • Patterned knit hood lining.
    • Knit cuffs and waist.
    • Pouch pocket.
    • Curl edged seam detail

    ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"grayson-crewneck-sweatshirt-m-red-219","links":{},"stock":{"item_id":219,"product_id":219,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-m-red-219.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"232","_score":1,"_source":{"id":232,"sku":"MH12-S-Green","name":"Ajax Full-Zip Sweatshirt -S-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

    \n

    • Mint striped full zip hoodie.
    • 100% bonded polyester fleece.
    • Pouch pocket.
    • Rib cuffs and hem.
    • Machine washable.

    ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ajax-full-zip-sweatshirt-s-green-232","links":{},"stock":{"item_id":232,"product_id":232,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-s-green-232.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"258","_score":1,"_source":{"id":258,"sku":"MH13-XL-Lavender","name":"Marco Lightweight Active Hoodie-XL-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

    \n

    • Light blue heather full zip hoodie.
    • Fitted flatlock seams.
    • Matching lining and drawstring.
    • Machine wash/dry.

    ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xl-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"marco-lightweight-active-hoodie-xl-lavender-258","links":{},"stock":{"item_id":258,"product_id":258,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xl-lavender-258.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"268","_score":1,"_source":{"id":268,"sku":"MJ01-M-Yellow","name":"Beaumont Summit Kit-M-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

    \n

    • Yellow full zip rain jacket.
    • Full-zip front.
    • Stand-up collar.
    • Elasticized cuffs.
    • Machine wash/dry.

    ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"beaumont-summit-kit-m-yellow-268","links":{},"stock":{"item_id":268,"product_id":268,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-m-yellow-268.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"263","_score":1,"_source":{"id":263,"sku":"MJ01-S-Orange","name":"Beaumont Summit Kit-S-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

    \n

    • Yellow full zip rain jacket.
    • Full-zip front.
    • Stand-up collar.
    • Elasticized cuffs.
    • Machine wash/dry.

    ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"beaumont-summit-kit-s-orange-263","links":{},"stock":{"item_id":263,"product_id":263,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-s-orange-263.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"293","_score":1,"_source":{"id":293,"sku":"MJ04-XS-Blue","name":"Kenobi Trail Jacket-XS-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

    \n

    • Black 1/4 zip pullover with royal zipper.
    • Adjustable hood and sleeve cuffs.
    • Machine wash/air dry.

    ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"kenobi-trail-jacket-xs-blue-293","links":{},"stock":{"item_id":293,"product_id":293,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xs-blue-293.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"310","_score":1,"_source":{"id":310,"sku":"MJ07-XS-Yellow","name":"Orion Two-Tone Fitted Jacket-XS-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

    \n

    • Red full zip fleece with gray insets.
    • Double-knit construction.
    • Full athletic cut.
    • Set in sleeves.
    • Front pouch pocket.

    ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"orion-two-tone-fitted-jacket-xs-yellow-310","links":{},"stock":{"item_id":310,"product_id":310,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xs-yellow-310.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"306","_score":1,"_source":{"id":306,"sku":"MJ04-XL-Purple","name":"Kenobi Trail Jacket-XL-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

    \n

    • Black 1/4 zip pullover with royal zipper.
    • Adjustable hood and sleeve cuffs.
    • Machine wash/air dry.

    ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"kenobi-trail-jacket-xl-purple-306","links":{},"stock":{"item_id":306,"product_id":306,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xl-purple-306.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"301","_score":1,"_source":{"id":301,"sku":"MJ04-L-Black","name":"Kenobi Trail Jacket-L-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

    \n

    • Black 1/4 zip pullover with royal zipper.
    • Adjustable hood and sleeve cuffs.
    • Machine wash/air dry.

    ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"kenobi-trail-jacket-l-black-301","links":{},"stock":{"item_id":301,"product_id":301,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-l-black-301.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"304","_score":1,"_source":{"id":304,"sku":"MJ04-XL-Black","name":"Kenobi Trail Jacket-XL-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

    \n

    • Black 1/4 zip pullover with royal zipper.
    • Adjustable hood and sleeve cuffs.
    • Machine wash/air dry.

    ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"kenobi-trail-jacket-xl-black-304","links":{},"stock":{"item_id":304,"product_id":304,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xl-black-304.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"305","_score":1,"_source":{"id":305,"sku":"MJ04-XL-Blue","name":"Kenobi Trail Jacket-XL-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

    \n

    • Black 1/4 zip pullover with royal zipper.
    • Adjustable hood and sleeve cuffs.
    • Machine wash/air dry.

    ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"kenobi-trail-jacket-xl-blue-305","links":{},"stock":{"item_id":305,"product_id":305,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xl-blue-305.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"280","_score":1,"_source":{"id":280,"sku":"MJ02-S-Orange","name":"Hyperion Elements Jacket-S-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

    \n

    • Lime 1/4 zip pullover.
    • Split pocket.
    • Thumb holes.
    • Machine wash/hang to dry.

    ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hyperion-elements-jacket-s-orange-280","links":{},"stock":{"item_id":280,"product_id":280,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-s-orange-280.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"288","_score":1,"_source":{"id":288,"sku":"MJ02-XL-Green","name":"Hyperion Elements Jacket-XL-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

    \n

    • Lime 1/4 zip pullover.
    • Split pocket.
    • Thumb holes.
    • Machine wash/hang to dry.

    ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hyperion-elements-jacket-xl-green-288","links":{},"stock":{"item_id":288,"product_id":288,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xl-green-288.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"277","_score":1,"_source":{"id":277,"sku":"MJ02-XS-Orange","name":"Hyperion Elements Jacket-XS-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

    \n

    • Lime 1/4 zip pullover.
    • Split pocket.
    • Thumb holes.
    • Machine wash/hang to dry.

    ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hyperion-elements-jacket-xs-orange-277","links":{},"stock":{"item_id":277,"product_id":277,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xs-orange-277.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"299","_score":1,"_source":{"id":299,"sku":"MJ04-M-Blue","name":"Kenobi Trail Jacket-M-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

    \n

    • Black 1/4 zip pullover with royal zipper.
    • Adjustable hood and sleeve cuffs.
    • Machine wash/air dry.

    ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"kenobi-trail-jacket-m-blue-299","links":{},"stock":{"item_id":299,"product_id":299,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-m-blue-299.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"286","_score":1,"_source":{"id":286,"sku":"MJ02-L-Orange","name":"Hyperion Elements Jacket-L-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

    \n

    • Lime 1/4 zip pullover.
    • Split pocket.
    • Thumb holes.
    • Machine wash/hang to dry.

    ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hyperion-elements-jacket-l-orange-286","links":{},"stock":{"item_id":286,"product_id":286,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-l-orange-286.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"333","_score":1,"_source":{"id":333,"sku":"MJ08-L-Blue","name":"Lando Gym Jacket-L-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

    \n

    • Gray polyester/spandex full zip jacket with orange lining.
    • Right pocket device storage.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lando-gym-jacket-l-blue-333","links":{},"stock":{"item_id":333,"product_id":333,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-l-blue-333.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"321","_score":1,"_source":{"id":321,"sku":"MJ07-XL-Red","name":"Orion Two-Tone Fitted Jacket-XL-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

    \n

    • Red full zip fleece with gray insets.
    • Double-knit construction.
    • Full athletic cut.
    • Set in sleeves.
    • Front pouch pocket.

    ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"orion-two-tone-fitted-jacket-xl-red-321","links":{},"stock":{"item_id":321,"product_id":321,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xl-red-321.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"330","_score":1,"_source":{"id":330,"sku":"MJ08-M-Blue","name":"Lando Gym Jacket-M-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

    \n

    • Gray polyester/spandex full zip jacket with orange lining.
    • Right pocket device storage.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lando-gym-jacket-m-blue-330","links":{},"stock":{"item_id":330,"product_id":330,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-m-blue-330.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"336","_score":1,"_source":{"id":336,"sku":"MJ08-XL-Blue","name":"Lando Gym Jacket-XL-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

    \n

    • Gray polyester/spandex full zip jacket with orange lining.
    • Right pocket device storage.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lando-gym-jacket-xl-blue-336","links":{},"stock":{"item_id":336,"product_id":336,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xl-blue-336.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"202","_score":1,"_source":{"id":202,"sku":"MH10-M-Black","name":"Mach Street Sweatshirt -M-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

    \n

    • Navy heather crewneck sweatshirt.
    • LumaTech™ moisture-wicking fabric.
    • Antimicrobial, odor-resistant.
    • Zip hand pockets.
    • Chafe-resistant flatlock seams.
    • Rib-knit cuffs and hem.

    ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mach-street-sweatshirt-m-black-202","links":{},"stock":{"item_id":202,"product_id":202,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-m-black-202.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"203","_score":1,"_source":{"id":203,"sku":"MH10-M-Blue","name":"Mach Street Sweatshirt -M-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

    \n

    • Navy heather crewneck sweatshirt.
    • LumaTech™ moisture-wicking fabric.
    • Antimicrobial, odor-resistant.
    • Zip hand pockets.
    • Chafe-resistant flatlock seams.
    • Rib-knit cuffs and hem.

    ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mach-street-sweatshirt-m-blue-203","links":{},"stock":{"item_id":203,"product_id":203,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-m-blue-203.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"342","_score":1,"_source":{"id":342,"sku":"MJ09-XS-Yellow","name":"Taurus Elements Shell-XS-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

    \n

    • Yellow 1/4 zip pullover.
    • Two chest pockets.
    • Standard fit.
    • Waterproof, breathable, seam sealed.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"taurus-elements-shell-xs-yellow-342","links":{},"stock":{"item_id":342,"product_id":342,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xs-yellow-342.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"352","_score":1,"_source":{"id":352,"sku":"MJ09-XL-Blue","name":"Taurus Elements Shell-XL-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

    \n

    • Yellow 1/4 zip pullover.
    • Two chest pockets.
    • Standard fit.
    • Waterproof, breathable, seam sealed.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"taurus-elements-shell-xl-blue-352","links":{},"stock":{"item_id":352,"product_id":352,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xl-blue-352.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"447","_score":1,"_source":{"id":447,"sku":"MS04-L-Red","name":"Gobi HeatTec® Tee-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

    \n

    • Orange micropolyester shirt.
    • HeatTec® wicking fabric.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gobi-heattec-and-reg-tee-l-red-447","links":{},"stock":{"item_id":447,"product_id":447,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-l-red-447.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"433","_score":1,"_source":{"id":433,"sku":"MJ12-XL-Blue","name":"Proteus Fitness Jackshirt-XL-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

    \n

    • 1/4 zip. Stand-up collar.
    • Machine wash/dry.
    • Quilted inner layer.

    ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"proteus-fitness-jackshirt-xl-blue-433","links":{},"stock":{"item_id":433,"product_id":433,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xl-blue-433.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"444","_score":1,"_source":{"id":444,"sku":"MS04-M-Red","name":"Gobi HeatTec® Tee-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

    \n

    • Orange micropolyester shirt.
    • HeatTec® wicking fabric.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gobi-heattec-and-reg-tee-m-red-444","links":{},"stock":{"item_id":444,"product_id":444,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-m-red-444.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"435","_score":1,"_source":{"id":435,"sku":"MJ12","name":"Proteus Fitness Jackshirt","attribute_set_id":9,"price":45,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":45,"description":"

    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

    \n

    • 1/4 zip. Stand-up collar.
    • Machine wash/dry.
    • Quilted inner layer.

    ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"proteus-fitness-jackshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,145,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[117,122,125,128],"pattern":"197","climate":[202,204,205,208],"slug":"proteus-fitness-jackshirt-435","links":{},"stock":{"item_id":435,"product_id":435,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ12-XS-Black","id":420,"status":1,"name":"Proteus Fitness Jackshirt-XS-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"49","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","url_key":"proteus-fitness-jackshirt-xs-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-XS-Blue","id":421,"status":1,"name":"Proteus Fitness Jackshirt-XS-Blue","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"50","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","url_key":"proteus-fitness-jackshirt-xs-blue","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-XS-Orange","id":422,"status":1,"name":"Proteus Fitness Jackshirt-XS-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"56","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","url_key":"proteus-fitness-jackshirt-xs-orange","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-S-Black","id":423,"status":1,"name":"Proteus Fitness Jackshirt-S-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"49","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","url_key":"proteus-fitness-jackshirt-s-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-S-Blue","id":424,"status":1,"name":"Proteus Fitness Jackshirt-S-Blue","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"50","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","url_key":"proteus-fitness-jackshirt-s-blue","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-S-Orange","id":425,"status":1,"name":"Proteus Fitness Jackshirt-S-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"56","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","url_key":"proteus-fitness-jackshirt-s-orange","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-M-Black","id":426,"status":1,"name":"Proteus Fitness Jackshirt-M-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"49","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","url_key":"proteus-fitness-jackshirt-m-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-M-Blue","id":427,"status":1,"name":"Proteus Fitness Jackshirt-M-Blue","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"50","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","url_key":"proteus-fitness-jackshirt-m-blue","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-M-Orange","id":428,"status":1,"name":"Proteus Fitness Jackshirt-M-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"56","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","url_key":"proteus-fitness-jackshirt-m-orange","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-L-Black","id":429,"status":1,"name":"Proteus Fitness Jackshirt-L-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"49","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","url_key":"proteus-fitness-jackshirt-l-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-L-Blue","id":430,"status":1,"name":"Proteus Fitness Jackshirt-L-Blue","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"50","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","url_key":"proteus-fitness-jackshirt-l-blue","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-L-Orange","id":431,"status":1,"name":"Proteus Fitness Jackshirt-L-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"56","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","url_key":"proteus-fitness-jackshirt-l-orange","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-XL-Black","id":432,"status":1,"name":"Proteus Fitness Jackshirt-XL-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"49","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","url_key":"proteus-fitness-jackshirt-xl-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-XL-Blue","id":433,"status":1,"name":"Proteus Fitness Jackshirt-XL-Blue","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"50","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","url_key":"proteus-fitness-jackshirt-xl-blue","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-XL-Orange","id":434,"status":1,"name":"Proteus Fitness Jackshirt-XL-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"56","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","url_key":"proteus-fitness-jackshirt-xl-orange","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001}],"configurable_options":[{"id":49,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":435,"attribute_code":"color"},{"id":48,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":435,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-435.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"355","_score":1,"_source":{"id":355,"sku":"MJ09","name":"Taurus Elements Shell","attribute_set_id":9,"price":65,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":65,"description":"

    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

    \n

    • Yellow 1/4 zip pullover.
    • Two chest pockets.
    • Standard fit.
    • Waterproof, breathable, seam sealed.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"taurus-elements-shell","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,149,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[118,120,123,126,128],"pattern":"197","climate":[204,206,207,208,210],"slug":"taurus-elements-shell-355","links":{},"stock":{"item_id":355,"product_id":355,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ09-XS-Blue","id":340,"status":1,"name":"Taurus Elements Shell-XS-Blue","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"50","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","url_key":"taurus-elements-shell-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ09-XS-White","id":341,"status":1,"name":"Taurus Elements Shell-XS-White","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"59","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","url_key":"taurus-elements-shell-xs-white","msrp_display_actual_price_type":"0"},{"sku":"MJ09-XS-Yellow","id":342,"status":1,"name":"Taurus Elements Shell-XS-Yellow","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"60","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","url_key":"taurus-elements-shell-xs-yellow","msrp_display_actual_price_type":"0"},{"sku":"MJ09-S-Blue","id":343,"status":1,"name":"Taurus Elements Shell-S-Blue","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"50","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","url_key":"taurus-elements-shell-s-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ09-S-White","id":344,"status":1,"name":"Taurus Elements Shell-S-White","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"59","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","url_key":"taurus-elements-shell-s-white","msrp_display_actual_price_type":"0"},{"sku":"MJ09-S-Yellow","id":345,"status":1,"name":"Taurus Elements Shell-S-Yellow","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"60","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","url_key":"taurus-elements-shell-s-yellow","msrp_display_actual_price_type":"0"},{"sku":"MJ09-M-Blue","id":346,"status":1,"name":"Taurus Elements Shell-M-Blue","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"50","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","url_key":"taurus-elements-shell-m-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ09-M-White","id":347,"status":1,"name":"Taurus Elements Shell-M-White","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"59","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","url_key":"taurus-elements-shell-m-white","msrp_display_actual_price_type":"0"},{"sku":"MJ09-M-Yellow","id":348,"status":1,"name":"Taurus Elements Shell-M-Yellow","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"60","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","url_key":"taurus-elements-shell-m-yellow","msrp_display_actual_price_type":"0"},{"sku":"MJ09-L-Blue","id":349,"status":1,"name":"Taurus Elements Shell-L-Blue","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"50","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","url_key":"taurus-elements-shell-l-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ09-L-White","id":350,"status":1,"name":"Taurus Elements Shell-L-White","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"59","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","url_key":"taurus-elements-shell-l-white","msrp_display_actual_price_type":"0"},{"sku":"MJ09-L-Yellow","id":351,"status":1,"name":"Taurus Elements Shell-L-Yellow","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"60","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","url_key":"taurus-elements-shell-l-yellow","msrp_display_actual_price_type":"0","final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001},{"sku":"MJ09-XL-Blue","id":352,"status":1,"name":"Taurus Elements Shell-XL-Blue","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"50","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","url_key":"taurus-elements-shell-xl-blue","msrp_display_actual_price_type":"0","final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001},{"sku":"MJ09-XL-White","id":353,"status":1,"name":"Taurus Elements Shell-XL-White","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"59","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","url_key":"taurus-elements-shell-xl-white","msrp_display_actual_price_type":"0","final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001},{"sku":"MJ09-XL-Yellow","id":354,"status":1,"name":"Taurus Elements Shell-XL-Yellow","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"60","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","url_key":"taurus-elements-shell-xl-yellow","msrp_display_actual_price_type":"0","final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001}],"configurable_options":[{"id":39,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":355,"attribute_code":"color"},{"id":38,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":355,"attribute_code":"size"}],"color_options":[50,59,60],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-355.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"420","_score":1,"_source":{"id":420,"sku":"MJ12-XS-Black","name":"Proteus Fitness Jackshirt-XS-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

    \n

    • 1/4 zip. Stand-up collar.
    • Machine wash/dry.
    • Quilted inner layer.

    ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"proteus-fitness-jackshirt-xs-black-420","links":{},"stock":{"item_id":420,"product_id":420,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xs-black-420.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"404","_score":1,"_source":{"id":404,"sku":"MJ03-XS-Black","name":"Montana Wind Jacket-XS-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

    \n

    Adjustable hood.
    Split pocket.
    Thumb holes.
    Machine wash/hang to dry.

    ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"montana-wind-jacket-xs-black-404","links":{},"stock":{"item_id":404,"product_id":404,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xs-black-404.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"418","_score":1,"_source":{"id":418,"sku":"MJ03-XL-Red","name":"Montana Wind Jacket-XL-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

    \n

    Adjustable hood.
    Split pocket.
    Thumb holes.
    Machine wash/hang to dry.

    ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"montana-wind-jacket-xl-red-418","links":{},"stock":{"item_id":418,"product_id":418,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xl-red-418.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"410","_score":1,"_source":{"id":410,"sku":"MJ03-M-Black","name":"Montana Wind Jacket-M-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

    \n

    Adjustable hood.
    Split pocket.
    Thumb holes.
    Machine wash/hang to dry.

    ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"montana-wind-jacket-m-black-410","links":{},"stock":{"item_id":410,"product_id":410,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-m-black-410.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"424","_score":1,"_source":{"id":424,"sku":"MJ12-S-Blue","name":"Proteus Fitness Jackshirt-S-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

    \n

    • 1/4 zip. Stand-up collar.
    • Machine wash/dry.
    • Quilted inner layer.

    ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"proteus-fitness-jackshirt-s-blue-424","links":{},"stock":{"item_id":424,"product_id":424,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-s-blue-424.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"421","_score":1,"_source":{"id":421,"sku":"MJ12-XS-Blue","name":"Proteus Fitness Jackshirt-XS-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

    \n

    • 1/4 zip. Stand-up collar.
    • Machine wash/dry.
    • Quilted inner layer.

    ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"proteus-fitness-jackshirt-xs-blue-421","links":{},"stock":{"item_id":421,"product_id":421,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xs-blue-421.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"414","_score":1,"_source":{"id":414,"sku":"MJ03-L-Green","name":"Montana Wind Jacket-L-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

    \n

    Adjustable hood.
    Split pocket.
    Thumb holes.
    Machine wash/hang to dry.

    ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"montana-wind-jacket-l-green-414","links":{},"stock":{"item_id":414,"product_id":414,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-l-green-414.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"422","_score":1,"_source":{"id":422,"sku":"MJ12-XS-Orange","name":"Proteus Fitness Jackshirt-XS-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

    \n

    • 1/4 zip. Stand-up collar.
    • Machine wash/dry.
    • Quilted inner layer.

    ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"proteus-fitness-jackshirt-xs-orange-422","links":{},"stock":{"item_id":422,"product_id":422,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xs-orange-422.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"436","_score":1,"_source":{"id":436,"sku":"MS04-XS-Black","name":"Gobi HeatTec® Tee-XS-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

    \n

    • Orange micropolyester shirt.
    • HeatTec® wicking fabric.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gobi-heattec-and-reg-tee-xs-black-436","links":{},"stock":{"item_id":436,"product_id":436,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xs-black-436.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"416","_score":1,"_source":{"id":416,"sku":"MJ03-XL-Black","name":"Montana Wind Jacket-XL-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

    \n

    Adjustable hood.
    Split pocket.
    Thumb holes.
    Machine wash/hang to dry.

    ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"montana-wind-jacket-xl-black-416","links":{},"stock":{"item_id":416,"product_id":416,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xl-black-416.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"391","_score":1,"_source":{"id":391,"sku":"MJ06-S-Blue","name":"Jupiter All-Weather Trainer -S-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

    \n

    • Relaxed fit.
    • Hand pockets.
    • Machine wash/dry.
    • Reflective safety trim.

    ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jupiter-all-weather-trainer-s-blue-391","links":{},"stock":{"item_id":391,"product_id":391,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-s-blue-391.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"393","_score":1,"_source":{"id":393,"sku":"MJ06-S-Purple","name":"Jupiter All-Weather Trainer -S-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

    \n

    • Relaxed fit.
    • Hand pockets.
    • Machine wash/dry.
    • Reflective safety trim.

    ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jupiter-all-weather-trainer-s-purple-393","links":{},"stock":{"item_id":393,"product_id":393,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-s-purple-393.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"376","_score":1,"_source":{"id":376,"sku":"MJ11-S-Green","name":"Typhon Performance Fleece-lined Jacket-S-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

    \n

    • Black full-zip flight jacket.
    • Cocona® wicking fiber.
    • Machine wash/dry.

    ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"typhon-performance-fleece-lined-jacket-s-green-376","links":{},"stock":{"item_id":376,"product_id":376,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-s-green-376.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"390","_score":1,"_source":{"id":390,"sku":"MJ06-XS-Purple","name":"Jupiter All-Weather Trainer -XS-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

    \n

    • Relaxed fit.
    • Hand pockets.
    • Machine wash/dry.
    • Reflective safety trim.

    ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jupiter-all-weather-trainer-xs-purple-390","links":{},"stock":{"item_id":390,"product_id":390,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xs-purple-390.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"381","_score":1,"_source":{"id":381,"sku":"MJ11-L-Black","name":"Typhon Performance Fleece-lined Jacket-L-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

    \n

    • Black full-zip flight jacket.
    • Cocona® wicking fiber.
    • Machine wash/dry.

    ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"typhon-performance-fleece-lined-jacket-l-black-381","links":{},"stock":{"item_id":381,"product_id":381,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-l-black-381.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"398","_score":1,"_source":{"id":398,"sku":"MJ06-L-Green","name":"Jupiter All-Weather Trainer -L-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

    \n

    • Relaxed fit.
    • Hand pockets.
    • Machine wash/dry.
    • Reflective safety trim.

    ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jupiter-all-weather-trainer-l-green-398","links":{},"stock":{"item_id":398,"product_id":398,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-l-green-398.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"392","_score":1,"_source":{"id":392,"sku":"MJ06-S-Green","name":"Jupiter All-Weather Trainer -S-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

    \n

    • Relaxed fit.
    • Hand pockets.
    • Machine wash/dry.
    • Reflective safety trim.

    ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jupiter-all-weather-trainer-s-green-392","links":{},"stock":{"item_id":392,"product_id":392,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-s-green-392.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"399","_score":1,"_source":{"id":399,"sku":"MJ06-L-Purple","name":"Jupiter All-Weather Trainer -L-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

    \n

    • Relaxed fit.
    • Hand pockets.
    • Machine wash/dry.
    • Reflective safety trim.

    ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jupiter-all-weather-trainer-l-purple-399","links":{},"stock":{"item_id":399,"product_id":399,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-l-purple-399.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"466","_score":1,"_source":{"id":466,"sku":"MS05-XL-Purple","name":"Helios EverCool™ Tee-XL-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

    \n

    • Teal quick dry tee.
    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helios-evercool-and-trade-tee-xl-purple-466","links":{},"stock":{"item_id":466,"product_id":466,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xl-purple-466.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"455","_score":1,"_source":{"id":455,"sku":"MS05-S-Black","name":"Helios EverCool™ Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

    \n

    • Teal quick dry tee.
    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helios-evercool-and-trade-tee-s-black-455","links":{},"stock":{"item_id":455,"product_id":455,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-s-black-455.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"456","_score":1,"_source":{"id":456,"sku":"MS05-S-Blue","name":"Helios EverCool™ Tee-S-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

    \n

    • Teal quick dry tee.
    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helios-evercool-and-trade-tee-s-blue-456","links":{},"stock":{"item_id":456,"product_id":456,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-s-blue-456.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"462","_score":1,"_source":{"id":462,"sku":"MS05-L-Blue","name":"Helios EverCool™ Tee-L-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

    \n

    • Teal quick dry tee.
    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helios-evercool-and-trade-tee-l-blue-462","links":{},"stock":{"item_id":462,"product_id":462,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-l-blue-462.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"465","_score":1,"_source":{"id":465,"sku":"MS05-XL-Blue","name":"Helios EverCool™ Tee-XL-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

    \n

    • Teal quick dry tee.
    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helios-evercool-and-trade-tee-xl-blue-465","links":{},"stock":{"item_id":465,"product_id":465,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xl-blue-465.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"477","_score":1,"_source":{"id":477,"sku":"MS09-L-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-L-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

    \n

    • Royal polyester tee with black accents.
    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-crew-neck-l-black-477","links":{},"stock":{"item_id":477,"product_id":477,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-l-black-477.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"481","_score":1,"_source":{"id":481,"sku":"MS09-XL-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

    \n

    • Royal polyester tee with black accents.
    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-crew-neck-xl-blue-481","links":{},"stock":{"item_id":481,"product_id":481,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xl-blue-481.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"484","_score":1,"_source":{"id":484,"sku":"MS11-XS-Blue","name":"Atomic Endurance Running Tee (V-neck)-XS-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

    \n

    • Lime heathered v-neck tee.
    • Ultra-lightweight.
    • Moisture-wicking Cocona® fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-v-neck-xs-blue-484","links":{},"stock":{"item_id":484,"product_id":484,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xs-blue-484.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"500","_score":1,"_source":{"id":500,"sku":"MS12-XS-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

    \n

    • Red polyester tee.
    • Crew neckline.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-crew-neck-xs-black-500","links":{},"stock":{"item_id":500,"product_id":500,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xs-black-500.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"375","_score":1,"_source":{"id":375,"sku":"MJ11-S-Black","name":"Typhon Performance Fleece-lined Jacket-S-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

    \n

    • Black full-zip flight jacket.
    • Cocona® wicking fiber.
    • Machine wash/dry.

    ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"typhon-performance-fleece-lined-jacket-s-black-375","links":{},"stock":{"item_id":375,"product_id":375,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-s-black-375.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"379","_score":1,"_source":{"id":379,"sku":"MJ11-M-Green","name":"Typhon Performance Fleece-lined Jacket-M-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

    \n

    • Black full-zip flight jacket.
    • Cocona® wicking fiber.
    • Machine wash/dry.

    ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"typhon-performance-fleece-lined-jacket-m-green-379","links":{},"stock":{"item_id":379,"product_id":379,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-m-green-379.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"377","_score":1,"_source":{"id":377,"sku":"MJ11-S-Red","name":"Typhon Performance Fleece-lined Jacket-S-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

    \n

    • Black full-zip flight jacket.
    • Cocona® wicking fiber.
    • Machine wash/dry.

    ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"typhon-performance-fleece-lined-jacket-s-red-377","links":{},"stock":{"item_id":377,"product_id":377,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-s-red-377.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"454","_score":1,"_source":{"id":454,"sku":"MS05-XS-Purple","name":"Helios EverCool™ Tee-XS-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

    \n

    • Teal quick dry tee.
    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helios-evercool-and-trade-tee-xs-purple-454","links":{},"stock":{"item_id":454,"product_id":454,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xs-purple-454.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"496","_score":1,"_source":{"id":496,"sku":"MS11-XL-Blue","name":"Atomic Endurance Running Tee (V-neck)-XL-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

    \n

    • Lime heathered v-neck tee.
    • Ultra-lightweight.
    • Moisture-wicking Cocona® fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-v-neck-xl-blue-496","links":{},"stock":{"item_id":496,"product_id":496,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xl-blue-496.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"563","_score":1,"_source":{"id":563,"sku":"MS01","name":"Aero Daily Fitness Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":24,"description":"

    Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

    \n

    Relaxed fit.
    Short-Sleeve.
    Machine wash/dry.

    ","image":"/m/s/ms01-blue_main.jpg","small_image":"/m/s/ms01-blue_main.jpg","thumbnail":"/m/s/ms01-blue_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"aero-daily-fitness-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"aero-daily-fitness-tee-563","links":{},"stock":{"item_id":563,"product_id":563,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS01-XS-Black","id":548,"status":1,"name":"Aero Daily Fitness Tee-XS-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","url_key":"aero-daily-fitness-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MS01-XS-Brown","id":549,"status":1,"name":"Aero Daily Fitness Tee-XS-Brown","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"51","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","url_key":"aero-daily-fitness-tee-xs-brown","msrp_display_actual_price_type":"0"},{"sku":"MS01-XS-Yellow","id":550,"status":1,"name":"Aero Daily Fitness Tee-XS-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"60","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","url_key":"aero-daily-fitness-tee-xs-yellow","msrp_display_actual_price_type":"0"},{"sku":"MS01-S-Black","id":551,"status":1,"name":"Aero Daily Fitness Tee-S-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","url_key":"aero-daily-fitness-tee-s-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS01-S-Brown","id":552,"status":1,"name":"Aero Daily Fitness Tee-S-Brown","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"51","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","url_key":"aero-daily-fitness-tee-s-brown","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS01-S-Yellow","id":553,"status":1,"name":"Aero Daily Fitness Tee-S-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"60","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","url_key":"aero-daily-fitness-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS01-M-Black","id":554,"status":1,"name":"Aero Daily Fitness Tee-M-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","url_key":"aero-daily-fitness-tee-m-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS01-M-Brown","id":555,"status":1,"name":"Aero Daily Fitness Tee-M-Brown","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"51","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","url_key":"aero-daily-fitness-tee-m-brown","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS01-M-Yellow","id":556,"status":1,"name":"Aero Daily Fitness Tee-M-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"60","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","url_key":"aero-daily-fitness-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS01-L-Black","id":557,"status":1,"name":"Aero Daily Fitness Tee-L-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","url_key":"aero-daily-fitness-tee-l-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS01-L-Brown","id":558,"status":1,"name":"Aero Daily Fitness Tee-L-Brown","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"51","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","url_key":"aero-daily-fitness-tee-l-brown","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS01-L-Yellow","id":559,"status":1,"name":"Aero Daily Fitness Tee-L-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"60","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","url_key":"aero-daily-fitness-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS01-XL-Black","id":560,"status":1,"name":"Aero Daily Fitness Tee-XL-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","url_key":"aero-daily-fitness-tee-xl-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS01-XL-Brown","id":561,"status":1,"name":"Aero Daily Fitness Tee-XL-Brown","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"51","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","url_key":"aero-daily-fitness-tee-xl-brown","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS01-XL-Yellow","id":562,"status":1,"name":"Aero Daily Fitness Tee-XL-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"60","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","url_key":"aero-daily-fitness-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001}],"configurable_options":[{"id":65,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":51,"label":"Brown"},{"value_index":60,"label":"Yellow"}],"product_id":563,"attribute_code":"color"},{"id":64,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":563,"attribute_code":"size"}],"color_options":[49,51,60],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-563.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"544","_score":1,"_source":{"id":544,"sku":"MS06-XL-Blue","name":"Zoltan Gym Tee-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

    \n

    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoltan-gym-tee-xl-blue-544","links":{},"stock":{"item_id":544,"product_id":544,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xl-blue-544.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"516","_score":1,"_source":{"id":516,"sku":"MS03-XS-Gray","name":"Balboa Persistence Tee-XS-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

    \n

    • Crew neckline.
    • Semi-fitted.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"balboa-persistence-tee-xs-gray-516","links":{},"stock":{"item_id":516,"product_id":516,"stock_id":1,"qty":36,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xs-gray-516.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"540","_score":1,"_source":{"id":540,"sku":"MS06-M-Yellow","name":"Zoltan Gym Tee-M-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

    \n

    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoltan-gym-tee-m-yellow-540","links":{},"stock":{"item_id":540,"product_id":540,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-m-yellow-540.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"548","_score":1,"_source":{"id":548,"sku":"MS01-XS-Black","name":"Aero Daily Fitness Tee-XS-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

    \n

    Relaxed fit.
    Short-Sleeve.
    Machine wash/dry.

    ","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"aero-daily-fitness-tee-xs-black-548","links":{},"stock":{"item_id":548,"product_id":548,"stock_id":1,"qty":70,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xs-black-548.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"511","_score":1,"_source":{"id":511,"sku":"MS12-L-Red","name":"Atomic Endurance Running Tee (Crew-Neck)-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

    \n

    • Red polyester tee.
    • Crew neckline.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-crew-neck-l-red-511","links":{},"stock":{"item_id":511,"product_id":511,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-l-red-511.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"538","_score":1,"_source":{"id":538,"sku":"MS06-M-Blue","name":"Zoltan Gym Tee-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

    \n

    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoltan-gym-tee-m-blue-538","links":{},"stock":{"item_id":538,"product_id":538,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-m-blue-538.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"564","_score":1,"_source":{"id":564,"sku":"MS02-XS-Black","name":"Ryker LumaTech™ Tee (V-neck)-XS-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

    \n

    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-v-neck-xs-black-564","links":{},"stock":{"item_id":564,"product_id":564,"stock_id":1,"qty":63,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xs-black-564.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"553","_score":1,"_source":{"id":553,"sku":"MS01-S-Yellow","name":"Aero Daily Fitness Tee-S-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

    \n

    Relaxed fit.
    Short-Sleeve.
    Machine wash/dry.

    ","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"aero-daily-fitness-tee-s-yellow-553","links":{},"stock":{"item_id":553,"product_id":553,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-s-yellow-553.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"561","_score":1,"_source":{"id":561,"sku":"MS01-XL-Brown","name":"Aero Daily Fitness Tee-XL-Brown","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

    \n

    Relaxed fit.
    Short-Sleeve.
    Machine wash/dry.

    ","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xl-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"aero-daily-fitness-tee-xl-brown-561","links":{},"stock":{"item_id":561,"product_id":561,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms01-brown_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xl-brown-561.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"569","_score":1,"_source":{"id":569,"sku":"MS02-S-Gray","name":"Ryker LumaTech™ Tee (V-neck)-S-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

    \n

    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-v-neck-s-gray-569","links":{},"stock":{"item_id":569,"product_id":569,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-s-gray-569.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"525","_score":1,"_source":{"id":525,"sku":"MS03-L-Gray","name":"Balboa Persistence Tee-L-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

    \n

    • Crew neckline.
    • Semi-fitted.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"balboa-persistence-tee-l-gray-525","links":{},"stock":{"item_id":525,"product_id":525,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-l-gray-525.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"546","_score":1,"_source":{"id":546,"sku":"MS06-XL-Yellow","name":"Zoltan Gym Tee-XL-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

    \n

    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoltan-gym-tee-xl-yellow-546","links":{},"stock":{"item_id":546,"product_id":546,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xl-yellow-546.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"549","_score":1,"_source":{"id":549,"sku":"MS01-XS-Brown","name":"Aero Daily Fitness Tee-XS-Brown","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

    \n

    Relaxed fit.
    Short-Sleeve.
    Machine wash/dry.

    ","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xs-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"aero-daily-fitness-tee-xs-brown-549","links":{},"stock":{"item_id":549,"product_id":549,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms01-brown_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xs-brown-549.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"509","_score":1,"_source":{"id":509,"sku":"MS12-L-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-L-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

    \n

    • Red polyester tee.
    • Crew neckline.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-crew-neck-l-black-509","links":{},"stock":{"item_id":509,"product_id":509,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-l-black-509.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"532","_score":1,"_source":{"id":532,"sku":"MS06-XS-Blue","name":"Zoltan Gym Tee-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

    \n

    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoltan-gym-tee-xs-blue-532","links":{},"stock":{"item_id":532,"product_id":532,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xs-blue-532.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"527","_score":1,"_source":{"id":527,"sku":"MS03-L-Orange","name":"Balboa Persistence Tee-L-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

    \n

    • Crew neckline.
    • Semi-fitted.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"balboa-persistence-tee-l-orange-527","links":{},"stock":{"item_id":527,"product_id":527,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-l-orange-527.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"602","_score":1,"_source":{"id":602,"sku":"MS07-M-Black","name":"Deion Long-Sleeve EverCool™ Tee-M-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

    \n

    • Fitted.
    • Contrast inner neck tape.
    • Machine wash/dry.

    ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"deion-long-sleeve-evercool-and-trade-tee-m-black-602","links":{},"stock":{"item_id":602,"product_id":602,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-m-black-602.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"609","_score":1,"_source":{"id":609,"sku":"MS07-XL-Green","name":"Deion Long-Sleeve EverCool™ Tee-XL-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

    \n

    • Fitted.
    • Contrast inner neck tape.
    • Machine wash/dry.

    ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"deion-long-sleeve-evercool-and-trade-tee-xl-green-609","links":{},"stock":{"item_id":609,"product_id":609,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xl-green-609.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"616","_score":1,"_source":{"id":616,"sku":"MS08-S-Blue","name":"Strike Endurance Tee-S-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

    \n

    • Loose fit.
    • Ribbed cuffs/collar.
    • Machine wash/dry.

    ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"strike-endurance-tee-s-blue-616","links":{},"stock":{"item_id":616,"product_id":616,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-s-blue-616.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"592","_score":1,"_source":{"id":592,"sku":"MS10-XL-Black","name":"Logan HeatTec® Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

    \n

    • Semi-fitted.
    • Crew neckline.
    • Machine wash/tumble dry.

    ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"logan-heattec-and-reg-tee-xl-black-592","links":{},"stock":{"item_id":592,"product_id":592,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xl-black-592.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"583","_score":1,"_source":{"id":583,"sku":"MS10-S-Black","name":"Logan HeatTec® Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

    \n

    • Semi-fitted.
    • Crew neckline.
    • Machine wash/tumble dry.

    ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"logan-heattec-and-reg-tee-s-black-583","links":{},"stock":{"item_id":583,"product_id":583,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-s-black-583.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"598","_score":1,"_source":{"id":598,"sku":"MS07-XS-White","name":"Deion Long-Sleeve EverCool™ Tee-XS-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

    \n

    • Fitted.
    • Contrast inner neck tape.
    • Machine wash/dry.

    ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"deion-long-sleeve-evercool-and-trade-tee-xs-white-598","links":{},"stock":{"item_id":598,"product_id":598,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xs-white-598.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"562","_score":1,"_source":{"id":562,"sku":"MS01-XL-Yellow","name":"Aero Daily Fitness Tee-XL-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

    \n

    Relaxed fit.
    Short-Sleeve.
    Machine wash/dry.

    ","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"aero-daily-fitness-tee-xl-yellow-562","links":{},"stock":{"item_id":562,"product_id":562,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xl-yellow-562.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"556","_score":1,"_source":{"id":556,"sku":"MS01-M-Yellow","name":"Aero Daily Fitness Tee-M-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

    \n

    Relaxed fit.
    Short-Sleeve.
    Machine wash/dry.

    ","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"aero-daily-fitness-tee-m-yellow-556","links":{},"stock":{"item_id":556,"product_id":556,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-m-yellow-556.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"503","_score":1,"_source":{"id":503,"sku":"MS12-S-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-S-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

    \n

    • Red polyester tee.
    • Crew neckline.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-crew-neck-s-black-503","links":{},"stock":{"item_id":503,"product_id":503,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-s-black-503.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"747","_score":1,"_source":{"id":747,"sku":"MP02-33-Gray","name":"Viktor LumaTech™ Pant-33-Gray","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001,"description":"

    You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

    \n

    • Dark gray polyester/spandex straight leg pants.
    • Elastic waistband and internal drawstring.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","color":"52","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"viktor-lumatech-and-trade-pant-33-gray-747","links":{},"stock":{"item_id":747,"product_id":747,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-33-gray-747.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"750","_score":1,"_source":{"id":750,"sku":"MP02-34-Gray","name":"Viktor LumaTech™ Pant-34-Gray","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001,"description":"

    You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

    \n

    • Dark gray polyester/spandex straight leg pants.
    • Elastic waistband and internal drawstring.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","color":"52","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"viktor-lumatech-and-trade-pant-34-gray-750","links":{},"stock":{"item_id":750,"product_id":750,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-34-gray-750.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"744","_score":1,"_source":{"id":744,"sku":"MP02-32-Gray","name":"Viktor LumaTech™ Pant-32-Gray","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001,"description":"

    You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

    \n

    • Dark gray polyester/spandex straight leg pants.
    • Elastic waistband and internal drawstring.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","color":"52","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"viktor-lumatech-and-trade-pant-32-gray-744","links":{},"stock":{"item_id":744,"product_id":744,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-32-gray-744.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"748","_score":1,"_source":{"id":748,"sku":"MP02-33-Red","name":"Viktor LumaTech™ Pant-33-Red","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001,"description":"

    You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

    \n

    • Dark gray polyester/spandex straight leg pants.
    • Elastic waistband and internal drawstring.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","color":"58","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"viktor-lumatech-and-trade-pant-33-red-748","links":{},"stock":{"item_id":748,"product_id":748,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-33-red-748.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"711","_score":1,"_source":{"id":711,"sku":"MT09","name":"Sinbad Fitness Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

    Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

    \n

    • Teal polyester tank.
    • Premium fit tank top.
    • Ultra lightweight.
    • Naturally odor-resistant.

    ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sinbad-fitness-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"sinbad-fitness-tank-711","links":{},"stock":{"item_id":711,"product_id":711,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT09-XS-Blue","id":706,"status":1,"name":"Sinbad Fitness Tank-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"50","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","url_key":"sinbad-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT09-S-Blue","id":707,"status":1,"name":"Sinbad Fitness Tank-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"50","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","url_key":"sinbad-fitness-tank-s-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT09-M-Blue","id":708,"status":1,"name":"Sinbad Fitness Tank-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"50","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","url_key":"sinbad-fitness-tank-m-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT09-L-Blue","id":709,"status":1,"name":"Sinbad Fitness Tank-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"50","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","url_key":"sinbad-fitness-tank-l-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT09-XL-Blue","id":710,"status":1,"name":"Sinbad Fitness Tank-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"50","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","url_key":"sinbad-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":91,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"}],"product_id":711,"attribute_code":"color"},{"id":90,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":711,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-711.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"723","_score":1,"_source":{"id":723,"sku":"MT11","name":"Atlas Fitness Tank","attribute_set_id":9,"price":18,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":18,"description":"

    From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

    \n

    • Teal scoop neck cotton tank.
    • Triblend, soft fabric.
    • Relaxed fit.

    ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"atlas-fitness-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"atlas-fitness-tank-723","links":{},"stock":{"item_id":723,"product_id":723,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT11-XS-Blue","id":718,"status":1,"name":"Atlas Fitness Tank-XS-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"167","color":"50","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","url_key":"atlas-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001},{"sku":"MT11-S-Blue","id":719,"status":1,"name":"Atlas Fitness Tank-S-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"168","color":"50","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","url_key":"atlas-fitness-tank-s-blue","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001},{"sku":"MT11-M-Blue","id":720,"status":1,"name":"Atlas Fitness Tank-M-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"169","color":"50","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","url_key":"atlas-fitness-tank-m-blue","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001},{"sku":"MT11-L-Blue","id":721,"status":1,"name":"Atlas Fitness Tank-L-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"170","color":"50","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","url_key":"atlas-fitness-tank-l-blue","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001},{"sku":"MT11-XL-Blue","id":722,"status":1,"name":"Atlas Fitness Tank-XL-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"171","color":"50","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","url_key":"atlas-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001}],"configurable_options":[{"id":95,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"}],"product_id":723,"attribute_code":"color"},{"id":94,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":723,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-723.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"627","_score":1,"_source":{"id":627,"sku":"MS08","name":"Strike Endurance Tee","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":39,"description":"

    While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

    \n

    • Loose fit.
    • Ribbed cuffs/collar.
    • Machine wash/dry.

    ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"strike-endurance-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[202,204,205,209],"slug":"strike-endurance-tee-627","links":{},"stock":{"item_id":627,"product_id":627,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS08-XS-Black","id":612,"status":1,"name":"Strike Endurance Tee-XS-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","url_key":"strike-endurance-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MS08-XS-Blue","id":613,"status":1,"name":"Strike Endurance Tee-XS-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","url_key":"strike-endurance-tee-xs-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-XS-Red","id":614,"status":1,"name":"Strike Endurance Tee-XS-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"58","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","url_key":"strike-endurance-tee-xs-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-S-Black","id":615,"status":1,"name":"Strike Endurance Tee-S-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","url_key":"strike-endurance-tee-s-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-S-Blue","id":616,"status":1,"name":"Strike Endurance Tee-S-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","url_key":"strike-endurance-tee-s-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-S-Red","id":617,"status":1,"name":"Strike Endurance Tee-S-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"58","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","url_key":"strike-endurance-tee-s-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-M-Black","id":618,"status":1,"name":"Strike Endurance Tee-M-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","url_key":"strike-endurance-tee-m-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-M-Blue","id":619,"status":1,"name":"Strike Endurance Tee-M-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","url_key":"strike-endurance-tee-m-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-M-Red","id":620,"status":1,"name":"Strike Endurance Tee-M-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"58","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","url_key":"strike-endurance-tee-m-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-L-Black","id":621,"status":1,"name":"Strike Endurance Tee-L-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","url_key":"strike-endurance-tee-l-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-L-Blue","id":622,"status":1,"name":"Strike Endurance Tee-L-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","url_key":"strike-endurance-tee-l-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-L-Red","id":623,"status":1,"name":"Strike Endurance Tee-L-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"58","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","url_key":"strike-endurance-tee-l-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-XL-Black","id":624,"status":1,"name":"Strike Endurance Tee-XL-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","url_key":"strike-endurance-tee-xl-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-XL-Blue","id":625,"status":1,"name":"Strike Endurance Tee-XL-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","url_key":"strike-endurance-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-XL-Red","id":626,"status":1,"name":"Strike Endurance Tee-XL-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"58","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","url_key":"strike-endurance-tee-xl-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001}],"configurable_options":[{"id":73,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":627,"attribute_code":"color"},{"id":72,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":627,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-627.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"655","_score":1,"_source":{"id":655,"sku":"MT02-L-White","name":"Tristan Endurance Tank-L-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

    \n

    • White performance tank.
    • Stylish contrast stitching.
    • Relaxed fit.
    • Ribbed crew neckline.
    • Machine wash/dry.

    ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tristan-endurance-tank-l-white-655","links":{},"stock":{"item_id":655,"product_id":655,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-l-white-655.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"662","_score":1,"_source":{"id":662,"sku":"MT03-XS-Yellow","name":"Primo Endurance Tank-XS-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

    \n

    • Red heather tank with gray pocket.
    • Chafe-resistant flatlock seams.
    • Relaxed fit.
    • Contrast topstitching.
    • Machine wash/dry.

    ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"primo-endurance-tank-xs-yellow-662","links":{},"stock":{"item_id":662,"product_id":662,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xs-yellow-662.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"654","_score":1,"_source":{"id":654,"sku":"MT02-L-Red","name":"Tristan Endurance Tank-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

    \n

    • White performance tank.
    • Stylish contrast stitching.
    • Relaxed fit.
    • Ribbed crew neckline.
    • Machine wash/dry.

    ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tristan-endurance-tank-l-red-654","links":{},"stock":{"item_id":654,"product_id":654,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-l-red-654.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"667","_score":1,"_source":{"id":667,"sku":"MT03-M-Red","name":"Primo Endurance Tank-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

    \n

    • Red heather tank with gray pocket.
    • Chafe-resistant flatlock seams.
    • Relaxed fit.
    • Contrast topstitching.
    • Machine wash/dry.

    ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"primo-endurance-tank-m-red-667","links":{},"stock":{"item_id":667,"product_id":667,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-m-red-667.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"663","_score":1,"_source":{"id":663,"sku":"MT03-S-Blue","name":"Primo Endurance Tank-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

    \n

    • Red heather tank with gray pocket.
    • Chafe-resistant flatlock seams.
    • Relaxed fit.
    • Contrast topstitching.
    • Machine wash/dry.

    ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"primo-endurance-tank-s-blue-663","links":{},"stock":{"item_id":663,"product_id":663,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-s-blue-663.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"677","_score":1,"_source":{"id":677,"sku":"MT04-S-Blue","name":"Helios Endurance Tank-S-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

    \n

    • Blue heather tank with gray pocket.
    • Contrast sides and back inserts.
    • Self-fabric binding at neck and armholes.
    • Machine wash/dry.

    ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helios-endurance-tank-s-blue-677","links":{},"stock":{"item_id":677,"product_id":677,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-s-blue-677.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"678","_score":1,"_source":{"id":678,"sku":"MT04-M-Blue","name":"Helios Endurance Tank-M-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

    \n

    • Blue heather tank with gray pocket.
    • Contrast sides and back inserts.
    • Self-fabric binding at neck and armholes.
    • Machine wash/dry.

    ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helios-endurance-tank-m-blue-678","links":{},"stock":{"item_id":678,"product_id":678,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-m-blue-678.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"668","_score":1,"_source":{"id":668,"sku":"MT03-M-Yellow","name":"Primo Endurance Tank-M-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

    \n

    • Red heather tank with gray pocket.
    • Chafe-resistant flatlock seams.
    • Relaxed fit.
    • Contrast topstitching.
    • Machine wash/dry.

    ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"primo-endurance-tank-m-yellow-668","links":{},"stock":{"item_id":668,"product_id":668,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-m-yellow-668.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"674","_score":1,"_source":{"id":674,"sku":"MT03-XL-Yellow","name":"Primo Endurance Tank-XL-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

    \n

    • Red heather tank with gray pocket.
    • Chafe-resistant flatlock seams.
    • Relaxed fit.
    • Contrast topstitching.
    • Machine wash/dry.

    ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"primo-endurance-tank-xl-yellow-674","links":{},"stock":{"item_id":674,"product_id":674,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xl-yellow-674.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"689","_score":1,"_source":{"id":689,"sku":"MT06-S-Black","name":"Vulcan Weightlifting Tank-S-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

    \n

    • Black polyester spandex tank.
    • 100% polyester.
    • Freedom of movement.
    • No-chafe seams.

    ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"vulcan-weightlifting-tank-s-black-689","links":{},"stock":{"item_id":689,"product_id":689,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-s-black-689.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"707","_score":1,"_source":{"id":707,"sku":"MT09-S-Blue","name":"Sinbad Fitness Tank-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

    \n

    • Teal polyester tank.
    • Premium fit tank top.
    • Ultra lightweight.
    • Naturally odor-resistant.

    ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"sinbad-fitness-tank-s-blue-707","links":{},"stock":{"item_id":707,"product_id":707,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-s-blue-707.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"714","_score":1,"_source":{"id":714,"sku":"MT10-M-Yellow","name":"Tiberius Gym Tank-M-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

    Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

    \n

    • Yellow scoop neck cotton tank.
    • Comfortable, relaxed fit.
    • 55% Hemp / 45% Organic Cotton.
    • Pesticide- and herbicide-free hemp.

    ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tiberius-gym-tank-m-yellow-714","links":{},"stock":{"item_id":714,"product_id":714,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-m-yellow-714.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"718","_score":1,"_source":{"id":718,"sku":"MT11-XS-Blue","name":"Atlas Fitness Tank-XS-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

    From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

    \n

    • Teal scoop neck cotton tank.
    • Triblend, soft fabric.
    • Relaxed fit.

    ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atlas-fitness-tank-xs-blue-718","links":{},"stock":{"item_id":718,"product_id":718,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-xs-blue-718.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"727","_score":1,"_source":{"id":727,"sku":"MT12-L-Blue","name":"Cassius Sparring Tank-L-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

    Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

    \n

    • Royal crewneck cotton tank.
    • Contrast stitching.
    • Self fabric binding at neckline.
    • Slim fit.
    • 96% Merino / 4% LYCRA®.

    ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"cassius-sparring-tank-l-blue-727","links":{},"stock":{"item_id":727,"product_id":727,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-l-blue-727.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"720","_score":1,"_source":{"id":720,"sku":"MT11-M-Blue","name":"Atlas Fitness Tank-M-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

    From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

    \n

    • Teal scoop neck cotton tank.
    • Triblend, soft fabric.
    • Relaxed fit.

    ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atlas-fitness-tank-m-blue-720","links":{},"stock":{"item_id":720,"product_id":720,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-m-blue-720.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"725","_score":1,"_source":{"id":725,"sku":"MT12-S-Blue","name":"Cassius Sparring Tank-S-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

    Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

    \n

    • Royal crewneck cotton tank.
    • Contrast stitching.
    • Self fabric binding at neckline.
    • Slim fit.
    • 96% Merino / 4% LYCRA®.

    ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"cassius-sparring-tank-s-blue-725","links":{},"stock":{"item_id":725,"product_id":725,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-s-blue-725.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"724","_score":1,"_source":{"id":724,"sku":"MT12-XS-Blue","name":"Cassius Sparring Tank-XS-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

    Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

    \n

    • Royal crewneck cotton tank.
    • Contrast stitching.
    • Self fabric binding at neckline.
    • Slim fit.
    • 96% Merino / 4% LYCRA®.

    ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"cassius-sparring-tank-xs-blue-724","links":{},"stock":{"item_id":724,"product_id":724,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-xs-blue-724.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"740","_score":1,"_source":{"id":740,"sku":"MP01-36-Gray","name":"Caesar Warm-Up Pant-36-Gray","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

    \n

    • Light gray heather knit straight leg pants.
    • Relaxed fit.
    • Inseam: 32\".
    • Machine wash/dry.
    • CoolTech™ wicking fabric.

    ","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"caesar-warm-up-pant-36-gray-740","links":{},"stock":{"item_id":740,"product_id":740,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-36-gray-740.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"682","_score":1,"_source":{"id":682,"sku":"MT05-XS-Blue","name":"Rocco Gym Tank-XS-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

    \n

    • Light blue heather gray tank.
    • Quick-drying, moisture-wicking.
    • 4-way stretch construction.
    • Flatlock seams prevent chafing.
    • Mesh at back for breathability.
    • 100% Polyester.
    • UPF 50 protection.

    ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"rocco-gym-tank-xs-blue-682","links":{},"stock":{"item_id":682,"product_id":682,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-xs-blue-682.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"685","_score":1,"_source":{"id":685,"sku":"MT05-L-Blue","name":"Rocco Gym Tank-L-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

    \n

    • Light blue heather gray tank.
    • Quick-drying, moisture-wicking.
    • 4-way stretch construction.
    • Flatlock seams prevent chafing.
    • Mesh at back for breathability.
    • 100% Polyester.
    • UPF 50 protection.

    ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"rocco-gym-tank-l-blue-685","links":{},"stock":{"item_id":685,"product_id":685,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-l-blue-685.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"695","_score":1,"_source":{"id":695,"sku":"MT07-S-Gray","name":"Argus All-Weather Tank-S-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

    The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

    \n

    • Dark gray polyester spandex tank.
    • Reflective details for nighttime visibility.
    • Stash pocket.
    • Anti-chafe flatlock seams.

    ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"argus-all-weather-tank-s-gray-695","links":{},"stock":{"item_id":695,"product_id":695,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-s-gray-695.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"690","_score":1,"_source":{"id":690,"sku":"MT06-M-Black","name":"Vulcan Weightlifting Tank-M-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

    \n

    • Black polyester spandex tank.
    • 100% polyester.
    • Freedom of movement.
    • No-chafe seams.

    ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"vulcan-weightlifting-tank-m-black-690","links":{},"stock":{"item_id":690,"product_id":690,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-m-black-690.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"620","_score":1,"_source":{"id":620,"sku":"MS08-M-Red","name":"Strike Endurance Tee-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

    \n

    • Loose fit.
    • Ribbed cuffs/collar.
    • Machine wash/dry.

    ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"strike-endurance-tee-m-red-620","links":{},"stock":{"item_id":620,"product_id":620,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-m-red-620.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"625","_score":1,"_source":{"id":625,"sku":"MS08-XL-Blue","name":"Strike Endurance Tee-XL-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

    \n

    • Loose fit.
    • Ribbed cuffs/collar.
    • Machine wash/dry.

    ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"strike-endurance-tee-xl-blue-625","links":{},"stock":{"item_id":625,"product_id":625,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xl-blue-625.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"648","_score":1,"_source":{"id":648,"sku":"MT02-S-Red","name":"Tristan Endurance Tank-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

    \n

    • White performance tank.
    • Stylish contrast stitching.
    • Relaxed fit.
    • Ribbed crew neckline.
    • Machine wash/dry.

    ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tristan-endurance-tank-s-red-648","links":{},"stock":{"item_id":648,"product_id":648,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-s-red-648.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"638","_score":1,"_source":{"id":638,"sku":"MT01-L-Orange","name":"Erikssen CoolTech™ Fitness Tank-L-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

    \n

    • Red performance tank.
    • Slight scoop neckline.
    • Reflectivity.
    • Machine wash/dry.

    ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erikssen-cooltech-and-trade-fitness-tank-l-orange-638","links":{},"stock":{"item_id":638,"product_id":638,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-l-orange-638.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"757","_score":1,"_source":{"id":757,"sku":"MP03-32-Green","name":"Geo Insulated Jogging Pant-32-Green","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

    \n

    • Black polyester spandex pants with zipper pockets.
    • Reflective safety accents.
    • Loose fit.
    • On-seam pockets.
    • 8\" leg zips. 32\" inseam.
    • Machine wash/dry.

    ","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"geo-insulated-jogging-pant-32-green-757","links":{},"stock":{"item_id":757,"product_id":757,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-32-green-757.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"756","_score":1,"_source":{"id":756,"sku":"MP03-32-Blue","name":"Geo Insulated Jogging Pant-32-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

    \n

    • Black polyester spandex pants with zipper pockets.
    • Reflective safety accents.
    • Loose fit.
    • On-seam pockets.
    • 8\" leg zips. 32\" inseam.
    • Machine wash/dry.

    ","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"geo-insulated-jogging-pant-32-blue-756","links":{},"stock":{"item_id":756,"product_id":756,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-32-blue-756.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"649","_score":1,"_source":{"id":649,"sku":"MT02-S-White","name":"Tristan Endurance Tank-S-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

    \n

    • White performance tank.
    • Stylish contrast stitching.
    • Relaxed fit.
    • Ribbed crew neckline.
    • Machine wash/dry.

    ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tristan-endurance-tank-s-white-649","links":{},"stock":{"item_id":649,"product_id":649,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-s-white-649.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"719","_score":1,"_source":{"id":719,"sku":"MT11-S-Blue","name":"Atlas Fitness Tank-S-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

    From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

    \n

    • Teal scoop neck cotton tank.
    • Triblend, soft fabric.
    • Relaxed fit.

    ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atlas-fitness-tank-s-blue-719","links":{},"stock":{"item_id":719,"product_id":719,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-s-blue-719.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"793","_score":1,"_source":{"id":793,"sku":"MP05-36-Green","name":"Kratos Gym Pant-36-Green","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

    \n

    • Navy cotton straight leg pants.
    • Relaxed fit.
    • 2 side-seam pockets.
    • Internal zip pocket.
    • Drawstring waist.
    • Machine wash/dry.

    ","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"kratos-gym-pant-36-green-793","links":{},"stock":{"item_id":793,"product_id":793,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-36-green-793.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"768","_score":1,"_source":{"id":768,"sku":"MP03","name":"Geo Insulated Jogging Pant","attribute_set_id":10,"price":51,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":51,"description":"

    In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

    \n

    • Black polyester spandex pants with zipper pockets.
    • Reflective safety accents.
    • Loose fit.
    • On-seam pockets.
    • 8\" leg zips. 32\" inseam.
    • Machine wash/dry.

    ","image":"/m/p/mp03-black_main.jpg","small_image":"/m/p/mp03-black_main.jpg","thumbnail":"/m/p/mp03-black_main.jpg","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"geo-insulated-jogging-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,38,39,151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[202,204,205,210,211],"slug":"geo-insulated-jogging-pant-768","links":{},"stock":{"item_id":768,"product_id":768,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP03-32-Blue","id":756,"status":1,"name":"Geo Insulated Jogging Pant-32-Blue","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"50","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","url_key":"geo-insulated-jogging-pant-32-blue","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MP03-32-Green","id":757,"status":1,"name":"Geo Insulated Jogging Pant-32-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"53","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","url_key":"geo-insulated-jogging-pant-32-green","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MP03-32-Red","id":758,"status":1,"name":"Geo Insulated Jogging Pant-32-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"58","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","url_key":"geo-insulated-jogging-pant-32-red","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MP03-33-Blue","id":759,"status":1,"name":"Geo Insulated Jogging Pant-33-Blue","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"50","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","url_key":"geo-insulated-jogging-pant-33-blue","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MP03-33-Green","id":760,"status":1,"name":"Geo Insulated Jogging Pant-33-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"53","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","url_key":"geo-insulated-jogging-pant-33-green","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MP03-33-Red","id":761,"status":1,"name":"Geo Insulated Jogging Pant-33-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"58","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","url_key":"geo-insulated-jogging-pant-33-red","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MP03-34-Blue","id":762,"status":1,"name":"Geo Insulated Jogging Pant-34-Blue","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"50","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","url_key":"geo-insulated-jogging-pant-34-blue","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MP03-34-Green","id":763,"status":1,"name":"Geo Insulated Jogging Pant-34-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"53","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","url_key":"geo-insulated-jogging-pant-34-green","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MP03-34-Red","id":764,"status":1,"name":"Geo Insulated Jogging Pant-34-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"58","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","url_key":"geo-insulated-jogging-pant-34-red","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MP03-36-Blue","id":765,"status":1,"name":"Geo Insulated Jogging Pant-36-Blue","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"50","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","url_key":"geo-insulated-jogging-pant-36-blue","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MP03-36-Green","id":766,"status":1,"name":"Geo Insulated Jogging Pant-36-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"53","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","url_key":"geo-insulated-jogging-pant-36-green","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MP03-36-Red","id":767,"status":1,"name":"Geo Insulated Jogging Pant-36-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"58","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","url_key":"geo-insulated-jogging-pant-36-red","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001}],"configurable_options":[{"id":103,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":768,"attribute_code":"color"},{"id":102,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":768,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-768.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"872","_score":1,"_source":{"id":872,"sku":"MP11","name":"Aether Gym Pant ","attribute_set_id":10,"price":74,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":74,"description":"

    The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

    \n

    • Pants/shorts convertible.
    • Lightweight moisture wicking.
    • Water repellent.
    • Belted waist.

    ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"aether-gym-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,151,159],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[202,203,204,205,206,207,208,210],"slug":"aether-gym-pant-872","links":{},"stock":{"item_id":872,"product_id":872,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP11-32-Blue","id":860,"status":1,"name":"Aether Gym Pant -32-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"176","color":"50","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","url_key":"aether-gym-pant-32-blue","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MP11-32-Brown","id":861,"status":1,"name":"Aether Gym Pant -32-Brown","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"176","color":"51","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","url_key":"aether-gym-pant-32-brown","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MP11-32-Green","id":862,"status":1,"name":"Aether Gym Pant -32-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"176","color":"53","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","url_key":"aether-gym-pant-32-green","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MP11-33-Blue","id":863,"status":1,"name":"Aether Gym Pant -33-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"177","color":"50","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","url_key":"aether-gym-pant-33-blue","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MP11-33-Brown","id":864,"status":1,"name":"Aether Gym Pant -33-Brown","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"177","color":"51","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","url_key":"aether-gym-pant-33-brown","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MP11-33-Green","id":865,"status":1,"name":"Aether Gym Pant -33-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"177","color":"53","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","url_key":"aether-gym-pant-33-green","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MP11-34-Blue","id":866,"status":1,"name":"Aether Gym Pant -34-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"178","color":"50","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","url_key":"aether-gym-pant-34-blue","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MP11-34-Brown","id":867,"status":1,"name":"Aether Gym Pant -34-Brown","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"178","color":"51","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","url_key":"aether-gym-pant-34-brown","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MP11-34-Green","id":868,"status":1,"name":"Aether Gym Pant -34-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"178","color":"53","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","url_key":"aether-gym-pant-34-green","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MP11-36-Blue","id":869,"status":1,"name":"Aether Gym Pant -36-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"179","color":"50","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","url_key":"aether-gym-pant-36-blue","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MP11-36-Brown","id":870,"status":1,"name":"Aether Gym Pant -36-Brown","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"179","color":"51","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","url_key":"aether-gym-pant-36-brown","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MP11-36-Green","id":871,"status":1,"name":"Aether Gym Pant -36-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"179","color":"53","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","url_key":"aether-gym-pant-36-green","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001}],"configurable_options":[{"id":119,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":51,"label":"Brown"},{"value_index":53,"label":"Green"}],"product_id":872,"attribute_code":"color"},{"id":118,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":872,"attribute_code":"size"}],"color_options":[50,51,53],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-872.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"862","_score":1,"_source":{"id":862,"sku":"MP11-32-Green","name":"Aether Gym Pant -32-Green","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

    The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

    \n

    • Pants/shorts convertible.
    • Lightweight moisture wicking.
    • Water repellent.
    • Belted waist.

    ","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"aether-gym-pant-32-green-862","links":{},"stock":{"item_id":862,"product_id":862,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-32-green-862.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"869","_score":1,"_source":{"id":869,"sku":"MP11-36-Blue","name":"Aether Gym Pant -36-Blue","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

    The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

    \n

    • Pants/shorts convertible.
    • Lightweight moisture wicking.
    • Water repellent.
    • Belted waist.

    ","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"aether-gym-pant-36-blue-869","links":{},"stock":{"item_id":869,"product_id":869,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-36-blue-869.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"888","_score":1,"_source":{"id":888,"sku":"MSH01-32-Red","name":"Cobalt CoolTech™ Fitness Short-32-Red","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

    It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

    \n

    • Light blue nylon shorts.
    • Relaxed fit.
    • 5\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","color":"58","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cobalt-cooltech-and-trade-fitness-short-32-red-888","links":{},"stock":{"item_id":888,"product_id":888,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-32-red-888.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"870","_score":1,"_source":{"id":870,"sku":"MP11-36-Brown","name":"Aether Gym Pant -36-Brown","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

    The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

    \n

    • Pants/shorts convertible.
    • Lightweight moisture wicking.
    • Water repellent.
    • Belted waist.

    ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","color":"51","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-36-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"aether-gym-pant-36-brown-870","links":{},"stock":{"item_id":870,"product_id":870,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-36-brown-870.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"874","_score":1,"_source":{"id":874,"sku":"MP12-32-Blue","name":"Cronus Yoga Pant -32-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

    \n

    • Drawstring waist.
    • Loose, straight-leg fit.
    • Lightweight cotton-recycled blend.
    • Front pockets with stitching detail.
    • Elastic ankle.

    ","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","color":"50","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cronus-yoga-pant-32-blue-874","links":{},"stock":{"item_id":874,"product_id":874,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-32-blue-874.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"881","_score":1,"_source":{"id":881,"sku":"MP12-34-Red","name":"Cronus Yoga Pant -34-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

    \n

    • Drawstring waist.
    • Loose, straight-leg fit.
    • Lightweight cotton-recycled blend.
    • Front pockets with stitching detail.
    • Elastic ankle.

    ","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","color":"58","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cronus-yoga-pant-34-red-881","links":{},"stock":{"item_id":881,"product_id":881,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-34-red-881.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"762","_score":1,"_source":{"id":762,"sku":"MP03-34-Blue","name":"Geo Insulated Jogging Pant-34-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

    \n

    • Black polyester spandex pants with zipper pockets.
    • Reflective safety accents.
    • Loose fit.
    • On-seam pockets.
    • 8\" leg zips. 32\" inseam.
    • Machine wash/dry.

    ","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"geo-insulated-jogging-pant-34-blue-762","links":{},"stock":{"item_id":762,"product_id":762,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-34-blue-762.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"769","_score":1,"_source":{"id":769,"sku":"MP04-32-Black","name":"Supernova Sport Pant-32-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

    \n

    • Dark heather gray straight leg cotton pants.
    • Relaxed fit.
    • Internal drawstring.
    • Machine wash/dry.

    ","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"supernova-sport-pant-32-black-769","links":{},"stock":{"item_id":769,"product_id":769,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-32-black-769.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"779","_score":1,"_source":{"id":779,"sku":"MP04-36-Gray","name":"Supernova Sport Pant-36-Gray","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

    \n

    • Dark heather gray straight leg cotton pants.
    • Relaxed fit.
    • Internal drawstring.
    • Machine wash/dry.

    ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"supernova-sport-pant-36-gray-779","links":{},"stock":{"item_id":779,"product_id":779,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-36-gray-779.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"788","_score":1,"_source":{"id":788,"sku":"MP05-34-Black","name":"Kratos Gym Pant-34-Black","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

    \n

    • Navy cotton straight leg pants.
    • Relaxed fit.
    • 2 side-seam pockets.
    • Internal zip pocket.
    • Drawstring waist.
    • Machine wash/dry.

    ","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"kratos-gym-pant-34-black-788","links":{},"stock":{"item_id":788,"product_id":788,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-34-black-788.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"791","_score":1,"_source":{"id":791,"sku":"MP05-36-Black","name":"Kratos Gym Pant-36-Black","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

    \n

    • Navy cotton straight leg pants.
    • Relaxed fit.
    • 2 side-seam pockets.
    • Internal zip pocket.
    • Drawstring waist.
    • Machine wash/dry.

    ","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"kratos-gym-pant-36-black-791","links":{},"stock":{"item_id":791,"product_id":791,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-36-black-791.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"824","_score":1,"_source":{"id":824,"sku":"MP08-33-Blue","name":"Zeppelin Yoga Pant-33-Blue","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001,"description":"

    Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

    \n

    • Smooth exterior for easy over-layering.
    • Brushed fleece interior insulates and wicks.
    • No-roll elastic waistband with inner drawstring.
    • Chafe-resistant flatlock seams.

    ","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"zeppelin-yoga-pant-33-blue-824","links":{},"stock":{"item_id":824,"product_id":824,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-33-blue-824.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"835","_score":1,"_source":{"id":835,"sku":"MP09-32-Blue","name":"Livingston All-Purpose Tight-32-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

    It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

    \n

    • Breathable stretch organic cotton/spandex.
    • Compression fit
    • Hidden key pocket
    • Elastic waist with internal drawcord.

    ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","color":"50","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"livingston-all-purpose-tight-32-blue-835","links":{},"stock":{"item_id":835,"product_id":835,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-32-blue-835.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"839","_score":1,"_source":{"id":839,"sku":"MP09-33-Red","name":"Livingston All-Purpose Tight-33-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

    It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

    \n

    • Breathable stretch organic cotton/spandex.
    • Compression fit
    • Hidden key pocket
    • Elastic waist with internal drawcord.

    ","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","color":"58","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"livingston-all-purpose-tight-33-red-839","links":{},"stock":{"item_id":839,"product_id":839,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-33-red-839.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"834","_score":1,"_source":{"id":834,"sku":"MP09-32-Black","name":"Livingston All-Purpose Tight-32-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

    It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

    \n

    • Breathable stretch organic cotton/spandex.
    • Compression fit
    • Hidden key pocket
    • Elastic waist with internal drawcord.

    ","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","color":"49","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"livingston-all-purpose-tight-32-black-834","links":{},"stock":{"item_id":834,"product_id":834,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-32-black-834.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"838","_score":1,"_source":{"id":838,"sku":"MP09-33-Blue","name":"Livingston All-Purpose Tight-33-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

    It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

    \n

    • Breathable stretch organic cotton/spandex.
    • Compression fit
    • Hidden key pocket
    • Elastic waist with internal drawcord.

    ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","color":"50","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"livingston-all-purpose-tight-33-blue-838","links":{},"stock":{"item_id":838,"product_id":838,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-33-blue-838.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"801","_score":1,"_source":{"id":801,"sku":"MP06-34-Gray","name":"Mithra Warmup Pant-34-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

    \n

    • Ankle zips.
    • Elasticized waistband with draw cord.
    • Dual hand pockets.
    • Reflective elements for low-light safety.

    ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","color":"52","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"mithra-warmup-pant-34-gray-801","links":{},"stock":{"item_id":801,"product_id":801,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-34-gray-801.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"821","_score":1,"_source":{"id":821,"sku":"MP08-32-Blue","name":"Zeppelin Yoga Pant-32-Blue","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001,"description":"

    Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

    \n

    • Smooth exterior for easy over-layering.
    • Brushed fleece interior insulates and wicks.
    • No-roll elastic waistband with inner drawstring.
    • Chafe-resistant flatlock seams.

    ","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"zeppelin-yoga-pant-32-blue-821","links":{},"stock":{"item_id":821,"product_id":821,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-32-blue-821.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"817","_score":1,"_source":{"id":817,"sku":"MP07-36-Black","name":"Thorpe Track Pant-36-Black","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

    Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

    \n

    • Moisture transfer properties.
    • 7% stretch.
    • Reflective safety trim.
    • Elastic drawcord waist.

    ","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"thorpe-track-pant-36-black-817","links":{},"stock":{"item_id":817,"product_id":817,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-36-black-817.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"831","_score":1,"_source":{"id":831,"sku":"MP08-36-Green","name":"Zeppelin Yoga Pant-36-Green","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001,"description":"

    Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

    \n

    • Smooth exterior for easy over-layering.
    • Brushed fleece interior insulates and wicks.
    • No-roll elastic waistband with inner drawstring.
    • Chafe-resistant flatlock seams.

    ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"zeppelin-yoga-pant-36-green-831","links":{},"stock":{"item_id":831,"product_id":831,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-36-green-831.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"854","_score":1,"_source":{"id":854,"sku":"MP10-34-Blue","name":"Orestes Yoga Pant -34-Blue","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

    The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

    \n

    • A yoga essential.
    • Breathable stretch organic cotton/spandex.
    • Standard Fit.

    ","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-yoga-pant-34-blue-854","links":{},"stock":{"item_id":854,"product_id":854,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-34-blue-854.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"861","_score":1,"_source":{"id":861,"sku":"MP11-32-Brown","name":"Aether Gym Pant -32-Brown","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

    The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

    \n

    • Pants/shorts convertible.
    • Lightweight moisture wicking.
    • Water repellent.
    • Belted waist.

    ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","color":"51","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-32-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"aether-gym-pant-32-brown-861","links":{},"stock":{"item_id":861,"product_id":861,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-32-brown-861.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"858","_score":1,"_source":{"id":858,"sku":"MP10-36-Green","name":"Orestes Yoga Pant -36-Green","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

    The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

    \n

    • A yoga essential.
    • Breathable stretch organic cotton/spandex.
    • Standard Fit.

    ","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-yoga-pant-36-green-858","links":{},"stock":{"item_id":858,"product_id":858,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-36-green-858.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"809","_score":1,"_source":{"id":809,"sku":"MP07-32-Blue","name":"Thorpe Track Pant-32-Blue","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

    Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

    \n

    • Moisture transfer properties.
    • 7% stretch.
    • Reflective safety trim.
    • Elastic drawcord waist.

    ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"thorpe-track-pant-32-blue-809","links":{},"stock":{"item_id":809,"product_id":809,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-32-blue-809.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"811","_score":1,"_source":{"id":811,"sku":"MP07-33-Black","name":"Thorpe Track Pant-33-Black","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

    Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

    \n

    • Moisture transfer properties.
    • 7% stretch.
    • Reflective safety trim.
    • Elastic drawcord waist.

    ","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"thorpe-track-pant-33-black-811","links":{},"stock":{"item_id":811,"product_id":811,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-33-black-811.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"876","_score":1,"_source":{"id":876,"sku":"MP12-33-Black","name":"Cronus Yoga Pant -33-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

    \n

    • Drawstring waist.
    • Loose, straight-leg fit.
    • Lightweight cotton-recycled blend.
    • Front pockets with stitching detail.
    • Elastic ankle.

    ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cronus-yoga-pant-33-black-876","links":{},"stock":{"item_id":876,"product_id":876,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-33-black-876.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"981","_score":1,"_source":{"id":981,"sku":"MSH08","name":"Orestes Fitness Short","attribute_set_id":10,"price":35,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":35,"description":"

    You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

    \n

    • Black shorts with dark gray accents.
    • Elasticized waistband with interior drawstring.
    • Ventilating mesh detailing.
    • 100% polyester and recycled polyester.
    • Machine wash cold, tumble dry low.

    ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"orestes-fitness-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_bottom":[116,105],"pattern":"197","climate":[202,205,212],"slug":"orestes-fitness-short-981","links":{},"stock":{"item_id":981,"product_id":981,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH08-32-Black","id":969,"status":1,"name":"Orestes Fitness Short-32-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"176","color":"49","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","url_key":"orestes-fitness-short-32-black","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH08-32-Blue","id":970,"status":1,"name":"Orestes Fitness Short-32-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"176","color":"50","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","url_key":"orestes-fitness-short-32-blue","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH08-32-Green","id":971,"status":1,"name":"Orestes Fitness Short-32-Green","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"176","color":"53","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","url_key":"orestes-fitness-short-32-green","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH08-33-Black","id":972,"status":1,"name":"Orestes Fitness Short-33-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"177","color":"49","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","url_key":"orestes-fitness-short-33-black","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH08-33-Blue","id":973,"status":1,"name":"Orestes Fitness Short-33-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"177","color":"50","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","url_key":"orestes-fitness-short-33-blue","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH08-33-Green","id":974,"status":1,"name":"Orestes Fitness Short-33-Green","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"177","color":"53","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","url_key":"orestes-fitness-short-33-green","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH08-34-Black","id":975,"status":1,"name":"Orestes Fitness Short-34-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"178","color":"49","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","url_key":"orestes-fitness-short-34-black","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH08-34-Blue","id":976,"status":1,"name":"Orestes Fitness Short-34-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"178","color":"50","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","url_key":"orestes-fitness-short-34-blue","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH08-34-Green","id":977,"status":1,"name":"Orestes Fitness Short-34-Green","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"178","color":"53","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","url_key":"orestes-fitness-short-34-green","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH08-36-Black","id":978,"status":1,"name":"Orestes Fitness Short-36-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"179","color":"49","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","url_key":"orestes-fitness-short-36-black","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH08-36-Blue","id":979,"status":1,"name":"Orestes Fitness Short-36-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"179","color":"50","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","url_key":"orestes-fitness-short-36-blue","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH08-36-Green","id":980,"status":1,"name":"Orestes Fitness Short-36-Green","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"179","color":"53","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","url_key":"orestes-fitness-short-36-green","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001}],"configurable_options":[{"id":137,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":981,"attribute_code":"color"},{"id":136,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":981,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-981.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"916","_score":1,"_source":{"id":916,"sku":"MSH03","name":"Meteor Workout Short","attribute_set_id":10,"price":32.5,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":32.5,"description":"

    Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

    \n

    • Royal blue shorts with light blue accents.
    • Interior drawstring waistband.
    • 7\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"meteor-workout-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[202,208,209],"slug":"meteor-workout-short-916","links":{},"stock":{"item_id":916,"product_id":916,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH03-32-Black","id":904,"status":1,"name":"Meteor Workout Short-32-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"49","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","url_key":"meteor-workout-short-32-black","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH03-32-Blue","id":905,"status":1,"name":"Meteor Workout Short-32-Blue","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"50","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","url_key":"meteor-workout-short-32-blue","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH03-32-Green","id":906,"status":1,"name":"Meteor Workout Short-32-Green","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"53","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","url_key":"meteor-workout-short-32-green","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH03-33-Black","id":907,"status":1,"name":"Meteor Workout Short-33-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"49","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","url_key":"meteor-workout-short-33-black","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH03-33-Blue","id":908,"status":1,"name":"Meteor Workout Short-33-Blue","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"50","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","url_key":"meteor-workout-short-33-blue","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH03-33-Green","id":909,"status":1,"name":"Meteor Workout Short-33-Green","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"53","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","url_key":"meteor-workout-short-33-green","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH03-34-Black","id":910,"status":1,"name":"Meteor Workout Short-34-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"49","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","url_key":"meteor-workout-short-34-black","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH03-34-Blue","id":911,"status":1,"name":"Meteor Workout Short-34-Blue","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"50","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","url_key":"meteor-workout-short-34-blue","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH03-34-Green","id":912,"status":1,"name":"Meteor Workout Short-34-Green","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"53","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","url_key":"meteor-workout-short-34-green","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH03-36-Black","id":913,"status":1,"name":"Meteor Workout Short-36-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"49","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","url_key":"meteor-workout-short-36-black","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH03-36-Blue","id":914,"status":1,"name":"Meteor Workout Short-36-Blue","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"50","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","url_key":"meteor-workout-short-36-blue","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH03-36-Green","id":915,"status":1,"name":"Meteor Workout Short-36-Green","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"53","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","url_key":"meteor-workout-short-36-green","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001}],"configurable_options":[{"id":127,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":916,"attribute_code":"color"},{"id":126,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":916,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-916.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"987","_score":1,"_source":{"id":987,"sku":"MSH09-33-Green","name":"Troy Yoga Short-33-Green","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

    \n

    • Navy polyester pinstripe shorts.
    • Woven fabric with moderate stretch.
    • 62% cotton/34% nylon/4% spandex.
    • LumaTech™ lining.

    ","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"troy-yoga-short-33-green-987","links":{},"stock":{"item_id":987,"product_id":987,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-33-green-987.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"986","_score":1,"_source":{"id":986,"sku":"MSH09-33-Blue","name":"Troy Yoga Short-33-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

    \n

    • Navy polyester pinstripe shorts.
    • Woven fabric with moderate stretch.
    • 62% cotton/34% nylon/4% spandex.
    • LumaTech™ lining.

    ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"troy-yoga-short-33-blue-986","links":{},"stock":{"item_id":986,"product_id":986,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-33-blue-986.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"967","_score":1,"_source":{"id":967,"sku":"MSH07-36-Purple","name":"Rapha Sports Short-36-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

    \n

    • Black shorts with royal accents.
    • Compression liner.
    • Inseam: 8\".
    • Machine wash/dry.

    ","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","color":"57","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"rapha-sports-short-36-purple-967","links":{},"stock":{"item_id":967,"product_id":967,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-36-purple-967.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"912","_score":1,"_source":{"id":912,"sku":"MSH03-34-Green","name":"Meteor Workout Short-34-Green","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

    Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

    \n

    • Royal blue shorts with light blue accents.
    • Interior drawstring waistband.
    • 7\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"meteor-workout-short-34-green-912","links":{},"stock":{"item_id":912,"product_id":912,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-34-green-912.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"934","_score":1,"_source":{"id":934,"sku":"MSH05-33-Blue","name":"Hawkeye Yoga Short-33-Blue","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

    \n

    • Dark gray shorts with red accents.
    • 92% Organic Cotton 8% Spandex.
    • Breathable stretch organic cotton.
    • Medium=8.0\" (21.0cm) inseam.

    ","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"hawkeye-yoga-short-33-blue-934","links":{},"stock":{"item_id":934,"product_id":934,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-33-blue-934.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"914","_score":1,"_source":{"id":914,"sku":"MSH03-36-Blue","name":"Meteor Workout Short-36-Blue","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

    Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

    \n

    • Royal blue shorts with light blue accents.
    • Interior drawstring waistband.
    • 7\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"meteor-workout-short-36-blue-914","links":{},"stock":{"item_id":914,"product_id":914,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-36-blue-914.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"937","_score":1,"_source":{"id":937,"sku":"MSH05-34-Blue","name":"Hawkeye Yoga Short-34-Blue","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

    \n

    • Dark gray shorts with red accents.
    • 92% Organic Cotton 8% Spandex.
    • Breathable stretch organic cotton.
    • Medium=8.0\" (21.0cm) inseam.

    ","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"hawkeye-yoga-short-34-blue-937","links":{},"stock":{"item_id":937,"product_id":937,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-34-blue-937.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"959","_score":1,"_source":{"id":959,"sku":"MSH07-33-Black","name":"Rapha Sports Short-33-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

    \n

    • Black shorts with royal accents.
    • Compression liner.
    • Inseam: 8\".
    • Machine wash/dry.

    ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","color":"49","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"rapha-sports-short-33-black-959","links":{},"stock":{"item_id":959,"product_id":959,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-33-black-959.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"964","_score":1,"_source":{"id":964,"sku":"MSH07-34-Purple","name":"Rapha Sports Short-34-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

    \n

    • Black shorts with royal accents.
    • Compression liner.
    • Inseam: 8\".
    • Machine wash/dry.

    ","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","color":"57","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"rapha-sports-short-34-purple-964","links":{},"stock":{"item_id":964,"product_id":964,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-34-purple-964.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"956","_score":1,"_source":{"id":956,"sku":"MSH07-32-Black","name":"Rapha Sports Short-32-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

    \n

    • Black shorts with royal accents.
    • Compression liner.
    • Inseam: 8\".
    • Machine wash/dry.

    ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","color":"49","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"rapha-sports-short-32-black-956","links":{},"stock":{"item_id":956,"product_id":956,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-32-black-956.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"938","_score":1,"_source":{"id":938,"sku":"MSH05-34-Gray","name":"Hawkeye Yoga Short-34-Gray","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

    \n

    • Dark gray shorts with red accents.
    • 92% Organic Cotton 8% Spandex.
    • Breathable stretch organic cotton.
    • Medium=8.0\" (21.0cm) inseam.

    ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","color":"52","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"hawkeye-yoga-short-34-gray-938","links":{},"stock":{"item_id":938,"product_id":938,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-34-gray-938.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"990","_score":1,"_source":{"id":990,"sku":"MSH09-34-Green","name":"Troy Yoga Short-34-Green","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

    \n

    • Navy polyester pinstripe shorts.
    • Woven fabric with moderate stretch.
    • 62% cotton/34% nylon/4% spandex.
    • LumaTech™ lining.

    ","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"troy-yoga-short-34-green-990","links":{},"stock":{"item_id":990,"product_id":990,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-34-green-990.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1021","_score":1,"_source":{"id":1021,"sku":"MSH12-32-Black","name":"Pierce Gym Short-32-Black","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

    The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

    \n

    • Dark red cotton shorts.
    • 87% Supplex, 13% Lycra.
    • Adjustable drawstring waistband.
    • Built-in mesh brief.
    • Machine wash cold, tumble dry low.

    ","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"pierce-gym-short-32-black-1021","links":{},"stock":{"item_id":1021,"product_id":1021,"stock_id":1,"qty":25,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-32-black-1021.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1047","_score":1,"_source":{"id":1047,"sku":"WH01-XL-Orange","name":"Mona Pullover Hoodlie-XL-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

    • Light green heathered hoodie.
    • Long-Sleeve, pullover.
    • Long elliptical hem for extra coverage.
    • Deep button placket for layering.
    • Double rib design.
    • Mid layer, mid weight.
    • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mona-pullover-hoodlie-xl-orange-1047","links":{},"stock":{"item_id":1047,"product_id":1047,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xl-orange-1047.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1022","_score":1,"_source":{"id":1022,"sku":"MSH12-32-Gray","name":"Pierce Gym Short-32-Gray","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

    The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

    \n

    • Dark red cotton shorts.
    • 87% Supplex, 13% Lycra.
    • Adjustable drawstring waistband.
    • Built-in mesh brief.
    • Machine wash cold, tumble dry low.

    ","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","color":"52","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"pierce-gym-short-32-gray-1022","links":{},"stock":{"item_id":1022,"product_id":1022,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-32-gray-1022.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1020","_score":1,"_source":{"id":1020,"sku":"MSH11","name":"Arcadio Gym Short","attribute_set_id":10,"price":20,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":20,"description":"

    The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

    \n

    • Royal blue cotton shorts.
    • Built-in mesh brief.
    • 87% Spandex 13% Lycra.
    • Adjustable drawstring.

    ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"arcadio-gym-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105,108],"pattern":"197","climate":[202,205,212,208,209],"slug":"arcadio-gym-short-1020","links":{},"stock":{"item_id":1020,"product_id":1020,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH11-32-Black","id":1008,"status":1,"name":"Arcadio Gym Short-32-Black","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"49","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","url_key":"arcadio-gym-short-32-black","msrp_display_actual_price_type":"0","final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001},{"sku":"MSH11-32-Blue","id":1009,"status":1,"name":"Arcadio Gym Short-32-Blue","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"50","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","url_key":"arcadio-gym-short-32-blue","msrp_display_actual_price_type":"0","final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001},{"sku":"MSH11-32-Red","id":1010,"status":1,"name":"Arcadio Gym Short-32-Red","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"58","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","url_key":"arcadio-gym-short-32-red","msrp_display_actual_price_type":"0","final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001},{"sku":"MSH11-33-Black","id":1011,"status":1,"name":"Arcadio Gym Short-33-Black","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"49","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","url_key":"arcadio-gym-short-33-black","msrp_display_actual_price_type":"0","final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001},{"sku":"MSH11-33-Blue","id":1012,"status":1,"name":"Arcadio Gym Short-33-Blue","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"50","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","url_key":"arcadio-gym-short-33-blue","msrp_display_actual_price_type":"0","final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001},{"sku":"MSH11-33-Red","id":1013,"status":1,"name":"Arcadio Gym Short-33-Red","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"58","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","url_key":"arcadio-gym-short-33-red","msrp_display_actual_price_type":"0","final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001},{"sku":"MSH11-34-Black","id":1014,"status":1,"name":"Arcadio Gym Short-34-Black","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"49","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","url_key":"arcadio-gym-short-34-black","msrp_display_actual_price_type":"0","final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001},{"sku":"MSH11-34-Blue","id":1015,"status":1,"name":"Arcadio Gym Short-34-Blue","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"50","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","url_key":"arcadio-gym-short-34-blue","msrp_display_actual_price_type":"0","final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001},{"sku":"MSH11-34-Red","id":1016,"status":1,"name":"Arcadio Gym Short-34-Red","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"58","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","url_key":"arcadio-gym-short-34-red","msrp_display_actual_price_type":"0","final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001},{"sku":"MSH11-36-Black","id":1017,"status":1,"name":"Arcadio Gym Short-36-Black","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"49","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","url_key":"arcadio-gym-short-36-black","msrp_display_actual_price_type":"0","final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001},{"sku":"MSH11-36-Blue","id":1018,"status":1,"name":"Arcadio Gym Short-36-Blue","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"50","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","url_key":"arcadio-gym-short-36-blue","msrp_display_actual_price_type":"0","final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001},{"sku":"MSH11-36-Red","id":1019,"status":1,"name":"Arcadio Gym Short-36-Red","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"58","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","url_key":"arcadio-gym-short-36-red","msrp_display_actual_price_type":"0","final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001}],"configurable_options":[{"id":143,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":1020,"attribute_code":"color"},{"id":142,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":1020,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-1020.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1119","_score":1,"_source":{"id":1119,"sku":"WH06","name":"Daphne Full-Zip Hoodie","attribute_set_id":9,"price":59,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":59,"description":"

    The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

    \n

    • Purple full zip hoodie with pink accents.
    • Heather texture.
    • 4-way stretch.
    • Pre-shrunk.
    • Hood lined in vegan Sherpa for added warmth.
    • Ribbed hem on hood and front pouch pocket.
    • 60% Cotton / 40% Polyester.

    ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"daphne-full-zip-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[138,129],"pattern":"197","climate":[202,203,204,208,210,211],"slug":"daphne-full-zip-hoodie-1119","links":{},"stock":{"item_id":1119,"product_id":1119,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH06-XS-Purple","id":1114,"status":1,"name":"Daphne Full-Zip Hoodie-XS-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"57","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","url_key":"daphne-full-zip-hoodie-xs-purple","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH06-S-Purple","id":1115,"status":1,"name":"Daphne Full-Zip Hoodie-S-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"57","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","url_key":"daphne-full-zip-hoodie-s-purple","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH06-M-Purple","id":1116,"status":1,"name":"Daphne Full-Zip Hoodie-M-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"57","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","url_key":"daphne-full-zip-hoodie-m-purple","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH06-L-Purple","id":1117,"status":1,"name":"Daphne Full-Zip Hoodie-L-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"57","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","url_key":"daphne-full-zip-hoodie-l-purple","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH06-XL-Purple","id":1118,"status":1,"name":"Daphne Full-Zip Hoodie-XL-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"57","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","url_key":"daphne-full-zip-hoodie-xl-purple","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001}],"configurable_options":[{"id":157,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":57,"label":"Purple"}],"product_id":1119,"attribute_code":"color"},{"id":156,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1119,"attribute_code":"size"}],"color_options":[57],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-1119.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1113","_score":1,"_source":{"id":1113,"sku":"WH05","name":"Selene Yoga Hoodie","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":42,"description":"

    The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

    \n

    • Ivory heather full zip 3/4 sleeve hoodie.
    • Zip pocket at arm for convenient storage.
    • 24.0\" body length.
    • 89% Polyester / 11% Spandex.

    ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"selene-yoga-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[138,129],"pattern":"197","climate":[205,206,208],"slug":"selene-yoga-hoodie-1113","links":{},"stock":{"item_id":1113,"product_id":1113,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH05-XS-Orange","id":1098,"status":1,"name":"Selene Yoga Hoodie-XS-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"56","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","url_key":"selene-yoga-hoodie-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WH05-XS-Purple","id":1099,"status":1,"name":"Selene Yoga Hoodie-XS-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"57","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","url_key":"selene-yoga-hoodie-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WH05-XS-White","id":1100,"status":1,"name":"Selene Yoga Hoodie-XS-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"59","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","url_key":"selene-yoga-hoodie-xs-white","msrp_display_actual_price_type":"0"},{"sku":"WH05-S-Orange","id":1101,"status":1,"name":"Selene Yoga Hoodie-S-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"56","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","url_key":"selene-yoga-hoodie-s-orange","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WH05-S-Purple","id":1102,"status":1,"name":"Selene Yoga Hoodie-S-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"57","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","url_key":"selene-yoga-hoodie-s-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WH05-S-White","id":1103,"status":1,"name":"Selene Yoga Hoodie-S-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"59","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","url_key":"selene-yoga-hoodie-s-white","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WH05-M-Orange","id":1104,"status":1,"name":"Selene Yoga Hoodie-M-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"56","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","url_key":"selene-yoga-hoodie-m-orange","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WH05-M-Purple","id":1105,"status":1,"name":"Selene Yoga Hoodie-M-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"57","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","url_key":"selene-yoga-hoodie-m-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WH05-M-White","id":1106,"status":1,"name":"Selene Yoga Hoodie-M-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"59","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","url_key":"selene-yoga-hoodie-m-white","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WH05-L-Orange","id":1107,"status":1,"name":"Selene Yoga Hoodie-L-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"56","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","url_key":"selene-yoga-hoodie-l-orange","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WH05-L-Purple","id":1108,"status":1,"name":"Selene Yoga Hoodie-L-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"57","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","url_key":"selene-yoga-hoodie-l-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WH05-L-White","id":1109,"status":1,"name":"Selene Yoga Hoodie-L-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"59","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","url_key":"selene-yoga-hoodie-l-white","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WH05-XL-Orange","id":1110,"status":1,"name":"Selene Yoga Hoodie-XL-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"56","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","url_key":"selene-yoga-hoodie-xl-orange","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WH05-XL-Purple","id":1111,"status":1,"name":"Selene Yoga Hoodie-XL-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"57","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","url_key":"selene-yoga-hoodie-xl-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WH05-XL-White","id":1112,"status":1,"name":"Selene Yoga Hoodie-XL-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"59","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","url_key":"selene-yoga-hoodie-xl-white","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001}],"configurable_options":[{"id":155,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"}],"product_id":1113,"attribute_code":"color"},{"id":154,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1113,"attribute_code":"size"}],"color_options":[56,57,59],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-1113.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1105","_score":1,"_source":{"id":1105,"sku":"WH05-M-Purple","name":"Selene Yoga Hoodie-M-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

    \n

    • Ivory heather full zip 3/4 sleeve hoodie.
    • Zip pocket at arm for convenient storage.
    • 24.0\" body length.
    • 89% Polyester / 11% Spandex.

    ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"selene-yoga-hoodie-m-purple-1105","links":{},"stock":{"item_id":1105,"product_id":1105,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-m-purple-1105.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1107","_score":1,"_source":{"id":1107,"sku":"WH05-L-Orange","name":"Selene Yoga Hoodie-L-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

    \n

    • Ivory heather full zip 3/4 sleeve hoodie.
    • Zip pocket at arm for convenient storage.
    • 24.0\" body length.
    • 89% Polyester / 11% Spandex.

    ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"selene-yoga-hoodie-l-orange-1107","links":{},"stock":{"item_id":1107,"product_id":1107,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-l-orange-1107.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1122","_score":1,"_source":{"id":1122,"sku":"WH07-XS-White","name":"Phoebe Zipper Sweatshirt-XS-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

    \n

    • Gray full zip hoodie with yellow detail.
    • Hand-warmer pockets.
    • Zip MP3 pocket with outlet for earphones wire.
    • Polyester/cotton.
    • Washable.

    ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"phoebe-zipper-sweatshirt-xs-white-1122","links":{},"stock":{"item_id":1122,"product_id":1122,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xs-white-1122.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1127","_score":1,"_source":{"id":1127,"sku":"WH07-M-Purple","name":"Phoebe Zipper Sweatshirt-M-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

    \n

    • Gray full zip hoodie with yellow detail.
    • Hand-warmer pockets.
    • Zip MP3 pocket with outlet for earphones wire.
    • Polyester/cotton.
    • Washable.

    ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"phoebe-zipper-sweatshirt-m-purple-1127","links":{},"stock":{"item_id":1127,"product_id":1127,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-m-purple-1127.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1118","_score":1,"_source":{"id":1118,"sku":"WH06-XL-Purple","name":"Daphne Full-Zip Hoodie-XL-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

    \n

    • Purple full zip hoodie with pink accents.
    • Heather texture.
    • 4-way stretch.
    • Pre-shrunk.
    • Hood lined in vegan Sherpa for added warmth.
    • Ribbed hem on hood and front pouch pocket.
    • 60% Cotton / 40% Polyester.

    ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"daphne-full-zip-hoodie-xl-purple-1118","links":{},"stock":{"item_id":1118,"product_id":1118,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-xl-purple-1118.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1132","_score":1,"_source":{"id":1132,"sku":"WH07-XL-Gray","name":"Phoebe Zipper Sweatshirt-XL-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

    \n

    • Gray full zip hoodie with yellow detail.
    • Hand-warmer pockets.
    • Zip MP3 pocket with outlet for earphones wire.
    • Polyester/cotton.
    • Washable.

    ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"phoebe-zipper-sweatshirt-xl-gray-1132","links":{},"stock":{"item_id":1132,"product_id":1132,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xl-gray-1132.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1023","_score":1,"_source":{"id":1023,"sku":"MSH12-32-Red","name":"Pierce Gym Short-32-Red","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

    The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

    \n

    • Dark red cotton shorts.
    • 87% Supplex, 13% Lycra.
    • Adjustable drawstring waistband.
    • Built-in mesh brief.
    • Machine wash cold, tumble dry low.

    ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","color":"58","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"pierce-gym-short-32-red-1023","links":{},"stock":{"item_id":1023,"product_id":1023,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-32-red-1023.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1041","_score":1,"_source":{"id":1041,"sku":"WH01-M-Orange","name":"Mona Pullover Hoodlie-M-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

    • Light green heathered hoodie.
    • Long-Sleeve, pullover.
    • Long elliptical hem for extra coverage.
    • Deep button placket for layering.
    • Double rib design.
    • Mid layer, mid weight.
    • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mona-pullover-hoodlie-m-orange-1041","links":{},"stock":{"item_id":1041,"product_id":1041,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-m-orange-1041.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1034","_score":1,"_source":{"id":1034,"sku":"WH01-XS-Green","name":"Mona Pullover Hoodlie-XS-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

    • Light green heathered hoodie.
    • Long-Sleeve, pullover.
    • Long elliptical hem for extra coverage.
    • Deep button placket for layering.
    • Double rib design.
    • Mid layer, mid weight.
    • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mona-pullover-hoodlie-xs-green-1034","links":{},"stock":{"item_id":1034,"product_id":1034,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xs-green-1034.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1078","_score":1,"_source":{"id":1078,"sku":"WH03-XL-Green","name":"Autumn Pullie-XL-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

    \n

    • Cayenne Short-Sleeve roll neck sweatshirt.
    • Relaxed fit.
    • Short-Sleeves.
    • Machine wash/dry.

    ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"autumn-pullie-xl-green-1078","links":{},"stock":{"item_id":1078,"product_id":1078,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xl-green-1078.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1093","_score":1,"_source":{"id":1093,"sku":"WH04-L-Purple","name":"Miko Pullover Hoodie-L-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

    \n

    • Teal two-tone hoodie.
    • Low scoop neckline.
    • Adjustable hood drawstrings.
    • Longer rounded hemline for extra back coverage.
    • Long-Sleeve style.

    ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"miko-pullover-hoodie-l-purple-1093","links":{},"stock":{"item_id":1093,"product_id":1093,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-l-purple-1093.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1094","_score":1,"_source":{"id":1094,"sku":"WH04-XL-Blue","name":"Miko Pullover Hoodie-XL-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

    \n

    • Teal two-tone hoodie.
    • Low scoop neckline.
    • Adjustable hood drawstrings.
    • Longer rounded hemline for extra back coverage.
    • Long-Sleeve style.

    ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"miko-pullover-hoodie-xl-blue-1094","links":{},"stock":{"item_id":1094,"product_id":1094,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xl-blue-1094.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1152","_score":1,"_source":{"id":1152,"sku":"WH09-XS-Green","name":"Ariel Roll Sleeve Sweatshirt-XS-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

    \n

    • Purple two-tone lightweight hoodie.
    • 100% cotton.
    • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
    • Casual, comfy piece for running errands or weekend activities.

    ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ariel-roll-sleeve-sweatshirt-xs-green-1152","links":{},"stock":{"item_id":1152,"product_id":1152,"stock_id":1,"qty":52,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xs-green-1152.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1163","_score":1,"_source":{"id":1163,"sku":"WH09-L-Red","name":"Ariel Roll Sleeve Sweatshirt-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

    \n

    • Purple two-tone lightweight hoodie.
    • 100% cotton.
    • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
    • Casual, comfy piece for running errands or weekend activities.

    ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ariel-roll-sleeve-sweatshirt-l-red-1163","links":{},"stock":{"item_id":1163,"product_id":1163,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-l-red-1163.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1059","_score":1,"_source":{"id":1059,"sku":"WH02-L-Blue","name":"Hera Pullover Hoodie-L-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

    \n

    • Teal with purple stiching.
    • Hoodie pullover.
    • Snug fit.

    ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hera-pullover-hoodie-l-blue-1059","links":{},"stock":{"item_id":1059,"product_id":1059,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-l-blue-1059.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1005","_score":1,"_source":{"id":1005,"sku":"MSH10-36-Green","name":"Sol Active Short-36-Green","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

    \n

    • Light blue jersey shorts with mesh detail.
    • 87% Spandex 13% Lycra.
    • Machine wash cold, tumble dry low.
    • Superior performance fabric.
    • Flat-lock seams.

    ","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","color":"53","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"sol-active-short-36-green-1005","links":{},"stock":{"item_id":1005,"product_id":1005,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-36-green-1005.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1109","_score":1,"_source":{"id":1109,"sku":"WH05-L-White","name":"Selene Yoga Hoodie-L-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

    \n

    • Ivory heather full zip 3/4 sleeve hoodie.
    • Zip pocket at arm for convenient storage.
    • 24.0\" body length.
    • 89% Polyester / 11% Spandex.

    ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"selene-yoga-hoodie-l-white-1109","links":{},"stock":{"item_id":1109,"product_id":1109,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-l-white-1109.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1241","_score":1,"_source":{"id":1241,"sku":"WJ02","name":"Josie Yoga Jacket","attribute_set_id":9,"price":56.25,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":56.25,"description":"

    When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

    \n

    • Slate rouched neck pullover.
    • Moisture-wicking fabric.
    • Hidden zipper.
    • Mesh armpit venting.
    • Dropped rear hem.

    ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"josie-yoga-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[38,151,156],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":[118,137,120,125],"pattern":"197","climate":[205,206,208],"slug":"josie-yoga-jacket-1241","links":{},"stock":{"item_id":1241,"product_id":1241,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ02-XS-Black","id":1226,"status":1,"name":"Josie Yoga Jacket-XS-Black","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"167","color":"49","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","url_key":"josie-yoga-jacket-xs-black","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-XS-Blue","id":1227,"status":1,"name":"Josie Yoga Jacket-XS-Blue","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"167","color":"50","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","url_key":"josie-yoga-jacket-xs-blue","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-XS-Gray","id":1228,"status":1,"name":"Josie Yoga Jacket-XS-Gray","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"167","color":"52","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","url_key":"josie-yoga-jacket-xs-gray","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-S-Black","id":1229,"status":1,"name":"Josie Yoga Jacket-S-Black","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"168","color":"49","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","url_key":"josie-yoga-jacket-s-black","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-S-Blue","id":1230,"status":1,"name":"Josie Yoga Jacket-S-Blue","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"168","color":"50","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","url_key":"josie-yoga-jacket-s-blue","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-S-Gray","id":1231,"status":1,"name":"Josie Yoga Jacket-S-Gray","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"168","color":"52","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","url_key":"josie-yoga-jacket-s-gray","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-M-Black","id":1232,"status":1,"name":"Josie Yoga Jacket-M-Black","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"169","color":"49","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","url_key":"josie-yoga-jacket-m-black","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-M-Blue","id":1233,"status":1,"name":"Josie Yoga Jacket-M-Blue","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"169","color":"50","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","url_key":"josie-yoga-jacket-m-blue","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-M-Gray","id":1234,"status":1,"name":"Josie Yoga Jacket-M-Gray","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"169","color":"52","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","url_key":"josie-yoga-jacket-m-gray","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-L-Black","id":1235,"status":1,"name":"Josie Yoga Jacket-L-Black","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"170","color":"49","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","url_key":"josie-yoga-jacket-l-black","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-L-Blue","id":1236,"status":1,"name":"Josie Yoga Jacket-L-Blue","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"170","color":"50","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","url_key":"josie-yoga-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-L-Gray","id":1237,"status":1,"name":"Josie Yoga Jacket-L-Gray","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"170","color":"52","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","url_key":"josie-yoga-jacket-l-gray","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-XL-Black","id":1238,"status":1,"name":"Josie Yoga Jacket-XL-Black","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"171","color":"49","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","url_key":"josie-yoga-jacket-xl-black","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-XL-Blue","id":1239,"status":1,"name":"Josie Yoga Jacket-XL-Blue","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"171","color":"50","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","url_key":"josie-yoga-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-XL-Gray","id":1240,"status":1,"name":"Josie Yoga Jacket-XL-Gray","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"171","color":"52","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","url_key":"josie-yoga-jacket-xl-gray","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501}],"configurable_options":[{"id":173,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"}],"product_id":1241,"attribute_code":"color"},{"id":172,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1241,"attribute_code":"size"}],"color_options":[49,50,52],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-1241.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1151","_score":1,"_source":{"id":1151,"sku":"WH08","name":"Cassia Funnel Sweatshirt","attribute_set_id":9,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":48,"description":"

    The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

    \n

    • White full zip hoodie with gray detail.
    • 65% Cotton/28% Nylon/7% Spandex.
    • Front slash pockets.
    • Tagless label at back neck.

    ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cassia-funnel-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,33,151],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[138,129],"pattern":"197","climate":[202,204,205,206,208],"slug":"cassia-funnel-sweatshirt-1151","links":{},"stock":{"item_id":1151,"product_id":1151,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH08-XS-Orange","id":1136,"status":1,"name":"Cassia Funnel Sweatshirt-XS-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"167","color":"56","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","url_key":"cassia-funnel-sweatshirt-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WH08-XS-Purple","id":1137,"status":1,"name":"Cassia Funnel Sweatshirt-XS-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"167","color":"57","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","url_key":"cassia-funnel-sweatshirt-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WH08-XS-White","id":1138,"status":1,"name":"Cassia Funnel Sweatshirt-XS-White","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"167","color":"59","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","url_key":"cassia-funnel-sweatshirt-xs-white","msrp_display_actual_price_type":"0"},{"sku":"WH08-S-Orange","id":1139,"status":1,"name":"Cassia Funnel Sweatshirt-S-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"168","color":"56","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","url_key":"cassia-funnel-sweatshirt-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WH08-S-Purple","id":1140,"status":1,"name":"Cassia Funnel Sweatshirt-S-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"168","color":"57","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","url_key":"cassia-funnel-sweatshirt-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WH08-S-White","id":1141,"status":1,"name":"Cassia Funnel Sweatshirt-S-White","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"168","color":"59","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","url_key":"cassia-funnel-sweatshirt-s-white","msrp_display_actual_price_type":"0"},{"sku":"WH08-M-Orange","id":1142,"status":1,"name":"Cassia Funnel Sweatshirt-M-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"169","color":"56","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","url_key":"cassia-funnel-sweatshirt-m-orange","msrp_display_actual_price_type":"0"},{"sku":"WH08-M-Purple","id":1143,"status":1,"name":"Cassia Funnel Sweatshirt-M-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"169","color":"57","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","url_key":"cassia-funnel-sweatshirt-m-purple","msrp_display_actual_price_type":"0"},{"sku":"WH08-M-White","id":1144,"status":1,"name":"Cassia Funnel Sweatshirt-M-White","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"169","color":"59","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","url_key":"cassia-funnel-sweatshirt-m-white","msrp_display_actual_price_type":"0"},{"sku":"WH08-L-Orange","id":1145,"status":1,"name":"Cassia Funnel Sweatshirt-L-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"170","color":"56","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","url_key":"cassia-funnel-sweatshirt-l-orange","msrp_display_actual_price_type":"0"},{"sku":"WH08-L-Purple","id":1146,"status":1,"name":"Cassia Funnel Sweatshirt-L-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"170","color":"57","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","url_key":"cassia-funnel-sweatshirt-l-purple","msrp_display_actual_price_type":"0"},{"sku":"WH08-L-White","id":1147,"status":1,"name":"Cassia Funnel Sweatshirt-L-White","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"170","color":"59","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","url_key":"cassia-funnel-sweatshirt-l-white","msrp_display_actual_price_type":"0"},{"sku":"WH08-XL-Orange","id":1148,"status":1,"name":"Cassia Funnel Sweatshirt-XL-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"171","color":"56","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","url_key":"cassia-funnel-sweatshirt-xl-orange","msrp_display_actual_price_type":"0"},{"sku":"WH08-XL-Purple","id":1149,"status":1,"name":"Cassia Funnel Sweatshirt-XL-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"171","color":"57","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","url_key":"cassia-funnel-sweatshirt-xl-purple","msrp_display_actual_price_type":"0"},{"sku":"WH08-XL-White","id":1150,"status":1,"name":"Cassia Funnel Sweatshirt-XL-White","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"171","color":"59","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","url_key":"cassia-funnel-sweatshirt-xl-white","msrp_display_actual_price_type":"0"}],"configurable_options":[{"id":161,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"}],"product_id":1151,"attribute_code":"color"},{"id":160,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1151,"attribute_code":"size"}],"color_options":[56,57,59],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-1151.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1176","_score":1,"_source":{"id":1176,"sku":"WH10-M-Yellow","name":"Helena Hooded Fleece-M-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

    Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

    \n

    Full zip.
    Banded cuffs and waist.
    Front pockets.
    Machine wash/dry.

    ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helena-hooded-fleece-m-yellow-1176","links":{},"stock":{"item_id":1176,"product_id":1176,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-m-yellow-1176.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1166","_score":1,"_source":{"id":1166,"sku":"WH09-XL-Red","name":"Ariel Roll Sleeve Sweatshirt-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

    \n

    • Purple two-tone lightweight hoodie.
    • 100% cotton.
    • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
    • Casual, comfy piece for running errands or weekend activities.

    ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ariel-roll-sleeve-sweatshirt-xl-red-1166","links":{},"stock":{"item_id":1166,"product_id":1166,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xl-red-1166.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1165","_score":1,"_source":{"id":1165,"sku":"WH09-XL-Purple","name":"Ariel Roll Sleeve Sweatshirt-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

    \n

    • Purple two-tone lightweight hoodie.
    • 100% cotton.
    • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
    • Casual, comfy piece for running errands or weekend activities.

    ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ariel-roll-sleeve-sweatshirt-xl-purple-1165","links":{},"stock":{"item_id":1165,"product_id":1165,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xl-purple-1165.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1168","_score":1,"_source":{"id":1168,"sku":"WH10-XS-Blue","name":"Helena Hooded Fleece-XS-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

    Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

    \n

    Full zip.
    Banded cuffs and waist.
    Front pockets.
    Machine wash/dry.

    ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helena-hooded-fleece-xs-blue-1168","links":{},"stock":{"item_id":1168,"product_id":1168,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xs-blue-1168.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1178","_score":1,"_source":{"id":1178,"sku":"WH10-L-Gray","name":"Helena Hooded Fleece-L-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

    Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

    \n

    Full zip.
    Banded cuffs and waist.
    Front pockets.
    Machine wash/dry.

    ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helena-hooded-fleece-l-gray-1178","links":{},"stock":{"item_id":1178,"product_id":1178,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-l-gray-1178.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1190","_score":1,"_source":{"id":1190,"sku":"WH11-M-Blue","name":"Eos V-Neck Hoodie-M-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

    Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

    \n

    Semi-fitted.
    Long-Sleeve.
    Machine wash/line dry.

    ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"eos-v-neck-hoodie-m-blue-1190","links":{},"stock":{"item_id":1190,"product_id":1190,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-m-blue-1190.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1198","_score":1,"_source":{"id":1198,"sku":"WH11-XL-Orange","name":"Eos V-Neck Hoodie-XL-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

    Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

    \n

    Semi-fitted.
    Long-Sleeve.
    Machine wash/line dry.

    ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"eos-v-neck-hoodie-xl-orange-1198","links":{},"stock":{"item_id":1198,"product_id":1198,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xl-orange-1198.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1276","_score":1,"_source":{"id":1276,"sku":"WJ05-XS-Red","name":"Riona Full Zip Jacket-XS-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

    \n

    • Brown heather full zip rouched jacket.
    • Side hand pockets for extra storage.
    • High collar.
    • Thick cuffs for extra coverage.
    • Durable, shape retention material to longer wear.

    ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"riona-full-zip-jacket-xs-red-1276","links":{},"stock":{"item_id":1276,"product_id":1276,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xs-red-1276.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1288","_score":1,"_source":{"id":1288,"sku":"WJ05-XL-Red","name":"Riona Full Zip Jacket-XL-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

    \n

    • Brown heather full zip rouched jacket.
    • Side hand pockets for extra storage.
    • High collar.
    • Thick cuffs for extra coverage.
    • Durable, shape retention material to longer wear.

    ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"riona-full-zip-jacket-xl-red-1288","links":{},"stock":{"item_id":1288,"product_id":1288,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xl-red-1288.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1279","_score":1,"_source":{"id":1279,"sku":"WJ05-S-Red","name":"Riona Full Zip Jacket-S-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

    \n

    • Brown heather full zip rouched jacket.
    • Side hand pockets for extra storage.
    • High collar.
    • Thick cuffs for extra coverage.
    • Durable, shape retention material to longer wear.

    ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"riona-full-zip-jacket-s-red-1279","links":{},"stock":{"item_id":1279,"product_id":1279,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-s-red-1279.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1292","_score":1,"_source":{"id":1292,"sku":"WJ07-XS-Red","name":"Inez Full Zip Jacket-XS-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

    \n

    • Purple heather inset full zip jacket.
    • Full zip hoodie.
    • Contrast binding along the zipper, hood and sleeves.
    • Inseam pockets for storage.
    • Thumbholes for comfortable fit.

    ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"inez-full-zip-jacket-xs-red-1292","links":{},"stock":{"item_id":1292,"product_id":1292,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xs-red-1292.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1265","_score":1,"_source":{"id":1265,"sku":"WJ04-M-Red","name":"Ingrid Running Jacket-M-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

    The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
    • Slim fit.
    • Moisture-wicking fabric.
    • Two side pockets.
    • Zippered pocket at back waist.
    • Machine wash/dry.
    • Ivory specked full zip

    ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ingrid-running-jacket-m-red-1265","links":{},"stock":{"item_id":1265,"product_id":1265,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-m-red-1265.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1278","_score":1,"_source":{"id":1278,"sku":"WJ05-S-Green","name":"Riona Full Zip Jacket-S-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

    \n

    • Brown heather full zip rouched jacket.
    • Side hand pockets for extra storage.
    • High collar.
    • Thick cuffs for extra coverage.
    • Durable, shape retention material to longer wear.

    ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"riona-full-zip-jacket-s-green-1278","links":{},"stock":{"item_id":1278,"product_id":1278,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-s-green-1278.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1299","_score":1,"_source":{"id":1299,"sku":"WJ07-L-Orange","name":"Inez Full Zip Jacket-L-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

    \n

    • Purple heather inset full zip jacket.
    • Full zip hoodie.
    • Contrast binding along the zipper, hood and sleeves.
    • Inseam pockets for storage.
    • Thumbholes for comfortable fit.

    ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"inez-full-zip-jacket-l-orange-1299","links":{},"stock":{"item_id":1299,"product_id":1299,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-l-orange-1299.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1244","_score":1,"_source":{"id":1244,"sku":"WJ03-XS-Red","name":"Augusta Pullover Jacket-XS-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

    \n

    • Pink half-zip pullover.
    • Front pouch pockets.
    • Fold-down collar.

    ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"augusta-pullover-jacket-xs-red-1244","links":{},"stock":{"item_id":1244,"product_id":1244,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xs-red-1244.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1232","_score":1,"_source":{"id":1232,"sku":"WJ02-M-Black","name":"Josie Yoga Jacket-M-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

    When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

    \n

    • Slate rouched neck pullover.
    • Moisture-wicking fabric.
    • Hidden zipper.
    • Mesh armpit venting.
    • Dropped rear hem.

    ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"josie-yoga-jacket-m-black-1232","links":{},"stock":{"item_id":1232,"product_id":1232,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-m-black-1232.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1223","_score":1,"_source":{"id":1223,"sku":"WJ01-L-Red","name":"Stellar Solar Jacket-L-Red","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

    Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

    \n

    • Loose fit.
    • Reflectivity.
    • Flat seams.
    • Machine wash/dry.
    • Deep pink jacket with front panel rouching

    ","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","color":"58","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stellar-solar-jacket-l-red-1223","links":{},"stock":{"item_id":1223,"product_id":1223,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-l-red-1223.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1222","_score":1,"_source":{"id":1222,"sku":"WJ01-L-Blue","name":"Stellar Solar Jacket-L-Blue","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

    Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

    \n

    • Loose fit.
    • Reflectivity.
    • Flat seams.
    • Machine wash/dry.
    • Deep pink jacket with front panel rouching

    ","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","color":"50","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stellar-solar-jacket-l-blue-1222","links":{},"stock":{"item_id":1222,"product_id":1222,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-l-blue-1222.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1319","_score":1,"_source":{"id":1319,"sku":"WJ08-XL-Orange","name":"Adrienne Trek Jacket-XL-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

    \n

    • gray 1/4 zip pullover.
    • Comfortable, relaxed fit.
    • Front zip for venting.
    • Spacious, kangaroo pockets.
    • 27\" body length.
    • 95% Organic Cotton / 5% Spandex.

    ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"adrienne-trek-jacket-xl-orange-1319","links":{},"stock":{"item_id":1319,"product_id":1319,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xl-orange-1319.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1302","_score":1,"_source":{"id":1302,"sku":"WJ07-XL-Orange","name":"Inez Full Zip Jacket-XL-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

    \n

    • Purple heather inset full zip jacket.
    • Full zip hoodie.
    • Contrast binding along the zipper, hood and sleeves.
    • Inseam pockets for storage.
    • Thumbholes for comfortable fit.

    ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"inez-full-zip-jacket-xl-orange-1302","links":{},"stock":{"item_id":1302,"product_id":1302,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xl-orange-1302.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1194","_score":1,"_source":{"id":1194,"sku":"WH11-L-Green","name":"Eos V-Neck Hoodie-L-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

    Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

    \n

    Semi-fitted.
    Long-Sleeve.
    Machine wash/line dry.

    ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"eos-v-neck-hoodie-l-green-1194","links":{},"stock":{"item_id":1194,"product_id":1194,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-l-green-1194.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1226","_score":1,"_source":{"id":1226,"sku":"WJ02-XS-Black","name":"Josie Yoga Jacket-XS-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

    When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

    \n

    • Slate rouched neck pullover.
    • Moisture-wicking fabric.
    • Hidden zipper.
    • Mesh armpit venting.
    • Dropped rear hem.

    ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"josie-yoga-jacket-xs-black-1226","links":{},"stock":{"item_id":1226,"product_id":1226,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xs-black-1226.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1303","_score":1,"_source":{"id":1303,"sku":"WJ07-XL-Purple","name":"Inez Full Zip Jacket-XL-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

    \n

    • Purple heather inset full zip jacket.
    • Full zip hoodie.
    • Contrast binding along the zipper, hood and sleeves.
    • Inseam pockets for storage.
    • Thumbholes for comfortable fit.

    ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"inez-full-zip-jacket-xl-purple-1303","links":{},"stock":{"item_id":1303,"product_id":1303,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xl-purple-1303.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1334","_score":1,"_source":{"id":1334,"sku":"WJ09-XL-Blue","name":"Jade Yoga Jacket-XL-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


    If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

    \n

    • Seafoam 1/4 zip pullover with purple stitching.
    • Lightweight, quick-drying, water-resistant construction.
    • Shirred details at front and back for a feminine look.
    • Hood collapses into collar.
    • Mesh liner for breathability.
    • Front zip pockets.
    • Hem cinches at sideseam.
    • 100% Polyester.

    ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jade-yoga-jacket-xl-blue-1334","links":{},"stock":{"item_id":1334,"product_id":1334,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xl-blue-1334.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1339","_score":1,"_source":{"id":1339,"sku":"WJ10-XS-Orange","name":"Nadia Elements Shell-XS-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

    \n

    • Zippered front.
    • Zippered side pockets.
    • Drawstring-adjustable waist and hood.
    • Machine wash/line dry.
    • Light blue 1/4 zip pullover.

    ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nadia-elements-shell-xs-orange-1339","links":{},"stock":{"item_id":1339,"product_id":1339,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xs-orange-1339.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1348","_score":1,"_source":{"id":1348,"sku":"WJ10-L-Orange","name":"Nadia Elements Shell-L-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

    \n

    • Zippered front.
    • Zippered side pockets.
    • Drawstring-adjustable waist and hood.
    • Machine wash/line dry.
    • Light blue 1/4 zip pullover.

    ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nadia-elements-shell-l-orange-1348","links":{},"stock":{"item_id":1348,"product_id":1348,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-l-orange-1348.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1337","_score":1,"_source":{"id":1337,"sku":"WJ09","name":"Jade Yoga Jacket","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":32,"description":"


    If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

    \n

    • Seafoam 1/4 zip pullover with purple stitching.
    • Lightweight, quick-drying, water-resistant construction.
    • Shirred details at front and back for a feminine look.
    • Hood collapses into collar.
    • Mesh liner for breathability.
    • Front zip pockets.
    • Hem cinches at sideseam.
    • 100% Polyester.

    ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"jade-yoga-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[118,120,121,125,128],"pattern":"197","climate":[204,206,208,210],"slug":"jade-yoga-jacket-1337","links":{},"stock":{"item_id":1337,"product_id":1337,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ09-XS-Blue","id":1322,"status":1,"name":"Jade Yoga Jacket-XS-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"167","color":"50","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","url_key":"jade-yoga-jacket-xs-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-XS-Gray","id":1323,"status":1,"name":"Jade Yoga Jacket-XS-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"167","color":"52","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","url_key":"jade-yoga-jacket-xs-gray","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-XS-Green","id":1324,"status":1,"name":"Jade Yoga Jacket-XS-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"167","color":"53","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","url_key":"jade-yoga-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-S-Blue","id":1325,"status":1,"name":"Jade Yoga Jacket-S-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"168","color":"50","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","url_key":"jade-yoga-jacket-s-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-S-Gray","id":1326,"status":1,"name":"Jade Yoga Jacket-S-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"168","color":"52","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","url_key":"jade-yoga-jacket-s-gray","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-S-Green","id":1327,"status":1,"name":"Jade Yoga Jacket-S-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"168","color":"53","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","url_key":"jade-yoga-jacket-s-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-M-Blue","id":1328,"status":1,"name":"Jade Yoga Jacket-M-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"169","color":"50","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","url_key":"jade-yoga-jacket-m-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-M-Gray","id":1329,"status":1,"name":"Jade Yoga Jacket-M-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"169","color":"52","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","url_key":"jade-yoga-jacket-m-gray","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-M-Green","id":1330,"status":1,"name":"Jade Yoga Jacket-M-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"169","color":"53","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","url_key":"jade-yoga-jacket-m-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-L-Blue","id":1331,"status":1,"name":"Jade Yoga Jacket-L-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"170","color":"50","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","url_key":"jade-yoga-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-L-Gray","id":1332,"status":1,"name":"Jade Yoga Jacket-L-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"170","color":"52","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","url_key":"jade-yoga-jacket-l-gray","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-L-Green","id":1333,"status":1,"name":"Jade Yoga Jacket-L-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"170","color":"53","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","url_key":"jade-yoga-jacket-l-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-XL-Blue","id":1334,"status":1,"name":"Jade Yoga Jacket-XL-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"171","color":"50","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","url_key":"jade-yoga-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-XL-Gray","id":1335,"status":1,"name":"Jade Yoga Jacket-XL-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"171","color":"52","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","url_key":"jade-yoga-jacket-xl-gray","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-XL-Green","id":1336,"status":1,"name":"Jade Yoga Jacket-XL-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"171","color":"53","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","url_key":"jade-yoga-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001}],"configurable_options":[{"id":185,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":1337,"attribute_code":"color"},{"id":184,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1337,"attribute_code":"size"}],"color_options":[50,52,53],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-1337.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1321","_score":1,"_source":{"id":1321,"sku":"WJ08","name":"Adrienne Trek Jacket","attribute_set_id":9,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":57,"description":"

    You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

    \n

    • gray 1/4 zip pullover.
    • Comfortable, relaxed fit.
    • Front zip for venting.
    • Spacious, kangaroo pockets.
    • 27\" body length.
    • 95% Organic Cotton / 5% Spandex.

    ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"adrienne-trek-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,151],"eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"1","style_general":[118,120,123,124,126,128],"pattern":"197","climate":[202,204,206,208,211],"slug":"adrienne-trek-jacket-1321","links":{},"stock":{"item_id":1321,"product_id":1321,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ08-XS-Gray","id":1306,"status":1,"name":"Adrienne Trek Jacket-XS-Gray","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"167","color":"52","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","url_key":"adrienne-trek-jacket-xs-gray","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-XS-Orange","id":1307,"status":1,"name":"Adrienne Trek Jacket-XS-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"167","color":"56","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","url_key":"adrienne-trek-jacket-xs-orange","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-XS-Purple","id":1308,"status":1,"name":"Adrienne Trek Jacket-XS-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"167","color":"57","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","url_key":"adrienne-trek-jacket-xs-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-S-Gray","id":1309,"status":1,"name":"Adrienne Trek Jacket-S-Gray","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"168","color":"52","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","url_key":"adrienne-trek-jacket-s-gray","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-S-Orange","id":1310,"status":1,"name":"Adrienne Trek Jacket-S-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"168","color":"56","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","url_key":"adrienne-trek-jacket-s-orange","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-S-Purple","id":1311,"status":1,"name":"Adrienne Trek Jacket-S-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"168","color":"57","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","url_key":"adrienne-trek-jacket-s-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-M-Gray","id":1312,"status":1,"name":"Adrienne Trek Jacket-M-Gray","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"169","color":"52","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","url_key":"adrienne-trek-jacket-m-gray","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-M-Orange","id":1313,"status":1,"name":"Adrienne Trek Jacket-M-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"169","color":"56","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","url_key":"adrienne-trek-jacket-m-orange","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-M-Purple","id":1314,"status":1,"name":"Adrienne Trek Jacket-M-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"169","color":"57","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","url_key":"adrienne-trek-jacket-m-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-L-Gray","id":1315,"status":1,"name":"Adrienne Trek Jacket-L-Gray","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"170","color":"52","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","url_key":"adrienne-trek-jacket-l-gray","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-L-Orange","id":1316,"status":1,"name":"Adrienne Trek Jacket-L-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"170","color":"56","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","url_key":"adrienne-trek-jacket-l-orange","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-L-Purple","id":1317,"status":1,"name":"Adrienne Trek Jacket-L-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"170","color":"57","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","url_key":"adrienne-trek-jacket-l-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-XL-Gray","id":1318,"status":1,"name":"Adrienne Trek Jacket-XL-Gray","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"171","color":"52","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","url_key":"adrienne-trek-jacket-xl-gray","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-XL-Orange","id":1319,"status":1,"name":"Adrienne Trek Jacket-XL-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"171","color":"56","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","url_key":"adrienne-trek-jacket-xl-orange","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-XL-Purple","id":1320,"status":1,"name":"Adrienne Trek Jacket-XL-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"171","color":"57","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","url_key":"adrienne-trek-jacket-xl-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001}],"configurable_options":[{"id":183,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1321,"attribute_code":"color"},{"id":182,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1321,"attribute_code":"size"}],"color_options":[52,56,57],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-1321.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1433","_score":1,"_source":{"id":1433,"sku":"WS03","name":"Iris Workout Top","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

    The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

    \n

    • Pink heather rouched v-neck.
    • Scoop neckline.
    • Angled flat seams.
    • Moisture wicking.
    • Body skimming.
    • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

    ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"iris-workout-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,38,151,155],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"iris-workout-top-1433","links":{},"stock":{"item_id":1433,"product_id":1433,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS03-XS-Blue","id":1418,"status":1,"name":"Iris Workout Top-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"50","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","url_key":"iris-workout-top-xs-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-XS-Green","id":1419,"status":1,"name":"Iris Workout Top-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"53","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","url_key":"iris-workout-top-xs-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-XS-Red","id":1420,"status":1,"name":"Iris Workout Top-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"58","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","url_key":"iris-workout-top-xs-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-S-Blue","id":1421,"status":1,"name":"Iris Workout Top-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"50","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","url_key":"iris-workout-top-s-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-S-Green","id":1422,"status":1,"name":"Iris Workout Top-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"53","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","url_key":"iris-workout-top-s-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-S-Red","id":1423,"status":1,"name":"Iris Workout Top-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"58","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","url_key":"iris-workout-top-s-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-M-Blue","id":1424,"status":1,"name":"Iris Workout Top-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"50","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","url_key":"iris-workout-top-m-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-M-Green","id":1425,"status":1,"name":"Iris Workout Top-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"53","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","url_key":"iris-workout-top-m-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-M-Red","id":1426,"status":1,"name":"Iris Workout Top-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"58","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","url_key":"iris-workout-top-m-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-L-Blue","id":1427,"status":1,"name":"Iris Workout Top-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"50","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","url_key":"iris-workout-top-l-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-L-Green","id":1428,"status":1,"name":"Iris Workout Top-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"53","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","url_key":"iris-workout-top-l-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-L-Red","id":1429,"status":1,"name":"Iris Workout Top-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"58","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","url_key":"iris-workout-top-l-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-XL-Blue","id":1430,"status":1,"name":"Iris Workout Top-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"50","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","url_key":"iris-workout-top-xl-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-XL-Green","id":1431,"status":1,"name":"Iris Workout Top-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"53","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","url_key":"iris-workout-top-xl-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-XL-Red","id":1432,"status":1,"name":"Iris Workout Top-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"58","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","url_key":"iris-workout-top-xl-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":197,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1433,"attribute_code":"color"},{"id":196,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1433,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-1433.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1384","_score":1,"_source":{"id":1384,"sku":"WJ06-XL-Purple","name":"Juno Jacket-XL-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

    On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

    \n

    • Adjustable hood.
    • Fleece-lined, zippered hand pockets.
    • Thumbhole cuffs.
    • Full zip.
    • Mock-neck collar.
    • Machine wash/dry.

    ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juno-jacket-xl-purple-1384","links":{},"stock":{"item_id":1384,"product_id":1384,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xl-purple-1384.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1377","_score":1,"_source":{"id":1377,"sku":"WJ06-M-Green","name":"Juno Jacket-M-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

    On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

    \n

    • Adjustable hood.
    • Fleece-lined, zippered hand pockets.
    • Thumbhole cuffs.
    • Full zip.
    • Mock-neck collar.
    • Machine wash/dry.

    ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juno-jacket-m-green-1377","links":{},"stock":{"item_id":1377,"product_id":1377,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-m-green-1377.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1376","_score":1,"_source":{"id":1376,"sku":"WJ06-M-Blue","name":"Juno Jacket-M-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

    On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

    \n

    • Adjustable hood.
    • Fleece-lined, zippered hand pockets.
    • Thumbhole cuffs.
    • Full zip.
    • Mock-neck collar.
    • Machine wash/dry.

    ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juno-jacket-m-blue-1376","links":{},"stock":{"item_id":1376,"product_id":1376,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-m-blue-1376.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1387","_score":1,"_source":{"id":1387,"sku":"WJ12-XS-Blue","name":"Olivia 1/4 Zip Light Jacket-XS-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

    Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

    \n

    • Loose fit.
    • Reflectivity.
    • Flat seams.
    • Machine wash/dry.

    ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"olivia-14-zip-light-jacket-xs-blue-1387","links":{},"stock":{"item_id":1387,"product_id":1387,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xs-blue-1387.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1386","_score":1,"_source":{"id":1386,"sku":"WJ12-XS-Black","name":"Olivia 1/4 Zip Light Jacket-XS-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

    Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

    \n

    • Loose fit.
    • Reflectivity.
    • Flat seams.
    • Machine wash/dry.

    ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"olivia-14-zip-light-jacket-xs-black-1386","links":{},"stock":{"item_id":1386,"product_id":1386,"stock_id":1,"qty":6,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xs-black-1386.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1395","_score":1,"_source":{"id":1395,"sku":"WJ12-L-Black","name":"Olivia 1/4 Zip Light Jacket-L-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

    Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

    \n

    • Loose fit.
    • Reflectivity.
    • Flat seams.
    • Machine wash/dry.

    ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"olivia-14-zip-light-jacket-l-black-1395","links":{},"stock":{"item_id":1395,"product_id":1395,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-l-black-1395.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1423","_score":1,"_source":{"id":1423,"sku":"WS03-S-Red","name":"Iris Workout Top-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

    \n

    • Pink heather rouched v-neck.
    • Scoop neckline.
    • Angled flat seams.
    • Moisture wicking.
    • Body skimming.
    • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

    ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"iris-workout-top-s-red-1423","links":{},"stock":{"item_id":1423,"product_id":1423,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-s-red-1423.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1415","_score":1,"_source":{"id":1415,"sku":"WS02-XL-Green","name":"Gabrielle Micro Sleeve Top-XL-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

    \n

    • Lime green v-neck tee.
    • Slimming, flattering fit.
    • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
    • Longer curved hem provides additional coverage.
    • 55% Hemp / 45% Organic Cotton.

    ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gabrielle-micro-sleeve-top-xl-green-1415","links":{},"stock":{"item_id":1415,"product_id":1415,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xl-green-1415.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1436","_score":1,"_source":{"id":1436,"sku":"WS04-XS-Red","name":"Layla Tee-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

    \n

    • Teal tee.
    • Long back hem.
    • Dropped shoulders.

    ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"layla-tee-xs-red-1436","links":{},"stock":{"item_id":1436,"product_id":1436,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xs-red-1436.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1441","_score":1,"_source":{"id":1441,"sku":"WS04-M-Green","name":"Layla Tee-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

    \n

    • Teal tee.
    • Long back hem.
    • Dropped shoulders.

    ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"layla-tee-m-green-1441","links":{},"stock":{"item_id":1441,"product_id":1441,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-m-green-1441.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1354","_score":1,"_source":{"id":1354,"sku":"WJ11-XS-Black","name":"Neve Studio Dance Jacket-XS-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

    \n

    • Bright blue 1/4 zip pullover.
    • CoolTech™ liner is sweat-wicking.
    • Sleeve thumbholes.
    • Zipper garage to protect your chin.
    • Stretchy collar drawcords.

    ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"neve-studio-dance-jacket-xs-black-1354","links":{},"stock":{"item_id":1354,"product_id":1354,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xs-black-1354.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1356","_score":1,"_source":{"id":1356,"sku":"WJ11-XS-Orange","name":"Neve Studio Dance Jacket-XS-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

    \n

    • Bright blue 1/4 zip pullover.
    • CoolTech™ liner is sweat-wicking.
    • Sleeve thumbholes.
    • Zipper garage to protect your chin.
    • Stretchy collar drawcords.

    ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"neve-studio-dance-jacket-xs-orange-1356","links":{},"stock":{"item_id":1356,"product_id":1356,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xs-orange-1356.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1375","_score":1,"_source":{"id":1375,"sku":"WJ06-S-Purple","name":"Juno Jacket-S-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

    On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

    \n

    • Adjustable hood.
    • Fleece-lined, zippered hand pockets.
    • Thumbhole cuffs.
    • Full zip.
    • Mock-neck collar.
    • Machine wash/dry.

    ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juno-jacket-s-purple-1375","links":{},"stock":{"item_id":1375,"product_id":1375,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-s-purple-1375.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1426","_score":1,"_source":{"id":1426,"sku":"WS03-M-Red","name":"Iris Workout Top-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

    \n

    • Pink heather rouched v-neck.
    • Scoop neckline.
    • Angled flat seams.
    • Moisture wicking.
    • Body skimming.
    • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

    ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"iris-workout-top-m-red-1426","links":{},"stock":{"item_id":1426,"product_id":1426,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-m-red-1426.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1434","_score":1,"_source":{"id":1434,"sku":"WS04-XS-Blue","name":"Layla Tee-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

    \n

    • Teal tee.
    • Long back hem.
    • Dropped shoulders.

    ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"layla-tee-xs-blue-1434","links":{},"stock":{"item_id":1434,"product_id":1434,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xs-blue-1434.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1453","_score":1,"_source":{"id":1453,"sku":"WS06-S-Gray","name":"Elisa EverCool™ Tee-S-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

    \n

    • Purple heather v-neck tee.
    • Short-Sleeves.
    • Luma EverCool™ fabric.
    • Machine wash/line dry.

    ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"elisa-evercool-and-trade-tee-s-gray-1453","links":{},"stock":{"item_id":1453,"product_id":1453,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-s-gray-1453.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1464","_score":1,"_source":{"id":1464,"sku":"WS06-XL-Red","name":"Elisa EverCool™ Tee-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

    \n

    • Purple heather v-neck tee.
    • Short-Sleeves.
    • Luma EverCool™ fabric.
    • Machine wash/line dry.

    ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"elisa-evercool-and-trade-tee-xl-red-1464","links":{},"stock":{"item_id":1464,"product_id":1464,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xl-red-1464.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1438","_score":1,"_source":{"id":1438,"sku":"WS04-S-Green","name":"Layla Tee-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

    \n

    • Teal tee.
    • Long back hem.
    • Dropped shoulders.

    ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"layla-tee-s-green-1438","links":{},"stock":{"item_id":1438,"product_id":1438,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-s-green-1438.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1471","_score":1,"_source":{"id":1471,"sku":"WS07-S-Yellow","name":"Juliana Short-Sleeve Tee-S-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

    \n

    • Black scoop neck tee.
    • Side rouching.
    • Relaxed fit.

    ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juliana-short-sleeve-tee-s-yellow-1471","links":{},"stock":{"item_id":1471,"product_id":1471,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-s-yellow-1471.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1465","_score":1,"_source":{"id":1465,"sku":"WS06","name":"Elisa EverCool™ Tee","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

    When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

    \n

    • Purple heather v-neck tee.
    • Short-Sleeves.
    • Luma EverCool™ fabric.
    • Machine wash/line dry.

    ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"elisa-evercool-trade-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,154],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"elisa-evercool-and-trade-tee-1465","links":{},"stock":{"item_id":1465,"product_id":1465,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS06-XS-Gray","id":1450,"status":1,"name":"Elisa EverCool™ Tee-XS-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"167","color":"52","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","url_key":"elisa-evercool-trade-tee-xs-gray","msrp_display_actual_price_type":"0"},{"sku":"WS06-XS-Purple","id":1451,"status":1,"name":"Elisa EverCool™ Tee-XS-Purple","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"167","color":"57","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","url_key":"elisa-evercool-trade-tee-xs-purple","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-XS-Red","id":1452,"status":1,"name":"Elisa EverCool™ Tee-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"167","color":"58","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","url_key":"elisa-evercool-trade-tee-xs-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-S-Gray","id":1453,"status":1,"name":"Elisa EverCool™ Tee-S-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"168","color":"52","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","url_key":"elisa-evercool-trade-tee-s-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-S-Purple","id":1454,"status":1,"name":"Elisa EverCool™ Tee-S-Purple","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"168","color":"57","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","url_key":"elisa-evercool-trade-tee-s-purple","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-S-Red","id":1455,"status":1,"name":"Elisa EverCool™ Tee-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"168","color":"58","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","url_key":"elisa-evercool-trade-tee-s-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-M-Gray","id":1456,"status":1,"name":"Elisa EverCool™ Tee-M-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"169","color":"52","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","url_key":"elisa-evercool-trade-tee-m-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-M-Purple","id":1457,"status":1,"name":"Elisa EverCool™ Tee-M-Purple","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"169","color":"57","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","url_key":"elisa-evercool-trade-tee-m-purple","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-M-Red","id":1458,"status":1,"name":"Elisa EverCool™ Tee-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"169","color":"58","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","url_key":"elisa-evercool-trade-tee-m-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-L-Gray","id":1459,"status":1,"name":"Elisa EverCool™ Tee-L-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"170","color":"52","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","url_key":"elisa-evercool-trade-tee-l-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-L-Purple","id":1460,"status":1,"name":"Elisa EverCool™ Tee-L-Purple","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"170","color":"57","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","url_key":"elisa-evercool-trade-tee-l-purple","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-L-Red","id":1461,"status":1,"name":"Elisa EverCool™ Tee-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"170","color":"58","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","url_key":"elisa-evercool-trade-tee-l-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-XL-Gray","id":1462,"status":1,"name":"Elisa EverCool™ Tee-XL-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"171","color":"52","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","url_key":"elisa-evercool-trade-tee-xl-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-XL-Purple","id":1463,"status":1,"name":"Elisa EverCool™ Tee-XL-Purple","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"171","color":"57","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","url_key":"elisa-evercool-trade-tee-xl-purple","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-XL-Red","id":1464,"status":1,"name":"Elisa EverCool™ Tee-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"171","color":"58","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","url_key":"elisa-evercool-trade-tee-xl-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":201,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1465,"attribute_code":"color"},{"id":200,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1465,"attribute_code":"size"}],"color_options":[52,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-1465.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1497","_score":1,"_source":{"id":1497,"sku":"WS08","name":"Minerva LumaTech™ V-Tee","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:18","updated_at":"2019-04-15 08:24:50","product_links":[{"sku":"WS08","link_type":"related","linked_product_sku":"WS09","linked_product_type":"configurable","position":1},{"sku":"WS08","link_type":"related","linked_product_sku":"WP10","linked_product_type":"configurable","position":2},{"sku":"WS08","link_type":"related","linked_product_sku":"WJ03","linked_product_type":"configurable","position":3},{"sku":"WS08","link_type":"related","linked_product_sku":"WS10","linked_product_type":"configurable","position":4},{"sku":"WS08","link_type":"related","linked_product_sku":"WP11","linked_product_type":"configurable","position":5},{"sku":"WS08","link_type":"related","linked_product_sku":"WH03","linked_product_type":"configurable","position":6},{"sku":"WS08","link_type":"related","linked_product_sku":"WH09","linked_product_type":"configurable","position":7},{"sku":"WS08","link_type":"related","linked_product_sku":"WJ06","linked_product_type":"configurable","position":8}],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":32,"description":"

    Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

    \r\n

    • Navy blue heather soft v-neck tee.
    • Flatlock seams for chafe-free comfort.
    • Relaxed cut.
    • Ultra-lightweight fabric.
    • Machine wash/dry.

    ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","category_ids":[25,33,30,2],"options_container":"container2","required_options":"1","has_options":"1","url_key":"minerva-lumatech-trade-v-tee","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":[33,149],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"minerva-lumatech-and-trade-v-tee-1497","links":{"related":[{"sku":"WS09","pos":1},{"sku":"WP10","pos":2},{"sku":"WJ03","pos":3},{"sku":"WS10","pos":4},{"sku":"WP11","pos":5},{"sku":"WH03","pos":6},{"sku":"WH09","pos":7},{"sku":"WJ06","pos":8}]},"stock":{"item_id":1497,"product_id":1497,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"configurable_children":[{"sku":"WS08-XS-Black","id":1482,"status":1,"name":"Minerva LumaTech™ V-Tee-XS-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"167","color":"49","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","url_key":"minerva-lumatech-trade-v-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WS08-XS-Blue","id":1483,"status":1,"name":"Minerva LumaTech™ V-Tee-XS-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"167","color":"50","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","url_key":"minerva-lumatech-trade-v-tee-xs-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS08-XS-Red","id":1484,"status":1,"name":"Minerva LumaTech™ V-Tee-XS-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"167","color":"58","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","url_key":"minerva-lumatech-trade-v-tee-xs-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS08-S-Black","id":1485,"status":1,"name":"Minerva LumaTech™ V-Tee-S-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"168","color":"49","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","url_key":"minerva-lumatech-trade-v-tee-s-black","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS08-S-Blue","id":1486,"status":1,"name":"Minerva LumaTech™ V-Tee-S-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"168","color":"50","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","url_key":"minerva-lumatech-trade-v-tee-s-blue","msrp_display_actual_price_type":"0"},{"sku":"WS08-S-Red","id":1487,"status":1,"name":"Minerva LumaTech™ V-Tee-S-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"168","color":"58","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","url_key":"minerva-lumatech-trade-v-tee-s-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS08-M-Black","id":1488,"status":1,"name":"Minerva LumaTech™ V-Tee-M-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"169","color":"49","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","url_key":"minerva-lumatech-trade-v-tee-m-black","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS08-M-Blue","id":1489,"status":1,"name":"Minerva LumaTech™ V-Tee-M-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"169","color":"50","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","url_key":"minerva-lumatech-trade-v-tee-m-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS08-M-Red","id":1490,"status":1,"name":"Minerva LumaTech™ V-Tee-M-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"169","color":"58","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","url_key":"minerva-lumatech-trade-v-tee-m-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS08-L-Black","id":1491,"status":1,"name":"Minerva LumaTech™ V-Tee-L-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"170","color":"49","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","url_key":"minerva-lumatech-trade-v-tee-l-black","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS08-L-Blue","id":1492,"status":1,"name":"Minerva LumaTech™ V-Tee-L-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"170","color":"50","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","url_key":"minerva-lumatech-trade-v-tee-l-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS08-L-Red","id":1493,"status":1,"name":"Minerva LumaTech™ V-Tee-L-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"170","color":"58","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","url_key":"minerva-lumatech-trade-v-tee-l-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS08-XL-Black","id":1494,"status":1,"name":"Minerva LumaTech™ V-Tee-XL-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"171","color":"49","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","url_key":"minerva-lumatech-trade-v-tee-xl-black","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS08-XL-Blue","id":1495,"status":1,"name":"Minerva LumaTech™ V-Tee-XL-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"171","color":"50","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","url_key":"minerva-lumatech-trade-v-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS08-XL-Red","id":1496,"status":1,"name":"Minerva LumaTech™ V-Tee-XL-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"171","color":"58","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","url_key":"minerva-lumatech-trade-v-tee-xl-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001}],"configurable_options":[{"id":306,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":1497,"attribute_code":"color"},{"id":307,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1497,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-1497.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1513","_score":1,"_source":{"id":1513,"sku":"WS09","name":"Tiffany Fitness Tee","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":28,"description":"

    You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

    \n

    • Teal soft scoop neck tee.
    • Contrast stitching pattern.
    • Machine wash/dry.

    ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"tiffany-fitness-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"136","pattern":"197","climate":[205,209],"slug":"tiffany-fitness-tee-1513","links":{},"stock":{"item_id":1513,"product_id":1513,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS09-XS-Blue","id":1498,"status":1,"name":"Tiffany Fitness Tee-XS-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"167","color":"50","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","url_key":"tiffany-fitness-tee-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WS09-XS-Red","id":1499,"status":1,"name":"Tiffany Fitness Tee-XS-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"167","color":"58","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","url_key":"tiffany-fitness-tee-xs-red","msrp_display_actual_price_type":"0"},{"sku":"WS09-XS-White","id":1500,"status":1,"name":"Tiffany Fitness Tee-XS-White","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"167","color":"59","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","url_key":"tiffany-fitness-tee-xs-white","msrp_display_actual_price_type":"0"},{"sku":"WS09-S-Blue","id":1501,"status":1,"name":"Tiffany Fitness Tee-S-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"168","color":"50","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","url_key":"tiffany-fitness-tee-s-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS09-S-Red","id":1502,"status":1,"name":"Tiffany Fitness Tee-S-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"168","color":"58","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","url_key":"tiffany-fitness-tee-s-red","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS09-S-White","id":1503,"status":1,"name":"Tiffany Fitness Tee-S-White","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"168","color":"59","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","url_key":"tiffany-fitness-tee-s-white","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS09-M-Blue","id":1504,"status":1,"name":"Tiffany Fitness Tee-M-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"169","color":"50","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","url_key":"tiffany-fitness-tee-m-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS09-M-Red","id":1505,"status":1,"name":"Tiffany Fitness Tee-M-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"169","color":"58","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","url_key":"tiffany-fitness-tee-m-red","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS09-M-White","id":1506,"status":1,"name":"Tiffany Fitness Tee-M-White","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"169","color":"59","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","url_key":"tiffany-fitness-tee-m-white","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS09-L-Blue","id":1507,"status":1,"name":"Tiffany Fitness Tee-L-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"170","color":"50","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","url_key":"tiffany-fitness-tee-l-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS09-L-Red","id":1508,"status":1,"name":"Tiffany Fitness Tee-L-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"170","color":"58","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","url_key":"tiffany-fitness-tee-l-red","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS09-L-White","id":1509,"status":1,"name":"Tiffany Fitness Tee-L-White","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"170","color":"59","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","url_key":"tiffany-fitness-tee-l-white","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS09-XL-Blue","id":1510,"status":1,"name":"Tiffany Fitness Tee-XL-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"171","color":"50","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","url_key":"tiffany-fitness-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS09-XL-Red","id":1511,"status":1,"name":"Tiffany Fitness Tee-XL-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"171","color":"58","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","url_key":"tiffany-fitness-tee-xl-red","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS09-XL-White","id":1512,"status":1,"name":"Tiffany Fitness Tee-XL-White","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"171","color":"59","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","url_key":"tiffany-fitness-tee-xl-white","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001}],"configurable_options":[{"id":207,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":1513,"attribute_code":"color"},{"id":206,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1513,"attribute_code":"size"}],"color_options":[50,58,59],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-1513.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1529","_score":1,"_source":{"id":1529,"sku":"WS10","name":"Karissa V-Neck Tee","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":32,"description":"

    The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

    \n

    • Pink heather soft v-neck tee.
    • Luma signature micro sleeves.
    • Semi-fitted.
    • Machine wash/dry.

    ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"karissa-v-neck-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,153],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"karissa-v-neck-tee-1529","links":{},"stock":{"item_id":1529,"product_id":1529,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS10-XS-Green","id":1514,"status":1,"name":"Karissa V-Neck Tee-XS-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"53","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","url_key":"karissa-v-neck-tee-xs-green","msrp_display_actual_price_type":"0"},{"sku":"WS10-XS-Red","id":1515,"status":1,"name":"Karissa V-Neck Tee-XS-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"58","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","url_key":"karissa-v-neck-tee-xs-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-XS-Yellow","id":1516,"status":1,"name":"Karissa V-Neck Tee-XS-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"60","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","url_key":"karissa-v-neck-tee-xs-yellow","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-S-Green","id":1517,"status":1,"name":"Karissa V-Neck Tee-S-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"53","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","url_key":"karissa-v-neck-tee-s-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-S-Red","id":1518,"status":1,"name":"Karissa V-Neck Tee-S-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"58","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","url_key":"karissa-v-neck-tee-s-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-S-Yellow","id":1519,"status":1,"name":"Karissa V-Neck Tee-S-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"60","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","url_key":"karissa-v-neck-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-M-Green","id":1520,"status":1,"name":"Karissa V-Neck Tee-M-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"53","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","url_key":"karissa-v-neck-tee-m-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-M-Red","id":1521,"status":1,"name":"Karissa V-Neck Tee-M-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"58","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","url_key":"karissa-v-neck-tee-m-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-M-Yellow","id":1522,"status":1,"name":"Karissa V-Neck Tee-M-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"60","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","url_key":"karissa-v-neck-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-L-Green","id":1523,"status":1,"name":"Karissa V-Neck Tee-L-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"53","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","url_key":"karissa-v-neck-tee-l-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-L-Red","id":1524,"status":1,"name":"Karissa V-Neck Tee-L-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"58","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","url_key":"karissa-v-neck-tee-l-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-L-Yellow","id":1525,"status":1,"name":"Karissa V-Neck Tee-L-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"60","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","url_key":"karissa-v-neck-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-XL-Green","id":1526,"status":1,"name":"Karissa V-Neck Tee-XL-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"53","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","url_key":"karissa-v-neck-tee-xl-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-XL-Red","id":1527,"status":1,"name":"Karissa V-Neck Tee-XL-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"58","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","url_key":"karissa-v-neck-tee-xl-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-XL-Yellow","id":1528,"status":1,"name":"Karissa V-Neck Tee-XL-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"60","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","url_key":"karissa-v-neck-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001}],"configurable_options":[{"id":209,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":1529,"attribute_code":"color"},{"id":208,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1529,"attribute_code":"size"}],"color_options":[53,58,60],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-1529.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1572","_score":1,"_source":{"id":1572,"sku":"WS01-L-Green","name":"Gwyn Endurance Tee-L-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

    \n

    • Short-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gwyn-endurance-tee-l-green-1572","links":{},"stock":{"item_id":1572,"product_id":1572,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-l-green-1572.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1586","_score":1,"_source":{"id":1586,"sku":"WS05-M-Yellow","name":"Desiree Fitness Tee-M-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

    \n

    • Short-Sleeves.
    • Performance fabric.
    • Machine wash/line dry.

    ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"desiree-fitness-tee-m-yellow-1586","links":{},"stock":{"item_id":1586,"product_id":1586,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-m-yellow-1586.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1576","_score":1,"_source":{"id":1576,"sku":"WS01-XL-Yellow","name":"Gwyn Endurance Tee-XL-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

    \n

    • Short-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gwyn-endurance-tee-xl-yellow-1576","links":{},"stock":{"item_id":1576,"product_id":1576,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xl-yellow-1576.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1587","_score":1,"_source":{"id":1587,"sku":"WS05-L-Black","name":"Desiree Fitness Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

    \n

    • Short-Sleeves.
    • Performance fabric.
    • Machine wash/line dry.

    ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"desiree-fitness-tee-l-black-1587","links":{},"stock":{"item_id":1587,"product_id":1587,"stock_id":1,"qty":62,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-l-black-1587.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1598","_score":1,"_source":{"id":1598,"sku":"WB01-S-Gray","name":"Electra Bra Top-S-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

    \n

    • Gray rouched bra top.
    • Attractive back straps feature contrasting motif fabric.
    • Interior bra top is lined with breathable mesh.
    • Elastic underband for superior support.
    • Removable cup inserts.
    • Chafe-free flat lock seams provide added comfort.

    ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"electra-bra-top-s-gray-1598","links":{},"stock":{"item_id":1598,"product_id":1598,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-s-gray-1598.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1581","_score":1,"_source":{"id":1581,"sku":"WS05-S-Black","name":"Desiree Fitness Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

    \n

    • Short-Sleeves.
    • Performance fabric.
    • Machine wash/line dry.

    ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"desiree-fitness-tee-s-black-1581","links":{},"stock":{"item_id":1581,"product_id":1581,"stock_id":1,"qty":41,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-s-black-1581.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1595","_score":1,"_source":{"id":1595,"sku":"WB01-XS-Gray","name":"Electra Bra Top-XS-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

    \n

    • Gray rouched bra top.
    • Attractive back straps feature contrasting motif fabric.
    • Interior bra top is lined with breathable mesh.
    • Elastic underband for superior support.
    • Removable cup inserts.
    • Chafe-free flat lock seams provide added comfort.

    ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"electra-bra-top-xs-gray-1595","links":{},"stock":{"item_id":1595,"product_id":1595,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xs-gray-1595.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1516","_score":1,"_source":{"id":1516,"sku":"WS10-XS-Yellow","name":"Karissa V-Neck Tee-XS-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

    \n

    • Pink heather soft v-neck tee.
    • Luma signature micro sleeves.
    • Semi-fitted.
    • Machine wash/dry.

    ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"karissa-v-neck-tee-xs-yellow-1516","links":{},"stock":{"item_id":1516,"product_id":1516,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xs-yellow-1516.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1534","_score":1,"_source":{"id":1534,"sku":"WS11-S-Orange","name":"Diva Gym Tee-S-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

    \n

    • Bright yellow v-neck tee.
    • Moisture-wicking fabric.
    • Long-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"diva-gym-tee-s-orange-1534","links":{},"stock":{"item_id":1534,"product_id":1534,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-s-orange-1534.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1547","_score":1,"_source":{"id":1547,"sku":"WS12-XS-Orange","name":"Radiant Tee-XS-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

    So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

    \n

    • Salmon soft scoop neck tee.
    • Athletic, semi-form fit.
    • Flat seams prevent chafing.
    • 67% Organic Cotton / 28% Hemp / 5% Spandex.

    ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"radiant-tee-xs-orange-1547","links":{},"stock":{"item_id":1547,"product_id":1547,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xs-orange-1547.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1540","_score":1,"_source":{"id":1540,"sku":"WS11-L-Orange","name":"Diva Gym Tee-L-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

    \n

    • Bright yellow v-neck tee.
    • Moisture-wicking fabric.
    • Long-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"diva-gym-tee-l-orange-1540","links":{},"stock":{"item_id":1540,"product_id":1540,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-l-orange-1540.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1541","_score":1,"_source":{"id":1541,"sku":"WS11-L-Yellow","name":"Diva Gym Tee-L-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

    \n

    • Bright yellow v-neck tee.
    • Moisture-wicking fabric.
    • Long-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"diva-gym-tee-l-yellow-1541","links":{},"stock":{"item_id":1541,"product_id":1541,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-l-yellow-1541.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1548","_score":1,"_source":{"id":1548,"sku":"WS12-XS-Purple","name":"Radiant Tee-XS-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

    So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

    \n

    • Salmon soft scoop neck tee.
    • Athletic, semi-form fit.
    • Flat seams prevent chafing.
    • 67% Organic Cotton / 28% Hemp / 5% Spandex.

    ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"radiant-tee-xs-purple-1548","links":{},"stock":{"item_id":1548,"product_id":1548,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xs-purple-1548.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1499","_score":1,"_source":{"id":1499,"sku":"WS09-XS-Red","name":"Tiffany Fitness Tee-XS-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

    \n

    • Teal soft scoop neck tee.
    • Contrast stitching pattern.
    • Machine wash/dry.

    ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tiffany-fitness-tee-xs-red-1499","links":{},"stock":{"item_id":1499,"product_id":1499,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xs-red-1499.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1474","_score":1,"_source":{"id":1474,"sku":"WS07-M-Yellow","name":"Juliana Short-Sleeve Tee-M-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

    \n

    • Black scoop neck tee.
    • Side rouching.
    • Relaxed fit.

    ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juliana-short-sleeve-tee-m-yellow-1474","links":{},"stock":{"item_id":1474,"product_id":1474,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-m-yellow-1474.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1457","_score":1,"_source":{"id":1457,"sku":"WS06-M-Purple","name":"Elisa EverCool™ Tee-M-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

    \n

    • Purple heather v-neck tee.
    • Short-Sleeves.
    • Luma EverCool™ fabric.
    • Machine wash/line dry.

    ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"elisa-evercool-and-trade-tee-m-purple-1457","links":{},"stock":{"item_id":1457,"product_id":1457,"stock_id":1,"qty":61,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-m-purple-1457.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1558","_score":1,"_source":{"id":1558,"sku":"WS12-XL-Blue","name":"Radiant Tee-XL-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

    So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

    \n

    • Salmon soft scoop neck tee.
    • Athletic, semi-form fit.
    • Flat seams prevent chafing.
    • 67% Organic Cotton / 28% Hemp / 5% Spandex.

    ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"radiant-tee-xl-blue-1558","links":{},"stock":{"item_id":1558,"product_id":1558,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xl-blue-1558.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1571","_score":1,"_source":{"id":1571,"sku":"WS01-L-Black","name":"Gwyn Endurance Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

    \n

    • Short-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gwyn-endurance-tee-l-black-1571","links":{},"stock":{"item_id":1571,"product_id":1571,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-l-black-1571.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1574","_score":1,"_source":{"id":1574,"sku":"WS01-XL-Black","name":"Gwyn Endurance Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

    \n

    • Short-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gwyn-endurance-tee-xl-black-1574","links":{},"stock":{"item_id":1574,"product_id":1574,"stock_id":1,"qty":64,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xl-black-1574.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1555","_score":1,"_source":{"id":1555,"sku":"WS12-L-Blue","name":"Radiant Tee-L-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

    So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

    \n

    • Salmon soft scoop neck tee.
    • Athletic, semi-form fit.
    • Flat seams prevent chafing.
    • 67% Organic Cotton / 28% Hemp / 5% Spandex.

    ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"radiant-tee-l-blue-1555","links":{},"stock":{"item_id":1555,"product_id":1555,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-l-blue-1555.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1551","_score":1,"_source":{"id":1551,"sku":"WS12-S-Purple","name":"Radiant Tee-S-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

    So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

    \n

    • Salmon soft scoop neck tee.
    • Athletic, semi-form fit.
    • Flat seams prevent chafing.
    • 67% Organic Cotton / 28% Hemp / 5% Spandex.

    ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"radiant-tee-s-purple-1551","links":{},"stock":{"item_id":1551,"product_id":1551,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-s-purple-1551.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1470","_score":1,"_source":{"id":1470,"sku":"WS07-S-White","name":"Juliana Short-Sleeve Tee-S-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

    \n

    • Black scoop neck tee.
    • Side rouching.
    • Relaxed fit.

    ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juliana-short-sleeve-tee-s-white-1470","links":{},"stock":{"item_id":1470,"product_id":1470,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-s-white-1470.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1521","_score":1,"_source":{"id":1521,"sku":"WS10-M-Red","name":"Karissa V-Neck Tee-M-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

    \n

    • Pink heather soft v-neck tee.
    • Luma signature micro sleeves.
    • Semi-fitted.
    • Machine wash/dry.

    ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"karissa-v-neck-tee-m-red-1521","links":{},"stock":{"item_id":1521,"product_id":1521,"stock_id":1,"qty":45,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-m-red-1521.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1625","_score":1,"_source":{"id":1625,"sku":"WB02","name":"Erica Evercool Sports Bra","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":39,"description":"

    Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

    \n

    • Honeycomb light blue bra top.
    • Elastic hem.
    • Reinforced binding.
    • Machine wash/dry.

    ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"erica-evercool-sports-bra","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,149],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"131","pattern":"197","climate":[205,209],"slug":"erica-evercool-sports-bra-1625","links":{},"stock":{"item_id":1625,"product_id":1625,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WB02-XS-Blue","id":1610,"status":1,"name":"Erica Evercool Sports Bra-XS-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"50","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","url_key":"erica-evercool-sports-bra-xs-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-XS-Orange","id":1611,"status":1,"name":"Erica Evercool Sports Bra-XS-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"56","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","url_key":"erica-evercool-sports-bra-xs-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-XS-Yellow","id":1612,"status":1,"name":"Erica Evercool Sports Bra-XS-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"60","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","url_key":"erica-evercool-sports-bra-xs-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-S-Blue","id":1613,"status":1,"name":"Erica Evercool Sports Bra-S-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"50","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","url_key":"erica-evercool-sports-bra-s-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-S-Orange","id":1614,"status":1,"name":"Erica Evercool Sports Bra-S-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"56","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","url_key":"erica-evercool-sports-bra-s-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-S-Yellow","id":1615,"status":1,"name":"Erica Evercool Sports Bra-S-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"60","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","url_key":"erica-evercool-sports-bra-s-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-M-Blue","id":1616,"status":1,"name":"Erica Evercool Sports Bra-M-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"50","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","url_key":"erica-evercool-sports-bra-m-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-M-Orange","id":1617,"status":1,"name":"Erica Evercool Sports Bra-M-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"56","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","url_key":"erica-evercool-sports-bra-m-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-M-Yellow","id":1618,"status":1,"name":"Erica Evercool Sports Bra-M-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"60","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","url_key":"erica-evercool-sports-bra-m-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-L-Blue","id":1619,"status":1,"name":"Erica Evercool Sports Bra-L-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"50","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","url_key":"erica-evercool-sports-bra-l-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-L-Orange","id":1620,"status":1,"name":"Erica Evercool Sports Bra-L-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"56","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","url_key":"erica-evercool-sports-bra-l-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-L-Yellow","id":1621,"status":1,"name":"Erica Evercool Sports Bra-L-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"60","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","url_key":"erica-evercool-sports-bra-l-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-XL-Blue","id":1622,"status":1,"name":"Erica Evercool Sports Bra-XL-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"50","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","url_key":"erica-evercool-sports-bra-xl-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-XL-Orange","id":1623,"status":1,"name":"Erica Evercool Sports Bra-XL-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"56","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","url_key":"erica-evercool-sports-bra-xl-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-XL-Yellow","id":1624,"status":1,"name":"Erica Evercool Sports Bra-XL-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"60","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","url_key":"erica-evercool-sports-bra-xl-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001}],"configurable_options":[{"id":221,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1625,"attribute_code":"color"},{"id":220,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1625,"attribute_code":"size"}],"color_options":[50,56,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-1625.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1712","_score":1,"_source":{"id":1712,"sku":"WT03-M-Orange","name":"Nora Practice Tank-M-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

    \n

    • Pink stripped tank with side rouching.
    • Pre-shrunk.
    • Garment dyed.
    • 92% Organic Cotton/8% Lycra.

    ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nora-practice-tank-m-orange-1712","links":{},"stock":{"item_id":1712,"product_id":1712,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-m-orange-1712.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1701","_score":1,"_source":{"id":1701,"sku":"WT02-L-Yellow","name":"Zoe Tank-L-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

    \n

    • Salmon heather tank top.
    • 1\" elastic band on inner bra.
    • Mesh lining on shelf bra for support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoe-tank-l-yellow-1701","links":{},"stock":{"item_id":1701,"product_id":1701,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-l-yellow-1701.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1726","_score":1,"_source":{"id":1726,"sku":"WT04-S-Purple","name":"Nona Fitness Tank-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

    \n

    • Blue/white striped mesh tank.
    • Relaxed fit.
    • Chafe-resistant trim around armholes and collar.
    • Machine wash/dry.

    ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nona-fitness-tank-s-purple-1726","links":{},"stock":{"item_id":1726,"product_id":1726,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-s-purple-1726.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1733","_score":1,"_source":{"id":1733,"sku":"WT04-L-Red","name":"Nona Fitness Tank-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

    \n

    • Blue/white striped mesh tank.
    • Relaxed fit.
    • Chafe-resistant trim around armholes and collar.
    • Machine wash/dry.

    ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nona-fitness-tank-l-red-1733","links":{},"stock":{"item_id":1733,"product_id":1733,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-l-red-1733.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1732","_score":1,"_source":{"id":1732,"sku":"WT04-L-Purple","name":"Nona Fitness Tank-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

    \n

    • Blue/white striped mesh tank.
    • Relaxed fit.
    • Chafe-resistant trim around armholes and collar.
    • Machine wash/dry.

    ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nona-fitness-tank-l-purple-1732","links":{},"stock":{"item_id":1732,"product_id":1732,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-l-purple-1732.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1742","_score":1,"_source":{"id":1742,"sku":"WT05-S-Purple","name":"Leah Yoga Top-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

    \n

    • Blue heather rouched tank top.
    • Camisole tank top.
    • Banding and shirring details.
    • Body hugging fit.
    • Contrast topstitch.
    • Interior shelf bra with shapewear technology.
    • 65% Polyester 35% Cotton.

    ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"leah-yoga-top-s-purple-1742","links":{},"stock":{"item_id":1742,"product_id":1742,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-s-purple-1742.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1709","_score":1,"_source":{"id":1709,"sku":"WT03-S-Orange","name":"Nora Practice Tank-S-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

    \n

    • Pink stripped tank with side rouching.
    • Pre-shrunk.
    • Garment dyed.
    • 92% Organic Cotton/8% Lycra.

    ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nora-practice-tank-s-orange-1709","links":{},"stock":{"item_id":1709,"product_id":1709,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-s-orange-1709.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1723","_score":1,"_source":{"id":1723,"sku":"WT04-XS-Purple","name":"Nona Fitness Tank-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

    \n

    • Blue/white striped mesh tank.
    • Relaxed fit.
    • Chafe-resistant trim around armholes and collar.
    • Machine wash/dry.

    ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nona-fitness-tank-xs-purple-1723","links":{},"stock":{"item_id":1723,"product_id":1723,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xs-purple-1723.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1717","_score":1,"_source":{"id":1717,"sku":"WT03-L-Red","name":"Nora Practice Tank-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

    \n

    • Pink stripped tank with side rouching.
    • Pre-shrunk.
    • Garment dyed.
    • 92% Organic Cotton/8% Lycra.

    ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nora-practice-tank-l-red-1717","links":{},"stock":{"item_id":1717,"product_id":1717,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-l-red-1717.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1718","_score":1,"_source":{"id":1718,"sku":"WT03-XL-Orange","name":"Nora Practice Tank-XL-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

    \n

    • Pink stripped tank with side rouching.
    • Pre-shrunk.
    • Garment dyed.
    • 92% Organic Cotton/8% Lycra.

    ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nora-practice-tank-xl-orange-1718","links":{},"stock":{"item_id":1718,"product_id":1718,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xl-orange-1718.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1656","_score":1,"_source":{"id":1656,"sku":"WB04-XL-Yellow","name":"Prima Compete Bra Top-XL-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
    `
    • Colorblocked details.
    • Machine wash/line dry.

    ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"prima-compete-bra-top-xl-yellow-1656","links":{},"stock":{"item_id":1656,"product_id":1656,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xl-yellow-1656.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1655","_score":1,"_source":{"id":1655,"sku":"WB04-XL-Purple","name":"Prima Compete Bra Top-XL-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
    `
    • Colorblocked details.
    • Machine wash/line dry.

    ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"prima-compete-bra-top-xl-purple-1655","links":{},"stock":{"item_id":1655,"product_id":1655,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xl-purple-1655.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1670","_score":1,"_source":{"id":1670,"sku":"WB05-XL-Black","name":"Lucia Cross-Fit Bra -XL-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

    \n

    • Black/white bra top.
    • Criss-cross back design.
    • Machine wash/dry.

    ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lucia-cross-fit-bra-xl-black-1670","links":{},"stock":{"item_id":1670,"product_id":1670,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xl-black-1670.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1683","_score":1,"_source":{"id":1683,"sku":"WT01-L-Black","name":"Bella Tank-L-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

    \n

    • Navy blue tank top - cotton.
    • Feminine scoop neckline.
    • Power mesh lining in shelf bra for superior support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bella-tank-l-black-1683","links":{},"stock":{"item_id":1683,"product_id":1683,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-l-black-1683.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1602","_score":1,"_source":{"id":1602,"sku":"WB01-M-Purple","name":"Electra Bra Top-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

    \n

    • Gray rouched bra top.
    • Attractive back straps feature contrasting motif fabric.
    • Interior bra top is lined with breathable mesh.
    • Elastic underband for superior support.
    • Removable cup inserts.
    • Chafe-free flat lock seams provide added comfort.

    ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"electra-bra-top-m-purple-1602","links":{},"stock":{"item_id":1602,"product_id":1602,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-m-purple-1602.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1629","_score":1,"_source":{"id":1629,"sku":"WB03-S-Green","name":"Celeste Sports Bra-S-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

    \n

    • Mint bra top.
    • Seam-free interior molded cups
    • Odor control.
    • UV protection.
    • Machine wash/dry.

    ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"celeste-sports-bra-s-green-1629","links":{},"stock":{"item_id":1629,"product_id":1629,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-s-green-1629.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1605","_score":1,"_source":{"id":1605,"sku":"WB01-L-Purple","name":"Electra Bra Top-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

    \n

    • Gray rouched bra top.
    • Attractive back straps feature contrasting motif fabric.
    • Interior bra top is lined with breathable mesh.
    • Elastic underband for superior support.
    • Removable cup inserts.
    • Chafe-free flat lock seams provide added comfort.

    ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"electra-bra-top-l-purple-1605","links":{},"stock":{"item_id":1605,"product_id":1605,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-l-purple-1605.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1618","_score":1,"_source":{"id":1618,"sku":"WB02-M-Yellow","name":"Erica Evercool Sports Bra-M-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

    \n

    • Honeycomb light blue bra top.
    • Elastic hem.
    • Reinforced binding.
    • Machine wash/dry.

    ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erica-evercool-sports-bra-m-yellow-1618","links":{},"stock":{"item_id":1618,"product_id":1618,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-m-yellow-1618.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1628","_score":1,"_source":{"id":1628,"sku":"WB03-XS-Yellow","name":"Celeste Sports Bra-XS-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

    \n

    • Mint bra top.
    • Seam-free interior molded cups
    • Odor control.
    • UV protection.
    • Machine wash/dry.

    ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"celeste-sports-bra-xs-yellow-1628","links":{},"stock":{"item_id":1628,"product_id":1628,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xs-yellow-1628.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1632","_score":1,"_source":{"id":1632,"sku":"WB03-M-Green","name":"Celeste Sports Bra-M-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

    \n

    • Mint bra top.
    • Seam-free interior molded cups
    • Odor control.
    • UV protection.
    • Machine wash/dry.

    ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"celeste-sports-bra-m-green-1632","links":{},"stock":{"item_id":1632,"product_id":1632,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-m-green-1632.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1640","_score":1,"_source":{"id":1640,"sku":"WB03-XL-Yellow","name":"Celeste Sports Bra-XL-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

    \n

    • Mint bra top.
    • Seam-free interior molded cups
    • Odor control.
    • UV protection.
    • Machine wash/dry.

    ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"celeste-sports-bra-xl-yellow-1640","links":{},"stock":{"item_id":1640,"product_id":1640,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xl-yellow-1640.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1646","_score":1,"_source":{"id":1646,"sku":"WB04-S-Purple","name":"Prima Compete Bra Top-S-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
    `
    • Colorblocked details.
    • Machine wash/line dry.

    ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"prima-compete-bra-top-s-purple-1646","links":{},"stock":{"item_id":1646,"product_id":1646,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-s-purple-1646.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1654","_score":1,"_source":{"id":1654,"sku":"WB04-XL-Blue","name":"Prima Compete Bra Top-XL-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
    `
    • Colorblocked details.
    • Machine wash/line dry.

    ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"prima-compete-bra-top-xl-blue-1654","links":{},"stock":{"item_id":1654,"product_id":1654,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xl-blue-1654.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1661","_score":1,"_source":{"id":1661,"sku":"WB05-S-Black","name":"Lucia Cross-Fit Bra -S-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

    \n

    • Black/white bra top.
    • Criss-cross back design.
    • Machine wash/dry.

    ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lucia-cross-fit-bra-s-black-1661","links":{},"stock":{"item_id":1661,"product_id":1661,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-s-black-1661.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1697","_score":1,"_source":{"id":1697,"sku":"WT02-M-Orange","name":"Zoe Tank-M-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

    \n

    • Salmon heather tank top.
    • 1\" elastic band on inner bra.
    • Mesh lining on shelf bra for support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoe-tank-m-orange-1697","links":{},"stock":{"item_id":1697,"product_id":1697,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-m-orange-1697.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1785","_score":1,"_source":{"id":1785,"sku":"WT07","name":"Maya Tunic","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

    \n

    • Mint green heather tunic-style tank.
    • Wrapped back with cut out detail.
    • Drawcord detail at end.
    • Abutted seams.

    ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"maya-tunic","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"maya-tunic-1785","links":{},"stock":{"item_id":1785,"product_id":1785,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT07-XS-Green","id":1770,"status":1,"name":"Maya Tunic-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"167","color":"53","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","url_key":"maya-tunic-xs-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-XS-White","id":1771,"status":1,"name":"Maya Tunic-XS-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"167","color":"59","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","url_key":"maya-tunic-xs-white","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-XS-Yellow","id":1772,"status":1,"name":"Maya Tunic-XS-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"167","color":"60","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","url_key":"maya-tunic-xs-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-S-Green","id":1773,"status":1,"name":"Maya Tunic-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"168","color":"53","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","url_key":"maya-tunic-s-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-S-White","id":1774,"status":1,"name":"Maya Tunic-S-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"168","color":"59","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","url_key":"maya-tunic-s-white","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-S-Yellow","id":1775,"status":1,"name":"Maya Tunic-S-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"168","color":"60","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","url_key":"maya-tunic-s-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-M-Green","id":1776,"status":1,"name":"Maya Tunic-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"169","color":"53","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","url_key":"maya-tunic-m-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-M-White","id":1777,"status":1,"name":"Maya Tunic-M-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"169","color":"59","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","url_key":"maya-tunic-m-white","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-M-Yellow","id":1778,"status":1,"name":"Maya Tunic-M-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"169","color":"60","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","url_key":"maya-tunic-m-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-L-Green","id":1779,"status":1,"name":"Maya Tunic-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"170","color":"53","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","url_key":"maya-tunic-l-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-L-White","id":1780,"status":1,"name":"Maya Tunic-L-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"170","color":"59","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","url_key":"maya-tunic-l-white","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-L-Yellow","id":1781,"status":1,"name":"Maya Tunic-L-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"170","color":"60","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","url_key":"maya-tunic-l-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-XL-Green","id":1782,"status":1,"name":"Maya Tunic-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"171","color":"53","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","url_key":"maya-tunic-xl-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-XL-White","id":1783,"status":1,"name":"Maya Tunic-XL-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"171","color":"59","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","url_key":"maya-tunic-xl-white","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-XL-Yellow","id":1784,"status":1,"name":"Maya Tunic-XL-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"171","color":"60","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","url_key":"maya-tunic-xl-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":241,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":1785,"attribute_code":"color"},{"id":240,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1785,"attribute_code":"size"}],"color_options":[53,59,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-1785.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1831","_score":1,"_source":{"id":1831,"sku":"WP02","name":"Emma Leggings","attribute_set_id":10,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":42,"description":"

    These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

    \n

    • Light blue heather yoga pants.
    • Body hugging fit.
    • Low rise fit.

    ","image":"/w/p/wp02-blue_main.jpg","small_image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"emma-leggings","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"113","pattern":"197","climate":[204,205,206,208],"slug":"emma-leggings-1831","links":{},"stock":{"item_id":1831,"product_id":1831,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp02-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP02-28-Blue","id":1825,"status":1,"name":"Emma Leggings-28-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"50","image":"/w/p/wp02-blue_main.jpg","small_image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","url_key":"emma-leggings-28-blue","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WP02-28-Purple","id":1826,"status":1,"name":"Emma Leggings-28-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"57","image":"/w/p/wp02-purple_main.jpg","small_image":"/w/p/wp02-purple_main.jpg","thumbnail":"/w/p/wp02-purple_main.jpg","url_key":"emma-leggings-28-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WP02-28-Red","id":1827,"status":1,"name":"Emma Leggings-28-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"58","image":"/w/p/wp02-red_main.jpg","small_image":"/w/p/wp02-red_main.jpg","thumbnail":"/w/p/wp02-red_main.jpg","url_key":"emma-leggings-28-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WP02-29-Blue","id":1828,"status":1,"name":"Emma Leggings-29-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"50","image":"/w/p/wp02-blue_main.jpg","small_image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","url_key":"emma-leggings-29-blue","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WP02-29-Purple","id":1829,"status":1,"name":"Emma Leggings-29-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"57","image":"/w/p/wp02-purple_main.jpg","small_image":"/w/p/wp02-purple_main.jpg","thumbnail":"/w/p/wp02-purple_main.jpg","url_key":"emma-leggings-29-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WP02-29-Red","id":1830,"status":1,"name":"Emma Leggings-29-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"58","image":"/w/p/wp02-red_main.jpg","small_image":"/w/p/wp02-red_main.jpg","thumbnail":"/w/p/wp02-red_main.jpg","url_key":"emma-leggings-29-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001}],"configurable_options":[{"id":249,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1831,"attribute_code":"color"},{"id":248,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1831,"attribute_code":"size"}],"color_options":[50,57,58],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-1831.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1771","_score":1,"_source":{"id":1771,"sku":"WT07-XS-White","name":"Maya Tunic-XS-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

    \n

    • Mint green heather tunic-style tank.
    • Wrapped back with cut out detail.
    • Drawcord detail at end.
    • Abutted seams.

    ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"maya-tunic-xs-white-1771","links":{},"stock":{"item_id":1771,"product_id":1771,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xs-white-1771.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1777","_score":1,"_source":{"id":1777,"sku":"WT07-M-White","name":"Maya Tunic-M-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

    \n

    • Mint green heather tunic-style tank.
    • Wrapped back with cut out detail.
    • Drawcord detail at end.
    • Abutted seams.

    ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"maya-tunic-m-white-1777","links":{},"stock":{"item_id":1777,"product_id":1777,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-m-white-1777.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1790","_score":1,"_source":{"id":1790,"sku":"WT08-S-Purple","name":"Antonia Racer Tank-S-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

    \n

    • Machine wash.
    • Line dry.

    ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"antonia-racer-tank-s-purple-1790","links":{},"stock":{"item_id":1790,"product_id":1790,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-s-purple-1790.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1795","_score":1,"_source":{"id":1795,"sku":"WT08-L-Black","name":"Antonia Racer Tank-L-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

    \n

    • Machine wash.
    • Line dry.

    ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"antonia-racer-tank-l-black-1795","links":{},"stock":{"item_id":1795,"product_id":1795,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-l-black-1795.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1772","_score":1,"_source":{"id":1772,"sku":"WT07-XS-Yellow","name":"Maya Tunic-XS-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

    \n

    • Mint green heather tunic-style tank.
    • Wrapped back with cut out detail.
    • Drawcord detail at end.
    • Abutted seams.

    ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"maya-tunic-xs-yellow-1772","links":{},"stock":{"item_id":1772,"product_id":1772,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xs-yellow-1772.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1758","_score":1,"_source":{"id":1758,"sku":"WT06-S-Red","name":"Chloe Compete Tank-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

    \n

    • Royal blue tank top - nylon/spandex.
    • Flatlock stitching.
    • Moisture-wicking fabric.
    • Ergonomic seaming.
    • Machine wash/dry.

    ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chloe-compete-tank-s-red-1758","links":{},"stock":{"item_id":1758,"product_id":1758,"stock_id":1,"qty":45,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-s-red-1758.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1766","_score":1,"_source":{"id":1766,"sku":"WT06-XL-Blue","name":"Chloe Compete Tank-XL-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

    \n

    • Royal blue tank top - nylon/spandex.
    • Flatlock stitching.
    • Moisture-wicking fabric.
    • Ergonomic seaming.
    • Machine wash/dry.

    ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chloe-compete-tank-xl-blue-1766","links":{},"stock":{"item_id":1766,"product_id":1766,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xl-blue-1766.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1765","_score":1,"_source":{"id":1765,"sku":"WT06-L-Yellow","name":"Chloe Compete Tank-L-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

    \n

    • Royal blue tank top - nylon/spandex.
    • Flatlock stitching.
    • Moisture-wicking fabric.
    • Ergonomic seaming.
    • Machine wash/dry.

    ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chloe-compete-tank-l-yellow-1765","links":{},"stock":{"item_id":1765,"product_id":1765,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-l-yellow-1765.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1870","_score":1,"_source":{"id":1870,"sku":"WP08-29-Black","name":"Bardot Capri-29-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

    \n

    • Black capris with pink waistband.
    • Cropped leggings.
    • Waistband drawcord.
    • Flat, thin and flattering.
    • Made with organic fabric.

    ","image":"/w/p/wp08-black_main.jpg","small_image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bardot-capri-29-black-1870","links":{},"stock":{"item_id":1870,"product_id":1870,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-29-black-1870.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1871","_score":1,"_source":{"id":1871,"sku":"WP08-29-Green","name":"Bardot Capri-29-Green","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

    \n

    • Black capris with pink waistband.
    • Cropped leggings.
    • Waistband drawcord.
    • Flat, thin and flattering.
    • Made with organic fabric.

    ","image":"/w/p/wp08-green_main.jpg","small_image":"/w/p/wp08-green_main.jpg","thumbnail":"/w/p/wp08-green_main.jpg","color":"53","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bardot-capri-29-green-1871","links":{},"stock":{"item_id":1871,"product_id":1871,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-29-green-1871.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1885","_score":1,"_source":{"id":1885,"sku":"WP10-29-Gray","name":"Daria Bikram Pant-29-Gray","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

    \n

    • Heather gray capris with pink striped waist.
    • Flatlock seams.
    • Interior pocket.

    ","image":"/w/p/wp10-gray_main.jpg","small_image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","color":"52","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"daria-bikram-pant-29-gray-1885","links":{},"stock":{"item_id":1885,"product_id":1885,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-29-gray-1885.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1804","_score":1,"_source":{"id":1804,"sku":"WT09-XS-Yellow","name":"Breathe-Easy Tank-XS-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

    \n

    • Machine wash/dry.
    • Cocona® fabric.

    ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"breathe-easy-tank-xs-yellow-1804","links":{},"stock":{"item_id":1804,"product_id":1804,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xs-yellow-1804.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1825","_score":1,"_source":{"id":1825,"sku":"WP02-28-Blue","name":"Emma Leggings-28-Blue","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

    \n

    • Light blue heather yoga pants.
    • Body hugging fit.
    • Low rise fit.

    ","image":"/w/p/wp02-blue_main.jpg","small_image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"emma-leggings-28-blue-1825","links":{},"stock":{"item_id":1825,"product_id":1825,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp02-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-28-blue-1825.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1837","_score":1,"_source":{"id":1837,"sku":"WP03-29-Purple","name":"Ida Workout Parachute Pant-29-Purple","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

    \n

    • Royal blue parachute pants.
    • Contrast stripe.
    • Relaxed fit.
    • Drawstring closure.
    • Machine wash/dry.

    ","image":"/w/p/wp03-purple_main.jpg","small_image":"/w/p/wp03-purple_main.jpg","thumbnail":"/w/p/wp03-purple_main.jpg","color":"57","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ida-workout-parachute-pant-29-purple-1837","links":{},"stock":{"item_id":1837,"product_id":1837,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-29-purple-1837.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1849","_score":1,"_source":{"id":1849,"sku":"WP05-29-Blue","name":"Sahara Leggings-29-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

    Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

    \n

    • Pinstripe legging with rouched ankles.
    • Secret pocket at waistband.
    • Flat seams for comfort.
    • Shaped fit with low rise.
    • 4-way stretch, moisture-wicking material.

    ","image":"/w/p/wp05-blue_main.jpg","small_image":"/w/p/wp05-blue_main.jpg","thumbnail":"/w/p/wp05-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sahara-leggings-29-blue-1849","links":{},"stock":{"item_id":1849,"product_id":1849,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-29-blue-1849.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1891","_score":1,"_source":{"id":1891,"sku":"WP11-29-Blue","name":"Sylvia Capri-29-Blue","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

    \n

    • Green striped capri.
    • Strategic side seam
    • Comfort gusset with lining.
    • Flat seaming.
    • Wide waistband.
    • Moisture wicking.

    ","image":"/w/p/wp11-blue_main.jpg","small_image":"/w/p/wp11-blue_main.jpg","thumbnail":"/w/p/wp11-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sylvia-capri-29-blue-1891","links":{},"stock":{"item_id":1891,"product_id":1891,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-29-blue-1891.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1883","_score":1,"_source":{"id":1883,"sku":"WP10-28-White","name":"Daria Bikram Pant-28-White","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

    \n

    • Heather gray capris with pink striped waist.
    • Flatlock seams.
    • Interior pocket.

    ","image":"/w/p/wp10-white_main.jpg","small_image":"/w/p/wp10-white_main.jpg","thumbnail":"/w/p/wp10-white_main.jpg","color":"59","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"daria-bikram-pant-28-white-1883","links":{},"stock":{"item_id":1883,"product_id":1883,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-28-white-1883.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1858","_score":1,"_source":{"id":1858,"sku":"WP06-29-Orange","name":"Diana Tights-29-Orange","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

    \n

    • Black legging with slate details.
    • Flat-lock, chafe-free side seams.
    • Vented gusset.
    • Secret interior pocket.
    • Sustainable and recycled fabric.

    ","image":"/w/p/wp06-orange_main.jpg","small_image":"/w/p/wp06-orange_main.jpg","thumbnail":"/w/p/wp06-orange_main.jpg","color":"56","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"diana-tights-29-orange-1858","links":{},"stock":{"item_id":1858,"product_id":1858,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-29-orange-1858.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1901","_score":1,"_source":{"id":1901,"sku":"WP12","name":"Deirdre Relaxed-Fit Capri","attribute_set_id":10,"price":63,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":63,"description":"

    Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

    \n

    • Heather gray capris with mint green waist & accents.
    • Comfortable, relaxed fit with high rise.
    • Moisture-wicking, 4-way stretch construction.
    • Lined with mesh for better support.
    • Hidden pocket at waistband.
    • Flatlock seams and lined gusset for comfort.

    ","image":"/w/p/wp12-gray_main.jpg","small_image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"deirdre-relaxed-fit-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154,39],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"107","pattern":"195","climate":[205,212,206],"slug":"deirdre-relaxed-fit-capri-1901","links":{},"stock":{"item_id":1901,"product_id":1901,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP12-28-Blue","id":1895,"status":1,"name":"Deirdre Relaxed-Fit Capri-28-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"50","image":"/w/p/wp12-blue_main.jpg","small_image":"/w/p/wp12-blue_main.jpg","thumbnail":"/w/p/wp12-blue_main.jpg","url_key":"deirdre-relaxed-fit-capri-28-blue","msrp_display_actual_price_type":"0"},{"sku":"WP12-28-Gray","id":1896,"status":1,"name":"Deirdre Relaxed-Fit Capri-28-Gray","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"52","image":"/w/p/wp12-gray_main.jpg","small_image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","url_key":"deirdre-relaxed-fit-capri-28-gray","msrp_display_actual_price_type":"0"},{"sku":"WP12-28-Green","id":1897,"status":1,"name":"Deirdre Relaxed-Fit Capri-28-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"53","image":"/w/p/wp12-green_main.jpg","small_image":"/w/p/wp12-green_main.jpg","thumbnail":"/w/p/wp12-green_main.jpg","url_key":"deirdre-relaxed-fit-capri-28-green","msrp_display_actual_price_type":"0"},{"sku":"WP12-29-Blue","id":1898,"status":1,"name":"Deirdre Relaxed-Fit Capri-29-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"50","image":"/w/p/wp12-blue_main.jpg","small_image":"/w/p/wp12-blue_main.jpg","thumbnail":"/w/p/wp12-blue_main.jpg","url_key":"deirdre-relaxed-fit-capri-29-blue","msrp_display_actual_price_type":"0"},{"sku":"WP12-29-Gray","id":1899,"status":1,"name":"Deirdre Relaxed-Fit Capri-29-Gray","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"52","image":"/w/p/wp12-gray_main.jpg","small_image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","url_key":"deirdre-relaxed-fit-capri-29-gray","msrp_display_actual_price_type":"0"},{"sku":"WP12-29-Green","id":1900,"status":1,"name":"Deirdre Relaxed-Fit Capri-29-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"53","image":"/w/p/wp12-green_main.jpg","small_image":"/w/p/wp12-green_main.jpg","thumbnail":"/w/p/wp12-green_main.jpg","url_key":"deirdre-relaxed-fit-capri-29-green","msrp_display_actual_price_type":"0"}],"configurable_options":[{"id":269,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":1901,"attribute_code":"color"},{"id":268,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1901,"attribute_code":"size"}],"color_options":[50,52,53],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-1901.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1942","_score":1,"_source":{"id":1942,"sku":"WSH03-28-Gray","name":"Gwen Drawstring Bike Short-28-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

    \n

    • Dark heather gray rouched bike shorts.
    • Fitted. Inseam: 2\".
    • Machine wash/dry.

    ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"gwen-drawstring-bike-short-28-gray-1942","links":{},"stock":{"item_id":1942,"product_id":1942,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-28-gray-1942.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1988","_score":1,"_source":{"id":1988,"sku":"WSH05","name":"Bess Yoga Short","attribute_set_id":10,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":28,"description":"

    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

    \n

    • Navy cotton shorts with light bue waist detail.
    • Front shirred waistband.
    • Flat-lock, chafe-free side seams.
    • Vented gusset.
    • Hidden interior pocket.
    • Sustainable and recycled fabric.

    ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"bess-yoga-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,156,36],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_bottom":"106","pattern":"198","climate":[202,212,209],"slug":"bess-yoga-short-1988","links":{},"stock":{"item_id":1988,"product_id":1988,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH05-28-Blue","id":1973,"status":1,"name":"Bess Yoga Short-28-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"172","color":"50","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","url_key":"bess-yoga-short-28-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-28-Purple","id":1974,"status":1,"name":"Bess Yoga Short-28-Purple","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"172","color":"57","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","url_key":"bess-yoga-short-28-purple","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-28-Yellow","id":1975,"status":1,"name":"Bess Yoga Short-28-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"172","color":"60","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","url_key":"bess-yoga-short-28-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-29-Blue","id":1976,"status":1,"name":"Bess Yoga Short-29-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"173","color":"50","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","url_key":"bess-yoga-short-29-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-29-Purple","id":1977,"status":1,"name":"Bess Yoga Short-29-Purple","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"173","color":"57","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","url_key":"bess-yoga-short-29-purple","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-29-Yellow","id":1978,"status":1,"name":"Bess Yoga Short-29-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"173","color":"60","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","url_key":"bess-yoga-short-29-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-30-Blue","id":1979,"status":1,"name":"Bess Yoga Short-30-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"174","color":"50","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","url_key":"bess-yoga-short-30-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-30-Purple","id":1980,"status":1,"name":"Bess Yoga Short-30-Purple","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"174","color":"57","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","url_key":"bess-yoga-short-30-purple","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-30-Yellow","id":1981,"status":1,"name":"Bess Yoga Short-30-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"174","color":"60","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","url_key":"bess-yoga-short-30-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-31-Blue","id":1982,"status":1,"name":"Bess Yoga Short-31-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"175","color":"50","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","url_key":"bess-yoga-short-31-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-31-Purple","id":1983,"status":1,"name":"Bess Yoga Short-31-Purple","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"175","color":"57","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","url_key":"bess-yoga-short-31-purple","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-31-Yellow","id":1984,"status":1,"name":"Bess Yoga Short-31-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"175","color":"60","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","url_key":"bess-yoga-short-31-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-32-Blue","id":1985,"status":1,"name":"Bess Yoga Short-32-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"176","color":"50","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","url_key":"bess-yoga-short-32-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-32-Purple","id":1986,"status":1,"name":"Bess Yoga Short-32-Purple","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"176","color":"57","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","url_key":"bess-yoga-short-32-purple","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-32-Yellow","id":1987,"status":1,"name":"Bess Yoga Short-32-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"176","color":"60","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","url_key":"bess-yoga-short-32-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001}],"configurable_options":[{"id":281,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"},{"value_index":60,"label":"Yellow"}],"product_id":1988,"attribute_code":"color"},{"id":280,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1988,"attribute_code":"size"}],"color_options":[50,57,60],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-1988.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1935","_score":1,"_source":{"id":1935,"sku":"WSH02-31-Orange","name":"Maxima Drawstring Short-31-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

    \n

    • Light gray run shorts
    - cotton polyester.
    • Contrast binding.
    • 3\" inseam.
    • Machine wash/dry.

    ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-31-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"maxima-drawstring-short-31-orange-1935","links":{},"stock":{"item_id":1935,"product_id":1935,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-31-orange-1935.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1943","_score":1,"_source":{"id":1943,"sku":"WSH03-28-Orange","name":"Gwen Drawstring Bike Short-28-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

    \n

    • Dark heather gray rouched bike shorts.
    • Fitted. Inseam: 2\".
    • Machine wash/dry.

    ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"gwen-drawstring-bike-short-28-orange-1943","links":{},"stock":{"item_id":1943,"product_id":1943,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-28-orange-1943.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1933","_score":1,"_source":{"id":1933,"sku":"WSH02-30-Yellow","name":"Maxima Drawstring Short-30-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

    \n

    • Light gray run shorts
    - cotton polyester.
    • Contrast binding.
    • 3\" inseam.
    • Machine wash/dry.

    ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-30-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"maxima-drawstring-short-30-yellow-1933","links":{},"stock":{"item_id":1933,"product_id":1933,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-30-yellow-1933.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1948","_score":1,"_source":{"id":1948,"sku":"WSH03-30-Gray","name":"Gwen Drawstring Bike Short-30-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

    \n

    • Dark heather gray rouched bike shorts.
    • Fitted. Inseam: 2\".
    • Machine wash/dry.

    ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-30-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"gwen-drawstring-bike-short-30-gray-1948","links":{},"stock":{"item_id":1948,"product_id":1948,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-30-gray-1948.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1941","_score":1,"_source":{"id":1941,"sku":"WSH03-28-Blue","name":"Gwen Drawstring Bike Short-28-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

    \n

    • Dark heather gray rouched bike shorts.
    • Fitted. Inseam: 2\".
    • Machine wash/dry.

    ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"gwen-drawstring-bike-short-28-blue-1941","links":{},"stock":{"item_id":1941,"product_id":1941,"stock_id":1,"qty":41,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-28-blue-1941.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1980","_score":1,"_source":{"id":1980,"sku":"WSH05-30-Purple","name":"Bess Yoga Short-30-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

    \n

    • Navy cotton shorts with light bue waist detail.
    • Front shirred waistband.
    • Flat-lock, chafe-free side seams.
    • Vented gusset.
    • Hidden interior pocket.
    • Sustainable and recycled fabric.

    ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-30-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"bess-yoga-short-30-purple-1980","links":{},"stock":{"item_id":1980,"product_id":1980,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-30-purple-1980.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1974","_score":1,"_source":{"id":1974,"sku":"WSH05-28-Purple","name":"Bess Yoga Short-28-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

    \n

    • Navy cotton shorts with light bue waist detail.
    • Front shirred waistband.
    • Flat-lock, chafe-free side seams.
    • Vented gusset.
    • Hidden interior pocket.
    • Sustainable and recycled fabric.

    ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bess-yoga-short-28-purple-1974","links":{},"stock":{"item_id":1974,"product_id":1974,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-28-purple-1974.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1977","_score":1,"_source":{"id":1977,"sku":"WSH05-29-Purple","name":"Bess Yoga Short-29-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

    \n

    • Navy cotton shorts with light bue waist detail.
    • Front shirred waistband.
    • Flat-lock, chafe-free side seams.
    • Vented gusset.
    • Hidden interior pocket.
    • Sustainable and recycled fabric.

    ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bess-yoga-short-29-purple-1977","links":{},"stock":{"item_id":1977,"product_id":1977,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-29-purple-1977.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1983","_score":1,"_source":{"id":1983,"sku":"WSH05-31-Purple","name":"Bess Yoga Short-31-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

    \n

    • Navy cotton shorts with light bue waist detail.
    • Front shirred waistband.
    • Flat-lock, chafe-free side seams.
    • Vented gusset.
    • Hidden interior pocket.
    • Sustainable and recycled fabric.

    ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-31-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"bess-yoga-short-31-purple-1983","links":{},"stock":{"item_id":1983,"product_id":1983,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-31-purple-1983.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1996","_score":1,"_source":{"id":1996,"sku":"WSH07-28-Black","name":"Echo Fit Compression Short-28-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

    \n

    • Black compression shorts.
    • High-waisted cut.
    • Compression fit.
    • Inseam: 1.0\".
    • Machine wash/dry.

    ","image":"/w/s/wsh07-black_main.jpg","small_image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","color":"49","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"echo-fit-compression-short-28-black-1996","links":{},"stock":{"item_id":1996,"product_id":1996,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh07-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-28-black-1996.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1902","_score":1,"_source":{"id":1902,"sku":"WP13-28-Blue","name":"Portia Capri-28-Blue","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

    From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

    \n

    • Salmon heather capri sweats.
    • Relaxed fit, high waist.
    • Inseam: 21\".
    • Wide elastic waistband.
    • Machine wash/dry.

    ","image":"/w/p/wp13-blue_main.jpg","small_image":"/w/p/wp13-blue_main.jpg","thumbnail":"/w/p/wp13-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"portia-capri-28-blue-1902","links":{},"stock":{"item_id":1902,"product_id":1902,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-28-blue-1902.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1905","_score":1,"_source":{"id":1905,"sku":"WP13-29-Blue","name":"Portia Capri-29-Blue","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

    From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

    \n

    • Salmon heather capri sweats.
    • Relaxed fit, high waist.
    • Inseam: 21\".
    • Wide elastic waistband.
    • Machine wash/dry.

    ","image":"/w/p/wp13-blue_main.jpg","small_image":"/w/p/wp13-blue_main.jpg","thumbnail":"/w/p/wp13-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"portia-capri-29-blue-1905","links":{},"stock":{"item_id":1905,"product_id":1905,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-29-blue-1905.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1912","_score":1,"_source":{"id":1912,"sku":"WSH01-29-Black","name":"Fiona Fitness Short-29-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

    \n

    • Black run shorts
    - cotton/spandex.
    • 5” inseam.
    • Machine wash/Line dry.

    ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"fiona-fitness-short-29-black-1912","links":{},"stock":{"item_id":1912,"product_id":1912,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-29-black-1912.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1911","_score":1,"_source":{"id":1911,"sku":"WSH01-28-Red","name":"Fiona Fitness Short-28-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

    \n

    • Black run shorts
    - cotton/spandex.
    • 5” inseam.
    • Machine wash/Line dry.

    ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"fiona-fitness-short-28-red-1911","links":{},"stock":{"item_id":1911,"product_id":1911,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-28-red-1911.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1928","_score":1,"_source":{"id":1928,"sku":"WSH02-29-Gray","name":"Maxima Drawstring Short-29-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

    \n

    • Light gray run shorts
    - cotton polyester.
    • Contrast binding.
    • 3\" inseam.
    • Machine wash/dry.

    ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"maxima-drawstring-short-29-gray-1928","links":{},"stock":{"item_id":1928,"product_id":1928,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-29-gray-1928.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1936","_score":1,"_source":{"id":1936,"sku":"WSH02-31-Yellow","name":"Maxima Drawstring Short-31-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

    \n

    • Light gray run shorts
    - cotton polyester.
    • Contrast binding.
    • 3\" inseam.
    • Machine wash/dry.

    ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-31-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"maxima-drawstring-short-31-yellow-1936","links":{},"stock":{"item_id":1936,"product_id":1936,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-31-yellow-1936.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1954","_score":1,"_source":{"id":1954,"sku":"WSH03-32-Gray","name":"Gwen Drawstring Bike Short-32-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

    \n

    • Dark heather gray rouched bike shorts.
    • Fitted. Inseam: 2\".
    • Machine wash/dry.

    ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"gwen-drawstring-bike-short-32-gray-1954","links":{},"stock":{"item_id":1954,"product_id":1954,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-32-gray-1954.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1964","_score":1,"_source":{"id":1964,"sku":"WSH04-30-Green","name":"Artemis Running Short-30-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

    \n

    • Black rouched shorts with mint waist.
    • Soft, lightweight construction.
    • LumaTech™ wicking technology.
    • Semi-fitted.

    ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-30-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"artemis-running-short-30-green-1964","links":{},"stock":{"item_id":1964,"product_id":1964,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-30-green-1964.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1970","_score":1,"_source":{"id":1970,"sku":"WSH04-32-Green","name":"Artemis Running Short-32-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

    \n

    • Black rouched shorts with mint waist.
    • Soft, lightweight construction.
    • LumaTech™ wicking technology.
    • Semi-fitted.

    ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"artemis-running-short-32-green-1970","links":{},"stock":{"item_id":1970,"product_id":1970,"stock_id":1,"qty":52,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-32-green-1970.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1968","_score":1,"_source":{"id":1968,"sku":"WSH04-31-Orange","name":"Artemis Running Short-31-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

    \n

    • Black rouched shorts with mint waist.
    • Soft, lightweight construction.
    • LumaTech™ wicking technology.
    • Semi-fitted.

    ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-31-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"artemis-running-short-31-orange-1968","links":{},"stock":{"item_id":1968,"product_id":1968,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-31-orange-1968.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1978","_score":1,"_source":{"id":1978,"sku":"WSH05-29-Yellow","name":"Bess Yoga Short-29-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

    \n

    • Navy cotton shorts with light bue waist detail.
    • Front shirred waistband.
    • Flat-lock, chafe-free side seams.
    • Vented gusset.
    • Hidden interior pocket.
    • Sustainable and recycled fabric.

    ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-29-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bess-yoga-short-29-yellow-1978","links":{},"stock":{"item_id":1978,"product_id":1978,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-29-yellow-1978.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1951","_score":1,"_source":{"id":1951,"sku":"WSH03-31-Gray","name":"Gwen Drawstring Bike Short-31-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

    \n

    • Dark heather gray rouched bike shorts.
    • Fitted. Inseam: 2\".
    • Machine wash/dry.

    ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-31-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"gwen-drawstring-bike-short-31-gray-1951","links":{},"stock":{"item_id":1951,"product_id":1951,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-31-gray-1951.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2001","_score":1,"_source":{"id":2001,"sku":"WSH07-29-Purple","name":"Echo Fit Compression Short-29-Purple","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

    \n

    • Black compression shorts.
    • High-waisted cut.
    • Compression fit.
    • Inseam: 1.0\".
    • Machine wash/dry.

    ","image":"/w/s/wsh07-purple_main.jpg","small_image":"/w/s/wsh07-purple_main.jpg","thumbnail":"/w/s/wsh07-purple_main.jpg","color":"57","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"echo-fit-compression-short-29-purple-2001","links":{},"stock":{"item_id":2001,"product_id":2001,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-29-purple-2001.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2005","_score":1,"_source":{"id":2005,"sku":"WSH08-30-Purple","name":"Sybil Running Short-30-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

    Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

    \n

    • Blue running shorts with green waist.
    • Drawstring-adjustable waist.
    • 4\" inseam. Machine wash/line dry.

    ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-30-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"sybil-running-short-30-purple-2005","links":{},"stock":{"item_id":2005,"product_id":2005,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-30-purple-2005.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2004","_score":1,"_source":{"id":2004,"sku":"WSH08-29-Purple","name":"Sybil Running Short-29-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

    Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

    \n

    • Blue running shorts with green waist.
    • Drawstring-adjustable waist.
    • 4\" inseam. Machine wash/line dry.

    ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sybil-running-short-29-purple-2004","links":{},"stock":{"item_id":2004,"product_id":2004,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-29-purple-2004.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2018","_score":1,"_source":{"id":2018,"sku":"WSH10-28-White","name":"Ana Running Short-28-White","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":49.200001,"description":"

    Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

    \n

    • Black/pink two-layer shorts.
    • Low-rise elastic waistband.
    • Relaxed fit.
    • Ultra-lightweight fabric.
    • Internal drawstring.
    • Machine wash/dry.

    ","image":"/w/s/wsh10-white_main.jpg","small_image":"/w/s/wsh10-white_main.jpg","thumbnail":"/w/s/wsh10-white_main.jpg","color":"59","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ana-running-short-28-white-2018","links":{},"stock":{"item_id":2018,"product_id":2018,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-28-white-2018.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2010","_score":1,"_source":{"id":2010,"sku":"WSH09-28-Green","name":"Mimi All-Purpose Short-28-Green","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

    You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

    \n

    • Gray/seafoam two-layer shorts.
    • Water-resistant construction.
    • Inner mesh brief for breathable support.
    • 2.0\" inseam.
    • Reflective trim for visibility.

    ","image":"/w/s/wsh09-green_main.jpg","small_image":"/w/s/wsh09-green_main.jpg","thumbnail":"/w/s/wsh09-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"mimi-all-purpose-short-28-green-2010","links":{},"stock":{"item_id":2010,"product_id":2010,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-28-green-2010.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2026","_score":1,"_source":{"id":2026,"sku":"WSH11-29-Blue","name":"Ina Compression Short-29-Blue","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

    One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

    \n

    • Royal blue bike shorts.
    • Compression fit.
    • Moisture-wicking.
    • Anti-microbial.
    • Machine wash/dry.

    ","image":"/w/s/wsh11-blue_main.jpg","small_image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","color":"50","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ina-compression-short-29-blue-2026","links":{},"stock":{"item_id":2026,"product_id":2026,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-29-blue-2026.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2041","_score":1,"_source":{"id":2041,"sku":"WSH12-31-Red","name":"Erika Running Short-31-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

    \n

    • Seafoam pattern running shorts.
    • Elastic waistband.
    • Snug fit.
    • 4'' inseam.
    • 76% premium brushed Nylon / 24% Spandex.

    ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-31-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"erika-running-short-31-red-2041","links":{},"stock":{"item_id":2041,"product_id":2041,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-31-red-2041.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2029","_score":1,"_source":{"id":2029,"sku":"WSH11","name":"Ina Compression Short","attribute_set_id":10,"price":49,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":49,"description":"

    One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

    \n

    • Royal blue bike shorts.
    • Compression fit.
    • Moisture-wicking.
    • Anti-microbial.
    • Machine wash/dry.

    ","image":"/w/s/wsh11-blue_main.jpg","small_image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ina-compression-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,151],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"0","style_bottom":[112,105,108],"pattern":"197","climate":[202,212,209],"slug":"ina-compression-short-2029","links":{},"stock":{"item_id":2029,"product_id":2029,"stock_id":1,"qty":9,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH11-28-Blue","id":2023,"status":1,"name":"Ina Compression Short-28-Blue","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"172","color":"50","image":"/w/s/wsh11-blue_main.jpg","small_image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","url_key":"ina-compression-short-28-blue","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"WSH11-28-Orange","id":2024,"status":1,"name":"Ina Compression Short-28-Orange","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"172","color":"56","image":"/w/s/wsh11-orange_main.jpg","small_image":"/w/s/wsh11-orange_main.jpg","thumbnail":"/w/s/wsh11-orange_main.jpg","url_key":"ina-compression-short-28-orange","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"WSH11-28-Red","id":2025,"status":1,"name":"Ina Compression Short-28-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"172","color":"58","image":"/w/s/wsh11-red_main.jpg","small_image":"/w/s/wsh11-red_main.jpg","thumbnail":"/w/s/wsh11-red_main.jpg","url_key":"ina-compression-short-28-red","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"WSH11-29-Blue","id":2026,"status":1,"name":"Ina Compression Short-29-Blue","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"173","color":"50","image":"/w/s/wsh11-blue_main.jpg","small_image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","url_key":"ina-compression-short-29-blue","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"WSH11-29-Orange","id":2027,"status":1,"name":"Ina Compression Short-29-Orange","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"173","color":"56","image":"/w/s/wsh11-orange_main.jpg","small_image":"/w/s/wsh11-orange_main.jpg","thumbnail":"/w/s/wsh11-orange_main.jpg","url_key":"ina-compression-short-29-orange","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"WSH11-29-Red","id":2028,"status":1,"name":"Ina Compression Short-29-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"173","color":"58","image":"/w/s/wsh11-red_main.jpg","small_image":"/w/s/wsh11-red_main.jpg","thumbnail":"/w/s/wsh11-red_main.jpg","url_key":"ina-compression-short-29-red","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001}],"configurable_options":[{"id":293,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":2029,"attribute_code":"color"},{"id":292,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":2029,"attribute_code":"size"}],"color_options":[50,56,58],"size_options":[172,173],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-2029.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"7","_score":1,"_source":{"id":7,"sku":"24-UB02","name":"Impulse Duffle","attribute_set_id":15,"price":74,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:24","updated_at":"2017-11-06 12:16:24","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

    Good for beach trips, track meets, yoga retreats and more, the Impulse Duffle is the companion you'll want at your side. A large U-shaped opening makes packing a hassle-free affair, while a zippered interior pocket keeps jewelry and other small valuables safely tucked out of sight.

    \n
      \n
    • Wheeled.
    • \n
    • Dual carry handles.
    • \n
    • Retractable top handle.
    • \n
    • W 14\" x H 26\" x D 11\".
    • \n
    ","image":"/u/b/ub02-black-0.jpg","small_image":"/u/b/ub02-black-0.jpg","thumbnail":"/u/b/ub02-black-0.jpg","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"impulse-duffle","tax_class_id":"2","activity":[11,19,22],"style_bags":[25,26],"material":[37,38],"strap_bags":[61,64,68],"features_bags":[70,76,79],"slug":"impulse-duffle-7","links":{},"stock":{"item_id":7,"product_id":7,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/u/b/ub02-black-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/gerat-3/impulse-duffle-7.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"18","_score":1,"_source":{"id":18,"sku":"24-UG02","name":"Pursuit Lumaflex™ Tone Band","attribute_set_id":11,"price":16,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2017-11-06 12:16:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":19.680001,"max_price":19.680001,"max_regular_price":19.680001,"minimal_regular_price":19.680001,"special_price":null,"minimal_price":19.680001,"regular_price":19.680001,"description":"

    Save your knees and joints while strengthening arms, legs and core with the Pursuit Lumaflex™ Tone Band. This ultra-durable training tool lets you complete a full-body workout free of bulky machines or free weights.

    \n
      \n
    • Home and/or gym use.
    • \n
    • Ergonomic handles.
    • \n
    ","image":"/u/g/ug02-bk-0.jpg","small_image":"/u/g/ug02-bk-0.jpg","thumbnail":"/u/g/ug02-bk-0.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pursuit-lumaflex-trade-tone-band","tax_class_id":"2","activity":"11","material":[45,46],"gender":[80,81,84],"category_gear":[85,87],"slug":"pursuit-lumaflex-and-trade-tone-band-18","links":{},"stock":{"item_id":18,"product_id":18,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/u/g/ug02-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/pursuit-lumaflex-and-trade-tone-band-18.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1","_score":1,"_source":{"id":1,"sku":"24-MB01","name":"Joust Duffle Bag","attribute_set_id":15,"price":34,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:20","updated_at":"2019-02-07 12:20:45","product_links":[{"sku":"24-MB01","link_type":"related","linked_product_sku":"24-MB04","linked_product_type":"simple","position":1},{"sku":"24-MB01","link_type":"related","linked_product_sku":"24-MB05","linked_product_type":"simple","position":2},{"sku":"24-MB01","link_type":"related","linked_product_sku":"24-MB03","linked_product_type":"simple","position":3},{"sku":"24-MB01","link_type":"related","linked_product_sku":"24-MB02","linked_product_type":"simple","position":4},{"sku":"24-MB01","link_type":"related","linked_product_sku":"24-MB06","linked_product_type":"simple","position":5}],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":"32.0000","minimal_price":32,"regular_price":34,"description":"

    The sporty Joust Duffle Bag can't be beat - not in the gym, not on the luggage carousel, not anywhere. Big enough to haul a basketball or soccer ball and some sneakers with plenty of room to spare, it's ideal for athletes with places to go.

    \r\n

      \r\n
    • Dual top handles.
    • \r\n
    • Adjustable shoulder strap.
    • \r\n
    • Full-length zipper.
    • \r\n
    • L 29\" x W 13\" x H 11\".
    • \r\n
    ","special_from_date":"2018-06-04 00:00:00","image":"/m/b/mb01-blue-0.jpg","small_image":"/m/b/mb01-blue-0.jpg","thumbnail":"/m/b/mb01-blue-0.jpg","color":"49","category_ids":[3,4],"options_container":"container1","required_options":"0","has_options":"0","url_key":"joust-duffle-bag","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"0","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"joust-duffle-bag-1","links":{},"stock":{"item_id":1,"product_id":1,"stock_id":1,"qty":39,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/b/mb01-blue-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/gerat-3/joust-duffle-bag-1.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"16","_score":1,"_source":{"id":16,"sku":"24-UG07","name":"Dual Handle Cardio Ball","attribute_set_id":11,"price":12,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2017-11-06 12:16:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":14.760001,"max_price":14.760001,"max_regular_price":14.760001,"minimal_regular_price":14.760001,"special_price":"12.0000","minimal_price":14.760001,"regular_price":14.760001,"description":"

    Make the most of your limited workout window with our Dual-Handle Cardio Ball. The 15-lb ball maximizes the effort-impact to your abdominal, upper arm and lower-body muscles. It features a handle on each side for a firm, secure grip.

    \n
      \n
    • Durable plastic shell with sand fill.\n
    • Two handles.\n
    • 15 lbs.\n
    ","special_from_date":"2017-11-06 12:16:27","image":"/u/g/ug07-bk-0.jpg","small_image":"/u/g/ug07-bk-0.jpg","thumbnail":"/u/g/ug07-bk-0.jpg","category_ids":[3,7,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"dual-handle-cardio-ball","tax_class_id":"2","activity":[16,17,11],"material":"44","gender":[80,81,84],"category_gear":[85,87],"erin_recommends":"1","sale":"1","slug":"dual-handle-cardio-ball-16","links":{},"stock":{"item_id":16,"product_id":16,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/u/g/ug07-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null},{"image":"/u/g/ug07-bk-0_alt1.jpg","pos":2,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/dual-handle-cardio-ball-16.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"13","_score":1,"_source":{"id":13,"sku":"24-WB07","name":"Overnight Duffle","attribute_set_id":15,"price":2,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:26","updated_at":"2019-02-12 07:14:23","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":2.460001,"max_price":2.460001,"max_regular_price":2.460001,"minimal_regular_price":2.460001,"special_price":null,"minimal_price":2.460001,"regular_price":2.460001,"description":"

    For long weekends away, camping outings and business trips, the Overnight Duffle can't be beat. The dual handles make it a cinch to carry, while the durable waterproof exterior helps you worry less about the weather. With multiple organizational pockets inside and out, it's the perfect travel companion.

    \r\n
      \r\n
    • Dual top handles.
    • \r\n
    • W 15\" x H 15\" x D 9\".
    • \r\n
    ","image":"/w/b/wb07-brown-0_1.jpg","small_image":"/w/b/wb07-brown-0_1.jpg","thumbnail":"/w/b/wb07-brown-0_1.jpg","color":"49","category_ids":[3,7,4,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"overnight-duffle","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[19,22],"style_bags":"26","material":[35,37,38],"strap_bags":"64","features_bags":[74,79],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","slug":"overnight-duffle-13","links":{},"stock":{"item_id":13,"product_id":13,"stock_id":1,"qty":50,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb07-brown-0_1.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/gerat-3/overnight-duffle-13.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"46","_score":1,"_source":{"id":46,"sku":"240-LV04","name":"Beginner's Yoga","attribute_set_id":14,"price":6,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:32","updated_at":"2017-11-06 12:16:32","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":7.380001,"max_price":7.380001,"max_regular_price":7.380001,"minimal_regular_price":7.380001,"special_price":null,"minimal_price":7.380001,"regular_price":7.380001,"description":"

    Beginner's Yoga starts you down the path toward strength, balance and mental focus. With this video download, you don't have to be a great athlete or gym guru to learn the best and most basic techniques for lifelong yoga foundation.

    \n
      \n
    • Video download
    • \n
    • Five workouts.
    • \n
    • Balance, strength and endurance.
    • \n
    • Flexibility and core strength.
    • \n
    • Includes modification for novices.
    • \n
    ","short_description":"

    \nThe most difficult yoga poses to master are the ones learned incorrectly as a beginner. Luma's Beginner's Yoga is a fantastic way to break into your initial yoga session and begin the journey to a longer, leaner, healthier body. Confidently find your way into yoga with this effective yet gentle program. You'll learn proper alignment and how to sidestep common mistakes.\n

    ","image":"/l/t/lt01.jpg","small_image":"/l/t/lt01.jpg","thumbnail":"/l/t/lt01.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beginner-s-yoga","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","tax_class_id":"2","activity":[8,16,17,5,11],"format":"102","slug":"beginners-yoga-46","links":{},"stock":{"item_id":46,"product_id":46,"stock_id":1,"qty":null,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/t/lt01.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":9,"name":"Training","slug":"training-9","path":"training/training-9"},{"category_id":10,"name":"Video Download","slug":"video-download-10","path":"training/training-video/video-download-10"}],"url_path":"training/training-9/beginners-yoga-46.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"49","_score":1,"_source":{"id":49,"sku":"240-LV07","name":"Solo Power Circuit","attribute_set_id":14,"price":14,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:33","updated_at":"2017-11-06 12:16:33","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":17.220001,"max_price":17.220001,"max_regular_price":17.220001,"minimal_regular_price":17.220001,"special_price":null,"minimal_price":17.220001,"regular_price":17.220001,"description":"

    Circuit training helps banish the boredom of traditional workouts. The Solo Power Circuit download lets you experience Luma's maximum efficiency circuit training in the training time you have available. Learn secrets to shed pounds, decrease body fat, sculpt amazing abs, and tone to reshape your entire body. You'll feel the difference after just one circuit.

    \n
      \n
    • Targets abs, arms and legs.
    • \n
    • 6 fun interval training circuits.
    • \n
    • Easy to follow.
    • \n
    • No special equipment needed.
    • \n
    • 43 minutes.
    • \n
    ","short_description":"

    \nMany contemporary exercise trends sacrifice form and precision in favor of reps and \"PR\" goals. Luma's Solo Power Circuit teaches techniques to keep you safe. But don't think you'll get off easily: when it comes to building muscle and burning fat, these routines won't disappoint. A fusion of circuit training, yoga, Pilates and running, Solo Power Circuit brings out your sweatiest best.\n

    ","image":"/l/t/lt04.jpg","small_image":"/l/t/lt04.jpg","thumbnail":"/l/t/lt04.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"solo-power-circuit","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","tax_class_id":"2","activity":[16,17,11],"format":"102","slug":"solo-power-circuit-49","links":{},"stock":{"item_id":49,"product_id":49,"stock_id":1,"qty":null,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/t/lt04.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":9,"name":"Training","slug":"training-9","path":"training/training-9"},{"category_id":10,"name":"Video Download","slug":"video-download-10","path":"training/training-video/video-download-10"}],"url_path":"training/training-9/solo-power-circuit-49.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"28","_score":1,"_source":{"id":28,"sku":"24-WG082-pink","name":"Sprite Stasis Ball 65 cm","attribute_set_id":12,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

    The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

    \n
      \n
    • 65 cm plastic shell.
    • \n
    • Durable, burst-resistant design.
    • \n
    • Hand pump included.
    • \n
    ","image":"/l/u/luma-stability-ball-pink.jpg","small_image":"/l/u/luma-stability-ball-pink.jpg","thumbnail":"/l/u/luma-stability-ball-pink.jpg","color":"58","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-65-cm-pink","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"92","slug":"sprite-stasis-ball-65-cm-28","links":{},"stock":{"item_id":28,"product_id":28,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball-pink.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-stasis-ball-65-cm-28.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"39","_score":1,"_source":{"id":39,"sku":"24-MG05","name":"Cruise Dual Analog Watch","attribute_set_id":11,"price":55,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

    Whether you're traveling or wish you were, you'll never let time zones perplex you again with the Cruise Dual Analog Watch. The thick, adjustable band promises a comfortable, personalized fit to this classy, modern time piece.

    \n
      \n
    • Two dials.
    • \n
    • Stainless steel case.
    • \n
    • Adjustable leather band.
    • \n
    ","image":"/m/g/mg05-br-0.jpg","small_image":"/m/g/mg05-br-0.jpg","thumbnail":"/m/g/mg05-br-0.jpg","category_ids":[3,7,6,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cruise-dual-analog-watch","tax_class_id":"2","activity":"9","material":[35,44],"gender":"80","category_gear":[86,88,90],"new":"1","slug":"cruise-dual-analog-watch-39","links":{},"stock":{"item_id":39,"product_id":39,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/g/mg05-br-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/gerat-3/cruise-dual-analog-watch-39.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"67","_score":1,"_source":{"id":67,"sku":"MH01","name":"Chaz Kangeroo Hoodie","attribute_set_id":9,"price":52,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":52,"description":"

    Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

    \n

    • Two-tone gray heather hoodie.
    • Drawstring-adjustable hood.
    • Machine wash/dry.

    ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"chaz-kangeroo-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"159","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","pattern":"195","climate":[202,204,205,208,210],"slug":"chaz-kangeroo-hoodie-67","links":{},"stock":{"item_id":67,"product_id":67,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH01-XS-Black","id":52,"status":1,"name":"Chaz Kangeroo Hoodie-XS-Black","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"49","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","url_key":"chaz-kangeroo-hoodie-xs-black","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-XS-Gray","id":53,"status":1,"name":"Chaz Kangeroo Hoodie-XS-Gray","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"52","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","url_key":"chaz-kangeroo-hoodie-xs-gray","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-XS-Orange","id":54,"status":1,"name":"Chaz Kangeroo Hoodie-XS-Orange","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"56","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","url_key":"chaz-kangeroo-hoodie-xs-orange","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-S-Black","id":55,"status":1,"name":"Chaz Kangeroo Hoodie-S-Black","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"49","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","url_key":"chaz-kangeroo-hoodie-s-black","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-S-Gray","id":56,"status":1,"name":"Chaz Kangeroo Hoodie-S-Gray","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"52","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","url_key":"chaz-kangeroo-hoodie-s-gray","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-S-Orange","id":57,"status":1,"name":"Chaz Kangeroo Hoodie-S-Orange","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"56","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","url_key":"chaz-kangeroo-hoodie-s-orange","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-M-Black","id":58,"status":1,"name":"Chaz Kangeroo Hoodie-M-Black","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"49","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","url_key":"chaz-kangeroo-hoodie-m-black","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-M-Gray","id":59,"status":1,"name":"Chaz Kangeroo Hoodie-M-Gray","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"52","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","url_key":"chaz-kangeroo-hoodie-m-gray","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-M-Orange","id":60,"status":1,"name":"Chaz Kangeroo Hoodie-M-Orange","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"56","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","url_key":"chaz-kangeroo-hoodie-m-orange","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-L-Black","id":61,"status":1,"name":"Chaz Kangeroo Hoodie-L-Black","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"49","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","url_key":"chaz-kangeroo-hoodie-l-black","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-L-Gray","id":62,"status":1,"name":"Chaz Kangeroo Hoodie-L-Gray","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"52","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","url_key":"chaz-kangeroo-hoodie-l-gray","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-L-Orange","id":63,"status":1,"name":"Chaz Kangeroo Hoodie-L-Orange","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"56","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","url_key":"chaz-kangeroo-hoodie-l-orange","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-XL-Black","id":64,"status":1,"name":"Chaz Kangeroo Hoodie-XL-Black","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"49","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","url_key":"chaz-kangeroo-hoodie-xl-black","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-XL-Gray","id":65,"status":1,"name":"Chaz Kangeroo Hoodie-XL-Gray","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"52","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","url_key":"chaz-kangeroo-hoodie-xl-gray","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-XL-Orange","id":66,"status":1,"name":"Chaz Kangeroo Hoodie-XL-Orange","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"56","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","url_key":"chaz-kangeroo-hoodie-xl-orange","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001}],"configurable_options":[{"id":3,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"}],"product_id":67,"attribute_code":"color"},{"id":2,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":67,"attribute_code":"size"}],"color_options":[49,52,56],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-67.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"71","_score":1,"_source":{"id":71,"sku":"MH02-S-Black","name":"Teton Pullover Hoodie-S-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

    This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

    \n

    • Black pullover hoodie.
    • Soft, brushed interior.
    • Front hand pockets.
    • Machine wash/dry.

    ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"teton-pullover-hoodie-s-black-71","links":{},"stock":{"item_id":71,"product_id":71,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-s-black-71.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"66","_score":1,"_source":{"id":66,"sku":"MH01-XL-Orange","name":"Chaz Kangeroo Hoodie-XL-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

    Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

    \n

    • Two-tone gray heather hoodie.
    • Drawstring-adjustable hood.
    • Machine wash/dry.

    ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chaz-kangeroo-hoodie-xl-orange-66","links":{},"stock":{"item_id":66,"product_id":66,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xl-orange-66.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"81","_score":1,"_source":{"id":81,"sku":"MH02-XL-Purple","name":"Teton Pullover Hoodie-XL-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

    This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

    \n

    • Black pullover hoodie.
    • Soft, brushed interior.
    • Front hand pockets.
    • Machine wash/dry.

    ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"teton-pullover-hoodie-xl-purple-81","links":{},"stock":{"item_id":81,"product_id":81,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xl-purple-81.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"77","_score":1,"_source":{"id":77,"sku":"MH02-L-Black","name":"Teton Pullover Hoodie-L-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

    This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

    \n

    • Black pullover hoodie.
    • Soft, brushed interior.
    • Front hand pockets.
    • Machine wash/dry.

    ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"teton-pullover-hoodie-l-black-77","links":{},"stock":{"item_id":77,"product_id":77,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-l-black-77.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"95","_score":1,"_source":{"id":95,"sku":"MH03-L-Green","name":"Bruno Compete Hoodie-L-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

    Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

    \n

    • Full zip black hoodie pullover.
    • Adjustable drawstring hood.
    • Ribbed cuffs/waistband.
    • Kangaroo pocket.
    • Machine wash/dry.

    ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bruno-compete-hoodie-l-green-95","links":{},"stock":{"item_id":95,"product_id":95,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-l-green-95.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"86","_score":1,"_source":{"id":86,"sku":"MH03-XS-Green","name":"Bruno Compete Hoodie-XS-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

    Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

    \n

    • Full zip black hoodie pullover.
    • Adjustable drawstring hood.
    • Ribbed cuffs/waistband.
    • Kangaroo pocket.
    • Machine wash/dry.

    ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bruno-compete-hoodie-xs-green-86","links":{},"stock":{"item_id":86,"product_id":86,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xs-green-86.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"97","_score":1,"_source":{"id":97,"sku":"MH03-XL-Blue","name":"Bruno Compete Hoodie-XL-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

    Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

    \n

    • Full zip black hoodie pullover.
    • Adjustable drawstring hood.
    • Ribbed cuffs/waistband.
    • Kangaroo pocket.
    • Machine wash/dry.

    ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bruno-compete-hoodie-xl-blue-97","links":{},"stock":{"item_id":97,"product_id":97,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xl-blue-97.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"112","_score":1,"_source":{"id":112,"sku":"MH04-XL-Green","name":"Frankie Sweatshirt-XL-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

    \n

    • Light green crewneck sweatshirt.
    • Hand pockets.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"frankie-sweatshirt-xl-green-112","links":{},"stock":{"item_id":112,"product_id":112,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xl-green-112.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"107","_score":1,"_source":{"id":107,"sku":"MH04-M-White","name":"Frankie Sweatshirt-M-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

    \n

    • Light green crewneck sweatshirt.
    • Hand pockets.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"frankie-sweatshirt-m-white-107","links":{},"stock":{"item_id":107,"product_id":107,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-m-white-107.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"111","_score":1,"_source":{"id":111,"sku":"MH04-L-Yellow","name":"Frankie Sweatshirt-L-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

    \n

    • Light green crewneck sweatshirt.
    • Hand pockets.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"frankie-sweatshirt-l-yellow-111","links":{},"stock":{"item_id":111,"product_id":111,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-l-yellow-111.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"124","_score":1,"_source":{"id":124,"sku":"MH05-M-White","name":"Hollister Backyard Sweatshirt-M-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

    Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

    \n

    • Cream crewneck sweatshirt with navy sleeves/trim.
    • Relaxed fit.
    • Ribbed cuffs and hem.
    • Machine wash/dry.

    ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hollister-backyard-sweatshirt-m-white-124","links":{},"stock":{"item_id":124,"product_id":124,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-m-white-124.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"121","_score":1,"_source":{"id":121,"sku":"MH05-S-White","name":"Hollister Backyard Sweatshirt-S-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

    Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

    \n

    • Cream crewneck sweatshirt with navy sleeves/trim.
    • Relaxed fit.
    • Ribbed cuffs and hem.
    • Machine wash/dry.

    ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hollister-backyard-sweatshirt-s-white-121","links":{},"stock":{"item_id":121,"product_id":121,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-s-white-121.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"77","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":true,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":77,"attribute_code":"price","frontend_input":"price","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":77,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"81","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":81,"attribute_code":"cost","frontend_input":"price","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":true,"default_frontend_label":"Cost","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":81,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"86","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":86,"attribute_code":"meta_description","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Meta Description","frontend_labels":null,"note":"Maximum 255 chars. Meta Description should optimally be between 150-160 characters","backend_type":"varchar","is_unique":"0","validation_rules":[],"id":86,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"95","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":95,"attribute_code":"news_to_date","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Set Product as New to Date","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime","is_unique":"0","validation_rules":[],"id":95,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"97","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":97,"attribute_code":"status","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Enabled","value":"1"},{"label":"Disabled","value":"2"}],"is_user_defined":false,"default_frontend_label":"Enable Product","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Status","default_value":"1","is_unique":"0","validation_rules":[],"id":97,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"107","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"global","attribute_id":107,"attribute_code":"required_options","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":107,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"111","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"store","attribute_id":111,"attribute_code":"thumbnail_label","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Thumbnail Label","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":111,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"112","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":112,"attribute_code":"created_at","frontend_input":"date","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":112,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"115","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":115,"attribute_code":"quantity_and_stock_status","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"In Stock","value":"1"},{"label":"Out of Stock","value":"0"}],"is_user_defined":false,"default_frontend_label":"Quantity","frontend_labels":null,"backend_type":"int","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Stock","source_model":"Magento\\CatalogInventory\\Model\\Source\\Stock","default_value":"1","is_unique":"0","validation_rules":[],"id":115,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"121","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","downloadable","bundle","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":121,"attribute_code":"msrp","frontend_input":"price","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Manufacturer's Suggested Retail Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":121,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"125","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":125,"attribute_code":"weight_type","frontend_input":"boolean","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Dynamic Weight","frontend_labels":null,"backend_type":"int","default_value":"0","is_unique":"0","validation_rules":[],"id":125,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"124","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":124,"attribute_code":"sku_type","frontend_input":"boolean","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Dynamic SKU","frontend_labels":null,"backend_type":"int","default_value":"0","is_unique":"0","validation_rules":[],"id":124,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"128","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"global","attribute_id":128,"attribute_code":"links_purchased_separately","frontend_input":null,"entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Links can be purchased separately","frontend_labels":null,"backend_type":"int","is_unique":"0","validation_rules":[],"id":128,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"139","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":139,"attribute_code":"features_bags","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Audio Pocket","value":"69"},{"label":"Wheeled","value":"70"},{"label":"Hydration Pocket","value":"71"},{"label":"Audio Pocket","value":"72"},{"label":"Flapover","value":"73"},{"label":"Waterproof","value":"74"},{"label":"Lightweight","value":"75"},{"label":"TSA Approved","value":"76"},{"label":"Reflective","value":"77"},{"label":"Laptop Sleeve","value":"78"},{"label":"Lockable","value":"79"}],"is_user_defined":true,"default_frontend_label":"Features","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":139,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"138","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":138,"attribute_code":"strap_bags","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Adjustable","value":"61"},{"label":"Cross Body","value":"62"},{"label":"Detachable","value":"63"},{"label":"Double","value":"64"},{"label":"Padded","value":"65"},{"label":"Shoulder","value":"66"},{"label":"Single","value":"67"},{"label":"Telescoping","value":"68"}],"is_user_defined":true,"default_frontend_label":"Strap/Handle","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":138,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"140","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":140,"attribute_code":"gender","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Men","value":"80"},{"label":"Women","value":"81"},{"label":"Boys","value":"82"},{"label":"Girls","value":"83"},{"label":"Unisex","value":"84"}],"is_user_defined":true,"default_frontend_label":"Gender","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":140,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"147","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":147,"attribute_code":"sale","frontend_input":"boolean","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"}],"is_user_defined":true,"default_frontend_label":"Sale","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean","default_value":"","is_unique":"0","validation_rules":[],"id":147,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"72","_score":1,"_source":{"id":72,"sku":"MH02-S-Purple","name":"Teton Pullover Hoodie-S-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

    This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

    \n

    • Black pullover hoodie.
    • Soft, brushed interior.
    • Front hand pockets.
    • Machine wash/dry.

    ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"teton-pullover-hoodie-s-purple-72","links":{},"stock":{"item_id":72,"product_id":72,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-s-purple-72.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"7","_score":1,"_source":{"id":7,"parent_id":2,"name":"Collections","is_active":false,"position":5,"level":2,"product_count":13,"children_data":[{"id":8,"parent_id":7,"name":"New Luma Yoga Collection","is_active":true,"position":1,"level":3,"product_count":347,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/7/8","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"new-luma-yoga-collection-8","url_path":"collections/yoga-new/new-luma-yoga-collection-8","slug":"new-luma-yoga-collection-8"},{"id":34,"parent_id":7,"name":"Erin Recommends","is_active":true,"position":2,"level":3,"product_count":279,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/34","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"erin-recommends-34","url_path":"collections/erin-recommends/erin-recommends-34","slug":"erin-recommends-34"},{"id":35,"parent_id":7,"name":"Performance Fabrics","is_active":true,"position":3,"level":3,"product_count":310,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/35","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"performance-fabrics-35","url_path":"collections/performance-fabrics/performance-fabrics-35","slug":"performance-fabrics-35"},{"id":36,"parent_id":7,"name":"Eco Friendly","is_active":true,"position":4,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/36","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"eco-friendly-36","url_path":"collections/eco-friendly/eco-friendly-36","slug":"eco-friendly-36"},{"id":39,"parent_id":7,"name":"Performance Sportswear New","is_active":true,"position":5,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/39","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"performance-sportswear-new-39","url_path":"collections/performance-new/performance-sportswear-new-39","slug":"performance-sportswear-new-39"},{"id":40,"parent_id":7,"name":"Eco Collection New","is_active":true,"position":6,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/40","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"eco-collection-new-40","url_path":"collections/eco-new/eco-collection-new-40","slug":"eco-collection-new-40"}],"children":"34,35,36,39,40,8","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:17:48","path":"1/2/7","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","children_count":"6","url_key":"collections-7","url_path":"collections/collections-7","slug":"collections-7","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"39","_score":1,"_source":{"id":39,"parent_id":7,"name":"Performance Sportswear New","is_active":true,"position":5,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/39","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"performance-sportswear-new-39","url_path":"collections/performance-new/performance-sportswear-new-39","slug":"performance-sportswear-new-39","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"13","_score":1,"_source":{"id":13,"parent_id":11,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"id":18,"parent_id":13,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":156,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/18","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-18","url_path":"men/bottoms-men/pants-men/pants-18","slug":"pants-18"},{"id":19,"parent_id":13,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":148,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/19","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-19","url_path":"men/bottoms-men/shorts-men/shorts-19","slug":"shorts-19"}],"children":"18,19","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-13","url_path":"men/bottoms-men/bottoms-13","slug":"bottoms-13","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"16","_score":1,"_source":{"id":16,"parent_id":12,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/16","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-16","url_path":"men/tops-men/tees-men/tees-16","slug":"tees-16","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"18","_score":1,"_source":{"id":18,"parent_id":13,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":156,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/18","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-18","url_path":"men/bottoms-men/pants-men/pants-18","slug":"pants-18","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"28","_score":1,"_source":{"id":28,"parent_id":22,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":137,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/28","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-28","url_path":"women/bottoms-women/shorts-women/shorts-28","slug":"shorts-28","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"cms_block","_id":"7","_score":1,"_source":{"store_id":[0],"id":7,"identifier":"new-left-menu-block","title":"New Left Menu Block","content":"
    New in women's\n\n\nNew in men's\n\n
    ","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556376570938}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"cms_block","_id":"1","_score":1,"_source":{"store_id":[0],"id":1,"identifier":"footer_links_block","title":"Footer Links Block","content":"\n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556376570938}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"cms_block","_id":"13","_score":1,"_source":{"store_id":[0],"id":13,"identifier":"new-block","title":"New Block","content":"\n
    \n

    Luma's Latest

    \n

    Just in time for the new season!

    \n
    \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556376570938}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"cms_block","_id":"16","_score":1,"_source":{"store_id":[0],"id":16,"identifier":"eco-friendly-block","title":"Eco Friendly Block","content":"
    \n
    \n \"\"\n \n Eco-friendly, ego-friendly\n Recycled polyester, hemp and organic cotton apperel\n \n
    \n
    \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556376570938}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"cms_block","_id":"18","_score":1,"_source":{"store_id":[0],"id":18,"identifier":"login-data","title":"Login Info Block","content":"
    \n

    Try Demo Customer Access

    \n

    Email:roni_cost@example.com

    \n

    Password:roni_cost3@example.com

    \n
    ","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556376570938}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"cms_page","_id":"1","_score":1,"_source":{"store_id":[0],"id":1,"identifier":"no-route","title":"404 Not Found","page_layout":"2columns-right","meta_keywords":"Page keywords","meta_description":"Page description","content_heading":"Whoops, our bad...","content":"
    \r\n
    The page you requested was not found, and we have a fine guess why.
    \r\n
    \r\n
      \r\n
    • If you typed the URL directly, please make sure the spelling is correct.
    • \r\n
    • If you clicked on a link to get here, the link is outdated.
    • \r\n
    \r\n
    \r\n
    \r\n
    What can you do?
    \r\n
    Have no fear, help is near! There are many ways you can get back on track with Magento Store.
    \r\n
    \r\n
      \r\n
    • Go back to the previous page.
    • \r\n
    • Use the search bar at the top of the page to search for your products.
    • \r\n
    • Follow these links to get you back on track!
      Store Home | My Account
    \r\n","creation_time":"2017-11-03 08:34:38","update_time":"2017-11-03 08:34:38","sort_order":"0","active":true,"type":"cms_page","tsk":1556376573724}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"140","_score":1,"_source":{"id":140,"sku":"MH06-M-Purple","name":"Stark Fundamental Hoodie-M-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

    \n

    • Navy specked full zip hoodie.
    • Ribbed cuffs, banded waist.
    • Side pockets.
    • Machine wash/dry.

    ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stark-fundamental-hoodie-m-purple-140","links":{},"stock":{"item_id":140,"product_id":140,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-m-purple-140.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"147","_score":1,"_source":{"id":147,"sku":"MH06","name":"Stark Fundamental Hoodie","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":42,"description":"

    You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

    \n

    • Navy specked full zip hoodie.
    • Ribbed cuffs, banded waist.
    • Side pockets.
    • Machine wash/dry.

    ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"stark-fundamental-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,38,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"197","climate":[202,204,205,208],"slug":"stark-fundamental-hoodie-147","links":{},"stock":{"item_id":147,"product_id":147,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH06-XS-Black","id":132,"status":1,"name":"Stark Fundamental Hoodie-XS-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"49","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","url_key":"stark-fundamental-hoodie-xs-black","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-XS-Blue","id":133,"status":1,"name":"Stark Fundamental Hoodie-XS-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"50","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","url_key":"stark-fundamental-hoodie-xs-blue","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-XS-Purple","id":134,"status":1,"name":"Stark Fundamental Hoodie-XS-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"57","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","url_key":"stark-fundamental-hoodie-xs-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-S-Black","id":135,"status":1,"name":"Stark Fundamental Hoodie-S-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"49","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","url_key":"stark-fundamental-hoodie-s-black","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-S-Blue","id":136,"status":1,"name":"Stark Fundamental Hoodie-S-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"50","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","url_key":"stark-fundamental-hoodie-s-blue","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-S-Purple","id":137,"status":1,"name":"Stark Fundamental Hoodie-S-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"57","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","url_key":"stark-fundamental-hoodie-s-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-M-Black","id":138,"status":1,"name":"Stark Fundamental Hoodie-M-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"49","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","url_key":"stark-fundamental-hoodie-m-black","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-M-Blue","id":139,"status":1,"name":"Stark Fundamental Hoodie-M-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"50","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","url_key":"stark-fundamental-hoodie-m-blue","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-M-Purple","id":140,"status":1,"name":"Stark Fundamental Hoodie-M-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"57","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","url_key":"stark-fundamental-hoodie-m-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-L-Black","id":141,"status":1,"name":"Stark Fundamental Hoodie-L-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"49","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","url_key":"stark-fundamental-hoodie-l-black","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-L-Blue","id":142,"status":1,"name":"Stark Fundamental Hoodie-L-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"50","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","url_key":"stark-fundamental-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-L-Purple","id":143,"status":1,"name":"Stark Fundamental Hoodie-L-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"57","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","url_key":"stark-fundamental-hoodie-l-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-XL-Black","id":144,"status":1,"name":"Stark Fundamental Hoodie-XL-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"49","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","url_key":"stark-fundamental-hoodie-xl-black","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-XL-Blue","id":145,"status":1,"name":"Stark Fundamental Hoodie-XL-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"50","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","url_key":"stark-fundamental-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-XL-Purple","id":146,"status":1,"name":"Stark Fundamental Hoodie-XL-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"57","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","url_key":"stark-fundamental-hoodie-xl-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001}],"configurable_options":[{"id":13,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":147,"attribute_code":"color"},{"id":12,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":147,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-147.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"179","_score":1,"_source":{"id":179,"sku":"MH08","name":"Oslo Trek Hoodie","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":36.900001,"max_price":36.900001,"max_regular_price":36.900001,"minimal_regular_price":36.900001,"special_price":null,"minimal_price":36.900001,"regular_price":42,"description":"

    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

    \n

    • Brown hoodie with black detail.
    • Pullover.
    • Adjustable drawstring hood.
    • Ribbed cuffs/waistband.
    • Machine wash/dry.

    ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"oslo-trek-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"197","climate":[210,204],"slug":"oslo-trek-hoodie-179","links":{},"stock":{"item_id":179,"product_id":179,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH08-XS-Brown","id":164,"status":1,"name":"Oslo Trek Hoodie-XS-Brown","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"51","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","url_key":"oslo-trek-hoodie-xs-brown","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-XS-Purple","id":165,"status":1,"name":"Oslo Trek Hoodie-XS-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"57","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","url_key":"oslo-trek-hoodie-xs-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-XS-Red","id":166,"status":1,"name":"Oslo Trek Hoodie-XS-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","url_key":"oslo-trek-hoodie-xs-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-S-Brown","id":167,"status":1,"name":"Oslo Trek Hoodie-S-Brown","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"51","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","url_key":"oslo-trek-hoodie-s-brown","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-S-Purple","id":168,"status":1,"name":"Oslo Trek Hoodie-S-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"57","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","url_key":"oslo-trek-hoodie-s-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-S-Red","id":169,"status":1,"name":"Oslo Trek Hoodie-S-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","url_key":"oslo-trek-hoodie-s-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-M-Brown","id":170,"status":1,"name":"Oslo Trek Hoodie-M-Brown","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"51","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","url_key":"oslo-trek-hoodie-m-brown","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-M-Purple","id":171,"status":1,"name":"Oslo Trek Hoodie-M-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"57","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","url_key":"oslo-trek-hoodie-m-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-M-Red","id":172,"status":1,"name":"Oslo Trek Hoodie-M-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","url_key":"oslo-trek-hoodie-m-red","special_price":36.900001,"special_from_date":"2019-03-22 08:35:33","msrp_display_actual_price_type":"0","final_price":36.900001,"max_price":36.900001,"max_regular_price":36.900001,"minimal_regular_price":36.900001,"minimal_price":36.900001,"regular_price":51.660001},{"sku":"MH08-L-Brown","id":173,"status":1,"name":"Oslo Trek Hoodie-L-Brown","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"51","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","url_key":"oslo-trek-hoodie-l-brown","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-L-Purple","id":174,"status":1,"name":"Oslo Trek Hoodie-L-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"57","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","url_key":"oslo-trek-hoodie-l-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-L-Red","id":175,"status":1,"name":"Oslo Trek Hoodie-L-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","url_key":"oslo-trek-hoodie-l-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-XL-Brown","id":176,"status":1,"name":"Oslo Trek Hoodie-XL-Brown","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"51","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","url_key":"oslo-trek-hoodie-xl-brown","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-XL-Purple","id":177,"status":1,"name":"Oslo Trek Hoodie-XL-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"57","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","url_key":"oslo-trek-hoodie-xl-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-XL-Red","id":178,"status":1,"name":"Oslo Trek Hoodie-XL-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","url_key":"oslo-trek-hoodie-xl-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001}],"configurable_options":[{"id":17,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":51,"label":"Brown"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":179,"attribute_code":"color"},{"id":16,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":179,"attribute_code":"size"}],"color_options":[51,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-179.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"115","_score":1,"_source":{"id":115,"sku":"MH04","name":"Frankie Sweatshirt","attribute_set_id":9,"price":60,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":60,"description":"

    The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

    \n

    • Light green crewneck sweatshirt.
    • Hand pockets.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"frankie-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","pattern":"197","climate":[202,204,205,208,210],"slug":"frankie-sweatshirt-115","links":{},"stock":{"item_id":115,"product_id":115,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH04-XS-Green","id":100,"status":1,"name":"Frankie Sweatshirt-XS-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"53","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","url_key":"frankie-sweatshirt-xs-green","msrp_display_actual_price_type":"0"},{"sku":"MH04-XS-White","id":101,"status":1,"name":"Frankie Sweatshirt-XS-White","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"59","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","url_key":"frankie-sweatshirt-xs-white","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-XS-Yellow","id":102,"status":1,"name":"Frankie Sweatshirt-XS-Yellow","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"60","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","url_key":"frankie-sweatshirt-xs-yellow","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-S-Green","id":103,"status":1,"name":"Frankie Sweatshirt-S-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"53","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","url_key":"frankie-sweatshirt-s-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-S-White","id":104,"status":1,"name":"Frankie Sweatshirt-S-White","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"59","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","url_key":"frankie-sweatshirt-s-white","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-S-Yellow","id":105,"status":1,"name":"Frankie Sweatshirt-S-Yellow","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"60","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","url_key":"frankie-sweatshirt-s-yellow","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-M-Green","id":106,"status":1,"name":"Frankie Sweatshirt-M-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"53","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","url_key":"frankie-sweatshirt-m-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-M-White","id":107,"status":1,"name":"Frankie Sweatshirt-M-White","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"59","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","url_key":"frankie-sweatshirt-m-white","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-M-Yellow","id":108,"status":1,"name":"Frankie Sweatshirt-M-Yellow","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"60","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","url_key":"frankie-sweatshirt-m-yellow","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-L-Green","id":109,"status":1,"name":"Frankie Sweatshirt-L-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"53","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","url_key":"frankie-sweatshirt-l-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-L-White","id":110,"status":1,"name":"Frankie Sweatshirt-L-White","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"59","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","url_key":"frankie-sweatshirt-l-white","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-L-Yellow","id":111,"status":1,"name":"Frankie Sweatshirt-L-Yellow","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"60","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","url_key":"frankie-sweatshirt-l-yellow","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-XL-Green","id":112,"status":1,"name":"Frankie Sweatshirt-XL-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"53","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","url_key":"frankie-sweatshirt-xl-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-XL-White","id":113,"status":1,"name":"Frankie Sweatshirt-XL-White","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"59","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","url_key":"frankie-sweatshirt-xl-white","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-XL-Yellow","id":114,"status":1,"name":"Frankie Sweatshirt-XL-Yellow","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"60","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","url_key":"frankie-sweatshirt-xl-yellow","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001}],"configurable_options":[{"id":9,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":115,"attribute_code":"color"},{"id":8,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":115,"attribute_code":"size"}],"color_options":[53,59,60],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-115.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"201","_score":1,"_source":{"id":201,"sku":"MH10-S-Red","name":"Mach Street Sweatshirt -S-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

    \n

    • Navy heather crewneck sweatshirt.
    • LumaTech™ moisture-wicking fabric.
    • Antimicrobial, odor-resistant.
    • Zip hand pockets.
    • Chafe-resistant flatlock seams.
    • Rib-knit cuffs and hem.

    ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mach-street-sweatshirt-s-red-201","links":{},"stock":{"item_id":201,"product_id":201,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-s-red-201.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"216","_score":1,"_source":{"id":216,"sku":"MH11-S-Red","name":"Grayson Crewneck Sweatshirt -S-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

    \n

    • Cream crewneck sweatshirt with black accents.
    • 80% cotton/20% polyester fleece.
    • Patterned knit hood lining.
    • Knit cuffs and waist.
    • Pouch pocket.
    • Curl edged seam detail

    ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"grayson-crewneck-sweatshirt-s-red-216","links":{},"stock":{"item_id":216,"product_id":216,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-s-red-216.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"245","_score":1,"_source":{"id":245,"sku":"MH13-XS-Green","name":"Marco Lightweight Active Hoodie-XS-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

    \n

    • Light blue heather full zip hoodie.
    • Fitted flatlock seams.
    • Matching lining and drawstring.
    • Machine wash/dry.

    ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"marco-lightweight-active-hoodie-xs-green-245","links":{},"stock":{"item_id":245,"product_id":245,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xs-green-245.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"235","_score":1,"_source":{"id":235,"sku":"MH12-M-Green","name":"Ajax Full-Zip Sweatshirt -M-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

    \n

    • Mint striped full zip hoodie.
    • 100% bonded polyester fleece.
    • Pouch pocket.
    • Rib cuffs and hem.
    • Machine washable.

    ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ajax-full-zip-sweatshirt-m-green-235","links":{},"stock":{"item_id":235,"product_id":235,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-m-green-235.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"158","_score":1,"_source":{"id":158,"sku":"MH07-L-Gray","name":"Hero Hoodie-L-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

    Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

    \n

    • Full-zip gray and black hoodie.
    • Ribbed hem.
    • Standard fit.
    • Drawcord hood cinch.
    • Water-resistant coating.

    ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hero-hoodie-l-gray-158","links":{},"stock":{"item_id":158,"product_id":158,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-l-gray-158.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"181","_score":1,"_source":{"id":181,"sku":"MH09-XS-Green","name":"Abominable Hoodie-XS-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

    \n

    • Blue heather hoodie.
    • Relaxed fit.
    • Moisture-wicking.
    • Machine wash/dry.

    ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"abominable-hoodie-xs-green-181","links":{},"stock":{"item_id":181,"product_id":181,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xs-green-181.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"185","_score":1,"_source":{"id":185,"sku":"MH09-S-Red","name":"Abominable Hoodie-S-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

    \n

    • Blue heather hoodie.
    • Relaxed fit.
    • Moisture-wicking.
    • Machine wash/dry.

    ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"abominable-hoodie-s-red-185","links":{},"stock":{"item_id":185,"product_id":185,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-s-red-185.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"187","_score":1,"_source":{"id":187,"sku":"MH09-M-Green","name":"Abominable Hoodie-M-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

    \n

    • Blue heather hoodie.
    • Relaxed fit.
    • Moisture-wicking.
    • Machine wash/dry.

    ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"abominable-hoodie-m-green-187","links":{},"stock":{"item_id":187,"product_id":187,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-m-green-187.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"189","_score":1,"_source":{"id":189,"sku":"MH09-L-Blue","name":"Abominable Hoodie-L-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

    \n

    • Blue heather hoodie.
    • Relaxed fit.
    • Moisture-wicking.
    • Machine wash/dry.

    ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"abominable-hoodie-l-blue-189","links":{},"stock":{"item_id":189,"product_id":189,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-l-blue-189.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"138","_score":1,"_source":{"id":138,"sku":"MH06-M-Black","name":"Stark Fundamental Hoodie-M-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

    \n

    • Navy specked full zip hoodie.
    • Ribbed cuffs, banded waist.
    • Side pockets.
    • Machine wash/dry.

    ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stark-fundamental-hoodie-m-black-138","links":{},"stock":{"item_id":138,"product_id":138,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-m-black-138.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"128","_score":1,"_source":{"id":128,"sku":"MH05-XL-Green","name":"Hollister Backyard Sweatshirt-XL-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

    Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

    \n

    • Cream crewneck sweatshirt with navy sleeves/trim.
    • Relaxed fit.
    • Ribbed cuffs and hem.
    • Machine wash/dry.

    ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hollister-backyard-sweatshirt-xl-green-128","links":{},"stock":{"item_id":128,"product_id":128,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xl-green-128.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"125","_score":1,"_source":{"id":125,"sku":"MH05-L-Green","name":"Hollister Backyard Sweatshirt-L-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

    Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

    \n

    • Cream crewneck sweatshirt with navy sleeves/trim.
    • Relaxed fit.
    • Ribbed cuffs and hem.
    • Machine wash/dry.

    ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hollister-backyard-sweatshirt-l-green-125","links":{},"stock":{"item_id":125,"product_id":125,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-l-green-125.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"139","_score":1,"_source":{"id":139,"sku":"MH06-M-Blue","name":"Stark Fundamental Hoodie-M-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

    \n

    • Navy specked full zip hoodie.
    • Ribbed cuffs, banded waist.
    • Side pockets.
    • Machine wash/dry.

    ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stark-fundamental-hoodie-m-blue-139","links":{},"stock":{"item_id":139,"product_id":139,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-m-blue-139.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"197","_score":1,"_source":{"id":197,"sku":"MH10-XS-Blue","name":"Mach Street Sweatshirt -XS-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

    \n

    • Navy heather crewneck sweatshirt.
    • LumaTech™ moisture-wicking fabric.
    • Antimicrobial, odor-resistant.
    • Zip hand pockets.
    • Chafe-resistant flatlock seams.
    • Rib-knit cuffs and hem.

    ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mach-street-sweatshirt-xs-blue-197","links":{},"stock":{"item_id":197,"product_id":197,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xs-blue-197.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"231","_score":1,"_source":{"id":231,"sku":"MH12-S-Blue","name":"Ajax Full-Zip Sweatshirt -S-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

    \n

    • Mint striped full zip hoodie.
    • 100% bonded polyester fleece.
    • Pouch pocket.
    • Rib cuffs and hem.
    • Machine washable.

    ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ajax-full-zip-sweatshirt-s-blue-231","links":{},"stock":{"item_id":231,"product_id":231,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-s-blue-231.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"155","_score":1,"_source":{"id":155,"sku":"MH07-M-Gray","name":"Hero Hoodie-M-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

    Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

    \n

    • Full-zip gray and black hoodie.
    • Ribbed hem.
    • Standard fit.
    • Drawcord hood cinch.
    • Water-resistant coating.

    ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hero-hoodie-m-gray-155","links":{},"stock":{"item_id":155,"product_id":155,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-m-gray-155.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"323","_score":1,"_source":{"id":323,"sku":"MJ07","name":"Orion Two-Tone Fitted Jacket","attribute_set_id":9,"price":72,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":72,"description":"

    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

    \n

    • Red full zip fleece with gray insets.
    • Double-knit construction.
    • Full athletic cut.
    • Set in sleeves.
    • Front pouch pocket.

    ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"orion-two-tone-fitted-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[120,121,123,125,129],"pattern":"197","climate":[202,204,207,208,210],"slug":"orion-two-tone-fitted-jacket-323","links":{},"stock":{"item_id":323,"product_id":323,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ07-XS-Black","id":308,"status":1,"name":"Orion Two-Tone Fitted Jacket-XS-Black","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"49","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","url_key":"orion-two-tone-fitted-jacket-xs-black","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-XS-Red","id":309,"status":1,"name":"Orion Two-Tone Fitted Jacket-XS-Red","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"58","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","url_key":"orion-two-tone-fitted-jacket-xs-red","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-XS-Yellow","id":310,"status":1,"name":"Orion Two-Tone Fitted Jacket-XS-Yellow","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"60","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","url_key":"orion-two-tone-fitted-jacket-xs-yellow","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-S-Black","id":311,"status":1,"name":"Orion Two-Tone Fitted Jacket-S-Black","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"49","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","url_key":"orion-two-tone-fitted-jacket-s-black","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-S-Red","id":312,"status":1,"name":"Orion Two-Tone Fitted Jacket-S-Red","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"58","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","url_key":"orion-two-tone-fitted-jacket-s-red","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-S-Yellow","id":313,"status":1,"name":"Orion Two-Tone Fitted Jacket-S-Yellow","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"60","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","url_key":"orion-two-tone-fitted-jacket-s-yellow","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-M-Black","id":314,"status":1,"name":"Orion Two-Tone Fitted Jacket-M-Black","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"49","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","url_key":"orion-two-tone-fitted-jacket-m-black","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-M-Red","id":315,"status":1,"name":"Orion Two-Tone Fitted Jacket-M-Red","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"58","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","url_key":"orion-two-tone-fitted-jacket-m-red","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-M-Yellow","id":316,"status":1,"name":"Orion Two-Tone Fitted Jacket-M-Yellow","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"60","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","url_key":"orion-two-tone-fitted-jacket-m-yellow","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-L-Black","id":317,"status":1,"name":"Orion Two-Tone Fitted Jacket-L-Black","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"49","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","url_key":"orion-two-tone-fitted-jacket-l-black","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-L-Red","id":318,"status":1,"name":"Orion Two-Tone Fitted Jacket-L-Red","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"58","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","url_key":"orion-two-tone-fitted-jacket-l-red","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-L-Yellow","id":319,"status":1,"name":"Orion Two-Tone Fitted Jacket-L-Yellow","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"60","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","url_key":"orion-two-tone-fitted-jacket-l-yellow","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-XL-Black","id":320,"status":1,"name":"Orion Two-Tone Fitted Jacket-XL-Black","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"49","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","url_key":"orion-two-tone-fitted-jacket-xl-black","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-XL-Red","id":321,"status":1,"name":"Orion Two-Tone Fitted Jacket-XL-Red","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"58","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","url_key":"orion-two-tone-fitted-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-XL-Yellow","id":322,"status":1,"name":"Orion Two-Tone Fitted Jacket-XL-Yellow","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"60","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","url_key":"orion-two-tone-fitted-jacket-xl-yellow","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001}],"configurable_options":[{"id":35,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":323,"attribute_code":"color"},{"id":34,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":323,"attribute_code":"size"}],"color_options":[49,58,60],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-323.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"251","_score":1,"_source":{"id":251,"sku":"MH13-M-Green","name":"Marco Lightweight Active Hoodie-M-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

    \n

    • Light blue heather full zip hoodie.
    • Fitted flatlock seams.
    • Matching lining and drawstring.
    • Machine wash/dry.

    ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"marco-lightweight-active-hoodie-m-green-251","links":{},"stock":{"item_id":251,"product_id":251,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-m-green-251.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"269","_score":1,"_source":{"id":269,"sku":"MJ01-L-Orange","name":"Beaumont Summit Kit-L-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

    \n

    • Yellow full zip rain jacket.
    • Full-zip front.
    • Stand-up collar.
    • Elasticized cuffs.
    • Machine wash/dry.

    ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"beaumont-summit-kit-l-orange-269","links":{},"stock":{"item_id":269,"product_id":269,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-l-orange-269.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"285","_score":1,"_source":{"id":285,"sku":"MJ02-L-Green","name":"Hyperion Elements Jacket-L-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

    \n

    • Lime 1/4 zip pullover.
    • Split pocket.
    • Thumb holes.
    • Machine wash/hang to dry.

    ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hyperion-elements-jacket-l-green-285","links":{},"stock":{"item_id":285,"product_id":285,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-l-green-285.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"266","_score":1,"_source":{"id":266,"sku":"MJ01-M-Orange","name":"Beaumont Summit Kit-M-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

    \n

    • Yellow full zip rain jacket.
    • Full-zip front.
    • Stand-up collar.
    • Elasticized cuffs.
    • Machine wash/dry.

    ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"beaumont-summit-kit-m-orange-266","links":{},"stock":{"item_id":266,"product_id":266,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-m-orange-266.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"271","_score":1,"_source":{"id":271,"sku":"MJ01-L-Yellow","name":"Beaumont Summit Kit-L-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

    \n

    • Yellow full zip rain jacket.
    • Full-zip front.
    • Stand-up collar.
    • Elasticized cuffs.
    • Machine wash/dry.

    ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"beaumont-summit-kit-l-yellow-271","links":{},"stock":{"item_id":271,"product_id":271,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-l-yellow-271.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"292","_score":1,"_source":{"id":292,"sku":"MJ04-XS-Black","name":"Kenobi Trail Jacket-XS-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

    \n

    • Black 1/4 zip pullover with royal zipper.
    • Adjustable hood and sleeve cuffs.
    • Machine wash/air dry.

    ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"kenobi-trail-jacket-xs-black-292","links":{},"stock":{"item_id":292,"product_id":292,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xs-black-292.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"354","_score":1,"_source":{"id":354,"sku":"MJ09-XL-Yellow","name":"Taurus Elements Shell-XL-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

    \n

    • Yellow 1/4 zip pullover.
    • Two chest pockets.
    • Standard fit.
    • Waterproof, breathable, seam sealed.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"taurus-elements-shell-xl-yellow-354","links":{},"stock":{"item_id":354,"product_id":354,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xl-yellow-354.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"373","_score":1,"_source":{"id":373,"sku":"MJ11-XS-Green","name":"Typhon Performance Fleece-lined Jacket-XS-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

    \n

    • Black full-zip flight jacket.
    • Cocona® wicking fiber.
    • Machine wash/dry.

    ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"typhon-performance-fleece-lined-jacket-xs-green-373","links":{},"stock":{"item_id":373,"product_id":373,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xs-green-373.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"353","_score":1,"_source":{"id":353,"sku":"MJ09-XL-White","name":"Taurus Elements Shell-XL-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

    \n

    • Yellow 1/4 zip pullover.
    • Two chest pockets.
    • Standard fit.
    • Waterproof, breathable, seam sealed.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"taurus-elements-shell-xl-white-353","links":{},"stock":{"item_id":353,"product_id":353,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xl-white-353.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"384","_score":1,"_source":{"id":384,"sku":"MJ11-XL-Black","name":"Typhon Performance Fleece-lined Jacket-XL-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

    \n

    • Black full-zip flight jacket.
    • Cocona® wicking fiber.
    • Machine wash/dry.

    ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"typhon-performance-fleece-lined-jacket-xl-black-384","links":{},"stock":{"item_id":384,"product_id":384,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xl-black-384.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"327","_score":1,"_source":{"id":327,"sku":"MJ08-S-Blue","name":"Lando Gym Jacket-S-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

    \n

    • Gray polyester/spandex full zip jacket with orange lining.
    • Right pocket device storage.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lando-gym-jacket-s-blue-327","links":{},"stock":{"item_id":327,"product_id":327,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-s-blue-327.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"315","_score":1,"_source":{"id":315,"sku":"MJ07-M-Red","name":"Orion Two-Tone Fitted Jacket-M-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

    \n

    • Red full zip fleece with gray insets.
    • Double-knit construction.
    • Full athletic cut.
    • Set in sleeves.
    • Front pouch pocket.

    ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"orion-two-tone-fitted-jacket-m-red-315","links":{},"stock":{"item_id":315,"product_id":315,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-m-red-315.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"346","_score":1,"_source":{"id":346,"sku":"MJ09-M-Blue","name":"Taurus Elements Shell-M-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

    \n

    • Yellow 1/4 zip pullover.
    • Two chest pockets.
    • Standard fit.
    • Waterproof, breathable, seam sealed.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"taurus-elements-shell-m-blue-346","links":{},"stock":{"item_id":346,"product_id":346,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-m-blue-346.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"296","_score":1,"_source":{"id":296,"sku":"MJ04-S-Blue","name":"Kenobi Trail Jacket-S-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

    \n

    • Black 1/4 zip pullover with royal zipper.
    • Adjustable hood and sleeve cuffs.
    • Machine wash/air dry.

    ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"kenobi-trail-jacket-s-blue-296","links":{},"stock":{"item_id":296,"product_id":296,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-s-blue-296.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"294","_score":1,"_source":{"id":294,"sku":"MJ04-XS-Purple","name":"Kenobi Trail Jacket-XS-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

    \n

    • Black 1/4 zip pullover with royal zipper.
    • Adjustable hood and sleeve cuffs.
    • Machine wash/air dry.

    ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"kenobi-trail-jacket-xs-purple-294","links":{},"stock":{"item_id":294,"product_id":294,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xs-purple-294.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"287","_score":1,"_source":{"id":287,"sku":"MJ02-L-Red","name":"Hyperion Elements Jacket-L-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

    \n

    • Lime 1/4 zip pullover.
    • Split pocket.
    • Thumb holes.
    • Machine wash/hang to dry.

    ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hyperion-elements-jacket-l-red-287","links":{},"stock":{"item_id":287,"product_id":287,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-l-red-287.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"358","_score":1,"_source":{"id":358,"sku":"MJ10-XS-Red","name":"Mars HeatTech™ Pullover-XS-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

    \n

    • Red 1/4 zip pullover.
    • Adjustable VELCRO® sleeve cuffs.
    • Two hand pockets.
    • Napoleon pocket.
    • Machine wash/dry

    ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mars-heattech-and-trade-pullover-xs-red-358","links":{},"stock":{"item_id":358,"product_id":358,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xs-red-358.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"359","_score":1,"_source":{"id":359,"sku":"MJ10-S-Black","name":"Mars HeatTech™ Pullover-S-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

    \n

    • Red 1/4 zip pullover.
    • Adjustable VELCRO® sleeve cuffs.
    • Two hand pockets.
    • Napoleon pocket.
    • Machine wash/dry

    ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mars-heattech-and-trade-pullover-s-black-359","links":{},"stock":{"item_id":359,"product_id":359,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-s-black-359.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"360","_score":1,"_source":{"id":360,"sku":"MJ10-S-Orange","name":"Mars HeatTech™ Pullover-S-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

    \n

    • Red 1/4 zip pullover.
    • Adjustable VELCRO® sleeve cuffs.
    • Two hand pockets.
    • Napoleon pocket.
    • Machine wash/dry

    ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mars-heattech-and-trade-pullover-s-orange-360","links":{},"stock":{"item_id":360,"product_id":360,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-s-orange-360.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"364","_score":1,"_source":{"id":364,"sku":"MJ10-M-Red","name":"Mars HeatTech™ Pullover-M-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

    \n

    • Red 1/4 zip pullover.
    • Adjustable VELCRO® sleeve cuffs.
    • Two hand pockets.
    • Napoleon pocket.
    • Machine wash/dry

    ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mars-heattech-and-trade-pullover-m-red-364","links":{},"stock":{"item_id":364,"product_id":364,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-m-red-364.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"328","_score":1,"_source":{"id":328,"sku":"MJ08-S-Gray","name":"Lando Gym Jacket-S-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

    \n

    • Gray polyester/spandex full zip jacket with orange lining.
    • Right pocket device storage.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lando-gym-jacket-s-gray-328","links":{},"stock":{"item_id":328,"product_id":328,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-s-gray-328.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"312","_score":1,"_source":{"id":312,"sku":"MJ07-S-Red","name":"Orion Two-Tone Fitted Jacket-S-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

    \n

    • Red full zip fleece with gray insets.
    • Double-knit construction.
    • Full athletic cut.
    • Set in sleeves.
    • Front pouch pocket.

    ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"orion-two-tone-fitted-jacket-s-red-312","links":{},"stock":{"item_id":312,"product_id":312,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-s-red-312.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"337","_score":1,"_source":{"id":337,"sku":"MJ08-XL-Gray","name":"Lando Gym Jacket-XL-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

    \n

    • Gray polyester/spandex full zip jacket with orange lining.
    • Right pocket device storage.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lando-gym-jacket-xl-gray-337","links":{},"stock":{"item_id":337,"product_id":337,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xl-gray-337.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"316","_score":1,"_source":{"id":316,"sku":"MJ07-M-Yellow","name":"Orion Two-Tone Fitted Jacket-M-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

    \n

    • Red full zip fleece with gray insets.
    • Double-knit construction.
    • Full athletic cut.
    • Set in sleeves.
    • Front pouch pocket.

    ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"orion-two-tone-fitted-jacket-m-yellow-316","links":{},"stock":{"item_id":316,"product_id":316,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-m-yellow-316.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"319","_score":1,"_source":{"id":319,"sku":"MJ07-L-Yellow","name":"Orion Two-Tone Fitted Jacket-L-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

    \n

    • Red full zip fleece with gray insets.
    • Double-knit construction.
    • Full athletic cut.
    • Set in sleeves.
    • Front pouch pocket.

    ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"orion-two-tone-fitted-jacket-l-yellow-319","links":{},"stock":{"item_id":319,"product_id":319,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-l-yellow-319.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"261","_score":1,"_source":{"id":261,"sku":"MJ01-XS-Red","name":"Beaumont Summit Kit-XS-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

    \n

    • Yellow full zip rain jacket.
    • Full-zip front.
    • Stand-up collar.
    • Elasticized cuffs.
    • Machine wash/dry.

    ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"beaumont-summit-kit-xs-red-261","links":{},"stock":{"item_id":261,"product_id":261,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xs-red-261.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"441","_score":1,"_source":{"id":441,"sku":"MS04-S-Red","name":"Gobi HeatTec® Tee-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

    \n

    • Orange micropolyester shirt.
    • HeatTec® wicking fabric.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gobi-heattec-and-reg-tee-s-red-441","links":{},"stock":{"item_id":441,"product_id":441,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-s-red-441.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"443","_score":1,"_source":{"id":443,"sku":"MS04-M-Orange","name":"Gobi HeatTec® Tee-M-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

    \n

    • Orange micropolyester shirt.
    • HeatTec® wicking fabric.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gobi-heattec-and-reg-tee-m-orange-443","links":{},"stock":{"item_id":443,"product_id":443,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-m-orange-443.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"448","_score":1,"_source":{"id":448,"sku":"MS04-XL-Black","name":"Gobi HeatTec® Tee-XL-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

    \n

    • Orange micropolyester shirt.
    • HeatTec® wicking fabric.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gobi-heattec-and-reg-tee-xl-black-448","links":{},"stock":{"item_id":448,"product_id":448,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xl-black-448.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"419","_score":1,"_source":{"id":419,"sku":"MJ03","name":"Montana Wind Jacket","attribute_set_id":9,"price":49,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":49,"description":"

    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

    \n

    Adjustable hood.
    Split pocket.
    Thumb holes.
    Machine wash/hang to dry.

    ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"montana-wind-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":[120,121,124,126,129],"pattern":"197","climate":[204,206,208,210],"slug":"montana-wind-jacket-419","links":{},"stock":{"item_id":419,"product_id":419,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ03-XS-Black","id":404,"status":1,"name":"Montana Wind Jacket-XS-Black","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"49","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","url_key":"montana-wind-jacket-xs-black","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-XS-Green","id":405,"status":1,"name":"Montana Wind Jacket-XS-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"53","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","url_key":"montana-wind-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-XS-Red","id":406,"status":1,"name":"Montana Wind Jacket-XS-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"58","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","url_key":"montana-wind-jacket-xs-red","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-S-Black","id":407,"status":1,"name":"Montana Wind Jacket-S-Black","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"49","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","url_key":"montana-wind-jacket-s-black","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-S-Green","id":408,"status":1,"name":"Montana Wind Jacket-S-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"53","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","url_key":"montana-wind-jacket-s-green","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-S-Red","id":409,"status":1,"name":"Montana Wind Jacket-S-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"58","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","url_key":"montana-wind-jacket-s-red","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-M-Black","id":410,"status":1,"name":"Montana Wind Jacket-M-Black","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"49","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","url_key":"montana-wind-jacket-m-black","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-M-Green","id":411,"status":1,"name":"Montana Wind Jacket-M-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"53","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","url_key":"montana-wind-jacket-m-green","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-M-Red","id":412,"status":1,"name":"Montana Wind Jacket-M-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"58","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","url_key":"montana-wind-jacket-m-red","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-L-Black","id":413,"status":1,"name":"Montana Wind Jacket-L-Black","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"49","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","url_key":"montana-wind-jacket-l-black","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-L-Green","id":414,"status":1,"name":"Montana Wind Jacket-L-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"53","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","url_key":"montana-wind-jacket-l-green","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-L-Red","id":415,"status":1,"name":"Montana Wind Jacket-L-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"58","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","url_key":"montana-wind-jacket-l-red","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-XL-Black","id":416,"status":1,"name":"Montana Wind Jacket-XL-Black","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"49","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","url_key":"montana-wind-jacket-xl-black","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-XL-Green","id":417,"status":1,"name":"Montana Wind Jacket-XL-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"53","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","url_key":"montana-wind-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-XL-Red","id":418,"status":1,"name":"Montana Wind Jacket-XL-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"58","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","url_key":"montana-wind-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001}],"configurable_options":[{"id":47,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":419,"attribute_code":"color"},{"id":46,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":419,"attribute_code":"size"}],"color_options":[49,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-419.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"474","_score":1,"_source":{"id":474,"sku":"MS09-M-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-M-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

    \n

    • Royal polyester tee with black accents.
    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-crew-neck-m-black-474","links":{},"stock":{"item_id":474,"product_id":474,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-m-black-474.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"475","_score":1,"_source":{"id":475,"sku":"MS09-M-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-M-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

    \n

    • Royal polyester tee with black accents.
    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-crew-neck-m-blue-475","links":{},"stock":{"item_id":475,"product_id":475,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-m-blue-475.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"492","_score":1,"_source":{"id":492,"sku":"MS11-M-Yellow","name":"Atomic Endurance Running Tee (V-neck)-M-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

    \n

    • Lime heathered v-neck tee.
    • Ultra-lightweight.
    • Moisture-wicking Cocona® fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-v-neck-m-yellow-492","links":{},"stock":{"item_id":492,"product_id":492,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-m-yellow-492.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"493","_score":1,"_source":{"id":493,"sku":"MS11-L-Blue","name":"Atomic Endurance Running Tee (V-neck)-L-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

    \n

    • Lime heathered v-neck tee.
    • Ultra-lightweight.
    • Moisture-wicking Cocona® fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-v-neck-l-blue-493","links":{},"stock":{"item_id":493,"product_id":493,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-l-blue-493.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"476","_score":1,"_source":{"id":476,"sku":"MS09-M-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-M-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

    \n

    • Royal polyester tee with black accents.
    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-crew-neck-m-red-476","links":{},"stock":{"item_id":476,"product_id":476,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-m-red-476.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"497","_score":1,"_source":{"id":497,"sku":"MS11-XL-Green","name":"Atomic Endurance Running Tee (V-neck)-XL-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

    \n

    • Lime heathered v-neck tee.
    • Ultra-lightweight.
    • Moisture-wicking Cocona® fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-v-neck-xl-green-497","links":{},"stock":{"item_id":497,"product_id":497,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xl-green-497.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"498","_score":1,"_source":{"id":498,"sku":"MS11-XL-Yellow","name":"Atomic Endurance Running Tee (V-neck)-XL-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

    \n

    • Lime heathered v-neck tee.
    • Ultra-lightweight.
    • Moisture-wicking Cocona® fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-v-neck-xl-yellow-498","links":{},"stock":{"item_id":498,"product_id":498,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xl-yellow-498.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"495","_score":1,"_source":{"id":495,"sku":"MS11-L-Yellow","name":"Atomic Endurance Running Tee (V-neck)-L-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

    \n

    • Lime heathered v-neck tee.
    • Ultra-lightweight.
    • Moisture-wicking Cocona® fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-v-neck-l-yellow-495","links":{},"stock":{"item_id":495,"product_id":495,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-l-yellow-495.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"417","_score":1,"_source":{"id":417,"sku":"MJ03-XL-Green","name":"Montana Wind Jacket-XL-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

    \n

    Adjustable hood.
    Split pocket.
    Thumb holes.
    Machine wash/hang to dry.

    ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"montana-wind-jacket-xl-green-417","links":{},"stock":{"item_id":417,"product_id":417,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xl-green-417.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"429","_score":1,"_source":{"id":429,"sku":"MJ12-L-Black","name":"Proteus Fitness Jackshirt-L-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

    \n

    • 1/4 zip. Stand-up collar.
    • Machine wash/dry.
    • Quilted inner layer.

    ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"proteus-fitness-jackshirt-l-black-429","links":{},"stock":{"item_id":429,"product_id":429,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-l-black-429.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"409","_score":1,"_source":{"id":409,"sku":"MJ03-S-Red","name":"Montana Wind Jacket-S-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

    \n

    Adjustable hood.
    Split pocket.
    Thumb holes.
    Machine wash/hang to dry.

    ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"montana-wind-jacket-s-red-409","links":{},"stock":{"item_id":409,"product_id":409,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-s-red-409.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"412","_score":1,"_source":{"id":412,"sku":"MJ03-M-Red","name":"Montana Wind Jacket-M-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

    \n

    Adjustable hood.
    Split pocket.
    Thumb holes.
    Machine wash/hang to dry.

    ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"montana-wind-jacket-m-red-412","links":{},"stock":{"item_id":412,"product_id":412,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-m-red-412.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"425","_score":1,"_source":{"id":425,"sku":"MJ12-S-Orange","name":"Proteus Fitness Jackshirt-S-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

    \n

    • 1/4 zip. Stand-up collar.
    • Machine wash/dry.
    • Quilted inner layer.

    ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"proteus-fitness-jackshirt-s-orange-425","links":{},"stock":{"item_id":425,"product_id":425,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-s-orange-425.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"431","_score":1,"_source":{"id":431,"sku":"MJ12-L-Orange","name":"Proteus Fitness Jackshirt-L-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

    \n

    • 1/4 zip. Stand-up collar.
    • Machine wash/dry.
    • Quilted inner layer.

    ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"proteus-fitness-jackshirt-l-orange-431","links":{},"stock":{"item_id":431,"product_id":431,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-l-orange-431.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"430","_score":1,"_source":{"id":430,"sku":"MJ12-L-Blue","name":"Proteus Fitness Jackshirt-L-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

    \n

    • 1/4 zip. Stand-up collar.
    • Machine wash/dry.
    • Quilted inner layer.

    ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"proteus-fitness-jackshirt-l-blue-430","links":{},"stock":{"item_id":430,"product_id":430,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-l-blue-430.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"461","_score":1,"_source":{"id":461,"sku":"MS05-L-Black","name":"Helios EverCool™ Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

    \n

    • Teal quick dry tee.
    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helios-evercool-and-trade-tee-l-black-461","links":{},"stock":{"item_id":461,"product_id":461,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-l-black-461.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"473","_score":1,"_source":{"id":473,"sku":"MS09-S-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-S-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

    \n

    • Royal polyester tee with black accents.
    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-crew-neck-s-red-473","links":{},"stock":{"item_id":473,"product_id":473,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-s-red-473.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"464","_score":1,"_source":{"id":464,"sku":"MS05-XL-Black","name":"Helios EverCool™ Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

    \n

    • Teal quick dry tee.
    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helios-evercool-and-trade-tee-xl-black-464","links":{},"stock":{"item_id":464,"product_id":464,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xl-black-464.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"472","_score":1,"_source":{"id":472,"sku":"MS09-S-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-S-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

    \n

    • Royal polyester tee with black accents.
    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-crew-neck-s-blue-472","links":{},"stock":{"item_id":472,"product_id":472,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-s-blue-472.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"501","_score":1,"_source":{"id":501,"sku":"MS12-XS-Blue","name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

    \n

    • Red polyester tee.
    • Crew neckline.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-crew-neck-xs-blue-501","links":{},"stock":{"item_id":501,"product_id":501,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xs-blue-501.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"530","_score":1,"_source":{"id":530,"sku":"MS03-XL-Orange","name":"Balboa Persistence Tee-XL-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

    \n

    • Crew neckline.
    • Semi-fitted.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"balboa-persistence-tee-xl-orange-530","links":{},"stock":{"item_id":530,"product_id":530,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xl-orange-530.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"536","_score":1,"_source":{"id":536,"sku":"MS06-S-Green","name":"Zoltan Gym Tee-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

    \n

    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoltan-gym-tee-s-green-536","links":{},"stock":{"item_id":536,"product_id":536,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-s-green-536.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"389","_score":1,"_source":{"id":389,"sku":"MJ06-XS-Green","name":"Jupiter All-Weather Trainer -XS-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

    \n

    • Relaxed fit.
    • Hand pockets.
    • Machine wash/dry.
    • Reflective safety trim.

    ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jupiter-all-weather-trainer-xs-green-389","links":{},"stock":{"item_id":389,"product_id":389,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xs-green-389.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"395","_score":1,"_source":{"id":395,"sku":"MJ06-M-Green","name":"Jupiter All-Weather Trainer -M-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

    \n

    • Relaxed fit.
    • Hand pockets.
    • Machine wash/dry.
    • Reflective safety trim.

    ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jupiter-all-weather-trainer-m-green-395","links":{},"stock":{"item_id":395,"product_id":395,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-m-green-395.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"394","_score":1,"_source":{"id":394,"sku":"MJ06-M-Blue","name":"Jupiter All-Weather Trainer -M-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

    \n

    • Relaxed fit.
    • Hand pockets.
    • Machine wash/dry.
    • Reflective safety trim.

    ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jupiter-all-weather-trainer-m-blue-394","links":{},"stock":{"item_id":394,"product_id":394,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-m-blue-394.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"529","_score":1,"_source":{"id":529,"sku":"MS03-XL-Green","name":"Balboa Persistence Tee-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

    \n

    • Crew neckline.
    • Semi-fitted.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"balboa-persistence-tee-xl-green-529","links":{},"stock":{"item_id":529,"product_id":529,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xl-green-529.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"505","_score":1,"_source":{"id":505,"sku":"MS12-S-Red","name":"Atomic Endurance Running Tee (Crew-Neck)-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

    \n

    • Red polyester tee.
    • Crew neckline.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-crew-neck-s-red-505","links":{},"stock":{"item_id":505,"product_id":505,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-s-red-505.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"543","_score":1,"_source":{"id":543,"sku":"MS06-L-Yellow","name":"Zoltan Gym Tee-L-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

    \n

    • Relaxed fit.
    • Crew neckline.
    • Machine wash/dry.

    ","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoltan-gym-tee-l-yellow-543","links":{},"stock":{"item_id":543,"product_id":543,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-l-yellow-543.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"517","_score":1,"_source":{"id":517,"sku":"MS03-XS-Green","name":"Balboa Persistence Tee-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

    \n

    • Crew neckline.
    • Semi-fitted.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"balboa-persistence-tee-xs-green-517","links":{},"stock":{"item_id":517,"product_id":517,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xs-green-517.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"550","_score":1,"_source":{"id":550,"sku":"MS01-XS-Yellow","name":"Aero Daily Fitness Tee-XS-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

    \n

    Relaxed fit.
    Short-Sleeve.
    Machine wash/dry.

    ","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"aero-daily-fitness-tee-xs-yellow-550","links":{},"stock":{"item_id":550,"product_id":550,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xs-yellow-550.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"700","_score":1,"_source":{"id":700,"sku":"MT08-XS-Green","name":"Sparta Gym Tank-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

    \n

    • Green polyester tank.
    • Ultra lightweight.
    • Naturally odor-resistant.
    • Close-to-body athletic fit.
    • Chafe-resistant flatlock seams.

    ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"sparta-gym-tank-xs-green-700","links":{},"stock":{"item_id":700,"product_id":700,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-xs-green-700.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"692","_score":1,"_source":{"id":692,"sku":"MT06-XL-Black","name":"Vulcan Weightlifting Tank-XL-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

    \n

    • Black polyester spandex tank.
    • 100% polyester.
    • Freedom of movement.
    • No-chafe seams.

    ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"vulcan-weightlifting-tank-xl-black-692","links":{},"stock":{"item_id":692,"product_id":692,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-xl-black-692.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"675","_score":1,"_source":{"id":675,"sku":"MT03","name":"Primo Endurance Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

    Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

    \n

    • Red heather tank with gray pocket.
    • Chafe-resistant flatlock seams.
    • Relaxed fit.
    • Contrast topstitching.
    • Machine wash/dry.

    ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"primo-endurance-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"primo-endurance-tank-675","links":{},"stock":{"item_id":675,"product_id":675,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT03-XS-Blue","id":660,"status":1,"name":"Primo Endurance Tank-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"50","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","url_key":"primo-endurance-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-XS-Red","id":661,"status":1,"name":"Primo Endurance Tank-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"58","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","url_key":"primo-endurance-tank-xs-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-XS-Yellow","id":662,"status":1,"name":"Primo Endurance Tank-XS-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"60","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","url_key":"primo-endurance-tank-xs-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-S-Blue","id":663,"status":1,"name":"Primo Endurance Tank-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"50","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","url_key":"primo-endurance-tank-s-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-S-Red","id":664,"status":1,"name":"Primo Endurance Tank-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"58","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","url_key":"primo-endurance-tank-s-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-S-Yellow","id":665,"status":1,"name":"Primo Endurance Tank-S-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"60","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","url_key":"primo-endurance-tank-s-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-M-Blue","id":666,"status":1,"name":"Primo Endurance Tank-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"50","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","url_key":"primo-endurance-tank-m-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-M-Red","id":667,"status":1,"name":"Primo Endurance Tank-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"58","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","url_key":"primo-endurance-tank-m-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-M-Yellow","id":668,"status":1,"name":"Primo Endurance Tank-M-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"60","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","url_key":"primo-endurance-tank-m-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-L-Blue","id":669,"status":1,"name":"Primo Endurance Tank-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"50","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","url_key":"primo-endurance-tank-l-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-L-Red","id":670,"status":1,"name":"Primo Endurance Tank-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"58","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","url_key":"primo-endurance-tank-l-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-L-Yellow","id":671,"status":1,"name":"Primo Endurance Tank-L-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"60","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","url_key":"primo-endurance-tank-l-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-XL-Blue","id":672,"status":1,"name":"Primo Endurance Tank-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"50","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","url_key":"primo-endurance-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-XL-Red","id":673,"status":1,"name":"Primo Endurance Tank-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"58","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","url_key":"primo-endurance-tank-xl-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-XL-Yellow","id":674,"status":1,"name":"Primo Endurance Tank-XL-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"60","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","url_key":"primo-endurance-tank-xl-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":79,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":675,"attribute_code":"color"},{"id":78,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":675,"attribute_code":"size"}],"color_options":[50,58,60],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-675.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"699","_score":1,"_source":{"id":699,"sku":"MT07","name":"Argus All-Weather Tank","attribute_set_id":9,"price":22,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":22,"description":"

    The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

    \n

    • Dark gray polyester spandex tank.
    • Reflective details for nighttime visibility.
    • Stash pocket.
    • Anti-chafe flatlock seams.

    ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"argus-all-weather-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"argus-all-weather-tank-699","links":{},"stock":{"item_id":699,"product_id":699,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT07-XS-Gray","id":694,"status":1,"name":"Argus All-Weather Tank-XS-Gray","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"167","color":"52","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","url_key":"argus-all-weather-tank-xs-gray","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"MT07-S-Gray","id":695,"status":1,"name":"Argus All-Weather Tank-S-Gray","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"168","color":"52","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","url_key":"argus-all-weather-tank-s-gray","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"MT07-M-Gray","id":696,"status":1,"name":"Argus All-Weather Tank-M-Gray","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"169","color":"52","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","url_key":"argus-all-weather-tank-m-gray","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"MT07-L-Gray","id":697,"status":1,"name":"Argus All-Weather Tank-L-Gray","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"170","color":"52","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","url_key":"argus-all-weather-tank-l-gray","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"MT07-XL-Gray","id":698,"status":1,"name":"Argus All-Weather Tank-XL-Gray","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"171","color":"52","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","url_key":"argus-all-weather-tank-xl-gray","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001}],"configurable_options":[{"id":87,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"}],"product_id":699,"attribute_code":"color"},{"id":86,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":699,"attribute_code":"size"}],"color_options":[52],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-699.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"579","_score":1,"_source":{"id":579,"sku":"MS02","name":"Ryker LumaTech™ Tee (V-neck)","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":28,"description":"

    Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

    \n

    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ryker-lumatech-trade-tee-v-neck","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,33,39],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"ryker-lumatech-and-trade-tee-v-neck-579","links":{},"stock":{"item_id":579,"product_id":579,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS02-XS-Black","id":564,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-XS-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-xs-black","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-XS-Blue","id":565,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-XS-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-xs-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-XS-Gray","id":566,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-XS-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"52","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-xs-gray","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-S-Black","id":567,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-S-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-s-black","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-S-Blue","id":568,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-S-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-s-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-S-Gray","id":569,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-S-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"52","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-s-gray","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-M-Black","id":570,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-M-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-m-black","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-M-Blue","id":571,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-M-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-m-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-M-Gray","id":572,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-M-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"52","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-m-gray","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-L-Black","id":573,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-L-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-l-black","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-L-Blue","id":574,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-L-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-l-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-L-Gray","id":575,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-L-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"52","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-l-gray","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-XL-Black","id":576,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-XL-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-xl-black","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-XL-Blue","id":577,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-XL-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-xl-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-XL-Gray","id":578,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-XL-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"52","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-xl-gray","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001}],"configurable_options":[{"id":67,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"}],"product_id":579,"attribute_code":"color"},{"id":66,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":579,"attribute_code":"size"}],"color_options":[49,50,52],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-579.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"619","_score":1,"_source":{"id":619,"sku":"MS08-M-Blue","name":"Strike Endurance Tee-M-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

    \n

    • Loose fit.
    • Ribbed cuffs/collar.
    • Machine wash/dry.

    ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"strike-endurance-tee-m-blue-619","links":{},"stock":{"item_id":619,"product_id":619,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-m-blue-619.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"626","_score":1,"_source":{"id":626,"sku":"MS08-XL-Red","name":"Strike Endurance Tee-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

    \n

    • Loose fit.
    • Ribbed cuffs/collar.
    • Machine wash/dry.

    ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"strike-endurance-tee-xl-red-626","links":{},"stock":{"item_id":626,"product_id":626,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xl-red-626.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"636","_score":1,"_source":{"id":636,"sku":"MT01-M-Red","name":"Erikssen CoolTech™ Fitness Tank-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

    \n

    • Red performance tank.
    • Slight scoop neckline.
    • Reflectivity.
    • Machine wash/dry.

    ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erikssen-cooltech-and-trade-fitness-tank-m-red-636","links":{},"stock":{"item_id":636,"product_id":636,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-m-red-636.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"641","_score":1,"_source":{"id":641,"sku":"MT01-XL-Orange","name":"Erikssen CoolTech™ Fitness Tank-XL-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

    \n

    • Red performance tank.
    • Slight scoop neckline.
    • Reflectivity.
    • Machine wash/dry.

    ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erikssen-cooltech-and-trade-fitness-tank-xl-orange-641","links":{},"stock":{"item_id":641,"product_id":641,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xl-orange-641.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"650","_score":1,"_source":{"id":650,"sku":"MT02-M-Gray","name":"Tristan Endurance Tank-M-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

    \n

    • White performance tank.
    • Stylish contrast stitching.
    • Relaxed fit.
    • Ribbed crew neckline.
    • Machine wash/dry.

    ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tristan-endurance-tank-m-gray-650","links":{},"stock":{"item_id":650,"product_id":650,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-m-gray-650.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"647","_score":1,"_source":{"id":647,"sku":"MT02-S-Gray","name":"Tristan Endurance Tank-S-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

    \n

    • White performance tank.
    • Stylish contrast stitching.
    • Relaxed fit.
    • Ribbed crew neckline.
    • Machine wash/dry.

    ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tristan-endurance-tank-s-gray-647","links":{},"stock":{"item_id":647,"product_id":647,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-s-gray-647.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"639","_score":1,"_source":{"id":639,"sku":"MT01-L-Red","name":"Erikssen CoolTech™ Fitness Tank-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

    \n

    • Red performance tank.
    • Slight scoop neckline.
    • Reflectivity.
    • Machine wash/dry.

    ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erikssen-cooltech-and-trade-fitness-tank-l-red-639","links":{},"stock":{"item_id":639,"product_id":639,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-l-red-639.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"658","_score":1,"_source":{"id":658,"sku":"MT02-XL-White","name":"Tristan Endurance Tank-XL-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

    \n

    • White performance tank.
    • Stylish contrast stitching.
    • Relaxed fit.
    • Ribbed crew neckline.
    • Machine wash/dry.

    ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tristan-endurance-tank-xl-white-658","links":{},"stock":{"item_id":658,"product_id":658,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xl-white-658.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"653","_score":1,"_source":{"id":653,"sku":"MT02-L-Gray","name":"Tristan Endurance Tank-L-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

    \n

    • White performance tank.
    • Stylish contrast stitching.
    • Relaxed fit.
    • Ribbed crew neckline.
    • Machine wash/dry.

    ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tristan-endurance-tank-l-gray-653","links":{},"stock":{"item_id":653,"product_id":653,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-l-gray-653.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"661","_score":1,"_source":{"id":661,"sku":"MT03-XS-Red","name":"Primo Endurance Tank-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

    \n

    • Red heather tank with gray pocket.
    • Chafe-resistant flatlock seams.
    • Relaxed fit.
    • Contrast topstitching.
    • Machine wash/dry.

    ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"primo-endurance-tank-xs-red-661","links":{},"stock":{"item_id":661,"product_id":661,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xs-red-661.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"660","_score":1,"_source":{"id":660,"sku":"MT03-XS-Blue","name":"Primo Endurance Tank-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

    \n

    • Red heather tank with gray pocket.
    • Chafe-resistant flatlock seams.
    • Relaxed fit.
    • Contrast topstitching.
    • Machine wash/dry.

    ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"primo-endurance-tank-xs-blue-660","links":{},"stock":{"item_id":660,"product_id":660,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xs-blue-660.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"671","_score":1,"_source":{"id":671,"sku":"MT03-L-Yellow","name":"Primo Endurance Tank-L-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

    \n

    • Red heather tank with gray pocket.
    • Chafe-resistant flatlock seams.
    • Relaxed fit.
    • Contrast topstitching.
    • Machine wash/dry.

    ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"primo-endurance-tank-l-yellow-671","links":{},"stock":{"item_id":671,"product_id":671,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-l-yellow-671.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"691","_score":1,"_source":{"id":691,"sku":"MT06-L-Black","name":"Vulcan Weightlifting Tank-L-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

    \n

    • Black polyester spandex tank.
    • 100% polyester.
    • Freedom of movement.
    • No-chafe seams.

    ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"vulcan-weightlifting-tank-l-black-691","links":{},"stock":{"item_id":691,"product_id":691,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-l-black-691.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"607","_score":1,"_source":{"id":607,"sku":"MS07-L-White","name":"Deion Long-Sleeve EverCool™ Tee-L-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

    \n

    • Fitted.
    • Contrast inner neck tape.
    • Machine wash/dry.

    ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"deion-long-sleeve-evercool-and-trade-tee-l-white-607","links":{},"stock":{"item_id":607,"product_id":607,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-l-white-607.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"608","_score":1,"_source":{"id":608,"sku":"MS07-XL-Black","name":"Deion Long-Sleeve EverCool™ Tee-XL-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

    \n

    • Fitted.
    • Contrast inner neck tape.
    • Machine wash/dry.

    ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"deion-long-sleeve-evercool-and-trade-tee-xl-black-608","links":{},"stock":{"item_id":608,"product_id":608,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xl-black-608.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"603","_score":1,"_source":{"id":603,"sku":"MS07-M-Green","name":"Deion Long-Sleeve EverCool™ Tee-M-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

    \n

    • Fitted.
    • Contrast inner neck tape.
    • Machine wash/dry.

    ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"deion-long-sleeve-evercool-and-trade-tee-m-green-603","links":{},"stock":{"item_id":603,"product_id":603,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-m-green-603.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"623","_score":1,"_source":{"id":623,"sku":"MS08-L-Red","name":"Strike Endurance Tee-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

    \n

    • Loose fit.
    • Ribbed cuffs/collar.
    • Machine wash/dry.

    ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"strike-endurance-tee-l-red-623","links":{},"stock":{"item_id":623,"product_id":623,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-l-red-623.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"584","_score":1,"_source":{"id":584,"sku":"MS10-S-Blue","name":"Logan HeatTec® Tee-S-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

    \n

    • Semi-fitted.
    • Crew neckline.
    • Machine wash/tumble dry.

    ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"logan-heattec-and-reg-tee-s-blue-584","links":{},"stock":{"item_id":584,"product_id":584,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-s-blue-584.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"594","_score":1,"_source":{"id":594,"sku":"MS10-XL-Red","name":"Logan HeatTec® Tee-XL-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

    \n

    • Semi-fitted.
    • Crew neckline.
    • Machine wash/tumble dry.

    ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"logan-heattec-and-reg-tee-xl-red-594","links":{},"stock":{"item_id":594,"product_id":594,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xl-red-594.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"597","_score":1,"_source":{"id":597,"sku":"MS07-XS-Green","name":"Deion Long-Sleeve EverCool™ Tee-XS-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

    \n

    • Fitted.
    • Contrast inner neck tape.
    • Machine wash/dry.

    ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"deion-long-sleeve-evercool-and-trade-tee-xs-green-597","links":{},"stock":{"item_id":597,"product_id":597,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xs-green-597.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"581","_score":1,"_source":{"id":581,"sku":"MS10-XS-Blue","name":"Logan HeatTec® Tee-XS-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

    \n

    • Semi-fitted.
    • Crew neckline.
    • Machine wash/tumble dry.

    ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"logan-heattec-and-reg-tee-xs-blue-581","links":{},"stock":{"item_id":581,"product_id":581,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xs-blue-581.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"567","_score":1,"_source":{"id":567,"sku":"MS02-S-Black","name":"Ryker LumaTech™ Tee (V-neck)-S-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

    \n

    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-v-neck-s-black-567","links":{},"stock":{"item_id":567,"product_id":567,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-s-black-567.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"570","_score":1,"_source":{"id":570,"sku":"MS02-M-Black","name":"Ryker LumaTech™ Tee (V-neck)-M-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

    \n

    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-v-neck-m-black-570","links":{},"stock":{"item_id":570,"product_id":570,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-m-black-570.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"577","_score":1,"_source":{"id":577,"sku":"MS02-XL-Blue","name":"Ryker LumaTech™ Tee (V-neck)-XL-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

    \n

    • Relaxed fit.
    • Short-Sleeve.
    • Machine wash/dry.

    ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-v-neck-xl-blue-577","links":{},"stock":{"item_id":577,"product_id":577,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xl-blue-577.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"551","_score":1,"_source":{"id":551,"sku":"MS01-S-Black","name":"Aero Daily Fitness Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

    \n

    Relaxed fit.
    Short-Sleeve.
    Machine wash/dry.

    ","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"aero-daily-fitness-tee-s-black-551","links":{},"stock":{"item_id":551,"product_id":551,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-s-black-551.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"557","_score":1,"_source":{"id":557,"sku":"MS01-L-Black","name":"Aero Daily Fitness Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

    \n

    Relaxed fit.
    Short-Sleeve.
    Machine wash/dry.

    ","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"aero-daily-fitness-tee-l-black-557","links":{},"stock":{"item_id":557,"product_id":557,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-l-black-557.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"590","_score":1,"_source":{"id":590,"sku":"MS10-L-Blue","name":"Logan HeatTec® Tee-L-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

    \n

    • Semi-fitted.
    • Crew neckline.
    • Machine wash/tumble dry.

    ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"logan-heattec-and-reg-tee-l-blue-590","links":{},"stock":{"item_id":590,"product_id":590,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-l-blue-590.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"798","_score":1,"_source":{"id":798,"sku":"MP06-33-Gray","name":"Mithra Warmup Pant-33-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

    \n

    • Ankle zips.
    • Elasticized waistband with draw cord.
    • Dual hand pockets.
    • Reflective elements for low-light safety.

    ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","color":"52","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"mithra-warmup-pant-33-gray-798","links":{},"stock":{"item_id":798,"product_id":798,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-33-gray-798.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"794","_score":1,"_source":{"id":794,"sku":"MP05","name":"Kratos Gym Pant","attribute_set_id":10,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":57,"description":"

    Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

    \n

    • Navy cotton straight leg pants.
    • Relaxed fit.
    • 2 side-seam pockets.
    • Internal zip pocket.
    • Drawstring waist.
    • Machine wash/dry.

    ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"kratos-gym-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38,39],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[208,210,211],"slug":"kratos-gym-pant-794","links":{},"stock":{"item_id":794,"product_id":794,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP05-32-Black","id":782,"status":1,"name":"Kratos Gym Pant-32-Black","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"49","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","url_key":"kratos-gym-pant-32-black","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"MP05-32-Blue","id":783,"status":1,"name":"Kratos Gym Pant-32-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"50","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","url_key":"kratos-gym-pant-32-blue","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"MP05-32-Green","id":784,"status":1,"name":"Kratos Gym Pant-32-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"53","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","url_key":"kratos-gym-pant-32-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"MP05-33-Black","id":785,"status":1,"name":"Kratos Gym Pant-33-Black","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"49","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","url_key":"kratos-gym-pant-33-black","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"MP05-33-Blue","id":786,"status":1,"name":"Kratos Gym Pant-33-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"50","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","url_key":"kratos-gym-pant-33-blue","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"MP05-33-Green","id":787,"status":1,"name":"Kratos Gym Pant-33-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"53","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","url_key":"kratos-gym-pant-33-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"MP05-34-Black","id":788,"status":1,"name":"Kratos Gym Pant-34-Black","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"49","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","url_key":"kratos-gym-pant-34-black","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"MP05-34-Blue","id":789,"status":1,"name":"Kratos Gym Pant-34-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"50","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","url_key":"kratos-gym-pant-34-blue","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"MP05-34-Green","id":790,"status":1,"name":"Kratos Gym Pant-34-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"53","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","url_key":"kratos-gym-pant-34-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"MP05-36-Black","id":791,"status":1,"name":"Kratos Gym Pant-36-Black","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"49","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","url_key":"kratos-gym-pant-36-black","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"MP05-36-Blue","id":792,"status":1,"name":"Kratos Gym Pant-36-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"50","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","url_key":"kratos-gym-pant-36-blue","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"MP05-36-Green","id":793,"status":1,"name":"Kratos Gym Pant-36-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"53","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","url_key":"kratos-gym-pant-36-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001}],"configurable_options":[{"id":107,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":794,"attribute_code":"color"},{"id":106,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":794,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-794.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"749","_score":1,"_source":{"id":749,"sku":"MP02-34-Blue","name":"Viktor LumaTech™ Pant-34-Blue","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001,"description":"

    You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

    \n

    • Dark gray polyester/spandex straight leg pants.
    • Elastic waistband and internal drawstring.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","color":"50","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"viktor-lumatech-and-trade-pant-34-blue-749","links":{},"stock":{"item_id":749,"product_id":749,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-34-blue-749.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"717","_score":1,"_source":{"id":717,"sku":"MT10","name":"Tiberius Gym Tank","attribute_set_id":9,"price":18,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":18,"description":"

    Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

    \n

    • Yellow scoop neck cotton tank.
    • Comfortable, relaxed fit.
    • 55% Hemp / 45% Organic Cotton.
    • Pesticide- and herbicide-free hemp.

    ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"tiberius-gym-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,153,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"tiberius-gym-tank-717","links":{},"stock":{"item_id":717,"product_id":717,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT10-XS-Yellow","id":712,"status":1,"name":"Tiberius Gym Tank-XS-Yellow","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"60","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","url_key":"tiberius-gym-tank-xs-yellow","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001},{"sku":"MT10-S-Yellow","id":713,"status":1,"name":"Tiberius Gym Tank-S-Yellow","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"60","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","url_key":"tiberius-gym-tank-s-yellow","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001},{"sku":"MT10-M-Yellow","id":714,"status":1,"name":"Tiberius Gym Tank-M-Yellow","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"60","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","url_key":"tiberius-gym-tank-m-yellow","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001},{"sku":"MT10-L-Yellow","id":715,"status":1,"name":"Tiberius Gym Tank-L-Yellow","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"60","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","url_key":"tiberius-gym-tank-l-yellow","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001},{"sku":"MT10-XL-Yellow","id":716,"status":1,"name":"Tiberius Gym Tank-XL-Yellow","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"60","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","url_key":"tiberius-gym-tank-xl-yellow","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001}],"configurable_options":[{"id":93,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":60,"label":"Yellow"}],"product_id":717,"attribute_code":"color"},{"id":92,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":717,"attribute_code":"size"}],"color_options":[60],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-717.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"765","_score":1,"_source":{"id":765,"sku":"MP03-36-Blue","name":"Geo Insulated Jogging Pant-36-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

    \n

    • Black polyester spandex pants with zipper pockets.
    • Reflective safety accents.
    • Loose fit.
    • On-seam pockets.
    • 8\" leg zips. 32\" inseam.
    • Machine wash/dry.

    ","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"geo-insulated-jogging-pant-36-blue-765","links":{},"stock":{"item_id":765,"product_id":765,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-36-blue-765.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"753","_score":1,"_source":{"id":753,"sku":"MP02-36-Gray","name":"Viktor LumaTech™ Pant-36-Gray","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001,"description":"

    You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

    \n

    • Dark gray polyester/spandex straight leg pants.
    • Elastic waistband and internal drawstring.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","color":"52","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"viktor-lumatech-and-trade-pant-36-gray-753","links":{},"stock":{"item_id":753,"product_id":753,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-36-gray-753.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"770","_score":1,"_source":{"id":770,"sku":"MP04-32-Gray","name":"Supernova Sport Pant-32-Gray","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

    \n

    • Dark heather gray straight leg cotton pants.
    • Relaxed fit.
    • Internal drawstring.
    • Machine wash/dry.

    ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"supernova-sport-pant-32-gray-770","links":{},"stock":{"item_id":770,"product_id":770,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-32-gray-770.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"790","_score":1,"_source":{"id":790,"sku":"MP05-34-Green","name":"Kratos Gym Pant-34-Green","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

    \n

    • Navy cotton straight leg pants.
    • Relaxed fit.
    • 2 side-seam pockets.
    • Internal zip pocket.
    • Drawstring waist.
    • Machine wash/dry.

    ","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"kratos-gym-pant-34-green-790","links":{},"stock":{"item_id":790,"product_id":790,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-34-green-790.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"780","_score":1,"_source":{"id":780,"sku":"MP04-36-Green","name":"Supernova Sport Pant-36-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

    \n

    • Dark heather gray straight leg cotton pants.
    • Relaxed fit.
    • Internal drawstring.
    • Machine wash/dry.

    ","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","color":"53","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"supernova-sport-pant-36-green-780","links":{},"stock":{"item_id":780,"product_id":780,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-36-green-780.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"777","_score":1,"_source":{"id":777,"sku":"MP04-34-Green","name":"Supernova Sport Pant-34-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

    \n

    • Dark heather gray straight leg cotton pants.
    • Relaxed fit.
    • Internal drawstring.
    • Machine wash/dry.

    ","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","color":"53","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"supernova-sport-pant-34-green-777","links":{},"stock":{"item_id":777,"product_id":777,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-34-green-777.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"799","_score":1,"_source":{"id":799,"sku":"MP06-33-Green","name":"Mithra Warmup Pant-33-Green","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

    \n

    • Ankle zips.
    • Elasticized waistband with draw cord.
    • Dual hand pockets.
    • Reflective elements for low-light safety.

    ","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","color":"53","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"mithra-warmup-pant-33-green-799","links":{},"stock":{"item_id":799,"product_id":799,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-33-green-799.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"796","_score":1,"_source":{"id":796,"sku":"MP06-32-Green","name":"Mithra Warmup Pant-32-Green","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

    \n

    • Ankle zips.
    • Elasticized waistband with draw cord.
    • Dual hand pockets.
    • Reflective elements for low-light safety.

    ","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","color":"53","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"mithra-warmup-pant-32-green-796","links":{},"stock":{"item_id":796,"product_id":796,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-32-green-796.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"795","_score":1,"_source":{"id":795,"sku":"MP06-32-Gray","name":"Mithra Warmup Pant-32-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

    \n

    • Ankle zips.
    • Elasticized waistband with draw cord.
    • Dual hand pockets.
    • Reflective elements for low-light safety.

    ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","color":"52","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"mithra-warmup-pant-32-gray-795","links":{},"stock":{"item_id":795,"product_id":795,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-32-gray-795.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"709","_score":1,"_source":{"id":709,"sku":"MT09-L-Blue","name":"Sinbad Fitness Tank-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

    \n

    • Teal polyester tank.
    • Premium fit tank top.
    • Ultra lightweight.
    • Naturally odor-resistant.

    ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"sinbad-fitness-tank-l-blue-709","links":{},"stock":{"item_id":709,"product_id":709,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-l-blue-709.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"715","_score":1,"_source":{"id":715,"sku":"MT10-L-Yellow","name":"Tiberius Gym Tank-L-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

    Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

    \n

    • Yellow scoop neck cotton tank.
    • Comfortable, relaxed fit.
    • 55% Hemp / 45% Organic Cotton.
    • Pesticide- and herbicide-free hemp.

    ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tiberius-gym-tank-l-yellow-715","links":{},"stock":{"item_id":715,"product_id":715,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-l-yellow-715.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"721","_score":1,"_source":{"id":721,"sku":"MT11-L-Blue","name":"Atlas Fitness Tank-L-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

    From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

    \n

    • Teal scoop neck cotton tank.
    • Triblend, soft fabric.
    • Relaxed fit.

    ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atlas-fitness-tank-l-blue-721","links":{},"stock":{"item_id":721,"product_id":721,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-l-blue-721.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"743","_score":1,"_source":{"id":743,"sku":"MP02-32-Blue","name":"Viktor LumaTech™ Pant-32-Blue","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001,"description":"

    You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

    \n

    • Dark gray polyester/spandex straight leg pants.
    • Elastic waistband and internal drawstring.
    • Relaxed fit.
    • Machine wash/dry.

    ","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","color":"50","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"viktor-lumatech-and-trade-pant-32-blue-743","links":{},"stock":{"item_id":743,"product_id":743,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-32-blue-743.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"733","_score":1,"_source":{"id":733,"sku":"MP01-33-Black","name":"Caesar Warm-Up Pant-33-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

    \n

    • Light gray heather knit straight leg pants.
    • Relaxed fit.
    • Inseam: 32\".
    • Machine wash/dry.
    • CoolTech™ wicking fabric.

    ","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"caesar-warm-up-pant-33-black-733","links":{},"stock":{"item_id":733,"product_id":733,"stock_id":1,"qty":79,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-33-black-733.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"815","_score":1,"_source":{"id":815,"sku":"MP07-34-Blue","name":"Thorpe Track Pant-34-Blue","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

    Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

    \n

    • Moisture transfer properties.
    • 7% stretch.
    • Reflective safety trim.
    • Elastic drawcord waist.

    ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"thorpe-track-pant-34-blue-815","links":{},"stock":{"item_id":815,"product_id":815,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-34-blue-815.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"842","_score":1,"_source":{"id":842,"sku":"MP09-34-Red","name":"Livingston All-Purpose Tight-34-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

    It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

    \n

    • Breathable stretch organic cotton/spandex.
    • Compression fit
    • Hidden key pocket
    • Elastic waist with internal drawcord.

    ","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","color":"58","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"livingston-all-purpose-tight-34-red-842","links":{},"stock":{"item_id":842,"product_id":842,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-34-red-842.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"771","_score":1,"_source":{"id":771,"sku":"MP04-32-Green","name":"Supernova Sport Pant-32-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

    \n

    • Dark heather gray straight leg cotton pants.
    • Relaxed fit.
    • Internal drawstring.
    • Machine wash/dry.

    ","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","color":"53","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"supernova-sport-pant-32-green-771","links":{},"stock":{"item_id":771,"product_id":771,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-32-green-771.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"761","_score":1,"_source":{"id":761,"sku":"MP03-33-Red","name":"Geo Insulated Jogging Pant-33-Red","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

    \n

    • Black polyester spandex pants with zipper pockets.
    • Reflective safety accents.
    • Loose fit.
    • On-seam pockets.
    • 8\" leg zips. 32\" inseam.
    • Machine wash/dry.

    ","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"geo-insulated-jogging-pant-33-red-761","links":{},"stock":{"item_id":761,"product_id":761,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-33-red-761.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"814","_score":1,"_source":{"id":814,"sku":"MP07-34-Black","name":"Thorpe Track Pant-34-Black","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

    Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

    \n

    • Moisture transfer properties.
    • 7% stretch.
    • Reflective safety trim.
    • Elastic drawcord waist.

    ","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"thorpe-track-pant-34-black-814","links":{},"stock":{"item_id":814,"product_id":814,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-34-black-814.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"823","_score":1,"_source":{"id":823,"sku":"MP08-32-Red","name":"Zeppelin Yoga Pant-32-Red","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001,"description":"

    Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

    \n

    • Smooth exterior for easy over-layering.
    • Brushed fleece interior insulates and wicks.
    • No-roll elastic waistband with inner drawstring.
    • Chafe-resistant flatlock seams.

    ","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"zeppelin-yoga-pant-32-red-823","links":{},"stock":{"item_id":823,"product_id":823,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-32-red-823.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"804","_score":1,"_source":{"id":804,"sku":"MP06-36-Gray","name":"Mithra Warmup Pant-36-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

    \n

    • Ankle zips.
    • Elasticized waistband with draw cord.
    • Dual hand pockets.
    • Reflective elements for low-light safety.

    ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","color":"52","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"mithra-warmup-pant-36-gray-804","links":{},"stock":{"item_id":804,"product_id":804,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-36-gray-804.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"726","_score":1,"_source":{"id":726,"sku":"MT12-M-Blue","name":"Cassius Sparring Tank-M-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

    Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

    \n

    • Royal crewneck cotton tank.
    • Contrast stitching.
    • Self fabric binding at neckline.
    • Slim fit.
    • 96% Merino / 4% LYCRA®.

    ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"cassius-sparring-tank-m-blue-726","links":{},"stock":{"item_id":726,"product_id":726,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-m-blue-726.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"893","_score":1,"_source":{"id":893,"sku":"MSH01-34-Blue","name":"Cobalt CoolTech™ Fitness Short-34-Blue","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

    It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

    \n

    • Light blue nylon shorts.
    • Relaxed fit.
    • 5\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","color":"50","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cobalt-cooltech-and-trade-fitness-short-34-blue-893","links":{},"stock":{"item_id":893,"product_id":893,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-34-blue-893.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"896","_score":1,"_source":{"id":896,"sku":"MSH01-36-Blue","name":"Cobalt CoolTech™ Fitness Short-36-Blue","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

    It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

    \n

    • Light blue nylon shorts.
    • Relaxed fit.
    • 5\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","color":"50","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cobalt-cooltech-and-trade-fitness-short-36-blue-896","links":{},"stock":{"item_id":896,"product_id":896,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-36-blue-896.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"859","_score":1,"_source":{"id":859,"sku":"MP10","name":"Orestes Yoga Pant ","attribute_set_id":10,"price":66,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":66,"description":"

    The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

    \n

    • A yoga essential.
    • Breathable stretch organic cotton/spandex.
    • Standard Fit.

    ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"orestes-yoga-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,154,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[116,115,109],"pattern":"197","climate":[204,205,206,210,211],"slug":"orestes-yoga-pant-859","links":{},"stock":{"item_id":859,"product_id":859,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP10-32-Black","id":847,"status":1,"name":"Orestes Yoga Pant -32-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"176","color":"49","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","url_key":"orestes-yoga-pant-32-black","msrp_display_actual_price_type":"0"},{"sku":"MP10-32-Blue","id":848,"status":1,"name":"Orestes Yoga Pant -32-Blue","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"176","color":"50","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","url_key":"orestes-yoga-pant-32-blue","msrp_display_actual_price_type":"0"},{"sku":"MP10-32-Green","id":849,"status":1,"name":"Orestes Yoga Pant -32-Green","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"176","color":"53","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","url_key":"orestes-yoga-pant-32-green","msrp_display_actual_price_type":"0"},{"sku":"MP10-33-Black","id":850,"status":1,"name":"Orestes Yoga Pant -33-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"177","color":"49","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","url_key":"orestes-yoga-pant-33-black","msrp_display_actual_price_type":"0"},{"sku":"MP10-33-Blue","id":851,"status":1,"name":"Orestes Yoga Pant -33-Blue","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"177","color":"50","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","url_key":"orestes-yoga-pant-33-blue","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MP10-33-Green","id":852,"status":1,"name":"Orestes Yoga Pant -33-Green","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"177","color":"53","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","url_key":"orestes-yoga-pant-33-green","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MP10-34-Black","id":853,"status":1,"name":"Orestes Yoga Pant -34-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"178","color":"49","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","url_key":"orestes-yoga-pant-34-black","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MP10-34-Blue","id":854,"status":1,"name":"Orestes Yoga Pant -34-Blue","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"178","color":"50","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","url_key":"orestes-yoga-pant-34-blue","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MP10-34-Green","id":855,"status":1,"name":"Orestes Yoga Pant -34-Green","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"178","color":"53","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","url_key":"orestes-yoga-pant-34-green","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MP10-36-Black","id":856,"status":1,"name":"Orestes Yoga Pant -36-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"179","color":"49","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","url_key":"orestes-yoga-pant-36-black","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MP10-36-Blue","id":857,"status":1,"name":"Orestes Yoga Pant -36-Blue","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"179","color":"50","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","url_key":"orestes-yoga-pant-36-blue","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MP10-36-Green","id":858,"status":1,"name":"Orestes Yoga Pant -36-Green","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"179","color":"53","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","url_key":"orestes-yoga-pant-36-green","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001}],"configurable_options":[{"id":117,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":859,"attribute_code":"color"},{"id":116,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":859,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-859.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"947","_score":1,"_source":{"id":947,"sku":"MSH06-33-Gray","name":"Lono Yoga Short-33-Gray","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

    \n

    • Dark gray shorts with mesh accents.
    • Ultra flexible four-way stretch.
    • Flatlock seams and waistband.
    • Two pockets, phony fly.
    • Nylon/Lycra outer, Polyester/Lycra inner.

    ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","color":"52","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"lono-yoga-short-33-gray-947","links":{},"stock":{"item_id":947,"product_id":947,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-33-gray-947.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"921","_score":1,"_source":{"id":921,"sku":"MSH04-33-Purple","name":"Torque Power Short-33-Purple","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

    Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

    \n

    • Light gray shorts.
    • Fitted design.
    • Elastic waistband.
    • Flat-seam construction.
    • 7\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","color":"57","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"torque-power-short-33-purple-921","links":{},"stock":{"item_id":921,"product_id":921,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-33-purple-921.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"940","_score":1,"_source":{"id":940,"sku":"MSH05-36-Blue","name":"Hawkeye Yoga Short-36-Blue","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

    \n

    • Dark gray shorts with red accents.
    • 92% Organic Cotton 8% Spandex.
    • Breathable stretch organic cotton.
    • Medium=8.0\" (21.0cm) inseam.

    ","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"hawkeye-yoga-short-36-blue-940","links":{},"stock":{"item_id":940,"product_id":940,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-36-blue-940.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"946","_score":1,"_source":{"id":946,"sku":"MSH06-33-Blue","name":"Lono Yoga Short-33-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

    \n

    • Dark gray shorts with mesh accents.
    • Ultra flexible four-way stretch.
    • Flatlock seams and waistband.
    • Two pockets, phony fly.
    • Nylon/Lycra outer, Polyester/Lycra inner.

    ","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"lono-yoga-short-33-blue-946","links":{},"stock":{"item_id":946,"product_id":946,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-33-blue-946.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"939","_score":1,"_source":{"id":939,"sku":"MSH05-36-Black","name":"Hawkeye Yoga Short-36-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

    \n

    • Dark gray shorts with red accents.
    • 92% Organic Cotton 8% Spandex.
    • Breathable stretch organic cotton.
    • Medium=8.0\" (21.0cm) inseam.

    ","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"hawkeye-yoga-short-36-black-939","links":{},"stock":{"item_id":939,"product_id":939,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-36-black-939.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"882","_score":1,"_source":{"id":882,"sku":"MP12-36-Black","name":"Cronus Yoga Pant -36-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

    \n

    • Drawstring waist.
    • Loose, straight-leg fit.
    • Lightweight cotton-recycled blend.
    • Front pockets with stitching detail.
    • Elastic ankle.

    ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cronus-yoga-pant-36-black-882","links":{},"stock":{"item_id":882,"product_id":882,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-36-black-882.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"878","_score":1,"_source":{"id":878,"sku":"MP12-33-Red","name":"Cronus Yoga Pant -33-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

    \n

    • Drawstring waist.
    • Loose, straight-leg fit.
    • Lightweight cotton-recycled blend.
    • Front pockets with stitching detail.
    • Elastic ankle.

    ","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","color":"58","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cronus-yoga-pant-33-red-878","links":{},"stock":{"item_id":878,"product_id":878,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-33-red-878.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"891","_score":1,"_source":{"id":891,"sku":"MSH01-33-Red","name":"Cobalt CoolTech™ Fitness Short-33-Red","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

    It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

    \n

    • Light blue nylon shorts.
    • Relaxed fit.
    • 5\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","color":"58","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cobalt-cooltech-and-trade-fitness-short-33-red-891","links":{},"stock":{"item_id":891,"product_id":891,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-33-red-891.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"873","_score":1,"_source":{"id":873,"sku":"MP12-32-Black","name":"Cronus Yoga Pant -32-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

    \n

    • Drawstring waist.
    • Loose, straight-leg fit.
    • Lightweight cotton-recycled blend.
    • Front pockets with stitching detail.
    • Elastic ankle.

    ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cronus-yoga-pant-32-black-873","links":{},"stock":{"item_id":873,"product_id":873,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-32-black-873.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"877","_score":1,"_source":{"id":877,"sku":"MP12-33-Blue","name":"Cronus Yoga Pant -33-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

    \n

    • Drawstring waist.
    • Loose, straight-leg fit.
    • Lightweight cotton-recycled blend.
    • Front pockets with stitching detail.
    • Elastic ankle.

    ","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","color":"50","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cronus-yoga-pant-33-blue-877","links":{},"stock":{"item_id":877,"product_id":877,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-33-blue-877.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"904","_score":1,"_source":{"id":904,"sku":"MSH03-32-Black","name":"Meteor Workout Short-32-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

    Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

    \n

    • Royal blue shorts with light blue accents.
    • Interior drawstring waistband.
    • 7\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"meteor-workout-short-32-black-904","links":{},"stock":{"item_id":904,"product_id":904,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-32-black-904.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"907","_score":1,"_source":{"id":907,"sku":"MSH03-33-Black","name":"Meteor Workout Short-33-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

    Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

    \n

    • Royal blue shorts with light blue accents.
    • Interior drawstring waistband.
    • 7\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"meteor-workout-short-33-black-907","links":{},"stock":{"item_id":907,"product_id":907,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-33-black-907.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"910","_score":1,"_source":{"id":910,"sku":"MSH03-34-Black","name":"Meteor Workout Short-34-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

    Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

    \n

    • Royal blue shorts with light blue accents.
    • Interior drawstring waistband.
    • 7\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"meteor-workout-short-34-black-910","links":{},"stock":{"item_id":910,"product_id":910,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-34-black-910.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"902","_score":1,"_source":{"id":902,"sku":"MSH02-36-Black","name":"Apollo Running Short-36-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

    Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

    \n

    • Black shorts with green accents.
    • Side pockets.
    • 4\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"apollo-running-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"apollo-running-short-36-black-902","links":{},"stock":{"item_id":902,"product_id":902,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-36-black-902.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"909","_score":1,"_source":{"id":909,"sku":"MSH03-33-Green","name":"Meteor Workout Short-33-Green","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

    Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

    \n

    • Royal blue shorts with light blue accents.
    • Interior drawstring waistband.
    • 7\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"meteor-workout-short-33-green-909","links":{},"stock":{"item_id":909,"product_id":909,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-33-green-909.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"924","_score":1,"_source":{"id":924,"sku":"MSH04-34-Purple","name":"Torque Power Short-34-Purple","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

    Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

    \n

    • Light gray shorts.
    • Fitted design.
    • Elastic waistband.
    • Flat-seam construction.
    • 7\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","color":"57","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"torque-power-short-34-purple-924","links":{},"stock":{"item_id":924,"product_id":924,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-34-purple-924.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"932","_score":1,"_source":{"id":932,"sku":"MSH05-32-Gray","name":"Hawkeye Yoga Short-32-Gray","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

    \n

    • Dark gray shorts with red accents.
    • 92% Organic Cotton 8% Spandex.
    • Breathable stretch organic cotton.
    • Medium=8.0\" (21.0cm) inseam.

    ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","color":"52","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"hawkeye-yoga-short-32-gray-932","links":{},"stock":{"item_id":932,"product_id":932,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-32-gray-932.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"917","_score":1,"_source":{"id":917,"sku":"MSH04-32-Gray","name":"Torque Power Short-32-Gray","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

    Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

    \n

    • Light gray shorts.
    • Fitted design.
    • Elastic waistband.
    • Flat-seam construction.
    • 7\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","color":"52","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"torque-power-short-32-gray-917","links":{},"stock":{"item_id":917,"product_id":917,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-32-gray-917.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"866","_score":1,"_source":{"id":866,"sku":"MP11-34-Blue","name":"Aether Gym Pant -34-Blue","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

    The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

    \n

    • Pants/shorts convertible.
    • Lightweight moisture wicking.
    • Water repellent.
    • Belted waist.

    ","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"aether-gym-pant-34-blue-866","links":{},"stock":{"item_id":866,"product_id":866,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-34-blue-866.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"856","_score":1,"_source":{"id":856,"sku":"MP10-36-Black","name":"Orestes Yoga Pant -36-Black","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

    The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

    \n

    • A yoga essential.
    • Breathable stretch organic cotton/spandex.
    • Standard Fit.

    ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","color":"49","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-yoga-pant-36-black-856","links":{},"stock":{"item_id":856,"product_id":856,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-36-black-856.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"853","_score":1,"_source":{"id":853,"sku":"MP10-34-Black","name":"Orestes Yoga Pant -34-Black","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

    The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

    \n

    • A yoga essential.
    • Breathable stretch organic cotton/spandex.
    • Standard Fit.

    ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","color":"49","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-yoga-pant-34-black-853","links":{},"stock":{"item_id":853,"product_id":853,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-34-black-853.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"992","_score":1,"_source":{"id":992,"sku":"MSH09-36-Blue","name":"Troy Yoga Short-36-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

    \n

    • Navy polyester pinstripe shorts.
    • Woven fabric with moderate stretch.
    • 62% cotton/34% nylon/4% spandex.
    • LumaTech™ lining.

    ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"troy-yoga-short-36-blue-992","links":{},"stock":{"item_id":992,"product_id":992,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-36-blue-992.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1000","_score":1,"_source":{"id":1000,"sku":"MSH10-33-Purple","name":"Sol Active Short-33-Purple","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

    \n

    • Light blue jersey shorts with mesh detail.
    • 87% Spandex 13% Lycra.
    • Machine wash cold, tumble dry low.
    • Superior performance fabric.
    • Flat-lock seams.

    ","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","color":"57","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"sol-active-short-33-purple-1000","links":{},"stock":{"item_id":1000,"product_id":1000,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-33-purple-1000.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"925","_score":1,"_source":{"id":925,"sku":"MSH04-34-Yellow","name":"Torque Power Short-34-Yellow","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

    Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

    \n

    • Light gray shorts.
    • Fitted design.
    • Elastic waistband.
    • Flat-seam construction.
    • 7\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","color":"60","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-34-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"torque-power-short-34-yellow-925","links":{},"stock":{"item_id":925,"product_id":925,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-34-yellow-925.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"926","_score":1,"_source":{"id":926,"sku":"MSH04-36-Gray","name":"Torque Power Short-36-Gray","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

    Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

    \n

    • Light gray shorts.
    • Fitted design.
    • Elastic waistband.
    • Flat-seam construction.
    • 7\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","color":"52","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"torque-power-short-36-gray-926","links":{},"stock":{"item_id":926,"product_id":926,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-36-gray-926.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"920","_score":1,"_source":{"id":920,"sku":"MSH04-33-Gray","name":"Torque Power Short-33-Gray","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

    Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

    \n

    • Light gray shorts.
    • Fitted design.
    • Elastic waistband.
    • Flat-seam construction.
    • 7\" inseam.
    • Machine wash/dry.

    ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","color":"52","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"torque-power-short-33-gray-920","links":{},"stock":{"item_id":920,"product_id":920,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-33-gray-920.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"957","_score":1,"_source":{"id":957,"sku":"MSH07-32-Blue","name":"Rapha Sports Short-32-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

    \n

    • Black shorts with royal accents.
    • Compression liner.
    • Inseam: 8\".
    • Machine wash/dry.

    ","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","color":"50","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"rapha-sports-short-32-blue-957","links":{},"stock":{"item_id":957,"product_id":957,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-32-blue-957.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"960","_score":1,"_source":{"id":960,"sku":"MSH07-33-Blue","name":"Rapha Sports Short-33-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

    \n

    • Black shorts with royal accents.
    • Compression liner.
    • Inseam: 8\".
    • Machine wash/dry.

    ","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","color":"50","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"rapha-sports-short-33-blue-960","links":{},"stock":{"item_id":960,"product_id":960,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-33-blue-960.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1019","_score":1,"_source":{"id":1019,"sku":"MSH11-36-Red","name":"Arcadio Gym Short-36-Red","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001,"description":"

    The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

    \n

    • Royal blue cotton shorts.
    • Built-in mesh brief.
    • 87% Spandex 13% Lycra.
    • Adjustable drawstring.

    ","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","color":"58","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"arcadio-gym-short-36-red-1019","links":{},"stock":{"item_id":1019,"product_id":1019,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-36-red-1019.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1026","_score":1,"_source":{"id":1026,"sku":"MSH12-33-Red","name":"Pierce Gym Short-33-Red","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

    The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

    \n

    • Dark red cotton shorts.
    • 87% Supplex, 13% Lycra.
    • Adjustable drawstring waistband.
    • Built-in mesh brief.
    • Machine wash cold, tumble dry low.

    ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","color":"58","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"pierce-gym-short-33-red-1026","links":{},"stock":{"item_id":1026,"product_id":1026,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-33-red-1026.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1038","_score":1,"_source":{"id":1038,"sku":"WH01-S-Orange","name":"Mona Pullover Hoodlie-S-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

    • Light green heathered hoodie.
    • Long-Sleeve, pullover.
    • Long elliptical hem for extra coverage.
    • Deep button placket for layering.
    • Double rib design.
    • Mid layer, mid weight.
    • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mona-pullover-hoodlie-s-orange-1038","links":{},"stock":{"item_id":1038,"product_id":1038,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-s-orange-1038.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1037","_score":1,"_source":{"id":1037,"sku":"WH01-S-Green","name":"Mona Pullover Hoodlie-S-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

    • Light green heathered hoodie.
    • Long-Sleeve, pullover.
    • Long elliptical hem for extra coverage.
    • Deep button placket for layering.
    • Double rib design.
    • Mid layer, mid weight.
    • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mona-pullover-hoodlie-s-green-1037","links":{},"stock":{"item_id":1037,"product_id":1037,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-s-green-1037.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1016","_score":1,"_source":{"id":1016,"sku":"MSH11-34-Red","name":"Arcadio Gym Short-34-Red","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001,"description":"

    The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

    \n

    • Royal blue cotton shorts.
    • Built-in mesh brief.
    • 87% Spandex 13% Lycra.
    • Adjustable drawstring.

    ","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","color":"58","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"arcadio-gym-short-34-red-1016","links":{},"stock":{"item_id":1016,"product_id":1016,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-34-red-1016.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1012","_score":1,"_source":{"id":1012,"sku":"MSH11-33-Blue","name":"Arcadio Gym Short-33-Blue","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001,"description":"

    The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

    \n

    • Royal blue cotton shorts.
    • Built-in mesh brief.
    • 87% Spandex 13% Lycra.
    • Adjustable drawstring.

    ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","color":"50","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"arcadio-gym-short-33-blue-1012","links":{},"stock":{"item_id":1012,"product_id":1012,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-33-blue-1012.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1009","_score":1,"_source":{"id":1009,"sku":"MSH11-32-Blue","name":"Arcadio Gym Short-32-Blue","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001,"description":"

    The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

    \n

    • Royal blue cotton shorts.
    • Built-in mesh brief.
    • 87% Spandex 13% Lycra.
    • Adjustable drawstring.

    ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","color":"50","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"arcadio-gym-short-32-blue-1009","links":{},"stock":{"item_id":1009,"product_id":1009,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-32-blue-1009.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1003","_score":1,"_source":{"id":1003,"sku":"MSH10-34-Purple","name":"Sol Active Short-34-Purple","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

    \n

    • Light blue jersey shorts with mesh detail.
    • 87% Spandex 13% Lycra.
    • Machine wash cold, tumble dry low.
    • Superior performance fabric.
    • Flat-lock seams.

    ","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","color":"57","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"sol-active-short-34-purple-1003","links":{},"stock":{"item_id":1003,"product_id":1003,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-34-purple-1003.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1017","_score":1,"_source":{"id":1017,"sku":"MSH11-36-Black","name":"Arcadio Gym Short-36-Black","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001,"description":"

    The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

    \n

    • Royal blue cotton shorts.
    • Built-in mesh brief.
    • 87% Spandex 13% Lycra.
    • Adjustable drawstring.

    ","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"arcadio-gym-short-36-black-1017","links":{},"stock":{"item_id":1017,"product_id":1017,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-36-black-1017.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1015","_score":1,"_source":{"id":1015,"sku":"MSH11-34-Blue","name":"Arcadio Gym Short-34-Blue","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001,"description":"

    The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

    \n

    • Royal blue cotton shorts.
    • Built-in mesh brief.
    • 87% Spandex 13% Lycra.
    • Adjustable drawstring.

    ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","color":"50","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"arcadio-gym-short-34-blue-1015","links":{},"stock":{"item_id":1015,"product_id":1015,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-34-blue-1015.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"976","_score":1,"_source":{"id":976,"sku":"MSH08-34-Blue","name":"Orestes Fitness Short-34-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

    \n

    • Black shorts with dark gray accents.
    • Elasticized waistband with interior drawstring.
    • Ventilating mesh detailing.
    • 100% polyester and recycled polyester.
    • Machine wash cold, tumble dry low.

    ","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","color":"50","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-fitness-short-34-blue-976","links":{},"stock":{"item_id":976,"product_id":976,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-34-blue-976.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"997","_score":1,"_source":{"id":997,"sku":"MSH10-32-Purple","name":"Sol Active Short-32-Purple","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

    \n

    • Light blue jersey shorts with mesh detail.
    • 87% Spandex 13% Lycra.
    • Machine wash cold, tumble dry low.
    • Superior performance fabric.
    • Flat-lock seams.

    ","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","color":"57","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"sol-active-short-32-purple-997","links":{},"stock":{"item_id":997,"product_id":997,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-32-purple-997.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"975","_score":1,"_source":{"id":975,"sku":"MSH08-34-Black","name":"Orestes Fitness Short-34-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

    \n

    • Black shorts with dark gray accents.
    • Elasticized waistband with interior drawstring.
    • Ventilating mesh detailing.
    • 100% polyester and recycled polyester.
    • Machine wash cold, tumble dry low.

    ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-fitness-short-34-black-975","links":{},"stock":{"item_id":975,"product_id":975,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-34-black-975.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"966","_score":1,"_source":{"id":966,"sku":"MSH07-36-Blue","name":"Rapha Sports Short-36-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

    \n

    • Black shorts with royal accents.
    • Compression liner.
    • Inseam: 8\".
    • Machine wash/dry.

    ","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","color":"50","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"rapha-sports-short-36-blue-966","links":{},"stock":{"item_id":966,"product_id":966,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-36-blue-966.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"983","_score":1,"_source":{"id":983,"sku":"MSH09-32-Blue","name":"Troy Yoga Short-32-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

    \n

    • Navy polyester pinstripe shorts.
    • Woven fabric with moderate stretch.
    • 62% cotton/34% nylon/4% spandex.
    • LumaTech™ lining.

    ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"troy-yoga-short-32-blue-983","links":{},"stock":{"item_id":983,"product_id":983,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-32-blue-983.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1066","_score":1,"_source":{"id":1066,"sku":"WH03-XS-Green","name":"Autumn Pullie-XS-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

    \n

    • Cayenne Short-Sleeve roll neck sweatshirt.
    • Relaxed fit.
    • Short-Sleeves.
    • Machine wash/dry.

    ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"autumn-pullie-xs-green-1066","links":{},"stock":{"item_id":1066,"product_id":1066,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xs-green-1066.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1072","_score":1,"_source":{"id":1072,"sku":"WH03-M-Green","name":"Autumn Pullie-M-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

    \n

    • Cayenne Short-Sleeve roll neck sweatshirt.
    • Relaxed fit.
    • Short-Sleeves.
    • Machine wash/dry.

    ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"autumn-pullie-m-green-1072","links":{},"stock":{"item_id":1072,"product_id":1072,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-m-green-1072.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"969","_score":1,"_source":{"id":969,"sku":"MSH08-32-Black","name":"Orestes Fitness Short-32-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

    \n

    • Black shorts with dark gray accents.
    • Elasticized waistband with interior drawstring.
    • Ventilating mesh detailing.
    • 100% polyester and recycled polyester.
    • Machine wash cold, tumble dry low.

    ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-fitness-short-32-black-969","links":{},"stock":{"item_id":969,"product_id":969,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-32-black-969.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"979","_score":1,"_source":{"id":979,"sku":"MSH08-36-Blue","name":"Orestes Fitness Short-36-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

    You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

    \n

    • Black shorts with dark gray accents.
    • Elasticized waistband with interior drawstring.
    • Ventilating mesh detailing.
    • 100% polyester and recycled polyester.
    • Machine wash cold, tumble dry low.

    ","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","color":"50","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-fitness-short-36-blue-979","links":{},"stock":{"item_id":979,"product_id":979,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-36-blue-979.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1002","_score":1,"_source":{"id":1002,"sku":"MSH10-34-Green","name":"Sol Active Short-34-Green","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

    \n

    • Light blue jersey shorts with mesh detail.
    • 87% Spandex 13% Lycra.
    • Machine wash cold, tumble dry low.
    • Superior performance fabric.
    • Flat-lock seams.

    ","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","color":"53","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"sol-active-short-34-green-1002","links":{},"stock":{"item_id":1002,"product_id":1002,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-34-green-1002.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"989","_score":1,"_source":{"id":989,"sku":"MSH09-34-Blue","name":"Troy Yoga Short-34-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

    \n

    • Navy polyester pinstripe shorts.
    • Woven fabric with moderate stretch.
    • 62% cotton/34% nylon/4% spandex.
    • LumaTech™ lining.

    ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"troy-yoga-short-34-blue-989","links":{},"stock":{"item_id":989,"product_id":989,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-34-blue-989.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1138","_score":1,"_source":{"id":1138,"sku":"WH08-XS-White","name":"Cassia Funnel Sweatshirt-XS-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

    \n

    • White full zip hoodie with gray detail.
    • 65% Cotton/28% Nylon/7% Spandex.
    • Front slash pockets.
    • Tagless label at back neck.

    ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"cassia-funnel-sweatshirt-xs-white-1138","links":{},"stock":{"item_id":1138,"product_id":1138,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xs-white-1138.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1135","_score":1,"_source":{"id":1135,"sku":"WH07","name":"Phoebe Zipper Sweatshirt","attribute_set_id":9,"price":59,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":59,"description":"

    A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

    \n

    • Gray full zip hoodie with yellow detail.
    • Hand-warmer pockets.
    • Zip MP3 pocket with outlet for earphones wire.
    • Polyester/cotton.
    • Washable.

    ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"phoebe-zipper-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":[138,133,129],"pattern":"197","climate":[204,205,206],"slug":"phoebe-zipper-sweatshirt-1135","links":{},"stock":{"item_id":1135,"product_id":1135,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH07-XS-Gray","id":1120,"status":1,"name":"Phoebe Zipper Sweatshirt-XS-Gray","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"167","color":"52","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","url_key":"phoebe-zipper-sweatshirt-xs-gray","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-XS-Purple","id":1121,"status":1,"name":"Phoebe Zipper Sweatshirt-XS-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"167","color":"57","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","url_key":"phoebe-zipper-sweatshirt-xs-purple","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-XS-White","id":1122,"status":1,"name":"Phoebe Zipper Sweatshirt-XS-White","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"167","color":"59","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","url_key":"phoebe-zipper-sweatshirt-xs-white","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-S-Gray","id":1123,"status":1,"name":"Phoebe Zipper Sweatshirt-S-Gray","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"168","color":"52","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","url_key":"phoebe-zipper-sweatshirt-s-gray","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-S-Purple","id":1124,"status":1,"name":"Phoebe Zipper Sweatshirt-S-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"168","color":"57","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","url_key":"phoebe-zipper-sweatshirt-s-purple","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-S-White","id":1125,"status":1,"name":"Phoebe Zipper Sweatshirt-S-White","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"168","color":"59","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","url_key":"phoebe-zipper-sweatshirt-s-white","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-M-Gray","id":1126,"status":1,"name":"Phoebe Zipper Sweatshirt-M-Gray","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"169","color":"52","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","url_key":"phoebe-zipper-sweatshirt-m-gray","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-M-Purple","id":1127,"status":1,"name":"Phoebe Zipper Sweatshirt-M-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"169","color":"57","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","url_key":"phoebe-zipper-sweatshirt-m-purple","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-M-White","id":1128,"status":1,"name":"Phoebe Zipper Sweatshirt-M-White","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"169","color":"59","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","url_key":"phoebe-zipper-sweatshirt-m-white","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-L-Gray","id":1129,"status":1,"name":"Phoebe Zipper Sweatshirt-L-Gray","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"170","color":"52","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","url_key":"phoebe-zipper-sweatshirt-l-gray","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-L-Purple","id":1130,"status":1,"name":"Phoebe Zipper Sweatshirt-L-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"170","color":"57","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","url_key":"phoebe-zipper-sweatshirt-l-purple","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-L-White","id":1131,"status":1,"name":"Phoebe Zipper Sweatshirt-L-White","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"170","color":"59","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","url_key":"phoebe-zipper-sweatshirt-l-white","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-XL-Gray","id":1132,"status":1,"name":"Phoebe Zipper Sweatshirt-XL-Gray","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"171","color":"52","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","url_key":"phoebe-zipper-sweatshirt-xl-gray","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-XL-Purple","id":1133,"status":1,"name":"Phoebe Zipper Sweatshirt-XL-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"171","color":"57","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","url_key":"phoebe-zipper-sweatshirt-xl-purple","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-XL-White","id":1134,"status":1,"name":"Phoebe Zipper Sweatshirt-XL-White","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"171","color":"59","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","url_key":"phoebe-zipper-sweatshirt-xl-white","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001}],"configurable_options":[{"id":159,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"}],"product_id":1135,"attribute_code":"color"},{"id":158,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1135,"attribute_code":"size"}],"color_options":[52,57,59],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-1135.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1187","_score":1,"_source":{"id":1187,"sku":"WH11-S-Blue","name":"Eos V-Neck Hoodie-S-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

    Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

    \n

    Semi-fitted.
    Long-Sleeve.
    Machine wash/line dry.

    ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"eos-v-neck-hoodie-s-blue-1187","links":{},"stock":{"item_id":1187,"product_id":1187,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-s-blue-1187.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1192","_score":1,"_source":{"id":1192,"sku":"WH11-M-Orange","name":"Eos V-Neck Hoodie-M-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

    Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

    \n

    Semi-fitted.
    Long-Sleeve.
    Machine wash/line dry.

    ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"eos-v-neck-hoodie-m-orange-1192","links":{},"stock":{"item_id":1192,"product_id":1192,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-m-orange-1192.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1196","_score":1,"_source":{"id":1196,"sku":"WH11-XL-Blue","name":"Eos V-Neck Hoodie-XL-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

    Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

    \n

    Semi-fitted.
    Long-Sleeve.
    Machine wash/line dry.

    ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"eos-v-neck-hoodie-xl-blue-1196","links":{},"stock":{"item_id":1196,"product_id":1196,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xl-blue-1196.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1199","_score":1,"_source":{"id":1199,"sku":"WH11","name":"Eos V-Neck Hoodie","attribute_set_id":9,"price":54,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":54,"description":"

    Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

    \n

    Semi-fitted.
    Long-Sleeve.
    Machine wash/line dry.

    ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"eos-v-neck-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[137,133],"pattern":"197","climate":[204,205,206],"slug":"eos-v-neck-hoodie-1199","links":{},"stock":{"item_id":1199,"product_id":1199,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH11-XS-Blue","id":1184,"status":1,"name":"Eos V-Neck Hoodie-XS-Blue","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"167","color":"50","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","url_key":"eos-v-neck-hoodie-xs-blue","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-XS-Green","id":1185,"status":1,"name":"Eos V-Neck Hoodie-XS-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"167","color":"53","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","url_key":"eos-v-neck-hoodie-xs-green","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-XS-Orange","id":1186,"status":1,"name":"Eos V-Neck Hoodie-XS-Orange","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"167","color":"56","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","url_key":"eos-v-neck-hoodie-xs-orange","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-S-Blue","id":1187,"status":1,"name":"Eos V-Neck Hoodie-S-Blue","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"168","color":"50","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","url_key":"eos-v-neck-hoodie-s-blue","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-S-Green","id":1188,"status":1,"name":"Eos V-Neck Hoodie-S-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"168","color":"53","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","url_key":"eos-v-neck-hoodie-s-green","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-S-Orange","id":1189,"status":1,"name":"Eos V-Neck Hoodie-S-Orange","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"168","color":"56","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","url_key":"eos-v-neck-hoodie-s-orange","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-M-Blue","id":1190,"status":1,"name":"Eos V-Neck Hoodie-M-Blue","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"169","color":"50","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","url_key":"eos-v-neck-hoodie-m-blue","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-M-Green","id":1191,"status":1,"name":"Eos V-Neck Hoodie-M-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"169","color":"53","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","url_key":"eos-v-neck-hoodie-m-green","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-M-Orange","id":1192,"status":1,"name":"Eos V-Neck Hoodie-M-Orange","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"169","color":"56","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","url_key":"eos-v-neck-hoodie-m-orange","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-L-Blue","id":1193,"status":1,"name":"Eos V-Neck Hoodie-L-Blue","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"170","color":"50","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","url_key":"eos-v-neck-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-L-Green","id":1194,"status":1,"name":"Eos V-Neck Hoodie-L-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"170","color":"53","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","url_key":"eos-v-neck-hoodie-l-green","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-L-Orange","id":1195,"status":1,"name":"Eos V-Neck Hoodie-L-Orange","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"170","color":"56","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","url_key":"eos-v-neck-hoodie-l-orange","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-XL-Blue","id":1196,"status":1,"name":"Eos V-Neck Hoodie-XL-Blue","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"171","color":"50","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","url_key":"eos-v-neck-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-XL-Green","id":1197,"status":1,"name":"Eos V-Neck Hoodie-XL-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"171","color":"53","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","url_key":"eos-v-neck-hoodie-xl-green","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-XL-Orange","id":1198,"status":1,"name":"Eos V-Neck Hoodie-XL-Orange","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"171","color":"56","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","url_key":"eos-v-neck-hoodie-xl-orange","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001}],"configurable_options":[{"id":167,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":1199,"attribute_code":"color"},{"id":166,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1199,"attribute_code":"size"}],"color_options":[50,53,56],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-1199.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1108","_score":1,"_source":{"id":1108,"sku":"WH05-L-Purple","name":"Selene Yoga Hoodie-L-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

    \n

    • Ivory heather full zip 3/4 sleeve hoodie.
    • Zip pocket at arm for convenient storage.
    • 24.0\" body length.
    • 89% Polyester / 11% Spandex.

    ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"selene-yoga-hoodie-l-purple-1108","links":{},"stock":{"item_id":1108,"product_id":1108,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-l-purple-1108.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1114","_score":1,"_source":{"id":1114,"sku":"WH06-XS-Purple","name":"Daphne Full-Zip Hoodie-XS-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

    \n

    • Purple full zip hoodie with pink accents.
    • Heather texture.
    • 4-way stretch.
    • Pre-shrunk.
    • Hood lined in vegan Sherpa for added warmth.
    • Ribbed hem on hood and front pouch pocket.
    • 60% Cotton / 40% Polyester.

    ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"daphne-full-zip-hoodie-xs-purple-1114","links":{},"stock":{"item_id":1114,"product_id":1114,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-xs-purple-1114.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1106","_score":1,"_source":{"id":1106,"sku":"WH05-M-White","name":"Selene Yoga Hoodie-M-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

    \n

    • Ivory heather full zip 3/4 sleeve hoodie.
    • Zip pocket at arm for convenient storage.
    • 24.0\" body length.
    • 89% Polyester / 11% Spandex.

    ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"selene-yoga-hoodie-m-white-1106","links":{},"stock":{"item_id":1106,"product_id":1106,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-m-white-1106.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1144","_score":1,"_source":{"id":1144,"sku":"WH08-M-White","name":"Cassia Funnel Sweatshirt-M-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

    \n

    • White full zip hoodie with gray detail.
    • 65% Cotton/28% Nylon/7% Spandex.
    • Front slash pockets.
    • Tagless label at back neck.

    ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"cassia-funnel-sweatshirt-m-white-1144","links":{},"stock":{"item_id":1144,"product_id":1144,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-m-white-1144.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1139","_score":1,"_source":{"id":1139,"sku":"WH08-S-Orange","name":"Cassia Funnel Sweatshirt-S-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

    \n

    • White full zip hoodie with gray detail.
    • 65% Cotton/28% Nylon/7% Spandex.
    • Front slash pockets.
    • Tagless label at back neck.

    ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"cassia-funnel-sweatshirt-s-orange-1139","links":{},"stock":{"item_id":1139,"product_id":1139,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-s-orange-1139.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1140","_score":1,"_source":{"id":1140,"sku":"WH08-S-Purple","name":"Cassia Funnel Sweatshirt-S-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

    \n

    • White full zip hoodie with gray detail.
    • 65% Cotton/28% Nylon/7% Spandex.
    • Front slash pockets.
    • Tagless label at back neck.

    ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"cassia-funnel-sweatshirt-s-purple-1140","links":{},"stock":{"item_id":1140,"product_id":1140,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-s-purple-1140.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1130","_score":1,"_source":{"id":1130,"sku":"WH07-L-Purple","name":"Phoebe Zipper Sweatshirt-L-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

    \n

    • Gray full zip hoodie with yellow detail.
    • Hand-warmer pockets.
    • Zip MP3 pocket with outlet for earphones wire.
    • Polyester/cotton.
    • Washable.

    ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"phoebe-zipper-sweatshirt-l-purple-1130","links":{},"stock":{"item_id":1130,"product_id":1130,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-l-purple-1130.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1134","_score":1,"_source":{"id":1134,"sku":"WH07-XL-White","name":"Phoebe Zipper Sweatshirt-XL-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

    \n

    • Gray full zip hoodie with yellow detail.
    • Hand-warmer pockets.
    • Zip MP3 pocket with outlet for earphones wire.
    • Polyester/cotton.
    • Washable.

    ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"phoebe-zipper-sweatshirt-xl-white-1134","links":{},"stock":{"item_id":1134,"product_id":1134,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xl-white-1134.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1142","_score":1,"_source":{"id":1142,"sku":"WH08-M-Orange","name":"Cassia Funnel Sweatshirt-M-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

    \n

    • White full zip hoodie with gray detail.
    • 65% Cotton/28% Nylon/7% Spandex.
    • Front slash pockets.
    • Tagless label at back neck.

    ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"cassia-funnel-sweatshirt-m-orange-1142","links":{},"stock":{"item_id":1142,"product_id":1142,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-m-orange-1142.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1237","_score":1,"_source":{"id":1237,"sku":"WJ02-L-Gray","name":"Josie Yoga Jacket-L-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

    When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

    \n

    • Slate rouched neck pullover.
    • Moisture-wicking fabric.
    • Hidden zipper.
    • Mesh armpit venting.
    • Dropped rear hem.

    ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"josie-yoga-jacket-l-gray-1237","links":{},"stock":{"item_id":1237,"product_id":1237,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-l-gray-1237.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1235","_score":1,"_source":{"id":1235,"sku":"WJ02-L-Black","name":"Josie Yoga Jacket-L-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

    When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

    \n

    • Slate rouched neck pullover.
    • Moisture-wicking fabric.
    • Hidden zipper.
    • Mesh armpit venting.
    • Dropped rear hem.

    ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"josie-yoga-jacket-l-black-1235","links":{},"stock":{"item_id":1235,"product_id":1235,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-l-black-1235.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1245","_score":1,"_source":{"id":1245,"sku":"WJ03-S-Blue","name":"Augusta Pullover Jacket-S-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

    \n

    • Pink half-zip pullover.
    • Front pouch pockets.
    • Fold-down collar.

    ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"augusta-pullover-jacket-s-blue-1245","links":{},"stock":{"item_id":1245,"product_id":1245,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-s-blue-1245.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1248","_score":1,"_source":{"id":1248,"sku":"WJ03-M-Blue","name":"Augusta Pullover Jacket-M-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

    \n

    • Pink half-zip pullover.
    • Front pouch pockets.
    • Fold-down collar.

    ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"augusta-pullover-jacket-m-blue-1248","links":{},"stock":{"item_id":1248,"product_id":1248,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-m-blue-1248.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1211","_score":1,"_source":{"id":1211,"sku":"WH12-L-Purple","name":"Circe Hooded Ice Fleece-L-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

    Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

    \n

    Full-zip front.
    Three-panel hood.
    Flatlock seams throughout.
    Welt hand pockets.
    Machine wash/dry.

    ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"circe-hooded-ice-fleece-l-purple-1211","links":{},"stock":{"item_id":1211,"product_id":1211,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-l-purple-1211.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1250","_score":1,"_source":{"id":1250,"sku":"WJ03-M-Red","name":"Augusta Pullover Jacket-M-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

    \n

    • Pink half-zip pullover.
    • Front pouch pockets.
    • Fold-down collar.

    ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"augusta-pullover-jacket-m-red-1250","links":{},"stock":{"item_id":1250,"product_id":1250,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-m-red-1250.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1175","_score":1,"_source":{"id":1175,"sku":"WH10-M-Gray","name":"Helena Hooded Fleece-M-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

    Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

    \n

    Full zip.
    Banded cuffs and waist.
    Front pockets.
    Machine wash/dry.

    ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helena-hooded-fleece-m-gray-1175","links":{},"stock":{"item_id":1175,"product_id":1175,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-m-gray-1175.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1182","_score":1,"_source":{"id":1182,"sku":"WH10-XL-Yellow","name":"Helena Hooded Fleece-XL-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

    Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

    \n

    Full zip.
    Banded cuffs and waist.
    Front pockets.
    Machine wash/dry.

    ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helena-hooded-fleece-xl-yellow-1182","links":{},"stock":{"item_id":1182,"product_id":1182,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xl-yellow-1182.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1180","_score":1,"_source":{"id":1180,"sku":"WH10-XL-Blue","name":"Helena Hooded Fleece-XL-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

    Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

    \n

    Full zip.
    Banded cuffs and waist.
    Front pockets.
    Machine wash/dry.

    ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helena-hooded-fleece-xl-blue-1180","links":{},"stock":{"item_id":1180,"product_id":1180,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xl-blue-1180.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1179","_score":1,"_source":{"id":1179,"sku":"WH10-L-Yellow","name":"Helena Hooded Fleece-L-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

    Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

    \n

    Full zip.
    Banded cuffs and waist.
    Front pockets.
    Machine wash/dry.

    ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helena-hooded-fleece-l-yellow-1179","links":{},"stock":{"item_id":1179,"product_id":1179,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-l-yellow-1179.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1188","_score":1,"_source":{"id":1188,"sku":"WH11-S-Green","name":"Eos V-Neck Hoodie-S-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

    Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

    \n

    Semi-fitted.
    Long-Sleeve.
    Machine wash/line dry.

    ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"eos-v-neck-hoodie-s-green-1188","links":{},"stock":{"item_id":1188,"product_id":1188,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-s-green-1188.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1204","_score":1,"_source":{"id":1204,"sku":"WH12-S-Green","name":"Circe Hooded Ice Fleece-S-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

    Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

    \n

    Full-zip front.
    Three-panel hood.
    Flatlock seams throughout.
    Welt hand pockets.
    Machine wash/dry.

    ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"circe-hooded-ice-fleece-s-green-1204","links":{},"stock":{"item_id":1204,"product_id":1204,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-s-green-1204.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1224","_score":1,"_source":{"id":1224,"sku":"WJ01-L-Yellow","name":"Stellar Solar Jacket-L-Yellow","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

    Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

    \n

    • Loose fit.
    • Reflectivity.
    • Flat seams.
    • Machine wash/dry.
    • Deep pink jacket with front panel rouching

    ","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","color":"60","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stellar-solar-jacket-l-yellow-1224","links":{},"stock":{"item_id":1224,"product_id":1224,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-l-yellow-1224.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1229","_score":1,"_source":{"id":1229,"sku":"WJ02-S-Black","name":"Josie Yoga Jacket-S-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

    When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

    \n

    • Slate rouched neck pullover.
    • Moisture-wicking fabric.
    • Hidden zipper.
    • Mesh armpit venting.
    • Dropped rear hem.

    ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"josie-yoga-jacket-s-black-1229","links":{},"stock":{"item_id":1229,"product_id":1229,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-s-black-1229.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1077","_score":1,"_source":{"id":1077,"sku":"WH03-L-Red","name":"Autumn Pullie-L-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

    \n

    • Cayenne Short-Sleeve roll neck sweatshirt.
    • Relaxed fit.
    • Short-Sleeves.
    • Machine wash/dry.

    ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"autumn-pullie-l-red-1077","links":{},"stock":{"item_id":1077,"product_id":1077,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-l-red-1077.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1085","_score":1,"_source":{"id":1085,"sku":"WH04-S-Blue","name":"Miko Pullover Hoodie-S-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

    \n

    • Teal two-tone hoodie.
    • Low scoop neckline.
    • Adjustable hood drawstrings.
    • Longer rounded hemline for extra back coverage.
    • Long-Sleeve style.

    ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"miko-pullover-hoodie-s-blue-1085","links":{},"stock":{"item_id":1085,"product_id":1085,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-s-blue-1085.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1092","_score":1,"_source":{"id":1092,"sku":"WH04-L-Orange","name":"Miko Pullover Hoodie-L-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

    \n

    • Teal two-tone hoodie.
    • Low scoop neckline.
    • Adjustable hood drawstrings.
    • Longer rounded hemline for extra back coverage.
    • Long-Sleeve style.

    ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"miko-pullover-hoodie-l-orange-1092","links":{},"stock":{"item_id":1092,"product_id":1092,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-l-orange-1092.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1202","_score":1,"_source":{"id":1202,"sku":"WH12-XS-Purple","name":"Circe Hooded Ice Fleece-XS-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

    Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

    \n

    Full-zip front.
    Three-panel hood.
    Flatlock seams throughout.
    Welt hand pockets.
    Machine wash/dry.

    ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"circe-hooded-ice-fleece-xs-purple-1202","links":{},"stock":{"item_id":1202,"product_id":1202,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xs-purple-1202.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1101","_score":1,"_source":{"id":1101,"sku":"WH05-S-Orange","name":"Selene Yoga Hoodie-S-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

    \n

    • Ivory heather full zip 3/4 sleeve hoodie.
    • Zip pocket at arm for convenient storage.
    • 24.0\" body length.
    • 89% Polyester / 11% Spandex.

    ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"selene-yoga-hoodie-s-orange-1101","links":{},"stock":{"item_id":1101,"product_id":1101,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-s-orange-1101.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1257","_score":1,"_source":{"id":1257,"sku":"WJ03","name":"Augusta Pullover Jacket","attribute_set_id":9,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":57,"description":"

    It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

    \n

    • Pink half-zip pullover.
    • Front pouch pockets.
    • Fold-down collar.

    ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"augusta-pullover-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[118,137,125,126,128],"pattern":"197","climate":[202,204,205,206,208],"slug":"augusta-pullover-jacket-1257","links":{},"stock":{"item_id":1257,"product_id":1257,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ03-XS-Blue","id":1242,"status":1,"name":"Augusta Pullover Jacket-XS-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"50","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","url_key":"augusta-pullover-jacket-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ03-XS-Orange","id":1243,"status":1,"name":"Augusta Pullover Jacket-XS-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"56","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","url_key":"augusta-pullover-jacket-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ03-XS-Red","id":1244,"status":1,"name":"Augusta Pullover Jacket-XS-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"58","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","url_key":"augusta-pullover-jacket-xs-red","msrp_display_actual_price_type":"0"},{"sku":"WJ03-S-Blue","id":1245,"status":1,"name":"Augusta Pullover Jacket-S-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"50","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","url_key":"augusta-pullover-jacket-s-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ03-S-Orange","id":1246,"status":1,"name":"Augusta Pullover Jacket-S-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"56","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","url_key":"augusta-pullover-jacket-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ03-S-Red","id":1247,"status":1,"name":"Augusta Pullover Jacket-S-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"58","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","url_key":"augusta-pullover-jacket-s-red","msrp_display_actual_price_type":"0"},{"sku":"WJ03-M-Blue","id":1248,"status":1,"name":"Augusta Pullover Jacket-M-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"50","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","url_key":"augusta-pullover-jacket-m-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ03-M-Orange","id":1249,"status":1,"name":"Augusta Pullover Jacket-M-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"56","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","url_key":"augusta-pullover-jacket-m-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ03-M-Red","id":1250,"status":1,"name":"Augusta Pullover Jacket-M-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"58","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","url_key":"augusta-pullover-jacket-m-red","msrp_display_actual_price_type":"0"},{"sku":"WJ03-L-Blue","id":1251,"status":1,"name":"Augusta Pullover Jacket-L-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"50","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","url_key":"augusta-pullover-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ03-L-Orange","id":1252,"status":1,"name":"Augusta Pullover Jacket-L-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"56","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","url_key":"augusta-pullover-jacket-l-orange","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ03-L-Red","id":1253,"status":1,"name":"Augusta Pullover Jacket-L-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"58","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","url_key":"augusta-pullover-jacket-l-red","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ03-XL-Blue","id":1254,"status":1,"name":"Augusta Pullover Jacket-XL-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"50","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","url_key":"augusta-pullover-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ03-XL-Orange","id":1255,"status":1,"name":"Augusta Pullover Jacket-XL-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"56","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","url_key":"augusta-pullover-jacket-xl-orange","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ03-XL-Red","id":1256,"status":1,"name":"Augusta Pullover Jacket-XL-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"58","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","url_key":"augusta-pullover-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001}],"configurable_options":[{"id":175,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":1257,"attribute_code":"color"},{"id":174,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1257,"attribute_code":"size"}],"color_options":[50,56,58],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-1257.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1272","_score":1,"_source":{"id":1272,"sku":"WJ04-XL-White","name":"Ingrid Running Jacket-XL-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

    The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
    • Slim fit.
    • Moisture-wicking fabric.
    • Two side pockets.
    • Zippered pocket at back waist.
    • Machine wash/dry.
    • Ivory specked full zip

    ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ingrid-running-jacket-xl-white-1272","links":{},"stock":{"item_id":1272,"product_id":1272,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xl-white-1272.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1280","_score":1,"_source":{"id":1280,"sku":"WJ05-M-Brown","name":"Riona Full Zip Jacket-M-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

    \n

    • Brown heather full zip rouched jacket.
    • Side hand pockets for extra storage.
    • High collar.
    • Thick cuffs for extra coverage.
    • Durable, shape retention material to longer wear.

    ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-m-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"riona-full-zip-jacket-m-brown-1280","links":{},"stock":{"item_id":1280,"product_id":1280,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-m-brown-1280.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1293","_score":1,"_source":{"id":1293,"sku":"WJ07-S-Orange","name":"Inez Full Zip Jacket-S-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

    \n

    • Purple heather inset full zip jacket.
    • Full zip hoodie.
    • Contrast binding along the zipper, hood and sleeves.
    • Inseam pockets for storage.
    • Thumbholes for comfortable fit.

    ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"inez-full-zip-jacket-s-orange-1293","links":{},"stock":{"item_id":1293,"product_id":1293,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-s-orange-1293.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1295","_score":1,"_source":{"id":1295,"sku":"WJ07-S-Red","name":"Inez Full Zip Jacket-S-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

    \n

    • Purple heather inset full zip jacket.
    • Full zip hoodie.
    • Contrast binding along the zipper, hood and sleeves.
    • Inseam pockets for storage.
    • Thumbholes for comfortable fit.

    ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"inez-full-zip-jacket-s-red-1295","links":{},"stock":{"item_id":1295,"product_id":1295,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-s-red-1295.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1281","_score":1,"_source":{"id":1281,"sku":"WJ05-M-Green","name":"Riona Full Zip Jacket-M-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

    The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

    \n

    • Brown heather full zip rouched jacket.
    • Side hand pockets for extra storage.
    • High collar.
    • Thick cuffs for extra coverage.
    • Durable, shape retention material to longer wear.

    ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"riona-full-zip-jacket-m-green-1281","links":{},"stock":{"item_id":1281,"product_id":1281,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-m-green-1281.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1296","_score":1,"_source":{"id":1296,"sku":"WJ07-M-Orange","name":"Inez Full Zip Jacket-M-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

    \n

    • Purple heather inset full zip jacket.
    • Full zip hoodie.
    • Contrast binding along the zipper, hood and sleeves.
    • Inseam pockets for storage.
    • Thumbholes for comfortable fit.

    ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"inez-full-zip-jacket-m-orange-1296","links":{},"stock":{"item_id":1296,"product_id":1296,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-m-orange-1296.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1252","_score":1,"_source":{"id":1252,"sku":"WJ03-L-Orange","name":"Augusta Pullover Jacket-L-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

    \n

    • Pink half-zip pullover.
    • Front pouch pockets.
    • Fold-down collar.

    ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"augusta-pullover-jacket-l-orange-1252","links":{},"stock":{"item_id":1252,"product_id":1252,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-l-orange-1252.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1269","_score":1,"_source":{"id":1269,"sku":"WJ04-L-White","name":"Ingrid Running Jacket-L-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

    The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
    • Slim fit.
    • Moisture-wicking fabric.
    • Two side pockets.
    • Zippered pocket at back waist.
    • Machine wash/dry.
    • Ivory specked full zip

    ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ingrid-running-jacket-l-white-1269","links":{},"stock":{"item_id":1269,"product_id":1269,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-l-white-1269.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1253","_score":1,"_source":{"id":1253,"sku":"WJ03-L-Red","name":"Augusta Pullover Jacket-L-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

    \n

    • Pink half-zip pullover.
    • Front pouch pockets.
    • Fold-down collar.

    ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"augusta-pullover-jacket-l-red-1253","links":{},"stock":{"item_id":1253,"product_id":1253,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-l-red-1253.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1270","_score":1,"_source":{"id":1270,"sku":"WJ04-XL-Orange","name":"Ingrid Running Jacket-XL-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

    The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
    • Slim fit.
    • Moisture-wicking fabric.
    • Two side pockets.
    • Zippered pocket at back waist.
    • Machine wash/dry.
    • Ivory specked full zip

    ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ingrid-running-jacket-xl-orange-1270","links":{},"stock":{"item_id":1270,"product_id":1270,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xl-orange-1270.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1266","_score":1,"_source":{"id":1266,"sku":"WJ04-M-White","name":"Ingrid Running Jacket-M-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

    The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
    • Slim fit.
    • Moisture-wicking fabric.
    • Two side pockets.
    • Zippered pocket at back waist.
    • Machine wash/dry.
    • Ivory specked full zip

    ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ingrid-running-jacket-m-white-1266","links":{},"stock":{"item_id":1266,"product_id":1266,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-m-white-1266.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1324","_score":1,"_source":{"id":1324,"sku":"WJ09-XS-Green","name":"Jade Yoga Jacket-XS-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


    If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

    \n

    • Seafoam 1/4 zip pullover with purple stitching.
    • Lightweight, quick-drying, water-resistant construction.
    • Shirred details at front and back for a feminine look.
    • Hood collapses into collar.
    • Mesh liner for breathability.
    • Front zip pockets.
    • Hem cinches at sideseam.
    • 100% Polyester.

    ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jade-yoga-jacket-xs-green-1324","links":{},"stock":{"item_id":1324,"product_id":1324,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xs-green-1324.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1341","_score":1,"_source":{"id":1341,"sku":"WJ10-S-Black","name":"Nadia Elements Shell-S-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

    \n

    • Zippered front.
    • Zippered side pockets.
    • Drawstring-adjustable waist and hood.
    • Machine wash/line dry.
    • Light blue 1/4 zip pullover.

    ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nadia-elements-shell-s-black-1341","links":{},"stock":{"item_id":1341,"product_id":1341,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-s-black-1341.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1335","_score":1,"_source":{"id":1335,"sku":"WJ09-XL-Gray","name":"Jade Yoga Jacket-XL-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


    If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

    \n

    • Seafoam 1/4 zip pullover with purple stitching.
    • Lightweight, quick-drying, water-resistant construction.
    • Shirred details at front and back for a feminine look.
    • Hood collapses into collar.
    • Mesh liner for breathability.
    • Front zip pockets.
    • Hem cinches at sideseam.
    • 100% Polyester.

    ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jade-yoga-jacket-xl-gray-1335","links":{},"stock":{"item_id":1335,"product_id":1335,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xl-gray-1335.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1344","_score":1,"_source":{"id":1344,"sku":"WJ10-M-Black","name":"Nadia Elements Shell-M-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

    \n

    • Zippered front.
    • Zippered side pockets.
    • Drawstring-adjustable waist and hood.
    • Machine wash/line dry.
    • Light blue 1/4 zip pullover.

    ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nadia-elements-shell-m-black-1344","links":{},"stock":{"item_id":1344,"product_id":1344,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-m-black-1344.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1363","_score":1,"_source":{"id":1363,"sku":"WJ11-L-Black","name":"Neve Studio Dance Jacket-L-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

    \n

    • Bright blue 1/4 zip pullover.
    • CoolTech™ liner is sweat-wicking.
    • Sleeve thumbholes.
    • Zipper garage to protect your chin.
    • Stretchy collar drawcords.

    ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"neve-studio-dance-jacket-l-black-1363","links":{},"stock":{"item_id":1363,"product_id":1363,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-l-black-1363.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1352","_score":1,"_source":{"id":1352,"sku":"WJ10-XL-Yellow","name":"Nadia Elements Shell-XL-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

    \n

    • Zippered front.
    • Zippered side pockets.
    • Drawstring-adjustable waist and hood.
    • Machine wash/line dry.
    • Light blue 1/4 zip pullover.

    ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nadia-elements-shell-xl-yellow-1352","links":{},"stock":{"item_id":1352,"product_id":1352,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xl-yellow-1352.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1357","_score":1,"_source":{"id":1357,"sku":"WJ11-S-Black","name":"Neve Studio Dance Jacket-S-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

    If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

    \n

    • Bright blue 1/4 zip pullover.
    • CoolTech™ liner is sweat-wicking.
    • Sleeve thumbholes.
    • Zipper garage to protect your chin.
    • Stretchy collar drawcords.

    ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"neve-studio-dance-jacket-s-black-1357","links":{},"stock":{"item_id":1357,"product_id":1357,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-s-black-1357.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1389","_score":1,"_source":{"id":1389,"sku":"WJ12-S-Black","name":"Olivia 1/4 Zip Light Jacket-S-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

    Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

    \n

    • Loose fit.
    • Reflectivity.
    • Flat seams.
    • Machine wash/dry.

    ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"olivia-14-zip-light-jacket-s-black-1389","links":{},"stock":{"item_id":1389,"product_id":1389,"stock_id":1,"qty":74,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-s-black-1389.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1396","_score":1,"_source":{"id":1396,"sku":"WJ12-L-Blue","name":"Olivia 1/4 Zip Light Jacket-L-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

    Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

    \n

    • Loose fit.
    • Reflectivity.
    • Flat seams.
    • Machine wash/dry.

    ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"olivia-14-zip-light-jacket-l-blue-1396","links":{},"stock":{"item_id":1396,"product_id":1396,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-l-blue-1396.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1393","_score":1,"_source":{"id":1393,"sku":"WJ12-M-Blue","name":"Olivia 1/4 Zip Light Jacket-M-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

    Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

    \n

    • Loose fit.
    • Reflectivity.
    • Flat seams.
    • Machine wash/dry.

    ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"olivia-14-zip-light-jacket-m-blue-1393","links":{},"stock":{"item_id":1393,"product_id":1393,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-m-blue-1393.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1411","_score":1,"_source":{"id":1411,"sku":"WS02-L-Blue","name":"Gabrielle Micro Sleeve Top-L-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

    \n

    • Lime green v-neck tee.
    • Slimming, flattering fit.
    • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
    • Longer curved hem provides additional coverage.
    • 55% Hemp / 45% Organic Cotton.

    ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gabrielle-micro-sleeve-top-l-blue-1411","links":{},"stock":{"item_id":1411,"product_id":1411,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-l-blue-1411.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1405","_score":1,"_source":{"id":1405,"sku":"WS02-S-Blue","name":"Gabrielle Micro Sleeve Top-S-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

    \n

    • Lime green v-neck tee.
    • Slimming, flattering fit.
    • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
    • Longer curved hem provides additional coverage.
    • 55% Hemp / 45% Organic Cotton.

    ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gabrielle-micro-sleeve-top-s-blue-1405","links":{},"stock":{"item_id":1405,"product_id":1405,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-s-blue-1405.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1378","_score":1,"_source":{"id":1378,"sku":"WJ06-M-Purple","name":"Juno Jacket-M-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

    On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

    \n

    • Adjustable hood.
    • Fleece-lined, zippered hand pockets.
    • Thumbhole cuffs.
    • Full zip.
    • Mock-neck collar.
    • Machine wash/dry.

    ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juno-jacket-m-purple-1378","links":{},"stock":{"item_id":1378,"product_id":1378,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-m-purple-1378.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1317","_score":1,"_source":{"id":1317,"sku":"WJ08-L-Purple","name":"Adrienne Trek Jacket-L-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

    You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

    \n

    • gray 1/4 zip pullover.
    • Comfortable, relaxed fit.
    • Front zip for venting.
    • Spacious, kangaroo pockets.
    • 27\" body length.
    • 95% Organic Cotton / 5% Spandex.

    ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"adrienne-trek-jacket-l-purple-1317","links":{},"stock":{"item_id":1317,"product_id":1317,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-l-purple-1317.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1487","_score":1,"_source":{"id":1487,"sku":"WS08-S-Red","name":"Minerva LumaTech™ V-Tee-S-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

    \n

    • Navy blue heather soft v-neck tee.
    • Flatlock seams for chafe-free comfort.
    • Relaxed cut.
    • Ultra-lightweight fabric.
    • Machine wash/dry.

    ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"minerva-lumatech-and-trade-v-tee-s-red-1487","links":{},"stock":{"item_id":1487,"product_id":1487,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-s-red-1487.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1493","_score":1,"_source":{"id":1493,"sku":"WS08-L-Red","name":"Minerva LumaTech™ V-Tee-L-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

    \n

    • Navy blue heather soft v-neck tee.
    • Flatlock seams for chafe-free comfort.
    • Relaxed cut.
    • Ultra-lightweight fabric.
    • Machine wash/dry.

    ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"minerva-lumatech-and-trade-v-tee-l-red-1493","links":{},"stock":{"item_id":1493,"product_id":1493,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-l-red-1493.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1481","_score":1,"_source":{"id":1481,"sku":"WS07","name":"Juliana Short-Sleeve Tee","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":42,"description":"

    The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

    \n

    • Black scoop neck tee.
    • Side rouching.
    • Relaxed fit.

    ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"juliana-short-sleeve-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"juliana-short-sleeve-tee-1481","links":{},"stock":{"item_id":1481,"product_id":1481,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS07-XS-Black","id":1466,"status":1,"name":"Juliana Short-Sleeve Tee-XS-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"167","color":"49","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","url_key":"juliana-short-sleeve-tee-xs-black","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-XS-White","id":1467,"status":1,"name":"Juliana Short-Sleeve Tee-XS-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"167","color":"59","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","url_key":"juliana-short-sleeve-tee-xs-white","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-XS-Yellow","id":1468,"status":1,"name":"Juliana Short-Sleeve Tee-XS-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"167","color":"60","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","url_key":"juliana-short-sleeve-tee-xs-yellow","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-S-Black","id":1469,"status":1,"name":"Juliana Short-Sleeve Tee-S-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"168","color":"49","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","url_key":"juliana-short-sleeve-tee-s-black","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-S-White","id":1470,"status":1,"name":"Juliana Short-Sleeve Tee-S-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"168","color":"59","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","url_key":"juliana-short-sleeve-tee-s-white","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-S-Yellow","id":1471,"status":1,"name":"Juliana Short-Sleeve Tee-S-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"168","color":"60","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","url_key":"juliana-short-sleeve-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-M-Black","id":1472,"status":1,"name":"Juliana Short-Sleeve Tee-M-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"169","color":"49","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","url_key":"juliana-short-sleeve-tee-m-black","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-M-White","id":1473,"status":1,"name":"Juliana Short-Sleeve Tee-M-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"169","color":"59","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","url_key":"juliana-short-sleeve-tee-m-white","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-M-Yellow","id":1474,"status":1,"name":"Juliana Short-Sleeve Tee-M-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"169","color":"60","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","url_key":"juliana-short-sleeve-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-L-Black","id":1475,"status":1,"name":"Juliana Short-Sleeve Tee-L-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"170","color":"49","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","url_key":"juliana-short-sleeve-tee-l-black","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-L-White","id":1476,"status":1,"name":"Juliana Short-Sleeve Tee-L-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"170","color":"59","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","url_key":"juliana-short-sleeve-tee-l-white","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-L-Yellow","id":1477,"status":1,"name":"Juliana Short-Sleeve Tee-L-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"170","color":"60","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","url_key":"juliana-short-sleeve-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-XL-Black","id":1478,"status":1,"name":"Juliana Short-Sleeve Tee-XL-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"171","color":"49","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","url_key":"juliana-short-sleeve-tee-xl-black","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-XL-White","id":1479,"status":1,"name":"Juliana Short-Sleeve Tee-XL-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"171","color":"59","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","url_key":"juliana-short-sleeve-tee-xl-white","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-XL-Yellow","id":1480,"status":1,"name":"Juliana Short-Sleeve Tee-XL-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"171","color":"60","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","url_key":"juliana-short-sleeve-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001}],"configurable_options":[{"id":203,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":1481,"attribute_code":"color"},{"id":202,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1481,"attribute_code":"size"}],"color_options":[49,59,60],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-1481.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1486","_score":1,"_source":{"id":1486,"sku":"WS08-S-Blue","name":"Minerva LumaTech™ V-Tee-S-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2019-04-11 12:22:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

    Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

    \r\n

    • Navy blue heather soft v-neck tee.
    • Flatlock seams for chafe-free comfort.
    • Relaxed cut.
    • Ultra-lightweight fabric.
    • Machine wash/dry.

    ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-s-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"168","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"minerva-lumatech-and-trade-v-tee-s-blue-1486","links":{},"stock":{"item_id":1486,"product_id":1486,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-04-11 12:22:55","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-s-blue-1486.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1401","_score":1,"_source":{"id":1401,"sku":"WJ12","name":"Olivia 1/4 Zip Light Jacket","attribute_set_id":9,"price":77,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":77,"description":"

    Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

    \n

    • Loose fit.
    • Reflectivity.
    • Flat seams.
    • Machine wash/dry.

    ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"olivia-1-4-zip-light-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,37,33],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[118,137,120,125,128],"pattern":"197","climate":[208,209,210],"slug":"olivia-14-zip-light-jacket-1401","links":{},"stock":{"item_id":1401,"product_id":1401,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ12-XS-Black","id":1386,"status":1,"name":"Olivia 1/4 Zip Light Jacket-XS-Black","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"167","color":"49","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","url_key":"olivia-1-4-zip-light-jacket-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WJ12-XS-Blue","id":1387,"status":1,"name":"Olivia 1/4 Zip Light Jacket-XS-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"167","color":"50","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","url_key":"olivia-1-4-zip-light-jacket-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ12-XS-Purple","id":1388,"status":1,"name":"Olivia 1/4 Zip Light Jacket-XS-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"167","color":"57","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","url_key":"olivia-1-4-zip-light-jacket-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ12-S-Black","id":1389,"status":1,"name":"Olivia 1/4 Zip Light Jacket-S-Black","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"168","color":"49","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","url_key":"olivia-1-4-zip-light-jacket-s-black","msrp_display_actual_price_type":"0"},{"sku":"WJ12-S-Blue","id":1390,"status":1,"name":"Olivia 1/4 Zip Light Jacket-S-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"168","color":"50","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","url_key":"olivia-1-4-zip-light-jacket-s-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ12-S-Purple","id":1391,"status":1,"name":"Olivia 1/4 Zip Light Jacket-S-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"168","color":"57","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","url_key":"olivia-1-4-zip-light-jacket-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ12-M-Black","id":1392,"status":1,"name":"Olivia 1/4 Zip Light Jacket-M-Black","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"169","color":"49","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","url_key":"olivia-1-4-zip-light-jacket-m-black","msrp_display_actual_price_type":"0"},{"sku":"WJ12-M-Blue","id":1393,"status":1,"name":"Olivia 1/4 Zip Light Jacket-M-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"169","color":"50","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","url_key":"olivia-1-4-zip-light-jacket-m-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ12-M-Purple","id":1394,"status":1,"name":"Olivia 1/4 Zip Light Jacket-M-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"169","color":"57","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","url_key":"olivia-1-4-zip-light-jacket-m-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ12-L-Black","id":1395,"status":1,"name":"Olivia 1/4 Zip Light Jacket-L-Black","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"170","color":"49","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","url_key":"olivia-1-4-zip-light-jacket-l-black","msrp_display_actual_price_type":"0"},{"sku":"WJ12-L-Blue","id":1396,"status":1,"name":"Olivia 1/4 Zip Light Jacket-L-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"170","color":"50","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","url_key":"olivia-1-4-zip-light-jacket-l-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ12-L-Purple","id":1397,"status":1,"name":"Olivia 1/4 Zip Light Jacket-L-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"170","color":"57","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","url_key":"olivia-1-4-zip-light-jacket-l-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ12-XL-Black","id":1398,"status":1,"name":"Olivia 1/4 Zip Light Jacket-XL-Black","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"171","color":"49","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","url_key":"olivia-1-4-zip-light-jacket-xl-black","msrp_display_actual_price_type":"0"},{"sku":"WJ12-XL-Blue","id":1399,"status":1,"name":"Olivia 1/4 Zip Light Jacket-XL-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"171","color":"50","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","url_key":"olivia-1-4-zip-light-jacket-xl-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ12-XL-Purple","id":1400,"status":1,"name":"Olivia 1/4 Zip Light Jacket-XL-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"171","color":"57","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","url_key":"olivia-1-4-zip-light-jacket-xl-purple","msrp_display_actual_price_type":"0"}],"configurable_options":[{"id":193,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":1401,"attribute_code":"color"},{"id":192,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1401,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-1401.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1532","_score":1,"_source":{"id":1532,"sku":"WS11-XS-Yellow","name":"Diva Gym Tee-XS-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

    \n

    • Bright yellow v-neck tee.
    • Moisture-wicking fabric.
    • Long-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"diva-gym-tee-xs-yellow-1532","links":{},"stock":{"item_id":1532,"product_id":1532,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xs-yellow-1532.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1522","_score":1,"_source":{"id":1522,"sku":"WS10-M-Yellow","name":"Karissa V-Neck Tee-M-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

    \n

    • Pink heather soft v-neck tee.
    • Luma signature micro sleeves.
    • Semi-fitted.
    • Machine wash/dry.

    ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"karissa-v-neck-tee-m-yellow-1522","links":{},"stock":{"item_id":1522,"product_id":1522,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-m-yellow-1522.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1527","_score":1,"_source":{"id":1527,"sku":"WS10-XL-Red","name":"Karissa V-Neck Tee-XL-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

    \n

    • Pink heather soft v-neck tee.
    • Luma signature micro sleeves.
    • Semi-fitted.
    • Machine wash/dry.

    ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"karissa-v-neck-tee-xl-red-1527","links":{},"stock":{"item_id":1527,"product_id":1527,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xl-red-1527.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1543","_score":1,"_source":{"id":1543,"sku":"WS11-XL-Orange","name":"Diva Gym Tee-XL-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

    \n

    • Bright yellow v-neck tee.
    • Moisture-wicking fabric.
    • Long-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"diva-gym-tee-xl-orange-1543","links":{},"stock":{"item_id":1543,"product_id":1543,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xl-orange-1543.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1528","_score":1,"_source":{"id":1528,"sku":"WS10-XL-Yellow","name":"Karissa V-Neck Tee-XL-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

    \n

    • Pink heather soft v-neck tee.
    • Luma signature micro sleeves.
    • Semi-fitted.
    • Machine wash/dry.

    ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"karissa-v-neck-tee-xl-yellow-1528","links":{},"stock":{"item_id":1528,"product_id":1528,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xl-yellow-1528.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1549","_score":1,"_source":{"id":1549,"sku":"WS12-S-Blue","name":"Radiant Tee-S-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

    So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

    \n

    • Salmon soft scoop neck tee.
    • Athletic, semi-form fit.
    • Flat seams prevent chafing.
    • 67% Organic Cotton / 28% Hemp / 5% Spandex.

    ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"radiant-tee-s-blue-1549","links":{},"stock":{"item_id":1549,"product_id":1549,"stock_id":1,"qty":35,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-s-blue-1549.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1546","_score":1,"_source":{"id":1546,"sku":"WS12-XS-Blue","name":"Radiant Tee-XS-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

    So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

    \n

    • Salmon soft scoop neck tee.
    • Athletic, semi-form fit.
    • Flat seams prevent chafing.
    • 67% Organic Cotton / 28% Hemp / 5% Spandex.

    ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"radiant-tee-xs-blue-1546","links":{},"stock":{"item_id":1546,"product_id":1546,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-10 16:42:32","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xs-blue-1546.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1404","_score":1,"_source":{"id":1404,"sku":"WS02-XS-Red","name":"Gabrielle Micro Sleeve Top-XS-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

    \n

    • Lime green v-neck tee.
    • Slimming, flattering fit.
    • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
    • Longer curved hem provides additional coverage.
    • 55% Hemp / 45% Organic Cotton.

    ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gabrielle-micro-sleeve-top-xs-red-1404","links":{},"stock":{"item_id":1404,"product_id":1404,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xs-red-1404.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1420","_score":1,"_source":{"id":1420,"sku":"WS03-XS-Red","name":"Iris Workout Top-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

    \n

    • Pink heather rouched v-neck.
    • Scoop neckline.
    • Angled flat seams.
    • Moisture wicking.
    • Body skimming.
    • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

    ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"iris-workout-top-xs-red-1420","links":{},"stock":{"item_id":1420,"product_id":1420,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xs-red-1420.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1406","_score":1,"_source":{"id":1406,"sku":"WS02-S-Green","name":"Gabrielle Micro Sleeve Top-S-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

    \n

    • Lime green v-neck tee.
    • Slimming, flattering fit.
    • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
    • Longer curved hem provides additional coverage.
    • 55% Hemp / 45% Organic Cotton.

    ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gabrielle-micro-sleeve-top-s-green-1406","links":{},"stock":{"item_id":1406,"product_id":1406,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-s-green-1406.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1429","_score":1,"_source":{"id":1429,"sku":"WS03-L-Red","name":"Iris Workout Top-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

    \n

    • Pink heather rouched v-neck.
    • Scoop neckline.
    • Angled flat seams.
    • Moisture wicking.
    • Body skimming.
    • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

    ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"iris-workout-top-l-red-1429","links":{},"stock":{"item_id":1429,"product_id":1429,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-l-red-1429.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1439","_score":1,"_source":{"id":1439,"sku":"WS04-S-Red","name":"Layla Tee-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

    \n

    • Teal tee.
    • Long back hem.
    • Dropped shoulders.

    ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"layla-tee-s-red-1439","links":{},"stock":{"item_id":1439,"product_id":1439,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-s-red-1439.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1443","_score":1,"_source":{"id":1443,"sku":"WS04-L-Blue","name":"Layla Tee-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

    \n

    • Teal tee.
    • Long back hem.
    • Dropped shoulders.

    ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"layla-tee-l-blue-1443","links":{},"stock":{"item_id":1443,"product_id":1443,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-l-blue-1443.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1483","_score":1,"_source":{"id":1483,"sku":"WS08-XS-Blue","name":"Minerva LumaTech™ V-Tee-XS-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

    \n

    • Navy blue heather soft v-neck tee.
    • Flatlock seams for chafe-free comfort.
    • Relaxed cut.
    • Ultra-lightweight fabric.
    • Machine wash/dry.

    ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"minerva-lumatech-and-trade-v-tee-xs-blue-1483","links":{},"stock":{"item_id":1483,"product_id":1483,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xs-blue-1483.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1489","_score":1,"_source":{"id":1489,"sku":"WS08-M-Blue","name":"Minerva LumaTech™ V-Tee-M-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

    \n

    • Navy blue heather soft v-neck tee.
    • Flatlock seams for chafe-free comfort.
    • Relaxed cut.
    • Ultra-lightweight fabric.
    • Machine wash/dry.

    ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"minerva-lumatech-and-trade-v-tee-m-blue-1489","links":{},"stock":{"item_id":1489,"product_id":1489,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-m-blue-1489.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1477","_score":1,"_source":{"id":1477,"sku":"WS07-L-Yellow","name":"Juliana Short-Sleeve Tee-L-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

    \n

    • Black scoop neck tee.
    • Side rouching.
    • Relaxed fit.

    ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juliana-short-sleeve-tee-l-yellow-1477","links":{},"stock":{"item_id":1477,"product_id":1477,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-l-yellow-1477.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1490","_score":1,"_source":{"id":1490,"sku":"WS08-M-Red","name":"Minerva LumaTech™ V-Tee-M-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

    \n

    • Navy blue heather soft v-neck tee.
    • Flatlock seams for chafe-free comfort.
    • Relaxed cut.
    • Ultra-lightweight fabric.
    • Machine wash/dry.

    ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"minerva-lumatech-and-trade-v-tee-m-red-1490","links":{},"stock":{"item_id":1490,"product_id":1490,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-m-red-1490.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1496","_score":1,"_source":{"id":1496,"sku":"WS08-XL-Red","name":"Minerva LumaTech™ V-Tee-XL-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

    \n

    • Navy blue heather soft v-neck tee.
    • Flatlock seams for chafe-free comfort.
    • Relaxed cut.
    • Ultra-lightweight fabric.
    • Machine wash/dry.

    ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"minerva-lumatech-and-trade-v-tee-xl-red-1496","links":{},"stock":{"item_id":1496,"product_id":1496,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xl-red-1496.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1469","_score":1,"_source":{"id":1469,"sku":"WS07-S-Black","name":"Juliana Short-Sleeve Tee-S-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

    \n

    • Black scoop neck tee.
    • Side rouching.
    • Relaxed fit.

    ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juliana-short-sleeve-tee-s-black-1469","links":{},"stock":{"item_id":1469,"product_id":1469,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-s-black-1469.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1511","_score":1,"_source":{"id":1511,"sku":"WS09-XL-Red","name":"Tiffany Fitness Tee-XL-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

    \n

    • Teal soft scoop neck tee.
    • Contrast stitching pattern.
    • Machine wash/dry.

    ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tiffany-fitness-tee-xl-red-1511","links":{},"stock":{"item_id":1511,"product_id":1511,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xl-red-1511.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1530","_score":1,"_source":{"id":1530,"sku":"WS11-XS-Green","name":"Diva Gym Tee-XS-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

    The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

    \n

    • Bright yellow v-neck tee.
    • Moisture-wicking fabric.
    • Long-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"diva-gym-tee-xs-green-1530","links":{},"stock":{"item_id":1530,"product_id":1530,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-29 11:29:03","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xs-green-1530.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1460","_score":1,"_source":{"id":1460,"sku":"WS06-L-Purple","name":"Elisa EverCool™ Tee-L-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

    \n

    • Purple heather v-neck tee.
    • Short-Sleeves.
    • Luma EverCool™ fabric.
    • Machine wash/line dry.

    ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"elisa-evercool-and-trade-tee-l-purple-1460","links":{},"stock":{"item_id":1460,"product_id":1460,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-l-purple-1460.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1428","_score":1,"_source":{"id":1428,"sku":"WS03-L-Green","name":"Iris Workout Top-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

    \n

    • Pink heather rouched v-neck.
    • Scoop neckline.
    • Angled flat seams.
    • Moisture wicking.
    • Body skimming.
    • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

    ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"iris-workout-top-l-green-1428","links":{},"stock":{"item_id":1428,"product_id":1428,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-l-green-1428.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1693","_score":1,"_source":{"id":1693,"sku":"WT02-S-Green","name":"Zoe Tank-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

    \n

    • Salmon heather tank top.
    • 1\" elastic band on inner bra.
    • Mesh lining on shelf bra for support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoe-tank-s-green-1693","links":{},"stock":{"item_id":1693,"product_id":1693,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-s-green-1693.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1694","_score":1,"_source":{"id":1694,"sku":"WT02-S-Orange","name":"Zoe Tank-S-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

    \n

    • Salmon heather tank top.
    • 1\" elastic band on inner bra.
    • Mesh lining on shelf bra for support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoe-tank-s-orange-1694","links":{},"stock":{"item_id":1694,"product_id":1694,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-s-orange-1694.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1689","_score":1,"_source":{"id":1689,"sku":"WT01","name":"Bella Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

    Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

    \n

    • Navy blue tank top - cotton.
    • Feminine scoop neckline.
    • Power mesh lining in shelf bra for superior support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"bella-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"bella-tank-1689","links":{},"stock":{"item_id":1689,"product_id":1689,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT01-XS-Black","id":1674,"status":1,"name":"Bella Tank-XS-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"167","color":"49","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","url_key":"bella-tank-xs-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-XS-Blue","id":1675,"status":1,"name":"Bella Tank-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"167","color":"50","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","url_key":"bella-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-XS-Orange","id":1676,"status":1,"name":"Bella Tank-XS-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"167","color":"56","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","url_key":"bella-tank-xs-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-S-Black","id":1677,"status":1,"name":"Bella Tank-S-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"168","color":"49","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","url_key":"bella-tank-s-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-S-Blue","id":1678,"status":1,"name":"Bella Tank-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"168","color":"50","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","url_key":"bella-tank-s-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-S-Orange","id":1679,"status":1,"name":"Bella Tank-S-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"168","color":"56","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","url_key":"bella-tank-s-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-M-Black","id":1680,"status":1,"name":"Bella Tank-M-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"169","color":"49","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","url_key":"bella-tank-m-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-M-Blue","id":1681,"status":1,"name":"Bella Tank-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"169","color":"50","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","url_key":"bella-tank-m-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-M-Orange","id":1682,"status":1,"name":"Bella Tank-M-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"169","color":"56","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","url_key":"bella-tank-m-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-L-Black","id":1683,"status":1,"name":"Bella Tank-L-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"170","color":"49","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","url_key":"bella-tank-l-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-L-Blue","id":1684,"status":1,"name":"Bella Tank-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"170","color":"50","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","url_key":"bella-tank-l-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-L-Orange","id":1685,"status":1,"name":"Bella Tank-L-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"170","color":"56","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","url_key":"bella-tank-l-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-XL-Black","id":1686,"status":1,"name":"Bella Tank-XL-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"171","color":"49","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","url_key":"bella-tank-xl-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-XL-Blue","id":1687,"status":1,"name":"Bella Tank-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"171","color":"50","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","url_key":"bella-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-XL-Orange","id":1688,"status":1,"name":"Bella Tank-XL-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"171","color":"56","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","url_key":"bella-tank-xl-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":229,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":1689,"attribute_code":"color"},{"id":228,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1689,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-1689.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1657","_score":1,"_source":{"id":1657,"sku":"WB04","name":"Prima Compete Bra Top","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":24,"description":"

    Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
    `
    • Colorblocked details.
    • Machine wash/line dry.

    ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"prima-compete-bra-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,154,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"131","pattern":"197","climate":[205,209],"slug":"prima-compete-bra-top-1657","links":{},"stock":{"item_id":1657,"product_id":1657,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WB04-XS-Blue","id":1642,"status":1,"name":"Prima Compete Bra Top-XS-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"50","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","url_key":"prima-compete-bra-top-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WB04-XS-Purple","id":1643,"status":1,"name":"Prima Compete Bra Top-XS-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"57","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","url_key":"prima-compete-bra-top-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WB04-XS-Yellow","id":1644,"status":1,"name":"Prima Compete Bra Top-XS-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"60","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","url_key":"prima-compete-bra-top-xs-yellow","msrp_display_actual_price_type":"0"},{"sku":"WB04-S-Blue","id":1645,"status":1,"name":"Prima Compete Bra Top-S-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"50","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","url_key":"prima-compete-bra-top-s-blue","msrp_display_actual_price_type":"0"},{"sku":"WB04-S-Purple","id":1646,"status":1,"name":"Prima Compete Bra Top-S-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"57","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","url_key":"prima-compete-bra-top-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WB04-S-Yellow","id":1647,"status":1,"name":"Prima Compete Bra Top-S-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"60","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","url_key":"prima-compete-bra-top-s-yellow","msrp_display_actual_price_type":"0"},{"sku":"WB04-M-Blue","id":1648,"status":1,"name":"Prima Compete Bra Top-M-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"50","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","url_key":"prima-compete-bra-top-m-blue","msrp_display_actual_price_type":"0"},{"sku":"WB04-M-Purple","id":1649,"status":1,"name":"Prima Compete Bra Top-M-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"57","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","url_key":"prima-compete-bra-top-m-purple","msrp_display_actual_price_type":"0"},{"sku":"WB04-M-Yellow","id":1650,"status":1,"name":"Prima Compete Bra Top-M-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"60","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","url_key":"prima-compete-bra-top-m-yellow","msrp_display_actual_price_type":"0"},{"sku":"WB04-L-Blue","id":1651,"status":1,"name":"Prima Compete Bra Top-L-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"50","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","url_key":"prima-compete-bra-top-l-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WB04-L-Purple","id":1652,"status":1,"name":"Prima Compete Bra Top-L-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"57","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","url_key":"prima-compete-bra-top-l-purple","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WB04-L-Yellow","id":1653,"status":1,"name":"Prima Compete Bra Top-L-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"60","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","url_key":"prima-compete-bra-top-l-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WB04-XL-Blue","id":1654,"status":1,"name":"Prima Compete Bra Top-XL-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"50","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","url_key":"prima-compete-bra-top-xl-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WB04-XL-Purple","id":1655,"status":1,"name":"Prima Compete Bra Top-XL-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"57","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","url_key":"prima-compete-bra-top-xl-purple","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WB04-XL-Yellow","id":1656,"status":1,"name":"Prima Compete Bra Top-XL-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"60","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","url_key":"prima-compete-bra-top-xl-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001}],"configurable_options":[{"id":225,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"},{"value_index":60,"label":"Yellow"}],"product_id":1657,"attribute_code":"color"},{"id":224,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1657,"attribute_code":"size"}],"color_options":[50,57,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-1657.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1545","_score":1,"_source":{"id":1545,"sku":"WS11","name":"Diva Gym Tee","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":32,"description":"

    The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

    \n

    • Bright yellow v-neck tee.
    • Moisture-wicking fabric.
    • Long-Sleeves.
    • Machine wash/line dry.

    ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"diva-gym-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"1","style_general":"136","pattern":"197","climate":[205,209],"slug":"diva-gym-tee-1545","links":{},"stock":{"item_id":1545,"product_id":1545,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS11-XS-Green","id":1530,"status":1,"name":"Diva Gym Tee-XS-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"167","color":"53","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","url_key":"diva-gym-tee-xs-green","msrp_display_actual_price_type":"0"},{"sku":"WS11-XS-Orange","id":1531,"status":1,"name":"Diva Gym Tee-XS-Orange","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"167","color":"56","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","url_key":"diva-gym-tee-xs-orange","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-XS-Yellow","id":1532,"status":1,"name":"Diva Gym Tee-XS-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"167","color":"60","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","url_key":"diva-gym-tee-xs-yellow","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-S-Green","id":1533,"status":1,"name":"Diva Gym Tee-S-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"168","color":"53","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","url_key":"diva-gym-tee-s-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-S-Orange","id":1534,"status":1,"name":"Diva Gym Tee-S-Orange","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"168","color":"56","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","url_key":"diva-gym-tee-s-orange","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-S-Yellow","id":1535,"status":1,"name":"Diva Gym Tee-S-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"168","color":"60","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","url_key":"diva-gym-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-M-Green","id":1536,"status":1,"name":"Diva Gym Tee-M-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"169","color":"53","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","url_key":"diva-gym-tee-m-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-M-Orange","id":1537,"status":1,"name":"Diva Gym Tee-M-Orange","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"169","color":"56","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","url_key":"diva-gym-tee-m-orange","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-M-Yellow","id":1538,"status":1,"name":"Diva Gym Tee-M-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"169","color":"60","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","url_key":"diva-gym-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-L-Green","id":1539,"status":1,"name":"Diva Gym Tee-L-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"170","color":"53","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","url_key":"diva-gym-tee-l-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-L-Orange","id":1540,"status":1,"name":"Diva Gym Tee-L-Orange","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"170","color":"56","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","url_key":"diva-gym-tee-l-orange","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-L-Yellow","id":1541,"status":1,"name":"Diva Gym Tee-L-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"170","color":"60","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","url_key":"diva-gym-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-XL-Green","id":1542,"status":1,"name":"Diva Gym Tee-XL-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"171","color":"53","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","url_key":"diva-gym-tee-xl-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-XL-Orange","id":1543,"status":1,"name":"Diva Gym Tee-XL-Orange","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"171","color":"56","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","url_key":"diva-gym-tee-xl-orange","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-XL-Yellow","id":1544,"status":1,"name":"Diva Gym Tee-XL-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"171","color":"60","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","url_key":"diva-gym-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001}],"configurable_options":[{"id":211,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1545,"attribute_code":"color"},{"id":210,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1545,"attribute_code":"size"}],"color_options":[53,56,60],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-1545.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1622","_score":1,"_source":{"id":1622,"sku":"WB02-XL-Blue","name":"Erica Evercool Sports Bra-XL-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

    \n

    • Honeycomb light blue bra top.
    • Elastic hem.
    • Reinforced binding.
    • Machine wash/dry.

    ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erica-evercool-sports-bra-xl-blue-1622","links":{},"stock":{"item_id":1622,"product_id":1622,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xl-blue-1622.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1643","_score":1,"_source":{"id":1643,"sku":"WB04-XS-Purple","name":"Prima Compete Bra Top-XS-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
    `
    • Colorblocked details.
    • Machine wash/line dry.

    ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"prima-compete-bra-top-xs-purple-1643","links":{},"stock":{"item_id":1643,"product_id":1643,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xs-purple-1643.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1637","_score":1,"_source":{"id":1637,"sku":"WB03-L-Yellow","name":"Celeste Sports Bra-L-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2019-04-15 12:13:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

    \r\n

    • Mint bra top.
    • Seam-free interior molded cups
    • Odor control.
    • UV protection.
    • Machine wash/dry.

    ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-l-yellow","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"170","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"celeste-sports-bra-l-yellow-1637","links":{},"stock":{"item_id":1637,"product_id":1637,"stock_id":1,"qty":7,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-l-yellow-1637.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1636","_score":1,"_source":{"id":1636,"sku":"WB03-L-Red","name":"Celeste Sports Bra-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

    \n

    • Mint bra top.
    • Seam-free interior molded cups
    • Odor control.
    • UV protection.
    • Machine wash/dry.

    ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"celeste-sports-bra-l-red-1636","links":{},"stock":{"item_id":1636,"product_id":1636,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-l-red-1636.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1706","_score":1,"_source":{"id":1706,"sku":"WT03-XS-Orange","name":"Nora Practice Tank-XS-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

    \n

    • Pink stripped tank with side rouching.
    • Pre-shrunk.
    • Garment dyed.
    • 92% Organic Cotton/8% Lycra.

    ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nora-practice-tank-xs-orange-1706","links":{},"stock":{"item_id":1706,"product_id":1706,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xs-orange-1706.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1704","_score":1,"_source":{"id":1704,"sku":"WT02-XL-Yellow","name":"Zoe Tank-XL-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

    \n

    • Salmon heather tank top.
    • 1\" elastic band on inner bra.
    • Mesh lining on shelf bra for support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoe-tank-xl-yellow-1704","links":{},"stock":{"item_id":1704,"product_id":1704,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xl-yellow-1704.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1707","_score":1,"_source":{"id":1707,"sku":"WT03-XS-Purple","name":"Nora Practice Tank-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

    \n

    • Pink stripped tank with side rouching.
    • Pre-shrunk.
    • Garment dyed.
    • 92% Organic Cotton/8% Lycra.

    ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nora-practice-tank-xs-purple-1707","links":{},"stock":{"item_id":1707,"product_id":1707,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xs-purple-1707.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1702","_score":1,"_source":{"id":1702,"sku":"WT02-XL-Green","name":"Zoe Tank-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

    \n

    • Salmon heather tank top.
    • 1\" elastic band on inner bra.
    • Mesh lining on shelf bra for support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoe-tank-xl-green-1702","links":{},"stock":{"item_id":1702,"product_id":1702,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xl-green-1702.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1730","_score":1,"_source":{"id":1730,"sku":"WT04-M-Red","name":"Nona Fitness Tank-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

    \n

    • Blue/white striped mesh tank.
    • Relaxed fit.
    • Chafe-resistant trim around armholes and collar.
    • Machine wash/dry.

    ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nona-fitness-tank-m-red-1730","links":{},"stock":{"item_id":1730,"product_id":1730,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-m-red-1730.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1667","_score":1,"_source":{"id":1667,"sku":"WB05-L-Black","name":"Lucia Cross-Fit Bra -L-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

    \n

    • Black/white bra top.
    • Criss-cross back design.
    • Machine wash/dry.

    ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lucia-cross-fit-bra-l-black-1667","links":{},"stock":{"item_id":1667,"product_id":1667,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-l-black-1667.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1665","_score":1,"_source":{"id":1665,"sku":"WB05-M-Orange","name":"Lucia Cross-Fit Bra -M-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

    \n

    • Black/white bra top.
    • Criss-cross back design.
    • Machine wash/dry.

    ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lucia-cross-fit-bra-m-orange-1665","links":{},"stock":{"item_id":1665,"product_id":1665,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-m-orange-1665.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1666","_score":1,"_source":{"id":1666,"sku":"WB05-M-Purple","name":"Lucia Cross-Fit Bra -M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

    \n

    • Black/white bra top.
    • Criss-cross back design.
    • Machine wash/dry.

    ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lucia-cross-fit-bra-m-purple-1666","links":{},"stock":{"item_id":1666,"product_id":1666,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-m-purple-1666.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1675","_score":1,"_source":{"id":1675,"sku":"WT01-XS-Blue","name":"Bella Tank-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

    \n

    • Navy blue tank top - cotton.
    • Feminine scoop neckline.
    • Power mesh lining in shelf bra for superior support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bella-tank-xs-blue-1675","links":{},"stock":{"item_id":1675,"product_id":1675,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xs-blue-1675.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1674","_score":1,"_source":{"id":1674,"sku":"WT01-XS-Black","name":"Bella Tank-XS-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

    \n

    • Navy blue tank top - cotton.
    • Feminine scoop neckline.
    • Power mesh lining in shelf bra for superior support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bella-tank-xs-black-1674","links":{},"stock":{"item_id":1674,"product_id":1674,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xs-black-1674.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1685","_score":1,"_source":{"id":1685,"sku":"WT01-L-Orange","name":"Bella Tank-L-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

    \n

    • Navy blue tank top - cotton.
    • Feminine scoop neckline.
    • Power mesh lining in shelf bra for superior support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bella-tank-l-orange-1685","links":{},"stock":{"item_id":1685,"product_id":1685,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-l-orange-1685.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1619","_score":1,"_source":{"id":1619,"sku":"WB02-L-Blue","name":"Erica Evercool Sports Bra-L-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

    \n

    • Honeycomb light blue bra top.
    • Elastic hem.
    • Reinforced binding.
    • Machine wash/dry.

    ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erica-evercool-sports-bra-l-blue-1619","links":{},"stock":{"item_id":1619,"product_id":1619,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-l-blue-1619.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1608","_score":1,"_source":{"id":1608,"sku":"WB01-XL-Purple","name":"Electra Bra Top-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

    \n

    • Gray rouched bra top.
    • Attractive back straps feature contrasting motif fabric.
    • Interior bra top is lined with breathable mesh.
    • Elastic underband for superior support.
    • Removable cup inserts.
    • Chafe-free flat lock seams provide added comfort.

    ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"electra-bra-top-xl-purple-1608","links":{},"stock":{"item_id":1608,"product_id":1608,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xl-purple-1608.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1604","_score":1,"_source":{"id":1604,"sku":"WB01-L-Gray","name":"Electra Bra Top-L-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

    \n

    • Gray rouched bra top.
    • Attractive back straps feature contrasting motif fabric.
    • Interior bra top is lined with breathable mesh.
    • Elastic underband for superior support.
    • Removable cup inserts.
    • Chafe-free flat lock seams provide added comfort.

    ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"electra-bra-top-l-gray-1604","links":{},"stock":{"item_id":1604,"product_id":1604,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-l-gray-1604.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1621","_score":1,"_source":{"id":1621,"sku":"WB02-L-Yellow","name":"Erica Evercool Sports Bra-L-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

    \n

    • Honeycomb light blue bra top.
    • Elastic hem.
    • Reinforced binding.
    • Machine wash/dry.

    ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erica-evercool-sports-bra-l-yellow-1621","links":{},"stock":{"item_id":1621,"product_id":1621,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-l-yellow-1621.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1624","_score":1,"_source":{"id":1624,"sku":"WB02-XL-Yellow","name":"Erica Evercool Sports Bra-XL-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

    \n

    • Honeycomb light blue bra top.
    • Elastic hem.
    • Reinforced binding.
    • Machine wash/dry.

    ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erica-evercool-sports-bra-xl-yellow-1624","links":{},"stock":{"item_id":1624,"product_id":1624,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xl-yellow-1624.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1627","_score":1,"_source":{"id":1627,"sku":"WB03-XS-Red","name":"Celeste Sports Bra-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

    \n

    • Mint bra top.
    • Seam-free interior molded cups
    • Odor control.
    • UV protection.
    • Machine wash/dry.

    ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"celeste-sports-bra-xs-red-1627","links":{},"stock":{"item_id":1627,"product_id":1627,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xs-red-1627.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1597","_score":1,"_source":{"id":1597,"sku":"WB01-S-Black","name":"Electra Bra Top-S-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

    \n

    • Gray rouched bra top.
    • Attractive back straps feature contrasting motif fabric.
    • Interior bra top is lined with breathable mesh.
    • Elastic underband for superior support.
    • Removable cup inserts.
    • Chafe-free flat lock seams provide added comfort.

    ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"electra-bra-top-s-black-1597","links":{},"stock":{"item_id":1597,"product_id":1597,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-s-black-1597.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1662","_score":1,"_source":{"id":1662,"sku":"WB05-S-Orange","name":"Lucia Cross-Fit Bra -S-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

    \n

    • Black/white bra top.
    • Criss-cross back design.
    • Machine wash/dry.

    ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lucia-cross-fit-bra-s-orange-1662","links":{},"stock":{"item_id":1662,"product_id":1662,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-s-orange-1662.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1817","_score":1,"_source":{"id":1817,"sku":"WT09","name":"Breathe-Easy Tank","attribute_set_id":9,"price":34,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":34,"description":"

    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

    \n

    • Machine wash/dry.
    • Cocona® fabric.

    ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"breathe-easy-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,33],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[205,209],"slug":"breathe-easy-tank-1817","links":{},"stock":{"item_id":1817,"product_id":1817,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT09-XS-Purple","id":1802,"status":1,"name":"Breathe-Easy Tank-XS-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"167","color":"57","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","url_key":"breathe-easy-tank-xs-purple","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-XS-White","id":1803,"status":1,"name":"Breathe-Easy Tank-XS-White","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"167","color":"59","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","url_key":"breathe-easy-tank-xs-white","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-XS-Yellow","id":1804,"status":1,"name":"Breathe-Easy Tank-XS-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"167","color":"60","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","url_key":"breathe-easy-tank-xs-yellow","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-S-Purple","id":1805,"status":1,"name":"Breathe-Easy Tank-S-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"168","color":"57","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","url_key":"breathe-easy-tank-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WT09-S-White","id":1806,"status":1,"name":"Breathe-Easy Tank-S-White","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"168","color":"59","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","url_key":"breathe-easy-tank-s-white","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-S-Yellow","id":1807,"status":1,"name":"Breathe-Easy Tank-S-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"168","color":"60","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","url_key":"breathe-easy-tank-s-yellow","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-M-Purple","id":1808,"status":1,"name":"Breathe-Easy Tank-M-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"169","color":"57","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","url_key":"breathe-easy-tank-m-purple","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-M-White","id":1809,"status":1,"name":"Breathe-Easy Tank-M-White","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"169","color":"59","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","url_key":"breathe-easy-tank-m-white","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-M-Yellow","id":1810,"status":1,"name":"Breathe-Easy Tank-M-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"169","color":"60","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","url_key":"breathe-easy-tank-m-yellow","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-L-Purple","id":1811,"status":1,"name":"Breathe-Easy Tank-L-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"170","color":"57","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","url_key":"breathe-easy-tank-l-purple","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-L-White","id":1812,"status":1,"name":"Breathe-Easy Tank-L-White","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"170","color":"59","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","url_key":"breathe-easy-tank-l-white","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-L-Yellow","id":1813,"status":1,"name":"Breathe-Easy Tank-L-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"170","color":"60","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","url_key":"breathe-easy-tank-l-yellow","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-XL-Purple","id":1814,"status":1,"name":"Breathe-Easy Tank-XL-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"171","color":"57","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","url_key":"breathe-easy-tank-xl-purple","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-XL-White","id":1815,"status":1,"name":"Breathe-Easy Tank-XL-White","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"171","color":"59","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","url_key":"breathe-easy-tank-xl-white","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-XL-Yellow","id":1816,"status":1,"name":"Breathe-Easy Tank-XL-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"171","color":"60","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","url_key":"breathe-easy-tank-xl-yellow","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001}],"configurable_options":[{"id":245,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":1817,"attribute_code":"color"},{"id":244,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1817,"attribute_code":"size"}],"color_options":[57,59,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-1817.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1705","_score":1,"_source":{"id":1705,"sku":"WT02","name":"Zoe Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

    The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

    \n

    • Salmon heather tank top.
    • 1\" elastic band on inner bra.
    • Mesh lining on shelf bra for support.
    • Soft, breathable fabric.
    • Dry wick fabric to stay cool and dry.

    ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"zoe-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,33],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"zoe-tank-1705","links":{},"stock":{"item_id":1705,"product_id":1705,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT02-XS-Green","id":1690,"status":1,"name":"Zoe Tank-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"53","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","url_key":"zoe-tank-xs-green","msrp_display_actual_price_type":"0"},{"sku":"WT02-XS-Orange","id":1691,"status":1,"name":"Zoe Tank-XS-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"56","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","url_key":"zoe-tank-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WT02-XS-Yellow","id":1692,"status":1,"name":"Zoe Tank-XS-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"60","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","url_key":"zoe-tank-xs-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT02-S-Green","id":1693,"status":1,"name":"Zoe Tank-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"53","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","url_key":"zoe-tank-s-green","msrp_display_actual_price_type":"0"},{"sku":"WT02-S-Orange","id":1694,"status":1,"name":"Zoe Tank-S-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"56","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","url_key":"zoe-tank-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WT02-S-Yellow","id":1695,"status":1,"name":"Zoe Tank-S-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"60","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","url_key":"zoe-tank-s-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT02-M-Green","id":1696,"status":1,"name":"Zoe Tank-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"53","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","url_key":"zoe-tank-m-green","msrp_display_actual_price_type":"0"},{"sku":"WT02-M-Orange","id":1697,"status":1,"name":"Zoe Tank-M-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"56","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","url_key":"zoe-tank-m-orange","msrp_display_actual_price_type":"0"},{"sku":"WT02-M-Yellow","id":1698,"status":1,"name":"Zoe Tank-M-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"60","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","url_key":"zoe-tank-m-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT02-L-Green","id":1699,"status":1,"name":"Zoe Tank-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"53","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","url_key":"zoe-tank-l-green","msrp_display_actual_price_type":"0"},{"sku":"WT02-L-Orange","id":1700,"status":1,"name":"Zoe Tank-L-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"56","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","url_key":"zoe-tank-l-orange","msrp_display_actual_price_type":"0"},{"sku":"WT02-L-Yellow","id":1701,"status":1,"name":"Zoe Tank-L-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"60","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","url_key":"zoe-tank-l-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT02-XL-Green","id":1702,"status":1,"name":"Zoe Tank-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"53","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","url_key":"zoe-tank-xl-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT02-XL-Orange","id":1703,"status":1,"name":"Zoe Tank-XL-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"56","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","url_key":"zoe-tank-xl-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT02-XL-Yellow","id":1704,"status":1,"name":"Zoe Tank-XL-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"60","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","url_key":"zoe-tank-xl-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":231,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1705,"attribute_code":"color"},{"id":230,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1705,"attribute_code":"size"}],"color_options":[53,56,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-1705.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1828","_score":1,"_source":{"id":1828,"sku":"WP02-29-Blue","name":"Emma Leggings-29-Blue","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

    \n

    • Light blue heather yoga pants.
    • Body hugging fit.
    • Low rise fit.

    ","image":"/w/p/wp02-blue_main.jpg","small_image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"emma-leggings-29-blue-1828","links":{},"stock":{"item_id":1828,"product_id":1828,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp02-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-29-blue-1828.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1818","_score":1,"_source":{"id":1818,"sku":"WP01-28-Black","name":"Karmen Yoga Pant-28-Black","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

    \n

    • Light blue parachute pants.
    • Power mesh internal waistband for support.
    • Internal waistband pocket.
    • Antimicrobial finish.

    ","image":"/w/p/wp01-black_main.jpg","small_image":"/w/p/wp01-black_main.jpg","thumbnail":"/w/p/wp01-black_main.jpg","color":"49","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"karmen-yoga-pant-28-black-1818","links":{},"stock":{"item_id":1818,"product_id":1818,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-28-black-1818.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1839","_score":1,"_source":{"id":1839,"sku":"WP04-28-Black","name":"Cora Parachute Pant-28-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

    Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

    \n

    • Light blue parachute pants.
    • Power mesh internal waistband for support.
    • Internal waistband pocket.
    • Antimicrobial finish.

    ","image":"/w/p/wp04-black_main.jpg","small_image":"/w/p/wp04-black_main.jpg","thumbnail":"/w/p/wp04-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"cora-parachute-pant-28-black-1839","links":{},"stock":{"item_id":1839,"product_id":1839,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-28-black-1839.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1832","_score":1,"_source":{"id":1832,"sku":"WP03-28-Black","name":"Ida Workout Parachute Pant-28-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

    \n

    • Royal blue parachute pants.
    • Contrast stripe.
    • Relaxed fit.
    • Drawstring closure.
    • Machine wash/dry.

    ","image":"/w/p/wp03-black_main.jpg","small_image":"/w/p/wp03-black_main.jpg","thumbnail":"/w/p/wp03-black_main.jpg","color":"49","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ida-workout-parachute-pant-28-black-1832","links":{},"stock":{"item_id":1832,"product_id":1832,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-28-black-1832.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1836","_score":1,"_source":{"id":1836,"sku":"WP03-29-Blue","name":"Ida Workout Parachute Pant-29-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

    \n

    • Royal blue parachute pants.
    • Contrast stripe.
    • Relaxed fit.
    • Drawstring closure.
    • Machine wash/dry.

    ","image":"/w/p/wp03-blue_main.jpg","small_image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","color":"50","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ida-workout-parachute-pant-29-blue-1836","links":{},"stock":{"item_id":1836,"product_id":1836,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-29-blue-1836.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1848","_score":1,"_source":{"id":1848,"sku":"WP05-28-Red","name":"Sahara Leggings-28-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

    Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

    \n

    • Pinstripe legging with rouched ankles.
    • Secret pocket at waistband.
    • Flat seams for comfort.
    • Shaped fit with low rise.
    • 4-way stretch, moisture-wicking material.

    ","image":"/w/p/wp05-red_main.jpg","small_image":"/w/p/wp05-red_main.jpg","thumbnail":"/w/p/wp05-red_main.jpg","color":"58","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sahara-leggings-28-red-1848","links":{},"stock":{"item_id":1848,"product_id":1848,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-28-red-1848.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1787","_score":1,"_source":{"id":1787,"sku":"WT08-XS-Purple","name":"Antonia Racer Tank-XS-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

    \n

    • Machine wash.
    • Line dry.

    ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"antonia-racer-tank-xs-purple-1787","links":{},"stock":{"item_id":1787,"product_id":1787,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xs-purple-1787.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1770","_score":1,"_source":{"id":1770,"sku":"WT07-XS-Green","name":"Maya Tunic-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

    \n

    • Mint green heather tunic-style tank.
    • Wrapped back with cut out detail.
    • Drawcord detail at end.
    • Abutted seams.

    ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"maya-tunic-xs-green-1770","links":{},"stock":{"item_id":1770,"product_id":1770,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xs-green-1770.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1783","_score":1,"_source":{"id":1783,"sku":"WT07-XL-White","name":"Maya Tunic-XL-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

    \n

    • Mint green heather tunic-style tank.
    • Wrapped back with cut out detail.
    • Drawcord detail at end.
    • Abutted seams.

    ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"maya-tunic-xl-white-1783","links":{},"stock":{"item_id":1783,"product_id":1783,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xl-white-1783.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1793","_score":1,"_source":{"id":1793,"sku":"WT08-M-Purple","name":"Antonia Racer Tank-M-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

    \n

    • Machine wash.
    • Line dry.

    ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"antonia-racer-tank-m-purple-1793","links":{},"stock":{"item_id":1793,"product_id":1793,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-m-purple-1793.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1799","_score":1,"_source":{"id":1799,"sku":"WT08-XL-Purple","name":"Antonia Racer Tank-XL-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

    \n

    • Machine wash.
    • Line dry.

    ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"antonia-racer-tank-xl-purple-1799","links":{},"stock":{"item_id":1799,"product_id":1799,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xl-purple-1799.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1797","_score":1,"_source":{"id":1797,"sku":"WT08-L-Yellow","name":"Antonia Racer Tank-L-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

    \n

    • Machine wash.
    • Line dry.

    ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"antonia-racer-tank-l-yellow-1797","links":{},"stock":{"item_id":1797,"product_id":1797,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-l-yellow-1797.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1800","_score":1,"_source":{"id":1800,"sku":"WT08-XL-Yellow","name":"Antonia Racer Tank-XL-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

    \n

    • Machine wash.
    • Line dry.

    ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"antonia-racer-tank-xl-yellow-1800","links":{},"stock":{"item_id":1800,"product_id":1800,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xl-yellow-1800.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1809","_score":1,"_source":{"id":1809,"sku":"WT09-M-White","name":"Breathe-Easy Tank-M-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

    \n

    • Machine wash/dry.
    • Cocona® fabric.

    ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"breathe-easy-tank-m-white-1809","links":{},"stock":{"item_id":1809,"product_id":1809,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-m-white-1809.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1815","_score":1,"_source":{"id":1815,"sku":"WT09-XL-White","name":"Breathe-Easy Tank-XL-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

    \n

    • Machine wash/dry.
    • Cocona® fabric.

    ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"breathe-easy-tank-xl-white-1815","links":{},"stock":{"item_id":1815,"product_id":1815,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xl-white-1815.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1816","_score":1,"_source":{"id":1816,"sku":"WT09-XL-Yellow","name":"Breathe-Easy Tank-XL-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

    \n

    • Machine wash/dry.
    • Cocona® fabric.

    ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"breathe-easy-tank-xl-yellow-1816","links":{},"stock":{"item_id":1816,"product_id":1816,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xl-yellow-1816.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1813","_score":1,"_source":{"id":1813,"sku":"WT09-L-Yellow","name":"Breathe-Easy Tank-L-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

    \n

    • Machine wash/dry.
    • Cocona® fabric.

    ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"breathe-easy-tank-l-yellow-1813","links":{},"stock":{"item_id":1813,"product_id":1813,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-l-yellow-1813.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1812","_score":1,"_source":{"id":1812,"sku":"WT09-L-White","name":"Breathe-Easy Tank-L-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

    \n

    • Machine wash/dry.
    • Cocona® fabric.

    ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"breathe-easy-tank-l-white-1812","links":{},"stock":{"item_id":1812,"product_id":1812,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-l-white-1812.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1820","_score":1,"_source":{"id":1820,"sku":"WP01-28-White","name":"Karmen Yoga Pant-28-White","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

    \n

    • Light blue parachute pants.
    • Power mesh internal waistband for support.
    • Internal waistband pocket.
    • Antimicrobial finish.

    ","image":"/w/p/wp01-white_main.jpg","small_image":"/w/p/wp01-white_main.jpg","thumbnail":"/w/p/wp01-white_main.jpg","color":"59","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"karmen-yoga-pant-28-white-1820","links":{},"stock":{"item_id":1820,"product_id":1820,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-28-white-1820.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1727","_score":1,"_source":{"id":1727,"sku":"WT04-S-Red","name":"Nona Fitness Tank-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

    \n

    • Blue/white striped mesh tank.
    • Relaxed fit.
    • Chafe-resistant trim around armholes and collar.
    • Machine wash/dry.

    ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nona-fitness-tank-s-red-1727","links":{},"stock":{"item_id":1727,"product_id":1727,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-s-red-1727.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1745","_score":1,"_source":{"id":1745,"sku":"WT05-M-Purple","name":"Leah Yoga Top-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

    \n

    • Blue heather rouched tank top.
    • Camisole tank top.
    • Banding and shirring details.
    • Body hugging fit.
    • Contrast topstitch.
    • Interior shelf bra with shapewear technology.
    • 65% Polyester 35% Cotton.

    ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"leah-yoga-top-m-purple-1745","links":{},"stock":{"item_id":1745,"product_id":1745,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-m-purple-1745.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1750","_score":1,"_source":{"id":1750,"sku":"WT05-XL-Orange","name":"Leah Yoga Top-XL-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

    \n

    • Blue heather rouched tank top.
    • Camisole tank top.
    • Banding and shirring details.
    • Body hugging fit.
    • Contrast topstitch.
    • Interior shelf bra with shapewear technology.
    • 65% Polyester 35% Cotton.

    ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"leah-yoga-top-xl-orange-1750","links":{},"stock":{"item_id":1750,"product_id":1750,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xl-orange-1750.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1749","_score":1,"_source":{"id":1749,"sku":"WT05-L-White","name":"Leah Yoga Top-L-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

    \n

    • Blue heather rouched tank top.
    • Camisole tank top.
    • Banding and shirring details.
    • Body hugging fit.
    • Contrast topstitch.
    • Interior shelf bra with shapewear technology.
    • 65% Polyester 35% Cotton.

    ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"leah-yoga-top-l-white-1749","links":{},"stock":{"item_id":1749,"product_id":1749,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-l-white-1749.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1744","_score":1,"_source":{"id":1744,"sku":"WT05-M-Orange","name":"Leah Yoga Top-M-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

    \n

    • Blue heather rouched tank top.
    • Camisole tank top.
    • Banding and shirring details.
    • Body hugging fit.
    • Contrast topstitch.
    • Interior shelf bra with shapewear technology.
    • 65% Polyester 35% Cotton.

    ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"leah-yoga-top-m-orange-1744","links":{},"stock":{"item_id":1744,"product_id":1744,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-m-orange-1744.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1856","_score":1,"_source":{"id":1856,"sku":"WP06-29-Black","name":"Diana Tights-29-Black","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

    \n

    • Black legging with slate details.
    • Flat-lock, chafe-free side seams.
    • Vented gusset.
    • Secret interior pocket.
    • Sustainable and recycled fabric.

    ","image":"/w/p/wp06-black_main.jpg","small_image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","color":"49","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"diana-tights-29-black-1856","links":{},"stock":{"item_id":1856,"product_id":1856,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_outfit.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-29-black-1856.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1857","_score":1,"_source":{"id":1857,"sku":"WP06-29-Blue","name":"Diana Tights-29-Blue","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

    Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

    \n

    • Black legging with slate details.
    • Flat-lock, chafe-free side seams.
    • Vented gusset.
    • Secret interior pocket.
    • Sustainable and recycled fabric.

    ","image":"/w/p/wp06-blue_main.jpg","small_image":"/w/p/wp06-blue_main.jpg","thumbnail":"/w/p/wp06-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"diana-tights-29-blue-1857","links":{},"stock":{"item_id":1857,"product_id":1857,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-29-blue-1857.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1869","_score":1,"_source":{"id":1869,"sku":"WP08-28-Red","name":"Bardot Capri-28-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

    Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

    \n

    • Black capris with pink waistband.
    • Cropped leggings.
    • Waistband drawcord.
    • Flat, thin and flattering.
    • Made with organic fabric.

    ","image":"/w/p/wp08-red_main.jpg","small_image":"/w/p/wp08-red_main.jpg","thumbnail":"/w/p/wp08-red_main.jpg","color":"58","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bardot-capri-28-red-1869","links":{},"stock":{"item_id":1869,"product_id":1869,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-28-red-1869.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1882","_score":1,"_source":{"id":1882,"sku":"WP10-28-Gray","name":"Daria Bikram Pant-28-Gray","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

    The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

    \n

    • Heather gray capris with pink striped waist.
    • Flatlock seams.
    • Interior pocket.

    ","image":"/w/p/wp10-gray_main.jpg","small_image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","color":"52","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"daria-bikram-pant-28-gray-1882","links":{},"stock":{"item_id":1882,"product_id":1882,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-28-gray-1882.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1888","_score":1,"_source":{"id":1888,"sku":"WP11-28-Blue","name":"Sylvia Capri-28-Blue","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

    \n

    • Green striped capri.
    • Strategic side seam
    • Comfort gusset with lining.
    • Flat seaming.
    • Wide waistband.
    • Moisture wicking.

    ","image":"/w/p/wp11-blue_main.jpg","small_image":"/w/p/wp11-blue_main.jpg","thumbnail":"/w/p/wp11-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sylvia-capri-28-blue-1888","links":{},"stock":{"item_id":1888,"product_id":1888,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-28-blue-1888.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1759","_score":1,"_source":{"id":1759,"sku":"WT06-S-Yellow","name":"Chloe Compete Tank-S-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

    You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

    \n

    • Royal blue tank top - nylon/spandex.
    • Flatlock stitching.
    • Moisture-wicking fabric.
    • Ergonomic seaming.
    • Machine wash/dry.

    ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chloe-compete-tank-s-yellow-1759","links":{},"stock":{"item_id":1759,"product_id":1759,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-s-yellow-1759.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1940","_score":1,"_source":{"id":1940,"sku":"WSH02","name":"Maxima Drawstring Short","attribute_set_id":10,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":28,"description":"

    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

    \n

    • Light gray run shorts
    - cotton polyester.
    • Contrast binding.
    • 3\" inseam.
    • Machine wash/dry.

    ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"maxima-drawstring-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_bottom":"106","pattern":"197","climate":[205,212,206,209],"slug":"maxima-drawstring-short-1940","links":{},"stock":{"item_id":1940,"product_id":1940,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH02-28-Gray","id":1925,"status":1,"name":"Maxima Drawstring Short-28-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"172","color":"52","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","url_key":"maxima-drawstring-short-28-gray","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-28-Orange","id":1926,"status":1,"name":"Maxima Drawstring Short-28-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"172","color":"56","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","url_key":"maxima-drawstring-short-28-orange","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-28-Yellow","id":1927,"status":1,"name":"Maxima Drawstring Short-28-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"172","color":"60","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","url_key":"maxima-drawstring-short-28-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-29-Gray","id":1928,"status":1,"name":"Maxima Drawstring Short-29-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"173","color":"52","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","url_key":"maxima-drawstring-short-29-gray","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-29-Orange","id":1929,"status":1,"name":"Maxima Drawstring Short-29-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"173","color":"56","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","url_key":"maxima-drawstring-short-29-orange","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-29-Yellow","id":1930,"status":1,"name":"Maxima Drawstring Short-29-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"173","color":"60","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","url_key":"maxima-drawstring-short-29-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-30-Gray","id":1931,"status":1,"name":"Maxima Drawstring Short-30-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"174","color":"52","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","url_key":"maxima-drawstring-short-30-gray","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-30-Orange","id":1932,"status":1,"name":"Maxima Drawstring Short-30-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"174","color":"56","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","url_key":"maxima-drawstring-short-30-orange","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-30-Yellow","id":1933,"status":1,"name":"Maxima Drawstring Short-30-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"174","color":"60","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","url_key":"maxima-drawstring-short-30-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-31-Gray","id":1934,"status":1,"name":"Maxima Drawstring Short-31-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"175","color":"52","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","url_key":"maxima-drawstring-short-31-gray","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-31-Orange","id":1935,"status":1,"name":"Maxima Drawstring Short-31-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"175","color":"56","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","url_key":"maxima-drawstring-short-31-orange","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-31-Yellow","id":1936,"status":1,"name":"Maxima Drawstring Short-31-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"175","color":"60","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","url_key":"maxima-drawstring-short-31-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-32-Gray","id":1937,"status":1,"name":"Maxima Drawstring Short-32-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"176","color":"52","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","url_key":"maxima-drawstring-short-32-gray","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-32-Orange","id":1938,"status":1,"name":"Maxima Drawstring Short-32-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"176","color":"56","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","url_key":"maxima-drawstring-short-32-orange","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-32-Yellow","id":1939,"status":1,"name":"Maxima Drawstring Short-32-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"176","color":"60","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","url_key":"maxima-drawstring-short-32-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001}],"configurable_options":[{"id":275,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1940,"attribute_code":"color"},{"id":274,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1940,"attribute_code":"size"}],"color_options":[52,56,60],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-1940.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1937","_score":1,"_source":{"id":1937,"sku":"WSH02-32-Gray","name":"Maxima Drawstring Short-32-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

    \n

    • Light gray run shorts
    - cotton polyester.
    • Contrast binding.
    • 3\" inseam.
    • Machine wash/dry.

    ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"maxima-drawstring-short-32-gray-1937","links":{},"stock":{"item_id":1937,"product_id":1937,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-32-gray-1937.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1939","_score":1,"_source":{"id":1939,"sku":"WSH02-32-Yellow","name":"Maxima Drawstring Short-32-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

    \n

    • Light gray run shorts
    - cotton polyester.
    • Contrast binding.
    • 3\" inseam.
    • Machine wash/dry.

    ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-32-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"maxima-drawstring-short-32-yellow-1939","links":{},"stock":{"item_id":1939,"product_id":1939,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-32-yellow-1939.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1947","_score":1,"_source":{"id":1947,"sku":"WSH03-30-Blue","name":"Gwen Drawstring Bike Short-30-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

    \n

    • Dark heather gray rouched bike shorts.
    • Fitted. Inseam: 2\".
    • Machine wash/dry.

    ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-30-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"gwen-drawstring-bike-short-30-blue-1947","links":{},"stock":{"item_id":1947,"product_id":1947,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-30-blue-1947.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1920","_score":1,"_source":{"id":1920,"sku":"WSH01-31-Red","name":"Fiona Fitness Short-31-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

    \n

    • Black run shorts
    - cotton/spandex.
    • 5” inseam.
    • Machine wash/Line dry.

    ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-31-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"fiona-fitness-short-31-red-1920","links":{},"stock":{"item_id":1920,"product_id":1920,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-31-red-1920.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1931","_score":1,"_source":{"id":1931,"sku":"WSH02-30-Gray","name":"Maxima Drawstring Short-30-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

    \n

    • Light gray run shorts
    - cotton polyester.
    • Contrast binding.
    • 3\" inseam.
    • Machine wash/dry.

    ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-30-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"maxima-drawstring-short-30-gray-1931","links":{},"stock":{"item_id":1931,"product_id":1931,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-30-gray-1931.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1923","_score":1,"_source":{"id":1923,"sku":"WSH01-32-Red","name":"Fiona Fitness Short-32-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

    \n

    • Black run shorts
    - cotton/spandex.
    • 5” inseam.
    • Machine wash/Line dry.

    ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"fiona-fitness-short-32-red-1923","links":{},"stock":{"item_id":1923,"product_id":1923,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-32-red-1923.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1909","_score":1,"_source":{"id":1909,"sku":"WSH01-28-Black","name":"Fiona Fitness Short-28-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

    \n

    • Black run shorts
    - cotton/spandex.
    • 5” inseam.
    • Machine wash/Line dry.

    ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"fiona-fitness-short-28-black-1909","links":{},"stock":{"item_id":1909,"product_id":1909,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-28-black-1909.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1916","_score":1,"_source":{"id":1916,"sku":"WSH01-30-Green","name":"Fiona Fitness Short-30-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

    \n

    • Black run shorts
    - cotton/spandex.
    • 5” inseam.
    • Machine wash/Line dry.

    ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-30-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"fiona-fitness-short-30-green-1916","links":{},"stock":{"item_id":1916,"product_id":1916,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-30-green-1916.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1966","_score":1,"_source":{"id":1966,"sku":"WSH04-31-Black","name":"Artemis Running Short-31-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

    \n

    • Black rouched shorts with mint waist.
    • Soft, lightweight construction.
    • LumaTech™ wicking technology.
    • Semi-fitted.

    ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-31-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"artemis-running-short-31-black-1966","links":{},"stock":{"item_id":1966,"product_id":1966,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-31-black-1966.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1960","_score":1,"_source":{"id":1960,"sku":"WSH04-29-Black","name":"Artemis Running Short-29-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

    \n

    • Black rouched shorts with mint waist.
    • Soft, lightweight construction.
    • LumaTech™ wicking technology.
    • Semi-fitted.

    ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"artemis-running-short-29-black-1960","links":{},"stock":{"item_id":1960,"product_id":1960,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-29-black-1960.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1952","_score":1,"_source":{"id":1952,"sku":"WSH03-31-Orange","name":"Gwen Drawstring Bike Short-31-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

    \n

    • Dark heather gray rouched bike shorts.
    • Fitted. Inseam: 2\".
    • Machine wash/dry.

    ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-31-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"gwen-drawstring-bike-short-31-orange-1952","links":{},"stock":{"item_id":1952,"product_id":1952,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-31-orange-1952.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1953","_score":1,"_source":{"id":1953,"sku":"WSH03-32-Blue","name":"Gwen Drawstring Bike Short-32-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

    \n

    • Dark heather gray rouched bike shorts.
    • Fitted. Inseam: 2\".
    • Machine wash/dry.

    ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"gwen-drawstring-bike-short-32-blue-1953","links":{},"stock":{"item_id":1953,"product_id":1953,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-32-blue-1953.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1969","_score":1,"_source":{"id":1969,"sku":"WSH04-32-Black","name":"Artemis Running Short-32-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

    \n

    • Black rouched shorts with mint waist.
    • Soft, lightweight construction.
    • LumaTech™ wicking technology.
    • Semi-fitted.

    ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"artemis-running-short-32-black-1969","links":{},"stock":{"item_id":1969,"product_id":1969,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-32-black-1969.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1958","_score":1,"_source":{"id":1958,"sku":"WSH04-28-Green","name":"Artemis Running Short-28-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

    \n

    • Black rouched shorts with mint waist.
    • Soft, lightweight construction.
    • LumaTech™ wicking technology.
    • Semi-fitted.

    ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"artemis-running-short-28-green-1958","links":{},"stock":{"item_id":1958,"product_id":1958,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-28-green-1958.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1994","_score":1,"_source":{"id":1994,"sku":"WSH06-29-Purple","name":"Angel Light Running Short-29-Purple","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

    The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

    \n

    • Dark heather gray running shorts.
    • Snug fit.
    • Elastic waistband.
    • Cocona® performance fabric.
    • Machine wash/dry.

    ","image":"/w/s/wsh06-purple_main.jpg","small_image":"/w/s/wsh06-purple_main.jpg","thumbnail":"/w/s/wsh06-purple_main.jpg","color":"57","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"angel-light-running-short-29-purple-1994","links":{},"stock":{"item_id":1994,"product_id":1994,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-29-purple-1994.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1965","_score":1,"_source":{"id":1965,"sku":"WSH04-30-Orange","name":"Artemis Running Short-30-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

    \n

    • Black rouched shorts with mint waist.
    • Soft, lightweight construction.
    • LumaTech™ wicking technology.
    • Semi-fitted.

    ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-30-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"artemis-running-short-30-orange-1965","links":{},"stock":{"item_id":1965,"product_id":1965,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-30-orange-1965.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1998","_score":1,"_source":{"id":1998,"sku":"WSH07-28-Purple","name":"Echo Fit Compression Short-28-Purple","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

    Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

    \n

    • Black compression shorts.
    • High-waisted cut.
    • Compression fit.
    • Inseam: 1.0\".
    • Machine wash/dry.

    ","image":"/w/s/wsh07-purple_main.jpg","small_image":"/w/s/wsh07-purple_main.jpg","thumbnail":"/w/s/wsh07-purple_main.jpg","color":"57","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"echo-fit-compression-short-28-purple-1998","links":{},"stock":{"item_id":1998,"product_id":1998,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-28-purple-1998.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2020","_score":1,"_source":{"id":2020,"sku":"WSH10-29-Orange","name":"Ana Running Short-29-Orange","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":49.200001,"description":"

    Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

    \n

    • Black/pink two-layer shorts.
    • Low-rise elastic waistband.
    • Relaxed fit.
    • Ultra-lightweight fabric.
    • Internal drawstring.
    • Machine wash/dry.

    ","image":"/w/s/wsh10-orange_main.jpg","small_image":"/w/s/wsh10-orange_main.jpg","thumbnail":"/w/s/wsh10-orange_main.jpg","color":"56","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ana-running-short-29-orange-2020","links":{},"stock":{"item_id":2020,"product_id":2020,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-29-orange-2020.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2017","_score":1,"_source":{"id":2017,"sku":"WSH10-28-Orange","name":"Ana Running Short-28-Orange","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":49.200001,"description":"

    Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

    \n

    • Black/pink two-layer shorts.
    • Low-rise elastic waistband.
    • Relaxed fit.
    • Ultra-lightweight fabric.
    • Internal drawstring.
    • Machine wash/dry.

    ","image":"/w/s/wsh10-orange_main.jpg","small_image":"/w/s/wsh10-orange_main.jpg","thumbnail":"/w/s/wsh10-orange_main.jpg","color":"56","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ana-running-short-28-orange-2017","links":{},"stock":{"item_id":2017,"product_id":2017,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-28-orange-2017.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2007","_score":1,"_source":{"id":2007,"sku":"WSH08-32-Purple","name":"Sybil Running Short-32-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

    Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

    \n

    • Blue running shorts with green waist.
    • Drawstring-adjustable waist.
    • 4\" inseam. Machine wash/line dry.

    ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"sybil-running-short-32-purple-2007","links":{},"stock":{"item_id":2007,"product_id":2007,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-32-purple-2007.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2009","_score":1,"_source":{"id":2009,"sku":"WSH09-28-Gray","name":"Mimi All-Purpose Short-28-Gray","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

    You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

    \n

    • Gray/seafoam two-layer shorts.
    • Water-resistant construction.
    • Inner mesh brief for breathable support.
    • 2.0\" inseam.
    • Reflective trim for visibility.

    ","image":"/w/s/wsh09-gray_main.jpg","small_image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","color":"52","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"mimi-all-purpose-short-28-gray-2009","links":{},"stock":{"item_id":2009,"product_id":2009,"stock_id":1,"qty":53,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh09-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh09-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-28-gray-2009.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2019","_score":1,"_source":{"id":2019,"sku":"WSH10-29-Black","name":"Ana Running Short-29-Black","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":49.200001,"description":"

    Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

    \n

    • Black/pink two-layer shorts.
    • Low-rise elastic waistband.
    • Relaxed fit.
    • Ultra-lightweight fabric.
    • Internal drawstring.
    • Machine wash/dry.

    ","image":"/w/s/wsh10-black_main.jpg","small_image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","color":"49","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ana-running-short-29-black-2019","links":{},"stock":{"item_id":2019,"product_id":2019,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-29-black-2019.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2030","_score":1,"_source":{"id":2030,"sku":"WSH12-28-Green","name":"Erika Running Short-28-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

    \n

    • Seafoam pattern running shorts.
    • Elastic waistband.
    • Snug fit.
    • 4'' inseam.
    • 76% premium brushed Nylon / 24% Spandex.

    ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"erika-running-short-28-green-2030","links":{},"stock":{"item_id":2030,"product_id":2030,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-28-green-2030.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2023","_score":1,"_source":{"id":2023,"sku":"WSH11-28-Blue","name":"Ina Compression Short-28-Blue","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

    One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

    \n

    • Royal blue bike shorts.
    • Compression fit.
    • Moisture-wicking.
    • Anti-microbial.
    • Machine wash/dry.

    ","image":"/w/s/wsh11-blue_main.jpg","small_image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","color":"50","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ina-compression-short-28-blue-2023","links":{},"stock":{"item_id":2023,"product_id":2023,"stock_id":1,"qty":34,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-28-blue-2023.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2032","_score":1,"_source":{"id":2032,"sku":"WSH12-28-Red","name":"Erika Running Short-28-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

    \n

    • Seafoam pattern running shorts.
    • Elastic waistband.
    • Snug fit.
    • 4'' inseam.
    • 76% premium brushed Nylon / 24% Spandex.

    ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"erika-running-short-28-red-2032","links":{},"stock":{"item_id":2032,"product_id":2032,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-28-red-2032.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2040","_score":1,"_source":{"id":2040,"sku":"WSH12-31-Purple","name":"Erika Running Short-31-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

    \n

    • Seafoam pattern running shorts.
    • Elastic waistband.
    • Snug fit.
    • 4'' inseam.
    • 76% premium brushed Nylon / 24% Spandex.

    ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-31-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"erika-running-short-31-purple-2040","links":{},"stock":{"item_id":2040,"product_id":2040,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-31-purple-2040.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2044","_score":1,"_source":{"id":2044,"sku":"WSH12-32-Red","name":"Erika Running Short-32-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

    \n

    • Seafoam pattern running shorts.
    • Elastic waistband.
    • Snug fit.
    • 4'' inseam.
    • 76% premium brushed Nylon / 24% Spandex.

    ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"erika-running-short-32-red-2044","links":{},"stock":{"item_id":2044,"product_id":2044,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-32-red-2044.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2042","_score":1,"_source":{"id":2042,"sku":"WSH12-32-Green","name":"Erika Running Short-32-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

    \n

    • Seafoam pattern running shorts.
    • Elastic waistband.
    • Snug fit.
    • 4'' inseam.
    • 76% premium brushed Nylon / 24% Spandex.

    ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"erika-running-short-32-green-2042","links":{},"stock":{"item_id":2042,"product_id":2042,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-32-green-2042.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2033","_score":1,"_source":{"id":2033,"sku":"WSH12-29-Green","name":"Erika Running Short-29-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

    \n

    • Seafoam pattern running shorts.
    • Elastic waistband.
    • Snug fit.
    • 4'' inseam.
    • 76% premium brushed Nylon / 24% Spandex.

    ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"erika-running-short-29-green-2033","links":{},"stock":{"item_id":2033,"product_id":2033,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-29-green-2033.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2008","_score":1,"_source":{"id":2008,"sku":"WSH08","name":"Sybil Running Short","attribute_set_id":10,"price":44,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":44,"description":"

    Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

    \n

    • Blue running shorts with green waist.
    • Drawstring-adjustable waist.
    • 4\" inseam. Machine wash/line dry.

    ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sybil-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,33,36],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"106","pattern":"198","climate":[205,212],"slug":"sybil-running-short-2008","links":{},"stock":{"item_id":2008,"product_id":2008,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH08-28-Purple","id":2003,"status":1,"name":"Sybil Running Short-28-Purple","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","35","2"],"size":"172","color":"57","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","url_key":"sybil-running-short-28-purple","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"WSH08-29-Purple","id":2004,"status":1,"name":"Sybil Running Short-29-Purple","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","35","2"],"size":"173","color":"57","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","url_key":"sybil-running-short-29-purple","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"WSH08-30-Purple","id":2005,"status":1,"name":"Sybil Running Short-30-Purple","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","35","2"],"size":"174","color":"57","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","url_key":"sybil-running-short-30-purple","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"WSH08-31-Purple","id":2006,"status":1,"name":"Sybil Running Short-31-Purple","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","35","2"],"size":"175","color":"57","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","url_key":"sybil-running-short-31-purple","msrp_display_actual_price_type":"0"},{"sku":"WSH08-32-Purple","id":2007,"status":1,"name":"Sybil Running Short-32-Purple","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","35","2"],"size":"176","color":"57","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","url_key":"sybil-running-short-32-purple","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001}],"configurable_options":[{"id":287,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":57,"label":"Purple"}],"product_id":2008,"attribute_code":"color"},{"id":286,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":2008,"attribute_code":"size"}],"color_options":[57],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-2008.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"11","_score":1,"_source":{"id":11,"sku":"24-WB06","name":"Endeavor Daytrip Backpack","attribute_set_id":15,"price":33,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:25","updated_at":"2017-11-06 12:16:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":40.590001,"max_price":40.590001,"max_regular_price":40.590001,"minimal_regular_price":40.590001,"special_price":"33.0000","minimal_price":40.590001,"regular_price":40.590001,"description":"

    With more room than it appears, the Endeavor Daytrip Backpack will hold a whole day's worth of books, binders and gym clothes. The spacious main compartment includes a dedicated laptop sleeve. Two other compartments offer extra storage space.

    \n
      \n
    • Foam-padded adjustable shoulder straps.
    • \n
    • 900D polyester.
    • \n
    • Oversized zippers.
    • \n
    • Locker loop.
    • \n
    ","special_from_date":"2017-11-06 12:16:25","image":"/w/b/wb06-red-0.jpg","small_image":"/w/b/wb06-red-0.jpg","thumbnail":"/w/b/wb06-red-0.jpg","category_ids":[3,7,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"endeavor-daytrip-backpack","tax_class_id":"2","activity":[11,18,20,23],"style_bags":[24,28],"material":[36,37,38],"strap_bags":[61,64,65],"features_bags":[72,75,77,78,79],"erin_recommends":"1","sale":"1","slug":"endeavor-daytrip-backpack-11","links":{},"stock":{"item_id":11,"product_id":11,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb06-red-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null},{"image":"/w/b/wb06-red-0_alt1.jpg","pos":2,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/gerat-3/endeavor-daytrip-backpack-11.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"17","_score":1,"_source":{"id":17,"sku":"24-UG04","name":"Zing Jump Rope","attribute_set_id":11,"price":12,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2017-11-06 12:16:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":14.760001,"max_price":14.760001,"max_regular_price":14.760001,"minimal_regular_price":14.760001,"special_price":null,"minimal_price":14.760001,"regular_price":14.760001,"description":"

    One of the world's simplest and most portable exercise devices, a jump rope enables endless variations and fitness output. The Zing Jump Rope goes anywhere and can be used any time. It is adjustable in length and has contoured foam handles for a great grip.

    \n
      \n
    • Contoured foam handles.\n
    • Adjustable length.\n
    ","image":"/u/g/ug04-bk-0.jpg","small_image":"/u/g/ug04-bk-0.jpg","thumbnail":"/u/g/ug04-bk-0.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zing-jump-rope","tax_class_id":"2","activity":"11","material":[35,44],"gender":[80,81,84],"category_gear":[85,87],"slug":"zing-jump-rope-17","links":{},"stock":{"item_id":17,"product_id":17,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/u/g/ug04-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/zing-jump-rope-17.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"3","_score":1,"_source":{"id":3,"sku":"24-MB03","name":"Crown Summit Backpack","attribute_set_id":15,"price":32,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:22","updated_at":"2018-06-01 21:47:54","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

    The Crown Summit Backpack is equally at home in a gym locker, study cube or a pup tent, so be sure yours is packed with books, a bag lunch, water bottles, yoga block, laptop, or whatever else you want in hand. Rugged enough for day hikes and camping trips, it has two large zippered compartments and padded, adjustable shoulder straps.

    \r\n
      \r\n
    • Top handle.
    • \r\n
    • Grommet holes.
    • \r\n
    • Two-way zippers.
    • \r\n
    • H 20\" x W 14\" x D 13\".
    • \r\n
    • Weight: 2 lbs, 8 oz. Volume: 29 L.
    • \r\n
        \r\n
      ","image":"/m/b/mb03-black-0.jpg","small_image":"/m/b/mb03-black-0.jpg","thumbnail":"/m/b/mb03-black-0.jpg","color":"49","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"crown-summit-backpack","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[11,18,19,20,21,22,23],"style_bags":"24","material":[37,38],"strap_bags":[61,64,65],"features_bags":[72,74,75,77,78],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"crown-summit-backpack-3","links":{},"stock":{"item_id":3,"product_id":3,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/b/mb03-black-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null},{"image":"/m/b/mb03-black-0_alt1.jpg","pos":2,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/gerat-3/crown-summit-backpack-3.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"37","_score":1,"_source":{"id":37,"sku":"24-MG01","name":"Endurance Watch","attribute_set_id":11,"price":49,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

      It's easy to track and monitor your training progress with the Endurance Watch. You'll see standard info like time, date and day of the week, but it also functions for the serious high-mileage athete: lap counter, stopwatch, distance, heart rate, speed/pace, cadence and altitude.

      \n
        \n
      • Digital display.
      • \n
      • LED backlight.
      • \n
      • Strap fits 7\" to 10\".
      • \n
      • 1-year limited warranty.
      • \n
      • Comes with polished metal case.
      • \n
      ","image":"/m/g/mg01-bk-0.jpg","small_image":"/m/g/mg01-bk-0.jpg","thumbnail":"/m/g/mg01-bk-0.jpg","category_ids":[3,6],"options_container":"container2","required_options":"0","has_options":"0","url_key":"endurance-watch","tax_class_id":"2","activity":[9,16],"material":[43,45,48],"gender":"80","category_gear":[86,87,90],"slug":"endurance-watch-37","links":{},"stock":{"item_id":37,"product_id":37,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/g/mg01-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"}],"url_path":"gear/gerat-3/endurance-watch-37.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"23","_score":1,"_source":{"id":23,"sku":"24-UG03","name":"Harmony Lumaflex™ Strength Band Kit ","attribute_set_id":11,"price":22,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

      Forget fancy machines and costly memberships - the Harmony Lumaflex™ Stength Band Kit is all you need for an amazing workout. The kit has everything you need for a range of strengthening and toning exercises.

      \n
        \n
      • Three flex bands.
      • \n
      • Textured, ergonomic grips.
      • \n
      • Adjustable lengths.
      • \n
      • Mesh carry bag included.
      • \n
      ","image":"/u/g/ug03-bk-0.jpg","small_image":"/u/g/ug03-bk-0.jpg","thumbnail":"/u/g/ug03-bk-0.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"harmony-lumaflex-trade-strength-band-kit","tax_class_id":"2","activity":"11","material":[35,44,45],"gender":[80,81,84],"category_gear":"87","slug":"harmony-lumaflex-and-trade-strength-band-kit-23","links":{},"stock":{"item_id":23,"product_id":23,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/u/g/ug03-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/harmony-lumaflex-and-trade-strength-band-kit-23.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"31","_score":1,"_source":{"id":31,"sku":"24-WG083-pink","name":"Sprite Stasis Ball 75 cm","attribute_set_id":12,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

      The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

      \n
        \n
      • 75 cm plastic shell.
      • \n
      • Durable, burst-resistant design.
      • \n
      • Hand pump included.
      • \n
      ","image":"/l/u/luma-stability-ball-pink.jpg","small_image":"/l/u/luma-stability-ball-pink.jpg","thumbnail":"/l/u/luma-stability-ball-pink.jpg","color":"58","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-75-cm-pink","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"93","slug":"sprite-stasis-ball-75-cm-31","links":{},"stock":{"item_id":31,"product_id":31,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball-pink.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-stasis-ball-75-cm-31.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"47","_score":1,"_source":{"id":47,"sku":"240-LV05","name":"LifeLong Fitness IV","attribute_set_id":14,"price":14,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:33","updated_at":"2017-11-06 12:16:33","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":17.220001,"max_price":17.220001,"max_regular_price":17.220001,"minimal_regular_price":17.220001,"special_price":null,"minimal_price":17.220001,"regular_price":17.220001,"description":"

      Luma LifeLong Fitness Series is a world recognized, evidence based exercise program designed specifically for individuals focused on staying active their whole lives. If followed regularly, participants will see improved heart rate and blood pressure, increased mobility, reduced joint pain and overall improvement in functional fitness and health.\n

        \n
      • 10 minute warm up.
      • \n
      • 30 minutes of mild aerobics.
      • \n
      • 20 minutes of strength, stretch and balance.
      • \n
      • Extensive modifications for varying fitness levels.
      • \n
      ","short_description":"

      \nThe instructors and routines featured in LifeLong Fitness IV provide safe options to serve all types of physical conditions and abilities. Range of motion, body awareness and breathing practices are essential tools of yogic self-care, essential for maintaining alertness, health, and dignity over a lifetime. The LifeLong Fitness series acknowledges that as we age, the safety and sustainability of our exercise become as important as pushing our limits.\n

      ","image":"/l/t/lt02.jpg","small_image":"/l/t/lt02.jpg","thumbnail":"/l/t/lt02.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lifelong-fitness-iv","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","tax_class_id":"2","activity":[16,17,5,11],"format":"102","slug":"lifelong-fitness-iv-47","links":{},"stock":{"item_id":47,"product_id":47,"stock_id":1,"qty":null,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/t/lt02.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":9,"name":"Training","slug":"training-9","path":"training/training-9"},{"category_id":10,"name":"Video Download","slug":"video-download-10","path":"training/training-video/video-download-10"}],"url_path":"training/training-9/lifelong-fitness-iv-47.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"50","_score":1,"_source":{"id":50,"sku":"240-LV08","name":"Advanced Pilates & Yoga (Strength)","attribute_set_id":14,"price":18,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:34","updated_at":"2017-11-06 12:16:34","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

      Advanced Pilates & Yoga will help you to increase your flexibility and tone core muscle groups through an invigorating workout for your whole body. The Pilates workout is a thorough strength-conditioning session that boosts flexibility, endurance and posture. The Yoga workout incorporates legacy and new poses into one continuous routine that will leave you feeling exhausted and fulfilled at once.

      \n
        \n
      • Pilates-Yoga fusion.
      • \n
      • Breathing warmup and cooldown.
      • \n
      • Hour-long session.
      • \n
      • High-definition video.
      • \n
          ","short_description":"

          \nNo equipment needed. Advanced Pilates & Yoga (Strength) is a muscle-defining program that employs balance, cardio and flexibility movements with plyometric and body-weight based exercises for an all-around, physically challenging workout. The Pilates elements of this compilation bring gentle resistance principals into the routines, emphasizing safety, technique and range of motion.\n

          ","image":"/l/t/lt05.jpg","small_image":"/l/t/lt05.jpg","thumbnail":"/l/t/lt05.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"advanced-pilates-yoga-strength","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","tax_class_id":"2","activity":[8,16,11],"format":"102","slug":"advanced-pilates-and-yoga-strength-50","links":{},"stock":{"item_id":50,"product_id":50,"stock_id":1,"qty":null,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/t/lt05.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":9,"name":"Training","slug":"training-9","path":"training/training-9"},{"category_id":10,"name":"Video Download","slug":"video-download-10","path":"training/training-video/video-download-10"}],"url_path":"training/training-9/advanced-pilates-and-yoga-strength-50.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"45","_score":1,"_source":{"id":45,"sku":"24-WG080","name":"Sprite Yoga Companion Kit","attribute_set_id":11,"price":0,"status":1,"visibility":4,"type_id":"bundle","created_at":"2017-11-06 12:16:31","updated_at":"2017-11-06 12:16:31","weight":0,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

          A well-rounded yoga workout takes more than a mat. The Sprite Yoga Companion Kit helps stock your studio with the basics you need for a full-range workout. The kit is composed of four best-selling Luma Sprite accessories in one easy bundle: statis ball, foam block, yoga strap, and foam roller. Choose sizes and colors and leave the rest to us. The kit includes:

          \n
            \n
          • Sprite Statis Ball\n
          • Sprite Foam Yoga Brick\n
          • Sprite Yoga Strap\n
          • Sprite Foam Roller\n
          ","image":"/l/u/luma-yoga-kit-2.jpg","small_image":"/l/u/luma-yoga-kit-2.jpg","thumbnail":"/l/u/luma-yoga-kit-2.jpg","category_ids":[3,5],"options_container":"container2","required_options":"1","has_options":"1","url_key":"sprite-yoga-companion-kit","price_type":"0","sku_type":"0","weight_type":"0","price_view":"0","shipment_type":"0","tax_class_id":"2","activity":[8,11],"gender":[80,81,84],"category_gear":"87","slug":"sprite-yoga-companion-kit-45","links":{},"stock":{"item_id":45,"product_id":45,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-yoga-kit-2.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"bundle_options":[{"option_id":1,"title":"Sprite Stasis Ball","required":true,"type":"radio","position":1,"sku":"24-WG080","product_links":[{"id":"1","sku":"24-WG081-blue","option_id":1,"qty":1,"position":1,"is_default":true,"price":null,"price_type":null,"can_change_quantity":1},{"id":"2","sku":"24-WG082-blue","option_id":1,"qty":1,"position":2,"is_default":false,"price":null,"price_type":null,"can_change_quantity":1},{"id":"3","sku":"24-WG083-blue","option_id":1,"qty":1,"position":3,"is_default":false,"price":null,"price_type":null,"can_change_quantity":1}]},{"option_id":2,"title":"Sprite Foam Yoga Brick","required":true,"type":"radio","position":2,"sku":"24-WG080","product_links":[{"id":"4","sku":"24-WG084","option_id":2,"qty":1,"position":1,"is_default":true,"price":null,"price_type":null,"can_change_quantity":1}]},{"option_id":3,"title":"Sprite Yoga Strap","required":true,"type":"radio","position":3,"sku":"24-WG080","product_links":[{"id":"5","sku":"24-WG085","option_id":3,"qty":1,"position":1,"is_default":true,"price":null,"price_type":null,"can_change_quantity":1},{"id":"6","sku":"24-WG086","option_id":3,"qty":1,"position":2,"is_default":false,"price":null,"price_type":null,"can_change_quantity":1},{"id":"7","sku":"24-WG087","option_id":3,"qty":1,"position":3,"is_default":false,"price":null,"price_type":null,"can_change_quantity":1}]},{"option_id":4,"title":"Sprite Foam Roller","required":true,"type":"radio","position":4,"sku":"24-WG080","product_links":[{"id":"8","sku":"24-WG088","option_id":4,"qty":1,"position":1,"is_default":true,"price":null,"price_type":null,"can_change_quantity":1}]}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-yoga-companion-kit-45.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"83","_score":1,"_source":{"id":83,"sku":"MH02","name":"Teton Pullover Hoodie","attribute_set_id":9,"price":70,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":70,"description":"

          This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

          \n

          • Black pullover hoodie.
          • Soft, brushed interior.
          • Front hand pockets.
          • Machine wash/dry.

          ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"teton-pullover-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,145,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","pattern":"197","climate":[202,204,205,208,210],"slug":"teton-pullover-hoodie-83","links":{},"stock":{"item_id":83,"product_id":83,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH02-XS-Black","id":68,"status":1,"name":"Teton Pullover Hoodie-XS-Black","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"49","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","url_key":"teton-pullover-hoodie-xs-black","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-XS-Purple","id":69,"status":1,"name":"Teton Pullover Hoodie-XS-Purple","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"57","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","url_key":"teton-pullover-hoodie-xs-purple","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-XS-Red","id":70,"status":1,"name":"Teton Pullover Hoodie-XS-Red","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","url_key":"teton-pullover-hoodie-xs-red","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-S-Black","id":71,"status":1,"name":"Teton Pullover Hoodie-S-Black","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"49","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","url_key":"teton-pullover-hoodie-s-black","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-S-Purple","id":72,"status":1,"name":"Teton Pullover Hoodie-S-Purple","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"57","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","url_key":"teton-pullover-hoodie-s-purple","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-S-Red","id":73,"status":1,"name":"Teton Pullover Hoodie-S-Red","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","url_key":"teton-pullover-hoodie-s-red","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-M-Black","id":74,"status":1,"name":"Teton Pullover Hoodie-M-Black","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"49","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","url_key":"teton-pullover-hoodie-m-black","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-M-Purple","id":75,"status":1,"name":"Teton Pullover Hoodie-M-Purple","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"57","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","url_key":"teton-pullover-hoodie-m-purple","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-M-Red","id":76,"status":1,"name":"Teton Pullover Hoodie-M-Red","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","url_key":"teton-pullover-hoodie-m-red","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-L-Black","id":77,"status":1,"name":"Teton Pullover Hoodie-L-Black","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"49","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","url_key":"teton-pullover-hoodie-l-black","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-L-Purple","id":78,"status":1,"name":"Teton Pullover Hoodie-L-Purple","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"57","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","url_key":"teton-pullover-hoodie-l-purple","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-L-Red","id":79,"status":1,"name":"Teton Pullover Hoodie-L-Red","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","url_key":"teton-pullover-hoodie-l-red","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-XL-Black","id":80,"status":1,"name":"Teton Pullover Hoodie-XL-Black","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"49","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","url_key":"teton-pullover-hoodie-xl-black","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-XL-Purple","id":81,"status":1,"name":"Teton Pullover Hoodie-XL-Purple","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"57","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","url_key":"teton-pullover-hoodie-xl-purple","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-XL-Red","id":82,"status":1,"name":"Teton Pullover Hoodie-XL-Red","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","url_key":"teton-pullover-hoodie-xl-red","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001}],"configurable_options":[{"id":5,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":83,"attribute_code":"color"},{"id":4,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":83,"attribute_code":"size"}],"color_options":[49,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-83.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"61","_score":1,"_source":{"id":61,"sku":"MH01-L-Black","name":"Chaz Kangeroo Hoodie-L-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

          Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

          \n

          • Two-tone gray heather hoodie.
          • Drawstring-adjustable hood.
          • Machine wash/dry.

          ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chaz-kangeroo-hoodie-l-black-61","links":{},"stock":{"item_id":61,"product_id":61,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-l-black-61.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"69","_score":1,"_source":{"id":69,"sku":"MH02-XS-Purple","name":"Teton Pullover Hoodie-XS-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

          This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

          \n

          • Black pullover hoodie.
          • Soft, brushed interior.
          • Front hand pockets.
          • Machine wash/dry.

          ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"teton-pullover-hoodie-xs-purple-69","links":{},"stock":{"item_id":69,"product_id":69,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xs-purple-69.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"53","_score":1,"_source":{"id":53,"sku":"MH01-XS-Gray","name":"Chaz Kangeroo Hoodie-XS-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

          Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

          \n

          • Two-tone gray heather hoodie.
          • Drawstring-adjustable hood.
          • Machine wash/dry.

          ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chaz-kangeroo-hoodie-xs-gray-53","links":{},"stock":{"item_id":53,"product_id":53,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xs-gray-53.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"58","_score":1,"_source":{"id":58,"sku":"MH01-M-Black","name":"Chaz Kangeroo Hoodie-M-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

          Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

          \n

          • Two-tone gray heather hoodie.
          • Drawstring-adjustable hood.
          • Machine wash/dry.

          ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chaz-kangeroo-hoodie-m-black-58","links":{},"stock":{"item_id":58,"product_id":58,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-m-black-58.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"75","_score":1,"_source":{"id":75,"sku":"MH02-M-Purple","name":"Teton Pullover Hoodie-M-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

          This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

          \n

          • Black pullover hoodie.
          • Soft, brushed interior.
          • Front hand pockets.
          • Machine wash/dry.

          ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"teton-pullover-hoodie-m-purple-75","links":{},"stock":{"item_id":75,"product_id":75,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-m-purple-75.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"56","_score":1,"_source":{"id":56,"sku":"MH01-S-Gray","name":"Chaz Kangeroo Hoodie-S-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

          Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

          \n

          • Two-tone gray heather hoodie.
          • Drawstring-adjustable hood.
          • Machine wash/dry.

          ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chaz-kangeroo-hoodie-s-gray-56","links":{},"stock":{"item_id":56,"product_id":56,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-s-gray-56.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"63","_score":1,"_source":{"id":63,"sku":"MH01-L-Orange","name":"Chaz Kangeroo Hoodie-L-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

          Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

          \n

          • Two-tone gray heather hoodie.
          • Drawstring-adjustable hood.
          • Machine wash/dry.

          ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chaz-kangeroo-hoodie-l-orange-63","links":{},"stock":{"item_id":63,"product_id":63,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-l-orange-63.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"68","_score":1,"_source":{"id":68,"sku":"MH02-XS-Black","name":"Teton Pullover Hoodie-XS-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

          This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

          \n

          • Black pullover hoodie.
          • Soft, brushed interior.
          • Front hand pockets.
          • Machine wash/dry.

          ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"teton-pullover-hoodie-xs-black-68","links":{},"stock":{"item_id":68,"product_id":68,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xs-black-68.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"64","_score":1,"_source":{"id":64,"sku":"MH01-XL-Black","name":"Chaz Kangeroo Hoodie-XL-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

          Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

          \n

          • Two-tone gray heather hoodie.
          • Drawstring-adjustable hood.
          • Machine wash/dry.

          ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chaz-kangeroo-hoodie-xl-black-64","links":{},"stock":{"item_id":64,"product_id":64,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xl-black-64.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"74","_score":1,"_source":{"id":74,"sku":"MH02-M-Black","name":"Teton Pullover Hoodie-M-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

          This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

          \n

          • Black pullover hoodie.
          • Soft, brushed interior.
          • Front hand pockets.
          • Machine wash/dry.

          ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"teton-pullover-hoodie-m-black-74","links":{},"stock":{"item_id":74,"product_id":74,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-m-black-74.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"76","_score":1,"_source":{"id":76,"sku":"MH02-M-Red","name":"Teton Pullover Hoodie-M-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

          This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

          \n

          • Black pullover hoodie.
          • Soft, brushed interior.
          • Front hand pockets.
          • Machine wash/dry.

          ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"teton-pullover-hoodie-m-red-76","links":{},"stock":{"item_id":76,"product_id":76,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-m-red-76.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"90","_score":1,"_source":{"id":90,"sku":"MH03-M-Black","name":"Bruno Compete Hoodie-M-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

          Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

          \n

          • Full zip black hoodie pullover.
          • Adjustable drawstring hood.
          • Ribbed cuffs/waistband.
          • Kangaroo pocket.
          • Machine wash/dry.

          ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bruno-compete-hoodie-m-black-90","links":{},"stock":{"item_id":90,"product_id":90,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-m-black-90.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"91","_score":1,"_source":{"id":91,"sku":"MH03-M-Blue","name":"Bruno Compete Hoodie-M-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

          Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

          \n

          • Full zip black hoodie pullover.
          • Adjustable drawstring hood.
          • Ribbed cuffs/waistband.
          • Kangaroo pocket.
          • Machine wash/dry.

          ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bruno-compete-hoodie-m-blue-91","links":{},"stock":{"item_id":91,"product_id":91,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-m-blue-91.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"37","_score":1,"_source":{"id":37,"parent_id":2,"name":"Sale","is_active":false,"position":6,"level":2,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2018-05-27 14:04:10","path":"1/2/37","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"sale-37","url_path":"sale/sale-37","slug":"sale-37","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"11","_score":1,"_source":{"id":11,"parent_id":2,"name":"Herren","is_active":true,"position":3,"level":2,"product_count":0,"children_data":[{"id":12,"parent_id":11,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"id":14,"parent_id":12,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":176,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:10:23","path":"1/2/11/12/14","available_sort_by":[],"include_in_menu":true,"description":"

          Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum dui sapien, bibendum ac luctus sed, lobortis id lacus. Nulla nisi augue, accumsan id sapien maximus, hendrerit vehicula elit.

          ","display_mode":"PRODUCTS","is_anchor":"1","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"jackets-14","url_path":"men/tops-men/jackets-men/jackets-14","slug":"jackets-14"},{"id":15,"parent_id":12,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":208,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/15","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-15","url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","slug":"hoodies-and-sweatshirts-15"},{"id":16,"parent_id":12,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/16","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-16","url_path":"men/tops-men/tees-men/tees-16","slug":"tees-16"},{"id":17,"parent_id":12,"name":"Tanks","is_active":true,"position":4,"level":4,"product_count":102,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/17","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tanks-17","url_path":"men/tops-men/tanks-men/tanks-17","slug":"tanks-17"}],"children":"14,15,16,17","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"4","url_key":"tops-12","url_path":"men/tops-men/tops-12","slug":"tops-12"},{"id":13,"parent_id":11,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"id":18,"parent_id":13,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":156,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/18","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-18","url_path":"men/bottoms-men/pants-men/pants-18","slug":"pants-18"},{"id":19,"parent_id":13,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":148,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/19","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-19","url_path":"men/bottoms-men/shorts-men/shorts-19","slug":"shorts-19"}],"children":"18,19","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-13","url_path":"men/bottoms-men/bottoms-13","slug":"bottoms-13"}],"children":"12,13","created_at":"2017-11-06 12:16:39","updated_at":"2018-05-27 14:06:07","path":"1/2/11","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"8","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"herren-11","url_path":"men/herren-11","slug":"herren-11","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"3","_score":1,"_source":{"id":3,"parent_id":2,"name":"Gerät","is_active":true,"position":4,"level":2,"product_count":46,"children_data":[{"id":4,"parent_id":3,"name":"Bags","is_active":true,"position":1,"level":3,"product_count":14,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/4","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bags-4","url_path":"gear/bags/bags-4","slug":"bags-4"},{"id":5,"parent_id":3,"name":"Fitness Equipment","is_active":true,"position":2,"level":3,"product_count":23,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/5","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"fitness-equipment-5","url_path":"gear/fitness-equipment/fitness-equipment-5","slug":"fitness-equipment-5"},{"id":6,"parent_id":3,"name":"Watches","is_active":true,"position":3,"level":3,"product_count":9,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/6","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"watches-6","url_path":"gear/watches/watches-6","slug":"watches-6"}],"children":"4,5,6","created_at":"2017-11-06 12:16:19","updated_at":"2018-05-27 14:06:53","path":"1/2/3","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"3","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"gerat-3","url_path":"gear/gerat-3","slug":"gerat-3","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"31","_score":1,"_source":{"id":31,"parent_id":29,"name":"Men Sale","is_active":true,"position":2,"level":3,"product_count":39,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/31","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"men-sale-31","url_path":"promotions/men-sale/men-sale-31","slug":"men-sale-31","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"75","_score":1,"_source":{"is_wysiwyg_enabled":true,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"1","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":75,"attribute_code":"description","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Description","frontend_labels":null,"backend_type":"text","is_unique":"0","validation_rules":[],"id":75,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"76","_score":1,"_source":{"is_wysiwyg_enabled":true,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"1","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":76,"attribute_code":"short_description","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Short Description","frontend_labels":null,"backend_type":"text","is_unique":"0","validation_rules":[],"id":76,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"74","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"1","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":74,"attribute_code":"sku","frontend_input":"text","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"SKU","frontend_labels":null,"backend_type":"static","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Sku","is_unique":"1","frontend_class":"validate-length maximum-length-64","validation_rules":[],"id":74,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"83","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple"],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"1","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":83,"attribute_code":"manufacturer","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""}],"is_user_defined":true,"default_frontend_label":"Manufacturer","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","is_unique":"0","validation_rules":[],"id":83,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"90","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":90,"attribute_code":"media_gallery","frontend_input":"gallery","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Media Gallery","frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":90,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"91","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":91,"attribute_code":"old_id","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"int","is_unique":"0","validation_rules":[],"id":91,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"102","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":102,"attribute_code":"custom_design_to","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Active To","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime","is_unique":"0","validation_rules":[],"id":102,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"122","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","downloadable","bundle","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":122,"attribute_code":"msrp_display_actual_price_type","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Use config","value":"0"},{"label":"On Gesture","value":"1"},{"label":"In Cart","value":"2"},{"label":"Before Order Confirmation","value":"3"}],"is_user_defined":false,"default_frontend_label":"Display Actual Price","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Boolean","source_model":"Magento\\Msrp\\Model\\Product\\Attribute\\Source\\Type\\Price","default_value":"0","is_unique":"0","validation_rules":[],"id":122,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"133","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":133,"attribute_code":"swatch_image","frontend_input":"media_image","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Swatch","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":133,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"141","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":141,"attribute_code":"category_gear","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Cardio","value":"85"},{"label":"Electronic","value":"86"},{"label":"Exercise","value":"87"},{"label":"Fashion","value":"88"},{"label":"Hydration","value":"89"},{"label":"Timepiece","value":"90"}],"is_user_defined":true,"default_frontend_label":"Category Gear","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":141,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"148","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":148,"attribute_code":"format","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Download","value":"102"},{"label":"DVD","value":"103"}],"is_user_defined":true,"default_frontend_label":"Format","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":148,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"152","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":152,"attribute_code":"collar","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"N/A","value":"181"},{"label":"? zip","value":"182"},{"label":"Boat Neck","value":"183"},{"label":"Crew","value":"184"},{"label":"Full zip","value":"185"},{"label":"V-neck","value":"186"},{"label":"Ballet","value":"187"},{"label":"Scoop","value":"188"},{"label":"High Collar","value":"189"},{"label":"Stand Collar","value":"190"},{"label":"Roll Neck","value":"191"},{"label":"Square Neck","value":"192"}],"is_user_defined":true,"default_frontend_label":"Collar","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":152,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"151","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":151,"attribute_code":"sleeve","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Sleeve","value":"161"},{"label":"Long-Sleeve","value":"162"},{"label":"Short-Sleeve","value":"163"},{"label":"Sleeveless","value":"164"},{"label":"Tank","value":"165"},{"label":"Strap","value":"166"}],"is_user_defined":true,"default_frontend_label":"Sleeve","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":151,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"153","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":153,"attribute_code":"pattern","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Color-Blocked","value":"193"},{"label":"Checked","value":"194"},{"label":"Color-Blocked","value":"195"},{"label":"Graphic Print","value":"196"},{"label":"Solid","value":"197"},{"label":"Solid-Highlight","value":"198"},{"label":"Striped","value":"199"},{"label":"Camo","value":"200"},{"label":"Geometric","value":"201"}],"is_user_defined":true,"default_frontend_label":"Pattern","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":153,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"attribute","_id":"154","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":154,"attribute_code":"climate","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"All-Weather","value":"202"},{"label":"Cold","value":"203"},{"label":"Cool","value":"204"},{"label":"Indoor","value":"205"},{"label":"Mild","value":"206"},{"label":"Rainy","value":"207"},{"label":"Spring","value":"208"},{"label":"Warm","value":"209"},{"label":"Windy","value":"210"},{"label":"Wintry","value":"211"},{"label":"Hot","value":"212"}],"is_user_defined":true,"default_frontend_label":"Climate","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":154,"tsk":1556376587779}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"cms_block","_id":"3","_score":1,"_source":{"store_id":[0],"id":3,"identifier":"sale-left-menu-block","title":"Sale Left Menu Block","content":"
          Women's Deals\n\n\nMens's Deals\n\n\nGear Deals\n\n
          ","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556376570938}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"cms_block","_id":"11","_score":1,"_source":{"store_id":[0],"id":11,"identifier":"gear-block","title":"Gear Block","content":"\n
          \n

          Hot Sellers

          \n

          Favorites from Luma shoppers

          \n
          \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556376570938}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"cms_block","_id":"17","_score":1,"_source":{"store_id":[0],"id":17,"identifier":"giftcard-block","title":"Giftcard Block","content":"","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556376570938}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"cms_page","_id":"3","_score":1,"_source":{"store_id":[0],"id":3,"identifier":"enable-cookies","title":"Enable Cookies","page_layout":"1column","content_heading":"What are Cookies?","content":"
          \r\n

          \"Cookies\" are little pieces of data we send when you visit our store. Cookies help us get to know you better and personalize your experience. Plus they help protect you and other shoppers from fraud.

          \r\n

          Set your browser to accept cookies so you can buy items, save items, and receive customized recommendations. Here’s how:

          \r\n\r\n
          ","creation_time":"2017-11-03 08:34:38","update_time":"2017-11-03 08:34:38","sort_order":"0","active":true,"type":"cms_page","tsk":1556376573724}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"23","_score":1,"_source":{"id":23,"parent_id":21,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":186,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/23","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"jackets-23","url_path":"women/tops-women/jackets-women/jackets-23","slug":"jackets-23","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"category","_id":"17","_score":1,"_source":{"id":17,"parent_id":12,"name":"Tanks","is_active":true,"position":4,"level":4,"product_count":102,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/17","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tanks-17","url_path":"men/tops-men/tanks-men/tanks-17","slug":"tanks-17","tsk":1556376579186}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"205","_score":1,"_source":{"id":205,"sku":"MH10-L-Black","name":"Mach Street Sweatshirt -L-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

          From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

          \n

          • Navy heather crewneck sweatshirt.
          • LumaTech™ moisture-wicking fabric.
          • Antimicrobial, odor-resistant.
          • Zip hand pockets.
          • Chafe-resistant flatlock seams.
          • Rib-knit cuffs and hem.

          ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mach-street-sweatshirt-l-black-205","links":{},"stock":{"item_id":205,"product_id":205,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-l-black-205.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"212","_score":1,"_source":{"id":212,"sku":"MH11-XS-Orange","name":"Grayson Crewneck Sweatshirt -XS-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

          The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

          \n

          • Cream crewneck sweatshirt with black accents.
          • 80% cotton/20% polyester fleece.
          • Patterned knit hood lining.
          • Knit cuffs and waist.
          • Pouch pocket.
          • Curl edged seam detail

          ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"grayson-crewneck-sweatshirt-xs-orange-212","links":{},"stock":{"item_id":212,"product_id":212,"stock_id":1,"qty":18,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xs-orange-212.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"215","_score":1,"_source":{"id":215,"sku":"MH11-S-Orange","name":"Grayson Crewneck Sweatshirt -S-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

          The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

          \n

          • Cream crewneck sweatshirt with black accents.
          • 80% cotton/20% polyester fleece.
          • Patterned knit hood lining.
          • Knit cuffs and waist.
          • Pouch pocket.
          • Curl edged seam detail

          ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"grayson-crewneck-sweatshirt-s-orange-215","links":{},"stock":{"item_id":215,"product_id":215,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-s-orange-215.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"217","_score":1,"_source":{"id":217,"sku":"MH11-S-White","name":"Grayson Crewneck Sweatshirt -S-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

          The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

          \n

          • Cream crewneck sweatshirt with black accents.
          • 80% cotton/20% polyester fleece.
          • Patterned knit hood lining.
          • Knit cuffs and waist.
          • Pouch pocket.
          • Curl edged seam detail

          ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"grayson-crewneck-sweatshirt-s-white-217","links":{},"stock":{"item_id":217,"product_id":217,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-s-white-217.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"230","_score":1,"_source":{"id":230,"sku":"MH12-XS-Red","name":"Ajax Full-Zip Sweatshirt -XS-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

          \n

          • Mint striped full zip hoodie.
          • 100% bonded polyester fleece.
          • Pouch pocket.
          • Rib cuffs and hem.
          • Machine washable.

          ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ajax-full-zip-sweatshirt-xs-red-230","links":{},"stock":{"item_id":230,"product_id":230,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xs-red-230.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"218","_score":1,"_source":{"id":218,"sku":"MH11-M-Orange","name":"Grayson Crewneck Sweatshirt -M-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

          The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

          \n

          • Cream crewneck sweatshirt with black accents.
          • 80% cotton/20% polyester fleece.
          • Patterned knit hood lining.
          • Knit cuffs and waist.
          • Pouch pocket.
          • Curl edged seam detail

          ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"grayson-crewneck-sweatshirt-m-orange-218","links":{},"stock":{"item_id":218,"product_id":218,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-m-orange-218.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"241","_score":1,"_source":{"id":241,"sku":"MH12-XL-Green","name":"Ajax Full-Zip Sweatshirt -XL-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

          \n

          • Mint striped full zip hoodie.
          • 100% bonded polyester fleece.
          • Pouch pocket.
          • Rib cuffs and hem.
          • Machine washable.

          ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ajax-full-zip-sweatshirt-xl-green-241","links":{},"stock":{"item_id":241,"product_id":241,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xl-green-241.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"228","_score":1,"_source":{"id":228,"sku":"MH12-XS-Blue","name":"Ajax Full-Zip Sweatshirt -XS-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

          \n

          • Mint striped full zip hoodie.
          • 100% bonded polyester fleece.
          • Pouch pocket.
          • Rib cuffs and hem.
          • Machine washable.

          ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ajax-full-zip-sweatshirt-xs-blue-228","links":{},"stock":{"item_id":228,"product_id":228,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xs-blue-228.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"237","_score":1,"_source":{"id":237,"sku":"MH12-L-Blue","name":"Ajax Full-Zip Sweatshirt -L-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

          \n

          • Mint striped full zip hoodie.
          • 100% bonded polyester fleece.
          • Pouch pocket.
          • Rib cuffs and hem.
          • Machine washable.

          ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ajax-full-zip-sweatshirt-l-blue-237","links":{},"stock":{"item_id":237,"product_id":237,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-l-blue-237.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"234","_score":1,"_source":{"id":234,"sku":"MH12-M-Blue","name":"Ajax Full-Zip Sweatshirt -M-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

          \n

          • Mint striped full zip hoodie.
          • 100% bonded polyester fleece.
          • Pouch pocket.
          • Rib cuffs and hem.
          • Machine washable.

          ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ajax-full-zip-sweatshirt-m-blue-234","links":{},"stock":{"item_id":234,"product_id":234,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-m-blue-234.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"247","_score":1,"_source":{"id":247,"sku":"MH13-S-Blue","name":"Marco Lightweight Active Hoodie-S-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

          For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

          \n

          • Light blue heather full zip hoodie.
          • Fitted flatlock seams.
          • Matching lining and drawstring.
          • Machine wash/dry.

          ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"marco-lightweight-active-hoodie-s-blue-247","links":{},"stock":{"item_id":247,"product_id":247,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-s-blue-247.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"195","_score":1,"_source":{"id":195,"sku":"MH09","name":"Abominable Hoodie","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":69,"description":"

          It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

          \n

          • Blue heather hoodie.
          • Relaxed fit.
          • Moisture-wicking.
          • Machine wash/dry.

          ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"abominable-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,159,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","pattern":"197","climate":[208,210],"slug":"abominable-hoodie-195","links":{},"stock":{"item_id":195,"product_id":195,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH09-XS-Blue","id":180,"status":1,"name":"Abominable Hoodie-XS-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"50","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","url_key":"abominable-hoodie-xs-blue","special_price":null,"special_from_date":"2017-11-15 00:00:00","special_to_date":"2017-12-11 00:00:00","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-XS-Green","id":181,"status":1,"name":"Abominable Hoodie-XS-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"53","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","url_key":"abominable-hoodie-xs-green","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-XS-Red","id":182,"status":1,"name":"Abominable Hoodie-XS-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","url_key":"abominable-hoodie-xs-red","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-S-Blue","id":183,"status":1,"name":"Abominable Hoodie-S-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"50","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","url_key":"abominable-hoodie-s-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-S-Green","id":184,"status":1,"name":"Abominable Hoodie-S-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"53","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","url_key":"abominable-hoodie-s-green","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-S-Red","id":185,"status":1,"name":"Abominable Hoodie-S-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","url_key":"abominable-hoodie-s-red","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-M-Blue","id":186,"status":1,"name":"Abominable Hoodie-M-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"50","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","url_key":"abominable-hoodie-m-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-M-Green","id":187,"status":1,"name":"Abominable Hoodie-M-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"53","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","url_key":"abominable-hoodie-m-green","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-M-Red","id":188,"status":1,"name":"Abominable Hoodie-M-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","url_key":"abominable-hoodie-m-red","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-L-Blue","id":189,"status":1,"name":"Abominable Hoodie-L-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"50","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","url_key":"abominable-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-L-Green","id":190,"status":1,"name":"Abominable Hoodie-L-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"53","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","url_key":"abominable-hoodie-l-green","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-L-Red","id":191,"status":1,"name":"Abominable Hoodie-L-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","url_key":"abominable-hoodie-l-red","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-XL-Blue","id":192,"status":1,"name":"Abominable Hoodie-XL-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"50","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","url_key":"abominable-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-XL-Green","id":193,"status":1,"name":"Abominable Hoodie-XL-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"53","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","url_key":"abominable-hoodie-xl-green","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-XL-Red","id":194,"status":1,"name":"Abominable Hoodie-XL-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","url_key":"abominable-hoodie-xl-red","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001}],"configurable_options":[{"id":19,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":195,"attribute_code":"color"},{"id":18,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":195,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-195.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"154","_score":1,"_source":{"id":154,"sku":"MH07-M-Black","name":"Hero Hoodie-M-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

          Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

          \n

          • Full-zip gray and black hoodie.
          • Ribbed hem.
          • Standard fit.
          • Drawcord hood cinch.
          • Water-resistant coating.

          ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hero-hoodie-m-black-154","links":{},"stock":{"item_id":154,"product_id":154,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-m-black-154.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"156","_score":1,"_source":{"id":156,"sku":"MH07-M-Green","name":"Hero Hoodie-M-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

          Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

          \n

          • Full-zip gray and black hoodie.
          • Ribbed hem.
          • Standard fit.
          • Drawcord hood cinch.
          • Water-resistant coating.

          ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hero-hoodie-m-green-156","links":{},"stock":{"item_id":156,"product_id":156,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-m-green-156.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"165","_score":1,"_source":{"id":165,"sku":"MH08-XS-Purple","name":"Oslo Trek Hoodie-XS-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

          Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

          \n

          • Brown hoodie with black detail.
          • Pullover.
          • Adjustable drawstring hood.
          • Ribbed cuffs/waistband.
          • Machine wash/dry.

          ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"oslo-trek-hoodie-xs-purple-165","links":{},"stock":{"item_id":165,"product_id":165,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xs-purple-165.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"152","_score":1,"_source":{"id":152,"sku":"MH07-S-Gray","name":"Hero Hoodie-S-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

          Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

          \n

          • Full-zip gray and black hoodie.
          • Ribbed hem.
          • Standard fit.
          • Drawcord hood cinch.
          • Water-resistant coating.

          ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hero-hoodie-s-gray-152","links":{},"stock":{"item_id":152,"product_id":152,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-s-gray-152.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"174","_score":1,"_source":{"id":174,"sku":"MH08-L-Purple","name":"Oslo Trek Hoodie-L-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

          Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

          \n

          • Brown hoodie with black detail.
          • Pullover.
          • Adjustable drawstring hood.
          • Ribbed cuffs/waistband.
          • Machine wash/dry.

          ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"oslo-trek-hoodie-l-purple-174","links":{},"stock":{"item_id":174,"product_id":174,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-l-purple-174.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"173","_score":1,"_source":{"id":173,"sku":"MH08-L-Brown","name":"Oslo Trek Hoodie-L-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

          Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

          \n

          • Brown hoodie with black detail.
          • Pullover.
          • Adjustable drawstring hood.
          • Ribbed cuffs/waistband.
          • Machine wash/dry.

          ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-l-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"oslo-trek-hoodie-l-brown-173","links":{},"stock":{"item_id":173,"product_id":173,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-l-brown-173.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"167","_score":1,"_source":{"id":167,"sku":"MH08-S-Brown","name":"Oslo Trek Hoodie-S-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

          Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

          \n

          • Brown hoodie with black detail.
          • Pullover.
          • Adjustable drawstring hood.
          • Ribbed cuffs/waistband.
          • Machine wash/dry.

          ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-s-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"oslo-trek-hoodie-s-brown-167","links":{},"stock":{"item_id":167,"product_id":167,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-s-brown-167.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"182","_score":1,"_source":{"id":182,"sku":"MH09-XS-Red","name":"Abominable Hoodie-XS-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

          \n

          • Blue heather hoodie.
          • Relaxed fit.
          • Moisture-wicking.
          • Machine wash/dry.

          ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"abominable-hoodie-xs-red-182","links":{},"stock":{"item_id":182,"product_id":182,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xs-red-182.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"193","_score":1,"_source":{"id":193,"sku":"MH09-XL-Green","name":"Abominable Hoodie-XL-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

          \n

          • Blue heather hoodie.
          • Relaxed fit.
          • Moisture-wicking.
          • Machine wash/dry.

          ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"abominable-hoodie-xl-green-193","links":{},"stock":{"item_id":193,"product_id":193,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xl-green-193.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"186","_score":1,"_source":{"id":186,"sku":"MH09-M-Blue","name":"Abominable Hoodie-M-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

          \n

          • Blue heather hoodie.
          • Relaxed fit.
          • Moisture-wicking.
          • Machine wash/dry.

          ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"abominable-hoodie-m-blue-186","links":{},"stock":{"item_id":186,"product_id":186,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-m-blue-186.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"184","_score":1,"_source":{"id":184,"sku":"MH09-S-Green","name":"Abominable Hoodie-S-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

          \n

          • Blue heather hoodie.
          • Relaxed fit.
          • Moisture-wicking.
          • Machine wash/dry.

          ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"abominable-hoodie-s-green-184","links":{},"stock":{"item_id":184,"product_id":184,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-s-green-184.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"177","_score":1,"_source":{"id":177,"sku":"MH08-XL-Purple","name":"Oslo Trek Hoodie-XL-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

          Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

          \n

          • Brown hoodie with black detail.
          • Pullover.
          • Adjustable drawstring hood.
          • Ribbed cuffs/waistband.
          • Machine wash/dry.

          ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"oslo-trek-hoodie-xl-purple-177","links":{},"stock":{"item_id":177,"product_id":177,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xl-purple-177.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"196","_score":1,"_source":{"id":196,"sku":"MH10-XS-Black","name":"Mach Street Sweatshirt -XS-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

          From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

          \n

          • Navy heather crewneck sweatshirt.
          • LumaTech™ moisture-wicking fabric.
          • Antimicrobial, odor-resistant.
          • Zip hand pockets.
          • Chafe-resistant flatlock seams.
          • Rib-knit cuffs and hem.

          ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mach-street-sweatshirt-xs-black-196","links":{},"stock":{"item_id":196,"product_id":196,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xs-black-196.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"192","_score":1,"_source":{"id":192,"sku":"MH09-XL-Blue","name":"Abominable Hoodie-XL-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

          \n

          • Blue heather hoodie.
          • Relaxed fit.
          • Moisture-wicking.
          • Machine wash/dry.

          ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"abominable-hoodie-xl-blue-192","links":{},"stock":{"item_id":192,"product_id":192,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xl-blue-192.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"171","_score":1,"_source":{"id":171,"sku":"MH08-M-Purple","name":"Oslo Trek Hoodie-M-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

          Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

          \n

          • Brown hoodie with black detail.
          • Pullover.
          • Adjustable drawstring hood.
          • Ribbed cuffs/waistband.
          • Machine wash/dry.

          ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"oslo-trek-hoodie-m-purple-171","links":{},"stock":{"item_id":171,"product_id":171,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-m-purple-171.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"194","_score":1,"_source":{"id":194,"sku":"MH09-XL-Red","name":"Abominable Hoodie-XL-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

          \n

          • Blue heather hoodie.
          • Relaxed fit.
          • Moisture-wicking.
          • Machine wash/dry.

          ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"abominable-hoodie-xl-red-194","links":{},"stock":{"item_id":194,"product_id":194,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xl-red-194.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"239","_score":1,"_source":{"id":239,"sku":"MH12-L-Red","name":"Ajax Full-Zip Sweatshirt -L-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

          \n

          • Mint striped full zip hoodie.
          • 100% bonded polyester fleece.
          • Pouch pocket.
          • Rib cuffs and hem.
          • Machine washable.

          ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ajax-full-zip-sweatshirt-l-red-239","links":{},"stock":{"item_id":239,"product_id":239,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-l-red-239.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"250","_score":1,"_source":{"id":250,"sku":"MH13-M-Blue","name":"Marco Lightweight Active Hoodie-M-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

          For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

          \n

          • Light blue heather full zip hoodie.
          • Fitted flatlock seams.
          • Matching lining and drawstring.
          • Machine wash/dry.

          ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"marco-lightweight-active-hoodie-m-blue-250","links":{},"stock":{"item_id":250,"product_id":250,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-m-blue-250.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"246","_score":1,"_source":{"id":246,"sku":"MH13-XS-Lavender","name":"Marco Lightweight Active Hoodie-XS-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

          For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

          \n

          • Light blue heather full zip hoodie.
          • Fitted flatlock seams.
          • Matching lining and drawstring.
          • Machine wash/dry.

          ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xs-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"marco-lightweight-active-hoodie-xs-lavender-246","links":{},"stock":{"item_id":246,"product_id":246,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xs-lavender-246.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"102","_score":1,"_source":{"id":102,"sku":"MH04-XS-Yellow","name":"Frankie Sweatshirt-XS-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

          The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

          \n

          • Light green crewneck sweatshirt.
          • Hand pockets.
          • Relaxed fit.
          • Machine wash/dry.

          ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"frankie-sweatshirt-xs-yellow-102","links":{},"stock":{"item_id":102,"product_id":102,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xs-yellow-102.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"122","_score":1,"_source":{"id":122,"sku":"MH05-M-Green","name":"Hollister Backyard Sweatshirt-M-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

          Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

          \n

          • Cream crewneck sweatshirt with navy sleeves/trim.
          • Relaxed fit.
          • Ribbed cuffs and hem.
          • Machine wash/dry.

          ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hollister-backyard-sweatshirt-m-green-122","links":{},"stock":{"item_id":122,"product_id":122,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-m-green-122.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"141","_score":1,"_source":{"id":141,"sku":"MH06-L-Black","name":"Stark Fundamental Hoodie-L-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

          You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

          \n

          • Navy specked full zip hoodie.
          • Ribbed cuffs, banded waist.
          • Side pockets.
          • Machine wash/dry.

          ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stark-fundamental-hoodie-l-black-141","links":{},"stock":{"item_id":141,"product_id":141,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-l-black-141.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"148","_score":1,"_source":{"id":148,"sku":"MH07-XS-Black","name":"Hero Hoodie-XS-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

          Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

          \n

          • Full-zip gray and black hoodie.
          • Ribbed hem.
          • Standard fit.
          • Drawcord hood cinch.
          • Water-resistant coating.

          ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hero-hoodie-xs-black-148","links":{},"stock":{"item_id":148,"product_id":148,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xs-black-148.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"151","_score":1,"_source":{"id":151,"sku":"MH07-S-Black","name":"Hero Hoodie-S-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

          Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

          \n

          • Full-zip gray and black hoodie.
          • Ribbed hem.
          • Standard fit.
          • Drawcord hood cinch.
          • Water-resistant coating.

          ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hero-hoodie-s-black-151","links":{},"stock":{"item_id":151,"product_id":151,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-s-black-151.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"153","_score":1,"_source":{"id":153,"sku":"MH07-S-Green","name":"Hero Hoodie-S-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

          Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

          \n

          • Full-zip gray and black hoodie.
          • Ribbed hem.
          • Standard fit.
          • Drawcord hood cinch.
          • Water-resistant coating.

          ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hero-hoodie-s-green-153","links":{},"stock":{"item_id":153,"product_id":153,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-s-green-153.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"133","_score":1,"_source":{"id":133,"sku":"MH06-XS-Blue","name":"Stark Fundamental Hoodie-XS-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

          You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

          \n

          • Navy specked full zip hoodie.
          • Ribbed cuffs, banded waist.
          • Side pockets.
          • Machine wash/dry.

          ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"stark-fundamental-hoodie-xs-blue-133","links":{},"stock":{"item_id":133,"product_id":133,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xs-blue-133.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"297","_score":1,"_source":{"id":297,"sku":"MJ04-S-Purple","name":"Kenobi Trail Jacket-S-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

          Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

          \n

          • Black 1/4 zip pullover with royal zipper.
          • Adjustable hood and sleeve cuffs.
          • Machine wash/air dry.

          ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"kenobi-trail-jacket-s-purple-297","links":{},"stock":{"item_id":297,"product_id":297,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-s-purple-297.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"284","_score":1,"_source":{"id":284,"sku":"MJ02-M-Red","name":"Hyperion Elements Jacket-M-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

          Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

          \n

          • Lime 1/4 zip pullover.
          • Split pocket.
          • Thumb holes.
          • Machine wash/hang to dry.

          ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hyperion-elements-jacket-m-red-284","links":{},"stock":{"item_id":284,"product_id":284,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-m-red-284.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"290","_score":1,"_source":{"id":290,"sku":"MJ02-XL-Red","name":"Hyperion Elements Jacket-XL-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

          Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

          \n

          • Lime 1/4 zip pullover.
          • Split pocket.
          • Thumb holes.
          • Machine wash/hang to dry.

          ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hyperion-elements-jacket-xl-red-290","links":{},"stock":{"item_id":290,"product_id":290,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xl-red-290.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"279","_score":1,"_source":{"id":279,"sku":"MJ02-S-Green","name":"Hyperion Elements Jacket-S-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

          Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

          \n

          • Lime 1/4 zip pullover.
          • Split pocket.
          • Thumb holes.
          • Machine wash/hang to dry.

          ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hyperion-elements-jacket-s-green-279","links":{},"stock":{"item_id":279,"product_id":279,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-s-green-279.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"298","_score":1,"_source":{"id":298,"sku":"MJ04-M-Black","name":"Kenobi Trail Jacket-M-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

          Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

          \n

          • Black 1/4 zip pullover with royal zipper.
          • Adjustable hood and sleeve cuffs.
          • Machine wash/air dry.

          ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"kenobi-trail-jacket-m-black-298","links":{},"stock":{"item_id":298,"product_id":298,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-m-black-298.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"291","_score":1,"_source":{"id":291,"sku":"MJ02","name":"Hyperion Elements Jacket","attribute_set_id":9,"price":51,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":51,"description":"

          Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

          \n

          • Lime 1/4 zip pullover.
          • Split pocket.
          • Thumb holes.
          • Machine wash/hang to dry.

          ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hyperion-elements-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,148,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_general":[117,123,124,126,128],"pattern":"197","climate":[204,207,208,210],"slug":"hyperion-elements-jacket-291","links":{},"stock":{"item_id":291,"product_id":291,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ02-XS-Green","id":276,"status":1,"name":"Hyperion Elements Jacket-XS-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"53","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","url_key":"hyperion-elements-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-XS-Orange","id":277,"status":1,"name":"Hyperion Elements Jacket-XS-Orange","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"56","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","url_key":"hyperion-elements-jacket-xs-orange","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-XS-Red","id":278,"status":1,"name":"Hyperion Elements Jacket-XS-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"58","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","url_key":"hyperion-elements-jacket-xs-red","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-S-Green","id":279,"status":1,"name":"Hyperion Elements Jacket-S-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"53","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","url_key":"hyperion-elements-jacket-s-green","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-S-Orange","id":280,"status":1,"name":"Hyperion Elements Jacket-S-Orange","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"56","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","url_key":"hyperion-elements-jacket-s-orange","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-S-Red","id":281,"status":1,"name":"Hyperion Elements Jacket-S-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"58","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","url_key":"hyperion-elements-jacket-s-red","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-M-Green","id":282,"status":1,"name":"Hyperion Elements Jacket-M-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"53","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","url_key":"hyperion-elements-jacket-m-green","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-M-Orange","id":283,"status":1,"name":"Hyperion Elements Jacket-M-Orange","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"56","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","url_key":"hyperion-elements-jacket-m-orange","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-M-Red","id":284,"status":1,"name":"Hyperion Elements Jacket-M-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"58","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","url_key":"hyperion-elements-jacket-m-red","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-L-Green","id":285,"status":1,"name":"Hyperion Elements Jacket-L-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"53","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","url_key":"hyperion-elements-jacket-l-green","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-L-Orange","id":286,"status":1,"name":"Hyperion Elements Jacket-L-Orange","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"56","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","url_key":"hyperion-elements-jacket-l-orange","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-L-Red","id":287,"status":1,"name":"Hyperion Elements Jacket-L-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"58","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","url_key":"hyperion-elements-jacket-l-red","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-XL-Green","id":288,"status":1,"name":"Hyperion Elements Jacket-XL-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"53","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","url_key":"hyperion-elements-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-XL-Orange","id":289,"status":1,"name":"Hyperion Elements Jacket-XL-Orange","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"56","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","url_key":"hyperion-elements-jacket-xl-orange","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-XL-Red","id":290,"status":1,"name":"Hyperion Elements Jacket-XL-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"58","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","url_key":"hyperion-elements-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001}],"configurable_options":[{"id":31,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":291,"attribute_code":"color"},{"id":30,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":291,"attribute_code":"size"}],"color_options":[53,56,58],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-291.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"334","_score":1,"_source":{"id":334,"sku":"MJ08-L-Gray","name":"Lando Gym Jacket-L-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

          The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

          \n

          • Gray polyester/spandex full zip jacket with orange lining.
          • Right pocket device storage.
          • Cocona® performance fabric.
          • Machine wash/dry.

          ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lando-gym-jacket-l-gray-334","links":{},"stock":{"item_id":334,"product_id":334,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-l-gray-334.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"307","_score":1,"_source":{"id":307,"sku":"MJ04","name":"Kenobi Trail Jacket","attribute_set_id":9,"price":47,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":47,"description":"

          Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

          \n

          • Black 1/4 zip pullover with royal zipper.
          • Adjustable hood and sleeve cuffs.
          • Machine wash/air dry.

          ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"kenobi-trail-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,145,37],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[117,125,128],"pattern":"197","climate":[203,204,208,210,211],"slug":"kenobi-trail-jacket-307","links":{},"stock":{"item_id":307,"product_id":307,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ04-XS-Black","id":292,"status":1,"name":"Kenobi Trail Jacket-XS-Black","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"167","color":"49","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","url_key":"kenobi-trail-jacket-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MJ04-XS-Blue","id":293,"status":1,"name":"Kenobi Trail Jacket-XS-Blue","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"167","color":"50","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","url_key":"kenobi-trail-jacket-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ04-XS-Purple","id":294,"status":1,"name":"Kenobi Trail Jacket-XS-Purple","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"167","color":"57","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","url_key":"kenobi-trail-jacket-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ04-S-Black","id":295,"status":1,"name":"Kenobi Trail Jacket-S-Black","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"168","color":"49","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","url_key":"kenobi-trail-jacket-s-black","msrp_display_actual_price_type":"0"},{"sku":"MJ04-S-Blue","id":296,"status":1,"name":"Kenobi Trail Jacket-S-Blue","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"168","color":"50","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","url_key":"kenobi-trail-jacket-s-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ04-S-Purple","id":297,"status":1,"name":"Kenobi Trail Jacket-S-Purple","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"168","color":"57","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","url_key":"kenobi-trail-jacket-s-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ04-M-Black","id":298,"status":1,"name":"Kenobi Trail Jacket-M-Black","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"169","color":"49","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","url_key":"kenobi-trail-jacket-m-black","msrp_display_actual_price_type":"0"},{"sku":"MJ04-M-Blue","id":299,"status":1,"name":"Kenobi Trail Jacket-M-Blue","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"169","color":"50","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","url_key":"kenobi-trail-jacket-m-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ04-M-Purple","id":300,"status":1,"name":"Kenobi Trail Jacket-M-Purple","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"169","color":"57","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","url_key":"kenobi-trail-jacket-m-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ04-L-Black","id":301,"status":1,"name":"Kenobi Trail Jacket-L-Black","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"170","color":"49","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","url_key":"kenobi-trail-jacket-l-black","msrp_display_actual_price_type":"0","final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001},{"sku":"MJ04-L-Blue","id":302,"status":1,"name":"Kenobi Trail Jacket-L-Blue","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"170","color":"50","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","url_key":"kenobi-trail-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001},{"sku":"MJ04-L-Purple","id":303,"status":1,"name":"Kenobi Trail Jacket-L-Purple","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"170","color":"57","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","url_key":"kenobi-trail-jacket-l-purple","msrp_display_actual_price_type":"0","final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001},{"sku":"MJ04-XL-Black","id":304,"status":1,"name":"Kenobi Trail Jacket-XL-Black","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"171","color":"49","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","url_key":"kenobi-trail-jacket-xl-black","msrp_display_actual_price_type":"0","final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001},{"sku":"MJ04-XL-Blue","id":305,"status":1,"name":"Kenobi Trail Jacket-XL-Blue","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"171","color":"50","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","url_key":"kenobi-trail-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001},{"sku":"MJ04-XL-Purple","id":306,"status":1,"name":"Kenobi Trail Jacket-XL-Purple","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"171","color":"57","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","url_key":"kenobi-trail-jacket-xl-purple","msrp_display_actual_price_type":"0","final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001}],"configurable_options":[{"id":33,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":307,"attribute_code":"color"},{"id":32,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":307,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-307.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"275","_score":1,"_source":{"id":275,"sku":"MJ01","name":"Beaumont Summit Kit","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":42,"description":"

          The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

          \n

          • Yellow full zip rain jacket.
          • Full-zip front.
          • Stand-up collar.
          • Elasticized cuffs.
          • Machine wash/dry.

          ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"beaumont-summit-kit","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,148,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[120,121,123,124,126,128,130],"pattern":"197","climate":[204,207,208,210],"slug":"beaumont-summit-kit-275","links":{},"stock":{"item_id":275,"product_id":275,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ01-XS-Orange","id":260,"status":1,"name":"Beaumont Summit Kit-XS-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"56","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","url_key":"beaumont-summit-kit-xs-orange","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-XS-Red","id":261,"status":1,"name":"Beaumont Summit Kit-XS-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"58","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","url_key":"beaumont-summit-kit-xs-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-XS-Yellow","id":262,"status":1,"name":"Beaumont Summit Kit-XS-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"60","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","url_key":"beaumont-summit-kit-xs-yellow","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-S-Orange","id":263,"status":1,"name":"Beaumont Summit Kit-S-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"56","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","url_key":"beaumont-summit-kit-s-orange","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-S-Red","id":264,"status":1,"name":"Beaumont Summit Kit-S-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"58","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","url_key":"beaumont-summit-kit-s-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-S-Yellow","id":265,"status":1,"name":"Beaumont Summit Kit-S-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"60","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","url_key":"beaumont-summit-kit-s-yellow","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-M-Orange","id":266,"status":1,"name":"Beaumont Summit Kit-M-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"56","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","url_key":"beaumont-summit-kit-m-orange","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-M-Red","id":267,"status":1,"name":"Beaumont Summit Kit-M-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"58","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","url_key":"beaumont-summit-kit-m-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-M-Yellow","id":268,"status":1,"name":"Beaumont Summit Kit-M-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"60","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","url_key":"beaumont-summit-kit-m-yellow","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-L-Orange","id":269,"status":1,"name":"Beaumont Summit Kit-L-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"56","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","url_key":"beaumont-summit-kit-l-orange","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-L-Red","id":270,"status":1,"name":"Beaumont Summit Kit-L-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"58","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","url_key":"beaumont-summit-kit-l-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-L-Yellow","id":271,"status":1,"name":"Beaumont Summit Kit-L-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"60","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","url_key":"beaumont-summit-kit-l-yellow","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-XL-Orange","id":272,"status":1,"name":"Beaumont Summit Kit-XL-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"56","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","url_key":"beaumont-summit-kit-xl-orange","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-XL-Red","id":273,"status":1,"name":"Beaumont Summit Kit-XL-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"58","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","url_key":"beaumont-summit-kit-xl-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-XL-Yellow","id":274,"status":1,"name":"Beaumont Summit Kit-XL-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"60","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","url_key":"beaumont-summit-kit-xl-yellow","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001}],"configurable_options":[{"id":29,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":275,"attribute_code":"color"},{"id":28,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":275,"attribute_code":"size"}],"color_options":[56,58,60],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-275.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"255","_score":1,"_source":{"id":255,"sku":"MH13-L-Lavender","name":"Marco Lightweight Active Hoodie-L-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

          For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

          \n

          • Light blue heather full zip hoodie.
          • Fitted flatlock seams.
          • Matching lining and drawstring.
          • Machine wash/dry.

          ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-l-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"marco-lightweight-active-hoodie-l-lavender-255","links":{},"stock":{"item_id":255,"product_id":255,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-l-lavender-255.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"272","_score":1,"_source":{"id":272,"sku":"MJ01-XL-Orange","name":"Beaumont Summit Kit-XL-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

          The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

          \n

          • Yellow full zip rain jacket.
          • Full-zip front.
          • Stand-up collar.
          • Elasticized cuffs.
          • Machine wash/dry.

          ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"beaumont-summit-kit-xl-orange-272","links":{},"stock":{"item_id":272,"product_id":272,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xl-orange-272.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"289","_score":1,"_source":{"id":289,"sku":"MJ02-XL-Orange","name":"Hyperion Elements Jacket-XL-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

          Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

          \n

          • Lime 1/4 zip pullover.
          • Split pocket.
          • Thumb holes.
          • Machine wash/hang to dry.

          ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hyperion-elements-jacket-xl-orange-289","links":{},"stock":{"item_id":289,"product_id":289,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xl-orange-289.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"267","_score":1,"_source":{"id":267,"sku":"MJ01-M-Red","name":"Beaumont Summit Kit-M-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

          The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

          \n

          • Yellow full zip rain jacket.
          • Full-zip front.
          • Stand-up collar.
          • Elasticized cuffs.
          • Machine wash/dry.

          ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"beaumont-summit-kit-m-red-267","links":{},"stock":{"item_id":267,"product_id":267,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-m-red-267.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"326","_score":1,"_source":{"id":326,"sku":"MJ08-XS-Green","name":"Lando Gym Jacket-XS-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

          The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

          \n

          • Gray polyester/spandex full zip jacket with orange lining.
          • Right pocket device storage.
          • Cocona® performance fabric.
          • Machine wash/dry.

          ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lando-gym-jacket-xs-green-326","links":{},"stock":{"item_id":326,"product_id":326,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xs-green-326.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"325","_score":1,"_source":{"id":325,"sku":"MJ08-XS-Gray","name":"Lando Gym Jacket-XS-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

          The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

          \n

          • Gray polyester/spandex full zip jacket with orange lining.
          • Right pocket device storage.
          • Cocona® performance fabric.
          • Machine wash/dry.

          ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lando-gym-jacket-xs-gray-325","links":{},"stock":{"item_id":325,"product_id":325,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xs-gray-325.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"345","_score":1,"_source":{"id":345,"sku":"MJ09-S-Yellow","name":"Taurus Elements Shell-S-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

          What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

          \n

          • Yellow 1/4 zip pullover.
          • Two chest pockets.
          • Standard fit.
          • Waterproof, breathable, seam sealed.
          • Cocona® performance fabric.
          • Machine wash/dry.

          ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"taurus-elements-shell-s-yellow-345","links":{},"stock":{"item_id":345,"product_id":345,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-s-yellow-345.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"348","_score":1,"_source":{"id":348,"sku":"MJ09-M-Yellow","name":"Taurus Elements Shell-M-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

          What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

          \n

          • Yellow 1/4 zip pullover.
          • Two chest pockets.
          • Standard fit.
          • Waterproof, breathable, seam sealed.
          • Cocona® performance fabric.
          • Machine wash/dry.

          ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"taurus-elements-shell-m-yellow-348","links":{},"stock":{"item_id":348,"product_id":348,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-m-yellow-348.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"347","_score":1,"_source":{"id":347,"sku":"MJ09-M-White","name":"Taurus Elements Shell-M-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

          What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

          \n

          • Yellow 1/4 zip pullover.
          • Two chest pockets.
          • Standard fit.
          • Waterproof, breathable, seam sealed.
          • Cocona® performance fabric.
          • Machine wash/dry.

          ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"taurus-elements-shell-m-white-347","links":{},"stock":{"item_id":347,"product_id":347,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-m-white-347.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"252","_score":1,"_source":{"id":252,"sku":"MH13-M-Lavender","name":"Marco Lightweight Active Hoodie-M-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

          For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

          \n

          • Light blue heather full zip hoodie.
          • Fitted flatlock seams.
          • Matching lining and drawstring.
          • Machine wash/dry.

          ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-m-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"marco-lightweight-active-hoodie-m-lavender-252","links":{},"stock":{"item_id":252,"product_id":252,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-m-lavender-252.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"257","_score":1,"_source":{"id":257,"sku":"MH13-XL-Green","name":"Marco Lightweight Active Hoodie-XL-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

          For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

          \n

          • Light blue heather full zip hoodie.
          • Fitted flatlock seams.
          • Matching lining and drawstring.
          • Machine wash/dry.

          ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"marco-lightweight-active-hoodie-xl-green-257","links":{},"stock":{"item_id":257,"product_id":257,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xl-green-257.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"341","_score":1,"_source":{"id":341,"sku":"MJ09-XS-White","name":"Taurus Elements Shell-XS-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

          What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

          \n

          • Yellow 1/4 zip pullover.
          • Two chest pockets.
          • Standard fit.
          • Waterproof, breathable, seam sealed.
          • Cocona® performance fabric.
          • Machine wash/dry.

          ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"taurus-elements-shell-xs-white-341","links":{},"stock":{"item_id":341,"product_id":341,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xs-white-341.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"329","_score":1,"_source":{"id":329,"sku":"MJ08-S-Green","name":"Lando Gym Jacket-S-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

          The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

          \n

          • Gray polyester/spandex full zip jacket with orange lining.
          • Right pocket device storage.
          • Cocona® performance fabric.
          • Machine wash/dry.

          ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lando-gym-jacket-s-green-329","links":{},"stock":{"item_id":329,"product_id":329,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-s-green-329.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"308","_score":1,"_source":{"id":308,"sku":"MJ07-XS-Black","name":"Orion Two-Tone Fitted Jacket-XS-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

          While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

          \n

          • Red full zip fleece with gray insets.
          • Double-knit construction.
          • Full athletic cut.
          • Set in sleeves.
          • Front pouch pocket.

          ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"orion-two-tone-fitted-jacket-xs-black-308","links":{},"stock":{"item_id":308,"product_id":308,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xs-black-308.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"320","_score":1,"_source":{"id":320,"sku":"MJ07-XL-Black","name":"Orion Two-Tone Fitted Jacket-XL-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

          While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

          \n

          • Red full zip fleece with gray insets.
          • Double-knit construction.
          • Full athletic cut.
          • Set in sleeves.
          • Front pouch pocket.

          ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"orion-two-tone-fitted-jacket-xl-black-320","links":{},"stock":{"item_id":320,"product_id":320,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xl-black-320.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"318","_score":1,"_source":{"id":318,"sku":"MJ07-L-Red","name":"Orion Two-Tone Fitted Jacket-L-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

          While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

          \n

          • Red full zip fleece with gray insets.
          • Double-knit construction.
          • Full athletic cut.
          • Set in sleeves.
          • Front pouch pocket.

          ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"orion-two-tone-fitted-jacket-l-red-318","links":{},"stock":{"item_id":318,"product_id":318,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-l-red-318.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"440","_score":1,"_source":{"id":440,"sku":"MS04-S-Orange","name":"Gobi HeatTec® Tee-S-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

          \n

          • Orange micropolyester shirt.
          • HeatTec® wicking fabric.
          • Crew neckline.
          • Machine wash/dry.

          ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gobi-heattec-and-reg-tee-s-orange-440","links":{},"stock":{"item_id":440,"product_id":440,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-s-orange-440.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"439","_score":1,"_source":{"id":439,"sku":"MS04-S-Black","name":"Gobi HeatTec® Tee-S-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

          \n

          • Orange micropolyester shirt.
          • HeatTec® wicking fabric.
          • Crew neckline.
          • Machine wash/dry.

          ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gobi-heattec-and-reg-tee-s-black-439","links":{},"stock":{"item_id":439,"product_id":439,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-s-black-439.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"446","_score":1,"_source":{"id":446,"sku":"MS04-L-Orange","name":"Gobi HeatTec® Tee-L-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

          \n

          • Orange micropolyester shirt.
          • HeatTec® wicking fabric.
          • Crew neckline.
          • Machine wash/dry.

          ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gobi-heattec-and-reg-tee-l-orange-446","links":{},"stock":{"item_id":446,"product_id":446,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-l-orange-446.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"403","_score":1,"_source":{"id":403,"sku":"MJ06","name":"Jupiter All-Weather Trainer ","attribute_set_id":9,"price":56.99,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":56.99,"description":"

          Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

          \n

          • Relaxed fit.
          • Hand pockets.
          • Machine wash/dry.
          • Reflective safety trim.

          ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"jupiter-all-weather-trainer","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,146,37],"eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[117,120,125,129],"pattern":"197","climate":[202,205,206,208,209],"slug":"jupiter-all-weather-trainer-403","links":{},"stock":{"item_id":403,"product_id":403,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ06-XS-Blue","id":388,"status":1,"name":"Jupiter All-Weather Trainer -XS-Blue","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"167","color":"50","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","url_key":"jupiter-all-weather-trainer-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ06-XS-Green","id":389,"status":1,"name":"Jupiter All-Weather Trainer -XS-Green","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"167","color":"53","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","url_key":"jupiter-all-weather-trainer-xs-green","msrp_display_actual_price_type":"0"},{"sku":"MJ06-XS-Purple","id":390,"status":1,"name":"Jupiter All-Weather Trainer -XS-Purple","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"167","color":"57","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","url_key":"jupiter-all-weather-trainer-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ06-S-Blue","id":391,"status":1,"name":"Jupiter All-Weather Trainer -S-Blue","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"168","color":"50","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","url_key":"jupiter-all-weather-trainer-s-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ06-S-Green","id":392,"status":1,"name":"Jupiter All-Weather Trainer -S-Green","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"168","color":"53","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","url_key":"jupiter-all-weather-trainer-s-green","msrp_display_actual_price_type":"0"},{"sku":"MJ06-S-Purple","id":393,"status":1,"name":"Jupiter All-Weather Trainer -S-Purple","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"168","color":"57","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","url_key":"jupiter-all-weather-trainer-s-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ06-M-Blue","id":394,"status":1,"name":"Jupiter All-Weather Trainer -M-Blue","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"169","color":"50","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","url_key":"jupiter-all-weather-trainer-m-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ06-M-Green","id":395,"status":1,"name":"Jupiter All-Weather Trainer -M-Green","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"169","color":"53","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","url_key":"jupiter-all-weather-trainer-m-green","msrp_display_actual_price_type":"0"},{"sku":"MJ06-M-Purple","id":396,"status":1,"name":"Jupiter All-Weather Trainer -M-Purple","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"169","color":"57","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","url_key":"jupiter-all-weather-trainer-m-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ06-L-Blue","id":397,"status":1,"name":"Jupiter All-Weather Trainer -L-Blue","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"170","color":"50","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","url_key":"jupiter-all-weather-trainer-l-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ06-L-Green","id":398,"status":1,"name":"Jupiter All-Weather Trainer -L-Green","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"170","color":"53","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","url_key":"jupiter-all-weather-trainer-l-green","msrp_display_actual_price_type":"0"},{"sku":"MJ06-L-Purple","id":399,"status":1,"name":"Jupiter All-Weather Trainer -L-Purple","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"170","color":"57","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","url_key":"jupiter-all-weather-trainer-l-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ06-XL-Blue","id":400,"status":1,"name":"Jupiter All-Weather Trainer -XL-Blue","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"171","color":"50","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","url_key":"jupiter-all-weather-trainer-xl-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ06-XL-Green","id":401,"status":1,"name":"Jupiter All-Weather Trainer -XL-Green","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"171","color":"53","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","url_key":"jupiter-all-weather-trainer-xl-green","msrp_display_actual_price_type":"0","final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701},{"sku":"MJ06-XL-Purple","id":402,"status":1,"name":"Jupiter All-Weather Trainer -XL-Purple","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"171","color":"57","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","url_key":"jupiter-all-weather-trainer-xl-purple","msrp_display_actual_price_type":"0","final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701}],"configurable_options":[{"id":45,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"}],"product_id":403,"attribute_code":"color"},{"id":44,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":403,"attribute_code":"size"}],"color_options":[50,53,57],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-403.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"467","_score":1,"_source":{"id":467,"sku":"MS05","name":"Helios EverCool™ Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":24,"description":"

          Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

          \n

          • Teal quick dry tee.
          • Relaxed fit.
          • Crew neckline.
          • Machine wash/dry.

          ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"helios-evercool-trade-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,149,154],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"helios-evercool-and-trade-tee-467","links":{},"stock":{"item_id":467,"product_id":467,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS05-XS-Black","id":452,"status":1,"name":"Helios EverCool™ Tee-XS-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"167","color":"49","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","url_key":"helios-evercool-trade-tee-xs-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-XS-Blue","id":453,"status":1,"name":"Helios EverCool™ Tee-XS-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"167","color":"50","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","url_key":"helios-evercool-trade-tee-xs-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-XS-Purple","id":454,"status":1,"name":"Helios EverCool™ Tee-XS-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"167","color":"57","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","url_key":"helios-evercool-trade-tee-xs-purple","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-S-Black","id":455,"status":1,"name":"Helios EverCool™ Tee-S-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"168","color":"49","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","url_key":"helios-evercool-trade-tee-s-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-S-Blue","id":456,"status":1,"name":"Helios EverCool™ Tee-S-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"168","color":"50","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","url_key":"helios-evercool-trade-tee-s-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-S-Purple","id":457,"status":1,"name":"Helios EverCool™ Tee-S-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"168","color":"57","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","url_key":"helios-evercool-trade-tee-s-purple","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-M-Black","id":458,"status":1,"name":"Helios EverCool™ Tee-M-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"169","color":"49","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","url_key":"helios-evercool-trade-tee-m-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-M-Blue","id":459,"status":1,"name":"Helios EverCool™ Tee-M-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"169","color":"50","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","url_key":"helios-evercool-trade-tee-m-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-M-Purple","id":460,"status":1,"name":"Helios EverCool™ Tee-M-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"169","color":"57","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","url_key":"helios-evercool-trade-tee-m-purple","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-L-Black","id":461,"status":1,"name":"Helios EverCool™ Tee-L-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"170","color":"49","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","url_key":"helios-evercool-trade-tee-l-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-L-Blue","id":462,"status":1,"name":"Helios EverCool™ Tee-L-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"170","color":"50","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","url_key":"helios-evercool-trade-tee-l-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-L-Purple","id":463,"status":1,"name":"Helios EverCool™ Tee-L-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"170","color":"57","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","url_key":"helios-evercool-trade-tee-l-purple","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-XL-Black","id":464,"status":1,"name":"Helios EverCool™ Tee-XL-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"171","color":"49","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","url_key":"helios-evercool-trade-tee-xl-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-XL-Blue","id":465,"status":1,"name":"Helios EverCool™ Tee-XL-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"171","color":"50","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","url_key":"helios-evercool-trade-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-XL-Purple","id":466,"status":1,"name":"Helios EverCool™ Tee-XL-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"171","color":"57","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","url_key":"helios-evercool-trade-tee-xl-purple","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001}],"configurable_options":[{"id":53,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":467,"attribute_code":"color"},{"id":52,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":467,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-467.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"371","_score":1,"_source":{"id":371,"sku":"MJ10","name":"Mars HeatTech™ Pullover","attribute_set_id":9,"price":66,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":66,"description":"

          The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

          \n

          • Red 1/4 zip pullover.
          • Adjustable VELCRO® sleeve cuffs.
          • Two hand pockets.
          • Napoleon pocket.
          • Machine wash/dry

          ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mars-heattech-trade-pullover","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[120,123,124,126,128],"pattern":"197","climate":[202,204,206,207,208,210],"slug":"mars-heattech-and-trade-pullover-371","links":{},"stock":{"item_id":371,"product_id":371,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ10-XS-Black","id":356,"status":1,"name":"Mars HeatTech™ Pullover-XS-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"49","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","url_key":"mars-heattech-trade-pullover-xs-black","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-XS-Orange","id":357,"status":1,"name":"Mars HeatTech™ Pullover-XS-Orange","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"56","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","url_key":"mars-heattech-trade-pullover-xs-orange","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-XS-Red","id":358,"status":1,"name":"Mars HeatTech™ Pullover-XS-Red","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"58","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","url_key":"mars-heattech-trade-pullover-xs-red","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-S-Black","id":359,"status":1,"name":"Mars HeatTech™ Pullover-S-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"49","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","url_key":"mars-heattech-trade-pullover-s-black","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-S-Orange","id":360,"status":1,"name":"Mars HeatTech™ Pullover-S-Orange","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"56","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","url_key":"mars-heattech-trade-pullover-s-orange","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-S-Red","id":361,"status":1,"name":"Mars HeatTech™ Pullover-S-Red","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"58","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","url_key":"mars-heattech-trade-pullover-s-red","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-M-Black","id":362,"status":1,"name":"Mars HeatTech™ Pullover-M-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"49","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","url_key":"mars-heattech-trade-pullover-m-black","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-M-Orange","id":363,"status":1,"name":"Mars HeatTech™ Pullover-M-Orange","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"56","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","url_key":"mars-heattech-trade-pullover-m-orange","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-M-Red","id":364,"status":1,"name":"Mars HeatTech™ Pullover-M-Red","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"58","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","url_key":"mars-heattech-trade-pullover-m-red","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-L-Black","id":365,"status":1,"name":"Mars HeatTech™ Pullover-L-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"49","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","url_key":"mars-heattech-trade-pullover-l-black","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-L-Orange","id":366,"status":1,"name":"Mars HeatTech™ Pullover-L-Orange","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"56","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","url_key":"mars-heattech-trade-pullover-l-orange","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-L-Red","id":367,"status":1,"name":"Mars HeatTech™ Pullover-L-Red","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"58","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","url_key":"mars-heattech-trade-pullover-l-red","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-XL-Black","id":368,"status":1,"name":"Mars HeatTech™ Pullover-XL-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"49","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","url_key":"mars-heattech-trade-pullover-xl-black","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-XL-Orange","id":369,"status":1,"name":"Mars HeatTech™ Pullover-XL-Orange","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"56","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","url_key":"mars-heattech-trade-pullover-xl-orange","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-XL-Red","id":370,"status":1,"name":"Mars HeatTech™ Pullover-XL-Red","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"58","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","url_key":"mars-heattech-trade-pullover-xl-red","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001}],"configurable_options":[{"id":41,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":371,"attribute_code":"color"},{"id":40,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":371,"attribute_code":"size"}],"color_options":[49,56,58],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-371.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"401","_score":1,"_source":{"id":401,"sku":"MJ06-XL-Green","name":"Jupiter All-Weather Trainer -XL-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

          Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

          \n

          • Relaxed fit.
          • Hand pockets.
          • Machine wash/dry.
          • Reflective safety trim.

          ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jupiter-all-weather-trainer-xl-green-401","links":{},"stock":{"item_id":401,"product_id":401,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xl-green-401.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"411","_score":1,"_source":{"id":411,"sku":"MJ03-M-Green","name":"Montana Wind Jacket-M-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

          Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

          \n

          Adjustable hood.
          Split pocket.
          Thumb holes.
          Machine wash/hang to dry.

          ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"montana-wind-jacket-m-green-411","links":{},"stock":{"item_id":411,"product_id":411,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-m-green-411.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"428","_score":1,"_source":{"id":428,"sku":"MJ12-M-Orange","name":"Proteus Fitness Jackshirt-M-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

          Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

          \n

          • 1/4 zip. Stand-up collar.
          • Machine wash/dry.
          • Quilted inner layer.

          ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"proteus-fitness-jackshirt-m-orange-428","links":{},"stock":{"item_id":428,"product_id":428,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-m-orange-428.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"437","_score":1,"_source":{"id":437,"sku":"MS04-XS-Orange","name":"Gobi HeatTec® Tee-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

          \n

          • Orange micropolyester shirt.
          • HeatTec® wicking fabric.
          • Crew neckline.
          • Machine wash/dry.

          ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gobi-heattec-and-reg-tee-xs-orange-437","links":{},"stock":{"item_id":437,"product_id":437,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xs-orange-437.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"442","_score":1,"_source":{"id":442,"sku":"MS04-M-Black","name":"Gobi HeatTec® Tee-M-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

          \n

          • Orange micropolyester shirt.
          • HeatTec® wicking fabric.
          • Crew neckline.
          • Machine wash/dry.

          ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gobi-heattec-and-reg-tee-m-black-442","links":{},"stock":{"item_id":442,"product_id":442,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-m-black-442.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"426","_score":1,"_source":{"id":426,"sku":"MJ12-M-Black","name":"Proteus Fitness Jackshirt-M-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

          Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

          \n

          • 1/4 zip. Stand-up collar.
          • Machine wash/dry.
          • Quilted inner layer.

          ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"proteus-fitness-jackshirt-m-black-426","links":{},"stock":{"item_id":426,"product_id":426,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-m-black-426.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"434","_score":1,"_source":{"id":434,"sku":"MJ12-XL-Orange","name":"Proteus Fitness Jackshirt-XL-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

          Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

          \n

          • 1/4 zip. Stand-up collar.
          • Machine wash/dry.
          • Quilted inner layer.

          ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"proteus-fitness-jackshirt-xl-orange-434","links":{},"stock":{"item_id":434,"product_id":434,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xl-orange-434.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"459","_score":1,"_source":{"id":459,"sku":"MS05-M-Blue","name":"Helios EverCool™ Tee-M-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

          Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

          \n

          • Teal quick dry tee.
          • Relaxed fit.
          • Crew neckline.
          • Machine wash/dry.

          ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helios-evercool-and-trade-tee-m-blue-459","links":{},"stock":{"item_id":459,"product_id":459,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-m-blue-459.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"479","_score":1,"_source":{"id":479,"sku":"MS09-L-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-L-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

          The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

          \n

          • Royal polyester tee with black accents.
          • Relaxed fit.
          • Short-Sleeve.
          • Machine wash/dry.

          ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-crew-neck-l-red-479","links":{},"stock":{"item_id":479,"product_id":479,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-l-red-479.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"488","_score":1,"_source":{"id":488,"sku":"MS11-S-Green","name":"Atomic Endurance Running Tee (V-neck)-S-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

          Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

          \n

          • Lime heathered v-neck tee.
          • Ultra-lightweight.
          • Moisture-wicking Cocona® fabric.
          • Machine wash/dry.

          ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-v-neck-s-green-488","links":{},"stock":{"item_id":488,"product_id":488,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-s-green-488.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"370","_score":1,"_source":{"id":370,"sku":"MJ10-XL-Red","name":"Mars HeatTech™ Pullover-XL-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

          The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

          \n

          • Red 1/4 zip pullover.
          • Adjustable VELCRO® sleeve cuffs.
          • Two hand pockets.
          • Napoleon pocket.
          • Machine wash/dry

          ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mars-heattech-and-trade-pullover-xl-red-370","links":{},"stock":{"item_id":370,"product_id":370,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xl-red-370.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"380","_score":1,"_source":{"id":380,"sku":"MJ11-M-Red","name":"Typhon Performance Fleece-lined Jacket-M-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

          Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

          \n

          • Black full-zip flight jacket.
          • Cocona® wicking fiber.
          • Machine wash/dry.

          ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"typhon-performance-fleece-lined-jacket-m-red-380","links":{},"stock":{"item_id":380,"product_id":380,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-m-red-380.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"382","_score":1,"_source":{"id":382,"sku":"MJ11-L-Green","name":"Typhon Performance Fleece-lined Jacket-L-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

          Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

          \n

          • Black full-zip flight jacket.
          • Cocona® wicking fiber.
          • Machine wash/dry.

          ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"typhon-performance-fleece-lined-jacket-l-green-382","links":{},"stock":{"item_id":382,"product_id":382,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-l-green-382.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"388","_score":1,"_source":{"id":388,"sku":"MJ06-XS-Blue","name":"Jupiter All-Weather Trainer -XS-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

          Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

          \n

          • Relaxed fit.
          • Hand pockets.
          • Machine wash/dry.
          • Reflective safety trim.

          ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jupiter-all-weather-trainer-xs-blue-388","links":{},"stock":{"item_id":388,"product_id":388,"stock_id":1,"qty":53,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xs-blue-388.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"457","_score":1,"_source":{"id":457,"sku":"MS05-S-Purple","name":"Helios EverCool™ Tee-S-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

          Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

          \n

          • Teal quick dry tee.
          • Relaxed fit.
          • Crew neckline.
          • Machine wash/dry.

          ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helios-evercool-and-trade-tee-s-purple-457","links":{},"stock":{"item_id":457,"product_id":457,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-s-purple-457.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"506","_score":1,"_source":{"id":506,"sku":"MS12-M-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-M-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

          \n

          • Red polyester tee.
          • Crew neckline.
          • Cocona® performance fabric.
          • Machine wash/dry.

          ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-crew-neck-m-black-506","links":{},"stock":{"item_id":506,"product_id":506,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-m-black-506.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"537","_score":1,"_source":{"id":537,"sku":"MS06-S-Yellow","name":"Zoltan Gym Tee-S-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

          \n

          • Relaxed fit.
          • Crew neckline.
          • Machine wash/dry.

          ","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoltan-gym-tee-s-yellow-537","links":{},"stock":{"item_id":537,"product_id":537,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-s-yellow-537.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"541","_score":1,"_source":{"id":541,"sku":"MS06-L-Blue","name":"Zoltan Gym Tee-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

          \n

          • Relaxed fit.
          • Crew neckline.
          • Machine wash/dry.

          ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoltan-gym-tee-l-blue-541","links":{},"stock":{"item_id":541,"product_id":541,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-l-blue-541.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"515","_score":1,"_source":{"id":515,"sku":"MS12","name":"Atomic Endurance Running Tee (Crew-Neck)","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

          Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

          \n

          • Red polyester tee.
          • Crew neckline.
          • Cocona® performance fabric.
          • Machine wash/dry.

          ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"atomic-endurance-running-tee-crew-neck","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"atomic-endurance-running-tee-crew-neck-515","links":{},"stock":{"item_id":515,"product_id":515,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS12-XS-Black","id":500,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MS12-XS-Blue","id":501,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-xs-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-XS-Red","id":502,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"58","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-xs-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-S-Black","id":503,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-S-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-s-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-S-Blue","id":504,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-s-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-S-Red","id":505,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"58","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-s-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-M-Black","id":506,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-M-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-m-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-M-Blue","id":507,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-m-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-M-Red","id":508,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"58","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-m-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-L-Black","id":509,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-L-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-l-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-L-Blue","id":510,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-l-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-L-Red","id":511,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"58","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-l-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-XL-Black","id":512,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-xl-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-XL-Blue","id":513,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-xl-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-XL-Red","id":514,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"58","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-xl-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":59,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":515,"attribute_code":"color"},{"id":58,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":515,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-515.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"547","_score":1,"_source":{"id":547,"sku":"MS06","name":"Zoltan Gym Tee","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

          This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

          \n

          • Relaxed fit.
          • Crew neckline.
          • Machine wash/dry.

          ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"zoltan-gym-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"zoltan-gym-tee-547","links":{},"stock":{"item_id":547,"product_id":547,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS06-XS-Blue","id":532,"status":1,"name":"Zoltan Gym Tee-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","url_key":"zoltan-gym-tee-xs-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-XS-Green","id":533,"status":1,"name":"Zoltan Gym Tee-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"53","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","url_key":"zoltan-gym-tee-xs-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-XS-Yellow","id":534,"status":1,"name":"Zoltan Gym Tee-XS-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"60","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","url_key":"zoltan-gym-tee-xs-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-S-Blue","id":535,"status":1,"name":"Zoltan Gym Tee-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","url_key":"zoltan-gym-tee-s-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-S-Green","id":536,"status":1,"name":"Zoltan Gym Tee-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"53","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","url_key":"zoltan-gym-tee-s-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-S-Yellow","id":537,"status":1,"name":"Zoltan Gym Tee-S-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"60","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","url_key":"zoltan-gym-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-M-Blue","id":538,"status":1,"name":"Zoltan Gym Tee-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","url_key":"zoltan-gym-tee-m-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-M-Green","id":539,"status":1,"name":"Zoltan Gym Tee-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"53","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","url_key":"zoltan-gym-tee-m-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-M-Yellow","id":540,"status":1,"name":"Zoltan Gym Tee-M-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"60","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","url_key":"zoltan-gym-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-L-Blue","id":541,"status":1,"name":"Zoltan Gym Tee-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","url_key":"zoltan-gym-tee-l-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-L-Green","id":542,"status":1,"name":"Zoltan Gym Tee-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"53","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","url_key":"zoltan-gym-tee-l-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-L-Yellow","id":543,"status":1,"name":"Zoltan Gym Tee-L-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"60","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","url_key":"zoltan-gym-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-XL-Blue","id":544,"status":1,"name":"Zoltan Gym Tee-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","url_key":"zoltan-gym-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-XL-Green","id":545,"status":1,"name":"Zoltan Gym Tee-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"53","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","url_key":"zoltan-gym-tee-xl-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-XL-Yellow","id":546,"status":1,"name":"Zoltan Gym Tee-XL-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"60","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","url_key":"zoltan-gym-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":63,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":60,"label":"Yellow"}],"product_id":547,"attribute_code":"color"},{"id":62,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":547,"attribute_code":"size"}],"color_options":[50,53,60],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-547.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"652","_score":1,"_source":{"id":652,"sku":"MT02-M-White","name":"Tristan Endurance Tank-M-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

          \n

          • White performance tank.
          • Stylish contrast stitching.
          • Relaxed fit.
          • Ribbed crew neckline.
          • Machine wash/dry.

          ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tristan-endurance-tank-m-white-652","links":{},"stock":{"item_id":652,"product_id":652,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-m-white-652.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"673","_score":1,"_source":{"id":673,"sku":"MT03-XL-Red","name":"Primo Endurance Tank-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

          \n

          • Red heather tank with gray pocket.
          • Chafe-resistant flatlock seams.
          • Relaxed fit.
          • Contrast topstitching.
          • Machine wash/dry.

          ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"primo-endurance-tank-xl-red-673","links":{},"stock":{"item_id":673,"product_id":673,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xl-red-673.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"676","_score":1,"_source":{"id":676,"sku":"MT04-XS-Blue","name":"Helios Endurance Tank-XS-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

          When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

          \n

          • Blue heather tank with gray pocket.
          • Contrast sides and back inserts.
          • Self-fabric binding at neck and armholes.
          • Machine wash/dry.

          ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helios-endurance-tank-xs-blue-676","links":{},"stock":{"item_id":676,"product_id":676,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-xs-blue-676.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"669","_score":1,"_source":{"id":669,"sku":"MT03-L-Blue","name":"Primo Endurance Tank-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

          \n

          • Red heather tank with gray pocket.
          • Chafe-resistant flatlock seams.
          • Relaxed fit.
          • Contrast topstitching.
          • Machine wash/dry.

          ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"primo-endurance-tank-l-blue-669","links":{},"stock":{"item_id":669,"product_id":669,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-l-blue-669.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"664","_score":1,"_source":{"id":664,"sku":"MT03-S-Red","name":"Primo Endurance Tank-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

          \n

          • Red heather tank with gray pocket.
          • Chafe-resistant flatlock seams.
          • Relaxed fit.
          • Contrast topstitching.
          • Machine wash/dry.

          ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"primo-endurance-tank-s-red-664","links":{},"stock":{"item_id":664,"product_id":664,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-s-red-664.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"670","_score":1,"_source":{"id":670,"sku":"MT03-L-Red","name":"Primo Endurance Tank-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

          \n

          • Red heather tank with gray pocket.
          • Chafe-resistant flatlock seams.
          • Relaxed fit.
          • Contrast topstitching.
          • Machine wash/dry.

          ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"primo-endurance-tank-l-red-670","links":{},"stock":{"item_id":670,"product_id":670,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-l-red-670.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"679","_score":1,"_source":{"id":679,"sku":"MT04-L-Blue","name":"Helios Endurance Tank-L-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

          When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

          \n

          • Blue heather tank with gray pocket.
          • Contrast sides and back inserts.
          • Self-fabric binding at neck and armholes.
          • Machine wash/dry.

          ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helios-endurance-tank-l-blue-679","links":{},"stock":{"item_id":679,"product_id":679,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-l-blue-679.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"680","_score":1,"_source":{"id":680,"sku":"MT04-XL-Blue","name":"Helios Endurance Tank-XL-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

          When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

          \n

          • Blue heather tank with gray pocket.
          • Contrast sides and back inserts.
          • Self-fabric binding at neck and armholes.
          • Machine wash/dry.

          ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helios-endurance-tank-xl-blue-680","links":{},"stock":{"item_id":680,"product_id":680,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-xl-blue-680.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"629","_score":1,"_source":{"id":629,"sku":"MT01-XS-Orange","name":"Erikssen CoolTech™ Fitness Tank-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

          \n

          • Red performance tank.
          • Slight scoop neckline.
          • Reflectivity.
          • Machine wash/dry.

          ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erikssen-cooltech-and-trade-fitness-tank-xs-orange-629","links":{},"stock":{"item_id":629,"product_id":629,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xs-orange-629.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"622","_score":1,"_source":{"id":622,"sku":"MS08-L-Blue","name":"Strike Endurance Tee-L-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

          \n

          • Loose fit.
          • Ribbed cuffs/collar.
          • Machine wash/dry.

          ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"strike-endurance-tee-l-blue-622","links":{},"stock":{"item_id":622,"product_id":622,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-l-blue-622.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"612","_score":1,"_source":{"id":612,"sku":"MS08-XS-Black","name":"Strike Endurance Tee-XS-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

          While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

          \n

          • Loose fit.
          • Ribbed cuffs/collar.
          • Machine wash/dry.

          ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"strike-endurance-tee-xs-black-612","links":{},"stock":{"item_id":612,"product_id":612,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-03-12 11:23:38","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xs-black-612.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"632","_score":1,"_source":{"id":632,"sku":"MT01-S-Orange","name":"Erikssen CoolTech™ Fitness Tank-S-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

          \n

          • Red performance tank.
          • Slight scoop neckline.
          • Reflectivity.
          • Machine wash/dry.

          ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erikssen-cooltech-and-trade-fitness-tank-s-orange-632","links":{},"stock":{"item_id":632,"product_id":632,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-s-orange-632.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"634","_score":1,"_source":{"id":634,"sku":"MT01-M-Gray","name":"Erikssen CoolTech™ Fitness Tank-M-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

          \n

          • Red performance tank.
          • Slight scoop neckline.
          • Reflectivity.
          • Machine wash/dry.

          ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erikssen-cooltech-and-trade-fitness-tank-m-gray-634","links":{},"stock":{"item_id":634,"product_id":634,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-m-gray-634.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"637","_score":1,"_source":{"id":637,"sku":"MT01-L-Gray","name":"Erikssen CoolTech™ Fitness Tank-L-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

          \n

          • Red performance tank.
          • Slight scoop neckline.
          • Reflectivity.
          • Machine wash/dry.

          ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erikssen-cooltech-and-trade-fitness-tank-l-gray-637","links":{},"stock":{"item_id":637,"product_id":637,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-l-gray-637.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"642","_score":1,"_source":{"id":642,"sku":"MT01-XL-Red","name":"Erikssen CoolTech™ Fitness Tank-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

          \n

          • Red performance tank.
          • Slight scoop neckline.
          • Reflectivity.
          • Machine wash/dry.

          ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erikssen-cooltech-and-trade-fitness-tank-xl-red-642","links":{},"stock":{"item_id":642,"product_id":642,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xl-red-642.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"606","_score":1,"_source":{"id":606,"sku":"MS07-L-Green","name":"Deion Long-Sleeve EverCool™ Tee-L-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

          \n

          • Fitted.
          • Contrast inner neck tape.
          • Machine wash/dry.

          ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"deion-long-sleeve-evercool-and-trade-tee-l-green-606","links":{},"stock":{"item_id":606,"product_id":606,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-l-green-606.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"604","_score":1,"_source":{"id":604,"sku":"MS07-M-White","name":"Deion Long-Sleeve EverCool™ Tee-M-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

          \n

          • Fitted.
          • Contrast inner neck tape.
          • Machine wash/dry.

          ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"deion-long-sleeve-evercool-and-trade-tee-m-white-604","links":{},"stock":{"item_id":604,"product_id":604,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-m-white-604.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"621","_score":1,"_source":{"id":621,"sku":"MS08-L-Black","name":"Strike Endurance Tee-L-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

          \n

          • Loose fit.
          • Ribbed cuffs/collar.
          • Machine wash/dry.

          ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"strike-endurance-tee-l-black-621","links":{},"stock":{"item_id":621,"product_id":621,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-l-black-621.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"614","_score":1,"_source":{"id":614,"sku":"MS08-XS-Red","name":"Strike Endurance Tee-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

          \n

          • Loose fit.
          • Ribbed cuffs/collar.
          • Machine wash/dry.

          ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"strike-endurance-tee-xs-red-614","links":{},"stock":{"item_id":614,"product_id":614,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xs-red-614.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"628","_score":1,"_source":{"id":628,"sku":"MT01-XS-Gray","name":"Erikssen CoolTech™ Fitness Tank-XS-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

          \n

          • Red performance tank.
          • Slight scoop neckline.
          • Reflectivity.
          • Machine wash/dry.

          ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erikssen-cooltech-and-trade-fitness-tank-xs-gray-628","links":{},"stock":{"item_id":628,"product_id":628,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xs-gray-628.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"518","_score":1,"_source":{"id":518,"sku":"MS03-XS-Orange","name":"Balboa Persistence Tee-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

          \n

          • Crew neckline.
          • Semi-fitted.
          • Cocona® performance fabric.
          • Machine wash/dry.

          ","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"balboa-persistence-tee-xs-orange-518","links":{},"stock":{"item_id":518,"product_id":518,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xs-orange-518.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"513","_score":1,"_source":{"id":513,"sku":"MS12-XL-Blue","name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

          \n

          • Red polyester tee.
          • Crew neckline.
          • Cocona® performance fabric.
          • Machine wash/dry.

          ","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-crew-neck-xl-blue-513","links":{},"stock":{"item_id":513,"product_id":513,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xl-blue-513.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"521","_score":1,"_source":{"id":521,"sku":"MS03-S-Orange","name":"Balboa Persistence Tee-S-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

          \n

          • Crew neckline.
          • Semi-fitted.
          • Cocona® performance fabric.
          • Machine wash/dry.

          ","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"balboa-persistence-tee-s-orange-521","links":{},"stock":{"item_id":521,"product_id":521,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-s-orange-521.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"504","_score":1,"_source":{"id":504,"sku":"MS12-S-Blue","name":"Atomic Endurance Running Tee (Crew-Neck)-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

          \n

          • Red polyester tee.
          • Crew neckline.
          • Cocona® performance fabric.
          • Machine wash/dry.

          ","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-crew-neck-s-blue-504","links":{},"stock":{"item_id":504,"product_id":504,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-s-blue-504.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"502","_score":1,"_source":{"id":502,"sku":"MS12-XS-Red","name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

          \n

          • Red polyester tee.
          • Crew neckline.
          • Cocona® performance fabric.
          • Machine wash/dry.

          ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-crew-neck-xs-red-502","links":{},"stock":{"item_id":502,"product_id":502,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xs-red-502.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"510","_score":1,"_source":{"id":510,"sku":"MS12-L-Blue","name":"Atomic Endurance Running Tee (Crew-Neck)-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

          \n

          • Red polyester tee.
          • Crew neckline.
          • Cocona® performance fabric.
          • Machine wash/dry.

          ","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-crew-neck-l-blue-510","links":{},"stock":{"item_id":510,"product_id":510,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-l-blue-510.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"560","_score":1,"_source":{"id":560,"sku":"MS01-XL-Black","name":"Aero Daily Fitness Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

          Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

          \n

          Relaxed fit.
          Short-Sleeve.
          Machine wash/dry.

          ","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"aero-daily-fitness-tee-xl-black-560","links":{},"stock":{"item_id":560,"product_id":560,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xl-black-560.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"573","_score":1,"_source":{"id":573,"sku":"MS02-L-Black","name":"Ryker LumaTech™ Tee (V-neck)-L-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

          Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

          \n

          • Relaxed fit.
          • Short-Sleeve.
          • Machine wash/dry.

          ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-v-neck-l-black-573","links":{},"stock":{"item_id":573,"product_id":573,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-l-black-573.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"585","_score":1,"_source":{"id":585,"sku":"MS10-S-Red","name":"Logan HeatTec® Tee-S-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

          Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

          \n

          • Semi-fitted.
          • Crew neckline.
          • Machine wash/tumble dry.

          ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"logan-heattec-and-reg-tee-s-red-585","links":{},"stock":{"item_id":585,"product_id":585,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-s-red-585.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"578","_score":1,"_source":{"id":578,"sku":"MS02-XL-Gray","name":"Ryker LumaTech™ Tee (V-neck)-XL-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

          Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

          \n

          • Relaxed fit.
          • Short-Sleeve.
          • Machine wash/dry.

          ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-v-neck-xl-gray-578","links":{},"stock":{"item_id":578,"product_id":578,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xl-gray-578.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"593","_score":1,"_source":{"id":593,"sku":"MS10-XL-Blue","name":"Logan HeatTec® Tee-XL-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

          Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

          \n

          • Semi-fitted.
          • Crew neckline.
          • Machine wash/tumble dry.

          ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"logan-heattec-and-reg-tee-xl-blue-593","links":{},"stock":{"item_id":593,"product_id":593,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xl-blue-593.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"599","_score":1,"_source":{"id":599,"sku":"MS07-S-Black","name":"Deion Long-Sleeve EverCool™ Tee-S-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

          \n

          • Fitted.
          • Contrast inner neck tape.
          • Machine wash/dry.

          ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"deion-long-sleeve-evercool-and-trade-tee-s-black-599","links":{},"stock":{"item_id":599,"product_id":599,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-s-black-599.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"587","_score":1,"_source":{"id":587,"sku":"MS10-M-Blue","name":"Logan HeatTec® Tee-M-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

          Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

          \n

          • Semi-fitted.
          • Crew neckline.
          • Machine wash/tumble dry.

          ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"logan-heattec-and-reg-tee-m-blue-587","links":{},"stock":{"item_id":587,"product_id":587,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-m-blue-587.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"586","_score":1,"_source":{"id":586,"sku":"MS10-M-Black","name":"Logan HeatTec® Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

          Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

          \n

          • Semi-fitted.
          • Crew neckline.
          • Machine wash/tumble dry.

          ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"logan-heattec-and-reg-tee-m-black-586","links":{},"stock":{"item_id":586,"product_id":586,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-m-black-586.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"542","_score":1,"_source":{"id":542,"sku":"MS06-L-Green","name":"Zoltan Gym Tee-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

          \n

          • Relaxed fit.
          • Crew neckline.
          • Machine wash/dry.

          ","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoltan-gym-tee-l-green-542","links":{},"stock":{"item_id":542,"product_id":542,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-l-green-542.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"766","_score":1,"_source":{"id":766,"sku":"MP03-36-Green","name":"Geo Insulated Jogging Pant-36-Green","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

          In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

          \n

          • Black polyester spandex pants with zipper pockets.
          • Reflective safety accents.
          • Loose fit.
          • On-seam pockets.
          • 8\" leg zips. 32\" inseam.
          • Machine wash/dry.

          ","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"geo-insulated-jogging-pant-36-green-766","links":{},"stock":{"item_id":766,"product_id":766,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-36-green-766.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"772","_score":1,"_source":{"id":772,"sku":"MP04-33-Black","name":"Supernova Sport Pant-33-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

          Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

          \n

          • Dark heather gray straight leg cotton pants.
          • Relaxed fit.
          • Internal drawstring.
          • Machine wash/dry.

          ","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"supernova-sport-pant-33-black-772","links":{},"stock":{"item_id":772,"product_id":772,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-33-black-772.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"774","_score":1,"_source":{"id":774,"sku":"MP04-33-Green","name":"Supernova Sport Pant-33-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

          Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

          \n

          • Dark heather gray straight leg cotton pants.
          • Relaxed fit.
          • Internal drawstring.
          • Machine wash/dry.

          ","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","color":"53","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"supernova-sport-pant-33-green-774","links":{},"stock":{"item_id":774,"product_id":774,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-33-green-774.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"783","_score":1,"_source":{"id":783,"sku":"MP05-32-Blue","name":"Kratos Gym Pant-32-Blue","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

          Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

          \n

          • Navy cotton straight leg pants.
          • Relaxed fit.
          • 2 side-seam pockets.
          • Internal zip pocket.
          • Drawstring waist.
          • Machine wash/dry.

          ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"kratos-gym-pant-32-blue-783","links":{},"stock":{"item_id":783,"product_id":783,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-32-blue-783.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"746","_score":1,"_source":{"id":746,"sku":"MP02-33-Blue","name":"Viktor LumaTech™ Pant-33-Blue","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001,"description":"

          You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

          \n

          • Dark gray polyester/spandex straight leg pants.
          • Elastic waistband and internal drawstring.
          • Relaxed fit.
          • Machine wash/dry.

          ","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","color":"50","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"viktor-lumatech-and-trade-pant-33-blue-746","links":{},"stock":{"item_id":746,"product_id":746,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-33-blue-746.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"745","_score":1,"_source":{"id":745,"sku":"MP02-32-Red","name":"Viktor LumaTech™ Pant-32-Red","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001,"description":"

          You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

          \n

          • Dark gray polyester/spandex straight leg pants.
          • Elastic waistband and internal drawstring.
          • Relaxed fit.
          • Machine wash/dry.

          ","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","color":"58","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"viktor-lumatech-and-trade-pant-32-red-745","links":{},"stock":{"item_id":745,"product_id":745,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-32-red-745.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"732","_score":1,"_source":{"id":732,"sku":"MP01-32-Purple","name":"Caesar Warm-Up Pant-32-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

          Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

          \n

          • Light gray heather knit straight leg pants.
          • Relaxed fit.
          • Inseam: 32\".
          • Machine wash/dry.
          • CoolTech™ wicking fabric.

          ","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","color":"57","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"caesar-warm-up-pant-32-purple-732","links":{},"stock":{"item_id":732,"product_id":732,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-32-purple-732.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"716","_score":1,"_source":{"id":716,"sku":"MT10-XL-Yellow","name":"Tiberius Gym Tank-XL-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

          Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

          \n

          • Yellow scoop neck cotton tank.
          • Comfortable, relaxed fit.
          • 55% Hemp / 45% Organic Cotton.
          • Pesticide- and herbicide-free hemp.

          ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tiberius-gym-tank-xl-yellow-716","links":{},"stock":{"item_id":716,"product_id":716,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-xl-yellow-716.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"737","_score":1,"_source":{"id":737,"sku":"MP01-34-Gray","name":"Caesar Warm-Up Pant-34-Gray","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

          Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

          \n

          • Light gray heather knit straight leg pants.
          • Relaxed fit.
          • Inseam: 32\".
          • Machine wash/dry.
          • CoolTech™ wicking fabric.

          ","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"caesar-warm-up-pant-34-gray-737","links":{},"stock":{"item_id":737,"product_id":737,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-34-gray-737.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"736","_score":1,"_source":{"id":736,"sku":"MP01-34-Black","name":"Caesar Warm-Up Pant-34-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

          Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

          \n

          • Light gray heather knit straight leg pants.
          • Relaxed fit.
          • Inseam: 32\".
          • Machine wash/dry.
          • CoolTech™ wicking fabric.

          ","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"caesar-warm-up-pant-34-black-736","links":{},"stock":{"item_id":736,"product_id":736,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-34-black-736.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"812","_score":1,"_source":{"id":812,"sku":"MP07-33-Blue","name":"Thorpe Track Pant-33-Blue","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

          Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

          \n

          • Moisture transfer properties.
          • 7% stretch.
          • Reflective safety trim.
          • Elastic drawcord waist.

          ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"thorpe-track-pant-33-blue-812","links":{},"stock":{"item_id":812,"product_id":812,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-33-blue-812.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"843","_score":1,"_source":{"id":843,"sku":"MP09-36-Black","name":"Livingston All-Purpose Tight-36-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

          It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

          \n

          • Breathable stretch organic cotton/spandex.
          • Compression fit
          • Hidden key pocket
          • Elastic waist with internal drawcord.

          ","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","color":"49","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"livingston-all-purpose-tight-36-black-843","links":{},"stock":{"item_id":843,"product_id":843,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-36-black-843.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"802","_score":1,"_source":{"id":802,"sku":"MP06-34-Green","name":"Mithra Warmup Pant-34-Green","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

          When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

          \n

          • Ankle zips.
          • Elasticized waistband with draw cord.
          • Dual hand pockets.
          • Reflective elements for low-light safety.

          ","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","color":"53","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"mithra-warmup-pant-34-green-802","links":{},"stock":{"item_id":802,"product_id":802,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-34-green-802.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"837","_score":1,"_source":{"id":837,"sku":"MP09-33-Black","name":"Livingston All-Purpose Tight-33-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

          It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

          \n

          • Breathable stretch organic cotton/spandex.
          • Compression fit
          • Hidden key pocket
          • Elastic waist with internal drawcord.

          ","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","color":"49","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"livingston-all-purpose-tight-33-black-837","links":{},"stock":{"item_id":837,"product_id":837,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-33-black-837.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"758","_score":1,"_source":{"id":758,"sku":"MP03-32-Red","name":"Geo Insulated Jogging Pant-32-Red","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

          In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

          \n

          • Black polyester spandex pants with zipper pockets.
          • Reflective safety accents.
          • Loose fit.
          • On-seam pockets.
          • 8\" leg zips. 32\" inseam.
          • Machine wash/dry.

          ","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"geo-insulated-jogging-pant-32-red-758","links":{},"stock":{"item_id":758,"product_id":758,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-32-red-758.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"760","_score":1,"_source":{"id":760,"sku":"MP03-33-Green","name":"Geo Insulated Jogging Pant-33-Green","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

          In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

          \n

          • Black polyester spandex pants with zipper pockets.
          • Reflective safety accents.
          • Loose fit.
          • On-seam pockets.
          • 8\" leg zips. 32\" inseam.
          • Machine wash/dry.

          ","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"geo-insulated-jogging-pant-33-green-760","links":{},"stock":{"item_id":760,"product_id":760,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-33-green-760.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"797","_score":1,"_source":{"id":797,"sku":"MP06-32-Orange","name":"Mithra Warmup Pant-32-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

          When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

          \n

          • Ankle zips.
          • Elasticized waistband with draw cord.
          • Dual hand pockets.
          • Reflective elements for low-light safety.

          ","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","color":"56","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-32-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"mithra-warmup-pant-32-orange-797","links":{},"stock":{"item_id":797,"product_id":797,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-32-orange-797.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"686","_score":1,"_source":{"id":686,"sku":"MT05-XL-Blue","name":"Rocco Gym Tank-XL-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

          Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

          \n

          • Light blue heather gray tank.
          • Quick-drying, moisture-wicking.
          • 4-way stretch construction.
          • Flatlock seams prevent chafing.
          • Mesh at back for breathability.
          • 100% Polyester.
          • UPF 50 protection.

          ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"rocco-gym-tank-xl-blue-686","links":{},"stock":{"item_id":686,"product_id":686,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-xl-blue-686.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"706","_score":1,"_source":{"id":706,"sku":"MT09-XS-Blue","name":"Sinbad Fitness Tank-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

          \n

          • Teal polyester tank.
          • Premium fit tank top.
          • Ultra lightweight.
          • Naturally odor-resistant.

          ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"sinbad-fitness-tank-xs-blue-706","links":{},"stock":{"item_id":706,"product_id":706,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-xs-blue-706.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"807","_score":1,"_source":{"id":807,"sku":"MP06","name":"Mithra Warmup Pant","attribute_set_id":10,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":28,"description":"

          When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

          \n

          • Ankle zips.
          • Elasticized waistband with draw cord.
          • Dual hand pockets.
          • Reflective elements for low-light safety.

          ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mithra-warmup-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,146,154,38,159],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,113],"pattern":"197","climate":[202,203,204,206,210,211],"slug":"mithra-warmup-pant-807","links":{},"stock":{"item_id":807,"product_id":807,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP06-32-Gray","id":795,"status":1,"name":"Mithra Warmup Pant-32-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"176","color":"52","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","url_key":"mithra-warmup-pant-32-gray","msrp_display_actual_price_type":"0"},{"sku":"MP06-32-Green","id":796,"status":1,"name":"Mithra Warmup Pant-32-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"176","color":"53","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","url_key":"mithra-warmup-pant-32-green","msrp_display_actual_price_type":"0"},{"sku":"MP06-32-Orange","id":797,"status":1,"name":"Mithra Warmup Pant-32-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"176","color":"56","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","url_key":"mithra-warmup-pant-32-orange","msrp_display_actual_price_type":"0"},{"sku":"MP06-33-Gray","id":798,"status":1,"name":"Mithra Warmup Pant-33-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"177","color":"52","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","url_key":"mithra-warmup-pant-33-gray","msrp_display_actual_price_type":"0"},{"sku":"MP06-33-Green","id":799,"status":1,"name":"Mithra Warmup Pant-33-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"177","color":"53","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","url_key":"mithra-warmup-pant-33-green","msrp_display_actual_price_type":"0"},{"sku":"MP06-33-Orange","id":800,"status":1,"name":"Mithra Warmup Pant-33-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"177","color":"56","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","url_key":"mithra-warmup-pant-33-orange","msrp_display_actual_price_type":"0"},{"sku":"MP06-34-Gray","id":801,"status":1,"name":"Mithra Warmup Pant-34-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"178","color":"52","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","url_key":"mithra-warmup-pant-34-gray","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MP06-34-Green","id":802,"status":1,"name":"Mithra Warmup Pant-34-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"178","color":"53","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","url_key":"mithra-warmup-pant-34-green","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MP06-34-Orange","id":803,"status":1,"name":"Mithra Warmup Pant-34-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"178","color":"56","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","url_key":"mithra-warmup-pant-34-orange","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MP06-36-Gray","id":804,"status":1,"name":"Mithra Warmup Pant-36-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"179","color":"52","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","url_key":"mithra-warmup-pant-36-gray","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MP06-36-Green","id":805,"status":1,"name":"Mithra Warmup Pant-36-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"179","color":"53","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","url_key":"mithra-warmup-pant-36-green","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MP06-36-Orange","id":806,"status":1,"name":"Mithra Warmup Pant-36-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"179","color":"56","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","url_key":"mithra-warmup-pant-36-orange","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001}],"configurable_options":[{"id":109,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":807,"attribute_code":"color"},{"id":108,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":807,"attribute_code":"size"}],"color_options":[52,53,56],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-807.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"885","_score":1,"_source":{"id":885,"sku":"MP12","name":"Cronus Yoga Pant ","attribute_set_id":10,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":48,"description":"

          Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

          \n

          • Drawstring waist.
          • Loose, straight-leg fit.
          • Lightweight cotton-recycled blend.
          • Front pockets with stitching detail.
          • Elastic ankle.

          ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cronus-yoga-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[38,33,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,115,109],"pattern":"197","climate":[204,205,206,208,210,211],"slug":"cronus-yoga-pant-885","links":{},"stock":{"item_id":885,"product_id":885,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP12-32-Black","id":873,"status":1,"name":"Cronus Yoga Pant -32-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"49","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","url_key":"cronus-yoga-pant-32-black","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"MP12-32-Blue","id":874,"status":1,"name":"Cronus Yoga Pant -32-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"50","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","url_key":"cronus-yoga-pant-32-blue","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"MP12-32-Red","id":875,"status":1,"name":"Cronus Yoga Pant -32-Red","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"58","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","url_key":"cronus-yoga-pant-32-red","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"MP12-33-Black","id":876,"status":1,"name":"Cronus Yoga Pant -33-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"49","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","url_key":"cronus-yoga-pant-33-black","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"MP12-33-Blue","id":877,"status":1,"name":"Cronus Yoga Pant -33-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"50","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","url_key":"cronus-yoga-pant-33-blue","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"MP12-33-Red","id":878,"status":1,"name":"Cronus Yoga Pant -33-Red","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"58","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","url_key":"cronus-yoga-pant-33-red","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"MP12-34-Black","id":879,"status":1,"name":"Cronus Yoga Pant -34-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"49","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","url_key":"cronus-yoga-pant-34-black","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"MP12-34-Blue","id":880,"status":1,"name":"Cronus Yoga Pant -34-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"50","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","url_key":"cronus-yoga-pant-34-blue","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"MP12-34-Red","id":881,"status":1,"name":"Cronus Yoga Pant -34-Red","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"58","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","url_key":"cronus-yoga-pant-34-red","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"MP12-36-Black","id":882,"status":1,"name":"Cronus Yoga Pant -36-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"49","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","url_key":"cronus-yoga-pant-36-black","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"MP12-36-Blue","id":883,"status":1,"name":"Cronus Yoga Pant -36-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"50","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","url_key":"cronus-yoga-pant-36-blue","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"MP12-36-Red","id":884,"status":1,"name":"Cronus Yoga Pant -36-Red","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"58","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","url_key":"cronus-yoga-pant-36-red","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001}],"configurable_options":[{"id":121,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":885,"attribute_code":"color"},{"id":120,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":885,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-885.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"868","_score":1,"_source":{"id":868,"sku":"MP11-34-Green","name":"Aether Gym Pant -34-Green","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

          The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

          \n

          • Pants/shorts convertible.
          • Lightweight moisture wicking.
          • Water repellent.
          • Belted waist.

          ","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"aether-gym-pant-34-green-868","links":{},"stock":{"item_id":868,"product_id":868,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-34-green-868.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"867","_score":1,"_source":{"id":867,"sku":"MP11-34-Brown","name":"Aether Gym Pant -34-Brown","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

          The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

          \n

          • Pants/shorts convertible.
          • Lightweight moisture wicking.
          • Water repellent.
          • Belted waist.

          ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","color":"51","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-34-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"aether-gym-pant-34-brown-867","links":{},"stock":{"item_id":867,"product_id":867,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-34-brown-867.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"857","_score":1,"_source":{"id":857,"sku":"MP10-36-Blue","name":"Orestes Yoga Pant -36-Blue","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

          The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

          \n

          • A yoga essential.
          • Breathable stretch organic cotton/spandex.
          • Standard Fit.

          ","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-yoga-pant-36-blue-857","links":{},"stock":{"item_id":857,"product_id":857,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-36-blue-857.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"883","_score":1,"_source":{"id":883,"sku":"MP12-36-Blue","name":"Cronus Yoga Pant -36-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

          Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

          \n

          • Drawstring waist.
          • Loose, straight-leg fit.
          • Lightweight cotton-recycled blend.
          • Front pockets with stitching detail.
          • Elastic ankle.

          ","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","color":"50","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cronus-yoga-pant-36-blue-883","links":{},"stock":{"item_id":883,"product_id":883,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-36-blue-883.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"887","_score":1,"_source":{"id":887,"sku":"MSH01-32-Blue","name":"Cobalt CoolTech™ Fitness Short-32-Blue","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

          It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

          \n

          • Light blue nylon shorts.
          • Relaxed fit.
          • 5\" inseam.
          • Machine wash/dry.

          ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","color":"50","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cobalt-cooltech-and-trade-fitness-short-32-blue-887","links":{},"stock":{"item_id":887,"product_id":887,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-32-blue-887.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"871","_score":1,"_source":{"id":871,"sku":"MP11-36-Green","name":"Aether Gym Pant -36-Green","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

          The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

          \n

          • Pants/shorts convertible.
          • Lightweight moisture wicking.
          • Water repellent.
          • Belted waist.

          ","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"aether-gym-pant-36-green-871","links":{},"stock":{"item_id":871,"product_id":871,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-36-green-871.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"863","_score":1,"_source":{"id":863,"sku":"MP11-33-Blue","name":"Aether Gym Pant -33-Blue","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

          The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

          \n

          • Pants/shorts convertible.
          • Lightweight moisture wicking.
          • Water repellent.
          • Belted waist.

          ","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"aether-gym-pant-33-blue-863","links":{},"stock":{"item_id":863,"product_id":863,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-33-blue-863.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"889","_score":1,"_source":{"id":889,"sku":"MSH01-33-Black","name":"Cobalt CoolTech™ Fitness Short-33-Black","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

          It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

          \n

          • Light blue nylon shorts.
          • Relaxed fit.
          • 5\" inseam.
          • Machine wash/dry.

          ","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","color":"49","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cobalt-cooltech-and-trade-fitness-short-33-black-889","links":{},"stock":{"item_id":889,"product_id":889,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-33-black-889.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"894","_score":1,"_source":{"id":894,"sku":"MSH01-34-Red","name":"Cobalt CoolTech™ Fitness Short-34-Red","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

          It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

          \n

          • Light blue nylon shorts.
          • Relaxed fit.
          • 5\" inseam.
          • Machine wash/dry.

          ","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","color":"58","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cobalt-cooltech-and-trade-fitness-short-34-red-894","links":{},"stock":{"item_id":894,"product_id":894,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-34-red-894.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"923","_score":1,"_source":{"id":923,"sku":"MSH04-34-Gray","name":"Torque Power Short-34-Gray","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

          Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

          \n

          • Light gray shorts.
          • Fitted design.
          • Elastic waistband.
          • Flat-seam construction.
          • 7\" inseam.
          • Machine wash/dry.

          ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","color":"52","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"torque-power-short-34-gray-923","links":{},"stock":{"item_id":923,"product_id":923,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-34-gray-923.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"949","_score":1,"_source":{"id":949,"sku":"MSH06-34-Blue","name":"Lono Yoga Short-34-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

          Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

          \n

          • Dark gray shorts with mesh accents.
          • Ultra flexible four-way stretch.
          • Flatlock seams and waistband.
          • Two pockets, phony fly.
          • Nylon/Lycra outer, Polyester/Lycra inner.

          ","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"lono-yoga-short-34-blue-949","links":{},"stock":{"item_id":949,"product_id":949,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-34-blue-949.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"941","_score":1,"_source":{"id":941,"sku":"MSH05-36-Gray","name":"Hawkeye Yoga Short-36-Gray","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

          \n

          • Dark gray shorts with red accents.
          • 92% Organic Cotton 8% Spandex.
          • Breathable stretch organic cotton.
          • Medium=8.0\" (21.0cm) inseam.

          ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","color":"52","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"hawkeye-yoga-short-36-gray-941","links":{},"stock":{"item_id":941,"product_id":941,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-36-gray-941.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"950","_score":1,"_source":{"id":950,"sku":"MSH06-34-Gray","name":"Lono Yoga Short-34-Gray","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

          Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

          \n

          • Dark gray shorts with mesh accents.
          • Ultra flexible four-way stretch.
          • Flatlock seams and waistband.
          • Two pockets, phony fly.
          • Nylon/Lycra outer, Polyester/Lycra inner.

          ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","color":"52","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"lono-yoga-short-34-gray-950","links":{},"stock":{"item_id":950,"product_id":950,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-34-gray-950.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"816","_score":1,"_source":{"id":816,"sku":"MP07-34-Purple","name":"Thorpe Track Pant-34-Purple","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

          Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

          \n

          • Moisture transfer properties.
          • 7% stretch.
          • Reflective safety trim.
          • Elastic drawcord waist.

          ","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","color":"57","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"thorpe-track-pant-34-purple-816","links":{},"stock":{"item_id":816,"product_id":816,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-34-purple-816.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"850","_score":1,"_source":{"id":850,"sku":"MP10-33-Black","name":"Orestes Yoga Pant -33-Black","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

          The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

          \n

          • A yoga essential.
          • Breathable stretch organic cotton/spandex.
          • Standard Fit.

          ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","color":"49","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-yoga-pant-33-black-850","links":{},"stock":{"item_id":850,"product_id":850,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-33-black-850.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"901","_score":1,"_source":{"id":901,"sku":"MSH02-34-Black","name":"Apollo Running Short-34-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

          Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

          \n

          • Black shorts with green accents.
          • Side pockets.
          • 4\" inseam.
          • Machine wash/dry.

          ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"apollo-running-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"apollo-running-short-34-black-901","links":{},"stock":{"item_id":901,"product_id":901,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-34-black-901.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"928","_score":1,"_source":{"id":928,"sku":"MSH04-36-Yellow","name":"Torque Power Short-36-Yellow","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

          Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

          \n

          • Light gray shorts.
          • Fitted design.
          • Elastic waistband.
          • Flat-seam construction.
          • 7\" inseam.
          • Machine wash/dry.

          ","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","color":"60","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-36-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"torque-power-short-36-yellow-928","links":{},"stock":{"item_id":928,"product_id":928,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-36-yellow-928.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"906","_score":1,"_source":{"id":906,"sku":"MSH03-32-Green","name":"Meteor Workout Short-32-Green","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

          Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

          \n

          • Royal blue shorts with light blue accents.
          • Interior drawstring waistband.
          • 7\" inseam.
          • Machine wash/dry.

          ","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"meteor-workout-short-32-green-906","links":{},"stock":{"item_id":906,"product_id":906,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-32-green-906.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"908","_score":1,"_source":{"id":908,"sku":"MSH03-33-Blue","name":"Meteor Workout Short-33-Blue","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

          Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

          \n

          • Royal blue shorts with light blue accents.
          • Interior drawstring waistband.
          • 7\" inseam.
          • Machine wash/dry.

          ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"meteor-workout-short-33-blue-908","links":{},"stock":{"item_id":908,"product_id":908,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-33-blue-908.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"936","_score":1,"_source":{"id":936,"sku":"MSH05-34-Black","name":"Hawkeye Yoga Short-34-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

          \n

          • Dark gray shorts with red accents.
          • 92% Organic Cotton 8% Spandex.
          • Breathable stretch organic cotton.
          • Medium=8.0\" (21.0cm) inseam.

          ","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"hawkeye-yoga-short-34-black-936","links":{},"stock":{"item_id":936,"product_id":936,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-34-black-936.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"931","_score":1,"_source":{"id":931,"sku":"MSH05-32-Blue","name":"Hawkeye Yoga Short-32-Blue","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

          \n

          • Dark gray shorts with red accents.
          • 92% Organic Cotton 8% Spandex.
          • Breathable stretch organic cotton.
          • Medium=8.0\" (21.0cm) inseam.

          ","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"hawkeye-yoga-short-32-blue-931","links":{},"stock":{"item_id":931,"product_id":931,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-32-blue-931.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"851","_score":1,"_source":{"id":851,"sku":"MP10-33-Blue","name":"Orestes Yoga Pant -33-Blue","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

          The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

          \n

          • A yoga essential.
          • Breathable stretch organic cotton/spandex.
          • Standard Fit.

          ","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-yoga-pant-33-blue-851","links":{},"stock":{"item_id":851,"product_id":851,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-33-blue-851.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"978","_score":1,"_source":{"id":978,"sku":"MSH08-36-Black","name":"Orestes Fitness Short-36-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

          You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

          \n

          • Black shorts with dark gray accents.
          • Elasticized waistband with interior drawstring.
          • Ventilating mesh detailing.
          • 100% polyester and recycled polyester.
          • Machine wash cold, tumble dry low.

          ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-fitness-short-36-black-978","links":{},"stock":{"item_id":978,"product_id":978,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-36-black-978.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"968","_score":1,"_source":{"id":968,"sku":"MSH07","name":"Rapha Sports Short","attribute_set_id":10,"price":35,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":35,"description":"

          For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

          \n

          • Black shorts with royal accents.
          • Compression liner.
          • Inseam: 8\".
          • Machine wash/dry.

          ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"rapha-sports-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,36,38,39],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"1","style_bottom":[116,105,108],"pattern":[197,199],"climate":[205,208,209],"slug":"rapha-sports-short-968","links":{},"stock":{"item_id":968,"product_id":968,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH07-32-Black","id":956,"status":1,"name":"Rapha Sports Short-32-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"176","color":"49","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","url_key":"rapha-sports-short-32-black","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH07-32-Blue","id":957,"status":1,"name":"Rapha Sports Short-32-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"176","color":"50","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","url_key":"rapha-sports-short-32-blue","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH07-32-Purple","id":958,"status":1,"name":"Rapha Sports Short-32-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"176","color":"57","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","url_key":"rapha-sports-short-32-purple","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH07-33-Black","id":959,"status":1,"name":"Rapha Sports Short-33-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"177","color":"49","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","url_key":"rapha-sports-short-33-black","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH07-33-Blue","id":960,"status":1,"name":"Rapha Sports Short-33-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"177","color":"50","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","url_key":"rapha-sports-short-33-blue","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH07-33-Purple","id":961,"status":1,"name":"Rapha Sports Short-33-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"177","color":"57","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","url_key":"rapha-sports-short-33-purple","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH07-34-Black","id":962,"status":1,"name":"Rapha Sports Short-34-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"178","color":"49","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","url_key":"rapha-sports-short-34-black","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH07-34-Blue","id":963,"status":1,"name":"Rapha Sports Short-34-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"178","color":"50","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","url_key":"rapha-sports-short-34-blue","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH07-34-Purple","id":964,"status":1,"name":"Rapha Sports Short-34-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"178","color":"57","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","url_key":"rapha-sports-short-34-purple","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH07-36-Black","id":965,"status":1,"name":"Rapha Sports Short-36-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"179","color":"49","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","url_key":"rapha-sports-short-36-black","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH07-36-Blue","id":966,"status":1,"name":"Rapha Sports Short-36-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"179","color":"50","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","url_key":"rapha-sports-short-36-blue","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH07-36-Purple","id":967,"status":1,"name":"Rapha Sports Short-36-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"179","color":"57","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","url_key":"rapha-sports-short-36-purple","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001}],"configurable_options":[{"id":135,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":968,"attribute_code":"color"},{"id":134,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":968,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-968.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"919","_score":1,"_source":{"id":919,"sku":"MSH04-32-Yellow","name":"Torque Power Short-32-Yellow","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

          Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

          \n

          • Light gray shorts.
          • Fitted design.
          • Elastic waistband.
          • Flat-seam construction.
          • 7\" inseam.
          • Machine wash/dry.

          ","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","color":"60","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-32-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"torque-power-short-32-yellow-919","links":{},"stock":{"item_id":919,"product_id":919,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-32-yellow-919.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"929","_score":1,"_source":{"id":929,"sku":"MSH04","name":"Torque Power Short","attribute_set_id":10,"price":32.5,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":32.5,"description":"

          Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

          \n

          • Light gray shorts.
          • Fitted design.
          • Elastic waistband.
          • Flat-seam construction.
          • 7\" inseam.
          • Machine wash/dry.

          ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"torque-power-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[205,212,206,208,209],"slug":"torque-power-short-929","links":{},"stock":{"item_id":929,"product_id":929,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH04-32-Gray","id":917,"status":1,"name":"Torque Power Short-32-Gray","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"52","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","url_key":"torque-power-short-32-gray","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH04-32-Purple","id":918,"status":1,"name":"Torque Power Short-32-Purple","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"57","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","url_key":"torque-power-short-32-purple","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH04-32-Yellow","id":919,"status":1,"name":"Torque Power Short-32-Yellow","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"60","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","url_key":"torque-power-short-32-yellow","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH04-33-Gray","id":920,"status":1,"name":"Torque Power Short-33-Gray","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"52","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","url_key":"torque-power-short-33-gray","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH04-33-Purple","id":921,"status":1,"name":"Torque Power Short-33-Purple","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"57","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","url_key":"torque-power-short-33-purple","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH04-33-Yellow","id":922,"status":1,"name":"Torque Power Short-33-Yellow","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"60","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","url_key":"torque-power-short-33-yellow","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH04-34-Gray","id":923,"status":1,"name":"Torque Power Short-34-Gray","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"52","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","url_key":"torque-power-short-34-gray","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH04-34-Purple","id":924,"status":1,"name":"Torque Power Short-34-Purple","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"57","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","url_key":"torque-power-short-34-purple","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH04-34-Yellow","id":925,"status":1,"name":"Torque Power Short-34-Yellow","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"60","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","url_key":"torque-power-short-34-yellow","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH04-36-Gray","id":926,"status":1,"name":"Torque Power Short-36-Gray","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"52","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","url_key":"torque-power-short-36-gray","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH04-36-Purple","id":927,"status":1,"name":"Torque Power Short-36-Purple","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"57","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","url_key":"torque-power-short-36-purple","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH04-36-Yellow","id":928,"status":1,"name":"Torque Power Short-36-Yellow","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"60","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","url_key":"torque-power-short-36-yellow","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001}],"configurable_options":[{"id":129,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"},{"value_index":60,"label":"Yellow"}],"product_id":929,"attribute_code":"color"},{"id":128,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":929,"attribute_code":"size"}],"color_options":[52,57,60],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-929.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"918","_score":1,"_source":{"id":918,"sku":"MSH04-32-Purple","name":"Torque Power Short-32-Purple","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

          Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

          \n

          • Light gray shorts.
          • Fitted design.
          • Elastic waistband.
          • Flat-seam construction.
          • 7\" inseam.
          • Machine wash/dry.

          ","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","color":"57","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"torque-power-short-32-purple-918","links":{},"stock":{"item_id":918,"product_id":918,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-32-purple-918.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1049","_score":1,"_source":{"id":1049,"sku":"WH01","name":"Mona Pullover Hoodlie","attribute_set_id":9,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

          • Light green heathered hoodie.
          • Long-Sleeve, pullover.
          • Long elliptical hem for extra coverage.
          • Deep button placket for layering.
          • Double rib design.
          • Mid layer, mid weight.
          • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mona-pullover-hoodlie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":[138,137],"pattern":"197","climate":[202,204,206,208],"slug":"mona-pullover-hoodlie-1049","links":{},"stock":{"item_id":1049,"product_id":1049,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH01-XS-Green","id":1034,"status":1,"name":"Mona Pullover Hoodlie-XS-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"167","color":"53","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","url_key":"mona-pullover-hoodlie-xs-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-XS-Orange","id":1035,"status":1,"name":"Mona Pullover Hoodlie-XS-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"167","color":"56","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","url_key":"mona-pullover-hoodlie-xs-orange","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-XS-Purple","id":1036,"status":1,"name":"Mona Pullover Hoodlie-XS-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"167","color":"57","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","url_key":"mona-pullover-hoodlie-xs-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-S-Green","id":1037,"status":1,"name":"Mona Pullover Hoodlie-S-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"168","color":"53","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","url_key":"mona-pullover-hoodlie-s-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-S-Orange","id":1038,"status":1,"name":"Mona Pullover Hoodlie-S-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"168","color":"56","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","url_key":"mona-pullover-hoodlie-s-orange","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-S-Purple","id":1039,"status":1,"name":"Mona Pullover Hoodlie-S-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"168","color":"57","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","url_key":"mona-pullover-hoodlie-s-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-M-Green","id":1040,"status":1,"name":"Mona Pullover Hoodlie-M-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"169","color":"53","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","url_key":"mona-pullover-hoodlie-m-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-M-Orange","id":1041,"status":1,"name":"Mona Pullover Hoodlie-M-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"169","color":"56","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","url_key":"mona-pullover-hoodlie-m-orange","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-M-Purple","id":1042,"status":1,"name":"Mona Pullover Hoodlie-M-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"169","color":"57","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","url_key":"mona-pullover-hoodlie-m-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-L-Green","id":1043,"status":1,"name":"Mona Pullover Hoodlie-L-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"170","color":"53","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","url_key":"mona-pullover-hoodlie-l-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-L-Orange","id":1044,"status":1,"name":"Mona Pullover Hoodlie-L-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"170","color":"56","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","url_key":"mona-pullover-hoodlie-l-orange","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-L-Purple","id":1045,"status":1,"name":"Mona Pullover Hoodlie-L-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"170","color":"57","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","url_key":"mona-pullover-hoodlie-l-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-XL-Green","id":1046,"status":1,"name":"Mona Pullover Hoodlie-XL-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"171","color":"53","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","url_key":"mona-pullover-hoodlie-xl-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-XL-Orange","id":1047,"status":1,"name":"Mona Pullover Hoodlie-XL-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"171","color":"56","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","url_key":"mona-pullover-hoodlie-xl-orange","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-XL-Purple","id":1048,"status":1,"name":"Mona Pullover Hoodlie-XL-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"171","color":"57","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","url_key":"mona-pullover-hoodlie-xl-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001}],"configurable_options":[{"id":147,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1049,"attribute_code":"color"},{"id":146,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1049,"attribute_code":"size"}],"color_options":[53,56,57],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-1049.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1014","_score":1,"_source":{"id":1014,"sku":"MSH11-34-Black","name":"Arcadio Gym Short-34-Black","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001,"description":"

          The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

          \n

          • Royal blue cotton shorts.
          • Built-in mesh brief.
          • 87% Spandex 13% Lycra.
          • Adjustable drawstring.

          ","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"arcadio-gym-short-34-black-1014","links":{},"stock":{"item_id":1014,"product_id":1014,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-34-black-1014.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1027","_score":1,"_source":{"id":1027,"sku":"MSH12-34-Black","name":"Pierce Gym Short-34-Black","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

          The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

          \n

          • Dark red cotton shorts.
          • 87% Supplex, 13% Lycra.
          • Adjustable drawstring waistband.
          • Built-in mesh brief.
          • Machine wash cold, tumble dry low.

          ","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"pierce-gym-short-34-black-1027","links":{},"stock":{"item_id":1027,"product_id":1027,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-34-black-1027.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1024","_score":1,"_source":{"id":1024,"sku":"MSH12-33-Black","name":"Pierce Gym Short-33-Black","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

          The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

          \n

          • Dark red cotton shorts.
          • 87% Supplex, 13% Lycra.
          • Adjustable drawstring waistband.
          • Built-in mesh brief.
          • Machine wash cold, tumble dry low.

          ","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"pierce-gym-short-33-black-1024","links":{},"stock":{"item_id":1024,"product_id":1024,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-33-black-1024.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1029","_score":1,"_source":{"id":1029,"sku":"MSH12-34-Red","name":"Pierce Gym Short-34-Red","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

          The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

          \n

          • Dark red cotton shorts.
          • 87% Supplex, 13% Lycra.
          • Adjustable drawstring waistband.
          • Built-in mesh brief.
          • Machine wash cold, tumble dry low.

          ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","color":"58","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"pierce-gym-short-34-red-1029","links":{},"stock":{"item_id":1029,"product_id":1029,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-34-red-1029.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1028","_score":1,"_source":{"id":1028,"sku":"MSH12-34-Gray","name":"Pierce Gym Short-34-Gray","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

          The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

          \n

          • Dark red cotton shorts.
          • 87% Supplex, 13% Lycra.
          • Adjustable drawstring waistband.
          • Built-in mesh brief.
          • Machine wash cold, tumble dry low.

          ","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","color":"52","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"pierce-gym-short-34-gray-1028","links":{},"stock":{"item_id":1028,"product_id":1028,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-34-gray-1028.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1018","_score":1,"_source":{"id":1018,"sku":"MSH11-36-Blue","name":"Arcadio Gym Short-36-Blue","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001,"description":"

          The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

          \n

          • Royal blue cotton shorts.
          • Built-in mesh brief.
          • 87% Spandex 13% Lycra.
          • Adjustable drawstring.

          ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","color":"50","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"arcadio-gym-short-36-blue-1018","links":{},"stock":{"item_id":1018,"product_id":1018,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-36-blue-1018.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1048","_score":1,"_source":{"id":1048,"sku":"WH01-XL-Purple","name":"Mona Pullover Hoodlie-XL-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

          • Light green heathered hoodie.
          • Long-Sleeve, pullover.
          • Long elliptical hem for extra coverage.
          • Deep button placket for layering.
          • Double rib design.
          • Mid layer, mid weight.
          • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mona-pullover-hoodlie-xl-purple-1048","links":{},"stock":{"item_id":1048,"product_id":1048,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xl-purple-1048.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1040","_score":1,"_source":{"id":1040,"sku":"WH01-M-Green","name":"Mona Pullover Hoodlie-M-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

          • Light green heathered hoodie.
          • Long-Sleeve, pullover.
          • Long elliptical hem for extra coverage.
          • Deep button placket for layering.
          • Double rib design.
          • Mid layer, mid weight.
          • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mona-pullover-hoodlie-m-green-1040","links":{},"stock":{"item_id":1040,"product_id":1040,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-m-green-1040.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1046","_score":1,"_source":{"id":1046,"sku":"WH01-XL-Green","name":"Mona Pullover Hoodlie-XL-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

          • Light green heathered hoodie.
          • Long-Sleeve, pullover.
          • Long elliptical hem for extra coverage.
          • Deep button placket for layering.
          • Double rib design.
          • Mid layer, mid weight.
          • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mona-pullover-hoodlie-xl-green-1046","links":{},"stock":{"item_id":1046,"product_id":1046,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xl-green-1046.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1030","_score":1,"_source":{"id":1030,"sku":"MSH12-36-Black","name":"Pierce Gym Short-36-Black","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

          The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

          \n

          • Dark red cotton shorts.
          • 87% Supplex, 13% Lycra.
          • Adjustable drawstring waistband.
          • Built-in mesh brief.
          • Machine wash cold, tumble dry low.

          ","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"pierce-gym-short-36-black-1030","links":{},"stock":{"item_id":1030,"product_id":1030,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-36-black-1030.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"993","_score":1,"_source":{"id":993,"sku":"MSH09-36-Green","name":"Troy Yoga Short-36-Green","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

          The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

          \n

          • Navy polyester pinstripe shorts.
          • Woven fabric with moderate stretch.
          • 62% cotton/34% nylon/4% spandex.
          • LumaTech™ lining.

          ","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"troy-yoga-short-36-green-993","links":{},"stock":{"item_id":993,"product_id":993,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-36-green-993.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"988","_score":1,"_source":{"id":988,"sku":"MSH09-34-Black","name":"Troy Yoga Short-34-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

          The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

          \n

          • Navy polyester pinstripe shorts.
          • Woven fabric with moderate stretch.
          • 62% cotton/34% nylon/4% spandex.
          • LumaTech™ lining.

          ","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"troy-yoga-short-34-black-988","links":{},"stock":{"item_id":988,"product_id":988,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-34-black-988.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"962","_score":1,"_source":{"id":962,"sku":"MSH07-34-Black","name":"Rapha Sports Short-34-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

          For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

          \n

          • Black shorts with royal accents.
          • Compression liner.
          • Inseam: 8\".
          • Machine wash/dry.

          ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","color":"49","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"rapha-sports-short-34-black-962","links":{},"stock":{"item_id":962,"product_id":962,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-34-black-962.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"970","_score":1,"_source":{"id":970,"sku":"MSH08-32-Blue","name":"Orestes Fitness Short-32-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

          You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

          \n

          • Black shorts with dark gray accents.
          • Elasticized waistband with interior drawstring.
          • Ventilating mesh detailing.
          • 100% polyester and recycled polyester.
          • Machine wash cold, tumble dry low.

          ","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","color":"50","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-fitness-short-32-blue-970","links":{},"stock":{"item_id":970,"product_id":970,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-32-blue-970.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"951","_score":1,"_source":{"id":951,"sku":"MSH06-34-Red","name":"Lono Yoga Short-34-Red","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

          Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

          \n

          • Dark gray shorts with mesh accents.
          • Ultra flexible four-way stretch.
          • Flatlock seams and waistband.
          • Two pockets, phony fly.
          • Nylon/Lycra outer, Polyester/Lycra inner.

          ","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","color":"58","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"lono-yoga-short-34-red-951","links":{},"stock":{"item_id":951,"product_id":951,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-34-red-951.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"954","_score":1,"_source":{"id":954,"sku":"MSH06-36-Red","name":"Lono Yoga Short-36-Red","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

          Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

          \n

          • Dark gray shorts with mesh accents.
          • Ultra flexible four-way stretch.
          • Flatlock seams and waistband.
          • Two pockets, phony fly.
          • Nylon/Lycra outer, Polyester/Lycra inner.

          ","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","color":"58","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"lono-yoga-short-36-red-954","links":{},"stock":{"item_id":954,"product_id":954,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-36-red-954.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1011","_score":1,"_source":{"id":1011,"sku":"MSH11-33-Black","name":"Arcadio Gym Short-33-Black","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001,"description":"

          The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

          \n

          • Royal blue cotton shorts.
          • Built-in mesh brief.
          • 87% Spandex 13% Lycra.
          • Adjustable drawstring.

          ","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"arcadio-gym-short-33-black-1011","links":{},"stock":{"item_id":1011,"product_id":1011,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-33-black-1011.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1193","_score":1,"_source":{"id":1193,"sku":"WH11-L-Blue","name":"Eos V-Neck Hoodie-L-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

          Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

          \n

          Semi-fitted.
          Long-Sleeve.
          Machine wash/line dry.

          ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"eos-v-neck-hoodie-l-blue-1193","links":{},"stock":{"item_id":1193,"product_id":1193,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-l-blue-1193.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1183","_score":1,"_source":{"id":1183,"sku":"WH10","name":"Helena Hooded Fleece","attribute_set_id":9,"price":55,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":55,"description":"

          Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

          \n

          Full zip.
          Banded cuffs and waist.
          Front pockets.
          Machine wash/dry.

          ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"helena-hooded-fleece","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":[138,129],"pattern":"197","climate":[204,208],"slug":"helena-hooded-fleece-1183","links":{},"stock":{"item_id":1183,"product_id":1183,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH10-XS-Blue","id":1168,"status":1,"name":"Helena Hooded Fleece-XS-Blue","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"167","color":"50","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","url_key":"helena-hooded-fleece-xs-blue","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-XS-Gray","id":1169,"status":1,"name":"Helena Hooded Fleece-XS-Gray","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"167","color":"52","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","url_key":"helena-hooded-fleece-xs-gray","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-XS-Yellow","id":1170,"status":1,"name":"Helena Hooded Fleece-XS-Yellow","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"167","color":"60","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","url_key":"helena-hooded-fleece-xs-yellow","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-S-Blue","id":1171,"status":1,"name":"Helena Hooded Fleece-S-Blue","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"168","color":"50","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","url_key":"helena-hooded-fleece-s-blue","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-S-Gray","id":1172,"status":1,"name":"Helena Hooded Fleece-S-Gray","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"168","color":"52","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","url_key":"helena-hooded-fleece-s-gray","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-S-Yellow","id":1173,"status":1,"name":"Helena Hooded Fleece-S-Yellow","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"168","color":"60","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","url_key":"helena-hooded-fleece-s-yellow","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-M-Blue","id":1174,"status":1,"name":"Helena Hooded Fleece-M-Blue","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"169","color":"50","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","url_key":"helena-hooded-fleece-m-blue","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-M-Gray","id":1175,"status":1,"name":"Helena Hooded Fleece-M-Gray","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"169","color":"52","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","url_key":"helena-hooded-fleece-m-gray","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-M-Yellow","id":1176,"status":1,"name":"Helena Hooded Fleece-M-Yellow","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"169","color":"60","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","url_key":"helena-hooded-fleece-m-yellow","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-L-Blue","id":1177,"status":1,"name":"Helena Hooded Fleece-L-Blue","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"170","color":"50","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","url_key":"helena-hooded-fleece-l-blue","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-L-Gray","id":1178,"status":1,"name":"Helena Hooded Fleece-L-Gray","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"170","color":"52","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","url_key":"helena-hooded-fleece-l-gray","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-L-Yellow","id":1179,"status":1,"name":"Helena Hooded Fleece-L-Yellow","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"170","color":"60","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","url_key":"helena-hooded-fleece-l-yellow","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-XL-Blue","id":1180,"status":1,"name":"Helena Hooded Fleece-XL-Blue","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"171","color":"50","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","url_key":"helena-hooded-fleece-xl-blue","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-XL-Gray","id":1181,"status":1,"name":"Helena Hooded Fleece-XL-Gray","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"171","color":"52","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","url_key":"helena-hooded-fleece-xl-gray","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-XL-Yellow","id":1182,"status":1,"name":"Helena Hooded Fleece-XL-Yellow","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"171","color":"60","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","url_key":"helena-hooded-fleece-xl-yellow","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001}],"configurable_options":[{"id":165,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":60,"label":"Yellow"}],"product_id":1183,"attribute_code":"color"},{"id":164,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1183,"attribute_code":"size"}],"color_options":[50,52,60],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-1183.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1065","_score":1,"_source":{"id":1065,"sku":"WH02","name":"Hera Pullover Hoodie","attribute_set_id":9,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":48,"description":"

          Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

          \n

          • Teal with purple stiching.
          • Hoodie pullover.
          • Snug fit.

          ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hera-pullover-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":[138,137],"pattern":"197","climate":[202,204,206,208],"slug":"hera-pullover-hoodie-1065","links":{},"stock":{"item_id":1065,"product_id":1065,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH02-XS-Blue","id":1050,"status":1,"name":"Hera Pullover Hoodie-XS-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"167","color":"50","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","url_key":"hera-pullover-hoodie-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WH02-XS-Green","id":1051,"status":1,"name":"Hera Pullover Hoodie-XS-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"167","color":"53","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","url_key":"hera-pullover-hoodie-xs-green","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-XS-Orange","id":1052,"status":1,"name":"Hera Pullover Hoodie-XS-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"167","color":"56","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","url_key":"hera-pullover-hoodie-xs-orange","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-S-Blue","id":1053,"status":1,"name":"Hera Pullover Hoodie-S-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"168","color":"50","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","url_key":"hera-pullover-hoodie-s-blue","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-S-Green","id":1054,"status":1,"name":"Hera Pullover Hoodie-S-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"168","color":"53","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","url_key":"hera-pullover-hoodie-s-green","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-S-Orange","id":1055,"status":1,"name":"Hera Pullover Hoodie-S-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"168","color":"56","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","url_key":"hera-pullover-hoodie-s-orange","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-M-Blue","id":1056,"status":1,"name":"Hera Pullover Hoodie-M-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"169","color":"50","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","url_key":"hera-pullover-hoodie-m-blue","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-M-Green","id":1057,"status":1,"name":"Hera Pullover Hoodie-M-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"169","color":"53","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","url_key":"hera-pullover-hoodie-m-green","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-M-Orange","id":1058,"status":1,"name":"Hera Pullover Hoodie-M-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"169","color":"56","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","url_key":"hera-pullover-hoodie-m-orange","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-L-Blue","id":1059,"status":1,"name":"Hera Pullover Hoodie-L-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"170","color":"50","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","url_key":"hera-pullover-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-L-Green","id":1060,"status":1,"name":"Hera Pullover Hoodie-L-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"170","color":"53","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","url_key":"hera-pullover-hoodie-l-green","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-L-Orange","id":1061,"status":1,"name":"Hera Pullover Hoodie-L-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"170","color":"56","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","url_key":"hera-pullover-hoodie-l-orange","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-XL-Blue","id":1062,"status":1,"name":"Hera Pullover Hoodie-XL-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"171","color":"50","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","url_key":"hera-pullover-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-XL-Green","id":1063,"status":1,"name":"Hera Pullover Hoodie-XL-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"171","color":"53","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","url_key":"hera-pullover-hoodie-xl-green","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-XL-Orange","id":1064,"status":1,"name":"Hera Pullover Hoodie-XL-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"171","color":"56","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","url_key":"hera-pullover-hoodie-xl-orange","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001}],"configurable_options":[{"id":149,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":1065,"attribute_code":"color"},{"id":148,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1065,"attribute_code":"size"}],"color_options":[50,53,56],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-1065.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1120","_score":1,"_source":{"id":1120,"sku":"WH07-XS-Gray","name":"Phoebe Zipper Sweatshirt-XS-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

          A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

          \n

          • Gray full zip hoodie with yellow detail.
          • Hand-warmer pockets.
          • Zip MP3 pocket with outlet for earphones wire.
          • Polyester/cotton.
          • Washable.

          ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"phoebe-zipper-sweatshirt-xs-gray-1120","links":{},"stock":{"item_id":1120,"product_id":1120,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xs-gray-1120.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1116","_score":1,"_source":{"id":1116,"sku":"WH06-M-Purple","name":"Daphne Full-Zip Hoodie-M-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

          The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

          \n

          • Purple full zip hoodie with pink accents.
          • Heather texture.
          • 4-way stretch.
          • Pre-shrunk.
          • Hood lined in vegan Sherpa for added warmth.
          • Ribbed hem on hood and front pouch pocket.
          • 60% Cotton / 40% Polyester.

          ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"daphne-full-zip-hoodie-m-purple-1116","links":{},"stock":{"item_id":1116,"product_id":1116,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-m-purple-1116.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1126","_score":1,"_source":{"id":1126,"sku":"WH07-M-Gray","name":"Phoebe Zipper Sweatshirt-M-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

          A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

          \n

          • Gray full zip hoodie with yellow detail.
          • Hand-warmer pockets.
          • Zip MP3 pocket with outlet for earphones wire.
          • Polyester/cotton.
          • Washable.

          ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"phoebe-zipper-sweatshirt-m-gray-1126","links":{},"stock":{"item_id":1126,"product_id":1126,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-m-gray-1126.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1125","_score":1,"_source":{"id":1125,"sku":"WH07-S-White","name":"Phoebe Zipper Sweatshirt-S-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

          A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

          \n

          • Gray full zip hoodie with yellow detail.
          • Hand-warmer pockets.
          • Zip MP3 pocket with outlet for earphones wire.
          • Polyester/cotton.
          • Washable.

          ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"phoebe-zipper-sweatshirt-s-white-1125","links":{},"stock":{"item_id":1125,"product_id":1125,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-s-white-1125.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1137","_score":1,"_source":{"id":1137,"sku":"WH08-XS-Purple","name":"Cassia Funnel Sweatshirt-XS-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

          The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

          \n

          • White full zip hoodie with gray detail.
          • 65% Cotton/28% Nylon/7% Spandex.
          • Front slash pockets.
          • Tagless label at back neck.

          ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"cassia-funnel-sweatshirt-xs-purple-1137","links":{},"stock":{"item_id":1137,"product_id":1137,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xs-purple-1137.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1133","_score":1,"_source":{"id":1133,"sku":"WH07-XL-Purple","name":"Phoebe Zipper Sweatshirt-XL-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

          A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

          \n

          • Gray full zip hoodie with yellow detail.
          • Hand-warmer pockets.
          • Zip MP3 pocket with outlet for earphones wire.
          • Polyester/cotton.
          • Washable.

          ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"phoebe-zipper-sweatshirt-xl-purple-1133","links":{},"stock":{"item_id":1133,"product_id":1133,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xl-purple-1133.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1141","_score":1,"_source":{"id":1141,"sku":"WH08-S-White","name":"Cassia Funnel Sweatshirt-S-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

          The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

          \n

          • White full zip hoodie with gray detail.
          • 65% Cotton/28% Nylon/7% Spandex.
          • Front slash pockets.
          • Tagless label at back neck.

          ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"cassia-funnel-sweatshirt-s-white-1141","links":{},"stock":{"item_id":1141,"product_id":1141,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-s-white-1141.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1051","_score":1,"_source":{"id":1051,"sku":"WH02-XS-Green","name":"Hera Pullover Hoodie-XS-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:07","updated_at":"2017-11-06 12:17:07","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

          Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

          \n

          • Teal with purple stiching.
          • Hoodie pullover.
          • Snug fit.

          ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hera-pullover-hoodie-xs-green-1051","links":{},"stock":{"item_id":1051,"product_id":1051,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xs-green-1051.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1071","_score":1,"_source":{"id":1071,"sku":"WH03-S-Red","name":"Autumn Pullie-S-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

          With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

          \n

          • Cayenne Short-Sleeve roll neck sweatshirt.
          • Relaxed fit.
          • Short-Sleeves.
          • Machine wash/dry.

          ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"autumn-pullie-s-red-1071","links":{},"stock":{"item_id":1071,"product_id":1071,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-s-red-1071.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1062","_score":1,"_source":{"id":1062,"sku":"WH02-XL-Blue","name":"Hera Pullover Hoodie-XL-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

          Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

          \n

          • Teal with purple stiching.
          • Hoodie pullover.
          • Snug fit.

          ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hera-pullover-hoodie-xl-blue-1062","links":{},"stock":{"item_id":1062,"product_id":1062,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xl-blue-1062.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1058","_score":1,"_source":{"id":1058,"sku":"WH02-M-Orange","name":"Hera Pullover Hoodie-M-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

          Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

          \n

          • Teal with purple stiching.
          • Hoodie pullover.
          • Snug fit.

          ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hera-pullover-hoodie-m-orange-1058","links":{},"stock":{"item_id":1058,"product_id":1058,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-m-orange-1058.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1079","_score":1,"_source":{"id":1079,"sku":"WH03-XL-Purple","name":"Autumn Pullie-XL-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

          With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

          \n

          • Cayenne Short-Sleeve roll neck sweatshirt.
          • Relaxed fit.
          • Short-Sleeves.
          • Machine wash/dry.

          ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"autumn-pullie-xl-purple-1079","links":{},"stock":{"item_id":1079,"product_id":1079,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xl-purple-1079.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1068","_score":1,"_source":{"id":1068,"sku":"WH03-XS-Red","name":"Autumn Pullie-XS-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

          With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

          \n

          • Cayenne Short-Sleeve roll neck sweatshirt.
          • Relaxed fit.
          • Short-Sleeves.
          • Machine wash/dry.

          ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"autumn-pullie-xs-red-1068","links":{},"stock":{"item_id":1068,"product_id":1068,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xs-red-1068.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1056","_score":1,"_source":{"id":1056,"sku":"WH02-M-Blue","name":"Hera Pullover Hoodie-M-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

          Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

          \n

          • Teal with purple stiching.
          • Hoodie pullover.
          • Snug fit.

          ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hera-pullover-hoodie-m-blue-1056","links":{},"stock":{"item_id":1056,"product_id":1056,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-m-blue-1056.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1074","_score":1,"_source":{"id":1074,"sku":"WH03-M-Red","name":"Autumn Pullie-M-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

          With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

          \n

          • Cayenne Short-Sleeve roll neck sweatshirt.
          • Relaxed fit.
          • Short-Sleeves.
          • Machine wash/dry.

          ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"autumn-pullie-m-red-1074","links":{},"stock":{"item_id":1074,"product_id":1074,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-m-red-1074.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1080","_score":1,"_source":{"id":1080,"sku":"WH03-XL-Red","name":"Autumn Pullie-XL-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

          With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

          \n

          • Cayenne Short-Sleeve roll neck sweatshirt.
          • Relaxed fit.
          • Short-Sleeves.
          • Machine wash/dry.

          ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"autumn-pullie-xl-red-1080","links":{},"stock":{"item_id":1080,"product_id":1080,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xl-red-1080.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1083","_score":1,"_source":{"id":1083,"sku":"WH04-XS-Orange","name":"Miko Pullover Hoodie-XS-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

          \n

          • Teal two-tone hoodie.
          • Low scoop neckline.
          • Adjustable hood drawstrings.
          • Longer rounded hemline for extra back coverage.
          • Long-Sleeve style.

          ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"miko-pullover-hoodie-xs-orange-1083","links":{},"stock":{"item_id":1083,"product_id":1083,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xs-orange-1083.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1091","_score":1,"_source":{"id":1091,"sku":"WH04-L-Blue","name":"Miko Pullover Hoodie-L-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

          \n

          • Teal two-tone hoodie.
          • Low scoop neckline.
          • Adjustable hood drawstrings.
          • Longer rounded hemline for extra back coverage.
          • Long-Sleeve style.

          ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"miko-pullover-hoodie-l-blue-1091","links":{},"stock":{"item_id":1091,"product_id":1091,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-l-blue-1091.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1086","_score":1,"_source":{"id":1086,"sku":"WH04-S-Orange","name":"Miko Pullover Hoodie-S-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

          \n

          • Teal two-tone hoodie.
          • Low scoop neckline.
          • Adjustable hood drawstrings.
          • Longer rounded hemline for extra back coverage.
          • Long-Sleeve style.

          ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"miko-pullover-hoodie-s-orange-1086","links":{},"stock":{"item_id":1086,"product_id":1086,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-s-orange-1086.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1096","_score":1,"_source":{"id":1096,"sku":"WH04-XL-Purple","name":"Miko Pullover Hoodie-XL-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

          \n

          • Teal two-tone hoodie.
          • Low scoop neckline.
          • Adjustable hood drawstrings.
          • Longer rounded hemline for extra back coverage.
          • Long-Sleeve style.

          ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"miko-pullover-hoodie-xl-purple-1096","links":{},"stock":{"item_id":1096,"product_id":1096,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xl-purple-1096.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1098","_score":1,"_source":{"id":1098,"sku":"WH05-XS-Orange","name":"Selene Yoga Hoodie-XS-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

          The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

          \n

          • Ivory heather full zip 3/4 sleeve hoodie.
          • Zip pocket at arm for convenient storage.
          • 24.0\" body length.
          • 89% Polyester / 11% Spandex.

          ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"selene-yoga-hoodie-xs-orange-1098","links":{},"stock":{"item_id":1098,"product_id":1098,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xs-orange-1098.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1170","_score":1,"_source":{"id":1170,"sku":"WH10-XS-Yellow","name":"Helena Hooded Fleece-XS-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

          Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

          \n

          Full zip.
          Banded cuffs and waist.
          Front pockets.
          Machine wash/dry.

          ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helena-hooded-fleece-xs-yellow-1170","links":{},"stock":{"item_id":1170,"product_id":1170,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xs-yellow-1170.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1173","_score":1,"_source":{"id":1173,"sku":"WH10-S-Yellow","name":"Helena Hooded Fleece-S-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

          Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

          \n

          Full zip.
          Banded cuffs and waist.
          Front pockets.
          Machine wash/dry.

          ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helena-hooded-fleece-s-yellow-1173","links":{},"stock":{"item_id":1173,"product_id":1173,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-s-yellow-1173.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1184","_score":1,"_source":{"id":1184,"sku":"WH11-XS-Blue","name":"Eos V-Neck Hoodie-XS-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

          Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

          \n

          Semi-fitted.
          Long-Sleeve.
          Machine wash/line dry.

          ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"eos-v-neck-hoodie-xs-blue-1184","links":{},"stock":{"item_id":1184,"product_id":1184,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xs-blue-1184.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1181","_score":1,"_source":{"id":1181,"sku":"WH10-XL-Gray","name":"Helena Hooded Fleece-XL-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

          Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

          \n

          Full zip.
          Banded cuffs and waist.
          Front pockets.
          Machine wash/dry.

          ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helena-hooded-fleece-xl-gray-1181","links":{},"stock":{"item_id":1181,"product_id":1181,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xl-gray-1181.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1154","_score":1,"_source":{"id":1154,"sku":"WH09-XS-Red","name":"Ariel Roll Sleeve Sweatshirt-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2019-04-11 10:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

          Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

          \r\n

          • Purple two-tone lightweight hoodie.
          • 100% cotton.
          • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
          • Casual, comfy piece for running errands or weekend activities.

          ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xs-red","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"167","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","slug":"ariel-roll-sleeve-sweatshirt-xs-red-1154","links":{},"stock":{"item_id":1154,"product_id":1154,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-04-11 10:16:50","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xs-red-1154.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1162","_score":1,"_source":{"id":1162,"sku":"WH09-L-Purple","name":"Ariel Roll Sleeve Sweatshirt-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

          \n

          • Purple two-tone lightweight hoodie.
          • 100% cotton.
          • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
          • Casual, comfy piece for running errands or weekend activities.

          ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ariel-roll-sleeve-sweatshirt-l-purple-1162","links":{},"stock":{"item_id":1162,"product_id":1162,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-l-purple-1162.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1148","_score":1,"_source":{"id":1148,"sku":"WH08-XL-Orange","name":"Cassia Funnel Sweatshirt-XL-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

          The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

          \n

          • White full zip hoodie with gray detail.
          • 65% Cotton/28% Nylon/7% Spandex.
          • Front slash pockets.
          • Tagless label at back neck.

          ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"cassia-funnel-sweatshirt-xl-orange-1148","links":{},"stock":{"item_id":1148,"product_id":1148,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xl-orange-1148.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1150","_score":1,"_source":{"id":1150,"sku":"WH08-XL-White","name":"Cassia Funnel Sweatshirt-XL-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

          The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

          \n

          • White full zip hoodie with gray detail.
          • 65% Cotton/28% Nylon/7% Spandex.
          • Front slash pockets.
          • Tagless label at back neck.

          ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"cassia-funnel-sweatshirt-xl-white-1150","links":{},"stock":{"item_id":1150,"product_id":1150,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xl-white-1150.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1149","_score":1,"_source":{"id":1149,"sku":"WH08-XL-Purple","name":"Cassia Funnel Sweatshirt-XL-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

          The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

          \n

          • White full zip hoodie with gray detail.
          • 65% Cotton/28% Nylon/7% Spandex.
          • Front slash pockets.
          • Tagless label at back neck.

          ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"cassia-funnel-sweatshirt-xl-purple-1149","links":{},"stock":{"item_id":1149,"product_id":1149,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xl-purple-1149.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1197","_score":1,"_source":{"id":1197,"sku":"WH11-XL-Green","name":"Eos V-Neck Hoodie-XL-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

          Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

          \n

          Semi-fitted.
          Long-Sleeve.
          Machine wash/line dry.

          ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"eos-v-neck-hoodie-xl-green-1197","links":{},"stock":{"item_id":1197,"product_id":1197,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xl-green-1197.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1215","_score":1,"_source":{"id":1215,"sku":"WH12","name":"Circe Hooded Ice Fleece","attribute_set_id":9,"price":68,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":68,"description":"

          Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

          \n

          Full-zip front.
          Three-panel hood.
          Flatlock seams throughout.
          Welt hand pockets.
          Machine wash/dry.

          ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"circe-hooded-ice-fleece","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,156],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":[138,133,129],"pattern":"197","climate":[203,204,211],"slug":"circe-hooded-ice-fleece-1215","links":{},"stock":{"item_id":1215,"product_id":1215,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH12-XS-Gray","id":1200,"status":1,"name":"Circe Hooded Ice Fleece-XS-Gray","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"167","color":"52","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","url_key":"circe-hooded-ice-fleece-xs-gray","msrp_display_actual_price_type":"0"},{"sku":"WH12-XS-Green","id":1201,"status":1,"name":"Circe Hooded Ice Fleece-XS-Green","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"167","color":"53","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","url_key":"circe-hooded-ice-fleece-xs-green","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-XS-Purple","id":1202,"status":1,"name":"Circe Hooded Ice Fleece-XS-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"167","color":"57","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","url_key":"circe-hooded-ice-fleece-xs-purple","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-S-Gray","id":1203,"status":1,"name":"Circe Hooded Ice Fleece-S-Gray","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"168","color":"52","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","url_key":"circe-hooded-ice-fleece-s-gray","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-S-Green","id":1204,"status":1,"name":"Circe Hooded Ice Fleece-S-Green","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"168","color":"53","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","url_key":"circe-hooded-ice-fleece-s-green","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-S-Purple","id":1205,"status":1,"name":"Circe Hooded Ice Fleece-S-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"168","color":"57","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","url_key":"circe-hooded-ice-fleece-s-purple","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-M-Gray","id":1206,"status":1,"name":"Circe Hooded Ice Fleece-M-Gray","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"169","color":"52","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","url_key":"circe-hooded-ice-fleece-m-gray","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-M-Green","id":1207,"status":1,"name":"Circe Hooded Ice Fleece-M-Green","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"169","color":"53","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","url_key":"circe-hooded-ice-fleece-m-green","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-M-Purple","id":1208,"status":1,"name":"Circe Hooded Ice Fleece-M-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"169","color":"57","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","url_key":"circe-hooded-ice-fleece-m-purple","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-L-Gray","id":1209,"status":1,"name":"Circe Hooded Ice Fleece-L-Gray","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"170","color":"52","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","url_key":"circe-hooded-ice-fleece-l-gray","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-L-Green","id":1210,"status":1,"name":"Circe Hooded Ice Fleece-L-Green","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"170","color":"53","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","url_key":"circe-hooded-ice-fleece-l-green","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-L-Purple","id":1211,"status":1,"name":"Circe Hooded Ice Fleece-L-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"170","color":"57","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","url_key":"circe-hooded-ice-fleece-l-purple","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-XL-Gray","id":1212,"status":1,"name":"Circe Hooded Ice Fleece-XL-Gray","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"171","color":"52","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","url_key":"circe-hooded-ice-fleece-xl-gray","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-XL-Green","id":1213,"status":1,"name":"Circe Hooded Ice Fleece-XL-Green","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"171","color":"53","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","url_key":"circe-hooded-ice-fleece-xl-green","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-XL-Purple","id":1214,"status":1,"name":"Circe Hooded Ice Fleece-XL-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"171","color":"57","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","url_key":"circe-hooded-ice-fleece-xl-purple","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001}],"configurable_options":[{"id":169,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"}],"product_id":1215,"attribute_code":"color"},{"id":168,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1215,"attribute_code":"size"}],"color_options":[52,53,57],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-1215.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1225","_score":1,"_source":{"id":1225,"sku":"WJ01","name":"Stellar Solar Jacket","attribute_set_id":9,"price":75,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":75,"description":"

          Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

          \n

          • Loose fit.
          • Reflectivity.
          • Flat seams.
          • Machine wash/dry.
          • Deep pink jacket with front panel rouching

          ","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"stellar-solar-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,159,145],"eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":[118,121,125,129],"pattern":"197","climate":[202,206,208,210],"slug":"stellar-solar-jacket-1225","links":{},"stock":{"item_id":1225,"product_id":1225,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ01-S-Blue","id":1216,"status":1,"name":"Stellar Solar Jacket-S-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"168","color":"50","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","url_key":"stellar-solar-jacket-s-blue","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WJ01-S-Red","id":1217,"status":1,"name":"Stellar Solar Jacket-S-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"168","color":"58","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","url_key":"stellar-solar-jacket-s-red","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WJ01-S-Yellow","id":1218,"status":1,"name":"Stellar Solar Jacket-S-Yellow","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"168","color":"60","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","url_key":"stellar-solar-jacket-s-yellow","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WJ01-M-Blue","id":1219,"status":1,"name":"Stellar Solar Jacket-M-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"169","color":"50","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","url_key":"stellar-solar-jacket-m-blue","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WJ01-M-Red","id":1220,"status":1,"name":"Stellar Solar Jacket-M-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"169","color":"58","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","url_key":"stellar-solar-jacket-m-red","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WJ01-M-Yellow","id":1221,"status":1,"name":"Stellar Solar Jacket-M-Yellow","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"169","color":"60","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","url_key":"stellar-solar-jacket-m-yellow","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WJ01-L-Blue","id":1222,"status":1,"name":"Stellar Solar Jacket-L-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"170","color":"50","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","url_key":"stellar-solar-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WJ01-L-Red","id":1223,"status":1,"name":"Stellar Solar Jacket-L-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"170","color":"58","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","url_key":"stellar-solar-jacket-l-red","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WJ01-L-Yellow","id":1224,"status":1,"name":"Stellar Solar Jacket-L-Yellow","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"170","color":"60","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","url_key":"stellar-solar-jacket-l-yellow","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001}],"configurable_options":[{"id":171,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":1225,"attribute_code":"color"},{"id":170,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"}],"product_id":1225,"attribute_code":"size"}],"color_options":[50,58,60],"size_options":[168,169,170],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-1225.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1259","_score":1,"_source":{"id":1259,"sku":"WJ04-XS-Red","name":"Ingrid Running Jacket-XS-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

          The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
          • Slim fit.
          • Moisture-wicking fabric.
          • Two side pockets.
          • Zippered pocket at back waist.
          • Machine wash/dry.
          • Ivory specked full zip

          ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ingrid-running-jacket-xs-red-1259","links":{},"stock":{"item_id":1259,"product_id":1259,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xs-red-1259.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1277","_score":1,"_source":{"id":1277,"sku":"WJ05-S-Brown","name":"Riona Full Zip Jacket-S-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

          The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

          \n

          • Brown heather full zip rouched jacket.
          • Side hand pockets for extra storage.
          • High collar.
          • Thick cuffs for extra coverage.
          • Durable, shape retention material to longer wear.

          ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-s-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"riona-full-zip-jacket-s-brown-1277","links":{},"stock":{"item_id":1277,"product_id":1277,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-s-brown-1277.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1284","_score":1,"_source":{"id":1284,"sku":"WJ05-L-Green","name":"Riona Full Zip Jacket-L-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

          The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

          \n

          • Brown heather full zip rouched jacket.
          • Side hand pockets for extra storage.
          • High collar.
          • Thick cuffs for extra coverage.
          • Durable, shape retention material to longer wear.

          ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"riona-full-zip-jacket-l-green-1284","links":{},"stock":{"item_id":1284,"product_id":1284,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-l-green-1284.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1285","_score":1,"_source":{"id":1285,"sku":"WJ05-L-Red","name":"Riona Full Zip Jacket-L-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2019-04-12 06:18:41","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

          The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

          \r\n

          • Brown heather full zip rouched jacket.
          • Side hand pockets for extra storage.
          • High collar.
          • Thick cuffs for extra coverage.
          • Durable, shape retention material to longer wear.

          ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-l-red","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"170","eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","slug":"riona-full-zip-jacket-l-red-1285","links":{},"stock":{"item_id":1285,"product_id":1285,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-l-red-1285.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1298","_score":1,"_source":{"id":1298,"sku":"WJ07-M-Red","name":"Inez Full Zip Jacket-M-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

          The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

          \n

          • Purple heather inset full zip jacket.
          • Full zip hoodie.
          • Contrast binding along the zipper, hood and sleeves.
          • Inseam pockets for storage.
          • Thumbholes for comfortable fit.

          ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"inez-full-zip-jacket-m-red-1298","links":{},"stock":{"item_id":1298,"product_id":1298,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-m-red-1298.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1282","_score":1,"_source":{"id":1282,"sku":"WJ05-M-Red","name":"Riona Full Zip Jacket-M-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

          The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

          \n

          • Brown heather full zip rouched jacket.
          • Side hand pockets for extra storage.
          • High collar.
          • Thick cuffs for extra coverage.
          • Durable, shape retention material to longer wear.

          ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"riona-full-zip-jacket-m-red-1282","links":{},"stock":{"item_id":1282,"product_id":1282,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-m-red-1282.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1286","_score":1,"_source":{"id":1286,"sku":"WJ05-XL-Brown","name":"Riona Full Zip Jacket-XL-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

          The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

          \n

          • Brown heather full zip rouched jacket.
          • Side hand pockets for extra storage.
          • High collar.
          • Thick cuffs for extra coverage.
          • Durable, shape retention material to longer wear.

          ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xl-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"riona-full-zip-jacket-xl-brown-1286","links":{},"stock":{"item_id":1286,"product_id":1286,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xl-brown-1286.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1294","_score":1,"_source":{"id":1294,"sku":"WJ07-S-Purple","name":"Inez Full Zip Jacket-S-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

          The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

          \n

          • Purple heather inset full zip jacket.
          • Full zip hoodie.
          • Contrast binding along the zipper, hood and sleeves.
          • Inseam pockets for storage.
          • Thumbholes for comfortable fit.

          ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"inez-full-zip-jacket-s-purple-1294","links":{},"stock":{"item_id":1294,"product_id":1294,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-s-purple-1294.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1297","_score":1,"_source":{"id":1297,"sku":"WJ07-M-Purple","name":"Inez Full Zip Jacket-M-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

          The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

          \n

          • Purple heather inset full zip jacket.
          • Full zip hoodie.
          • Contrast binding along the zipper, hood and sleeves.
          • Inseam pockets for storage.
          • Thumbholes for comfortable fit.

          ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"inez-full-zip-jacket-m-purple-1297","links":{},"stock":{"item_id":1297,"product_id":1297,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-m-purple-1297.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1300","_score":1,"_source":{"id":1300,"sku":"WJ07-L-Purple","name":"Inez Full Zip Jacket-L-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

          The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

          \n

          • Purple heather inset full zip jacket.
          • Full zip hoodie.
          • Contrast binding along the zipper, hood and sleeves.
          • Inseam pockets for storage.
          • Thumbholes for comfortable fit.

          ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"inez-full-zip-jacket-l-purple-1300","links":{},"stock":{"item_id":1300,"product_id":1300,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-l-purple-1300.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1291","_score":1,"_source":{"id":1291,"sku":"WJ07-XS-Purple","name":"Inez Full Zip Jacket-XS-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

          The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

          \n

          • Purple heather inset full zip jacket.
          • Full zip hoodie.
          • Contrast binding along the zipper, hood and sleeves.
          • Inseam pockets for storage.
          • Thumbholes for comfortable fit.

          ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"inez-full-zip-jacket-xs-purple-1291","links":{},"stock":{"item_id":1291,"product_id":1291,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xs-purple-1291.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1273","_score":1,"_source":{"id":1273,"sku":"WJ04","name":"Ingrid Running Jacket","attribute_set_id":9,"price":84,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":84,"description":"

          The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
          • Slim fit.
          • Moisture-wicking fabric.
          • Two side pockets.
          • Zippered pocket at back waist.
          • Machine wash/dry.
          • Ivory specked full zip

          ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ingrid-running-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38,156],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_general":[118,120,129],"pattern":"197","climate":[204,208,210,211],"slug":"ingrid-running-jacket-1273","links":{},"stock":{"item_id":1273,"product_id":1273,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ04-XS-Orange","id":1258,"status":1,"name":"Ingrid Running Jacket-XS-Orange","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"167","color":"56","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","url_key":"ingrid-running-jacket-xs-orange","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-XS-Red","id":1259,"status":1,"name":"Ingrid Running Jacket-XS-Red","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"167","color":"58","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","url_key":"ingrid-running-jacket-xs-red","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-XS-White","id":1260,"status":1,"name":"Ingrid Running Jacket-XS-White","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"167","color":"59","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","url_key":"ingrid-running-jacket-xs-white","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-S-Orange","id":1261,"status":1,"name":"Ingrid Running Jacket-S-Orange","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"168","color":"56","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","url_key":"ingrid-running-jacket-s-orange","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-S-Red","id":1262,"status":1,"name":"Ingrid Running Jacket-S-Red","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"168","color":"58","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","url_key":"ingrid-running-jacket-s-red","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-S-White","id":1263,"status":1,"name":"Ingrid Running Jacket-S-White","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"168","color":"59","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","url_key":"ingrid-running-jacket-s-white","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-M-Orange","id":1264,"status":1,"name":"Ingrid Running Jacket-M-Orange","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"169","color":"56","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","url_key":"ingrid-running-jacket-m-orange","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-M-Red","id":1265,"status":1,"name":"Ingrid Running Jacket-M-Red","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"169","color":"58","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","url_key":"ingrid-running-jacket-m-red","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-M-White","id":1266,"status":1,"name":"Ingrid Running Jacket-M-White","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"169","color":"59","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","url_key":"ingrid-running-jacket-m-white","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-L-Orange","id":1267,"status":1,"name":"Ingrid Running Jacket-L-Orange","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"170","color":"56","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","url_key":"ingrid-running-jacket-l-orange","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-L-Red","id":1268,"status":1,"name":"Ingrid Running Jacket-L-Red","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"170","color":"58","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","url_key":"ingrid-running-jacket-l-red","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-L-White","id":1269,"status":1,"name":"Ingrid Running Jacket-L-White","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"170","color":"59","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","url_key":"ingrid-running-jacket-l-white","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-XL-Orange","id":1270,"status":1,"name":"Ingrid Running Jacket-XL-Orange","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"171","color":"56","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","url_key":"ingrid-running-jacket-xl-orange","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-XL-Red","id":1271,"status":1,"name":"Ingrid Running Jacket-XL-Red","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"171","color":"58","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","url_key":"ingrid-running-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-XL-White","id":1272,"status":1,"name":"Ingrid Running Jacket-XL-White","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"171","color":"59","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","url_key":"ingrid-running-jacket-xl-white","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001}],"configurable_options":[{"id":177,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":1273,"attribute_code":"color"},{"id":176,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1273,"attribute_code":"size"}],"color_options":[56,58,59],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-1273.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1236","_score":1,"_source":{"id":1236,"sku":"WJ02-L-Blue","name":"Josie Yoga Jacket-L-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

          When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

          \n

          • Slate rouched neck pullover.
          • Moisture-wicking fabric.
          • Hidden zipper.
          • Mesh armpit venting.
          • Dropped rear hem.

          ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"josie-yoga-jacket-l-blue-1236","links":{},"stock":{"item_id":1236,"product_id":1236,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-l-blue-1236.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1242","_score":1,"_source":{"id":1242,"sku":"WJ03-XS-Blue","name":"Augusta Pullover Jacket-XS-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

          It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

          \n

          • Pink half-zip pullover.
          • Front pouch pockets.
          • Fold-down collar.

          ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"augusta-pullover-jacket-xs-blue-1242","links":{},"stock":{"item_id":1242,"product_id":1242,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xs-blue-1242.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1240","_score":1,"_source":{"id":1240,"sku":"WJ02-XL-Gray","name":"Josie Yoga Jacket-XL-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

          When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

          \n

          • Slate rouched neck pullover.
          • Moisture-wicking fabric.
          • Hidden zipper.
          • Mesh armpit venting.
          • Dropped rear hem.

          ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"josie-yoga-jacket-xl-gray-1240","links":{},"stock":{"item_id":1240,"product_id":1240,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xl-gray-1240.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1234","_score":1,"_source":{"id":1234,"sku":"WJ02-M-Gray","name":"Josie Yoga Jacket-M-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

          When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

          \n

          • Slate rouched neck pullover.
          • Moisture-wicking fabric.
          • Hidden zipper.
          • Mesh armpit venting.
          • Dropped rear hem.

          ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"josie-yoga-jacket-m-gray-1234","links":{},"stock":{"item_id":1234,"product_id":1234,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-m-gray-1234.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1228","_score":1,"_source":{"id":1228,"sku":"WJ02-XS-Gray","name":"Josie Yoga Jacket-XS-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

          When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

          \n

          • Slate rouched neck pullover.
          • Moisture-wicking fabric.
          • Hidden zipper.
          • Mesh armpit venting.
          • Dropped rear hem.

          ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"josie-yoga-jacket-xs-gray-1228","links":{},"stock":{"item_id":1228,"product_id":1228,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xs-gray-1228.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1243","_score":1,"_source":{"id":1243,"sku":"WJ03-XS-Orange","name":"Augusta Pullover Jacket-XS-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

          It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

          \n

          • Pink half-zip pullover.
          • Front pouch pockets.
          • Fold-down collar.

          ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"augusta-pullover-jacket-xs-orange-1243","links":{},"stock":{"item_id":1243,"product_id":1243,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xs-orange-1243.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1217","_score":1,"_source":{"id":1217,"sku":"WJ01-S-Red","name":"Stellar Solar Jacket-S-Red","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

          Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

          \n

          • Loose fit.
          • Reflectivity.
          • Flat seams.
          • Machine wash/dry.
          • Deep pink jacket with front panel rouching

          ","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","color":"58","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stellar-solar-jacket-s-red-1217","links":{},"stock":{"item_id":1217,"product_id":1217,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-s-red-1217.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1208","_score":1,"_source":{"id":1208,"sku":"WH12-M-Purple","name":"Circe Hooded Ice Fleece-M-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

          Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

          \n

          Full-zip front.
          Three-panel hood.
          Flatlock seams throughout.
          Welt hand pockets.
          Machine wash/dry.

          ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"circe-hooded-ice-fleece-m-purple-1208","links":{},"stock":{"item_id":1208,"product_id":1208,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-m-purple-1208.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1209","_score":1,"_source":{"id":1209,"sku":"WH12-L-Gray","name":"Circe Hooded Ice Fleece-L-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

          Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

          \n

          Full-zip front.
          Three-panel hood.
          Flatlock seams throughout.
          Welt hand pockets.
          Machine wash/dry.

          ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"circe-hooded-ice-fleece-l-gray-1209","links":{},"stock":{"item_id":1209,"product_id":1209,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-l-gray-1209.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1218","_score":1,"_source":{"id":1218,"sku":"WJ01-S-Yellow","name":"Stellar Solar Jacket-S-Yellow","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

          Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

          \n

          • Loose fit.
          • Reflectivity.
          • Flat seams.
          • Machine wash/dry.
          • Deep pink jacket with front panel rouching

          ","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","color":"60","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stellar-solar-jacket-s-yellow-1218","links":{},"stock":{"item_id":1218,"product_id":1218,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-s-yellow-1218.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1201","_score":1,"_source":{"id":1201,"sku":"WH12-XS-Green","name":"Circe Hooded Ice Fleece-XS-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

          Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

          \n

          Full-zip front.
          Three-panel hood.
          Flatlock seams throughout.
          Welt hand pockets.
          Machine wash/dry.

          ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"circe-hooded-ice-fleece-xs-green-1201","links":{},"stock":{"item_id":1201,"product_id":1201,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xs-green-1201.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1301","_score":1,"_source":{"id":1301,"sku":"WJ07-L-Red","name":"Inez Full Zip Jacket-L-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

          The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

          \n

          • Purple heather inset full zip jacket.
          • Full zip hoodie.
          • Contrast binding along the zipper, hood and sleeves.
          • Inseam pockets for storage.
          • Thumbholes for comfortable fit.

          ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"inez-full-zip-jacket-l-red-1301","links":{},"stock":{"item_id":1301,"product_id":1301,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-l-red-1301.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1306","_score":1,"_source":{"id":1306,"sku":"WJ08-XS-Gray","name":"Adrienne Trek Jacket-XS-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

          You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

          \n

          • gray 1/4 zip pullover.
          • Comfortable, relaxed fit.
          • Front zip for venting.
          • Spacious, kangaroo pockets.
          • 27\" body length.
          • 95% Organic Cotton / 5% Spandex.

          ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"adrienne-trek-jacket-xs-gray-1306","links":{},"stock":{"item_id":1306,"product_id":1306,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xs-gray-1306.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1304","_score":1,"_source":{"id":1304,"sku":"WJ07-XL-Red","name":"Inez Full Zip Jacket-XL-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

          The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

          \n

          • Purple heather inset full zip jacket.
          • Full zip hoodie.
          • Contrast binding along the zipper, hood and sleeves.
          • Inseam pockets for storage.
          • Thumbholes for comfortable fit.

          ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"inez-full-zip-jacket-xl-red-1304","links":{},"stock":{"item_id":1304,"product_id":1304,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xl-red-1304.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1310","_score":1,"_source":{"id":1310,"sku":"WJ08-S-Orange","name":"Adrienne Trek Jacket-S-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

          You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

          \n

          • gray 1/4 zip pullover.
          • Comfortable, relaxed fit.
          • Front zip for venting.
          • Spacious, kangaroo pockets.
          • 27\" body length.
          • 95% Organic Cotton / 5% Spandex.

          ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"adrienne-trek-jacket-s-orange-1310","links":{},"stock":{"item_id":1310,"product_id":1310,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-s-orange-1310.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1260","_score":1,"_source":{"id":1260,"sku":"WJ04-XS-White","name":"Ingrid Running Jacket-XS-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

          The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
          • Slim fit.
          • Moisture-wicking fabric.
          • Two side pockets.
          • Zippered pocket at back waist.
          • Machine wash/dry.
          • Ivory specked full zip

          ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ingrid-running-jacket-xs-white-1260","links":{},"stock":{"item_id":1260,"product_id":1260,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xs-white-1260.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1207","_score":1,"_source":{"id":1207,"sku":"WH12-M-Green","name":"Circe Hooded Ice Fleece-M-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

          Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

          \n

          Full-zip front.
          Three-panel hood.
          Flatlock seams throughout.
          Welt hand pockets.
          Machine wash/dry.

          ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"circe-hooded-ice-fleece-m-green-1207","links":{},"stock":{"item_id":1207,"product_id":1207,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-m-green-1207.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1221","_score":1,"_source":{"id":1221,"sku":"WJ01-M-Yellow","name":"Stellar Solar Jacket-M-Yellow","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

          Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

          \n

          • Loose fit.
          • Reflectivity.
          • Flat seams.
          • Machine wash/dry.
          • Deep pink jacket with front panel rouching

          ","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","color":"60","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stellar-solar-jacket-m-yellow-1221","links":{},"stock":{"item_id":1221,"product_id":1221,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-m-yellow-1221.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1447","_score":1,"_source":{"id":1447,"sku":"WS04-XL-Green","name":"Layla Tee-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

          \n

          • Teal tee.
          • Long back hem.
          • Dropped shoulders.

          ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"layla-tee-xl-green-1447","links":{},"stock":{"item_id":1447,"product_id":1447,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xl-green-1447.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1417","_score":1,"_source":{"id":1417,"sku":"WS02","name":"Gabrielle Micro Sleeve Top","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":28,"description":"

          Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

          \n

          • Lime green v-neck tee.
          • Slimming, flattering fit.
          • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
          • Longer curved hem provides additional coverage.
          • 55% Hemp / 45% Organic Cotton.

          ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"gabrielle-micro-sleeve-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,146],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"gabrielle-micro-sleeve-top-1417","links":{},"stock":{"item_id":1417,"product_id":1417,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS02-XS-Blue","id":1402,"status":1,"name":"Gabrielle Micro Sleeve Top-XS-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"167","color":"50","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","url_key":"gabrielle-micro-sleeve-top-xs-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-XS-Green","id":1403,"status":1,"name":"Gabrielle Micro Sleeve Top-XS-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"167","color":"53","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","url_key":"gabrielle-micro-sleeve-top-xs-green","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-XS-Red","id":1404,"status":1,"name":"Gabrielle Micro Sleeve Top-XS-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"167","color":"58","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","url_key":"gabrielle-micro-sleeve-top-xs-red","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-S-Blue","id":1405,"status":1,"name":"Gabrielle Micro Sleeve Top-S-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"168","color":"50","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","url_key":"gabrielle-micro-sleeve-top-s-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-S-Green","id":1406,"status":1,"name":"Gabrielle Micro Sleeve Top-S-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"168","color":"53","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","url_key":"gabrielle-micro-sleeve-top-s-green","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-S-Red","id":1407,"status":1,"name":"Gabrielle Micro Sleeve Top-S-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"168","color":"58","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","url_key":"gabrielle-micro-sleeve-top-s-red","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-M-Blue","id":1408,"status":1,"name":"Gabrielle Micro Sleeve Top-M-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"169","color":"50","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","url_key":"gabrielle-micro-sleeve-top-m-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-M-Green","id":1409,"status":1,"name":"Gabrielle Micro Sleeve Top-M-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"169","color":"53","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","url_key":"gabrielle-micro-sleeve-top-m-green","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-M-Red","id":1410,"status":1,"name":"Gabrielle Micro Sleeve Top-M-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"169","color":"58","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","url_key":"gabrielle-micro-sleeve-top-m-red","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-L-Blue","id":1411,"status":1,"name":"Gabrielle Micro Sleeve Top-L-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"170","color":"50","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","url_key":"gabrielle-micro-sleeve-top-l-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-L-Green","id":1412,"status":1,"name":"Gabrielle Micro Sleeve Top-L-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"170","color":"53","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","url_key":"gabrielle-micro-sleeve-top-l-green","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-L-Red","id":1413,"status":1,"name":"Gabrielle Micro Sleeve Top-L-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"170","color":"58","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","url_key":"gabrielle-micro-sleeve-top-l-red","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-XL-Blue","id":1414,"status":1,"name":"Gabrielle Micro Sleeve Top-XL-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"171","color":"50","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","url_key":"gabrielle-micro-sleeve-top-xl-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-XL-Green","id":1415,"status":1,"name":"Gabrielle Micro Sleeve Top-XL-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"171","color":"53","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","url_key":"gabrielle-micro-sleeve-top-xl-green","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-XL-Red","id":1416,"status":1,"name":"Gabrielle Micro Sleeve Top-XL-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"171","color":"58","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","url_key":"gabrielle-micro-sleeve-top-xl-red","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001}],"configurable_options":[{"id":195,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1417,"attribute_code":"color"},{"id":194,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1417,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-1417.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1407","_score":1,"_source":{"id":1407,"sku":"WS02-S-Red","name":"Gabrielle Micro Sleeve Top-S-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

          Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

          \n

          • Lime green v-neck tee.
          • Slimming, flattering fit.
          • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
          • Longer curved hem provides additional coverage.
          • 55% Hemp / 45% Organic Cotton.

          ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gabrielle-micro-sleeve-top-s-red-1407","links":{},"stock":{"item_id":1407,"product_id":1407,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-s-red-1407.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1355","_score":1,"_source":{"id":1355,"sku":"WJ11-XS-Blue","name":"Neve Studio Dance Jacket-XS-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

          \n

          • Bright blue 1/4 zip pullover.
          • CoolTech™ liner is sweat-wicking.
          • Sleeve thumbholes.
          • Zipper garage to protect your chin.
          • Stretchy collar drawcords.

          ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"neve-studio-dance-jacket-xs-blue-1355","links":{},"stock":{"item_id":1355,"product_id":1355,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xs-blue-1355.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1358","_score":1,"_source":{"id":1358,"sku":"WJ11-S-Blue","name":"Neve Studio Dance Jacket-S-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

          \n

          • Bright blue 1/4 zip pullover.
          • CoolTech™ liner is sweat-wicking.
          • Sleeve thumbholes.
          • Zipper garage to protect your chin.
          • Stretchy collar drawcords.

          ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"neve-studio-dance-jacket-s-blue-1358","links":{},"stock":{"item_id":1358,"product_id":1358,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-s-blue-1358.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1362","_score":1,"_source":{"id":1362,"sku":"WJ11-M-Orange","name":"Neve Studio Dance Jacket-M-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

          \n

          • Bright blue 1/4 zip pullover.
          • CoolTech™ liner is sweat-wicking.
          • Sleeve thumbholes.
          • Zipper garage to protect your chin.
          • Stretchy collar drawcords.

          ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"neve-studio-dance-jacket-m-orange-1362","links":{},"stock":{"item_id":1362,"product_id":1362,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-m-orange-1362.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1360","_score":1,"_source":{"id":1360,"sku":"WJ11-M-Black","name":"Neve Studio Dance Jacket-M-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

          \n

          • Bright blue 1/4 zip pullover.
          • CoolTech™ liner is sweat-wicking.
          • Sleeve thumbholes.
          • Zipper garage to protect your chin.
          • Stretchy collar drawcords.

          ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"neve-studio-dance-jacket-m-black-1360","links":{},"stock":{"item_id":1360,"product_id":1360,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-m-black-1360.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1366","_score":1,"_source":{"id":1366,"sku":"WJ11-XL-Black","name":"Neve Studio Dance Jacket-XL-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

          \n

          • Bright blue 1/4 zip pullover.
          • CoolTech™ liner is sweat-wicking.
          • Sleeve thumbholes.
          • Zipper garage to protect your chin.
          • Stretchy collar drawcords.

          ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"neve-studio-dance-jacket-xl-black-1366","links":{},"stock":{"item_id":1366,"product_id":1366,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xl-black-1366.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1365","_score":1,"_source":{"id":1365,"sku":"WJ11-L-Orange","name":"Neve Studio Dance Jacket-L-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

          \n

          • Bright blue 1/4 zip pullover.
          • CoolTech™ liner is sweat-wicking.
          • Sleeve thumbholes.
          • Zipper garage to protect your chin.
          • Stretchy collar drawcords.

          ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"neve-studio-dance-jacket-l-orange-1365","links":{},"stock":{"item_id":1365,"product_id":1365,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-l-orange-1365.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1367","_score":1,"_source":{"id":1367,"sku":"WJ11-XL-Blue","name":"Neve Studio Dance Jacket-XL-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

          \n

          • Bright blue 1/4 zip pullover.
          • CoolTech™ liner is sweat-wicking.
          • Sleeve thumbholes.
          • Zipper garage to protect your chin.
          • Stretchy collar drawcords.

          ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"neve-studio-dance-jacket-xl-blue-1367","links":{},"stock":{"item_id":1367,"product_id":1367,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xl-blue-1367.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1380","_score":1,"_source":{"id":1380,"sku":"WJ06-L-Green","name":"Juno Jacket-L-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

          On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

          \n

          • Adjustable hood.
          • Fleece-lined, zippered hand pockets.
          • Thumbhole cuffs.
          • Full zip.
          • Mock-neck collar.
          • Machine wash/dry.

          ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juno-jacket-l-green-1380","links":{},"stock":{"item_id":1380,"product_id":1380,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-l-green-1380.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1368","_score":1,"_source":{"id":1368,"sku":"WJ11-XL-Orange","name":"Neve Studio Dance Jacket-XL-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

          \n

          • Bright blue 1/4 zip pullover.
          • CoolTech™ liner is sweat-wicking.
          • Sleeve thumbholes.
          • Zipper garage to protect your chin.
          • Stretchy collar drawcords.

          ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"neve-studio-dance-jacket-xl-orange-1368","links":{},"stock":{"item_id":1368,"product_id":1368,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xl-orange-1368.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1374","_score":1,"_source":{"id":1374,"sku":"WJ06-S-Green","name":"Juno Jacket-S-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

          On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

          \n

          • Adjustable hood.
          • Fleece-lined, zippered hand pockets.
          • Thumbhole cuffs.
          • Full zip.
          • Mock-neck collar.
          • Machine wash/dry.

          ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juno-jacket-s-green-1374","links":{},"stock":{"item_id":1374,"product_id":1374,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-s-green-1374.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1370","_score":1,"_source":{"id":1370,"sku":"WJ06-XS-Blue","name":"Juno Jacket-XS-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

          On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

          \n

          • Adjustable hood.
          • Fleece-lined, zippered hand pockets.
          • Thumbhole cuffs.
          • Full zip.
          • Mock-neck collar.
          • Machine wash/dry.

          ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juno-jacket-xs-blue-1370","links":{},"stock":{"item_id":1370,"product_id":1370,"stock_id":1,"qty":20,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xs-blue-1370.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1382","_score":1,"_source":{"id":1382,"sku":"WJ06-XL-Blue","name":"Juno Jacket-XL-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

          On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

          \n

          • Adjustable hood.
          • Fleece-lined, zippered hand pockets.
          • Thumbhole cuffs.
          • Full zip.
          • Mock-neck collar.
          • Machine wash/dry.

          ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juno-jacket-xl-blue-1382","links":{},"stock":{"item_id":1382,"product_id":1382,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xl-blue-1382.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1372","_score":1,"_source":{"id":1372,"sku":"WJ06-XS-Purple","name":"Juno Jacket-XS-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

          On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

          \n

          • Adjustable hood.
          • Fleece-lined, zippered hand pockets.
          • Thumbhole cuffs.
          • Full zip.
          • Mock-neck collar.
          • Machine wash/dry.

          ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juno-jacket-xs-purple-1372","links":{},"stock":{"item_id":1372,"product_id":1372,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xs-purple-1372.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1418","_score":1,"_source":{"id":1418,"sku":"WS03-XS-Blue","name":"Iris Workout Top-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

          \n

          • Pink heather rouched v-neck.
          • Scoop neckline.
          • Angled flat seams.
          • Moisture wicking.
          • Body skimming.
          • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

          ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"iris-workout-top-xs-blue-1418","links":{},"stock":{"item_id":1418,"product_id":1418,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xs-blue-1418.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1424","_score":1,"_source":{"id":1424,"sku":"WS03-M-Blue","name":"Iris Workout Top-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

          \n

          • Pink heather rouched v-neck.
          • Scoop neckline.
          • Angled flat seams.
          • Moisture wicking.
          • Body skimming.
          • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

          ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"iris-workout-top-m-blue-1424","links":{},"stock":{"item_id":1424,"product_id":1424,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-m-blue-1424.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1421","_score":1,"_source":{"id":1421,"sku":"WS03-S-Blue","name":"Iris Workout Top-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

          \n

          • Pink heather rouched v-neck.
          • Scoop neckline.
          • Angled flat seams.
          • Moisture wicking.
          • Body skimming.
          • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

          ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"iris-workout-top-s-blue-1421","links":{},"stock":{"item_id":1421,"product_id":1421,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-s-blue-1421.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1442","_score":1,"_source":{"id":1442,"sku":"WS04-M-Red","name":"Layla Tee-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

          \n

          • Teal tee.
          • Long back hem.
          • Dropped shoulders.

          ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"layla-tee-m-red-1442","links":{},"stock":{"item_id":1442,"product_id":1442,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-m-red-1442.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1416","_score":1,"_source":{"id":1416,"sku":"WS02-XL-Red","name":"Gabrielle Micro Sleeve Top-XL-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

          Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

          \n

          • Lime green v-neck tee.
          • Slimming, flattering fit.
          • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
          • Longer curved hem provides additional coverage.
          • 55% Hemp / 45% Organic Cotton.

          ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gabrielle-micro-sleeve-top-xl-red-1416","links":{},"stock":{"item_id":1416,"product_id":1416,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xl-red-1416.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1427","_score":1,"_source":{"id":1427,"sku":"WS03-L-Blue","name":"Iris Workout Top-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

          \n

          • Pink heather rouched v-neck.
          • Scoop neckline.
          • Angled flat seams.
          • Moisture wicking.
          • Body skimming.
          • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

          ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"iris-workout-top-l-blue-1427","links":{},"stock":{"item_id":1427,"product_id":1427,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-l-blue-1427.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1431","_score":1,"_source":{"id":1431,"sku":"WS03-XL-Green","name":"Iris Workout Top-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

          \n

          • Pink heather rouched v-neck.
          • Scoop neckline.
          • Angled flat seams.
          • Moisture wicking.
          • Body skimming.
          • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

          ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"iris-workout-top-xl-green-1431","links":{},"stock":{"item_id":1431,"product_id":1431,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xl-green-1431.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1459","_score":1,"_source":{"id":1459,"sku":"WS06-L-Gray","name":"Elisa EverCool™ Tee-L-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

          \n

          • Purple heather v-neck tee.
          • Short-Sleeves.
          • Luma EverCool™ fabric.
          • Machine wash/line dry.

          ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"elisa-evercool-and-trade-tee-l-gray-1459","links":{},"stock":{"item_id":1459,"product_id":1459,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-l-gray-1459.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1461","_score":1,"_source":{"id":1461,"sku":"WS06-L-Red","name":"Elisa EverCool™ Tee-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

          \n

          • Purple heather v-neck tee.
          • Short-Sleeves.
          • Luma EverCool™ fabric.
          • Machine wash/line dry.

          ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"elisa-evercool-and-trade-tee-l-red-1461","links":{},"stock":{"item_id":1461,"product_id":1461,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-l-red-1461.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1466","_score":1,"_source":{"id":1466,"sku":"WS07-XS-Black","name":"Juliana Short-Sleeve Tee-XS-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

          The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

          \n

          • Black scoop neck tee.
          • Side rouching.
          • Relaxed fit.

          ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juliana-short-sleeve-tee-xs-black-1466","links":{},"stock":{"item_id":1466,"product_id":1466,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xs-black-1466.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1452","_score":1,"_source":{"id":1452,"sku":"WS06-XS-Red","name":"Elisa EverCool™ Tee-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

          \n

          • Purple heather v-neck tee.
          • Short-Sleeves.
          • Luma EverCool™ fabric.
          • Machine wash/line dry.

          ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"elisa-evercool-and-trade-tee-xs-red-1452","links":{},"stock":{"item_id":1452,"product_id":1452,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xs-red-1452.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1383","_score":1,"_source":{"id":1383,"sku":"WJ06-XL-Green","name":"Juno Jacket-XL-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

          On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

          \n

          • Adjustable hood.
          • Fleece-lined, zippered hand pockets.
          • Thumbhole cuffs.
          • Full zip.
          • Mock-neck collar.
          • Machine wash/dry.

          ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juno-jacket-xl-green-1383","links":{},"stock":{"item_id":1383,"product_id":1383,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xl-green-1383.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1394","_score":1,"_source":{"id":1394,"sku":"WJ12-M-Purple","name":"Olivia 1/4 Zip Light Jacket-M-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

          Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

          \n

          • Loose fit.
          • Reflectivity.
          • Flat seams.
          • Machine wash/dry.

          ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"olivia-14-zip-light-jacket-m-purple-1394","links":{},"stock":{"item_id":1394,"product_id":1394,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-m-purple-1394.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1399","_score":1,"_source":{"id":1399,"sku":"WJ12-XL-Blue","name":"Olivia 1/4 Zip Light Jacket-XL-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

          Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

          \n

          • Loose fit.
          • Reflectivity.
          • Flat seams.
          • Machine wash/dry.

          ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"olivia-14-zip-light-jacket-xl-blue-1399","links":{},"stock":{"item_id":1399,"product_id":1399,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xl-blue-1399.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1398","_score":1,"_source":{"id":1398,"sku":"WJ12-XL-Black","name":"Olivia 1/4 Zip Light Jacket-XL-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

          Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

          \n

          • Loose fit.
          • Reflectivity.
          • Flat seams.
          • Machine wash/dry.

          ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"olivia-14-zip-light-jacket-xl-black-1398","links":{},"stock":{"item_id":1398,"product_id":1398,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xl-black-1398.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1329","_score":1,"_source":{"id":1329,"sku":"WJ09-M-Gray","name":"Jade Yoga Jacket-M-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


          If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

          \n

          • Seafoam 1/4 zip pullover with purple stitching.
          • Lightweight, quick-drying, water-resistant construction.
          • Shirred details at front and back for a feminine look.
          • Hood collapses into collar.
          • Mesh liner for breathability.
          • Front zip pockets.
          • Hem cinches at sideseam.
          • 100% Polyester.

          ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jade-yoga-jacket-m-gray-1329","links":{},"stock":{"item_id":1329,"product_id":1329,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-m-gray-1329.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1318","_score":1,"_source":{"id":1318,"sku":"WJ08-XL-Gray","name":"Adrienne Trek Jacket-XL-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

          You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

          \n

          • gray 1/4 zip pullover.
          • Comfortable, relaxed fit.
          • Front zip for venting.
          • Spacious, kangaroo pockets.
          • 27\" body length.
          • 95% Organic Cotton / 5% Spandex.

          ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"adrienne-trek-jacket-xl-gray-1318","links":{},"stock":{"item_id":1318,"product_id":1318,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xl-gray-1318.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1328","_score":1,"_source":{"id":1328,"sku":"WJ09-M-Blue","name":"Jade Yoga Jacket-M-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


          If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

          \n

          • Seafoam 1/4 zip pullover with purple stitching.
          • Lightweight, quick-drying, water-resistant construction.
          • Shirred details at front and back for a feminine look.
          • Hood collapses into collar.
          • Mesh liner for breathability.
          • Front zip pockets.
          • Hem cinches at sideseam.
          • 100% Polyester.

          ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jade-yoga-jacket-m-blue-1328","links":{},"stock":{"item_id":1328,"product_id":1328,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-m-blue-1328.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1346","_score":1,"_source":{"id":1346,"sku":"WJ10-M-Yellow","name":"Nadia Elements Shell-M-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

          \n

          • Zippered front.
          • Zippered side pockets.
          • Drawstring-adjustable waist and hood.
          • Machine wash/line dry.
          • Light blue 1/4 zip pullover.

          ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nadia-elements-shell-m-yellow-1346","links":{},"stock":{"item_id":1346,"product_id":1346,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-m-yellow-1346.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1338","_score":1,"_source":{"id":1338,"sku":"WJ10-XS-Black","name":"Nadia Elements Shell-XS-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

          \n

          • Zippered front.
          • Zippered side pockets.
          • Drawstring-adjustable waist and hood.
          • Machine wash/line dry.
          • Light blue 1/4 zip pullover.

          ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nadia-elements-shell-xs-black-1338","links":{},"stock":{"item_id":1338,"product_id":1338,"stock_id":1,"qty":74,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xs-black-1338.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1340","_score":1,"_source":{"id":1340,"sku":"WJ10-XS-Yellow","name":"Nadia Elements Shell-XS-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

          Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

          \n

          • Zippered front.
          • Zippered side pockets.
          • Drawstring-adjustable waist and hood.
          • Machine wash/line dry.
          • Light blue 1/4 zip pullover.

          ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nadia-elements-shell-xs-yellow-1340","links":{},"stock":{"item_id":1340,"product_id":1340,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xs-yellow-1340.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1476","_score":1,"_source":{"id":1476,"sku":"WS07-L-White","name":"Juliana Short-Sleeve Tee-L-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

          The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

          \n

          • Black scoop neck tee.
          • Side rouching.
          • Relaxed fit.

          ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juliana-short-sleeve-tee-l-white-1476","links":{},"stock":{"item_id":1476,"product_id":1476,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-l-white-1476.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1425","_score":1,"_source":{"id":1425,"sku":"WS03-M-Green","name":"Iris Workout Top-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

          \n

          • Pink heather rouched v-neck.
          • Scoop neckline.
          • Angled flat seams.
          • Moisture wicking.
          • Body skimming.
          • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

          ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"iris-workout-top-m-green-1425","links":{},"stock":{"item_id":1425,"product_id":1425,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-m-green-1425.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1510","_score":1,"_source":{"id":1510,"sku":"WS09-XL-Blue","name":"Tiffany Fitness Tee-XL-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

          You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

          \n

          • Teal soft scoop neck tee.
          • Contrast stitching pattern.
          • Machine wash/dry.

          ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tiffany-fitness-tee-xl-blue-1510","links":{},"stock":{"item_id":1510,"product_id":1510,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xl-blue-1510.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1504","_score":1,"_source":{"id":1504,"sku":"WS09-M-Blue","name":"Tiffany Fitness Tee-M-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

          You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

          \n

          • Teal soft scoop neck tee.
          • Contrast stitching pattern.
          • Machine wash/dry.

          ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tiffany-fitness-tee-m-blue-1504","links":{},"stock":{"item_id":1504,"product_id":1504,"stock_id":1,"qty":74,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-m-blue-1504.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1512","_score":1,"_source":{"id":1512,"sku":"WS09-XL-White","name":"Tiffany Fitness Tee-XL-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

          You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

          \n

          • Teal soft scoop neck tee.
          • Contrast stitching pattern.
          • Machine wash/dry.

          ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tiffany-fitness-tee-xl-white-1512","links":{},"stock":{"item_id":1512,"product_id":1512,"stock_id":1,"qty":40,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xl-white-1512.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1519","_score":1,"_source":{"id":1519,"sku":"WS10-S-Yellow","name":"Karissa V-Neck Tee-S-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

          The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

          \n

          • Pink heather soft v-neck tee.
          • Luma signature micro sleeves.
          • Semi-fitted.
          • Machine wash/dry.

          ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"karissa-v-neck-tee-s-yellow-1519","links":{},"stock":{"item_id":1519,"product_id":1519,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-s-yellow-1519.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1472","_score":1,"_source":{"id":1472,"sku":"WS07-M-Black","name":"Juliana Short-Sleeve Tee-M-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

          The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

          \n

          • Black scoop neck tee.
          • Side rouching.
          • Relaxed fit.

          ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juliana-short-sleeve-tee-m-black-1472","links":{},"stock":{"item_id":1472,"product_id":1472,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-m-black-1472.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1454","_score":1,"_source":{"id":1454,"sku":"WS06-S-Purple","name":"Elisa EverCool™ Tee-S-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

          \n

          • Purple heather v-neck tee.
          • Short-Sleeves.
          • Luma EverCool™ fabric.
          • Machine wash/line dry.

          ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"elisa-evercool-and-trade-tee-s-purple-1454","links":{},"stock":{"item_id":1454,"product_id":1454,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-s-purple-1454.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1473","_score":1,"_source":{"id":1473,"sku":"WS07-M-White","name":"Juliana Short-Sleeve Tee-M-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

          The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

          \n

          • Black scoop neck tee.
          • Side rouching.
          • Relaxed fit.

          ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juliana-short-sleeve-tee-m-white-1473","links":{},"stock":{"item_id":1473,"product_id":1473,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-m-white-1473.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1492","_score":1,"_source":{"id":1492,"sku":"WS08-L-Blue","name":"Minerva LumaTech™ V-Tee-L-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

          Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

          \n

          • Navy blue heather soft v-neck tee.
          • Flatlock seams for chafe-free comfort.
          • Relaxed cut.
          • Ultra-lightweight fabric.
          • Machine wash/dry.

          ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"minerva-lumatech-and-trade-v-tee-l-blue-1492","links":{},"stock":{"item_id":1492,"product_id":1492,"stock_id":1,"qty":28,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-l-blue-1492.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1500","_score":1,"_source":{"id":1500,"sku":"WS09-XS-White","name":"Tiffany Fitness Tee-XS-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

          You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

          \n

          • Teal soft scoop neck tee.
          • Contrast stitching pattern.
          • Machine wash/dry.

          ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tiffany-fitness-tee-xs-white-1500","links":{},"stock":{"item_id":1500,"product_id":1500,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xs-white-1500.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1506","_score":1,"_source":{"id":1506,"sku":"WS09-M-White","name":"Tiffany Fitness Tee-M-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

          You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

          \n

          • Teal soft scoop neck tee.
          • Contrast stitching pattern.
          • Machine wash/dry.

          ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tiffany-fitness-tee-m-white-1506","links":{},"stock":{"item_id":1506,"product_id":1506,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-m-white-1506.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1515","_score":1,"_source":{"id":1515,"sku":"WS10-XS-Red","name":"Karissa V-Neck Tee-XS-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

          The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

          \n

          • Pink heather soft v-neck tee.
          • Luma signature micro sleeves.
          • Semi-fitted.
          • Machine wash/dry.

          ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"karissa-v-neck-tee-xs-red-1515","links":{},"stock":{"item_id":1515,"product_id":1515,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xs-red-1515.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1537","_score":1,"_source":{"id":1537,"sku":"WS11-M-Orange","name":"Diva Gym Tee-M-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

          The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

          \n

          • Bright yellow v-neck tee.
          • Moisture-wicking fabric.
          • Long-Sleeves.
          • Machine wash/line dry.

          ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"diva-gym-tee-m-orange-1537","links":{},"stock":{"item_id":1537,"product_id":1537,"stock_id":1,"qty":80,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-m-orange-1537.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1525","_score":1,"_source":{"id":1525,"sku":"WS10-L-Yellow","name":"Karissa V-Neck Tee-L-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

          The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

          \n

          • Pink heather soft v-neck tee.
          • Luma signature micro sleeves.
          • Semi-fitted.
          • Machine wash/dry.

          ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"karissa-v-neck-tee-l-yellow-1525","links":{},"stock":{"item_id":1525,"product_id":1525,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-l-yellow-1525.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1539","_score":1,"_source":{"id":1539,"sku":"WS11-L-Green","name":"Diva Gym Tee-L-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

          The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

          \n

          • Bright yellow v-neck tee.
          • Moisture-wicking fabric.
          • Long-Sleeves.
          • Machine wash/line dry.

          ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"diva-gym-tee-l-green-1539","links":{},"stock":{"item_id":1539,"product_id":1539,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-l-green-1539.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1556","_score":1,"_source":{"id":1556,"sku":"WS12-L-Orange","name":"Radiant Tee-L-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

          So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

          \n

          • Salmon soft scoop neck tee.
          • Athletic, semi-form fit.
          • Flat seams prevent chafing.
          • 67% Organic Cotton / 28% Hemp / 5% Spandex.

          ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"radiant-tee-l-orange-1556","links":{},"stock":{"item_id":1556,"product_id":1556,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-l-orange-1556.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1568","_score":1,"_source":{"id":1568,"sku":"WS01-M-Black","name":"Gwyn Endurance Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

          When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

          \n

          • Short-Sleeves.
          • Machine wash/line dry.

          ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gwyn-endurance-tee-m-black-1568","links":{},"stock":{"item_id":1568,"product_id":1568,"stock_id":1,"qty":51,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-m-black-1568.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1562","_score":1,"_source":{"id":1562,"sku":"WS01-XS-Black","name":"Gwyn Endurance Tee-XS-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

          When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

          \n

          • Short-Sleeves.
          • Machine wash/line dry.

          ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gwyn-endurance-tee-xs-black-1562","links":{},"stock":{"item_id":1562,"product_id":1562,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-29 15:00:20","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xs-black-1562.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1609","_score":1,"_source":{"id":1609,"sku":"WB01","name":"Electra Bra Top","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":39,"description":"

          A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

          \n

          • Gray rouched bra top.
          • Attractive back straps feature contrasting motif fabric.
          • Interior bra top is lined with breathable mesh.
          • Elastic underband for superior support.
          • Removable cup inserts.
          • Chafe-free flat lock seams provide added comfort.

          ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"electra-bra-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,154,38],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"131","pattern":"197","climate":[205,209],"slug":"electra-bra-top-1609","links":{},"stock":{"item_id":1609,"product_id":1609,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WB01-XS-Black","id":1594,"status":1,"name":"Electra Bra Top-XS-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"167","color":"49","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","url_key":"electra-bra-top-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WB01-XS-Gray","id":1595,"status":1,"name":"Electra Bra Top-XS-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"167","color":"52","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","url_key":"electra-bra-top-xs-gray","msrp_display_actual_price_type":"0"},{"sku":"WB01-XS-Purple","id":1596,"status":1,"name":"Electra Bra Top-XS-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"167","color":"57","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","url_key":"electra-bra-top-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WB01-S-Black","id":1597,"status":1,"name":"Electra Bra Top-S-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"168","color":"49","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","url_key":"electra-bra-top-s-black","msrp_display_actual_price_type":"0"},{"sku":"WB01-S-Gray","id":1598,"status":1,"name":"Electra Bra Top-S-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"168","color":"52","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","url_key":"electra-bra-top-s-gray","msrp_display_actual_price_type":"0"},{"sku":"WB01-S-Purple","id":1599,"status":1,"name":"Electra Bra Top-S-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"168","color":"57","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","url_key":"electra-bra-top-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WB01-M-Black","id":1600,"status":1,"name":"Electra Bra Top-M-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"169","color":"49","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","url_key":"electra-bra-top-m-black","msrp_display_actual_price_type":"0"},{"sku":"WB01-M-Gray","id":1601,"status":1,"name":"Electra Bra Top-M-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"169","color":"52","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","url_key":"electra-bra-top-m-gray","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB01-M-Purple","id":1602,"status":1,"name":"Electra Bra Top-M-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"169","color":"57","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","url_key":"electra-bra-top-m-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB01-L-Black","id":1603,"status":1,"name":"Electra Bra Top-L-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"170","color":"49","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","url_key":"electra-bra-top-l-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB01-L-Gray","id":1604,"status":1,"name":"Electra Bra Top-L-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"170","color":"52","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","url_key":"electra-bra-top-l-gray","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB01-L-Purple","id":1605,"status":1,"name":"Electra Bra Top-L-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"170","color":"57","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","url_key":"electra-bra-top-l-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB01-XL-Black","id":1606,"status":1,"name":"Electra Bra Top-XL-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"171","color":"49","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","url_key":"electra-bra-top-xl-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB01-XL-Gray","id":1607,"status":1,"name":"Electra Bra Top-XL-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"171","color":"52","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","url_key":"electra-bra-top-xl-gray","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB01-XL-Purple","id":1608,"status":1,"name":"Electra Bra Top-XL-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"171","color":"57","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","url_key":"electra-bra-top-xl-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001}],"configurable_options":[{"id":219,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"}],"product_id":1609,"attribute_code":"color"},{"id":218,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1609,"attribute_code":"size"}],"color_options":[49,52,57],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-1609.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1577","_score":1,"_source":{"id":1577,"sku":"WS01","name":"Gwyn Endurance Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":24,"description":"

          When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

          \n

          • Short-Sleeves.
          • Machine wash/line dry.

          ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"gwyn-endurance-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[152,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"gwyn-endurance-tee-1577","links":{},"stock":{"item_id":1577,"product_id":1577,"stock_id":1,"qty":8,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS01-XS-Black","id":1562,"status":1,"name":"Gwyn Endurance Tee-XS-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"167","color":"49","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","url_key":"gwyn-endurance-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WS01-XS-Green","id":1563,"status":1,"name":"Gwyn Endurance Tee-XS-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"167","color":"53","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","url_key":"gwyn-endurance-tee-xs-green","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-XS-Yellow","id":1564,"status":1,"name":"Gwyn Endurance Tee-XS-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"167","color":"60","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","url_key":"gwyn-endurance-tee-xs-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-S-Black","id":1565,"status":1,"name":"Gwyn Endurance Tee-S-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"168","color":"49","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","url_key":"gwyn-endurance-tee-s-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-S-Green","id":1566,"status":1,"name":"Gwyn Endurance Tee-S-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"168","color":"53","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","url_key":"gwyn-endurance-tee-s-green","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-S-Yellow","id":1567,"status":1,"name":"Gwyn Endurance Tee-S-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"168","color":"60","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","url_key":"gwyn-endurance-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-M-Black","id":1568,"status":1,"name":"Gwyn Endurance Tee-M-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"169","color":"49","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","url_key":"gwyn-endurance-tee-m-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-M-Green","id":1569,"status":1,"name":"Gwyn Endurance Tee-M-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"169","color":"53","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","url_key":"gwyn-endurance-tee-m-green","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-M-Yellow","id":1570,"status":1,"name":"Gwyn Endurance Tee-M-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"169","color":"60","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","url_key":"gwyn-endurance-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-L-Black","id":1571,"status":1,"name":"Gwyn Endurance Tee-L-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"170","color":"49","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","url_key":"gwyn-endurance-tee-l-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-L-Green","id":1572,"status":1,"name":"Gwyn Endurance Tee-L-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"170","color":"53","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","url_key":"gwyn-endurance-tee-l-green","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-L-Yellow","id":1573,"status":1,"name":"Gwyn Endurance Tee-L-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"170","color":"60","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","url_key":"gwyn-endurance-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-XL-Black","id":1574,"status":1,"name":"Gwyn Endurance Tee-XL-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"171","color":"49","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","url_key":"gwyn-endurance-tee-xl-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-XL-Green","id":1575,"status":1,"name":"Gwyn Endurance Tee-XL-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"171","color":"53","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","url_key":"gwyn-endurance-tee-xl-green","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-XL-Yellow","id":1576,"status":1,"name":"Gwyn Endurance Tee-XL-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"171","color":"60","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","url_key":"gwyn-endurance-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001}],"configurable_options":[{"id":215,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":60,"label":"Yellow"}],"product_id":1577,"attribute_code":"color"},{"id":214,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1577,"attribute_code":"size"}],"color_options":[49,53,60],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-1577.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1651","_score":1,"_source":{"id":1651,"sku":"WB04-L-Blue","name":"Prima Compete Bra Top-L-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

          Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
          `
          • Colorblocked details.
          • Machine wash/line dry.

          ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"prima-compete-bra-top-l-blue-1651","links":{},"stock":{"item_id":1651,"product_id":1651,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-l-blue-1651.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1668","_score":1,"_source":{"id":1668,"sku":"WB05-L-Orange","name":"Lucia Cross-Fit Bra -L-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

          \n

          • Black/white bra top.
          • Criss-cross back design.
          • Machine wash/dry.

          ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lucia-cross-fit-bra-l-orange-1668","links":{},"stock":{"item_id":1668,"product_id":1668,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-l-orange-1668.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1672","_score":1,"_source":{"id":1672,"sku":"WB05-XL-Purple","name":"Lucia Cross-Fit Bra -XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

          \n

          • Black/white bra top.
          • Criss-cross back design.
          • Machine wash/dry.

          ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lucia-cross-fit-bra-xl-purple-1672","links":{},"stock":{"item_id":1672,"product_id":1672,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xl-purple-1672.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1676","_score":1,"_source":{"id":1676,"sku":"WT01-XS-Orange","name":"Bella Tank-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

          \n

          • Navy blue tank top - cotton.
          • Feminine scoop neckline.
          • Power mesh lining in shelf bra for superior support.
          • Soft, breathable fabric.
          • Dry wick fabric to stay cool and dry.

          ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bella-tank-xs-orange-1676","links":{},"stock":{"item_id":1676,"product_id":1676,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xs-orange-1676.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1691","_score":1,"_source":{"id":1691,"sku":"WT02-XS-Orange","name":"Zoe Tank-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

          \n

          • Salmon heather tank top.
          • 1\" elastic band on inner bra.
          • Mesh lining on shelf bra for support.
          • Soft, breathable fabric.
          • Dry wick fabric to stay cool and dry.

          ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoe-tank-xs-orange-1691","links":{},"stock":{"item_id":1691,"product_id":1691,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xs-orange-1691.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1679","_score":1,"_source":{"id":1679,"sku":"WT01-S-Orange","name":"Bella Tank-S-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

          \n

          • Navy blue tank top - cotton.
          • Feminine scoop neckline.
          • Power mesh lining in shelf bra for superior support.
          • Soft, breathable fabric.
          • Dry wick fabric to stay cool and dry.

          ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bella-tank-s-orange-1679","links":{},"stock":{"item_id":1679,"product_id":1679,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-s-orange-1679.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1684","_score":1,"_source":{"id":1684,"sku":"WT01-L-Blue","name":"Bella Tank-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

          \n

          • Navy blue tank top - cotton.
          • Feminine scoop neckline.
          • Power mesh lining in shelf bra for superior support.
          • Soft, breathable fabric.
          • Dry wick fabric to stay cool and dry.

          ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bella-tank-l-blue-1684","links":{},"stock":{"item_id":1684,"product_id":1684,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-l-blue-1684.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1583","_score":1,"_source":{"id":1583,"sku":"WS05-S-Yellow","name":"Desiree Fitness Tee-S-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

          When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

          \n

          • Short-Sleeves.
          • Performance fabric.
          • Machine wash/line dry.

          ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"desiree-fitness-tee-s-yellow-1583","links":{},"stock":{"item_id":1583,"product_id":1583,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-s-yellow-1583.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1584","_score":1,"_source":{"id":1584,"sku":"WS05-M-Black","name":"Desiree Fitness Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

          When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

          \n

          • Short-Sleeves.
          • Performance fabric.
          • Machine wash/line dry.

          ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"desiree-fitness-tee-m-black-1584","links":{},"stock":{"item_id":1584,"product_id":1584,"stock_id":1,"qty":32,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-m-black-1584.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1596","_score":1,"_source":{"id":1596,"sku":"WB01-XS-Purple","name":"Electra Bra Top-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

          \n

          • Gray rouched bra top.
          • Attractive back straps feature contrasting motif fabric.
          • Interior bra top is lined with breathable mesh.
          • Elastic underband for superior support.
          • Removable cup inserts.
          • Chafe-free flat lock seams provide added comfort.

          ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"electra-bra-top-xs-purple-1596","links":{},"stock":{"item_id":1596,"product_id":1596,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xs-purple-1596.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1582","_score":1,"_source":{"id":1582,"sku":"WS05-S-Orange","name":"Desiree Fitness Tee-S-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

          When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

          \n

          • Short-Sleeves.
          • Performance fabric.
          • Machine wash/line dry.

          ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"desiree-fitness-tee-s-orange-1582","links":{},"stock":{"item_id":1582,"product_id":1582,"stock_id":1,"qty":62,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-s-orange-1582.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1615","_score":1,"_source":{"id":1615,"sku":"WB02-S-Yellow","name":"Erica Evercool Sports Bra-S-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

          \n

          • Honeycomb light blue bra top.
          • Elastic hem.
          • Reinforced binding.
          • Machine wash/dry.

          ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erica-evercool-sports-bra-s-yellow-1615","links":{},"stock":{"item_id":1615,"product_id":1615,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-s-yellow-1615.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1616","_score":1,"_source":{"id":1616,"sku":"WB02-M-Blue","name":"Erica Evercool Sports Bra-M-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

          \n

          • Honeycomb light blue bra top.
          • Elastic hem.
          • Reinforced binding.
          • Machine wash/dry.

          ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erica-evercool-sports-bra-m-blue-1616","links":{},"stock":{"item_id":1616,"product_id":1616,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-m-blue-1616.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1613","_score":1,"_source":{"id":1613,"sku":"WB02-S-Blue","name":"Erica Evercool Sports Bra-S-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

          \n

          • Honeycomb light blue bra top.
          • Elastic hem.
          • Reinforced binding.
          • Machine wash/dry.

          ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erica-evercool-sports-bra-s-blue-1613","links":{},"stock":{"item_id":1613,"product_id":1613,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-s-blue-1613.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1610","_score":1,"_source":{"id":1610,"sku":"WB02-XS-Blue","name":"Erica Evercool Sports Bra-XS-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

          \n

          • Honeycomb light blue bra top.
          • Elastic hem.
          • Reinforced binding.
          • Machine wash/dry.

          ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erica-evercool-sports-bra-xs-blue-1610","links":{},"stock":{"item_id":1610,"product_id":1610,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xs-blue-1610.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1623","_score":1,"_source":{"id":1623,"sku":"WB02-XL-Orange","name":"Erica Evercool Sports Bra-XL-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

          \n

          • Honeycomb light blue bra top.
          • Elastic hem.
          • Reinforced binding.
          • Machine wash/dry.

          ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erica-evercool-sports-bra-xl-orange-1623","links":{},"stock":{"item_id":1623,"product_id":1623,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xl-orange-1623.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1617","_score":1,"_source":{"id":1617,"sku":"WB02-M-Orange","name":"Erica Evercool Sports Bra-M-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

          \n

          • Honeycomb light blue bra top.
          • Elastic hem.
          • Reinforced binding.
          • Machine wash/dry.

          ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erica-evercool-sports-bra-m-orange-1617","links":{},"stock":{"item_id":1617,"product_id":1617,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-m-orange-1617.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1626","_score":1,"_source":{"id":1626,"sku":"WB03-XS-Green","name":"Celeste Sports Bra-XS-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

          \n

          • Mint bra top.
          • Seam-free interior molded cups
          • Odor control.
          • UV protection.
          • Machine wash/dry.

          ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"celeste-sports-bra-xs-green-1626","links":{},"stock":{"item_id":1626,"product_id":1626,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xs-green-1626.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1639","_score":1,"_source":{"id":1639,"sku":"WB03-XL-Red","name":"Celeste Sports Bra-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

          \n

          • Mint bra top.
          • Seam-free interior molded cups
          • Odor control.
          • UV protection.
          • Machine wash/dry.

          ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"celeste-sports-bra-xl-red-1639","links":{},"stock":{"item_id":1639,"product_id":1639,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xl-red-1639.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1600","_score":1,"_source":{"id":1600,"sku":"WB01-M-Black","name":"Electra Bra Top-M-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

          \n

          • Gray rouched bra top.
          • Attractive back straps feature contrasting motif fabric.
          • Interior bra top is lined with breathable mesh.
          • Elastic underband for superior support.
          • Removable cup inserts.
          • Chafe-free flat lock seams provide added comfort.

          ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"electra-bra-top-m-black-1600","links":{},"stock":{"item_id":1600,"product_id":1600,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-m-black-1600.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1585","_score":1,"_source":{"id":1585,"sku":"WS05-M-Orange","name":"Desiree Fitness Tee-M-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

          When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

          \n

          • Short-Sleeves.
          • Performance fabric.
          • Machine wash/line dry.

          ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"desiree-fitness-tee-m-orange-1585","links":{},"stock":{"item_id":1585,"product_id":1585,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-m-orange-1585.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1642","_score":1,"_source":{"id":1642,"sku":"WB04-XS-Blue","name":"Prima Compete Bra Top-XS-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

          Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
          `
          • Colorblocked details.
          • Machine wash/line dry.

          ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"prima-compete-bra-top-xs-blue-1642","links":{},"stock":{"item_id":1642,"product_id":1642,"stock_id":1,"qty":80,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xs-blue-1642.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1630","_score":1,"_source":{"id":1630,"sku":"WB03-S-Red","name":"Celeste Sports Bra-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

          \n

          • Mint bra top.
          • Seam-free interior molded cups
          • Odor control.
          • UV protection.
          • Machine wash/dry.

          ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"celeste-sports-bra-s-red-1630","links":{},"stock":{"item_id":1630,"product_id":1630,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-s-red-1630.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1663","_score":1,"_source":{"id":1663,"sku":"WB05-S-Purple","name":"Lucia Cross-Fit Bra -S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

          \n

          • Black/white bra top.
          • Criss-cross back design.
          • Machine wash/dry.

          ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lucia-cross-fit-bra-s-purple-1663","links":{},"stock":{"item_id":1663,"product_id":1663,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-s-purple-1663.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1690","_score":1,"_source":{"id":1690,"sku":"WT02-XS-Green","name":"Zoe Tank-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

          \n

          • Salmon heather tank top.
          • 1\" elastic band on inner bra.
          • Mesh lining on shelf bra for support.
          • Soft, breathable fabric.
          • Dry wick fabric to stay cool and dry.

          ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoe-tank-xs-green-1690","links":{},"stock":{"item_id":1690,"product_id":1690,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xs-green-1690.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1698","_score":1,"_source":{"id":1698,"sku":"WT02-M-Yellow","name":"Zoe Tank-M-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

          \n

          • Salmon heather tank top.
          • 1\" elastic band on inner bra.
          • Mesh lining on shelf bra for support.
          • Soft, breathable fabric.
          • Dry wick fabric to stay cool and dry.

          ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoe-tank-m-yellow-1698","links":{},"stock":{"item_id":1698,"product_id":1698,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-m-yellow-1698.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1700","_score":1,"_source":{"id":1700,"sku":"WT02-L-Orange","name":"Zoe Tank-L-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

          \n

          • Salmon heather tank top.
          • 1\" elastic band on inner bra.
          • Mesh lining on shelf bra for support.
          • Soft, breathable fabric.
          • Dry wick fabric to stay cool and dry.

          ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoe-tank-l-orange-1700","links":{},"stock":{"item_id":1700,"product_id":1700,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-l-orange-1700.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1673","_score":1,"_source":{"id":1673,"sku":"WB05","name":"Lucia Cross-Fit Bra ","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":39,"description":"

          Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

          \n

          • Black/white bra top.
          • Criss-cross back design.
          • Machine wash/dry.

          ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"lucia-cross-fit-bra","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[150,37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"131","pattern":"194","climate":[205,209],"slug":"lucia-cross-fit-bra-1673","links":{},"stock":{"item_id":1673,"product_id":1673,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WB05-XS-Black","id":1658,"status":1,"name":"Lucia Cross-Fit Bra -XS-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"49","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","url_key":"lucia-cross-fit-bra-xs-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-XS-Orange","id":1659,"status":1,"name":"Lucia Cross-Fit Bra -XS-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"56","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","url_key":"lucia-cross-fit-bra-xs-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-XS-Purple","id":1660,"status":1,"name":"Lucia Cross-Fit Bra -XS-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"57","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","url_key":"lucia-cross-fit-bra-xs-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-S-Black","id":1661,"status":1,"name":"Lucia Cross-Fit Bra -S-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"49","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","url_key":"lucia-cross-fit-bra-s-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-S-Orange","id":1662,"status":1,"name":"Lucia Cross-Fit Bra -S-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"56","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","url_key":"lucia-cross-fit-bra-s-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-S-Purple","id":1663,"status":1,"name":"Lucia Cross-Fit Bra -S-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"57","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","url_key":"lucia-cross-fit-bra-s-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-M-Black","id":1664,"status":1,"name":"Lucia Cross-Fit Bra -M-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"49","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","url_key":"lucia-cross-fit-bra-m-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-M-Orange","id":1665,"status":1,"name":"Lucia Cross-Fit Bra -M-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"56","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","url_key":"lucia-cross-fit-bra-m-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-M-Purple","id":1666,"status":1,"name":"Lucia Cross-Fit Bra -M-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"57","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","url_key":"lucia-cross-fit-bra-m-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-L-Black","id":1667,"status":1,"name":"Lucia Cross-Fit Bra -L-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"49","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","url_key":"lucia-cross-fit-bra-l-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-L-Orange","id":1668,"status":1,"name":"Lucia Cross-Fit Bra -L-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"56","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","url_key":"lucia-cross-fit-bra-l-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-L-Purple","id":1669,"status":1,"name":"Lucia Cross-Fit Bra -L-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"57","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","url_key":"lucia-cross-fit-bra-l-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-XL-Black","id":1670,"status":1,"name":"Lucia Cross-Fit Bra -XL-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"49","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","url_key":"lucia-cross-fit-bra-xl-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-XL-Orange","id":1671,"status":1,"name":"Lucia Cross-Fit Bra -XL-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"56","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","url_key":"lucia-cross-fit-bra-xl-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-XL-Purple","id":1672,"status":1,"name":"Lucia Cross-Fit Bra -XL-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"57","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","url_key":"lucia-cross-fit-bra-xl-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001}],"configurable_options":[{"id":227,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1673,"attribute_code":"color"},{"id":226,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1673,"attribute_code":"size"}],"color_options":[49,56,57],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-1673.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1753","_score":1,"_source":{"id":1753,"sku":"WT05","name":"Leah Yoga Top","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":39,"description":"

          The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

          \n

          • Blue heather rouched tank top.
          • Camisole tank top.
          • Banding and shirring details.
          • Body hugging fit.
          • Contrast topstitch.
          • Interior shelf bra with shapewear technology.
          • 65% Polyester 35% Cotton.

          ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"leah-yoga-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[135,142],"pattern":"197","climate":[205,209],"slug":"leah-yoga-top-1753","links":{},"stock":{"item_id":1753,"product_id":1753,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT05-XS-Orange","id":1738,"status":1,"name":"Leah Yoga Top-XS-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"167","color":"56","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","url_key":"leah-yoga-top-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WT05-XS-Purple","id":1739,"status":1,"name":"Leah Yoga Top-XS-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"167","color":"57","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","url_key":"leah-yoga-top-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WT05-XS-White","id":1740,"status":1,"name":"Leah Yoga Top-XS-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"167","color":"59","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","url_key":"leah-yoga-top-xs-white","msrp_display_actual_price_type":"0"},{"sku":"WT05-S-Orange","id":1741,"status":1,"name":"Leah Yoga Top-S-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"168","color":"56","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","url_key":"leah-yoga-top-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WT05-S-Purple","id":1742,"status":1,"name":"Leah Yoga Top-S-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"168","color":"57","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","url_key":"leah-yoga-top-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WT05-S-White","id":1743,"status":1,"name":"Leah Yoga Top-S-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"168","color":"59","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","url_key":"leah-yoga-top-s-white","msrp_display_actual_price_type":"0"},{"sku":"WT05-M-Orange","id":1744,"status":1,"name":"Leah Yoga Top-M-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"169","color":"56","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","url_key":"leah-yoga-top-m-orange","msrp_display_actual_price_type":"0"},{"sku":"WT05-M-Purple","id":1745,"status":1,"name":"Leah Yoga Top-M-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"169","color":"57","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","url_key":"leah-yoga-top-m-purple","msrp_display_actual_price_type":"0"},{"sku":"WT05-M-White","id":1746,"status":1,"name":"Leah Yoga Top-M-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"169","color":"59","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","url_key":"leah-yoga-top-m-white","msrp_display_actual_price_type":"0"},{"sku":"WT05-L-Orange","id":1747,"status":1,"name":"Leah Yoga Top-L-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"170","color":"56","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","url_key":"leah-yoga-top-l-orange","msrp_display_actual_price_type":"0"},{"sku":"WT05-L-Purple","id":1748,"status":1,"name":"Leah Yoga Top-L-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"170","color":"57","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","url_key":"leah-yoga-top-l-purple","msrp_display_actual_price_type":"0"},{"sku":"WT05-L-White","id":1749,"status":1,"name":"Leah Yoga Top-L-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"170","color":"59","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","url_key":"leah-yoga-top-l-white","msrp_display_actual_price_type":"0"},{"sku":"WT05-XL-Orange","id":1750,"status":1,"name":"Leah Yoga Top-XL-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"171","color":"56","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","url_key":"leah-yoga-top-xl-orange","msrp_display_actual_price_type":"0"},{"sku":"WT05-XL-Purple","id":1751,"status":1,"name":"Leah Yoga Top-XL-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"171","color":"57","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","url_key":"leah-yoga-top-xl-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT05-XL-White","id":1752,"status":1,"name":"Leah Yoga Top-XL-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"171","color":"59","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","url_key":"leah-yoga-top-xl-white","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001}],"configurable_options":[{"id":237,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"}],"product_id":1753,"attribute_code":"color"},{"id":236,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1753,"attribute_code":"size"}],"color_options":[56,57,59],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-1753.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1833","_score":1,"_source":{"id":1833,"sku":"WP03-28-Blue","name":"Ida Workout Parachute Pant-28-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

          The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

          \n

          • Royal blue parachute pants.
          • Contrast stripe.
          • Relaxed fit.
          • Drawstring closure.
          • Machine wash/dry.

          ","image":"/w/p/wp03-blue_main.jpg","small_image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","color":"50","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ida-workout-parachute-pant-28-blue-1833","links":{},"stock":{"item_id":1833,"product_id":1833,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-28-blue-1833.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1830","_score":1,"_source":{"id":1830,"sku":"WP02-29-Red","name":"Emma Leggings-29-Red","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

          These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

          \n

          • Light blue heather yoga pants.
          • Body hugging fit.
          • Low rise fit.

          ","image":"/w/p/wp02-red_main.jpg","small_image":"/w/p/wp02-red_main.jpg","thumbnail":"/w/p/wp02-red_main.jpg","color":"58","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"emma-leggings-29-red-1830","links":{},"stock":{"item_id":1830,"product_id":1830,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-29-red-1830.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1842","_score":1,"_source":{"id":1842,"sku":"WP04-29-Black","name":"Cora Parachute Pant-29-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

          Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

          \n

          • Light blue parachute pants.
          • Power mesh internal waistband for support.
          • Internal waistband pocket.
          • Antimicrobial finish.

          ","image":"/w/p/wp04-black_main.jpg","small_image":"/w/p/wp04-black_main.jpg","thumbnail":"/w/p/wp04-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"cora-parachute-pant-29-black-1842","links":{},"stock":{"item_id":1842,"product_id":1842,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-29-black-1842.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1841","_score":1,"_source":{"id":1841,"sku":"WP04-28-White","name":"Cora Parachute Pant-28-White","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

          Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

          \n

          • Light blue parachute pants.
          • Power mesh internal waistband for support.
          • Internal waistband pocket.
          • Antimicrobial finish.

          ","image":"/w/p/wp04-white_main.jpg","small_image":"/w/p/wp04-white_main.jpg","thumbnail":"/w/p/wp04-white_main.jpg","color":"59","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"cora-parachute-pant-28-white-1841","links":{},"stock":{"item_id":1841,"product_id":1841,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-28-white-1841.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1826","_score":1,"_source":{"id":1826,"sku":"WP02-28-Purple","name":"Emma Leggings-28-Purple","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

          These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

          \n

          • Light blue heather yoga pants.
          • Body hugging fit.
          • Low rise fit.

          ","image":"/w/p/wp02-purple_main.jpg","small_image":"/w/p/wp02-purple_main.jpg","thumbnail":"/w/p/wp02-purple_main.jpg","color":"57","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"emma-leggings-28-purple-1826","links":{},"stock":{"item_id":1826,"product_id":1826,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-28-purple-1826.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1846","_score":1,"_source":{"id":1846,"sku":"WP05-28-Blue","name":"Sahara Leggings-28-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

          Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

          \n

          • Pinstripe legging with rouched ankles.
          • Secret pocket at waistband.
          • Flat seams for comfort.
          • Shaped fit with low rise.
          • 4-way stretch, moisture-wicking material.

          ","image":"/w/p/wp05-blue_main.jpg","small_image":"/w/p/wp05-blue_main.jpg","thumbnail":"/w/p/wp05-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sahara-leggings-28-blue-1846","links":{},"stock":{"item_id":1846,"product_id":1846,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-28-blue-1846.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1847","_score":1,"_source":{"id":1847,"sku":"WP05-28-Gray","name":"Sahara Leggings-28-Gray","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

          Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

          \n

          • Pinstripe legging with rouched ankles.
          • Secret pocket at waistband.
          • Flat seams for comfort.
          • Shaped fit with low rise.
          • 4-way stretch, moisture-wicking material.

          ","image":"/w/p/wp05-gray_main.jpg","small_image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","color":"52","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sahara-leggings-28-gray-1847","links":{},"stock":{"item_id":1847,"product_id":1847,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-28-gray-1847.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1773","_score":1,"_source":{"id":1773,"sku":"WT07-S-Green","name":"Maya Tunic-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

          \n

          • Mint green heather tunic-style tank.
          • Wrapped back with cut out detail.
          • Drawcord detail at end.
          • Abutted seams.

          ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"maya-tunic-s-green-1773","links":{},"stock":{"item_id":1773,"product_id":1773,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-s-green-1773.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1775","_score":1,"_source":{"id":1775,"sku":"WT07-S-Yellow","name":"Maya Tunic-S-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

          \n

          • Mint green heather tunic-style tank.
          • Wrapped back with cut out detail.
          • Drawcord detail at end.
          • Abutted seams.

          ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"maya-tunic-s-yellow-1775","links":{},"stock":{"item_id":1775,"product_id":1775,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-s-yellow-1775.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1794","_score":1,"_source":{"id":1794,"sku":"WT08-M-Yellow","name":"Antonia Racer Tank-M-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

          You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

          \n

          • Machine wash.
          • Line dry.

          ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"antonia-racer-tank-m-yellow-1794","links":{},"stock":{"item_id":1794,"product_id":1794,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-m-yellow-1794.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1792","_score":1,"_source":{"id":1792,"sku":"WT08-M-Black","name":"Antonia Racer Tank-M-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

          You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

          \n

          • Machine wash.
          • Line dry.

          ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"antonia-racer-tank-m-black-1792","links":{},"stock":{"item_id":1792,"product_id":1792,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-m-black-1792.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1788","_score":1,"_source":{"id":1788,"sku":"WT08-XS-Yellow","name":"Antonia Racer Tank-XS-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

          You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

          \n

          • Machine wash.
          • Line dry.

          ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"antonia-racer-tank-xs-yellow-1788","links":{},"stock":{"item_id":1788,"product_id":1788,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xs-yellow-1788.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1780","_score":1,"_source":{"id":1780,"sku":"WT07-L-White","name":"Maya Tunic-L-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

          \n

          • Mint green heather tunic-style tank.
          • Wrapped back with cut out detail.
          • Drawcord detail at end.
          • Abutted seams.

          ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"maya-tunic-l-white-1780","links":{},"stock":{"item_id":1780,"product_id":1780,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-l-white-1780.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1791","_score":1,"_source":{"id":1791,"sku":"WT08-S-Yellow","name":"Antonia Racer Tank-S-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

          You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

          \n

          • Machine wash.
          • Line dry.

          ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"antonia-racer-tank-s-yellow-1791","links":{},"stock":{"item_id":1791,"product_id":1791,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-s-yellow-1791.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1798","_score":1,"_source":{"id":1798,"sku":"WT08-XL-Black","name":"Antonia Racer Tank-XL-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

          You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

          \n

          • Machine wash.
          • Line dry.

          ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"antonia-racer-tank-xl-black-1798","links":{},"stock":{"item_id":1798,"product_id":1798,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xl-black-1798.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1872","_score":1,"_source":{"id":1872,"sku":"WP08-29-Red","name":"Bardot Capri-29-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

          Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

          \n

          • Black capris with pink waistband.
          • Cropped leggings.
          • Waistband drawcord.
          • Flat, thin and flattering.
          • Made with organic fabric.

          ","image":"/w/p/wp08-red_main.jpg","small_image":"/w/p/wp08-red_main.jpg","thumbnail":"/w/p/wp08-red_main.jpg","color":"58","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bardot-capri-29-red-1872","links":{},"stock":{"item_id":1872,"product_id":1872,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-29-red-1872.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1860","_score":1,"_source":{"id":1860,"sku":"WP07-28-Black","name":"Aeon Capri-28-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

          Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

          \n

          • Black capris with teal accents.
          • Thick, 3\" flattering waistband.
          • Media pocket on inner waistband.
          • Dry wick finish for ultimate comfort and dryness.

          ","image":"/w/p/wp07-black_main.jpg","small_image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","color":"49","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"aeon-capri-28-black-1860","links":{},"stock":{"item_id":1860,"product_id":1860,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-28-black-1860.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1862","_score":1,"_source":{"id":1862,"sku":"WP07-28-Orange","name":"Aeon Capri-28-Orange","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

          Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

          \n

          • Black capris with teal accents.
          • Thick, 3\" flattering waistband.
          • Media pocket on inner waistband.
          • Dry wick finish for ultimate comfort and dryness.

          ","image":"/w/p/wp07-orange_main.jpg","small_image":"/w/p/wp07-orange_main.jpg","thumbnail":"/w/p/wp07-orange_main.jpg","color":"56","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"aeon-capri-28-orange-1862","links":{},"stock":{"item_id":1862,"product_id":1862,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-28-orange-1862.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1875","_score":1,"_source":{"id":1875,"sku":"WP09-28-Blue","name":"Carina Basic Capri-28-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

          Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

          \n

          • Black capris with rouching detail.
          • 93% cotton, 7% spandex.
          • Elasticized waistband.
          • Reinforced seams with exposed topstitching.
          • Soft, medium-weight jersey with added stretch.

          ","image":"/w/p/wp09-blue_main.jpg","small_image":"/w/p/wp09-blue_main.jpg","thumbnail":"/w/p/wp09-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"carina-basic-capri-28-blue-1875","links":{},"stock":{"item_id":1875,"product_id":1875,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-28-blue-1875.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1884","_score":1,"_source":{"id":1884,"sku":"WP10-29-Black","name":"Daria Bikram Pant-29-Black","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

          The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

          \n

          • Heather gray capris with pink striped waist.
          • Flatlock seams.
          • Interior pocket.

          ","image":"/w/p/wp10-black_main.jpg","small_image":"/w/p/wp10-black_main.jpg","thumbnail":"/w/p/wp10-black_main.jpg","color":"49","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"daria-bikram-pant-29-black-1884","links":{},"stock":{"item_id":1884,"product_id":1884,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-29-black-1884.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1889","_score":1,"_source":{"id":1889,"sku":"WP11-28-Green","name":"Sylvia Capri-28-Green","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

          Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

          \n

          • Green striped capri.
          • Strategic side seam
          • Comfort gusset with lining.
          • Flat seaming.
          • Wide waistband.
          • Moisture wicking.

          ","image":"/w/p/wp11-green_main.jpg","small_image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","color":"53","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sylvia-capri-28-green-1889","links":{},"stock":{"item_id":1889,"product_id":1889,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-28-green-1889.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1736","_score":1,"_source":{"id":1736,"sku":"WT04-XL-Red","name":"Nona Fitness Tank-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

          \n

          • Blue/white striped mesh tank.
          • Relaxed fit.
          • Chafe-resistant trim around armholes and collar.
          • Machine wash/dry.

          ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nona-fitness-tank-xl-red-1736","links":{},"stock":{"item_id":1736,"product_id":1736,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xl-red-1736.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1741","_score":1,"_source":{"id":1741,"sku":"WT05-S-Orange","name":"Leah Yoga Top-S-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

          \n

          • Blue heather rouched tank top.
          • Camisole tank top.
          • Banding and shirring details.
          • Body hugging fit.
          • Contrast topstitch.
          • Interior shelf bra with shapewear technology.
          • 65% Polyester 35% Cotton.

          ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"leah-yoga-top-s-orange-1741","links":{},"stock":{"item_id":1741,"product_id":1741,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-s-orange-1741.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1747","_score":1,"_source":{"id":1747,"sku":"WT05-L-Orange","name":"Leah Yoga Top-L-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

          \n

          • Blue heather rouched tank top.
          • Camisole tank top.
          • Banding and shirring details.
          • Body hugging fit.
          • Contrast topstitch.
          • Interior shelf bra with shapewear technology.
          • 65% Polyester 35% Cotton.

          ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"leah-yoga-top-l-orange-1747","links":{},"stock":{"item_id":1747,"product_id":1747,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-l-orange-1747.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1739","_score":1,"_source":{"id":1739,"sku":"WT05-XS-Purple","name":"Leah Yoga Top-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

          \n

          • Blue heather rouched tank top.
          • Camisole tank top.
          • Banding and shirring details.
          • Body hugging fit.
          • Contrast topstitch.
          • Interior shelf bra with shapewear technology.
          • 65% Polyester 35% Cotton.

          ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"leah-yoga-top-xs-purple-1739","links":{},"stock":{"item_id":1739,"product_id":1739,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xs-purple-1739.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1731","_score":1,"_source":{"id":1731,"sku":"WT04-L-Blue","name":"Nona Fitness Tank-L-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

          \n

          • Blue/white striped mesh tank.
          • Relaxed fit.
          • Chafe-resistant trim around armholes and collar.
          • Machine wash/dry.

          ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nona-fitness-tank-l-blue-1731","links":{},"stock":{"item_id":1731,"product_id":1731,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-l-blue-1731.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1748","_score":1,"_source":{"id":1748,"sku":"WT05-L-Purple","name":"Leah Yoga Top-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

          \n

          • Blue heather rouched tank top.
          • Camisole tank top.
          • Banding and shirring details.
          • Body hugging fit.
          • Contrast topstitch.
          • Interior shelf bra with shapewear technology.
          • 65% Polyester 35% Cotton.

          ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"leah-yoga-top-l-purple-1748","links":{},"stock":{"item_id":1748,"product_id":1748,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-l-purple-1748.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1854","_score":1,"_source":{"id":1854,"sku":"WP06-28-Blue","name":"Diana Tights-28-Blue","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

          Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

          \n

          • Black legging with slate details.
          • Flat-lock, chafe-free side seams.
          • Vented gusset.
          • Secret interior pocket.
          • Sustainable and recycled fabric.

          ","image":"/w/p/wp06-blue_main.jpg","small_image":"/w/p/wp06-blue_main.jpg","thumbnail":"/w/p/wp06-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"diana-tights-28-blue-1854","links":{},"stock":{"item_id":1854,"product_id":1854,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-28-blue-1854.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1853","_score":1,"_source":{"id":1853,"sku":"WP06-28-Black","name":"Diana Tights-28-Black","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

          Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

          \n

          • Black legging with slate details.
          • Flat-lock, chafe-free side seams.
          • Vented gusset.
          • Secret interior pocket.
          • Sustainable and recycled fabric.

          ","image":"/w/p/wp06-black_main.jpg","small_image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","color":"49","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"diana-tights-28-black-1853","links":{},"stock":{"item_id":1853,"product_id":1853,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_outfit.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-28-black-1853.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1865","_score":1,"_source":{"id":1865,"sku":"WP07-29-Orange","name":"Aeon Capri-29-Orange","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

          Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

          \n

          • Black capris with teal accents.
          • Thick, 3\" flattering waistband.
          • Media pocket on inner waistband.
          • Dry wick finish for ultimate comfort and dryness.

          ","image":"/w/p/wp07-orange_main.jpg","small_image":"/w/p/wp07-orange_main.jpg","thumbnail":"/w/p/wp07-orange_main.jpg","color":"56","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"aeon-capri-29-orange-1865","links":{},"stock":{"item_id":1865,"product_id":1865,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-29-orange-1865.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1855","_score":1,"_source":{"id":1855,"sku":"WP06-28-Orange","name":"Diana Tights-28-Orange","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

          Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

          \n

          • Black legging with slate details.
          • Flat-lock, chafe-free side seams.
          • Vented gusset.
          • Secret interior pocket.
          • Sustainable and recycled fabric.

          ","image":"/w/p/wp06-orange_main.jpg","small_image":"/w/p/wp06-orange_main.jpg","thumbnail":"/w/p/wp06-orange_main.jpg","color":"56","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"diana-tights-28-orange-1855","links":{},"stock":{"item_id":1855,"product_id":1855,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-28-orange-1855.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1851","_score":1,"_source":{"id":1851,"sku":"WP05-29-Red","name":"Sahara Leggings-29-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

          Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

          \n

          • Pinstripe legging with rouched ankles.
          • Secret pocket at waistband.
          • Flat seams for comfort.
          • Shaped fit with low rise.
          • 4-way stretch, moisture-wicking material.

          ","image":"/w/p/wp05-red_main.jpg","small_image":"/w/p/wp05-red_main.jpg","thumbnail":"/w/p/wp05-red_main.jpg","color":"58","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sahara-leggings-29-red-1851","links":{},"stock":{"item_id":1851,"product_id":1851,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-29-red-1851.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1751","_score":1,"_source":{"id":1751,"sku":"WT05-XL-Purple","name":"Leah Yoga Top-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

          \n

          • Blue heather rouched tank top.
          • Camisole tank top.
          • Banding and shirring details.
          • Body hugging fit.
          • Contrast topstitch.
          • Interior shelf bra with shapewear technology.
          • 65% Polyester 35% Cotton.

          ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"leah-yoga-top-xl-purple-1751","links":{},"stock":{"item_id":1751,"product_id":1751,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xl-purple-1751.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1764","_score":1,"_source":{"id":1764,"sku":"WT06-L-Red","name":"Chloe Compete Tank-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

          \n

          • Royal blue tank top - nylon/spandex.
          • Flatlock stitching.
          • Moisture-wicking fabric.
          • Ergonomic seaming.
          • Machine wash/dry.

          ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chloe-compete-tank-l-red-1764","links":{},"stock":{"item_id":1764,"product_id":1764,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-l-red-1764.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1767","_score":1,"_source":{"id":1767,"sku":"WT06-XL-Red","name":"Chloe Compete Tank-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

          \n

          • Royal blue tank top - nylon/spandex.
          • Flatlock stitching.
          • Moisture-wicking fabric.
          • Ergonomic seaming.
          • Machine wash/dry.

          ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chloe-compete-tank-xl-red-1767","links":{},"stock":{"item_id":1767,"product_id":1767,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xl-red-1767.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1757","_score":1,"_source":{"id":1757,"sku":"WT06-S-Blue","name":"Chloe Compete Tank-S-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

          \n

          • Royal blue tank top - nylon/spandex.
          • Flatlock stitching.
          • Moisture-wicking fabric.
          • Ergonomic seaming.
          • Machine wash/dry.

          ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chloe-compete-tank-s-blue-1757","links":{},"stock":{"item_id":1757,"product_id":1757,"stock_id":1,"qty":42,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-s-blue-1757.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1763","_score":1,"_source":{"id":1763,"sku":"WT06-L-Blue","name":"Chloe Compete Tank-L-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

          \n

          • Royal blue tank top - nylon/spandex.
          • Flatlock stitching.
          • Moisture-wicking fabric.
          • Ergonomic seaming.
          • Machine wash/dry.

          ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chloe-compete-tank-l-blue-1763","links":{},"stock":{"item_id":1763,"product_id":1763,"stock_id":1,"qty":80,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-l-blue-1763.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1768","_score":1,"_source":{"id":1768,"sku":"WT06-XL-Yellow","name":"Chloe Compete Tank-XL-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

          \n

          • Royal blue tank top - nylon/spandex.
          • Flatlock stitching.
          • Moisture-wicking fabric.
          • Ergonomic seaming.
          • Machine wash/dry.

          ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chloe-compete-tank-xl-yellow-1768","links":{},"stock":{"item_id":1768,"product_id":1768,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xl-yellow-1768.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1821","_score":1,"_source":{"id":1821,"sku":"WP01-29-Black","name":"Karmen Yoga Pant-29-Black","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

          \n

          • Light blue parachute pants.
          • Power mesh internal waistband for support.
          • Internal waistband pocket.
          • Antimicrobial finish.

          ","image":"/w/p/wp01-black_main.jpg","small_image":"/w/p/wp01-black_main.jpg","thumbnail":"/w/p/wp01-black_main.jpg","color":"49","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"karmen-yoga-pant-29-black-1821","links":{},"stock":{"item_id":1821,"product_id":1821,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-29-black-1821.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1808","_score":1,"_source":{"id":1808,"sku":"WT09-M-Purple","name":"Breathe-Easy Tank-M-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

          The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

          \n

          • Machine wash/dry.
          • Cocona® fabric.

          ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"breathe-easy-tank-m-purple-1808","links":{},"stock":{"item_id":1808,"product_id":1808,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-m-purple-1808.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1822","_score":1,"_source":{"id":1822,"sku":"WP01-29-Gray","name":"Karmen Yoga Pant-29-Gray","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

          \n

          • Light blue parachute pants.
          • Power mesh internal waistband for support.
          • Internal waistband pocket.
          • Antimicrobial finish.

          ","image":"/w/p/wp01-gray_main.jpg","small_image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","color":"52","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"karmen-yoga-pant-29-gray-1822","links":{},"stock":{"item_id":1822,"product_id":1822,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp01-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-29-gray-1822.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1819","_score":1,"_source":{"id":1819,"sku":"WP01-28-Gray","name":"Karmen Yoga Pant-28-Gray","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

          Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

          \n

          • Light blue parachute pants.
          • Power mesh internal waistband for support.
          • Internal waistband pocket.
          • Antimicrobial finish.

          ","image":"/w/p/wp01-gray_main.jpg","small_image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","color":"52","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"karmen-yoga-pant-28-gray-1819","links":{},"stock":{"item_id":1819,"product_id":1819,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp01-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-28-gray-1819.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1873","_score":1,"_source":{"id":1873,"sku":"WP08","name":"Bardot Capri","attribute_set_id":10,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":48,"description":"

          Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

          \n

          • Black capris with pink waistband.
          • Cropped leggings.
          • Waistband drawcord.
          • Flat, thin and flattering.
          • Made with organic fabric.

          ","image":"/w/p/wp08-black_main.jpg","small_image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"bardot-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[150,39,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[107,109],"pattern":"195","climate":[205,212,206,209],"slug":"bardot-capri-1873","links":{},"stock":{"item_id":1873,"product_id":1873,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP08-28-Black","id":1867,"status":1,"name":"Bardot Capri-28-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"49","image":"/w/p/wp08-black_main.jpg","small_image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","url_key":"bardot-capri-28-black","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP08-28-Green","id":1868,"status":1,"name":"Bardot Capri-28-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"53","image":"/w/p/wp08-green_main.jpg","small_image":"/w/p/wp08-green_main.jpg","thumbnail":"/w/p/wp08-green_main.jpg","url_key":"bardot-capri-28-green","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP08-28-Red","id":1869,"status":1,"name":"Bardot Capri-28-Red","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"58","image":"/w/p/wp08-red_main.jpg","small_image":"/w/p/wp08-red_main.jpg","thumbnail":"/w/p/wp08-red_main.jpg","url_key":"bardot-capri-28-red","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP08-29-Black","id":1870,"status":1,"name":"Bardot Capri-29-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"49","image":"/w/p/wp08-black_main.jpg","small_image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","url_key":"bardot-capri-29-black","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP08-29-Green","id":1871,"status":1,"name":"Bardot Capri-29-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"53","image":"/w/p/wp08-green_main.jpg","small_image":"/w/p/wp08-green_main.jpg","thumbnail":"/w/p/wp08-green_main.jpg","url_key":"bardot-capri-29-green","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP08-29-Red","id":1872,"status":1,"name":"Bardot Capri-29-Red","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"58","image":"/w/p/wp08-red_main.jpg","small_image":"/w/p/wp08-red_main.jpg","thumbnail":"/w/p/wp08-red_main.jpg","url_key":"bardot-capri-29-red","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001}],"configurable_options":[{"id":261,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1873,"attribute_code":"color"},{"id":260,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1873,"attribute_code":"size"}],"color_options":[49,53,58],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-1873.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1880","_score":1,"_source":{"id":1880,"sku":"WP09","name":"Carina Basic Capri","attribute_set_id":10,"price":51,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":51,"description":"

          Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

          \n

          • Black capris with rouching detail.
          • 93% cotton, 7% spandex.
          • Elasticized waistband.
          • Reinforced seams with exposed topstitching.
          • Soft, medium-weight jersey with added stretch.

          ","image":"/w/p/wp09-black_main.jpg","small_image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"carina-basic-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[107,108,109],"pattern":"197","climate":[202,205,206,208,209],"slug":"carina-basic-capri-1880","links":{},"stock":{"item_id":1880,"product_id":1880,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_outfit.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP09-28-Black","id":1874,"status":1,"name":"Carina Basic Capri-28-Black","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"49","image":"/w/p/wp09-black_main.jpg","small_image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","url_key":"carina-basic-capri-28-black","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"WP09-28-Blue","id":1875,"status":1,"name":"Carina Basic Capri-28-Blue","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"50","image":"/w/p/wp09-blue_main.jpg","small_image":"/w/p/wp09-blue_main.jpg","thumbnail":"/w/p/wp09-blue_main.jpg","url_key":"carina-basic-capri-28-blue","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"WP09-28-Purple","id":1876,"status":1,"name":"Carina Basic Capri-28-Purple","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"57","image":"/w/p/wp09-purple_main.jpg","small_image":"/w/p/wp09-purple_main.jpg","thumbnail":"/w/p/wp09-purple_main.jpg","url_key":"carina-basic-capri-28-purple","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"WP09-29-Black","id":1877,"status":1,"name":"Carina Basic Capri-29-Black","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"49","image":"/w/p/wp09-black_main.jpg","small_image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","url_key":"carina-basic-capri-29-black","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"WP09-29-Blue","id":1878,"status":1,"name":"Carina Basic Capri-29-Blue","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"50","image":"/w/p/wp09-blue_main.jpg","small_image":"/w/p/wp09-blue_main.jpg","thumbnail":"/w/p/wp09-blue_main.jpg","url_key":"carina-basic-capri-29-blue","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"WP09-29-Purple","id":1879,"status":1,"name":"Carina Basic Capri-29-Purple","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"57","image":"/w/p/wp09-purple_main.jpg","small_image":"/w/p/wp09-purple_main.jpg","thumbnail":"/w/p/wp09-purple_main.jpg","url_key":"carina-basic-capri-29-purple","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001}],"configurable_options":[{"id":263,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":1880,"attribute_code":"color"},{"id":262,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1880,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-1880.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1924","_score":1,"_source":{"id":1924,"sku":"WSH01","name":"Fiona Fitness Short","attribute_set_id":10,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

          Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

          \n

          • Black run shorts
          - cotton/spandex.
          • 5” inseam.
          • Machine wash/Line dry.

          ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"fiona-fitness-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,151],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[106,105],"pattern":"197","climate":[205,212,206,209],"slug":"fiona-fitness-short-1924","links":{},"stock":{"item_id":1924,"product_id":1924,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH01-28-Black","id":1909,"status":1,"name":"Fiona Fitness Short-28-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"172","color":"49","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","url_key":"fiona-fitness-short-28-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-28-Green","id":1910,"status":1,"name":"Fiona Fitness Short-28-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"172","color":"53","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","url_key":"fiona-fitness-short-28-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-28-Red","id":1911,"status":1,"name":"Fiona Fitness Short-28-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"172","color":"58","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","url_key":"fiona-fitness-short-28-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-29-Black","id":1912,"status":1,"name":"Fiona Fitness Short-29-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"173","color":"49","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","url_key":"fiona-fitness-short-29-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-29-Green","id":1913,"status":1,"name":"Fiona Fitness Short-29-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"173","color":"53","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","url_key":"fiona-fitness-short-29-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-29-Red","id":1914,"status":1,"name":"Fiona Fitness Short-29-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"173","color":"58","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","url_key":"fiona-fitness-short-29-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-30-Black","id":1915,"status":1,"name":"Fiona Fitness Short-30-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"174","color":"49","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","url_key":"fiona-fitness-short-30-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-30-Green","id":1916,"status":1,"name":"Fiona Fitness Short-30-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"174","color":"53","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","url_key":"fiona-fitness-short-30-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-30-Red","id":1917,"status":1,"name":"Fiona Fitness Short-30-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"174","color":"58","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","url_key":"fiona-fitness-short-30-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-31-Black","id":1918,"status":1,"name":"Fiona Fitness Short-31-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"175","color":"49","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","url_key":"fiona-fitness-short-31-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-31-Green","id":1919,"status":1,"name":"Fiona Fitness Short-31-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"175","color":"53","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","url_key":"fiona-fitness-short-31-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-31-Red","id":1920,"status":1,"name":"Fiona Fitness Short-31-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"175","color":"58","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","url_key":"fiona-fitness-short-31-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-32-Black","id":1921,"status":1,"name":"Fiona Fitness Short-32-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"176","color":"49","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","url_key":"fiona-fitness-short-32-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-32-Green","id":1922,"status":1,"name":"Fiona Fitness Short-32-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"176","color":"53","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","url_key":"fiona-fitness-short-32-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-32-Red","id":1923,"status":1,"name":"Fiona Fitness Short-32-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"176","color":"58","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","url_key":"fiona-fitness-short-32-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":273,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1924,"attribute_code":"color"},{"id":272,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1924,"attribute_code":"size"}],"color_options":[49,53,58],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-1924.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1887","_score":1,"_source":{"id":1887,"sku":"WP10","name":"Daria Bikram Pant","attribute_set_id":10,"price":51,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":51,"description":"

          The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

          \n

          • Heather gray capris with pink striped waist.
          • Flatlock seams.
          • Interior pocket.

          ","image":"/w/p/wp10-gray_main.jpg","small_image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"daria-bikram-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,151],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"107","pattern":"195","climate":[202,205,206,208,209],"slug":"daria-bikram-pant-1887","links":{},"stock":{"item_id":1887,"product_id":1887,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP10-28-Black","id":1881,"status":1,"name":"Daria Bikram Pant-28-Black","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","36","2"],"size":"172","color":"49","image":"/w/p/wp10-black_main.jpg","small_image":"/w/p/wp10-black_main.jpg","thumbnail":"/w/p/wp10-black_main.jpg","url_key":"daria-bikram-pant-28-black","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"WP10-28-Gray","id":1882,"status":1,"name":"Daria Bikram Pant-28-Gray","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","36","2"],"size":"172","color":"52","image":"/w/p/wp10-gray_main.jpg","small_image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","url_key":"daria-bikram-pant-28-gray","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"WP10-28-White","id":1883,"status":1,"name":"Daria Bikram Pant-28-White","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","36","2"],"size":"172","color":"59","image":"/w/p/wp10-white_main.jpg","small_image":"/w/p/wp10-white_main.jpg","thumbnail":"/w/p/wp10-white_main.jpg","url_key":"daria-bikram-pant-28-white","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"WP10-29-Black","id":1884,"status":1,"name":"Daria Bikram Pant-29-Black","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","36","2"],"size":"173","color":"49","image":"/w/p/wp10-black_main.jpg","small_image":"/w/p/wp10-black_main.jpg","thumbnail":"/w/p/wp10-black_main.jpg","url_key":"daria-bikram-pant-29-black","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"WP10-29-Gray","id":1885,"status":1,"name":"Daria Bikram Pant-29-Gray","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","36","2"],"size":"173","color":"52","image":"/w/p/wp10-gray_main.jpg","small_image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","url_key":"daria-bikram-pant-29-gray","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"WP10-29-White","id":1886,"status":1,"name":"Daria Bikram Pant-29-White","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","36","2"],"size":"173","color":"59","image":"/w/p/wp10-white_main.jpg","small_image":"/w/p/wp10-white_main.jpg","thumbnail":"/w/p/wp10-white_main.jpg","url_key":"daria-bikram-pant-29-white","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001}],"configurable_options":[{"id":265,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":59,"label":"White"}],"product_id":1887,"attribute_code":"color"},{"id":264,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1887,"attribute_code":"size"}],"color_options":[49,52,59],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-1887.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1918","_score":1,"_source":{"id":1918,"sku":"WSH01-31-Black","name":"Fiona Fitness Short-31-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

          Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

          \n

          • Black run shorts
          - cotton/spandex.
          • 5” inseam.
          • Machine wash/Line dry.

          ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-31-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"fiona-fitness-short-31-black-1918","links":{},"stock":{"item_id":1918,"product_id":1918,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-31-black-1918.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1903","_score":1,"_source":{"id":1903,"sku":"WP13-28-Green","name":"Portia Capri-28-Green","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

          From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

          \n

          • Salmon heather capri sweats.
          • Relaxed fit, high waist.
          • Inseam: 21\".
          • Wide elastic waistband.
          • Machine wash/dry.

          ","image":"/w/p/wp13-green_main.jpg","small_image":"/w/p/wp13-green_main.jpg","thumbnail":"/w/p/wp13-green_main.jpg","color":"53","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"portia-capri-28-green-1903","links":{},"stock":{"item_id":1903,"product_id":1903,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-28-green-1903.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1907","_score":1,"_source":{"id":1907,"sku":"WP13-29-Orange","name":"Portia Capri-29-Orange","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

          From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

          \n

          • Salmon heather capri sweats.
          • Relaxed fit, high waist.
          • Inseam: 21\".
          • Wide elastic waistband.
          • Machine wash/dry.

          ","image":"/w/p/wp13-orange_main.jpg","small_image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","color":"56","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"portia-capri-29-orange-1907","links":{},"stock":{"item_id":1907,"product_id":1907,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp13-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-29-orange-1907.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1925","_score":1,"_source":{"id":1925,"sku":"WSH02-28-Gray","name":"Maxima Drawstring Short-28-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

          Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

          \n

          • Light gray run shorts
          - cotton polyester.
          • Contrast binding.
          • 3\" inseam.
          • Machine wash/dry.

          ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"maxima-drawstring-short-28-gray-1925","links":{},"stock":{"item_id":1925,"product_id":1925,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-28-gray-1925.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1906","_score":1,"_source":{"id":1906,"sku":"WP13-29-Green","name":"Portia Capri-29-Green","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

          From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

          \n

          • Salmon heather capri sweats.
          • Relaxed fit, high waist.
          • Inseam: 21\".
          • Wide elastic waistband.
          • Machine wash/dry.

          ","image":"/w/p/wp13-green_main.jpg","small_image":"/w/p/wp13-green_main.jpg","thumbnail":"/w/p/wp13-green_main.jpg","color":"53","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"portia-capri-29-green-1906","links":{},"stock":{"item_id":1906,"product_id":1906,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-29-green-1906.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1938","_score":1,"_source":{"id":1938,"sku":"WSH02-32-Orange","name":"Maxima Drawstring Short-32-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

          Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

          \n

          • Light gray run shorts
          - cotton polyester.
          • Contrast binding.
          • 3\" inseam.
          • Machine wash/dry.

          ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-32-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"maxima-drawstring-short-32-orange-1938","links":{},"stock":{"item_id":1938,"product_id":1938,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-32-orange-1938.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1946","_score":1,"_source":{"id":1946,"sku":"WSH03-29-Orange","name":"Gwen Drawstring Bike Short-29-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

          For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

          \n

          • Dark heather gray rouched bike shorts.
          • Fitted. Inseam: 2\".
          • Machine wash/dry.

          ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"gwen-drawstring-bike-short-29-orange-1946","links":{},"stock":{"item_id":1946,"product_id":1946,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-29-orange-1946.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1944","_score":1,"_source":{"id":1944,"sku":"WSH03-29-Blue","name":"Gwen Drawstring Bike Short-29-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

          For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

          \n

          • Dark heather gray rouched bike shorts.
          • Fitted. Inseam: 2\".
          • Machine wash/dry.

          ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"gwen-drawstring-bike-short-29-blue-1944","links":{},"stock":{"item_id":1944,"product_id":1944,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-29-blue-1944.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1945","_score":1,"_source":{"id":1945,"sku":"WSH03-29-Gray","name":"Gwen Drawstring Bike Short-29-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

          For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

          \n

          • Dark heather gray rouched bike shorts.
          • Fitted. Inseam: 2\".
          • Machine wash/dry.

          ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"gwen-drawstring-bike-short-29-gray-1945","links":{},"stock":{"item_id":1945,"product_id":1945,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-29-gray-1945.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1896","_score":1,"_source":{"id":1896,"sku":"WP12-28-Gray","name":"Deirdre Relaxed-Fit Capri-28-Gray","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

          Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

          \n

          • Heather gray capris with mint green waist & accents.
          • Comfortable, relaxed fit with high rise.
          • Moisture-wicking, 4-way stretch construction.
          • Lined with mesh for better support.
          • Hidden pocket at waistband.
          • Flatlock seams and lined gusset for comfort.

          ","image":"/w/p/wp12-gray_main.jpg","small_image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","color":"52","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"deirdre-relaxed-fit-capri-28-gray-1896","links":{},"stock":{"item_id":1896,"product_id":1896,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-28-gray-1896.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1904","_score":1,"_source":{"id":1904,"sku":"WP13-28-Orange","name":"Portia Capri-28-Orange","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

          From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

          \n

          • Salmon heather capri sweats.
          • Relaxed fit, high waist.
          • Inseam: 21\".
          • Wide elastic waistband.
          • Machine wash/dry.

          ","image":"/w/p/wp13-orange_main.jpg","small_image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","color":"56","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"portia-capri-28-orange-1904","links":{},"stock":{"item_id":1904,"product_id":1904,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp13-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-28-orange-1904.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1979","_score":1,"_source":{"id":1979,"sku":"WSH05-30-Blue","name":"Bess Yoga Short-30-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

          Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

          \n

          • Navy cotton shorts with light bue waist detail.
          • Front shirred waistband.
          • Flat-lock, chafe-free side seams.
          • Vented gusset.
          • Hidden interior pocket.
          • Sustainable and recycled fabric.

          ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-30-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"bess-yoga-short-30-blue-1979","links":{},"stock":{"item_id":1979,"product_id":1979,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-30-blue-1979.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1967","_score":1,"_source":{"id":1967,"sku":"WSH04-31-Green","name":"Artemis Running Short-31-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

          Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

          \n

          • Black rouched shorts with mint waist.
          • Soft, lightweight construction.
          • LumaTech™ wicking technology.
          • Semi-fitted.

          ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-31-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"artemis-running-short-31-green-1967","links":{},"stock":{"item_id":1967,"product_id":1967,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-31-green-1967.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1997","_score":1,"_source":{"id":1997,"sku":"WSH07-28-Blue","name":"Echo Fit Compression Short-28-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

          Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

          \n

          • Black compression shorts.
          • High-waisted cut.
          • Compression fit.
          • Inseam: 1.0\".
          • Machine wash/dry.

          ","image":"/w/s/wsh07-blue_main.jpg","small_image":"/w/s/wsh07-blue_main.jpg","thumbnail":"/w/s/wsh07-blue_main.jpg","color":"50","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"echo-fit-compression-short-28-blue-1997","links":{},"stock":{"item_id":1997,"product_id":1997,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-28-blue-1997.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1986","_score":1,"_source":{"id":1986,"sku":"WSH05-32-Purple","name":"Bess Yoga Short-32-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

          Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

          \n

          • Navy cotton shorts with light bue waist detail.
          • Front shirred waistband.
          • Flat-lock, chafe-free side seams.
          • Vented gusset.
          • Hidden interior pocket.
          • Sustainable and recycled fabric.

          ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"bess-yoga-short-32-purple-1986","links":{},"stock":{"item_id":1986,"product_id":1986,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-32-purple-1986.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1973","_score":1,"_source":{"id":1973,"sku":"WSH05-28-Blue","name":"Bess Yoga Short-28-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

          Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

          \n

          • Navy cotton shorts with light bue waist detail.
          • Front shirred waistband.
          • Flat-lock, chafe-free side seams.
          • Vented gusset.
          • Hidden interior pocket.
          • Sustainable and recycled fabric.

          ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bess-yoga-short-28-blue-1973","links":{},"stock":{"item_id":1973,"product_id":1973,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-28-blue-1973.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1989","_score":1,"_source":{"id":1989,"sku":"WSH06-28-Gray","name":"Angel Light Running Short-28-Gray","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

          The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

          \n

          • Dark heather gray running shorts.
          • Snug fit.
          • Elastic waistband.
          • Cocona® performance fabric.
          • Machine wash/dry.

          ","image":"/w/s/wsh06-gray_main.jpg","small_image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","color":"52","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"angel-light-running-short-28-gray-1989","links":{},"stock":{"item_id":1989,"product_id":1989,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-28-gray-1989.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1984","_score":1,"_source":{"id":1984,"sku":"WSH05-31-Yellow","name":"Bess Yoga Short-31-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

          Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

          \n

          • Navy cotton shorts with light bue waist detail.
          • Front shirred waistband.
          • Flat-lock, chafe-free side seams.
          • Vented gusset.
          • Hidden interior pocket.
          • Sustainable and recycled fabric.

          ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-31-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"bess-yoga-short-31-yellow-1984","links":{},"stock":{"item_id":1984,"product_id":1984,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-31-yellow-1984.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1962","_score":1,"_source":{"id":1962,"sku":"WSH04-29-Orange","name":"Artemis Running Short-29-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

          Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

          \n

          • Black rouched shorts with mint waist.
          • Soft, lightweight construction.
          • LumaTech™ wicking technology.
          • Semi-fitted.

          ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"artemis-running-short-29-orange-1962","links":{},"stock":{"item_id":1962,"product_id":1962,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-29-orange-1962.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1985","_score":1,"_source":{"id":1985,"sku":"WSH05-32-Blue","name":"Bess Yoga Short-32-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

          Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

          \n

          • Navy cotton shorts with light bue waist detail.
          • Front shirred waistband.
          • Flat-lock, chafe-free side seams.
          • Vented gusset.
          • Hidden interior pocket.
          • Sustainable and recycled fabric.

          ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"bess-yoga-short-32-blue-1985","links":{},"stock":{"item_id":1985,"product_id":1985,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-32-blue-1985.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1999","_score":1,"_source":{"id":1999,"sku":"WSH07-29-Black","name":"Echo Fit Compression Short-29-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

          Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

          \n

          • Black compression shorts.
          • High-waisted cut.
          • Compression fit.
          • Inseam: 1.0\".
          • Machine wash/dry.

          ","image":"/w/s/wsh07-black_main.jpg","small_image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","color":"49","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"echo-fit-compression-short-29-black-1999","links":{},"stock":{"item_id":1999,"product_id":1999,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh07-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-29-black-1999.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1995","_score":1,"_source":{"id":1995,"sku":"WSH06","name":"Angel Light Running Short","attribute_set_id":10,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":42,"description":"

          The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

          \n

          • Dark heather gray running shorts.
          • Snug fit.
          • Elastic waistband.
          • Cocona® performance fabric.
          • Machine wash/dry.

          ","image":"/w/s/wsh06-gray_main.jpg","small_image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"angel-light-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,36,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[106,112],"pattern":"197","climate":[202,205,212],"slug":"angel-light-running-short-1995","links":{},"stock":{"item_id":1995,"product_id":1995,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH06-28-Gray","id":1989,"status":1,"name":"Angel Light Running Short-28-Gray","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"52","image":"/w/s/wsh06-gray_main.jpg","small_image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","url_key":"angel-light-running-short-28-gray","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WSH06-28-Orange","id":1990,"status":1,"name":"Angel Light Running Short-28-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"56","image":"/w/s/wsh06-orange_main.jpg","small_image":"/w/s/wsh06-orange_main.jpg","thumbnail":"/w/s/wsh06-orange_main.jpg","url_key":"angel-light-running-short-28-orange","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WSH06-28-Purple","id":1991,"status":1,"name":"Angel Light Running Short-28-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"57","image":"/w/s/wsh06-purple_main.jpg","small_image":"/w/s/wsh06-purple_main.jpg","thumbnail":"/w/s/wsh06-purple_main.jpg","url_key":"angel-light-running-short-28-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WSH06-29-Gray","id":1992,"status":1,"name":"Angel Light Running Short-29-Gray","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"52","image":"/w/s/wsh06-gray_main.jpg","small_image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","url_key":"angel-light-running-short-29-gray","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WSH06-29-Orange","id":1993,"status":1,"name":"Angel Light Running Short-29-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"56","image":"/w/s/wsh06-orange_main.jpg","small_image":"/w/s/wsh06-orange_main.jpg","thumbnail":"/w/s/wsh06-orange_main.jpg","url_key":"angel-light-running-short-29-orange","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WSH06-29-Purple","id":1994,"status":1,"name":"Angel Light Running Short-29-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"57","image":"/w/s/wsh06-purple_main.jpg","small_image":"/w/s/wsh06-purple_main.jpg","thumbnail":"/w/s/wsh06-purple_main.jpg","url_key":"angel-light-running-short-29-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001}],"configurable_options":[{"id":283,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1995,"attribute_code":"color"},{"id":282,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1995,"attribute_code":"size"}],"color_options":[52,56,57],"size_options":[172,173],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-1995.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"1956","_score":1,"_source":{"id":1956,"sku":"WSH03","name":"Gwen Drawstring Bike Short","attribute_set_id":10,"price":50,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":50,"description":"

          For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

          \n

          • Dark heather gray rouched bike shorts.
          • Fitted. Inseam: 2\".
          • Machine wash/dry.

          ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"gwen-drawstring-bike-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,154],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_bottom":[106,112,105],"pattern":"197","climate":[202,205,212],"slug":"gwen-drawstring-bike-short-1956","links":{},"stock":{"item_id":1956,"product_id":1956,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH03-28-Blue","id":1941,"status":1,"name":"Gwen Drawstring Bike Short-28-Blue","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"172","color":"50","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","url_key":"gwen-drawstring-bike-short-28-blue","msrp_display_actual_price_type":"0"},{"sku":"WSH03-28-Gray","id":1942,"status":1,"name":"Gwen Drawstring Bike Short-28-Gray","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"172","color":"52","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","url_key":"gwen-drawstring-bike-short-28-gray","msrp_display_actual_price_type":"0"},{"sku":"WSH03-28-Orange","id":1943,"status":1,"name":"Gwen Drawstring Bike Short-28-Orange","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"172","color":"56","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","url_key":"gwen-drawstring-bike-short-28-orange","msrp_display_actual_price_type":"0"},{"sku":"WSH03-29-Blue","id":1944,"status":1,"name":"Gwen Drawstring Bike Short-29-Blue","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"173","color":"50","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","url_key":"gwen-drawstring-bike-short-29-blue","msrp_display_actual_price_type":"0"},{"sku":"WSH03-29-Gray","id":1945,"status":1,"name":"Gwen Drawstring Bike Short-29-Gray","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"173","color":"52","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","url_key":"gwen-drawstring-bike-short-29-gray","msrp_display_actual_price_type":"0"},{"sku":"WSH03-29-Orange","id":1946,"status":1,"name":"Gwen Drawstring Bike Short-29-Orange","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"173","color":"56","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","url_key":"gwen-drawstring-bike-short-29-orange","msrp_display_actual_price_type":"0"},{"sku":"WSH03-30-Blue","id":1947,"status":1,"name":"Gwen Drawstring Bike Short-30-Blue","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"174","color":"50","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","url_key":"gwen-drawstring-bike-short-30-blue","msrp_display_actual_price_type":"0"},{"sku":"WSH03-30-Gray","id":1948,"status":1,"name":"Gwen Drawstring Bike Short-30-Gray","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"174","color":"52","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","url_key":"gwen-drawstring-bike-short-30-gray","msrp_display_actual_price_type":"0"},{"sku":"WSH03-30-Orange","id":1949,"status":1,"name":"Gwen Drawstring Bike Short-30-Orange","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"174","color":"56","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","url_key":"gwen-drawstring-bike-short-30-orange","msrp_display_actual_price_type":"0"},{"sku":"WSH03-31-Blue","id":1950,"status":1,"name":"Gwen Drawstring Bike Short-31-Blue","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"175","color":"50","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","url_key":"gwen-drawstring-bike-short-31-blue","msrp_display_actual_price_type":"0"},{"sku":"WSH03-31-Gray","id":1951,"status":1,"name":"Gwen Drawstring Bike Short-31-Gray","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"175","color":"52","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","url_key":"gwen-drawstring-bike-short-31-gray","msrp_display_actual_price_type":"0","final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001},{"sku":"WSH03-31-Orange","id":1952,"status":1,"name":"Gwen Drawstring Bike Short-31-Orange","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"175","color":"56","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","url_key":"gwen-drawstring-bike-short-31-orange","msrp_display_actual_price_type":"0","final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001},{"sku":"WSH03-32-Blue","id":1953,"status":1,"name":"Gwen Drawstring Bike Short-32-Blue","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"176","color":"50","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","url_key":"gwen-drawstring-bike-short-32-blue","msrp_display_actual_price_type":"0","final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001},{"sku":"WSH03-32-Gray","id":1954,"status":1,"name":"Gwen Drawstring Bike Short-32-Gray","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"176","color":"52","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","url_key":"gwen-drawstring-bike-short-32-gray","msrp_display_actual_price_type":"0","final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001},{"sku":"WSH03-32-Orange","id":1955,"status":1,"name":"Gwen Drawstring Bike Short-32-Orange","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"176","color":"56","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","url_key":"gwen-drawstring-bike-short-32-orange","msrp_display_actual_price_type":"0","final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001}],"configurable_options":[{"id":277,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"}],"product_id":1956,"attribute_code":"color"},{"id":276,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1956,"attribute_code":"size"}],"color_options":[50,52,56],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-1956.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2014","_score":1,"_source":{"id":2014,"sku":"WSH09-29-White","name":"Mimi All-Purpose Short-29-White","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

          You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

          \n

          • Gray/seafoam two-layer shorts.
          • Water-resistant construction.
          • Inner mesh brief for breathable support.
          • 2.0\" inseam.
          • Reflective trim for visibility.

          ","image":"/w/s/wsh09-white_main.jpg","small_image":"/w/s/wsh09-white_main.jpg","thumbnail":"/w/s/wsh09-white_main.jpg","color":"59","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"mimi-all-purpose-short-29-white-2014","links":{},"stock":{"item_id":2014,"product_id":2014,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-29-white-2014.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2025","_score":1,"_source":{"id":2025,"sku":"WSH11-28-Red","name":"Ina Compression Short-28-Red","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

          One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

          \n

          • Royal blue bike shorts.
          • Compression fit.
          • Moisture-wicking.
          • Anti-microbial.
          • Machine wash/dry.

          ","image":"/w/s/wsh11-red_main.jpg","small_image":"/w/s/wsh11-red_main.jpg","thumbnail":"/w/s/wsh11-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ina-compression-short-28-red-2025","links":{},"stock":{"item_id":2025,"product_id":2025,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-28-red-2025.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2012","_score":1,"_source":{"id":2012,"sku":"WSH09-29-Gray","name":"Mimi All-Purpose Short-29-Gray","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

          You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

          \n

          • Gray/seafoam two-layer shorts.
          • Water-resistant construction.
          • Inner mesh brief for breathable support.
          • 2.0\" inseam.
          • Reflective trim for visibility.

          ","image":"/w/s/wsh09-gray_main.jpg","small_image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","color":"52","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"mimi-all-purpose-short-29-gray-2012","links":{},"stock":{"item_id":2012,"product_id":2012,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh09-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh09-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-29-gray-2012.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2011","_score":1,"_source":{"id":2011,"sku":"WSH09-28-White","name":"Mimi All-Purpose Short-28-White","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

          You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

          \n

          • Gray/seafoam two-layer shorts.
          • Water-resistant construction.
          • Inner mesh brief for breathable support.
          • 2.0\" inseam.
          • Reflective trim for visibility.

          ","image":"/w/s/wsh09-white_main.jpg","small_image":"/w/s/wsh09-white_main.jpg","thumbnail":"/w/s/wsh09-white_main.jpg","color":"59","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"mimi-all-purpose-short-28-white-2011","links":{},"stock":{"item_id":2011,"product_id":2011,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-28-white-2011.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2038","_score":1,"_source":{"id":2038,"sku":"WSH12-30-Red","name":"Erika Running Short-30-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

          A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

          \n

          • Seafoam pattern running shorts.
          • Elastic waistband.
          • Snug fit.
          • 4'' inseam.
          • 76% premium brushed Nylon / 24% Spandex.

          ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-30-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"erika-running-short-30-red-2038","links":{},"stock":{"item_id":2038,"product_id":2038,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-30-red-2038.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2031","_score":1,"_source":{"id":2031,"sku":"WSH12-28-Purple","name":"Erika Running Short-28-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

          A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

          \n

          • Seafoam pattern running shorts.
          • Elastic waistband.
          • Snug fit.
          • 4'' inseam.
          • 76% premium brushed Nylon / 24% Spandex.

          ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"erika-running-short-28-purple-2031","links":{},"stock":{"item_id":2031,"product_id":2031,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-28-purple-2031.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2043","_score":1,"_source":{"id":2043,"sku":"WSH12-32-Purple","name":"Erika Running Short-32-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

          A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

          \n

          • Seafoam pattern running shorts.
          • Elastic waistband.
          • Snug fit.
          • 4'' inseam.
          • 76% premium brushed Nylon / 24% Spandex.

          ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"erika-running-short-32-purple-2043","links":{},"stock":{"item_id":2043,"product_id":2043,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-32-purple-2043.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2046","_score":1,"_source":{"id":2046,"sku":"24-WG085_Group","name":"Set of Sprite Yoga Straps","attribute_set_id":11,"status":1,"visibility":4,"type_id":"grouped","created_at":"2017-11-06 12:17:53","updated_at":"2017-11-06 12:17:53","product_links":[{"sku":"24-WG085_Group","link_type":"associated","linked_product_sku":"24-WG085","linked_product_type":"simple","position":0,"extension_attributes":{"qty":0}},{"sku":"24-WG085_Group","link_type":"associated","linked_product_sku":"24-WG086","linked_product_type":"simple","position":1,"extension_attributes":{"qty":0}},{"sku":"24-WG085_Group","link_type":"associated","linked_product_sku":"24-WG087","linked_product_type":"simple","position":2,"extension_attributes":{"qty":0}}],"tier_prices":[],"custom_attributes":null,"final_price":17.220001,"max_price":17.220001,"max_regular_price":17.220001,"minimal_regular_price":17.220001,"special_price":null,"minimal_price":17.220001,"regular_price":0,"description":"

          Great set of Sprite Yoga Straps for every stretch and hold you need. There are three straps in this set: 6', 8' and 10'.

          \n
            \n
          • 100% soft and durable cotton.\n
          • Plastic cinch buckle is easy to use.\n
          • Choice of three natural colors made from phthalate and heavy metal free dyes.\n
          ","image":"/l/u/luma-yoga-strap-set.jpg","small_image":"/l/u/luma-yoga-strap-set.jpg","thumbnail":"/l/u/luma-yoga-strap-set.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"set-of-sprite-yoga-straps","activity":"8","material":[32,44],"category_gear":"87","slug":"set-of-sprite-yoga-straps-2046","links":{"associated":[{"sku":"24-WG085","pos":0},{"sku":"24-WG086","pos":1},{"sku":"24-WG087","pos":2}]},"stock":{"item_id":2046,"product_id":2046,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-yoga-strap-set.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/set-of-sprite-yoga-straps-2046.html","tsk":1556376593995}} -{"_index":"vue_storefront_catalog_de_1556377793","_type":"product","_id":"2034","_score":1,"_source":{"id":2034,"sku":"WSH12-29-Purple","name":"Erika Running Short-29-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

          A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

          \n

          • Seafoam pattern running shorts.
          • Elastic waistband.
          • Snug fit.
          • 4'' inseam.
          • 76% premium brushed Nylon / 24% Spandex.

          ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"erika-running-short-29-purple-2034","links":{},"stock":{"item_id":2034,"product_id":2034,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-29-purple-2034.html","tsk":1556376593995}} diff --git a/var/catalog_de_attribute.json b/var/catalog_de_attribute.json new file mode 100644 index 00000000..cb8cef1e --- /dev/null +++ b/var/catalog_de_attribute.json @@ -0,0 +1,80 @@ +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"136","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":136,"attribute_code":"style_bags","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Backpack","value":"24"},{"label":"Luggage","value":"25"},{"label":"Duffel","value":"26"},{"label":"Messenger","value":"27"},{"label":"Laptop","value":"28"},{"label":"Exercise","value":"29"},{"label":"Tote","value":"30"}],"is_user_defined":true,"default_frontend_label":"Style Bags","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":136,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"152","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":152,"attribute_code":"collar","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"N/A","value":"181"},{"label":"? zip","value":"182"},{"label":"Boat Neck","value":"183"},{"label":"Crew","value":"184"},{"label":"Full zip","value":"185"},{"label":"V-neck","value":"186"},{"label":"Ballet","value":"187"},{"label":"Scoop","value":"188"},{"label":"High Collar","value":"189"},{"label":"Stand Collar","value":"190"},{"label":"Roll Neck","value":"191"},{"label":"Square Neck","value":"192"}],"is_user_defined":true,"default_frontend_label":"Collar","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":152,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"80","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":80,"attribute_code":"special_to_date","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Special Price To Date","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime","is_unique":"0","validation_rules":[],"id":80,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"105","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":105,"attribute_code":"category_ids","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Categories","frontend_labels":null,"backend_type":"static","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Category","is_unique":"0","validation_rules":[],"id":105,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"124","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":124,"attribute_code":"sku_type","frontend_input":"boolean","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Dynamic SKU","frontend_labels":null,"backend_type":"int","default_value":"0","is_unique":"0","validation_rules":[],"id":124,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"132","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":132,"attribute_code":"gift_message_available","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"},{"label":"Use config","value":"2"}],"is_user_defined":false,"default_frontend_label":"Allow Gift Message","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Boolean","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Boolean","is_unique":"0","validation_rules":[],"id":132,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"82","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":82,"attribute_code":"weight","frontend_input":"weight","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Weight","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Weight","is_unique":"0","validation_rules":[],"id":82,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"106","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":106,"attribute_code":"options_container","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Product Info Column","value":"container1"},{"label":"Block after Info Column","value":"container2"}],"is_user_defined":false,"default_frontend_label":"Display Product Options In","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Catalog\\Model\\Entity\\Product\\Attribute\\Design\\Options\\Container","default_value":"container2","is_unique":"0","validation_rules":[],"id":106,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"126","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":126,"attribute_code":"price_view","frontend_input":"select","entity_type_id":"4","is_required":true,"options":[{"label":"Price Range","value":"0"},{"label":"As Low as","value":"1"}],"is_user_defined":false,"default_frontend_label":"Price View","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Bundle\\Model\\Product\\Attribute\\Source\\Price\\View","is_unique":"0","validation_rules":[],"id":126,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"90","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":90,"attribute_code":"media_gallery","frontend_input":"gallery","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Media Gallery","frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":90,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"111","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"store","attribute_id":111,"attribute_code":"thumbnail_label","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Thumbnail Label","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":111,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"140","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":140,"attribute_code":"gender","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Men","value":"80"},{"label":"Women","value":"81"},{"label":"Boys","value":"82"},{"label":"Girls","value":"83"},{"label":"Unisex","value":"84"}],"is_user_defined":true,"default_frontend_label":"Gender","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":140,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"91","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":91,"attribute_code":"old_id","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"int","is_unique":"0","validation_rules":[],"id":91,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"98","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":98,"attribute_code":"minimal_price","frontend_input":"price","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Minimal Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":98,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"119","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":119,"attribute_code":"url_key","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"URL Key","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":119,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"115","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":115,"attribute_code":"quantity_and_stock_status","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"In Stock","value":"1"},{"label":"Out of Stock","value":"0"}],"is_user_defined":false,"default_frontend_label":"Quantity","frontend_labels":null,"backend_type":"int","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Stock","source_model":"Magento\\CatalogInventory\\Model\\Source\\Stock","default_value":"1","is_unique":"0","validation_rules":[],"id":115,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"86","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":86,"attribute_code":"meta_description","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Meta Description","frontend_labels":null,"note":"Maximum 255 chars. Meta Description should optimally be between 150-160 characters","backend_type":"varchar","is_unique":"0","validation_rules":[],"id":86,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"149","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":149,"attribute_code":"style_bottom","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Base Layer","value":"105"},{"label":"Basic","value":"106"},{"label":"Capri","value":"107"},{"label":"Compression","value":"108"},{"label":"Leggings","value":"109"},{"label":"Parachute","value":"110"},{"label":"Skort","value":"111"},{"label":"Snug","value":"112"},{"label":"Sweatpants","value":"113"},{"label":"Tights","value":"114"},{"label":"Track Pants","value":"115"},{"label":"Workout Pants","value":"116"}],"is_user_defined":true,"default_frontend_label":"Style Bottom","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":149,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"103","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":103,"attribute_code":"custom_layout_update","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Layout Update XML","frontend_labels":null,"backend_type":"text","backend_model":"Magento\\Catalog\\Model\\Attribute\\Backend\\Customlayoutupdate","is_unique":"0","validation_rules":[],"id":103,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"84","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":84,"attribute_code":"meta_title","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Meta Title","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":84,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"139","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":139,"attribute_code":"features_bags","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Audio Pocket","value":"69"},{"label":"Wheeled","value":"70"},{"label":"Hydration Pocket","value":"71"},{"label":"Audio Pocket","value":"72"},{"label":"Flapover","value":"73"},{"label":"Waterproof","value":"74"},{"label":"Lightweight","value":"75"},{"label":"TSA Approved","value":"76"},{"label":"Reflective","value":"77"},{"label":"Laptop Sleeve","value":"78"},{"label":"Lockable","value":"79"}],"is_user_defined":true,"default_frontend_label":"Features","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":139,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"101","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":101,"attribute_code":"custom_design_from","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Active From","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate","is_unique":"0","validation_rules":[],"id":101,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"138","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":138,"attribute_code":"strap_bags","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Adjustable","value":"61"},{"label":"Cross Body","value":"62"},{"label":"Detachable","value":"63"},{"label":"Double","value":"64"},{"label":"Padded","value":"65"},{"label":"Shoulder","value":"66"},{"label":"Single","value":"67"},{"label":"Telescoping","value":"68"}],"is_user_defined":true,"default_frontend_label":"Strap/Handle","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":138,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"116","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":116,"attribute_code":"custom_layout","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"No layout updates","value":""},{"label":"Empty","value":"empty"},{"label":"1 column","value":"1column"},{"label":"2 columns with left bar","value":"2columns-left"},{"label":"2 columns with right bar","value":"2columns-right"},{"label":"3 columns","value":"3columns"}],"is_user_defined":false,"default_frontend_label":"New Layout","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Layout","is_unique":"0","validation_rules":[],"id":116,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"145","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":145,"attribute_code":"erin_recommends","frontend_input":"boolean","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"}],"is_user_defined":true,"default_frontend_label":"Erin Recommends","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean","default_value":"","is_unique":"0","validation_rules":[],"id":145,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"146","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":146,"attribute_code":"new","frontend_input":"boolean","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"}],"is_user_defined":true,"default_frontend_label":"New","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean","default_value":"","is_unique":"0","validation_rules":[],"id":146,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"121","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","downloadable","bundle","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":121,"attribute_code":"msrp","frontend_input":"price","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Manufacturer's Suggested Retail Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":121,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"127","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":127,"attribute_code":"shipment_type","frontend_input":"select","entity_type_id":"4","is_required":true,"options":[{"label":"Together","value":"0"},{"label":"Separately","value":"1"}],"is_user_defined":false,"default_frontend_label":"Ship Bundle Items","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Bundle\\Model\\Product\\Attribute\\Source\\Shipment\\Type","default_value":"0","is_unique":"0","validation_rules":[],"id":127,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"85","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":85,"attribute_code":"meta_keyword","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Meta Keywords","frontend_labels":null,"backend_type":"text","is_unique":"0","validation_rules":[],"id":85,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"131","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"global","attribute_id":131,"attribute_code":"links_exist","frontend_input":null,"entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"int","default_value":"0","is_unique":"0","validation_rules":[],"id":131,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"120","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"store","attribute_id":120,"attribute_code":"url_path","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":120,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"125","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":125,"attribute_code":"weight_type","frontend_input":"boolean","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Dynamic Weight","frontend_labels":null,"backend_type":"int","default_value":"0","is_unique":"0","validation_rules":[],"id":125,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"142","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":142,"attribute_code":"size","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"55 cm","value":"91"},{"label":"XS","value":"167"},{"label":"65 cm","value":"92"},{"label":"S","value":"168"},{"label":"75 cm","value":"93"},{"label":"M","value":"169"},{"label":"6 foot","value":"94"},{"label":"L","value":"170"},{"label":"8 foot","value":"95"},{"label":"XL","value":"171"},{"label":"10 foot","value":"96"},{"label":"28","value":"172"},{"label":"29","value":"173"},{"label":"30","value":"174"},{"label":"31","value":"175"},{"label":"32","value":"176"},{"label":"33","value":"177"},{"label":"34","value":"178"},{"label":"36","value":"179"},{"label":"38","value":"180"}],"is_user_defined":true,"default_frontend_label":"Size","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"91","is_unique":"0","validation_rules":[],"id":142,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"81","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":81,"attribute_code":"cost","frontend_input":"price","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":true,"default_frontend_label":"Cost","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":81,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"113","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":113,"attribute_code":"updated_at","frontend_input":"date","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":113,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"79","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":79,"attribute_code":"special_from_date","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Special Price From Date","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate","is_unique":"0","validation_rules":[],"id":79,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"134","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"1","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":134,"attribute_code":"tax_class_id","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"None","value":"0"},{"label":"Taxable Goods","value":"2"}],"is_user_defined":false,"default_frontend_label":"Tax Class","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Tax\\Model\\TaxClass\\Source\\Product","default_value":"2","is_unique":"0","validation_rules":[],"id":134,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"102","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":102,"attribute_code":"custom_design_to","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Active To","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime","is_unique":"0","validation_rules":[],"id":102,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"100","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":100,"attribute_code":"custom_design","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"-- Please Select --","value":""},{"label":"Magento Blank","value":"1"},{"label":"Magento Luma","value":"2"}],"is_user_defined":false,"default_frontend_label":"New Theme","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Theme\\Model\\Theme\\Source\\Theme","is_unique":"0","validation_rules":[],"id":100,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"83","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple"],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"1","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":83,"attribute_code":"manufacturer","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""}],"is_user_defined":true,"default_frontend_label":"Manufacturer","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","is_unique":"0","validation_rules":[],"id":83,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"108","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":108,"attribute_code":"has_options","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":108,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"104","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":104,"attribute_code":"page_layout","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"No layout updates","value":""},{"label":"Empty","value":"empty"},{"label":"1 column","value":"1column"},{"label":"2 columns with left bar","value":"2columns-left"},{"label":"2 columns with right bar","value":"2columns-right"},{"label":"3 columns","value":"3columns"}],"is_user_defined":false,"default_frontend_label":"Layout","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Layout","is_unique":"0","validation_rules":[],"id":104,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"133","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":133,"attribute_code":"swatch_image","frontend_input":"media_image","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Swatch","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":133,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"144","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":144,"attribute_code":"performance_fabric","frontend_input":"boolean","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"}],"is_user_defined":true,"default_frontend_label":"Performance Fabric","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean","default_value":"","is_unique":"0","validation_rules":[],"id":144,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"141","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":141,"attribute_code":"category_gear","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Cardio","value":"85"},{"label":"Electronic","value":"86"},{"label":"Exercise","value":"87"},{"label":"Fashion","value":"88"},{"label":"Hydration","value":"89"},{"label":"Timepiece","value":"90"}],"is_user_defined":true,"default_frontend_label":"Category Gear","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":141,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"109","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"store","attribute_id":109,"attribute_code":"image_label","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Image Label","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":109,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"75","_score":1,"_source":{"is_wysiwyg_enabled":true,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"1","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":75,"attribute_code":"description","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Description","frontend_labels":null,"backend_type":"text","is_unique":"0","validation_rules":[],"id":75,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"137","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":137,"attribute_code":"material","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Burlap","value":"31"},{"label":"Cocona® performance fabric","value":"143"},{"label":"Canvas","value":"32"},{"label":"Wool","value":"144"},{"label":"Cotton","value":"33"},{"label":"Fleece","value":"145"},{"label":"Faux Leather","value":"34"},{"label":"Hemp","value":"146"},{"label":"Jersey","value":"147"},{"label":"Leather","value":"35"},{"label":"LumaTech™","value":"148"},{"label":"Mesh","value":"36"},{"label":"Lycra®","value":"149"},{"label":"Nylon","value":"37"},{"label":"Microfiber","value":"150"},{"label":"Polyester","value":"38"},{"label":"Rayon","value":"39"},{"label":"Spandex","value":"151"},{"label":"HeatTec®","value":"152"},{"label":"Ripstop","value":"40"},{"label":"EverCool™","value":"153"},{"label":"Suede","value":"41"},{"label":"Foam","value":"42"},{"label":"Organic Cotton","value":"154"},{"label":"Metal","value":"43"},{"label":"TENCEL","value":"155"},{"label":"CoolTech™","value":"156"},{"label":"Plastic","value":"44"},{"label":"Khaki","value":"157"},{"label":"Rubber","value":"45"},{"label":"Linen","value":"158"},{"label":"Synthetic","value":"46"},{"label":"Stainless Steel","value":"47"},{"label":"Wool","value":"159"},{"label":"Silicone","value":"48"},{"label":"Terry","value":"160"}],"is_user_defined":true,"default_frontend_label":"Material","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":137,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"147","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":147,"attribute_code":"sale","frontend_input":"boolean","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"}],"is_user_defined":true,"default_frontend_label":"Sale","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean","default_value":"","is_unique":"0","validation_rules":[],"id":147,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"153","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":153,"attribute_code":"pattern","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Color-Blocked","value":"193"},{"label":"Checked","value":"194"},{"label":"Color-Blocked","value":"195"},{"label":"Graphic Print","value":"196"},{"label":"Solid","value":"197"},{"label":"Solid-Highlight","value":"198"},{"label":"Striped","value":"199"},{"label":"Camo","value":"200"},{"label":"Geometric","value":"201"}],"is_user_defined":true,"default_frontend_label":"Pattern","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":153,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"151","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":151,"attribute_code":"sleeve","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Sleeve","value":"161"},{"label":"Long-Sleeve","value":"162"},{"label":"Short-Sleeve","value":"163"},{"label":"Sleeveless","value":"164"},{"label":"Tank","value":"165"},{"label":"Strap","value":"166"}],"is_user_defined":true,"default_frontend_label":"Sleeve","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":151,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"77","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":true,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":77,"attribute_code":"price","frontend_input":"price","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":77,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"110","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"store","attribute_id":110,"attribute_code":"small_image_label","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Small Image Label","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":110,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"78","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":78,"attribute_code":"special_price","frontend_input":"price","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Special Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":78,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"97","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":97,"attribute_code":"status","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Enabled","value":"1"},{"label":"Disabled","value":"2"}],"is_user_defined":false,"default_frontend_label":"Enable Product","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Status","default_value":"1","is_unique":"0","validation_rules":[],"id":97,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"88","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":88,"attribute_code":"small_image","frontend_input":"media_image","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Small","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":88,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"94","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":94,"attribute_code":"news_from_date","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Set Product as New from Date","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate","is_unique":"0","validation_rules":[],"id":94,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"76","_score":1,"_source":{"is_wysiwyg_enabled":true,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"1","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":76,"attribute_code":"short_description","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Short Description","frontend_labels":null,"backend_type":"text","is_unique":"0","validation_rules":[],"id":76,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"99","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":99,"attribute_code":"visibility","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Not Visible Individually","value":"1"},{"label":"Catalog","value":"2"},{"label":"Search","value":"3"},{"label":"Catalog, Search","value":"4"}],"is_user_defined":false,"default_frontend_label":"Visibility","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Catalog\\Model\\Product\\Visibility","default_value":"4","is_unique":"0","validation_rules":[],"id":99,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"112","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":112,"attribute_code":"created_at","frontend_input":"date","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":112,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"96","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":96,"attribute_code":"gallery","frontend_input":"gallery","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Image Gallery","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":96,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"73","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":true,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":73,"attribute_code":"name","frontend_input":"text","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Product Name","frontend_labels":null,"backend_type":"varchar","is_unique":"0","frontend_class":"validate-length maximum-length-255","validation_rules":[],"id":73,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"87","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":87,"attribute_code":"image","frontend_input":"media_image","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Base","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":87,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"128","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"global","attribute_id":128,"attribute_code":"links_purchased_separately","frontend_input":null,"entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Links can be purchased separately","frontend_labels":null,"backend_type":"int","is_unique":"0","validation_rules":[],"id":128,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"129","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"store","attribute_id":129,"attribute_code":"samples_title","frontend_input":null,"entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Samples title","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":129,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"122","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","downloadable","bundle","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":122,"attribute_code":"msrp_display_actual_price_type","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Use config","value":"0"},{"label":"On Gesture","value":"1"},{"label":"In Cart","value":"2"},{"label":"Before Order Confirmation","value":"3"}],"is_user_defined":false,"default_frontend_label":"Display Actual Price","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Boolean","source_model":"Magento\\Msrp\\Model\\Product\\Attribute\\Source\\Type\\Price","default_value":"0","is_unique":"0","validation_rules":[],"id":122,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"143","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":143,"attribute_code":"eco_collection","frontend_input":"boolean","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"}],"is_user_defined":true,"default_frontend_label":"Eco Collection","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean","default_value":"","is_unique":"0","validation_rules":[],"id":143,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"154","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":154,"attribute_code":"climate","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"All-Weather","value":"202"},{"label":"Cold","value":"203"},{"label":"Cool","value":"204"},{"label":"Indoor","value":"205"},{"label":"Mild","value":"206"},{"label":"Rainy","value":"207"},{"label":"Spring","value":"208"},{"label":"Warm","value":"209"},{"label":"Windy","value":"210"},{"label":"Wintry","value":"211"},{"label":"Hot","value":"212"}],"is_user_defined":true,"default_frontend_label":"Climate","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":154,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"107","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"global","attribute_id":107,"attribute_code":"required_options","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":107,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"74","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"1","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":74,"attribute_code":"sku","frontend_input":"text","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"SKU","frontend_labels":null,"backend_type":"static","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Sku","is_unique":"1","frontend_class":"validate-length maximum-length-64","validation_rules":[],"id":74,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"135","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"1","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":135,"attribute_code":"activity","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Hike","value":"4"},{"label":"Outdoor","value":"5"},{"label":"Running","value":"6"},{"label":"Warmup","value":"7"},{"label":"Yoga","value":"8"},{"label":"Recreation","value":"9"},{"label":"Lounge","value":"10"},{"label":"Gym","value":"11"},{"label":"Climbing","value":"12"},{"label":"Crosstraining","value":"13"},{"label":"Post-workout","value":"14"},{"label":"Cycling","value":"15"},{"label":"Athletic","value":"16"},{"label":"Sports","value":"17"},{"label":"Hiking","value":"18"},{"label":"Overnight","value":"19"},{"label":"School","value":"20"},{"label":"Trail","value":"21"},{"label":"Travel","value":"22"},{"label":"Urban","value":"23"}],"is_user_defined":true,"default_frontend_label":"Activity","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":135,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"92","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"website","attribute_id":92,"attribute_code":"tier_price","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Tier Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Tierprice","is_unique":"0","validation_rules":[],"id":92,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"150","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":150,"attribute_code":"style_general","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Insulated","value":"117"},{"label":"Jacket","value":"118"},{"label":"Vest","value":"119"},{"label":"Lightweight","value":"120"},{"label":"Hooded","value":"121"},{"label":"Heavy Duty","value":"122"},{"label":"Rain Coat","value":"123"},{"label":"Hard Shell","value":"124"},{"label":"Soft Shell","value":"125"},{"label":"Windbreaker","value":"126"},{"label":"½ zip","value":"127"},{"label":"¼ zip","value":"128"},{"label":"Full Zip","value":"129"},{"label":"Reversible","value":"130"},{"label":"Bra","value":"131"},{"label":"Hoodie","value":"132"},{"label":"Sweatshirt","value":"133"},{"label":"Polo","value":"134"},{"label":"Tank","value":"135"},{"label":"Tee","value":"136"},{"label":"Pullover","value":"137"},{"label":"Hoodie","value":"138"},{"label":"Cardigan","value":"139"},{"label":"Henley","value":"140"},{"label":"Tunic","value":"141"},{"label":"Camisole","value":"142"}],"is_user_defined":true,"default_frontend_label":"Style General","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":150,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"93","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":93,"attribute_code":"color","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Black","value":"49"},{"label":"Blue","value":"50"},{"label":"Brown","value":"51"},{"label":"Gray","value":"52"},{"label":"Green","value":"53"},{"label":"Lavender","value":"54"},{"label":"Multi","value":"55"},{"label":"Orange","value":"56"},{"label":"Purple","value":"57"},{"label":"Red","value":"58"},{"label":"White","value":"59"},{"label":"Yellow","value":"60"}],"is_user_defined":true,"default_frontend_label":"Color","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"49","is_unique":"0","validation_rules":[],"id":93,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"114","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","bundle","grouped","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"website","attribute_id":114,"attribute_code":"country_of_manufacture","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Afghanistan","value":"AF"},{"label":"Ã…land Islands","value":"AX"},{"label":"Albania","value":"AL"},{"label":"Algeria","value":"DZ"},{"label":"American Samoa","value":"AS"},{"label":"Andorra","value":"AD"},{"label":"Angola","value":"AO"},{"label":"Anguilla","value":"AI"},{"label":"Antarctica","value":"AQ"},{"label":"Antigua & Barbuda","value":"AG"},{"label":"Argentina","value":"AR"},{"label":"Armenia","value":"AM"},{"label":"Aruba","value":"AW"},{"label":"Australia","value":"AU"},{"label":"Austria","value":"AT"},{"label":"Azerbaijan","value":"AZ"},{"label":"Bahamas","value":"BS"},{"label":"Bahrain","value":"BH"},{"label":"Bangladesh","value":"BD"},{"label":"Barbados","value":"BB"},{"label":"Belarus","value":"BY"},{"label":"Belgium","value":"BE"},{"label":"Belize","value":"BZ"},{"label":"Benin","value":"BJ"},{"label":"Bermuda","value":"BM"},{"label":"Bhutan","value":"BT"},{"label":"Bolivia","value":"BO"},{"label":"Bosnia & Herzegovina","value":"BA"},{"label":"Botswana","value":"BW"},{"label":"Bouvet Island","value":"BV"},{"label":"Brazil","value":"BR"},{"label":"British Indian Ocean Territory","value":"IO"},{"label":"British Virgin Islands","value":"VG"},{"label":"Brunei","value":"BN"},{"label":"Bulgaria","value":"BG"},{"label":"Burkina Faso","value":"BF"},{"label":"Burundi","value":"BI"},{"label":"Cambodia","value":"KH"},{"label":"Cameroon","value":"CM"},{"label":"Canada","value":"CA"},{"label":"Cape Verde","value":"CV"},{"label":"Cayman Islands","value":"KY"},{"label":"Central African Republic","value":"CF"},{"label":"Chad","value":"TD"},{"label":"Chile","value":"CL"},{"label":"China","value":"CN"},{"label":"Christmas Island","value":"CX"},{"label":"Cocos (Keeling) Islands","value":"CC"},{"label":"Colombia","value":"CO"},{"label":"Comoros","value":"KM"},{"label":"Congo - Brazzaville","value":"CG"},{"label":"Congo - Kinshasa","value":"CD"},{"label":"Cook Islands","value":"CK"},{"label":"Costa Rica","value":"CR"},{"label":"Côte d’Ivoire","value":"CI"},{"label":"Croatia","value":"HR"},{"label":"Cuba","value":"CU"},{"label":"Cyprus","value":"CY"},{"label":"Czech Republic","value":"CZ"},{"label":"Denmark","value":"DK"},{"label":"Djibouti","value":"DJ"},{"label":"Dominica","value":"DM"},{"label":"Dominican Republic","value":"DO"},{"label":"Ecuador","value":"EC"},{"label":"Egypt","value":"EG"},{"label":"El Salvador","value":"SV"},{"label":"Equatorial Guinea","value":"GQ"},{"label":"Eritrea","value":"ER"},{"label":"Estonia","value":"EE"},{"label":"Ethiopia","value":"ET"},{"label":"Falkland Islands","value":"FK"},{"label":"Faroe Islands","value":"FO"},{"label":"Fiji","value":"FJ"},{"label":"Finland","value":"FI"},{"label":"France","value":"FR"},{"label":"French Guiana","value":"GF"},{"label":"French Polynesia","value":"PF"},{"label":"French Southern Territories","value":"TF"},{"label":"Gabon","value":"GA"},{"label":"Gambia","value":"GM"},{"label":"Georgia","value":"GE"},{"label":"Germany","value":"DE"},{"label":"Ghana","value":"GH"},{"label":"Gibraltar","value":"GI"},{"label":"Greece","value":"GR"},{"label":"Greenland","value":"GL"},{"label":"Grenada","value":"GD"},{"label":"Guadeloupe","value":"GP"},{"label":"Guam","value":"GU"},{"label":"Guatemala","value":"GT"},{"label":"Guernsey","value":"GG"},{"label":"Guinea","value":"GN"},{"label":"Guinea-Bissau","value":"GW"},{"label":"Guyana","value":"GY"},{"label":"Haiti","value":"HT"},{"label":"Heard & McDonald Islands","value":"HM"},{"label":"Honduras","value":"HN"},{"label":"Hong Kong SAR China","value":"HK"},{"label":"Hungary","value":"HU"},{"label":"Iceland","value":"IS"},{"label":"India","value":"IN"},{"label":"Indonesia","value":"ID"},{"label":"Iran","value":"IR"},{"label":"Iraq","value":"IQ"},{"label":"Ireland","value":"IE"},{"label":"Isle of Man","value":"IM"},{"label":"Israel","value":"IL"},{"label":"Italy","value":"IT"},{"label":"Jamaica","value":"JM"},{"label":"Japan","value":"JP"},{"label":"Jersey","value":"JE"},{"label":"Jordan","value":"JO"},{"label":"Kazakhstan","value":"KZ"},{"label":"Kenya","value":"KE"},{"label":"Kiribati","value":"KI"},{"label":"Kuwait","value":"KW"},{"label":"Kyrgyzstan","value":"KG"},{"label":"Laos","value":"LA"},{"label":"Latvia","value":"LV"},{"label":"Lebanon","value":"LB"},{"label":"Lesotho","value":"LS"},{"label":"Liberia","value":"LR"},{"label":"Libya","value":"LY"},{"label":"Liechtenstein","value":"LI"},{"label":"Lithuania","value":"LT"},{"label":"Luxembourg","value":"LU"},{"label":"Macau SAR China","value":"MO"},{"label":"Macedonia","value":"MK"},{"label":"Madagascar","value":"MG"},{"label":"Malawi","value":"MW"},{"label":"Malaysia","value":"MY"},{"label":"Maldives","value":"MV"},{"label":"Mali","value":"ML"},{"label":"Malta","value":"MT"},{"label":"Marshall Islands","value":"MH"},{"label":"Martinique","value":"MQ"},{"label":"Mauritania","value":"MR"},{"label":"Mauritius","value":"MU"},{"label":"Mayotte","value":"YT"},{"label":"Mexico","value":"MX"},{"label":"Micronesia","value":"FM"},{"label":"Moldova","value":"MD"},{"label":"Monaco","value":"MC"},{"label":"Mongolia","value":"MN"},{"label":"Montenegro","value":"ME"},{"label":"Montserrat","value":"MS"},{"label":"Morocco","value":"MA"},{"label":"Mozambique","value":"MZ"},{"label":"Myanmar (Burma)","value":"MM"},{"label":"Namibia","value":"NA"},{"label":"Nauru","value":"NR"},{"label":"Nepal","value":"NP"},{"label":"Netherlands","value":"NL"},{"label":"New Caledonia","value":"NC"},{"label":"New Zealand","value":"NZ"},{"label":"Nicaragua","value":"NI"},{"label":"Niger","value":"NE"},{"label":"Nigeria","value":"NG"},{"label":"Niue","value":"NU"},{"label":"Norfolk Island","value":"NF"},{"label":"Northern Mariana Islands","value":"MP"},{"label":"North Korea","value":"KP"},{"label":"Norway","value":"NO"},{"label":"Oman","value":"OM"},{"label":"Pakistan","value":"PK"},{"label":"Palau","value":"PW"},{"label":"Palestinian Territories","value":"PS"},{"label":"Panama","value":"PA"},{"label":"Papua New Guinea","value":"PG"},{"label":"Paraguay","value":"PY"},{"label":"Peru","value":"PE"},{"label":"Philippines","value":"PH"},{"label":"Pitcairn Islands","value":"PN"},{"label":"Poland","value":"PL"},{"label":"Portugal","value":"PT"},{"label":"Qatar","value":"QA"},{"label":"Réunion","value":"RE"},{"label":"Romania","value":"RO"},{"label":"Russia","value":"RU"},{"label":"Rwanda","value":"RW"},{"label":"Samoa","value":"WS"},{"label":"San Marino","value":"SM"},{"label":"São Tomé & Príncipe","value":"ST"},{"label":"Saudi Arabia","value":"SA"},{"label":"Senegal","value":"SN"},{"label":"Serbia","value":"RS"},{"label":"Seychelles","value":"SC"},{"label":"Sierra Leone","value":"SL"},{"label":"Singapore","value":"SG"},{"label":"Slovakia","value":"SK"},{"label":"Slovenia","value":"SI"},{"label":"Solomon Islands","value":"SB"},{"label":"Somalia","value":"SO"},{"label":"South Africa","value":"ZA"},{"label":"South Georgia & South Sandwich Islands","value":"GS"},{"label":"South Korea","value":"KR"},{"label":"Spain","value":"ES"},{"label":"Sri Lanka","value":"LK"},{"label":"St. Barthélemy","value":"BL"},{"label":"St. Helena","value":"SH"},{"label":"St. Kitts & Nevis","value":"KN"},{"label":"St. Lucia","value":"LC"},{"label":"St. Martin","value":"MF"},{"label":"St. Pierre & Miquelon","value":"PM"},{"label":"St. Vincent & Grenadines","value":"VC"},{"label":"Sudan","value":"SD"},{"label":"Suriname","value":"SR"},{"label":"Svalbard & Jan Mayen","value":"SJ"},{"label":"Swaziland","value":"SZ"},{"label":"Sweden","value":"SE"},{"label":"Switzerland","value":"CH"},{"label":"Syria","value":"SY"},{"label":"Taiwan","value":"TW"},{"label":"Tajikistan","value":"TJ"},{"label":"Tanzania","value":"TZ"},{"label":"Thailand","value":"TH"},{"label":"Timor-Leste","value":"TL"},{"label":"Togo","value":"TG"},{"label":"Tokelau","value":"TK"},{"label":"Tonga","value":"TO"},{"label":"Trinidad & Tobago","value":"TT"},{"label":"Tunisia","value":"TN"},{"label":"Turkey","value":"TR"},{"label":"Turkmenistan","value":"TM"},{"label":"Turks & Caicos Islands","value":"TC"},{"label":"Tuvalu","value":"TV"},{"label":"Uganda","value":"UG"},{"label":"Ukraine","value":"UA"},{"label":"United Arab Emirates","value":"AE"},{"label":"United Kingdom","value":"GB"},{"label":"United States","value":"US"},{"label":"Uruguay","value":"UY"},{"label":"U.S. Outlying Islands","value":"UM"},{"label":"U.S. Virgin Islands","value":"VI"},{"label":"Uzbekistan","value":"UZ"},{"label":"Vanuatu","value":"VU"},{"label":"Vatican City","value":"VA"},{"label":"Venezuela","value":"VE"},{"label":"Vietnam","value":"VN"},{"label":"Wallis & Futuna","value":"WF"},{"label":"Western Sahara","value":"EH"},{"label":"Yemen","value":"YE"},{"label":"Zambia","value":"ZM"},{"label":"Zimbabwe","value":"ZW"}],"is_user_defined":false,"default_frontend_label":"Country of Manufacture","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Countryofmanufacture","is_unique":"0","validation_rules":[],"id":114,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"148","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":148,"attribute_code":"format","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Download","value":"102"},{"label":"DVD","value":"103"}],"is_user_defined":true,"default_frontend_label":"Format","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":148,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"123","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":123,"attribute_code":"price_type","frontend_input":"boolean","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Dynamic Price","frontend_labels":null,"backend_type":"int","default_value":"0","is_unique":"0","validation_rules":[],"id":123,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"130","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"store","attribute_id":130,"attribute_code":"links_title","frontend_input":null,"entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Links title","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":130,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"89","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":89,"attribute_code":"thumbnail","frontend_input":"media_image","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Thumbnail","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":89,"tsk":1568837432528}} +{"_index":"vue_storefront_catalog_de_attribute","_type":"_doc","_id":"95","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":95,"attribute_code":"news_to_date","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Set Product as New to Date","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime","is_unique":"0","validation_rules":[],"id":95,"tsk":1568837432528}} diff --git a/var/catalog_de_category.json b/var/catalog_de_category.json new file mode 100644 index 00000000..68f93f48 --- /dev/null +++ b/var/catalog_de_category.json @@ -0,0 +1,39 @@ +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"2","_score":1,"_source":{"id":2,"parent_id":1,"name":"Hauptkategorie","is_active":true,"position":1,"level":1,"product_count":1181,"children_data":[{"id":38,"parent_id":2,"name":"What's New","is_active":false,"position":1,"level":2,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2018-05-27 14:05:17","path":"1/2/38","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"whats-new-38","url_path":"what-is-new/whats-new-38","slug":"whats-new-38"},{"id":20,"parent_id":2,"name":"Frauen","is_active":true,"position":2,"level":2,"product_count":0,"children_data":[{"id":21,"parent_id":20,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"id":23,"parent_id":21,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":186,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/23","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"jackets-23","url_path":"women/tops-women/jackets-women/jackets-23","slug":"jackets-23"},{"id":24,"parent_id":21,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":182,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/24","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-24","url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","slug":"hoodies-and-sweatshirts-24"},{"id":25,"parent_id":21,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/25","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-25","url_path":"women/tops-women/tees-women/tees-25","slug":"tees-25"},{"id":26,"parent_id":21,"name":"Bras & Tanks","is_active":true,"position":4,"level":4,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/26","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bras-and-tanks-26","url_path":"women/tops-women/tanks-women/bras-and-tanks-26","slug":"bras-and-tanks-26"}],"children":"23,24,25,26","created_at":"2017-11-06 12:16:41","updated_at":"2019-01-03 10:35:27","path":"1/2/20/21","available_sort_by":[],"include_in_menu":true,"meta_title":"Women Tops","meta_description":"Best women tops on vuestorefront.","display_mode":"PRODUCTS","is_anchor":"1","children_count":"4","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"tops-21","url_path":"women/tops-women/tops-21","slug":"tops-21"},{"id":22,"parent_id":20,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"id":27,"parent_id":22,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":91,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/27","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-27","url_path":"women/bottoms-women/pants-women/pants-27","slug":"pants-27"},{"id":28,"parent_id":22,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":137,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/28","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-28","url_path":"women/bottoms-women/shorts-women/shorts-28","slug":"shorts-28"}],"children":"27,28","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-22","url_path":"women/bottoms-women/bottoms-22","slug":"bottoms-22"}],"children":"21,22","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:08:58","path":"1/2/20","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"8","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"frauen-20","url_path":"women/frauen-20","slug":"frauen-20"},{"id":11,"parent_id":2,"name":"Herren","is_active":true,"position":3,"level":2,"product_count":0,"children_data":[{"id":12,"parent_id":11,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"id":14,"parent_id":12,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":176,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:10:23","path":"1/2/11/12/14","available_sort_by":[],"include_in_menu":true,"description":"

          Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum dui sapien, bibendum ac luctus sed, lobortis id lacus. Nulla nisi augue, accumsan id sapien maximus, hendrerit vehicula elit.

          ","display_mode":"PRODUCTS","is_anchor":"1","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"jackets-14","url_path":"men/tops-men/jackets-men/jackets-14","slug":"jackets-14"},{"id":15,"parent_id":12,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":208,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/15","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-15","url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","slug":"hoodies-and-sweatshirts-15"},{"id":16,"parent_id":12,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/16","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-16","url_path":"men/tops-men/tees-men/tees-16","slug":"tees-16"},{"id":17,"parent_id":12,"name":"Tanks","is_active":true,"position":4,"level":4,"product_count":102,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/17","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tanks-17","url_path":"men/tops-men/tanks-men/tanks-17","slug":"tanks-17"}],"children":"14,15,16,17","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"4","url_key":"tops-12","url_path":"men/tops-men/tops-12","slug":"tops-12"},{"id":13,"parent_id":11,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"id":18,"parent_id":13,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":156,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/18","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-18","url_path":"men/bottoms-men/pants-men/pants-18","slug":"pants-18"},{"id":19,"parent_id":13,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":148,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/19","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-19","url_path":"men/bottoms-men/shorts-men/shorts-19","slug":"shorts-19"}],"children":"18,19","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-13","url_path":"men/bottoms-men/bottoms-13","slug":"bottoms-13"}],"children":"12,13","created_at":"2017-11-06 12:16:39","updated_at":"2018-05-27 14:06:07","path":"1/2/11","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"8","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"herren-11","url_path":"men/herren-11","slug":"herren-11"},{"id":3,"parent_id":2,"name":"Gerät","is_active":true,"position":4,"level":2,"product_count":46,"children_data":[{"id":4,"parent_id":3,"name":"Bags","is_active":true,"position":1,"level":3,"product_count":14,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/4","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bags-4","url_path":"gear/bags/bags-4","slug":"bags-4"},{"id":5,"parent_id":3,"name":"Fitness Equipment","is_active":true,"position":2,"level":3,"product_count":23,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/5","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"fitness-equipment-5","url_path":"gear/fitness-equipment/fitness-equipment-5","slug":"fitness-equipment-5"},{"id":6,"parent_id":3,"name":"Watches","is_active":true,"position":3,"level":3,"product_count":9,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/6","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"watches-6","url_path":"gear/watches/watches-6","slug":"watches-6"}],"children":"4,5,6","created_at":"2017-11-06 12:16:19","updated_at":"2018-05-27 14:06:53","path":"1/2/3","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"3","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"gerat-3","url_path":"gear/gerat-3","slug":"gerat-3"},{"id":7,"parent_id":2,"name":"Collections","is_active":false,"position":5,"level":2,"product_count":13,"children_data":[{"id":8,"parent_id":7,"name":"New Luma Yoga Collection","is_active":true,"position":1,"level":3,"product_count":347,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/7/8","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"new-luma-yoga-collection-8","url_path":"collections/yoga-new/new-luma-yoga-collection-8","slug":"new-luma-yoga-collection-8"},{"id":34,"parent_id":7,"name":"Erin Recommends","is_active":true,"position":2,"level":3,"product_count":279,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/34","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"erin-recommends-34","url_path":"collections/erin-recommends/erin-recommends-34","slug":"erin-recommends-34"},{"id":35,"parent_id":7,"name":"Performance Fabrics","is_active":true,"position":3,"level":3,"product_count":310,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/35","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"performance-fabrics-35","url_path":"collections/performance-fabrics/performance-fabrics-35","slug":"performance-fabrics-35"},{"id":36,"parent_id":7,"name":"Eco Friendly","is_active":true,"position":4,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/36","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"eco-friendly-36","url_path":"collections/eco-friendly/eco-friendly-36","slug":"eco-friendly-36"},{"id":39,"parent_id":7,"name":"Performance Sportswear New","is_active":true,"position":5,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/39","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"performance-sportswear-new-39","url_path":"collections/performance-new/performance-sportswear-new-39","slug":"performance-sportswear-new-39"},{"id":40,"parent_id":7,"name":"Eco Collection New","is_active":true,"position":6,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/40","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"eco-collection-new-40","url_path":"collections/eco-new/eco-collection-new-40","slug":"eco-collection-new-40"}],"children":"34,35,36,39,40,8","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:17:48","path":"1/2/7","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","children_count":"6","url_key":"collections-7","url_path":"collections/collections-7","slug":"collections-7"},{"id":9,"parent_id":2,"name":"Training","is_active":false,"position":5,"level":2,"product_count":6,"children_data":[{"id":10,"parent_id":9,"name":"Video Download","is_active":true,"position":1,"level":3,"product_count":6,"children_data":[],"children":"","created_at":"2017-11-06 12:16:31","updated_at":"2017-11-06 12:16:31","path":"1/2/9/10","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"video-download-10","url_path":"training/training-video/video-download-10","slug":"video-download-10"}],"children":"10","created_at":"2017-11-06 12:16:31","updated_at":"2018-05-27 14:04:30","path":"1/2/9","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"1","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"training-9","url_path":"training/training-9","slug":"training-9"},{"id":29,"parent_id":2,"name":"Promotions","is_active":false,"position":6,"level":2,"product_count":0,"children_data":[{"id":30,"parent_id":29,"name":"Women Sale","is_active":true,"position":1,"level":3,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/30","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"women-sale-30","url_path":"promotions/women-sale/women-sale-30","slug":"women-sale-30"},{"id":31,"parent_id":29,"name":"Men Sale","is_active":true,"position":2,"level":3,"product_count":39,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/31","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"men-sale-31","url_path":"promotions/men-sale/men-sale-31","slug":"men-sale-31"},{"id":32,"parent_id":29,"name":"Pants","is_active":true,"position":3,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/32","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"pants-32","url_path":"promotions/pants-all/pants-32","slug":"pants-32"},{"id":33,"parent_id":29,"name":"Tees","is_active":true,"position":4,"level":3,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/33","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"tees-33","url_path":"promotions/tees-all/tees-33","slug":"tees-33"}],"children":"30,31,32,33","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:42","path":"1/2/29","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","children_count":"4","url_key":"promotions-29","url_path":"promotions/promotions-29","slug":"promotions-29"},{"id":37,"parent_id":2,"name":"Sale","is_active":false,"position":6,"level":2,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2018-05-27 14:04:10","path":"1/2/37","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"sale-37","url_path":"sale/sale-37","slug":"sale-37"}],"url_key":"hauptkategorie-2","slug":"hauptkategorie-2","url_path":"hauptkategorie-2","children":"3,11,20","created_at":"2017-11-03 08:34:39","updated_at":"2019-04-25 09:11:20","path":"1/2","available_sort_by":[],"include_in_menu":true,"display_mode":"PRODUCTS","is_anchor":"1","children_count":"38","custom_use_parent_settings":"0","custom_apply_to_products":"0","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"38","_score":1,"_source":{"id":38,"parent_id":2,"name":"What's New","is_active":false,"position":1,"level":2,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2018-05-27 14:05:17","path":"1/2/38","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"whats-new-38","url_path":"what-is-new/whats-new-38","slug":"whats-new-38","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"37","_score":1,"_source":{"id":37,"parent_id":2,"name":"Sale","is_active":false,"position":6,"level":2,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2018-05-27 14:04:10","path":"1/2/37","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"sale-37","url_path":"sale/sale-37","slug":"sale-37","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"3","_score":1,"_source":{"id":3,"parent_id":2,"name":"Gerät","is_active":true,"position":4,"level":2,"product_count":46,"children_data":[{"id":4,"parent_id":3,"name":"Bags","is_active":true,"position":1,"level":3,"product_count":14,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/4","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bags-4","url_path":"gear/bags/bags-4","slug":"bags-4"},{"id":5,"parent_id":3,"name":"Fitness Equipment","is_active":true,"position":2,"level":3,"product_count":23,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/5","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"fitness-equipment-5","url_path":"gear/fitness-equipment/fitness-equipment-5","slug":"fitness-equipment-5"},{"id":6,"parent_id":3,"name":"Watches","is_active":true,"position":3,"level":3,"product_count":9,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/6","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"watches-6","url_path":"gear/watches/watches-6","slug":"watches-6"}],"children":"4,5,6","created_at":"2017-11-06 12:16:19","updated_at":"2018-05-27 14:06:53","path":"1/2/3","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"3","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"gerat-3","url_path":"gear/gerat-3","slug":"gerat-3","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"9","_score":1,"_source":{"id":9,"parent_id":2,"name":"Training","is_active":false,"position":5,"level":2,"product_count":6,"children_data":[{"id":10,"parent_id":9,"name":"Video Download","is_active":true,"position":1,"level":3,"product_count":6,"children_data":[],"children":"","created_at":"2017-11-06 12:16:31","updated_at":"2017-11-06 12:16:31","path":"1/2/9/10","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"video-download-10","url_path":"training/training-video/video-download-10","slug":"video-download-10"}],"children":"10","created_at":"2017-11-06 12:16:31","updated_at":"2018-05-27 14:04:30","path":"1/2/9","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"1","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"training-9","url_path":"training/training-9","slug":"training-9","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"29","_score":1,"_source":{"id":29,"parent_id":2,"name":"Promotions","is_active":false,"position":6,"level":2,"product_count":0,"children_data":[{"id":30,"parent_id":29,"name":"Women Sale","is_active":true,"position":1,"level":3,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/30","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"women-sale-30","url_path":"promotions/women-sale/women-sale-30","slug":"women-sale-30"},{"id":31,"parent_id":29,"name":"Men Sale","is_active":true,"position":2,"level":3,"product_count":39,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/31","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"men-sale-31","url_path":"promotions/men-sale/men-sale-31","slug":"men-sale-31"},{"id":32,"parent_id":29,"name":"Pants","is_active":true,"position":3,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/32","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"pants-32","url_path":"promotions/pants-all/pants-32","slug":"pants-32"},{"id":33,"parent_id":29,"name":"Tees","is_active":true,"position":4,"level":3,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/33","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"tees-33","url_path":"promotions/tees-all/tees-33","slug":"tees-33"}],"children":"30,31,32,33","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:42","path":"1/2/29","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","children_count":"4","url_key":"promotions-29","url_path":"promotions/promotions-29","slug":"promotions-29","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"11","_score":1,"_source":{"id":11,"parent_id":2,"name":"Herren","is_active":true,"position":3,"level":2,"product_count":0,"children_data":[{"id":12,"parent_id":11,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"id":14,"parent_id":12,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":176,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:10:23","path":"1/2/11/12/14","available_sort_by":[],"include_in_menu":true,"description":"

          Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum dui sapien, bibendum ac luctus sed, lobortis id lacus. Nulla nisi augue, accumsan id sapien maximus, hendrerit vehicula elit.

          ","display_mode":"PRODUCTS","is_anchor":"1","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"jackets-14","url_path":"men/tops-men/jackets-men/jackets-14","slug":"jackets-14"},{"id":15,"parent_id":12,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":208,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/15","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-15","url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","slug":"hoodies-and-sweatshirts-15"},{"id":16,"parent_id":12,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/16","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-16","url_path":"men/tops-men/tees-men/tees-16","slug":"tees-16"},{"id":17,"parent_id":12,"name":"Tanks","is_active":true,"position":4,"level":4,"product_count":102,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/17","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tanks-17","url_path":"men/tops-men/tanks-men/tanks-17","slug":"tanks-17"}],"children":"14,15,16,17","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"4","url_key":"tops-12","url_path":"men/tops-men/tops-12","slug":"tops-12"},{"id":13,"parent_id":11,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"id":18,"parent_id":13,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":156,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/18","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-18","url_path":"men/bottoms-men/pants-men/pants-18","slug":"pants-18"},{"id":19,"parent_id":13,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":148,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/19","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-19","url_path":"men/bottoms-men/shorts-men/shorts-19","slug":"shorts-19"}],"children":"18,19","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-13","url_path":"men/bottoms-men/bottoms-13","slug":"bottoms-13"}],"children":"12,13","created_at":"2017-11-06 12:16:39","updated_at":"2018-05-27 14:06:07","path":"1/2/11","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"8","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"herren-11","url_path":"men/herren-11","slug":"herren-11","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"7","_score":1,"_source":{"id":7,"parent_id":2,"name":"Collections","is_active":false,"position":5,"level":2,"product_count":13,"children_data":[{"id":8,"parent_id":7,"name":"New Luma Yoga Collection","is_active":true,"position":1,"level":3,"product_count":347,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/7/8","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"new-luma-yoga-collection-8","url_path":"collections/yoga-new/new-luma-yoga-collection-8","slug":"new-luma-yoga-collection-8"},{"id":34,"parent_id":7,"name":"Erin Recommends","is_active":true,"position":2,"level":3,"product_count":279,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/34","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"erin-recommends-34","url_path":"collections/erin-recommends/erin-recommends-34","slug":"erin-recommends-34"},{"id":35,"parent_id":7,"name":"Performance Fabrics","is_active":true,"position":3,"level":3,"product_count":310,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/35","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"performance-fabrics-35","url_path":"collections/performance-fabrics/performance-fabrics-35","slug":"performance-fabrics-35"},{"id":36,"parent_id":7,"name":"Eco Friendly","is_active":true,"position":4,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/36","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"eco-friendly-36","url_path":"collections/eco-friendly/eco-friendly-36","slug":"eco-friendly-36"},{"id":39,"parent_id":7,"name":"Performance Sportswear New","is_active":true,"position":5,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/39","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"performance-sportswear-new-39","url_path":"collections/performance-new/performance-sportswear-new-39","slug":"performance-sportswear-new-39"},{"id":40,"parent_id":7,"name":"Eco Collection New","is_active":true,"position":6,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/40","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"eco-collection-new-40","url_path":"collections/eco-new/eco-collection-new-40","slug":"eco-collection-new-40"}],"children":"34,35,36,39,40,8","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:17:48","path":"1/2/7","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","children_count":"6","url_key":"collections-7","url_path":"collections/collections-7","slug":"collections-7","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"20","_score":1,"_source":{"id":20,"parent_id":2,"name":"Frauen","is_active":true,"position":2,"level":2,"product_count":0,"children_data":[{"id":21,"parent_id":20,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"id":23,"parent_id":21,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":186,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/23","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"jackets-23","url_path":"women/tops-women/jackets-women/jackets-23","slug":"jackets-23"},{"id":24,"parent_id":21,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":182,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/24","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-24","url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","slug":"hoodies-and-sweatshirts-24"},{"id":25,"parent_id":21,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/25","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-25","url_path":"women/tops-women/tees-women/tees-25","slug":"tees-25"},{"id":26,"parent_id":21,"name":"Bras & Tanks","is_active":true,"position":4,"level":4,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/26","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bras-and-tanks-26","url_path":"women/tops-women/tanks-women/bras-and-tanks-26","slug":"bras-and-tanks-26"}],"children":"23,24,25,26","created_at":"2017-11-06 12:16:41","updated_at":"2019-01-03 10:35:27","path":"1/2/20/21","available_sort_by":[],"include_in_menu":true,"meta_title":"Women Tops","meta_description":"Best women tops on vuestorefront.","display_mode":"PRODUCTS","is_anchor":"1","children_count":"4","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"tops-21","url_path":"women/tops-women/tops-21","slug":"tops-21"},{"id":22,"parent_id":20,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"id":27,"parent_id":22,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":91,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/27","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-27","url_path":"women/bottoms-women/pants-women/pants-27","slug":"pants-27"},{"id":28,"parent_id":22,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":137,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/28","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-28","url_path":"women/bottoms-women/shorts-women/shorts-28","slug":"shorts-28"}],"children":"27,28","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-22","url_path":"women/bottoms-women/bottoms-22","slug":"bottoms-22"}],"children":"21,22","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:08:58","path":"1/2/20","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"8","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"frauen-20","url_path":"women/frauen-20","slug":"frauen-20","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"10","_score":1,"_source":{"id":10,"parent_id":9,"name":"Video Download","is_active":true,"position":1,"level":3,"product_count":6,"children_data":[],"children":"","created_at":"2017-11-06 12:16:31","updated_at":"2017-11-06 12:16:31","path":"1/2/9/10","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"video-download-10","url_path":"training/training-video/video-download-10","slug":"video-download-10","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"35","_score":1,"_source":{"id":35,"parent_id":7,"name":"Performance Fabrics","is_active":true,"position":3,"level":3,"product_count":310,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/35","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"performance-fabrics-35","url_path":"collections/performance-fabrics/performance-fabrics-35","slug":"performance-fabrics-35","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"40","_score":1,"_source":{"id":40,"parent_id":7,"name":"Eco Collection New","is_active":true,"position":6,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/40","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"eco-collection-new-40","url_path":"collections/eco-new/eco-collection-new-40","slug":"eco-collection-new-40","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"12","_score":1,"_source":{"id":12,"parent_id":11,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"id":14,"parent_id":12,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":176,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:10:23","path":"1/2/11/12/14","available_sort_by":[],"include_in_menu":true,"description":"

          Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum dui sapien, bibendum ac luctus sed, lobortis id lacus. Nulla nisi augue, accumsan id sapien maximus, hendrerit vehicula elit.

          ","display_mode":"PRODUCTS","is_anchor":"1","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"jackets-14","url_path":"men/tops-men/jackets-men/jackets-14","slug":"jackets-14"},{"id":15,"parent_id":12,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":208,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/15","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-15","url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","slug":"hoodies-and-sweatshirts-15"},{"id":16,"parent_id":12,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/16","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-16","url_path":"men/tops-men/tees-men/tees-16","slug":"tees-16"},{"id":17,"parent_id":12,"name":"Tanks","is_active":true,"position":4,"level":4,"product_count":102,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/17","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tanks-17","url_path":"men/tops-men/tanks-men/tanks-17","slug":"tanks-17"}],"children":"14,15,16,17","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"4","url_key":"tops-12","url_path":"men/tops-men/tops-12","slug":"tops-12","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"13","_score":1,"_source":{"id":13,"parent_id":11,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"id":18,"parent_id":13,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":156,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/18","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-18","url_path":"men/bottoms-men/pants-men/pants-18","slug":"pants-18"},{"id":19,"parent_id":13,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":148,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/19","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-19","url_path":"men/bottoms-men/shorts-men/shorts-19","slug":"shorts-19"}],"children":"18,19","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-13","url_path":"men/bottoms-men/bottoms-13","slug":"bottoms-13","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"22","_score":1,"_source":{"id":22,"parent_id":20,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"id":27,"parent_id":22,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":91,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/27","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-27","url_path":"women/bottoms-women/pants-women/pants-27","slug":"pants-27"},{"id":28,"parent_id":22,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":137,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/28","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-28","url_path":"women/bottoms-women/shorts-women/shorts-28","slug":"shorts-28"}],"children":"27,28","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-22","url_path":"women/bottoms-women/bottoms-22","slug":"bottoms-22","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"21","_score":1,"_source":{"id":21,"parent_id":20,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"id":23,"parent_id":21,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":186,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/23","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"jackets-23","url_path":"women/tops-women/jackets-women/jackets-23","slug":"jackets-23"},{"id":24,"parent_id":21,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":182,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/24","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-24","url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","slug":"hoodies-and-sweatshirts-24"},{"id":25,"parent_id":21,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/25","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-25","url_path":"women/tops-women/tees-women/tees-25","slug":"tees-25"},{"id":26,"parent_id":21,"name":"Bras & Tanks","is_active":true,"position":4,"level":4,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/26","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bras-and-tanks-26","url_path":"women/tops-women/tanks-women/bras-and-tanks-26","slug":"bras-and-tanks-26"}],"children":"23,24,25,26","created_at":"2017-11-06 12:16:41","updated_at":"2019-01-03 10:35:27","path":"1/2/20/21","available_sort_by":[],"include_in_menu":true,"meta_title":"Women Tops","meta_description":"Best women tops on vuestorefront.","display_mode":"PRODUCTS","is_anchor":"1","children_count":"4","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"tops-21","url_path":"women/tops-women/tops-21","slug":"tops-21","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"16","_score":1,"_source":{"id":16,"parent_id":12,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/16","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-16","url_path":"men/tops-men/tees-men/tees-16","slug":"tees-16","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"17","_score":1,"_source":{"id":17,"parent_id":12,"name":"Tanks","is_active":true,"position":4,"level":4,"product_count":102,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/17","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tanks-17","url_path":"men/tops-men/tanks-men/tanks-17","slug":"tanks-17","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"14","_score":1,"_source":{"id":14,"parent_id":12,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":176,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:10:23","path":"1/2/11/12/14","available_sort_by":[],"include_in_menu":true,"description":"

          Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum dui sapien, bibendum ac luctus sed, lobortis id lacus. Nulla nisi augue, accumsan id sapien maximus, hendrerit vehicula elit.

          ","display_mode":"PRODUCTS","is_anchor":"1","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"jackets-14","url_path":"men/tops-men/jackets-men/jackets-14","slug":"jackets-14","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"30","_score":1,"_source":{"id":30,"parent_id":29,"name":"Women Sale","is_active":true,"position":1,"level":3,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/30","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"women-sale-30","url_path":"promotions/women-sale/women-sale-30","slug":"women-sale-30","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"6","_score":1,"_source":{"id":6,"parent_id":3,"name":"Watches","is_active":true,"position":3,"level":3,"product_count":9,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/6","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"watches-6","url_path":"gear/watches/watches-6","slug":"watches-6","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"5","_score":1,"_source":{"id":5,"parent_id":3,"name":"Fitness Equipment","is_active":true,"position":2,"level":3,"product_count":23,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/5","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"fitness-equipment-5","url_path":"gear/fitness-equipment/fitness-equipment-5","slug":"fitness-equipment-5","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"4","_score":1,"_source":{"id":4,"parent_id":3,"name":"Bags","is_active":true,"position":1,"level":3,"product_count":14,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/4","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bags-4","url_path":"gear/bags/bags-4","slug":"bags-4","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"31","_score":1,"_source":{"id":31,"parent_id":29,"name":"Men Sale","is_active":true,"position":2,"level":3,"product_count":39,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/31","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"men-sale-31","url_path":"promotions/men-sale/men-sale-31","slug":"men-sale-31","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"34","_score":1,"_source":{"id":34,"parent_id":7,"name":"Erin Recommends","is_active":true,"position":2,"level":3,"product_count":279,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/34","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"erin-recommends-34","url_path":"collections/erin-recommends/erin-recommends-34","slug":"erin-recommends-34","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"32","_score":1,"_source":{"id":32,"parent_id":29,"name":"Pants","is_active":true,"position":3,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/32","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"pants-32","url_path":"promotions/pants-all/pants-32","slug":"pants-32","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"8","_score":1,"_source":{"id":8,"parent_id":7,"name":"New Luma Yoga Collection","is_active":true,"position":1,"level":3,"product_count":347,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/7/8","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"new-luma-yoga-collection-8","url_path":"collections/yoga-new/new-luma-yoga-collection-8","slug":"new-luma-yoga-collection-8","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"36","_score":1,"_source":{"id":36,"parent_id":7,"name":"Eco Friendly","is_active":true,"position":4,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/36","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"eco-friendly-36","url_path":"collections/eco-friendly/eco-friendly-36","slug":"eco-friendly-36","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"33","_score":1,"_source":{"id":33,"parent_id":29,"name":"Tees","is_active":true,"position":4,"level":3,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/33","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"tees-33","url_path":"promotions/tees-all/tees-33","slug":"tees-33","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"39","_score":1,"_source":{"id":39,"parent_id":7,"name":"Performance Sportswear New","is_active":true,"position":5,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/39","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"performance-sportswear-new-39","url_path":"collections/performance-new/performance-sportswear-new-39","slug":"performance-sportswear-new-39","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"15","_score":1,"_source":{"id":15,"parent_id":12,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":208,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/15","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-15","url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","slug":"hoodies-and-sweatshirts-15","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"23","_score":1,"_source":{"id":23,"parent_id":21,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":186,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/23","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"jackets-23","url_path":"women/tops-women/jackets-women/jackets-23","slug":"jackets-23","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"19","_score":1,"_source":{"id":19,"parent_id":13,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":148,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/19","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-19","url_path":"men/bottoms-men/shorts-men/shorts-19","slug":"shorts-19","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"18","_score":1,"_source":{"id":18,"parent_id":13,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":156,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/18","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-18","url_path":"men/bottoms-men/pants-men/pants-18","slug":"pants-18","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"24","_score":1,"_source":{"id":24,"parent_id":21,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":182,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/24","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-24","url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","slug":"hoodies-and-sweatshirts-24","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"25","_score":1,"_source":{"id":25,"parent_id":21,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/25","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-25","url_path":"women/tops-women/tees-women/tees-25","slug":"tees-25","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"28","_score":1,"_source":{"id":28,"parent_id":22,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":137,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/28","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-28","url_path":"women/bottoms-women/shorts-women/shorts-28","slug":"shorts-28","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"26","_score":1,"_source":{"id":26,"parent_id":21,"name":"Bras & Tanks","is_active":true,"position":4,"level":4,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/26","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bras-and-tanks-26","url_path":"women/tops-women/tanks-women/bras-and-tanks-26","slug":"bras-and-tanks-26","tsk":1568837422669}} +{"_index":"vue_storefront_catalog_de_category","_type":"_doc","_id":"27","_score":1,"_source":{"id":27,"parent_id":22,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":91,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/27","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-27","url_path":"women/bottoms-women/pants-women/pants-27","slug":"pants-27","tsk":1568837422669}} diff --git a/var/catalog_de_cms_block.json b/var/catalog_de_cms_block.json new file mode 100644 index 00000000..313ede2b --- /dev/null +++ b/var/catalog_de_cms_block.json @@ -0,0 +1,20 @@ +{"_index":"vue_storefront_catalog_de_cms_block","_type":"_doc","_id":"3","_score":1,"_source":{"store_id":[0],"id":3,"identifier":"sale-left-menu-block","title":"Sale Left Menu Block","content":"
          Women's Deals\n\n\nMens's Deals\n\n\nGear Deals\n\n
          ","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837413847}} +{"_index":"vue_storefront_catalog_de_cms_block","_type":"_doc","_id":"14","_score":1,"_source":{"store_id":[0],"id":14,"identifier":"home-page-block","title":"Home Page Block","content":"\n
          \n

          Hot Sellers

          \n

          Here is what`s trending on Luma right now

          \n
          \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837413847}} +{"_index":"vue_storefront_catalog_de_cms_block","_type":"_doc","_id":"19","_score":1,"_source":{"store_id":[0],"id":19,"identifier":"no_reviews___","title":"no_reviews","content":"

          lorem impsum

          ","creation_time":"2019-06-27 11:42:02","update_time":"2019-06-27 11:42:02","active":true,"type":"cms_block","tsk":1568837413847}} +{"_index":"vue_storefront_catalog_de_cms_block","_type":"_doc","_id":"2","_score":1,"_source":{"store_id":[0],"id":2,"identifier":"contact-us-info","title":"Contact us info","content":"
          \n

          We love hearing from you, our Luma customers. Please contact us about anything at all. Your latest passion, unique health experience or request for a specific product. We’ll do everything we can to make your Luma experience unforgettable every time. Reach us however you like

          \n
          \n
          \n Contact Us Info\n
          \n
          \n
          \n \n Phone\n \n
          \n 1-800-403-8838\n

          Call the Luma Helpline for concerns, product questions, or anything else. We’re here for you 24 hours a day - 365 days a year.

          \n
          \n
          \n
          \n \n Apparel Design Inquiries\n \n
          \n

          Are you an independent clothing designer? Feature your products on the Luma website! Please direct all inquiries via email to: cs@luma.com

          \n
          \n
          \n
          \n \n Press Inquiries\n \n
          \n

          Please direct all media inquiries via email to: pr@luma.com

          \n
          \n
          \n
          \n
          \n
          \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837413847}} +{"_index":"vue_storefront_catalog_de_cms_block","_type":"_doc","_id":"16","_score":1,"_source":{"store_id":[0],"id":16,"identifier":"eco-friendly-block","title":"Eco Friendly Block","content":"
          \n
          \n \"\"\n \n Eco-friendly, ego-friendly\n Recycled polyester, hemp and organic cotton apperel\n \n
          \n
          \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837413847}} +{"_index":"vue_storefront_catalog_de_cms_block","_type":"_doc","_id":"15","_score":1,"_source":{"store_id":[0],"id":15,"identifier":"performance-fabrics-block","title":"Performance Fabrics Block","content":"
          \n
          \n \"\"\n \n You're the best\n Make a strong statement with Luma Performance sportswear\n \n
          \n
          \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837413847}} +{"_index":"vue_storefront_catalog_de_cms_block","_type":"_doc","_id":"9","_score":1,"_source":{"store_id":[0],"id":9,"identifier":"training-block","title":"Training Block","content":"\n
          \n

          Top Videos

          \n

          Stream free with subscription

          \n
          \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837413847}} +{"_index":"vue_storefront_catalog_de_cms_block","_type":"_doc","_id":"1","_score":1,"_source":{"store_id":[0],"id":1,"identifier":"footer_links_block","title":"Footer Links Block","content":"\n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837413847}} +{"_index":"vue_storefront_catalog_de_cms_block","_type":"_doc","_id":"6","_score":1,"_source":{"store_id":[0],"id":6,"identifier":"women-left-menu-block","title":"Women Left Menu Block","content":"
          Tops\n\n\nBottoms\n\n
          ","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837413847}} +{"_index":"vue_storefront_catalog_de_cms_block","_type":"_doc","_id":"8","_score":1,"_source":{"store_id":[0],"id":8,"identifier":"women-block","title":"Women Block","content":"\n
          \n

          Hot Sellers

          \n

          Favorites from Luma shoppers

          \n
          \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837413847}} +{"_index":"vue_storefront_catalog_de_cms_block","_type":"_doc","_id":"10","_score":1,"_source":{"store_id":[0],"id":10,"identifier":"men-block","title":"Men Block","content":"\n
          \n

          Hot Sellers

          \n

          Favorites from Luma shoppers

          \n
          \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837413847}} +{"_index":"vue_storefront_catalog_de_cms_block","_type":"_doc","_id":"13","_score":1,"_source":{"store_id":[0],"id":13,"identifier":"new-block","title":"New Block","content":"\n
          \n

          Luma's Latest

          \n

          Just in time for the new season!

          \n
          \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837413847}} +{"_index":"vue_storefront_catalog_de_cms_block","_type":"_doc","_id":"12","_score":1,"_source":{"store_id":[0],"id":12,"identifier":"sale-block","title":"Sale Block","content":"","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837413847}} +{"_index":"vue_storefront_catalog_de_cms_block","_type":"_doc","_id":"11","_score":1,"_source":{"store_id":[0],"id":11,"identifier":"gear-block","title":"Gear Block","content":"\n
          \n

          Hot Sellers

          \n

          Favorites from Luma shoppers

          \n
          \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837413847}} +{"_index":"vue_storefront_catalog_de_cms_block","_type":"_doc","_id":"18","_score":1,"_source":{"store_id":[0],"id":18,"identifier":"login-data","title":"Login Info Block","content":"
          \n

          Try Demo Customer Access

          \n

          Email:roni_cost@example.com

          \n

          Password:roni_cost3@example.com

          \n
          ","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837413847}} +{"_index":"vue_storefront_catalog_de_cms_block","_type":"_doc","_id":"20","_score":1,"_source":{"store_id":[0],"id":20,"identifier":"footer_about_menu","title":"about","content":"

          test

          ","creation_time":"2019-06-27 11:43:19","update_time":"2019-06-27 11:43:19","active":true,"type":"cms_block","tsk":1568837413847}} +{"_index":"vue_storefront_catalog_de_cms_block","_type":"_doc","_id":"17","_score":1,"_source":{"store_id":[0],"id":17,"identifier":"giftcard-block","title":"Giftcard Block","content":"","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837413847}} +{"_index":"vue_storefront_catalog_de_cms_block","_type":"_doc","_id":"4","_score":1,"_source":{"store_id":[0],"id":4,"identifier":"gear-left-menu-block","title":"Gear Left Menu Block","content":"","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837413847}} +{"_index":"vue_storefront_catalog_de_cms_block","_type":"_doc","_id":"7","_score":1,"_source":{"store_id":[0],"id":7,"identifier":"new-left-menu-block","title":"New Left Menu Block","content":"
          New in women's\n\n\nNew in men's\n\n
          ","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837413847}} +{"_index":"vue_storefront_catalog_de_cms_block","_type":"_doc","_id":"5","_score":1,"_source":{"store_id":[0],"id":5,"identifier":"men-left-menu-block","title":"Men Left Menu Block","content":"
          Tops\n\n\nBottoms\n\n
          ","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837413847}} diff --git a/var/catalog_de_cms_page.json b/var/catalog_de_cms_page.json new file mode 100644 index 00000000..777169cb --- /dev/null +++ b/var/catalog_de_cms_page.json @@ -0,0 +1,6 @@ +{"_index":"vue_storefront_catalog_de_cms_page","_type":"_doc","_id":"3","_score":1,"_source":{"store_id":[0],"id":3,"identifier":"enable-cookies","title":"Enable Cookies","page_layout":"1column","content_heading":"What are Cookies?","content":"
          \r\n

          \"Cookies\" are little pieces of data we send when you visit our store. Cookies help us get to know you better and personalize your experience. Plus they help protect you and other shoppers from fraud.

          \r\n

          Set your browser to accept cookies so you can buy items, save items, and receive customized recommendations. Here’s how:

          \r\n\r\n
          ","creation_time":"2017-11-03 08:34:38","update_time":"2017-11-03 08:34:38","sort_order":"0","active":true,"type":"cms_page","tsk":1568837417321}} +{"_index":"vue_storefront_catalog_de_cms_page","_type":"_doc","_id":"5","_score":1,"_source":{"store_id":[0],"id":5,"identifier":"about-us","title":"About us","page_layout":"1column","meta_keywords":"","meta_description":"","content_heading":"About us","content":"
          \n

          With more than 230 stores spanning 43 states and growing, Luma is a nationally recognized active wear manufacturer and retailer. We’re passionate about active lifestyles – and it goes way beyond apparel.

          \n\n

          At Luma, wellness is a way of life. We don’t believe age, gender or past actions define you, only your ambition and desire for wholeness... today.

          \n\n

          We differentiate ourselves through a combination of unique designs and styles merged with unequaled standards of quality and authenticity. Our founders have deep roots in yoga and health communities and our selections serve amateur practitioners and professional athletes alike.

          \n\n \n
          \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","sort_order":"0","layout_update_xml":"","custom_theme":"","custom_root_template":"","custom_layout_update_xml":"","active":true,"type":"cms_page","tsk":1568837417321}} +{"_index":"vue_storefront_catalog_de_cms_page","_type":"_doc","_id":"2","_score":1,"_source":{"store_id":[0],"id":2,"identifier":"home","title":"Home Page","page_layout":"1column","meta_keywords":"","meta_description":"","content_heading":"Home Page","content":"","creation_time":"2017-11-03 08:34:38","update_time":"2017-11-03 08:34:38","sort_order":"0","layout_update_xml":"","custom_theme":"","custom_root_template":"","custom_layout_update_xml":"","active":true,"type":"cms_page","tsk":1568837417321}} +{"_index":"vue_storefront_catalog_de_cms_page","_type":"_doc","_id":"6","_score":1,"_source":{"store_id":[0],"id":6,"identifier":"customer-service","title":"Customer Service","page_layout":"1column","meta_keywords":"","meta_description":"","content_heading":"Customer Service","content":"
          \n
          \n

          Luma Delivery and Returns

          \n

          We hope you love shopping with Luma. Here are our delivery and returns policies to help make sure we meet your expectations. Contact Us.

          \n
          \n\n

          Shipping and Delivery

          \n

          Shipping and Delivery is the charge for internet order processing, item selection, packaging, transport and handling. We don’t guarantee delivery times, but we do our best to provide accurate estimates.

          \n\n

          Deliveries occur only on weekdays. Shipping and Delivery charges are subject to change and are determined when you order. Estimated delivery time assumes orders are placed before 12:00 noon (PST). Orders you place with Luma late on Friday or on Saturday will not be processed until Monday. Charges may be added to orders with Priority, Overnight and International shipping if we try unsuccessfully to deliver your order more than once.

          \n\n

          Delivery addresses in Alaska, Hawaii, Puerto Rico, and Guam should add an additional $5.00 charge for standard Shipping & Delivery. Orders arrive in 7 to 9 business days when ordered before 12:00 noon (PST).

          \n\n
          \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
          Shipping and Delivery
          Merchandise total *STANDARD
          5—7 day shipping **
          PRIORITY
          2—3 day shipping **
          OVERNIGHT
          Next business day **
          Up to $200$16$26$33
          $200.01—500.00$21$31$38
          $500.01—1000.00$29$39$46
          Over $1000.00$34$44$51
          \n
          \n\n

          \n *before tax and additional charges
          \n **after processing if ordered by 12:00 noon PST\n

          \n\n

          Returns and Replacements

          \n

          We want you to be completely happy with your Luma order. If for any reason you are not satisfied, we will gladly accept your timely return of unworn, unwashed, or defective merchandise. Used merchandise cannot be returned unless defective. Returned merchandise should include the vendor packaging and tags and be in the same condition as when it was received. A pickup and/or restock fee may apply. Merchandise must be returned within 30 days of receipt of merchandise.

          \n\n

          Returning Gifts

          \n

          When returning a gift, a Luma Gift Card will be issued to the gift recipient for the amount of the returned merchandise. The card can be used for purchases from any Luma store, and online. In compliance with Federal law, for gifts valued at more than $2,000.00, the recipient will receive a check rather than an Luma Gift Card.

          \n\n

          Returning Merchandise by Mail

          \n

          On the back of the packing slip enclosed with your Luma order, please note the reason(s) for return and whether you wish to exchange the item(s) or receive a credit/refund (depending on the original form of payment).

          \n

          Enclose the return section of the packing slip with your item(s). Please use one of the return labels provided on the front of your packing slip to ensure proper return address and credit information. Restricted items must be returned using ground transportation.

          \n

          Please allow 10 to 14 days for Luma to process your return.

          \n
          \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","sort_order":"0","layout_update_xml":"","custom_theme":"","custom_root_template":"","custom_layout_update_xml":"","active":true,"type":"cms_page","tsk":1568837417321}} +{"_index":"vue_storefront_catalog_de_cms_page","_type":"_doc","_id":"4","_score":1,"_source":{"store_id":[0],"id":4,"identifier":"privacy-policy-cookie-restriction-mode","title":"Privacy Policy","page_layout":"1column","meta_keywords":"","meta_description":"","content_heading":"Privacy Policy","content":"
          \n
          \n

          This website (\"website\") is operated by Luma Inc., which includes Luma stores, and Luma Private Sales. This privacy policy only covers information collected at this website, and does not cover any information collected offline by Luma. All Luma websites are covered by this privacy policy.

          \n\n

          Luma Security

          \n

          Personal information provided on the website and online credit card transactions are transmitted through a secure server. We are committed to handling your personal information with high standards of information security. We take appropriate physical, electronic, and administrative steps to maintain the security and accuracy of personally identifiable information we collect, including limiting the number of people who have physical access to our database servers, as well as employing electronic security systems and password protections that guard against unauthorized access.

          \n\n

          Our website uses encryption technology, like Secure Sockets Layer (SSL), to protect your personal information during data transport. SSL encrypts ordering information such as your name, address, and credit card number. Our Customer Care center and stores also operate over a private, secure network. Please note that email is not encrypted and is not considered to be a secure means of transmitting credit card information.

          \n\n

          Luma Privacy Policy

          \n

          To help us achieve our goal of providing the highest quality products and services, we use information from our interactions with you and other customers, as well as from other parties. Because we respect your privacy, we have implemented procedures to ensure that your personal information is handled in a safe, secure, and responsible manner. We have posted this privacy policy in order to explain our information collection practices and the choices you have about the way information is collected and used.

          \n\n

          As we continue to develop the Luma website and take advantage of advances in technology to improve the services we offer, this privacy policy likely will change. We therefore encourage you to refer to this policy on an ongoing basis so that you understand our current privacy policy.

          \n\n

          The Information We Collect

          \n

          Generally, you may browse the Luma website without providing any personally identifiable information. However, we may ask you to provide personally identifiable information at various times and places on this website. In some cases, if you choose not to provide us with the requested information, you may not be able to access all parts of this website or participate in all of its features, pricing, and product selection.

          \n\n

          We may collect the following information:

          \n
            \n
          • name
          • \n
          • contact information including email address
          • \n
          • demographic information such as postcode, preferences and interests
          • \n
          • other information relevant to customer surveys and/or offers
          • \n
          \n

          For the exhaustive list of cookies we collect see the List of cookies we collect section. From your purchases and other interactions with us, we obtain information concerning the specific products or services you purchase or use. When you visit this website, our web server automatically collects anonymous information such as log data and IP addresses, and may collect general information concerning your location. We may use the automatically collected information for a number of purposes, such as improving our site design, product assortments, customer service, and special promotions.

          \n

          How We Use The Information We Collect

          \n

          We require this information to understand your needs and provide you with a better service, and in particular for the following reasons:

          \n
            \n
          • Internal record keeping.
          • \n
          • We may use the information to improve our products and services.
          • \n
          • We may periodically send promotional emails about new products, special offers or other information which we think you may find interesting using the email address which you have provided.
          • \n
          • From time to time, we may also use your information to contact you for market research purposes. We may contact you by email, phone, fax or mail. We may use the information to customize the website according to your interests.
          • \n
          \n\n

          Security

          \n

          We are committed to ensuring that your information is secure. In order to prevent unauthorized access or disclosure, we have put in place suitable physical, electronic and managerial procedures to safeguard and secure the information we collect online.

          \n\n

          Others With Whom We Share Your Information.

          \n

          The Luma Group: All of the above information that we collect, as described above, may be shared among all Luma entities, including Luma Venia and Luma Terra stores, website and Private Sales.

          \n\n

          Service Providers: We also may disclose information to outside companies that help us bring you the products and services we offer. For example, we may work with an outside company to: (a) manage a database of customer information; (b) assist us in distributing emails; (c) assist us with direct marketing and data collection; (d) provide us storage and analysis; (d) provide fraud prevention; and (e) provide other services designed to assist us in maximizing our business potential. We require that these outside companies agree to keep confidential all information we share with them and to use the information only to perform their obligations in our agreements with them.

          \n\n

          Other Companies: We may provide information to carefully selected outside companies when we believe their products or services may be of interest to you.

          \n\n

          Business Transitions: We may transfer or share a copy of personal information about you in the event that Luma or one of its properties, affiliates, or subsidiaries goes through a business transition, such as a merger, being acquired by another company, or selling a portion of its assets. You will be notified via email or prominent notice on our website prior to a change of ownership or control of your personal information, if your personal information will be used contrary to this policy. However, nothing in this Privacy Policy is intended to interfere with the ability of Luma to transfer all or part of its business and/or assets to an affiliate or independent third party at any time, for any purpose, without any limitation whatsoever.

          \n\n

          Luma specifically reserves the right to transfer or share a copy of personally identifiable information collected from its websites to the buyer of that portion of its business relating to that information.

          \n\n

          Compliance with Law: We may provide access to information when legally required to do so, to cooperate with police investigations or other legal proceedings, to protect against misuse or unauthorized use of our website, to limit our legal liability, and to protect our rights or to protect the rights, property, or safety of visitors of this website or the public.

          \n\n

          Luma partners with advertising companies to place our advertising on publisher websites on the Internet. These advertising companies collect anonymous information about your visits to our web site. This technology involves the use of third party cookies that allow them to develop personalized advertising so that it directly relates to offers that may be of interest to you. You may choose to opt-out of this service we have with our third-party advertising partner. We may also use Luma cookies to provide similar enhanced online marketing to you based on your interests and preferences. You may also choose to opt out of these enhanced online marketing ads.

          \n\n

          Your Choices Regarding Use Of The Information We Collect

          \n\n

          You have several choices regarding our handling of your nonpublic personally identifiable information.

          \n\n

          \n Direct Mail or Telephone Marketing: If you shop at the Luma or Private Sales stores and wish to be removed from the list of customers that receive direct mail or telemarketing calls, please either write to Luma Customer Care at 112 West 34th Street, 18th Flr. New York, NY 10120 or call +1 800-403-8838. If you choose to write to us, please include your name, address, and credit card account number (if you have one), and state one of the following:\n

            \n
          • \"NO MAIL OFFERS\" (if you don't want to receive offers by mail);
          • \n
          • \"NO PHONE OFFERS\" (if you don't want to receive offers by phone);
          • \n
          • \"NO PHONE OR MAIL OFFERS\" (if you don't want to receive either).
          • \n
          \n

          \n\n

          Because customer lists often are prepared well in advance of an offering (sometimes a few months before the offer is made), you may continue to receive some offers after you send us a request not to use your information for specified marketing purposes. We appreciate your patience and understanding in giving us time to carry out your request.

          \n\n

          Your California Privacy Rights

          \n

          Under California Civil Code sections 1798.83-1798.84, California residents are entitled to ask us for a notice describing what categories of personal customer information we share with third parties or corporate affiliates for those third parties or corporate affiliates' direct marketing purposes. That notice will identify the categories of information shared and will include a list of the third parties and affiliates with which it was shared, along with their names and addresses. If you are a California resident and would like a copy of this notice, please submit a written request to the following address: Luma Customer Care, 112 West 34th Street, 18th Floor, New York, NY 10120. Please allow 30 days for a response.

          \n\n

          Cookies, Web Beacons, and How We Use Them

          \n

          A cookie is a small file which asks permission to be placed on your computer's hard drive. Once you agree, the file is added and the cookie helps analyze web traffic or lets you know when you visit a particular site. Cookies allow web applications to respond to you as an individual. The web application can tailor its operations to your needs, likes and dislikes by gathering and remembering information about your preferences.

          \n\n

          We use traffic log cookies to identify which pages are being used. This helps us analyze data about web page traffic and improve our website in order to tailor it to customer needs. We only use this information for statistical analysis purposes and then the data is removed from the system.

          \n\n

          Overall, cookies help us provide you with a better website, by enabling us to monitor which pages you find useful and which you do not. A cookie in no way gives us access to your computer or any information about you, other than the data you choose to share with us. You can choose to accept or decline cookies. Most web browsers automatically accept cookies, but you can usually modify your browser setting to decline cookies if you prefer. This may prevent you from taking full advantage of the website.

          \n\n

          A \"web beacon\" or \"pixel tag\" or \"clear gif\" is typically a one-pixel image, used to pass information from your computer or mobile device to a website.

          \n\n

          We use cookies and web beacons to keep track of what you have in your shopping cart and to remember you when you return to the website as well as to identify the pages you click on during your visit to our site and the name of the website you visited immediately before clicking to the Luma website. We use this information to improve our site design, product assortments, customer service, and special promotions. You can, of course, disable cookies and web beacons on your computer by indicating this in the preferences or options menus in your browser. However, it is possible that some parts of our website will not operate correctly if you disable cookies. We may also use web beacons, and other technologies, to help track whether our communications are reaching you, to measure their effectiveness, or to collect certain non-personal information about your computer, device, or browser in order to allow us to better design future communications to you.

          \n\n

          We may contract with third parties who may use cookies and web beacons and collect information on our behalf or provide services such as credit card processing, shipping, promotional services, or data management. We call them our Customer Care Partners. These third parties are prohibited by our contract with them from sharing that information with anyone other than us or our other Customer Care Partners.

          \n\n

          List of cookies we collect

          \n

          The table below lists the cookies we collect and the information they store.

          \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
          COOKIE nameCOOKIE Description
          CARTThe association with your shopping cart.
          CATEGORY_INFOAllows pages to be displayed more quickly.
          COMPAREThe items that you have in the Compare Products list.
          CUSTOMERAn encrypted version of your customer id.
          CUSTOMER_AUTHAn indicator if you are signed into the store.
          CUSTOMER_INFOAn encrypted version of the customer group you belong to.
          CUSTOMER_SEGMENT_IDSStores your Customer Segment ID
          EXTERNAL_NO_CACHEA flag that, indicates whether caching is on or off.
          FRONTENDYour session ID on the server.
          GUEST-VIEWAllows guests to edit their orders.
          LAST_CATEGORYThe last category you visited.
          LAST_PRODUCTThe last product you looked at.
          NEWMESSAGEIndicates whether a new message has been received.
          NO_CACHEIndicates whether it is allowed to use cache.
          PERSISTENT_SHOPPING_CARTA link to information about your cart and viewing history if you have asked the site.
          RECENTLYCOMPAREDThe items you recently compared.
          STFInformation on products you emailed to friends.
          STOREThe store view or language you have selected.
          USER_ALLOWED_SAVE_COOKIEIndicates whether a customer authorized cookies.
          VIEWED_PRODUCT_IDSThe products that you recently looked at.
          WISHLISTAn encrypted list of products added to your wish list.
          WISHLIST_CNTThe number of items in your wish list.
          \n\n

          Online Account Registration

          \n

          To make online shopping faster and easier, you may register on the Luma website. As a registered customer, you only have to enter your shipping addresses and billing information once; they will be securely stored with us for your future use. Using your name and a password of your choice, you may access your account online at any time to add, delete, or change information. If you are using a public computer, we strongly encourage you to Sign Out when you finish shopping. Your information will still be stored with us but it will not be accessible to anyone else from that computer.

          \n\n

          Emails

          \n

          You will receive promotional emails from us only if you have asked to receive them. If you do not want to receive email from Luma or its affiliates you can click on the \"Unsubscribe\" link at the bottom of any email communication sent by us. Please allow us 3 business days from when the request was received to complete the removal, as some of our promotions may already have been in process before you submitted your request.

          \n\n

          Acceptance

          \n

          By using this website, you accept the policies set forth in this Privacy Policy.

          \n\n

          Questions for Luma?

          \n

          Contact Us

          \n
          \n \n
          \n","creation_time":"2017-11-03 08:34:38","update_time":"2017-11-03 08:34:38","sort_order":"0","layout_update_xml":"","custom_theme":"","custom_root_template":"","custom_layout_update_xml":"","active":true,"type":"cms_page","tsk":1568837417321}} +{"_index":"vue_storefront_catalog_de_cms_page","_type":"_doc","_id":"1","_score":1,"_source":{"store_id":[0],"id":1,"identifier":"no-route","title":"404 Not Found","page_layout":"2columns-right","meta_keywords":"Page keywords","meta_description":"Page description","content_heading":"Whoops, our bad...","content":"
          \r\n
          The page you requested was not found, and we have a fine guess why.
          \r\n
          \r\n
            \r\n
          • If you typed the URL directly, please make sure the spelling is correct.
          • \r\n
          • If you clicked on a link to get here, the link is outdated.
          • \r\n
          \r\n
          \r\n
          \r\n
          What can you do?
          \r\n
          Have no fear, help is near! There are many ways you can get back on track with Magento Store.
          \r\n
          \r\n
            \r\n
          • Go back to the previous page.
          • \r\n
          • Use the search bar at the top of the page to search for your products.
          • \r\n
          • Follow these links to get you back on track!
            Store Home | My Account
          \r\n","creation_time":"2017-11-03 08:34:38","update_time":"2017-11-03 08:34:38","sort_order":"0","active":true,"type":"cms_page","tsk":1568837417321}} diff --git a/var/catalog_de_product.json b/var/catalog_de_product.json new file mode 100644 index 00000000..ee7692c7 --- /dev/null +++ b/var/catalog_de_product.json @@ -0,0 +1,2039 @@ +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1","_score":1,"_source":{"id":1,"sku":"24-MB01","name":"Joust Duffle Bag","attribute_set_id":15,"price":34,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:20","updated_at":"2019-09-03 13:22:05","product_links":[{"sku":"24-MB01","link_type":"related","linked_product_sku":"24-MB04","linked_product_type":"simple","position":1},{"sku":"24-MB01","link_type":"related","linked_product_sku":"24-MB05","linked_product_type":"simple","position":2},{"sku":"24-MB01","link_type":"related","linked_product_sku":"24-MB03","linked_product_type":"simple","position":3},{"sku":"24-MB01","link_type":"related","linked_product_sku":"24-MB02","linked_product_type":"simple","position":4},{"sku":"24-MB01","link_type":"related","linked_product_sku":"24-MB06","linked_product_type":"simple","position":5}],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":"99.0000","minimal_price":34,"regular_price":34,"description":"

          The sporty Joust Duffle Bag can't be beat - not in the gym, not on the luggage carousel, not anywhere. Big enough to haul a basketball or soccer ball and some sneakers with plenty of room to spare, it's ideal for athletes with places to go.

          \r\n
            \r\n
          • Dual top handles.
          • \r\n
          • Adjustable shoulder strap.
          • \r\n
          • Full-length zipper.
          • \r\n
          • L 29\" x W 13\" x H 11\".
          • \r\n
          ","special_from_date":"2010-06-04 00:00:00","special_to_date":"2019-07-12 00:00:00","image":"/m/b/mb01-blue-0.jpg","small_image":"/m/b/mb01-blue-0.jpg","thumbnail":"/m/b/mb01-blue-0.jpg","color":"49","category_ids":[3,4],"options_container":"container1","required_options":"0","has_options":"0","url_key":"joust-duffle-bag","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"0","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"joust-duffle-bag-1","links":{},"stock":{"item_id":1,"product_id":1,"stock_id":1,"qty":59,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/b/mb01-blue-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/gerat-3/joust-duffle-bag-1.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"12","_score":1,"_source":{"id":12,"sku":"24-WB03","name":"Driven Backpack","attribute_set_id":15,"price":36,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:25","updated_at":"2017-11-06 12:16:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":36,"max_price":36,"max_regular_price":36,"minimal_regular_price":36,"special_price":null,"minimal_price":36,"regular_price":36,"description":"

          School books, camp gear and yoga clothes get along just fine in the all-purpose Driven Backpack. Crafted with tough polyester ripstop fabric, it's outfitted with rubberized end panels and padded, adjustable shoulder straps. The roomy main compartment features molded foam pockets that host everything you need.

          \n
            \n
          • Large main and small zip compartments.
          • \n
          • Adjustable, padded straps.
          • \n
          • Interior foam pockets.
          • \n
          • Exterior zip compartment.
          • \n
          • Left sport bottle pocket.
          • \n
          • Survival gear sold separately.
          • \n
          ","image":"/w/b/wb03-purple-0.jpg","small_image":"/w/b/wb03-purple-0.jpg","thumbnail":"/w/b/wb03-purple-0.jpg","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"driven-backpack","tax_class_id":"2","activity":[11,20,8],"style_bags":[24,28,29],"material":[36,37,38],"strap_bags":[61,64,65],"features_bags":[71,72,75,78],"slug":"driven-backpack-12","links":{},"stock":{"item_id":12,"product_id":12,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-purple-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/gerat-3/driven-backpack-12.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"21","_score":1,"_source":{"id":21,"sku":"24-WG084","name":"Sprite Foam Yoga Brick","attribute_set_id":11,"price":5,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2019-09-03 12:10:44","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":5,"max_price":5,"max_regular_price":5,"minimal_regular_price":5,"special_price":null,"minimal_price":5,"regular_price":5,"description":"

          Our top-selling yoga prop, the 4-inch, high-quality Sprite Foam Yoga Brick is popular among yoga novices and studio professionals alike. An essential yoga accessory, the yoga brick is a critical tool for finding balance and alignment in many common yoga poses. Choose from 5 color options.

          \r\n
            \r\n
          • Standard Large Size: 4\" x 6\" x 9\".\r\n
          • Beveled edges for ideal contour grip.\r\n
          • Durable and soft, scratch-proof foam.\r\n
          • Individually wrapped.\r\n
          • Ten color choices.\r\n
          ","image":"/l/u/luma-yoga-brick.jpg","small_image":"/l/u/luma-yoga-brick.jpg","thumbnail":"/l/u/luma-yoga-brick.jpg","color":"50","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-foam-yoga-brick","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[8,9,17,11],"material":"42","gender":[80,81,84],"category_gear":"87","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"sprite-foam-yoga-brick-21","links":{},"stock":{"item_id":21,"product_id":21,"stock_id":1,"qty":23,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-yoga-brick.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-foam-yoga-brick-21.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"15","_score":1,"_source":{"id":15,"sku":"24-UG06","name":"Affirm Water Bottle ","attribute_set_id":11,"price":7,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2019-07-23 10:41:43","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":7,"max_price":7,"max_regular_price":7,"minimal_regular_price":7,"special_price":null,"minimal_price":7,"regular_price":7,"description":"

          You'll stay hydrated with ease with the Affirm Water Bottle by your side or in hand. Measurements on the outside help you keep track of how much you're drinking, while the screw-top lid prevents spills. A metal carabiner clip allows you to attach it to the outside of a backpack or bag for easy access.

          \r\n
            \r\n
          • Made of plastic.
          • \r\n
          • Grooved sides for an easy grip.
          • \r\n
          ","image":"/u/g/ug06-lb-0.jpg","small_image":"/u/g/ug06-lb-0.jpg","thumbnail":"/u/g/ug06-lb-0.jpg","color":"49","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"affirm-water-bottle","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[8,9,17,11],"material":"44","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"affirm-water-bottle-15","links":{},"stock":{"item_id":15,"product_id":15,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/u/g/ug06-lb-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null},{"image":"/1/3/136883358_640.jpg","pos":2,"typ":"external-video","lab":null,"vid":{"url":"https://vimeo.com/21294655","title":"The Aurora","desc":"Follow on http://www.facebook.com/TSOphotography\r\n\r\nI spent a week capturing one of the biggest aurora borealis shows in recent years. \r\n\r\nShot in and around Kirkenes and Pas National Park bordering Russia, at 70 degree north and 30 degrees east. Temperatures around -25 Celsius. Good fun.\r\n\r\nAvailable in Digital Cinema 4k.\r\n\r\nFollow Facebook: http://www.facebook.com/TSOPhotography\r\nFollow Twitter:\r\nhttp://twitter.com/TSOPhotography\r\nFollow Google+:\r\nhttps://plus.google.com/107543460658107759808\r\n\r\nPress/licensing/projects contact: tsophotography@gmail.com","meta":"","video_id":"21294655","type":"vimeo"}},{"image":"/b/i/biglogo512x512.jpg","pos":3,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/affirm-water-bottle-15.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"33","_score":1,"_source":{"id":33,"sku":"24-WG085","name":"Sprite Yoga Strap 6 foot- tier price","attribute_set_id":13,"price":14,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2019-07-05 12:06:26","product_links":[],"tier_prices":[{"customer_group_id":1,"qty":1,"value":10,"extension_attributes":{"website_id":0}}],"custom_attributes":null,"final_price":14,"max_price":14,"max_regular_price":14,"minimal_regular_price":14,"special_price":null,"minimal_price":14,"regular_price":14,"description":"

          The Sprite Yoga Strap is your untiring partner in demanding stretches, holds and alignment routines. The strap's 100% organic cotton fabric is woven tightly to form a soft, textured yet non-slip surface. The plastic clasp buckle is easily adjustable, lightweight and durable under strain.

          \r\n
            \r\n
          • 100% soft and durable cotton.\r\n
          • Plastic cinch buckle is easy to use.\r\n
          • Three natural colors made from phthalate and heavy metal free dyes.\r\n
          ","image":"/l/u/luma-yoga-strap.jpg","small_image":"/l/u/luma-yoga-strap.jpg","thumbnail":"/l/u/luma-yoga-strap.jpg","color":"49","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-yoga-strap-6-foot","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":"8","material":[32,44],"gender":[80,81,84],"category_gear":"87","size":"94","slug":"sprite-yoga-strap-6-foot-tier-price-33","links":{},"stock":{"item_id":33,"product_id":33,"stock_id":1,"qty":39,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-yoga-strap.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-yoga-strap-6-foot-tier-price-33.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"28","_score":1,"_source":{"id":28,"sku":"24-WG082-pink","name":"Sprite Stasis Ball 65 cm","attribute_set_id":12,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

          The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

          \n
            \n
          • 65 cm plastic shell.
          • \n
          • Durable, burst-resistant design.
          • \n
          • Hand pump included.
          • \n
          ","image":"/l/u/luma-stability-ball-pink.jpg","small_image":"/l/u/luma-stability-ball-pink.jpg","thumbnail":"/l/u/luma-stability-ball-pink.jpg","color":"58","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-65-cm-pink","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"92","slug":"sprite-stasis-ball-65-cm-28","links":{},"stock":{"item_id":28,"product_id":28,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball-pink.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-stasis-ball-65-cm-28.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"35","_score":1,"_source":{"id":35,"sku":"24-WG087","name":"Sprite Yoga Strap 10 foot","attribute_set_id":13,"price":21,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":21,"max_price":21,"max_regular_price":21,"minimal_regular_price":21,"special_price":null,"minimal_price":21,"regular_price":21,"description":"

          The Sprite Yoga Strap is your untiring partner in demanding stretches, holds and alignment routines. The strap's 100% organic cotton fabric is woven tightly to form a soft, textured yet non-slip surface. The plastic clasp buckle is easily adjustable, lightweight and durable under strain.

          \n
            \n
          • 10' long x 1.0\" wide.\n
          • 100% soft and durable cotton.\n
          • Plastic cinch buckle is easy to use.\n
          • Three natural colors made from phthalate and heavy metal free dyes.\n
          ","image":"/l/u/luma-yoga-strap.jpg","small_image":"/l/u/luma-yoga-strap.jpg","thumbnail":"/l/u/luma-yoga-strap.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-yoga-strap-10-foot","tax_class_id":"2","activity":"8","material":[32,44],"gender":[80,81,84],"category_gear":"87","size":"96","slug":"sprite-yoga-strap-10-foot-35","links":{},"stock":{"item_id":35,"product_id":35,"stock_id":1,"qty":2,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-yoga-strap.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-yoga-strap-10-foot-35.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"26","_score":1,"_source":{"id":26,"sku":"24-WG081-blue","name":"Sprite Stasis Ball 55 cm - tier price","attribute_set_id":12,"price":23,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2019-07-05 12:03:25","product_links":[],"tier_prices":[{"customer_group_id":1,"qty":1,"value":15,"extension_attributes":{"website_id":0}}],"custom_attributes":null,"final_price":23,"max_price":23,"max_regular_price":23,"minimal_regular_price":23,"special_price":null,"minimal_price":23,"regular_price":23,"description":"

          The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

          \r\n
            \r\n
          • Durable, burst-resistant design.
          • \r\n
          • Hand pump included.
          • \r\n
          ","image":"/l/u/luma-stability-ball.jpg","small_image":"/l/u/luma-stability-ball.jpg","thumbnail":"/l/u/luma-stability-ball.jpg","color":"50","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-55-cm-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"91","slug":"sprite-stasis-ball-55-cm-tier-price-26","links":{},"stock":{"item_id":26,"product_id":26,"stock_id":1,"qty":41,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-stasis-ball-55-cm-tier-price-26.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"38","_score":1,"_source":{"id":38,"sku":"24-MG03","name":"Summit Watch","attribute_set_id":11,"price":54,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

          Trek high and low in the attractive Summit Watch, which features a digital LED display with time and date, stopwatch, lap counter, and 3-second backlight. It can also calculate the number of steps taken and calories burned.

          \n
            \n
          • Brushed metal case.
          • \n
          • Water resistant (100 meters).
          • \n
          • Buckle clasp.
          • \n
          • Strap fits 7\" - 10\".
          • \n
          • 1-year limited warranty.
          • \n
          ","image":"/m/g/mg03-br-0.jpg","small_image":"/m/g/mg03-br-0.jpg","thumbnail":"/m/g/mg03-br-0.jpg","category_ids":[3,7,6,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"summit-watch","tax_class_id":"2","activity":[9,16,17,5,11],"material":[43,44,48],"gender":[80,81,84],"category_gear":[86,87,90],"new":"1","slug":"summit-watch-38","links":{},"stock":{"item_id":38,"product_id":38,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/g/mg03-br-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/gerat-3/summit-watch-38.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"39","_score":1,"_source":{"id":39,"sku":"24-MG05","name":"Cruise Dual Analog Watch","attribute_set_id":11,"price":55,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

          Whether you're traveling or wish you were, you'll never let time zones perplex you again with the Cruise Dual Analog Watch. The thick, adjustable band promises a comfortable, personalized fit to this classy, modern time piece.

          \n
            \n
          • Two dials.
          • \n
          • Stainless steel case.
          • \n
          • Adjustable leather band.
          • \n
          ","image":"/m/g/mg05-br-0.jpg","small_image":"/m/g/mg05-br-0.jpg","thumbnail":"/m/g/mg05-br-0.jpg","category_ids":[3,7,6,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cruise-dual-analog-watch","tax_class_id":"2","activity":"9","material":[35,44],"gender":"80","category_gear":[86,88,90],"new":"1","slug":"cruise-dual-analog-watch-39","links":{},"stock":{"item_id":39,"product_id":39,"stock_id":1,"qty":79,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/g/mg05-br-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/gerat-3/cruise-dual-analog-watch-39.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"30","_score":1,"_source":{"id":30,"sku":"24-WG083-gray","name":"Sprite Stasis Ball 75 cm","attribute_set_id":12,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

          The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

          \n
            \n
          • 75 cm plastic shell.
          • \n
          • Durable, burst-resistant design.
          • \n
          • Hand pump included.
          • \n
          ","image":"/l/u/luma-stability-ball-gray.jpg","small_image":"/l/u/luma-stability-ball-gray.jpg","thumbnail":"/l/u/luma-stability-ball-gray.jpg","color":"52","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-75-cm-gray","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"93","slug":"sprite-stasis-ball-75-cm-30","links":{},"stock":{"item_id":30,"product_id":30,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball-gray.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-stasis-ball-75-cm-30.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"29","_score":1,"_source":{"id":29,"sku":"24-WG082-blue","name":"Sprite Stasis Ball 65 cm","attribute_set_id":12,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

          The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

          \n
            \n
          • 65 cm plastic shell.
          • \n
          • Durable, burst-resistant design.
          • \n
          • Hand pump included.
          • \n
          ","image":"/l/u/luma-stability-ball.jpg","small_image":"/l/u/luma-stability-ball.jpg","thumbnail":"/l/u/luma-stability-ball.jpg","color":"50","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-65-cm-blue","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"92","slug":"sprite-stasis-ball-65-cm-29","links":{},"stock":{"item_id":29,"product_id":29,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-stasis-ball-65-cm-29.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"40","_score":1,"_source":{"id":40,"sku":"24-MG02","name":"Dash Digital Watch","attribute_set_id":11,"price":92,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92,"max_price":92,"max_regular_price":92,"minimal_regular_price":92,"special_price":null,"minimal_price":92,"regular_price":92,"description":"

          The Dash Digital Watch will challenge you to push harder and longer. Log workouts by date, average, and segment times, and recharge by setting hydration and nutrition alarms. This watch is styled with a sleek, square face and durable rubber strap for a long life.

          \n
            \n
          • Digital display.
          • \n
          • LED backlight.
          • \n
          • Rubber strap with buckle clasp.
          • \n
          • 1-year limited warranty.
          • ","image":"/m/g/mg02-bk-0.jpg","small_image":"/m/g/mg02-bk-0.jpg","thumbnail":"/m/g/mg02-bk-0.jpg","category_ids":[3,7,6,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"dash-digital-watch","tax_class_id":"2","activity":[16,17,5,11],"material":"45","gender":"80","category_gear":[86,87,90],"new":"1","slug":"dash-digital-watch-40","links":{},"stock":{"item_id":40,"product_id":40,"stock_id":1,"qty":7,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/g/mg02-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/gerat-3/dash-digital-watch-40.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"31","_score":1,"_source":{"id":31,"sku":"24-WG083-pink","name":"Sprite Stasis Ball 75 cm","attribute_set_id":12,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

            The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

            \n
              \n
            • 75 cm plastic shell.
            • \n
            • Durable, burst-resistant design.
            • \n
            • Hand pump included.
            • \n
            ","image":"/l/u/luma-stability-ball-pink.jpg","small_image":"/l/u/luma-stability-ball-pink.jpg","thumbnail":"/l/u/luma-stability-ball-pink.jpg","color":"58","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-75-cm-pink","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"93","slug":"sprite-stasis-ball-75-cm-31","links":{},"stock":{"item_id":31,"product_id":31,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball-pink.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-stasis-ball-75-cm-31.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"50","_score":1,"_source":{"id":50,"sku":"240-LV08","name":"Advanced Pilates & Yoga (Strength)","attribute_set_id":14,"price":18,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:34","updated_at":"2017-11-06 12:16:34","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

            Advanced Pilates & Yoga will help you to increase your flexibility and tone core muscle groups through an invigorating workout for your whole body. The Pilates workout is a thorough strength-conditioning session that boosts flexibility, endurance and posture. The Yoga workout incorporates legacy and new poses into one continuous routine that will leave you feeling exhausted and fulfilled at once.

            \n
              \n
            • Pilates-Yoga fusion.
            • \n
            • Breathing warmup and cooldown.
            • \n
            • Hour-long session.
            • \n
            • High-definition video.
            • \n
                ","short_description":"

                \nNo equipment needed. Advanced Pilates & Yoga (Strength) is a muscle-defining program that employs balance, cardio and flexibility movements with plyometric and body-weight based exercises for an all-around, physically challenging workout. The Pilates elements of this compilation bring gentle resistance principals into the routines, emphasizing safety, technique and range of motion.\n

                ","image":"/l/t/lt05.jpg","small_image":"/l/t/lt05.jpg","thumbnail":"/l/t/lt05.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"advanced-pilates-yoga-strength","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","tax_class_id":"2","activity":[8,16,11],"format":"102","slug":"advanced-pilates-and-yoga-strength-50","links":{},"stock":{"item_id":50,"product_id":50,"stock_id":1,"qty":null,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/t/lt05.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":9,"name":"Training","slug":"training-9","path":"training/training-9"},{"category_id":10,"name":"Video Download","slug":"video-download-10","path":"training/training-video/video-download-10"}],"url_path":"training/training-9/advanced-pilates-and-yoga-strength-50.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"43","_score":1,"_source":{"id":43,"sku":"24-WG03","name":"Clamber Watch","attribute_set_id":11,"price":54,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Keep track of time on the treadmill or trail with our Clamber Watch. The flexible, rubberized strap is contoured to conform to your wrist for a comfortable fit all day. The face features an illuminated digital read-out of the current time and stopwatch functions.

                \n
                  \n
                • Japanese quartz movement.
                • \n
                • Strap fits 5\" to 6.0\".
                • \n
                ","image":"/w/g/wg03-gr-0.jpg","small_image":"/w/g/wg03-gr-0.jpg","thumbnail":"/w/g/wg03-gr-0.jpg","category_ids":[3,6],"options_container":"container2","required_options":"0","has_options":"0","url_key":"clamber-watch","tax_class_id":"2","activity":[9,16,5,11],"material":[44,45,48],"gender":"81","category_gear":[86,87,90],"slug":"clamber-watch-43","links":{},"stock":{"item_id":43,"product_id":43,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/g/wg03-gr-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null},{"image":"/w/g/wg03-sa-0.jpg","pos":2,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"}],"url_path":"gear/gerat-3/clamber-watch-43.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"41","_score":1,"_source":{"id":41,"sku":"24-WG09","name":"Luma Analog Watch","attribute_set_id":11,"price":43,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                Designed to stand up to your active lifestyle, this women's Luma Analog Watch features a tasteful brushed chrome finish and a stainless steel, water-resistant construction for lasting durability.

                \n
                  \n
                • Precision Miyota® three-hand movement.
                • \n
                ","special_price":"43.0000","special_from_date":"2017-11-06 12:16:30","image":"/w/g/wg09-gr-0.jpg","small_image":"/w/g/wg09-gr-0.jpg","thumbnail":"/w/g/wg09-gr-0.jpg","category_ids":[3,6],"options_container":"container2","required_options":"0","has_options":"0","url_key":"luma-analog-watch","tax_class_id":"2","activity":"9","material":"47","gender":"81","category_gear":[86,88,90],"sale":"1","slug":"luma-analog-watch-41","links":{},"stock":{"item_id":41,"product_id":41,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-06-23 11:05:41","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/g/wg09-gr-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"}],"url_path":"gear/gerat-3/luma-analog-watch-41.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"32","_score":1,"_source":{"id":32,"sku":"24-WG083-blue","name":"Sprite Stasis Ball 75 cm","attribute_set_id":12,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                \n
                  \n
                • 75 cm plastic shell.
                • \n
                • Durable, burst-resistant design.
                • \n
                • Hand pump included.
                • \n
                ","image":"/l/u/luma-stability-ball.jpg","small_image":"/l/u/luma-stability-ball.jpg","thumbnail":"/l/u/luma-stability-ball.jpg","color":"50","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-75-cm-blue","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"93","slug":"sprite-stasis-ball-75-cm-32","links":{},"stock":{"item_id":32,"product_id":32,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-stasis-ball-75-cm-32.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"46","_score":1,"_source":{"id":46,"sku":"240-LV04","name":"Beginner's Yoga","attribute_set_id":14,"price":6,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:32","updated_at":"2017-11-06 12:16:32","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":6,"max_price":6,"max_regular_price":6,"minimal_regular_price":6,"special_price":null,"minimal_price":6,"regular_price":6,"description":"

                Beginner's Yoga starts you down the path toward strength, balance and mental focus. With this video download, you don't have to be a great athlete or gym guru to learn the best and most basic techniques for lifelong yoga foundation.

                \n
                  \n
                • Video download
                • \n
                • Five workouts.
                • \n
                • Balance, strength and endurance.
                • \n
                • Flexibility and core strength.
                • \n
                • Includes modification for novices.
                • \n
                ","short_description":"

                \nThe most difficult yoga poses to master are the ones learned incorrectly as a beginner. Luma's Beginner's Yoga is a fantastic way to break into your initial yoga session and begin the journey to a longer, leaner, healthier body. Confidently find your way into yoga with this effective yet gentle program. You'll learn proper alignment and how to sidestep common mistakes.\n

                ","image":"/l/t/lt01.jpg","small_image":"/l/t/lt01.jpg","thumbnail":"/l/t/lt01.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beginner-s-yoga","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","tax_class_id":"2","activity":[8,16,17,5,11],"format":"102","slug":"beginners-yoga-46","links":{},"stock":{"item_id":46,"product_id":46,"stock_id":1,"qty":null,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/t/lt01.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":9,"name":"Training","slug":"training-9","path":"training/training-9"},{"category_id":10,"name":"Video Download","slug":"video-download-10","path":"training/training-video/video-download-10"}],"url_path":"training/training-9/beginners-yoga-46.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"34","_score":1,"_source":{"id":34,"sku":"24-WG086","name":"Sprite Yoga Strap 8 foot","attribute_set_id":13,"price":17,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":17,"max_price":17,"max_regular_price":17,"minimal_regular_price":17,"special_price":null,"minimal_price":17,"regular_price":17,"description":"

                The Sprite Yoga Strap is your untiring partner in demanding stretches, holds and alignment routines. The strap's 100% organic cotton fabric is woven tightly to form a soft, textured yet non-slip surface. The plastic clasp buckle is easily adjustable, lightweight and durable under strain.

                \n
                  \n
                • 8' long x 1.0\" wide.\n
                • 100% soft and durable cotton.\n
                • Plastic cinch buckle is easy to use.\n
                • Three natural colors made from phthalate and heavy metal free dyes.\n
                ","image":"/l/u/luma-yoga-strap.jpg","small_image":"/l/u/luma-yoga-strap.jpg","thumbnail":"/l/u/luma-yoga-strap.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-yoga-strap-8-foot","tax_class_id":"2","activity":"8","material":[32,44],"gender":[80,81,84],"category_gear":"87","size":"95","slug":"sprite-yoga-strap-8-foot-34","links":{},"stock":{"item_id":34,"product_id":34,"stock_id":1,"qty":6,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-yoga-strap.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-yoga-strap-8-foot-34.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"48","_score":1,"_source":{"id":48,"sku":"240-LV06","name":"Yoga Adventure","attribute_set_id":14,"price":22,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:33","updated_at":"2019-03-22 09:14:31","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":15,"max_price":15,"max_regular_price":15,"minimal_regular_price":15,"special_price":"15.0000","minimal_price":15,"regular_price":22,"description":"

                Luma presents an innovative power vinyasa yoga class for intermediate and advanced practitioners. The video allows you to pace yourself, but more intense work yields longer rest. This class is great for more advanced students looking to learn proper alignment in their yoga practice.

                \r\n
                  \r\n
                • Includes a breakdown of 12 different postures.
                • \r\n
                • Chataranga Dandasana and prayer twist.
                • \r\n
                • Challenging posture (side crow).
                • \r\n
                • 55 minutes of movement.
                • \r\n
                ","short_description":"

                \r\nThe practices on this downloadable training video are recommended only for experienced to advanced students. Those with the fundamental skills needed won't want to miss the insight and advice from world-renowned trainer Erin Renny in these exclusive Luma guided yoga sessions. Complete body, arm balance and leg strength workouts engage, strengthen and increase mobility.\r\n

                ","special_from_date":"2019-03-22 00:00:00","image":"/l/t/lt03.jpg","small_image":"/l/t/lt03.jpg","thumbnail":"/l/t/lt03.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"yoga-adventure","msrp_display_actual_price_type":"0","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","gift_message_available":"0","tax_class_id":"2","activity":[8,16],"format":"102","slug":"yoga-adventure-48","links":{},"stock":{"item_id":48,"product_id":48,"stock_id":1,"qty":2,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/t/lt03.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":9,"name":"Training","slug":"training-9","path":"training/training-9"},{"category_id":10,"name":"Video Download","slug":"video-download-10","path":"training/training-video/video-download-10"}],"url_path":"training/training-9/yoga-adventure-48.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"47","_score":1,"_source":{"id":47,"sku":"240-LV05","name":"LifeLong Fitness IV","attribute_set_id":14,"price":14,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:33","updated_at":"2017-11-06 12:16:33","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":14,"max_price":14,"max_regular_price":14,"minimal_regular_price":14,"special_price":null,"minimal_price":14,"regular_price":14,"description":"

                Luma LifeLong Fitness Series is a world recognized, evidence based exercise program designed specifically for individuals focused on staying active their whole lives. If followed regularly, participants will see improved heart rate and blood pressure, increased mobility, reduced joint pain and overall improvement in functional fitness and health.\n

                  \n
                • 10 minute warm up.
                • \n
                • 30 minutes of mild aerobics.
                • \n
                • 20 minutes of strength, stretch and balance.
                • \n
                • Extensive modifications for varying fitness levels.
                • \n
                ","short_description":"

                \nThe instructors and routines featured in LifeLong Fitness IV provide safe options to serve all types of physical conditions and abilities. Range of motion, body awareness and breathing practices are essential tools of yogic self-care, essential for maintaining alertness, health, and dignity over a lifetime. The LifeLong Fitness series acknowledges that as we age, the safety and sustainability of our exercise become as important as pushing our limits.\n

                ","image":"/l/t/lt02.jpg","small_image":"/l/t/lt02.jpg","thumbnail":"/l/t/lt02.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lifelong-fitness-iv","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","tax_class_id":"2","activity":[16,17,5,11],"format":"102","slug":"lifelong-fitness-iv-47","links":{},"stock":{"item_id":47,"product_id":47,"stock_id":1,"qty":null,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/t/lt02.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":9,"name":"Training","slug":"training-9","path":"training/training-9"},{"category_id":10,"name":"Video Download","slug":"video-download-10","path":"training/training-video/video-download-10"}],"url_path":"training/training-9/lifelong-fitness-iv-47.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"49","_score":1,"_source":{"id":49,"sku":"240-LV07","name":"Solo Power Circuit","attribute_set_id":14,"price":14,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:33","updated_at":"2017-11-06 12:16:33","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":14,"max_price":14,"max_regular_price":14,"minimal_regular_price":14,"special_price":null,"minimal_price":14,"regular_price":14,"description":"

                Circuit training helps banish the boredom of traditional workouts. The Solo Power Circuit download lets you experience Luma's maximum efficiency circuit training in the training time you have available. Learn secrets to shed pounds, decrease body fat, sculpt amazing abs, and tone to reshape your entire body. You'll feel the difference after just one circuit.

                \n
                  \n
                • Targets abs, arms and legs.
                • \n
                • 6 fun interval training circuits.
                • \n
                • Easy to follow.
                • \n
                • No special equipment needed.
                • \n
                • 43 minutes.
                • \n
                ","short_description":"

                \nMany contemporary exercise trends sacrifice form and precision in favor of reps and \"PR\" goals. Luma's Solo Power Circuit teaches techniques to keep you safe. But don't think you'll get off easily: when it comes to building muscle and burning fat, these routines won't disappoint. A fusion of circuit training, yoga, Pilates and running, Solo Power Circuit brings out your sweatiest best.\n

                ","image":"/l/t/lt04.jpg","small_image":"/l/t/lt04.jpg","thumbnail":"/l/t/lt04.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"solo-power-circuit","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","tax_class_id":"2","activity":[16,17,11],"format":"102","slug":"solo-power-circuit-49","links":{},"stock":{"item_id":49,"product_id":49,"stock_id":1,"qty":null,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/t/lt04.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":9,"name":"Training","slug":"training-9","path":"training/training-9"},{"category_id":10,"name":"Video Download","slug":"video-download-10","path":"training/training-video/video-download-10"}],"url_path":"training/training-9/solo-power-circuit-49.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"44","_score":1,"_source":{"id":44,"sku":"24-WG02","name":"Didi Sport Watch","attribute_set_id":11,"price":92,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                The Didi Sport Watch helps you keep your workout plan down to the second. The vertical, digital face looks sleek and futuristic. This watch is programmed with tons of helpful features such as a timer, an alarm clock, a pedometer, and more to help make your excercise more productive.

                \n
                  \n
                • Digital display.
                • \n
                • LED backlight.
                • \n
                • Rubber strap with buckle clasp.
                • \n
                • 1-year limited warranty.
                • \n
                ","image":"/w/g/wg02-bk-0.jpg","small_image":"/w/g/wg02-bk-0.jpg","thumbnail":"/w/g/wg02-bk-0.jpg","category_ids":[3,7,6,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"didi-sport-watch","tax_class_id":"2","activity":[16,11],"material":[43,45,48],"gender":"81","category_gear":[86,87,90],"new":"1","slug":"didi-sport-watch-44","links":{},"stock":{"item_id":44,"product_id":44,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-02-07 19:23:59","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/g/wg02-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/gerat-3/didi-sport-watch-44.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"45","_score":1,"_source":{"id":45,"sku":"24-WG080","name":"Sprite Yoga Companion Kit","attribute_set_id":11,"price":0,"status":1,"visibility":4,"type_id":"bundle","created_at":"2017-11-06 12:16:31","updated_at":"2019-07-05 12:02:07","weight":0,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":133,"max_regular_price":133,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                A well-rounded yoga workout takes more than a mat. The Sprite Yoga Companion Kit helps stock your studio with the basics you need for a full-range workout. The kit is composed of four best-selling Luma Sprite accessories in one easy bundle: statis ball, foam block, yoga strap, and foam roller. Choose sizes and colors and leave the rest to us. The kit includes:

                \r\n
                  \r\n
                • Sprite Statis Ball\r\n
                • Sprite Foam Yoga Brick\r\n
                • Sprite Yoga Strap\r\n
                • Sprite Foam Roller\r\n
                ","image":"/l/u/luma-yoga-kit-2.jpg","small_image":"/l/u/luma-yoga-kit-2.jpg","thumbnail":"/l/u/luma-yoga-kit-2.jpg","category_ids":[3,5],"options_container":"container2","required_options":"1","has_options":"1","url_key":"sprite-yoga-companion-kit","msrp_display_actual_price_type":"0","price_type":"0","sku_type":"0","weight_type":"0","price_view":"0","shipment_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[8,11],"gender":[80,81,84],"category_gear":"87","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"sprite-yoga-companion-kit-45","links":{},"stock":{"item_id":45,"product_id":45,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-yoga-kit-2.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"bundle_options":[{"option_id":1,"title":"Sprite Stasis Ball","required":true,"type":"radio","position":1,"sku":"24-WG080","product_links":[{"id":"1","sku":"24-WG081-blue","option_id":1,"qty":2,"position":1,"is_default":true,"price":null,"price_type":null,"can_change_quantity":1},{"id":"2","sku":"24-WG082-blue","option_id":1,"qty":1,"position":2,"is_default":false,"price":null,"price_type":null,"can_change_quantity":1},{"id":"3","sku":"24-WG083-blue","option_id":1,"qty":1,"position":3,"is_default":false,"price":null,"price_type":null,"can_change_quantity":1}]},{"option_id":2,"title":"Sprite Foam Yoga Brick","required":true,"type":"radio","position":2,"sku":"24-WG080","product_links":[{"id":"4","sku":"24-WG084","option_id":2,"qty":1,"position":1,"is_default":true,"price":null,"price_type":null,"can_change_quantity":1}]},{"option_id":3,"title":"Sprite Yoga Strap","required":true,"type":"radio","position":3,"sku":"24-WG080","product_links":[{"id":"5","sku":"24-WG085","option_id":3,"qty":1,"position":1,"is_default":true,"price":null,"price_type":null,"can_change_quantity":1},{"id":"6","sku":"24-WG086","option_id":3,"qty":2,"position":2,"is_default":false,"price":null,"price_type":null,"can_change_quantity":1},{"id":"7","sku":"24-WG087","option_id":3,"qty":3,"position":3,"is_default":false,"price":null,"price_type":null,"can_change_quantity":1}]},{"option_id":4,"title":"Sprite Foam Roller","required":true,"type":"radio","position":4,"sku":"24-WG080","product_links":[{"id":"8","sku":"24-WG088","option_id":4,"qty":1,"position":1,"is_default":true,"price":null,"price_type":null,"can_change_quantity":1}]}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-yoga-companion-kit-45.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"137","_score":1,"_source":{"id":137,"sku":"MH06-S-Purple","name":"Stark Fundamental Hoodie-S-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                \n

                • Navy specked full zip hoodie.
                • Ribbed cuffs, banded waist.
                • Side pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stark-fundamental-hoodie-s-purple-137","links":{},"stock":{"item_id":137,"product_id":137,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-s-purple-137.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"133","_score":1,"_source":{"id":133,"sku":"MH06-XS-Blue","name":"Stark Fundamental Hoodie-XS-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                \n

                • Navy specked full zip hoodie.
                • Ribbed cuffs, banded waist.
                • Side pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"stark-fundamental-hoodie-xs-blue-133","links":{},"stock":{"item_id":133,"product_id":133,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xs-blue-133.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"144","_score":1,"_source":{"id":144,"sku":"MH06-XL-Black","name":"Stark Fundamental Hoodie-XL-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                \n

                • Navy specked full zip hoodie.
                • Ribbed cuffs, banded waist.
                • Side pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"stark-fundamental-hoodie-xl-black-144","links":{},"stock":{"item_id":144,"product_id":144,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xl-black-144.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"140","_score":1,"_source":{"id":140,"sku":"MH06-M-Purple","name":"Stark Fundamental Hoodie-M-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                \n

                • Navy specked full zip hoodie.
                • Ribbed cuffs, banded waist.
                • Side pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stark-fundamental-hoodie-m-purple-140","links":{},"stock":{"item_id":140,"product_id":140,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-m-purple-140.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"131","_score":1,"_source":{"id":131,"sku":"MH05","name":"Hollister Backyard Sweatshirt","attribute_set_id":9,"price":52,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                \n

                • Cream crewneck sweatshirt with navy sleeves/trim.
                • Relaxed fit.
                • Ribbed cuffs and hem.
                • Machine wash/dry.

                ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hollister-backyard-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,38,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"195","climate":"204","slug":"hollister-backyard-sweatshirt-131","links":{},"stock":{"item_id":131,"product_id":131,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH05-XS-Green","id":116,"status":1,"name":"Hollister Backyard Sweatshirt-XS-Green","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"53","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","url_key":"hollister-backyard-sweatshirt-xs-green","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-XS-Red","id":117,"status":1,"name":"Hollister Backyard Sweatshirt-XS-Red","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","url_key":"hollister-backyard-sweatshirt-xs-red","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-XS-White","id":118,"status":1,"name":"Hollister Backyard Sweatshirt-XS-White","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"59","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","url_key":"hollister-backyard-sweatshirt-xs-white","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-S-Green","id":119,"status":1,"name":"Hollister Backyard Sweatshirt-S-Green","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"53","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","url_key":"hollister-backyard-sweatshirt-s-green","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-S-Red","id":120,"status":1,"name":"Hollister Backyard Sweatshirt-S-Red","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","url_key":"hollister-backyard-sweatshirt-s-red","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-S-White","id":121,"status":1,"name":"Hollister Backyard Sweatshirt-S-White","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"59","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","url_key":"hollister-backyard-sweatshirt-s-white","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-M-Green","id":122,"status":1,"name":"Hollister Backyard Sweatshirt-M-Green","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"53","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","url_key":"hollister-backyard-sweatshirt-m-green","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-M-Red","id":123,"status":1,"name":"Hollister Backyard Sweatshirt-M-Red","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","url_key":"hollister-backyard-sweatshirt-m-red","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-M-White","id":124,"status":1,"name":"Hollister Backyard Sweatshirt-M-White","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"59","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","url_key":"hollister-backyard-sweatshirt-m-white","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-L-Green","id":125,"status":1,"name":"Hollister Backyard Sweatshirt-L-Green","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"53","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","url_key":"hollister-backyard-sweatshirt-l-green","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-L-Red","id":126,"status":1,"name":"Hollister Backyard Sweatshirt-L-Red","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","url_key":"hollister-backyard-sweatshirt-l-red","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-L-White","id":127,"status":1,"name":"Hollister Backyard Sweatshirt-L-White","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"59","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","url_key":"hollister-backyard-sweatshirt-l-white","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-XL-Green","id":128,"status":1,"name":"Hollister Backyard Sweatshirt-XL-Green","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"53","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","url_key":"hollister-backyard-sweatshirt-xl-green","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-XL-Red","id":129,"status":1,"name":"Hollister Backyard Sweatshirt-XL-Red","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","url_key":"hollister-backyard-sweatshirt-xl-red","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-XL-White","id":130,"status":1,"name":"Hollister Backyard Sweatshirt-XL-White","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"59","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","url_key":"hollister-backyard-sweatshirt-xl-white","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52}],"configurable_options":[{"id":11,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":131,"attribute_code":"color"},{"id":10,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":131,"attribute_code":"size"}],"color_options":[53,58,59],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-131.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"115","_score":1,"_source":{"id":115,"sku":"MH04","name":"Frankie Sweatshirt","attribute_set_id":9,"price":60,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                \n

                • Light green crewneck sweatshirt.
                • Hand pockets.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"frankie-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","pattern":"197","climate":[202,204,205,208,210],"slug":"frankie-sweatshirt-115","links":{},"stock":{"item_id":115,"product_id":115,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH04-XS-Green","id":100,"status":1,"name":"Frankie Sweatshirt-XS-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"53","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","url_key":"frankie-sweatshirt-xs-green","msrp_display_actual_price_type":"0"},{"sku":"MH04-XS-White","id":101,"status":1,"name":"Frankie Sweatshirt-XS-White","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"59","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","url_key":"frankie-sweatshirt-xs-white","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-XS-Yellow","id":102,"status":1,"name":"Frankie Sweatshirt-XS-Yellow","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"60","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","url_key":"frankie-sweatshirt-xs-yellow","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-S-Green","id":103,"status":1,"name":"Frankie Sweatshirt-S-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"53","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","url_key":"frankie-sweatshirt-s-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-S-White","id":104,"status":1,"name":"Frankie Sweatshirt-S-White","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"59","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","url_key":"frankie-sweatshirt-s-white","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-S-Yellow","id":105,"status":1,"name":"Frankie Sweatshirt-S-Yellow","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"60","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","url_key":"frankie-sweatshirt-s-yellow","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-M-Green","id":106,"status":1,"name":"Frankie Sweatshirt-M-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"53","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","url_key":"frankie-sweatshirt-m-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-M-White","id":107,"status":1,"name":"Frankie Sweatshirt-M-White","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"59","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","url_key":"frankie-sweatshirt-m-white","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-M-Yellow","id":108,"status":1,"name":"Frankie Sweatshirt-M-Yellow","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"60","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","url_key":"frankie-sweatshirt-m-yellow","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-L-Green","id":109,"status":1,"name":"Frankie Sweatshirt-L-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"53","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","url_key":"frankie-sweatshirt-l-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-L-White","id":110,"status":1,"name":"Frankie Sweatshirt-L-White","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"59","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","url_key":"frankie-sweatshirt-l-white","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-L-Yellow","id":111,"status":1,"name":"Frankie Sweatshirt-L-Yellow","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"60","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","url_key":"frankie-sweatshirt-l-yellow","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-XL-Green","id":112,"status":1,"name":"Frankie Sweatshirt-XL-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"53","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","url_key":"frankie-sweatshirt-xl-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-XL-White","id":113,"status":1,"name":"Frankie Sweatshirt-XL-White","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"59","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","url_key":"frankie-sweatshirt-xl-white","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-XL-Yellow","id":114,"status":1,"name":"Frankie Sweatshirt-XL-Yellow","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"60","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","url_key":"frankie-sweatshirt-xl-yellow","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60}],"configurable_options":[{"id":9,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":115,"attribute_code":"color"},{"id":8,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":115,"attribute_code":"size"}],"color_options":[53,59,60],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-115.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"164","_score":1,"_source":{"id":164,"sku":"MH08-XS-Brown","name":"Oslo Trek Hoodie-XS-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                \n

                • Brown hoodie with black detail.
                • Pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Machine wash/dry.

                ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xs-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"oslo-trek-hoodie-xs-brown-164","links":{},"stock":{"item_id":164,"product_id":164,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xs-brown-164.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"170","_score":1,"_source":{"id":170,"sku":"MH08-M-Brown","name":"Oslo Trek Hoodie-M-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                \n

                • Brown hoodie with black detail.
                • Pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Machine wash/dry.

                ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-m-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"oslo-trek-hoodie-m-brown-170","links":{},"stock":{"item_id":170,"product_id":170,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-m-brown-170.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"157","_score":1,"_source":{"id":157,"sku":"MH07-L-Black","name":"Hero Hoodie-L-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                \n

                • Full-zip gray and black hoodie.
                • Ribbed hem.
                • Standard fit.
                • Drawcord hood cinch.
                • Water-resistant coating.

                ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hero-hoodie-l-black-157","links":{},"stock":{"item_id":157,"product_id":157,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-l-black-157.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"172","_score":1,"_source":{"id":172,"sku":"MH08-M-Red","name":"Oslo Trek Hoodie-M-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2019-03-22 08:35:33","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":30,"max_price":30,"max_regular_price":30,"minimal_regular_price":30,"special_price":"30.0000","minimal_price":30,"regular_price":42,"description":"

                Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                \r\n

                • Brown hoodie with black detail.
                • Pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Machine wash/dry.

                ","special_from_date":"2019-03-22 08:35:33","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-m-red","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"169","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"oslo-trek-hoodie-m-red-172","links":{},"stock":{"item_id":172,"product_id":172,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-m-red-172.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"160","_score":1,"_source":{"id":160,"sku":"MH07-XL-Black","name":"Hero Hoodie-XL-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                \n

                • Full-zip gray and black hoodie.
                • Ribbed hem.
                • Standard fit.
                • Drawcord hood cinch.
                • Water-resistant coating.

                ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hero-hoodie-xl-black-160","links":{},"stock":{"item_id":160,"product_id":160,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xl-black-160.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"152","_score":1,"_source":{"id":152,"sku":"MH07-S-Gray","name":"Hero Hoodie-S-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                \n

                • Full-zip gray and black hoodie.
                • Ribbed hem.
                • Standard fit.
                • Drawcord hood cinch.
                • Water-resistant coating.

                ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hero-hoodie-s-gray-152","links":{},"stock":{"item_id":152,"product_id":152,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-s-gray-152.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"153","_score":1,"_source":{"id":153,"sku":"MH07-S-Green","name":"Hero Hoodie-S-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                \n

                • Full-zip gray and black hoodie.
                • Ribbed hem.
                • Standard fit.
                • Drawcord hood cinch.
                • Water-resistant coating.

                ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hero-hoodie-s-green-153","links":{},"stock":{"item_id":153,"product_id":153,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-s-green-153.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"159","_score":1,"_source":{"id":159,"sku":"MH07-L-Green","name":"Hero Hoodie-L-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                \n

                • Full-zip gray and black hoodie.
                • Ribbed hem.
                • Standard fit.
                • Drawcord hood cinch.
                • Water-resistant coating.

                ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hero-hoodie-l-green-159","links":{},"stock":{"item_id":159,"product_id":159,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-l-green-159.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"155","_score":1,"_source":{"id":155,"sku":"MH07-M-Gray","name":"Hero Hoodie-M-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                \n

                • Full-zip gray and black hoodie.
                • Ribbed hem.
                • Standard fit.
                • Drawcord hood cinch.
                • Water-resistant coating.

                ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hero-hoodie-m-gray-155","links":{},"stock":{"item_id":155,"product_id":155,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-m-gray-155.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"151","_score":1,"_source":{"id":151,"sku":"MH07-S-Black","name":"Hero Hoodie-S-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                \n

                • Full-zip gray and black hoodie.
                • Ribbed hem.
                • Standard fit.
                • Drawcord hood cinch.
                • Water-resistant coating.

                ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hero-hoodie-s-black-151","links":{},"stock":{"item_id":151,"product_id":151,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-s-black-151.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"161","_score":1,"_source":{"id":161,"sku":"MH07-XL-Gray","name":"Hero Hoodie-XL-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                \n

                • Full-zip gray and black hoodie.
                • Ribbed hem.
                • Standard fit.
                • Drawcord hood cinch.
                • Water-resistant coating.

                ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hero-hoodie-xl-gray-161","links":{},"stock":{"item_id":161,"product_id":161,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xl-gray-161.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"156","_score":1,"_source":{"id":156,"sku":"MH07-M-Green","name":"Hero Hoodie-M-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                \n

                • Full-zip gray and black hoodie.
                • Ribbed hem.
                • Standard fit.
                • Drawcord hood cinch.
                • Water-resistant coating.

                ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hero-hoodie-m-green-156","links":{},"stock":{"item_id":156,"product_id":156,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-m-green-156.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"158","_score":1,"_source":{"id":158,"sku":"MH07-L-Gray","name":"Hero Hoodie-L-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                \n

                • Full-zip gray and black hoodie.
                • Ribbed hem.
                • Standard fit.
                • Drawcord hood cinch.
                • Water-resistant coating.

                ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hero-hoodie-l-gray-158","links":{},"stock":{"item_id":158,"product_id":158,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-l-gray-158.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"162","_score":1,"_source":{"id":162,"sku":"MH07-XL-Green","name":"Hero Hoodie-XL-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                \n

                • Full-zip gray and black hoodie.
                • Ribbed hem.
                • Standard fit.
                • Drawcord hood cinch.
                • Water-resistant coating.

                ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hero-hoodie-xl-green-162","links":{},"stock":{"item_id":162,"product_id":162,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xl-green-162.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"175","_score":1,"_source":{"id":175,"sku":"MH08-L-Red","name":"Oslo Trek Hoodie-L-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                \n

                • Brown hoodie with black detail.
                • Pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Machine wash/dry.

                ","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"oslo-trek-hoodie-l-red-175","links":{},"stock":{"item_id":175,"product_id":175,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-l-red-175.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"185","_score":1,"_source":{"id":185,"sku":"MH09-S-Red","name":"Abominable Hoodie-S-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                \n

                • Blue heather hoodie.
                • Relaxed fit.
                • Moisture-wicking.
                • Machine wash/dry.

                ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"abominable-hoodie-s-red-185","links":{},"stock":{"item_id":185,"product_id":185,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-s-red-185.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"196","_score":1,"_source":{"id":196,"sku":"MH10-XS-Black","name":"Mach Street Sweatshirt -XS-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                \n

                • Navy heather crewneck sweatshirt.
                • LumaTech™ moisture-wicking fabric.
                • Antimicrobial, odor-resistant.
                • Zip hand pockets.
                • Chafe-resistant flatlock seams.
                • Rib-knit cuffs and hem.

                ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mach-street-sweatshirt-xs-black-196","links":{},"stock":{"item_id":196,"product_id":196,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xs-black-196.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"147","_score":1,"_source":{"id":147,"sku":"MH06","name":"Stark Fundamental Hoodie","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                \n

                • Navy specked full zip hoodie.
                • Ribbed cuffs, banded waist.
                • Side pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"stark-fundamental-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,38,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"197","climate":[202,204,205,208],"slug":"stark-fundamental-hoodie-147","links":{},"stock":{"item_id":147,"product_id":147,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH06-XS-Black","id":132,"status":1,"name":"Stark Fundamental Hoodie-XS-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"49","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","url_key":"stark-fundamental-hoodie-xs-black","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-XS-Blue","id":133,"status":1,"name":"Stark Fundamental Hoodie-XS-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"50","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","url_key":"stark-fundamental-hoodie-xs-blue","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-XS-Purple","id":134,"status":1,"name":"Stark Fundamental Hoodie-XS-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"57","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","url_key":"stark-fundamental-hoodie-xs-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-S-Black","id":135,"status":1,"name":"Stark Fundamental Hoodie-S-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"49","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","url_key":"stark-fundamental-hoodie-s-black","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-S-Blue","id":136,"status":1,"name":"Stark Fundamental Hoodie-S-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"50","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","url_key":"stark-fundamental-hoodie-s-blue","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-S-Purple","id":137,"status":1,"name":"Stark Fundamental Hoodie-S-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"57","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","url_key":"stark-fundamental-hoodie-s-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-M-Black","id":138,"status":1,"name":"Stark Fundamental Hoodie-M-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"49","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","url_key":"stark-fundamental-hoodie-m-black","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-M-Blue","id":139,"status":1,"name":"Stark Fundamental Hoodie-M-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"50","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","url_key":"stark-fundamental-hoodie-m-blue","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-M-Purple","id":140,"status":1,"name":"Stark Fundamental Hoodie-M-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"57","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","url_key":"stark-fundamental-hoodie-m-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-L-Black","id":141,"status":1,"name":"Stark Fundamental Hoodie-L-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"49","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","url_key":"stark-fundamental-hoodie-l-black","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-L-Blue","id":142,"status":1,"name":"Stark Fundamental Hoodie-L-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"50","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","url_key":"stark-fundamental-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-L-Purple","id":143,"status":1,"name":"Stark Fundamental Hoodie-L-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"57","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","url_key":"stark-fundamental-hoodie-l-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-XL-Black","id":144,"status":1,"name":"Stark Fundamental Hoodie-XL-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"49","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","url_key":"stark-fundamental-hoodie-xl-black","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-XL-Blue","id":145,"status":1,"name":"Stark Fundamental Hoodie-XL-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"50","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","url_key":"stark-fundamental-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-XL-Purple","id":146,"status":1,"name":"Stark Fundamental Hoodie-XL-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"57","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","url_key":"stark-fundamental-hoodie-xl-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42}],"configurable_options":[{"id":13,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":147,"attribute_code":"color"},{"id":12,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":147,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-147.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"125","_score":1,"_source":{"id":125,"sku":"MH05-L-Green","name":"Hollister Backyard Sweatshirt-L-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                \n

                • Cream crewneck sweatshirt with navy sleeves/trim.
                • Relaxed fit.
                • Ribbed cuffs and hem.
                • Machine wash/dry.

                ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hollister-backyard-sweatshirt-l-green-125","links":{},"stock":{"item_id":125,"product_id":125,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-l-green-125.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"124","_score":1,"_source":{"id":124,"sku":"MH05-M-White","name":"Hollister Backyard Sweatshirt-M-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                \n

                • Cream crewneck sweatshirt with navy sleeves/trim.
                • Relaxed fit.
                • Ribbed cuffs and hem.
                • Machine wash/dry.

                ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hollister-backyard-sweatshirt-m-white-124","links":{},"stock":{"item_id":124,"product_id":124,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-m-white-124.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"126","_score":1,"_source":{"id":126,"sku":"MH05-L-Red","name":"Hollister Backyard Sweatshirt-L-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                \n

                • Cream crewneck sweatshirt with navy sleeves/trim.
                • Relaxed fit.
                • Ribbed cuffs and hem.
                • Machine wash/dry.

                ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hollister-backyard-sweatshirt-l-red-126","links":{},"stock":{"item_id":126,"product_id":126,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-l-red-126.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"134","_score":1,"_source":{"id":134,"sku":"MH06-XS-Purple","name":"Stark Fundamental Hoodie-XS-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                \n

                • Navy specked full zip hoodie.
                • Ribbed cuffs, banded waist.
                • Side pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"stark-fundamental-hoodie-xs-purple-134","links":{},"stock":{"item_id":134,"product_id":134,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xs-purple-134.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"135","_score":1,"_source":{"id":135,"sku":"MH06-S-Black","name":"Stark Fundamental Hoodie-S-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                \n

                • Navy specked full zip hoodie.
                • Ribbed cuffs, banded waist.
                • Side pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stark-fundamental-hoodie-s-black-135","links":{},"stock":{"item_id":135,"product_id":135,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-s-black-135.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"141","_score":1,"_source":{"id":141,"sku":"MH06-L-Black","name":"Stark Fundamental Hoodie-L-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                \n

                • Navy specked full zip hoodie.
                • Ribbed cuffs, banded waist.
                • Side pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stark-fundamental-hoodie-l-black-141","links":{},"stock":{"item_id":141,"product_id":141,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-l-black-141.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"149","_score":1,"_source":{"id":149,"sku":"MH07-XS-Gray","name":"Hero Hoodie-XS-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                \n

                • Full-zip gray and black hoodie.
                • Ribbed hem.
                • Standard fit.
                • Drawcord hood cinch.
                • Water-resistant coating.

                ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hero-hoodie-xs-gray-149","links":{},"stock":{"item_id":149,"product_id":149,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xs-gray-149.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"142","_score":1,"_source":{"id":142,"sku":"MH06-L-Blue","name":"Stark Fundamental Hoodie-L-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                \n

                • Navy specked full zip hoodie.
                • Ribbed cuffs, banded waist.
                • Side pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stark-fundamental-hoodie-l-blue-142","links":{},"stock":{"item_id":142,"product_id":142,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-l-blue-142.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"136","_score":1,"_source":{"id":136,"sku":"MH06-S-Blue","name":"Stark Fundamental Hoodie-S-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                \n

                • Navy specked full zip hoodie.
                • Ribbed cuffs, banded waist.
                • Side pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stark-fundamental-hoodie-s-blue-136","links":{},"stock":{"item_id":136,"product_id":136,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-s-blue-136.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"145","_score":1,"_source":{"id":145,"sku":"MH06-XL-Blue","name":"Stark Fundamental Hoodie-XL-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                \n

                • Navy specked full zip hoodie.
                • Ribbed cuffs, banded waist.
                • Side pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"stark-fundamental-hoodie-xl-blue-145","links":{},"stock":{"item_id":145,"product_id":145,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xl-blue-145.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"143","_score":1,"_source":{"id":143,"sku":"MH06-L-Purple","name":"Stark Fundamental Hoodie-L-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                \n

                • Navy specked full zip hoodie.
                • Ribbed cuffs, banded waist.
                • Side pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stark-fundamental-hoodie-l-purple-143","links":{},"stock":{"item_id":143,"product_id":143,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-l-purple-143.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"150","_score":1,"_source":{"id":150,"sku":"MH07-XS-Green","name":"Hero Hoodie-XS-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                \n

                • Full-zip gray and black hoodie.
                • Ribbed hem.
                • Standard fit.
                • Drawcord hood cinch.
                • Water-resistant coating.

                ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hero-hoodie-xs-green-150","links":{},"stock":{"item_id":150,"product_id":150,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xs-green-150.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"146","_score":1,"_source":{"id":146,"sku":"MH06-XL-Purple","name":"Stark Fundamental Hoodie-XL-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                \n

                • Navy specked full zip hoodie.
                • Ribbed cuffs, banded waist.
                • Side pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"stark-fundamental-hoodie-xl-purple-146","links":{},"stock":{"item_id":146,"product_id":146,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xl-purple-146.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"139","_score":1,"_source":{"id":139,"sku":"MH06-M-Blue","name":"Stark Fundamental Hoodie-M-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                \n

                • Navy specked full zip hoodie.
                • Ribbed cuffs, banded waist.
                • Side pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stark-fundamental-hoodie-m-blue-139","links":{},"stock":{"item_id":139,"product_id":139,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-m-blue-139.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"130","_score":1,"_source":{"id":130,"sku":"MH05-XL-White","name":"Hollister Backyard Sweatshirt-XL-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                \n

                • Cream crewneck sweatshirt with navy sleeves/trim.
                • Relaxed fit.
                • Ribbed cuffs and hem.
                • Machine wash/dry.

                ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hollister-backyard-sweatshirt-xl-white-130","links":{},"stock":{"item_id":130,"product_id":130,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xl-white-130.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"138","_score":1,"_source":{"id":138,"sku":"MH06-M-Black","name":"Stark Fundamental Hoodie-M-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                \n

                • Navy specked full zip hoodie.
                • Ribbed cuffs, banded waist.
                • Side pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stark-fundamental-hoodie-m-black-138","links":{},"stock":{"item_id":138,"product_id":138,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-m-black-138.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"120","_score":1,"_source":{"id":120,"sku":"MH05-S-Red","name":"Hollister Backyard Sweatshirt-S-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                \n

                • Cream crewneck sweatshirt with navy sleeves/trim.
                • Relaxed fit.
                • Ribbed cuffs and hem.
                • Machine wash/dry.

                ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hollister-backyard-sweatshirt-s-red-120","links":{},"stock":{"item_id":120,"product_id":120,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-s-red-120.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"122","_score":1,"_source":{"id":122,"sku":"MH05-M-Green","name":"Hollister Backyard Sweatshirt-M-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                \n

                • Cream crewneck sweatshirt with navy sleeves/trim.
                • Relaxed fit.
                • Ribbed cuffs and hem.
                • Machine wash/dry.

                ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hollister-backyard-sweatshirt-m-green-122","links":{},"stock":{"item_id":122,"product_id":122,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-m-green-122.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"118","_score":1,"_source":{"id":118,"sku":"MH05-XS-White","name":"Hollister Backyard Sweatshirt-XS-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                \n

                • Cream crewneck sweatshirt with navy sleeves/trim.
                • Relaxed fit.
                • Ribbed cuffs and hem.
                • Machine wash/dry.

                ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hollister-backyard-sweatshirt-xs-white-118","links":{},"stock":{"item_id":118,"product_id":118,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xs-white-118.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"128","_score":1,"_source":{"id":128,"sku":"MH05-XL-Green","name":"Hollister Backyard Sweatshirt-XL-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                \n

                • Cream crewneck sweatshirt with navy sleeves/trim.
                • Relaxed fit.
                • Ribbed cuffs and hem.
                • Machine wash/dry.

                ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hollister-backyard-sweatshirt-xl-green-128","links":{},"stock":{"item_id":128,"product_id":128,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xl-green-128.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"129","_score":1,"_source":{"id":129,"sku":"MH05-XL-Red","name":"Hollister Backyard Sweatshirt-XL-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                \n

                • Cream crewneck sweatshirt with navy sleeves/trim.
                • Relaxed fit.
                • Ribbed cuffs and hem.
                • Machine wash/dry.

                ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hollister-backyard-sweatshirt-xl-red-129","links":{},"stock":{"item_id":129,"product_id":129,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xl-red-129.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"117","_score":1,"_source":{"id":117,"sku":"MH05-XS-Red","name":"Hollister Backyard Sweatshirt-XS-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                \n

                • Cream crewneck sweatshirt with navy sleeves/trim.
                • Relaxed fit.
                • Ribbed cuffs and hem.
                • Machine wash/dry.

                ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hollister-backyard-sweatshirt-xs-red-117","links":{},"stock":{"item_id":117,"product_id":117,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xs-red-117.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"121","_score":1,"_source":{"id":121,"sku":"MH05-S-White","name":"Hollister Backyard Sweatshirt-S-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                \n

                • Cream crewneck sweatshirt with navy sleeves/trim.
                • Relaxed fit.
                • Ribbed cuffs and hem.
                • Machine wash/dry.

                ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hollister-backyard-sweatshirt-s-white-121","links":{},"stock":{"item_id":121,"product_id":121,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-s-white-121.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"132","_score":1,"_source":{"id":132,"sku":"MH06-XS-Black","name":"Stark Fundamental Hoodie-XS-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                \n

                • Navy specked full zip hoodie.
                • Ribbed cuffs, banded waist.
                • Side pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"stark-fundamental-hoodie-xs-black-132","links":{},"stock":{"item_id":132,"product_id":132,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xs-black-132.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"148","_score":1,"_source":{"id":148,"sku":"MH07-XS-Black","name":"Hero Hoodie-XS-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                \n

                • Full-zip gray and black hoodie.
                • Ribbed hem.
                • Standard fit.
                • Drawcord hood cinch.
                • Water-resistant coating.

                ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hero-hoodie-xs-black-148","links":{},"stock":{"item_id":148,"product_id":148,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xs-black-148.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"102","_score":1,"_source":{"id":102,"sku":"MH04-XS-Yellow","name":"Frankie Sweatshirt-XS-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                \n

                • Light green crewneck sweatshirt.
                • Hand pockets.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"frankie-sweatshirt-xs-yellow-102","links":{},"stock":{"item_id":102,"product_id":102,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xs-yellow-102.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"104","_score":1,"_source":{"id":104,"sku":"MH04-S-White","name":"Frankie Sweatshirt-S-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                \n

                • Light green crewneck sweatshirt.
                • Hand pockets.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"frankie-sweatshirt-s-white-104","links":{},"stock":{"item_id":104,"product_id":104,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-s-white-104.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"101","_score":1,"_source":{"id":101,"sku":"MH04-XS-White","name":"Frankie Sweatshirt-XS-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                \n

                • Light green crewneck sweatshirt.
                • Hand pockets.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"frankie-sweatshirt-xs-white-101","links":{},"stock":{"item_id":101,"product_id":101,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xs-white-101.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"103","_score":1,"_source":{"id":103,"sku":"MH04-S-Green","name":"Frankie Sweatshirt-S-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                \n

                • Light green crewneck sweatshirt.
                • Hand pockets.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"frankie-sweatshirt-s-green-103","links":{},"stock":{"item_id":103,"product_id":103,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-s-green-103.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"109","_score":1,"_source":{"id":109,"sku":"MH04-L-Green","name":"Frankie Sweatshirt-L-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                \n

                • Light green crewneck sweatshirt.
                • Hand pockets.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"frankie-sweatshirt-l-green-109","links":{},"stock":{"item_id":109,"product_id":109,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-l-green-109.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"105","_score":1,"_source":{"id":105,"sku":"MH04-S-Yellow","name":"Frankie Sweatshirt-S-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                \n

                • Light green crewneck sweatshirt.
                • Hand pockets.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"frankie-sweatshirt-s-yellow-105","links":{},"stock":{"item_id":105,"product_id":105,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-s-yellow-105.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"106","_score":1,"_source":{"id":106,"sku":"MH04-M-Green","name":"Frankie Sweatshirt-M-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                \n

                • Light green crewneck sweatshirt.
                • Hand pockets.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"frankie-sweatshirt-m-green-106","links":{},"stock":{"item_id":106,"product_id":106,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-m-green-106.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"123","_score":1,"_source":{"id":123,"sku":"MH05-M-Red","name":"Hollister Backyard Sweatshirt-M-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                \n

                • Cream crewneck sweatshirt with navy sleeves/trim.
                • Relaxed fit.
                • Ribbed cuffs and hem.
                • Machine wash/dry.

                ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hollister-backyard-sweatshirt-m-red-123","links":{},"stock":{"item_id":123,"product_id":123,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-m-red-123.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"116","_score":1,"_source":{"id":116,"sku":"MH05-XS-Green","name":"Hollister Backyard Sweatshirt-XS-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                \n

                • Cream crewneck sweatshirt with navy sleeves/trim.
                • Relaxed fit.
                • Ribbed cuffs and hem.
                • Machine wash/dry.

                ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hollister-backyard-sweatshirt-xs-green-116","links":{},"stock":{"item_id":116,"product_id":116,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xs-green-116.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"114","_score":1,"_source":{"id":114,"sku":"MH04-XL-Yellow","name":"Frankie Sweatshirt-XL-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                \n

                • Light green crewneck sweatshirt.
                • Hand pockets.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"frankie-sweatshirt-xl-yellow-114","links":{},"stock":{"item_id":114,"product_id":114,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xl-yellow-114.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"107","_score":1,"_source":{"id":107,"sku":"MH04-M-White","name":"Frankie Sweatshirt-M-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                \n

                • Light green crewneck sweatshirt.
                • Hand pockets.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"frankie-sweatshirt-m-white-107","links":{},"stock":{"item_id":107,"product_id":107,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-m-white-107.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"113","_score":1,"_source":{"id":113,"sku":"MH04-XL-White","name":"Frankie Sweatshirt-XL-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                \n

                • Light green crewneck sweatshirt.
                • Hand pockets.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"frankie-sweatshirt-xl-white-113","links":{},"stock":{"item_id":113,"product_id":113,"stock_id":1,"qty":73,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xl-white-113.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"111","_score":1,"_source":{"id":111,"sku":"MH04-L-Yellow","name":"Frankie Sweatshirt-L-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                \n

                • Light green crewneck sweatshirt.
                • Hand pockets.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"frankie-sweatshirt-l-yellow-111","links":{},"stock":{"item_id":111,"product_id":111,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-l-yellow-111.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"110","_score":1,"_source":{"id":110,"sku":"MH04-L-White","name":"Frankie Sweatshirt-L-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                \n

                • Light green crewneck sweatshirt.
                • Hand pockets.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"frankie-sweatshirt-l-white-110","links":{},"stock":{"item_id":110,"product_id":110,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-l-white-110.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"112","_score":1,"_source":{"id":112,"sku":"MH04-XL-Green","name":"Frankie Sweatshirt-XL-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                \n

                • Light green crewneck sweatshirt.
                • Hand pockets.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"frankie-sweatshirt-xl-green-112","links":{},"stock":{"item_id":112,"product_id":112,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xl-green-112.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"108","_score":1,"_source":{"id":108,"sku":"MH04-M-Yellow","name":"Frankie Sweatshirt-M-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                \n

                • Light green crewneck sweatshirt.
                • Hand pockets.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"frankie-sweatshirt-m-yellow-108","links":{},"stock":{"item_id":108,"product_id":108,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-m-yellow-108.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"127","_score":1,"_source":{"id":127,"sku":"MH05-L-White","name":"Hollister Backyard Sweatshirt-L-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                \n

                • Cream crewneck sweatshirt with navy sleeves/trim.
                • Relaxed fit.
                • Ribbed cuffs and hem.
                • Machine wash/dry.

                ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hollister-backyard-sweatshirt-l-white-127","links":{},"stock":{"item_id":127,"product_id":127,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-l-white-127.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"167","_score":1,"_source":{"id":167,"sku":"MH08-S-Brown","name":"Oslo Trek Hoodie-S-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                \n

                • Brown hoodie with black detail.
                • Pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Machine wash/dry.

                ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-s-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"oslo-trek-hoodie-s-brown-167","links":{},"stock":{"item_id":167,"product_id":167,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-s-brown-167.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"154","_score":1,"_source":{"id":154,"sku":"MH07-M-Black","name":"Hero Hoodie-M-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                \n

                • Full-zip gray and black hoodie.
                • Ribbed hem.
                • Standard fit.
                • Drawcord hood cinch.
                • Water-resistant coating.

                ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hero-hoodie-m-black-154","links":{},"stock":{"item_id":154,"product_id":154,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-m-black-154.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"189","_score":1,"_source":{"id":189,"sku":"MH09-L-Blue","name":"Abominable Hoodie-L-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                \n

                • Blue heather hoodie.
                • Relaxed fit.
                • Moisture-wicking.
                • Machine wash/dry.

                ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"abominable-hoodie-l-blue-189","links":{},"stock":{"item_id":189,"product_id":189,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-l-blue-189.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"184","_score":1,"_source":{"id":184,"sku":"MH09-S-Green","name":"Abominable Hoodie-S-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                \n

                • Blue heather hoodie.
                • Relaxed fit.
                • Moisture-wicking.
                • Machine wash/dry.

                ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"abominable-hoodie-s-green-184","links":{},"stock":{"item_id":184,"product_id":184,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-s-green-184.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"119","_score":1,"_source":{"id":119,"sku":"MH05-S-Green","name":"Hollister Backyard Sweatshirt-S-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                \n

                • Cream crewneck sweatshirt with navy sleeves/trim.
                • Relaxed fit.
                • Ribbed cuffs and hem.
                • Machine wash/dry.

                ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hollister-backyard-sweatshirt-s-green-119","links":{},"stock":{"item_id":119,"product_id":119,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-s-green-119.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"349","_score":1,"_source":{"id":349,"sku":"MJ09-L-Blue","name":"Taurus Elements Shell-L-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                \n

                • Yellow 1/4 zip pullover.
                • Two chest pockets.
                • Standard fit.
                • Waterproof, breathable, seam sealed.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"taurus-elements-shell-l-blue-349","links":{},"stock":{"item_id":349,"product_id":349,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-l-blue-349.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"350","_score":1,"_source":{"id":350,"sku":"MJ09-L-White","name":"Taurus Elements Shell-L-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                \n

                • Yellow 1/4 zip pullover.
                • Two chest pockets.
                • Standard fit.
                • Waterproof, breathable, seam sealed.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"taurus-elements-shell-l-white-350","links":{},"stock":{"item_id":350,"product_id":350,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-l-white-350.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"344","_score":1,"_source":{"id":344,"sku":"MJ09-S-White","name":"Taurus Elements Shell-S-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                \n

                • Yellow 1/4 zip pullover.
                • Two chest pockets.
                • Standard fit.
                • Waterproof, breathable, seam sealed.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"taurus-elements-shell-s-white-344","links":{},"stock":{"item_id":344,"product_id":344,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-s-white-344.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"307","_score":1,"_source":{"id":307,"sku":"MJ04","name":"Kenobi Trail Jacket","attribute_set_id":9,"price":47,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                \n

                • Black 1/4 zip pullover with royal zipper.
                • Adjustable hood and sleeve cuffs.
                • Machine wash/air dry.

                ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"kenobi-trail-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,145,37],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[117,125,128],"pattern":"197","climate":[203,204,208,210,211],"slug":"kenobi-trail-jacket-307","links":{},"stock":{"item_id":307,"product_id":307,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ04-XS-Black","id":292,"status":1,"name":"Kenobi Trail Jacket-XS-Black","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"167","color":"49","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","url_key":"kenobi-trail-jacket-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MJ04-XS-Blue","id":293,"status":1,"name":"Kenobi Trail Jacket-XS-Blue","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"167","color":"50","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","url_key":"kenobi-trail-jacket-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ04-XS-Purple","id":294,"status":1,"name":"Kenobi Trail Jacket-XS-Purple","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"167","color":"57","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","url_key":"kenobi-trail-jacket-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ04-S-Black","id":295,"status":1,"name":"Kenobi Trail Jacket-S-Black","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"168","color":"49","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","url_key":"kenobi-trail-jacket-s-black","msrp_display_actual_price_type":"0"},{"sku":"MJ04-S-Blue","id":296,"status":1,"name":"Kenobi Trail Jacket-S-Blue","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"168","color":"50","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","url_key":"kenobi-trail-jacket-s-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ04-S-Purple","id":297,"status":1,"name":"Kenobi Trail Jacket-S-Purple","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"168","color":"57","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","url_key":"kenobi-trail-jacket-s-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ04-M-Black","id":298,"status":1,"name":"Kenobi Trail Jacket-M-Black","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"169","color":"49","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","url_key":"kenobi-trail-jacket-m-black","msrp_display_actual_price_type":"0"},{"sku":"MJ04-M-Blue","id":299,"status":1,"name":"Kenobi Trail Jacket-M-Blue","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"169","color":"50","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","url_key":"kenobi-trail-jacket-m-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ04-M-Purple","id":300,"status":1,"name":"Kenobi Trail Jacket-M-Purple","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"169","color":"57","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","url_key":"kenobi-trail-jacket-m-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ04-L-Black","id":301,"status":1,"name":"Kenobi Trail Jacket-L-Black","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"170","color":"49","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","url_key":"kenobi-trail-jacket-l-black","msrp_display_actual_price_type":"0","final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47},{"sku":"MJ04-L-Blue","id":302,"status":1,"name":"Kenobi Trail Jacket-L-Blue","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"170","color":"50","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","url_key":"kenobi-trail-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47},{"sku":"MJ04-L-Purple","id":303,"status":1,"name":"Kenobi Trail Jacket-L-Purple","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"170","color":"57","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","url_key":"kenobi-trail-jacket-l-purple","msrp_display_actual_price_type":"0","final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47},{"sku":"MJ04-XL-Black","id":304,"status":1,"name":"Kenobi Trail Jacket-XL-Black","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"171","color":"49","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","url_key":"kenobi-trail-jacket-xl-black","msrp_display_actual_price_type":"0","final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47},{"sku":"MJ04-XL-Blue","id":305,"status":1,"name":"Kenobi Trail Jacket-XL-Blue","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"171","color":"50","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","url_key":"kenobi-trail-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47},{"sku":"MJ04-XL-Purple","id":306,"status":1,"name":"Kenobi Trail Jacket-XL-Purple","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"171","color":"57","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","url_key":"kenobi-trail-jacket-xl-purple","msrp_display_actual_price_type":"0","final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47}],"configurable_options":[{"id":33,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":307,"attribute_code":"color"},{"id":32,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":307,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-307.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"323","_score":1,"_source":{"id":323,"sku":"MJ07","name":"Orion Two-Tone Fitted Jacket","attribute_set_id":9,"price":72,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                \n

                • Red full zip fleece with gray insets.
                • Double-knit construction.
                • Full athletic cut.
                • Set in sleeves.
                • Front pouch pocket.

                ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"orion-two-tone-fitted-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[120,121,123,125,129],"pattern":"197","climate":[202,204,207,208,210],"slug":"orion-two-tone-fitted-jacket-323","links":{},"stock":{"item_id":323,"product_id":323,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ07-XS-Black","id":308,"status":1,"name":"Orion Two-Tone Fitted Jacket-XS-Black","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"49","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","url_key":"orion-two-tone-fitted-jacket-xs-black","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-XS-Red","id":309,"status":1,"name":"Orion Two-Tone Fitted Jacket-XS-Red","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"58","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","url_key":"orion-two-tone-fitted-jacket-xs-red","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-XS-Yellow","id":310,"status":1,"name":"Orion Two-Tone Fitted Jacket-XS-Yellow","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"60","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","url_key":"orion-two-tone-fitted-jacket-xs-yellow","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-S-Black","id":311,"status":1,"name":"Orion Two-Tone Fitted Jacket-S-Black","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"49","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","url_key":"orion-two-tone-fitted-jacket-s-black","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-S-Red","id":312,"status":1,"name":"Orion Two-Tone Fitted Jacket-S-Red","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"58","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","url_key":"orion-two-tone-fitted-jacket-s-red","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-S-Yellow","id":313,"status":1,"name":"Orion Two-Tone Fitted Jacket-S-Yellow","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"60","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","url_key":"orion-two-tone-fitted-jacket-s-yellow","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-M-Black","id":314,"status":1,"name":"Orion Two-Tone Fitted Jacket-M-Black","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"49","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","url_key":"orion-two-tone-fitted-jacket-m-black","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-M-Red","id":315,"status":1,"name":"Orion Two-Tone Fitted Jacket-M-Red","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"58","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","url_key":"orion-two-tone-fitted-jacket-m-red","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-M-Yellow","id":316,"status":1,"name":"Orion Two-Tone Fitted Jacket-M-Yellow","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"60","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","url_key":"orion-two-tone-fitted-jacket-m-yellow","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-L-Black","id":317,"status":1,"name":"Orion Two-Tone Fitted Jacket-L-Black","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"49","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","url_key":"orion-two-tone-fitted-jacket-l-black","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-L-Red","id":318,"status":1,"name":"Orion Two-Tone Fitted Jacket-L-Red","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"58","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","url_key":"orion-two-tone-fitted-jacket-l-red","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-L-Yellow","id":319,"status":1,"name":"Orion Two-Tone Fitted Jacket-L-Yellow","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"60","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","url_key":"orion-two-tone-fitted-jacket-l-yellow","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-XL-Black","id":320,"status":1,"name":"Orion Two-Tone Fitted Jacket-XL-Black","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"49","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","url_key":"orion-two-tone-fitted-jacket-xl-black","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-XL-Red","id":321,"status":1,"name":"Orion Two-Tone Fitted Jacket-XL-Red","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"58","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","url_key":"orion-two-tone-fitted-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-XL-Yellow","id":322,"status":1,"name":"Orion Two-Tone Fitted Jacket-XL-Yellow","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"60","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","url_key":"orion-two-tone-fitted-jacket-xl-yellow","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72}],"configurable_options":[{"id":35,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":323,"attribute_code":"color"},{"id":34,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":323,"attribute_code":"size"}],"color_options":[49,58,60],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-323.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"339","_score":1,"_source":{"id":339,"sku":"MJ08","name":"Lando Gym Jacket","attribute_set_id":9,"price":99,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                \n

                • Gray polyester/spandex full zip jacket with orange lining.
                • Right pocket device storage.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"lando-gym-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[151,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[125,128,129],"pattern":"197","climate":[203,204,210,211],"slug":"lando-gym-jacket-339","links":{},"stock":{"item_id":339,"product_id":339,"stock_id":1,"qty":10,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ08-XS-Blue","id":324,"status":1,"name":"Lando Gym Jacket-XS-Blue","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"50","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","url_key":"lando-gym-jacket-xs-blue","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-XS-Gray","id":325,"status":1,"name":"Lando Gym Jacket-XS-Gray","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"52","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","url_key":"lando-gym-jacket-xs-gray","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-XS-Green","id":326,"status":1,"name":"Lando Gym Jacket-XS-Green","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"53","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","url_key":"lando-gym-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-S-Blue","id":327,"status":1,"name":"Lando Gym Jacket-S-Blue","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"50","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","url_key":"lando-gym-jacket-s-blue","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-S-Gray","id":328,"status":1,"name":"Lando Gym Jacket-S-Gray","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"52","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","url_key":"lando-gym-jacket-s-gray","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-S-Green","id":329,"status":1,"name":"Lando Gym Jacket-S-Green","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"53","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","url_key":"lando-gym-jacket-s-green","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-M-Blue","id":330,"status":1,"name":"Lando Gym Jacket-M-Blue","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"50","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","url_key":"lando-gym-jacket-m-blue","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-M-Gray","id":331,"status":1,"name":"Lando Gym Jacket-M-Gray","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"52","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","url_key":"lando-gym-jacket-m-gray","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-M-Green","id":332,"status":1,"name":"Lando Gym Jacket-M-Green","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"53","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","url_key":"lando-gym-jacket-m-green","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-L-Blue","id":333,"status":1,"name":"Lando Gym Jacket-L-Blue","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"50","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","url_key":"lando-gym-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-L-Gray","id":334,"status":1,"name":"Lando Gym Jacket-L-Gray","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"52","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","url_key":"lando-gym-jacket-l-gray","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-L-Green","id":335,"status":1,"name":"Lando Gym Jacket-L-Green","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"53","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","url_key":"lando-gym-jacket-l-green","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-XL-Blue","id":336,"status":1,"name":"Lando Gym Jacket-XL-Blue","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"50","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","url_key":"lando-gym-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-XL-Gray","id":337,"status":1,"name":"Lando Gym Jacket-XL-Gray","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"52","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","url_key":"lando-gym-jacket-xl-gray","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-XL-Green","id":338,"status":1,"name":"Lando Gym Jacket-XL-Green","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"53","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","url_key":"lando-gym-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99}],"configurable_options":[{"id":37,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":339,"attribute_code":"color"},{"id":36,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":339,"attribute_code":"size"}],"color_options":[50,52,53],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-339.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"309","_score":1,"_source":{"id":309,"sku":"MJ07-XS-Red","name":"Orion Two-Tone Fitted Jacket-XS-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                \n

                • Red full zip fleece with gray insets.
                • Double-knit construction.
                • Full athletic cut.
                • Set in sleeves.
                • Front pouch pocket.

                ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"orion-two-tone-fitted-jacket-xs-red-309","links":{},"stock":{"item_id":309,"product_id":309,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xs-red-309.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"315","_score":1,"_source":{"id":315,"sku":"MJ07-M-Red","name":"Orion Two-Tone Fitted Jacket-M-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                \n

                • Red full zip fleece with gray insets.
                • Double-knit construction.
                • Full athletic cut.
                • Set in sleeves.
                • Front pouch pocket.

                ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"orion-two-tone-fitted-jacket-m-red-315","links":{},"stock":{"item_id":315,"product_id":315,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-m-red-315.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"325","_score":1,"_source":{"id":325,"sku":"MJ08-XS-Gray","name":"Lando Gym Jacket-XS-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                \n

                • Gray polyester/spandex full zip jacket with orange lining.
                • Right pocket device storage.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lando-gym-jacket-xs-gray-325","links":{},"stock":{"item_id":325,"product_id":325,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xs-gray-325.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"302","_score":1,"_source":{"id":302,"sku":"MJ04-L-Blue","name":"Kenobi Trail Jacket-L-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                \n

                • Black 1/4 zip pullover with royal zipper.
                • Adjustable hood and sleeve cuffs.
                • Machine wash/air dry.

                ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"kenobi-trail-jacket-l-blue-302","links":{},"stock":{"item_id":302,"product_id":302,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-l-blue-302.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"336","_score":1,"_source":{"id":336,"sku":"MJ08-XL-Blue","name":"Lando Gym Jacket-XL-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                \n

                • Gray polyester/spandex full zip jacket with orange lining.
                • Right pocket device storage.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lando-gym-jacket-xl-blue-336","links":{},"stock":{"item_id":336,"product_id":336,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xl-blue-336.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"319","_score":1,"_source":{"id":319,"sku":"MJ07-L-Yellow","name":"Orion Two-Tone Fitted Jacket-L-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                \n

                • Red full zip fleece with gray insets.
                • Double-knit construction.
                • Full athletic cut.
                • Set in sleeves.
                • Front pouch pocket.

                ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"orion-two-tone-fitted-jacket-l-yellow-319","links":{},"stock":{"item_id":319,"product_id":319,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-l-yellow-319.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"324","_score":1,"_source":{"id":324,"sku":"MJ08-XS-Blue","name":"Lando Gym Jacket-XS-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                \n

                • Gray polyester/spandex full zip jacket with orange lining.
                • Right pocket device storage.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lando-gym-jacket-xs-blue-324","links":{},"stock":{"item_id":324,"product_id":324,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xs-blue-324.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"326","_score":1,"_source":{"id":326,"sku":"MJ08-XS-Green","name":"Lando Gym Jacket-XS-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                \n

                • Gray polyester/spandex full zip jacket with orange lining.
                • Right pocket device storage.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lando-gym-jacket-xs-green-326","links":{},"stock":{"item_id":326,"product_id":326,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xs-green-326.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"322","_score":1,"_source":{"id":322,"sku":"MJ07-XL-Yellow","name":"Orion Two-Tone Fitted Jacket-XL-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                \n

                • Red full zip fleece with gray insets.
                • Double-knit construction.
                • Full athletic cut.
                • Set in sleeves.
                • Front pouch pocket.

                ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"orion-two-tone-fitted-jacket-xl-yellow-322","links":{},"stock":{"item_id":322,"product_id":322,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xl-yellow-322.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"318","_score":1,"_source":{"id":318,"sku":"MJ07-L-Red","name":"Orion Two-Tone Fitted Jacket-L-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                \n

                • Red full zip fleece with gray insets.
                • Double-knit construction.
                • Full athletic cut.
                • Set in sleeves.
                • Front pouch pocket.

                ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"orion-two-tone-fitted-jacket-l-red-318","links":{},"stock":{"item_id":318,"product_id":318,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-l-red-318.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"331","_score":1,"_source":{"id":331,"sku":"MJ08-M-Gray","name":"Lando Gym Jacket-M-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                \n

                • Gray polyester/spandex full zip jacket with orange lining.
                • Right pocket device storage.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lando-gym-jacket-m-gray-331","links":{},"stock":{"item_id":331,"product_id":331,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-m-gray-331.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"321","_score":1,"_source":{"id":321,"sku":"MJ07-XL-Red","name":"Orion Two-Tone Fitted Jacket-XL-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                \n

                • Red full zip fleece with gray insets.
                • Double-knit construction.
                • Full athletic cut.
                • Set in sleeves.
                • Front pouch pocket.

                ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"orion-two-tone-fitted-jacket-xl-red-321","links":{},"stock":{"item_id":321,"product_id":321,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xl-red-321.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"320","_score":1,"_source":{"id":320,"sku":"MJ07-XL-Black","name":"Orion Two-Tone Fitted Jacket-XL-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                \n

                • Red full zip fleece with gray insets.
                • Double-knit construction.
                • Full athletic cut.
                • Set in sleeves.
                • Front pouch pocket.

                ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"orion-two-tone-fitted-jacket-xl-black-320","links":{},"stock":{"item_id":320,"product_id":320,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xl-black-320.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"327","_score":1,"_source":{"id":327,"sku":"MJ08-S-Blue","name":"Lando Gym Jacket-S-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                \n

                • Gray polyester/spandex full zip jacket with orange lining.
                • Right pocket device storage.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lando-gym-jacket-s-blue-327","links":{},"stock":{"item_id":327,"product_id":327,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-s-blue-327.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"334","_score":1,"_source":{"id":334,"sku":"MJ08-L-Gray","name":"Lando Gym Jacket-L-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                \n

                • Gray polyester/spandex full zip jacket with orange lining.
                • Right pocket device storage.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lando-gym-jacket-l-gray-334","links":{},"stock":{"item_id":334,"product_id":334,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-l-gray-334.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"340","_score":1,"_source":{"id":340,"sku":"MJ09-XS-Blue","name":"Taurus Elements Shell-XS-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                \n

                • Yellow 1/4 zip pullover.
                • Two chest pockets.
                • Standard fit.
                • Waterproof, breathable, seam sealed.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"taurus-elements-shell-xs-blue-340","links":{},"stock":{"item_id":340,"product_id":340,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xs-blue-340.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"332","_score":1,"_source":{"id":332,"sku":"MJ08-M-Green","name":"Lando Gym Jacket-M-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                \n

                • Gray polyester/spandex full zip jacket with orange lining.
                • Right pocket device storage.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lando-gym-jacket-m-green-332","links":{},"stock":{"item_id":332,"product_id":332,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-m-green-332.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"329","_score":1,"_source":{"id":329,"sku":"MJ08-S-Green","name":"Lando Gym Jacket-S-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                \n

                • Gray polyester/spandex full zip jacket with orange lining.
                • Right pocket device storage.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lando-gym-jacket-s-green-329","links":{},"stock":{"item_id":329,"product_id":329,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-s-green-329.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"333","_score":1,"_source":{"id":333,"sku":"MJ08-L-Blue","name":"Lando Gym Jacket-L-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                \n

                • Gray polyester/spandex full zip jacket with orange lining.
                • Right pocket device storage.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lando-gym-jacket-l-blue-333","links":{},"stock":{"item_id":333,"product_id":333,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-l-blue-333.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"335","_score":1,"_source":{"id":335,"sku":"MJ08-L-Green","name":"Lando Gym Jacket-L-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                \n

                • Gray polyester/spandex full zip jacket with orange lining.
                • Right pocket device storage.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lando-gym-jacket-l-green-335","links":{},"stock":{"item_id":335,"product_id":335,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-l-green-335.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"328","_score":1,"_source":{"id":328,"sku":"MJ08-S-Gray","name":"Lando Gym Jacket-S-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                \n

                • Gray polyester/spandex full zip jacket with orange lining.
                • Right pocket device storage.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lando-gym-jacket-s-gray-328","links":{},"stock":{"item_id":328,"product_id":328,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-s-gray-328.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"341","_score":1,"_source":{"id":341,"sku":"MJ09-XS-White","name":"Taurus Elements Shell-XS-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                \n

                • Yellow 1/4 zip pullover.
                • Two chest pockets.
                • Standard fit.
                • Waterproof, breathable, seam sealed.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"taurus-elements-shell-xs-white-341","links":{},"stock":{"item_id":341,"product_id":341,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xs-white-341.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"330","_score":1,"_source":{"id":330,"sku":"MJ08-M-Blue","name":"Lando Gym Jacket-M-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                \n

                • Gray polyester/spandex full zip jacket with orange lining.
                • Right pocket device storage.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lando-gym-jacket-m-blue-330","links":{},"stock":{"item_id":330,"product_id":330,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-m-blue-330.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"338","_score":1,"_source":{"id":338,"sku":"MJ08-XL-Green","name":"Lando Gym Jacket-XL-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                \n

                • Gray polyester/spandex full zip jacket with orange lining.
                • Right pocket device storage.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lando-gym-jacket-xl-green-338","links":{},"stock":{"item_id":338,"product_id":338,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xl-green-338.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"345","_score":1,"_source":{"id":345,"sku":"MJ09-S-Yellow","name":"Taurus Elements Shell-S-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                \n

                • Yellow 1/4 zip pullover.
                • Two chest pockets.
                • Standard fit.
                • Waterproof, breathable, seam sealed.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"taurus-elements-shell-s-yellow-345","links":{},"stock":{"item_id":345,"product_id":345,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-s-yellow-345.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"337","_score":1,"_source":{"id":337,"sku":"MJ08-XL-Gray","name":"Lando Gym Jacket-XL-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                \n

                • Gray polyester/spandex full zip jacket with orange lining.
                • Right pocket device storage.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lando-gym-jacket-xl-gray-337","links":{},"stock":{"item_id":337,"product_id":337,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xl-gray-337.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"346","_score":1,"_source":{"id":346,"sku":"MJ09-M-Blue","name":"Taurus Elements Shell-M-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                \n

                • Yellow 1/4 zip pullover.
                • Two chest pockets.
                • Standard fit.
                • Waterproof, breathable, seam sealed.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"taurus-elements-shell-m-blue-346","links":{},"stock":{"item_id":346,"product_id":346,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-m-blue-346.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"342","_score":1,"_source":{"id":342,"sku":"MJ09-XS-Yellow","name":"Taurus Elements Shell-XS-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                \n

                • Yellow 1/4 zip pullover.
                • Two chest pockets.
                • Standard fit.
                • Waterproof, breathable, seam sealed.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"taurus-elements-shell-xs-yellow-342","links":{},"stock":{"item_id":342,"product_id":342,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xs-yellow-342.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"347","_score":1,"_source":{"id":347,"sku":"MJ09-M-White","name":"Taurus Elements Shell-M-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                \n

                • Yellow 1/4 zip pullover.
                • Two chest pockets.
                • Standard fit.
                • Waterproof, breathable, seam sealed.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"taurus-elements-shell-m-white-347","links":{},"stock":{"item_id":347,"product_id":347,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-m-white-347.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"348","_score":1,"_source":{"id":348,"sku":"MJ09-M-Yellow","name":"Taurus Elements Shell-M-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                \n

                • Yellow 1/4 zip pullover.
                • Two chest pockets.
                • Standard fit.
                • Waterproof, breathable, seam sealed.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"taurus-elements-shell-m-yellow-348","links":{},"stock":{"item_id":348,"product_id":348,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-m-yellow-348.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"343","_score":1,"_source":{"id":343,"sku":"MJ09-S-Blue","name":"Taurus Elements Shell-S-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                \n

                • Yellow 1/4 zip pullover.
                • Two chest pockets.
                • Standard fit.
                • Waterproof, breathable, seam sealed.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"taurus-elements-shell-s-blue-343","links":{},"stock":{"item_id":343,"product_id":343,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-s-blue-343.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"259","_score":1,"_source":{"id":259,"sku":"MH13","name":"Marco Lightweight Active Hoodie","attribute_set_id":9,"price":74,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                \n

                • Light blue heather full zip hoodie.
                • Fitted flatlock seams.
                • Matching lining and drawstring.
                • Machine wash/dry.

                ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"marco-lightweight-active-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,145],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"0","pattern":"197","climate":[202,204,205,208,210],"slug":"marco-lightweight-active-hoodie-259","links":{},"stock":{"item_id":259,"product_id":259,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH13-XS-Blue","id":244,"status":1,"name":"Marco Lightweight Active Hoodie-XS-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"50","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","url_key":"marco-lightweight-active-hoodie-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"MH13-XS-Green","id":245,"status":1,"name":"Marco Lightweight Active Hoodie-XS-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"53","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","url_key":"marco-lightweight-active-hoodie-xs-green","msrp_display_actual_price_type":"0"},{"sku":"MH13-XS-Lavender","id":246,"status":1,"name":"Marco Lightweight Active Hoodie-XS-Lavender","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"54","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","url_key":"marco-lightweight-active-hoodie-xs-lavender","msrp_display_actual_price_type":"0"},{"sku":"MH13-S-Blue","id":247,"status":1,"name":"Marco Lightweight Active Hoodie-S-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"50","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","url_key":"marco-lightweight-active-hoodie-s-blue","msrp_display_actual_price_type":"0"},{"sku":"MH13-S-Green","id":248,"status":1,"name":"Marco Lightweight Active Hoodie-S-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"53","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","url_key":"marco-lightweight-active-hoodie-s-green","msrp_display_actual_price_type":"0"},{"sku":"MH13-S-Lavender","id":249,"status":1,"name":"Marco Lightweight Active Hoodie-S-Lavender","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"54","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","url_key":"marco-lightweight-active-hoodie-s-lavender","msrp_display_actual_price_type":"0"},{"sku":"MH13-M-Blue","id":250,"status":1,"name":"Marco Lightweight Active Hoodie-M-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"50","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","url_key":"marco-lightweight-active-hoodie-m-blue","msrp_display_actual_price_type":"0"},{"sku":"MH13-M-Green","id":251,"status":1,"name":"Marco Lightweight Active Hoodie-M-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"53","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","url_key":"marco-lightweight-active-hoodie-m-green","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MH13-M-Lavender","id":252,"status":1,"name":"Marco Lightweight Active Hoodie-M-Lavender","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"54","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","url_key":"marco-lightweight-active-hoodie-m-lavender","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MH13-L-Blue","id":253,"status":1,"name":"Marco Lightweight Active Hoodie-L-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"50","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","url_key":"marco-lightweight-active-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MH13-L-Green","id":254,"status":1,"name":"Marco Lightweight Active Hoodie-L-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"53","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","url_key":"marco-lightweight-active-hoodie-l-green","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MH13-L-Lavender","id":255,"status":1,"name":"Marco Lightweight Active Hoodie-L-Lavender","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"54","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","url_key":"marco-lightweight-active-hoodie-l-lavender","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MH13-XL-Blue","id":256,"status":1,"name":"Marco Lightweight Active Hoodie-XL-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"50","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","url_key":"marco-lightweight-active-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MH13-XL-Green","id":257,"status":1,"name":"Marco Lightweight Active Hoodie-XL-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"53","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","url_key":"marco-lightweight-active-hoodie-xl-green","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MH13-XL-Lavender","id":258,"status":1,"name":"Marco Lightweight Active Hoodie-XL-Lavender","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"54","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","url_key":"marco-lightweight-active-hoodie-xl-lavender","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74}],"configurable_options":[{"id":27,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":54,"label":"Lavender"}],"product_id":259,"attribute_code":"color"},{"id":26,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":259,"attribute_code":"size"}],"color_options":[50,53,54],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-259.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"291","_score":1,"_source":{"id":291,"sku":"MJ02","name":"Hyperion Elements Jacket","attribute_set_id":9,"price":51,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                \n

                • Lime 1/4 zip pullover.
                • Split pocket.
                • Thumb holes.
                • Machine wash/hang to dry.

                ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hyperion-elements-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,148,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_general":[117,123,124,126,128],"pattern":"197","climate":[204,207,208,210],"slug":"hyperion-elements-jacket-291","links":{},"stock":{"item_id":291,"product_id":291,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ02-XS-Green","id":276,"status":1,"name":"Hyperion Elements Jacket-XS-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"53","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","url_key":"hyperion-elements-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-XS-Orange","id":277,"status":1,"name":"Hyperion Elements Jacket-XS-Orange","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"56","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","url_key":"hyperion-elements-jacket-xs-orange","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-XS-Red","id":278,"status":1,"name":"Hyperion Elements Jacket-XS-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"58","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","url_key":"hyperion-elements-jacket-xs-red","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-S-Green","id":279,"status":1,"name":"Hyperion Elements Jacket-S-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"53","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","url_key":"hyperion-elements-jacket-s-green","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-S-Orange","id":280,"status":1,"name":"Hyperion Elements Jacket-S-Orange","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"56","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","url_key":"hyperion-elements-jacket-s-orange","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-S-Red","id":281,"status":1,"name":"Hyperion Elements Jacket-S-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"58","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","url_key":"hyperion-elements-jacket-s-red","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-M-Green","id":282,"status":1,"name":"Hyperion Elements Jacket-M-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"53","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","url_key":"hyperion-elements-jacket-m-green","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-M-Orange","id":283,"status":1,"name":"Hyperion Elements Jacket-M-Orange","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"56","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","url_key":"hyperion-elements-jacket-m-orange","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-M-Red","id":284,"status":1,"name":"Hyperion Elements Jacket-M-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"58","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","url_key":"hyperion-elements-jacket-m-red","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-L-Green","id":285,"status":1,"name":"Hyperion Elements Jacket-L-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"53","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","url_key":"hyperion-elements-jacket-l-green","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-L-Orange","id":286,"status":1,"name":"Hyperion Elements Jacket-L-Orange","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"56","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","url_key":"hyperion-elements-jacket-l-orange","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-L-Red","id":287,"status":1,"name":"Hyperion Elements Jacket-L-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"58","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","url_key":"hyperion-elements-jacket-l-red","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-XL-Green","id":288,"status":1,"name":"Hyperion Elements Jacket-XL-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"53","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","url_key":"hyperion-elements-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-XL-Orange","id":289,"status":1,"name":"Hyperion Elements Jacket-XL-Orange","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"56","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","url_key":"hyperion-elements-jacket-xl-orange","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-XL-Red","id":290,"status":1,"name":"Hyperion Elements Jacket-XL-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"58","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","url_key":"hyperion-elements-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51}],"configurable_options":[{"id":31,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":291,"attribute_code":"color"},{"id":30,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":291,"attribute_code":"size"}],"color_options":[53,56,58],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-291.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"262","_score":1,"_source":{"id":262,"sku":"MJ01-XS-Yellow","name":"Beaumont Summit Kit-XS-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                \n

                • Yellow full zip rain jacket.
                • Full-zip front.
                • Stand-up collar.
                • Elasticized cuffs.
                • Machine wash/dry.

                ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"beaumont-summit-kit-xs-yellow-262","links":{},"stock":{"item_id":262,"product_id":262,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xs-yellow-262.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"268","_score":1,"_source":{"id":268,"sku":"MJ01-M-Yellow","name":"Beaumont Summit Kit-M-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                \n

                • Yellow full zip rain jacket.
                • Full-zip front.
                • Stand-up collar.
                • Elasticized cuffs.
                • Machine wash/dry.

                ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"beaumont-summit-kit-m-yellow-268","links":{},"stock":{"item_id":268,"product_id":268,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-m-yellow-268.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"270","_score":1,"_source":{"id":270,"sku":"MJ01-L-Red","name":"Beaumont Summit Kit-L-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                \n

                • Yellow full zip rain jacket.
                • Full-zip front.
                • Stand-up collar.
                • Elasticized cuffs.
                • Machine wash/dry.

                ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"beaumont-summit-kit-l-red-270","links":{},"stock":{"item_id":270,"product_id":270,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-l-red-270.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"251","_score":1,"_source":{"id":251,"sku":"MH13-M-Green","name":"Marco Lightweight Active Hoodie-M-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                \n

                • Light blue heather full zip hoodie.
                • Fitted flatlock seams.
                • Matching lining and drawstring.
                • Machine wash/dry.

                ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"marco-lightweight-active-hoodie-m-green-251","links":{},"stock":{"item_id":251,"product_id":251,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-m-green-251.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"265","_score":1,"_source":{"id":265,"sku":"MJ01-S-Yellow","name":"Beaumont Summit Kit-S-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                \n

                • Yellow full zip rain jacket.
                • Full-zip front.
                • Stand-up collar.
                • Elasticized cuffs.
                • Machine wash/dry.

                ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"beaumont-summit-kit-s-yellow-265","links":{},"stock":{"item_id":265,"product_id":265,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-s-yellow-265.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"253","_score":1,"_source":{"id":253,"sku":"MH13-L-Blue","name":"Marco Lightweight Active Hoodie-L-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                \n

                • Light blue heather full zip hoodie.
                • Fitted flatlock seams.
                • Matching lining and drawstring.
                • Machine wash/dry.

                ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"marco-lightweight-active-hoodie-l-blue-253","links":{},"stock":{"item_id":253,"product_id":253,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-l-blue-253.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"276","_score":1,"_source":{"id":276,"sku":"MJ02-XS-Green","name":"Hyperion Elements Jacket-XS-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                \n

                • Lime 1/4 zip pullover.
                • Split pocket.
                • Thumb holes.
                • Machine wash/hang to dry.

                ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hyperion-elements-jacket-xs-green-276","links":{},"stock":{"item_id":276,"product_id":276,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xs-green-276.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"272","_score":1,"_source":{"id":272,"sku":"MJ01-XL-Orange","name":"Beaumont Summit Kit-XL-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                \n

                • Yellow full zip rain jacket.
                • Full-zip front.
                • Stand-up collar.
                • Elasticized cuffs.
                • Machine wash/dry.

                ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"beaumont-summit-kit-xl-orange-272","links":{},"stock":{"item_id":272,"product_id":272,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xl-orange-272.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"261","_score":1,"_source":{"id":261,"sku":"MJ01-XS-Red","name":"Beaumont Summit Kit-XS-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                \n

                • Yellow full zip rain jacket.
                • Full-zip front.
                • Stand-up collar.
                • Elasticized cuffs.
                • Machine wash/dry.

                ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"beaumont-summit-kit-xs-red-261","links":{},"stock":{"item_id":261,"product_id":261,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xs-red-261.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"254","_score":1,"_source":{"id":254,"sku":"MH13-L-Green","name":"Marco Lightweight Active Hoodie-L-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                \n

                • Light blue heather full zip hoodie.
                • Fitted flatlock seams.
                • Matching lining and drawstring.
                • Machine wash/dry.

                ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"marco-lightweight-active-hoodie-l-green-254","links":{},"stock":{"item_id":254,"product_id":254,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-l-green-254.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"274","_score":1,"_source":{"id":274,"sku":"MJ01-XL-Yellow","name":"Beaumont Summit Kit-XL-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                \n

                • Yellow full zip rain jacket.
                • Full-zip front.
                • Stand-up collar.
                • Elasticized cuffs.
                • Machine wash/dry.

                ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"beaumont-summit-kit-xl-yellow-274","links":{},"stock":{"item_id":274,"product_id":274,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xl-yellow-274.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"264","_score":1,"_source":{"id":264,"sku":"MJ01-S-Red","name":"Beaumont Summit Kit-S-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                \n

                • Yellow full zip rain jacket.
                • Full-zip front.
                • Stand-up collar.
                • Elasticized cuffs.
                • Machine wash/dry.

                ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"beaumont-summit-kit-s-red-264","links":{},"stock":{"item_id":264,"product_id":264,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-s-red-264.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"267","_score":1,"_source":{"id":267,"sku":"MJ01-M-Red","name":"Beaumont Summit Kit-M-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                \n

                • Yellow full zip rain jacket.
                • Full-zip front.
                • Stand-up collar.
                • Elasticized cuffs.
                • Machine wash/dry.

                ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"beaumont-summit-kit-m-red-267","links":{},"stock":{"item_id":267,"product_id":267,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-m-red-267.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"273","_score":1,"_source":{"id":273,"sku":"MJ01-XL-Red","name":"Beaumont Summit Kit-XL-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                \n

                • Yellow full zip rain jacket.
                • Full-zip front.
                • Stand-up collar.
                • Elasticized cuffs.
                • Machine wash/dry.

                ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"beaumont-summit-kit-xl-red-273","links":{},"stock":{"item_id":273,"product_id":273,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xl-red-273.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"288","_score":1,"_source":{"id":288,"sku":"MJ02-XL-Green","name":"Hyperion Elements Jacket-XL-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                \n

                • Lime 1/4 zip pullover.
                • Split pocket.
                • Thumb holes.
                • Machine wash/hang to dry.

                ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hyperion-elements-jacket-xl-green-288","links":{},"stock":{"item_id":288,"product_id":288,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xl-green-288.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"266","_score":1,"_source":{"id":266,"sku":"MJ01-M-Orange","name":"Beaumont Summit Kit-M-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                \n

                • Yellow full zip rain jacket.
                • Full-zip front.
                • Stand-up collar.
                • Elasticized cuffs.
                • Machine wash/dry.

                ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"beaumont-summit-kit-m-orange-266","links":{},"stock":{"item_id":266,"product_id":266,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-m-orange-266.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"287","_score":1,"_source":{"id":287,"sku":"MJ02-L-Red","name":"Hyperion Elements Jacket-L-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                \n

                • Lime 1/4 zip pullover.
                • Split pocket.
                • Thumb holes.
                • Machine wash/hang to dry.

                ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hyperion-elements-jacket-l-red-287","links":{},"stock":{"item_id":287,"product_id":287,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-l-red-287.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"280","_score":1,"_source":{"id":280,"sku":"MJ02-S-Orange","name":"Hyperion Elements Jacket-S-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                \n

                • Lime 1/4 zip pullover.
                • Split pocket.
                • Thumb holes.
                • Machine wash/hang to dry.

                ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hyperion-elements-jacket-s-orange-280","links":{},"stock":{"item_id":280,"product_id":280,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-s-orange-280.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"278","_score":1,"_source":{"id":278,"sku":"MJ02-XS-Red","name":"Hyperion Elements Jacket-XS-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                \n

                • Lime 1/4 zip pullover.
                • Split pocket.
                • Thumb holes.
                • Machine wash/hang to dry.

                ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hyperion-elements-jacket-xs-red-278","links":{},"stock":{"item_id":278,"product_id":278,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xs-red-278.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"275","_score":1,"_source":{"id":275,"sku":"MJ01","name":"Beaumont Summit Kit","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                \n

                • Yellow full zip rain jacket.
                • Full-zip front.
                • Stand-up collar.
                • Elasticized cuffs.
                • Machine wash/dry.

                ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"beaumont-summit-kit","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,148,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[120,121,123,124,126,128,130],"pattern":"197","climate":[204,207,208,210],"slug":"beaumont-summit-kit-275","links":{},"stock":{"item_id":275,"product_id":275,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ01-XS-Orange","id":260,"status":1,"name":"Beaumont Summit Kit-XS-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"56","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","url_key":"beaumont-summit-kit-xs-orange","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-XS-Red","id":261,"status":1,"name":"Beaumont Summit Kit-XS-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"58","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","url_key":"beaumont-summit-kit-xs-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-XS-Yellow","id":262,"status":1,"name":"Beaumont Summit Kit-XS-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"60","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","url_key":"beaumont-summit-kit-xs-yellow","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-S-Orange","id":263,"status":1,"name":"Beaumont Summit Kit-S-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"56","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","url_key":"beaumont-summit-kit-s-orange","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-S-Red","id":264,"status":1,"name":"Beaumont Summit Kit-S-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"58","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","url_key":"beaumont-summit-kit-s-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-S-Yellow","id":265,"status":1,"name":"Beaumont Summit Kit-S-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"60","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","url_key":"beaumont-summit-kit-s-yellow","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-M-Orange","id":266,"status":1,"name":"Beaumont Summit Kit-M-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"56","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","url_key":"beaumont-summit-kit-m-orange","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-M-Red","id":267,"status":1,"name":"Beaumont Summit Kit-M-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"58","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","url_key":"beaumont-summit-kit-m-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-M-Yellow","id":268,"status":1,"name":"Beaumont Summit Kit-M-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"60","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","url_key":"beaumont-summit-kit-m-yellow","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-L-Orange","id":269,"status":1,"name":"Beaumont Summit Kit-L-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"56","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","url_key":"beaumont-summit-kit-l-orange","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-L-Red","id":270,"status":1,"name":"Beaumont Summit Kit-L-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"58","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","url_key":"beaumont-summit-kit-l-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-L-Yellow","id":271,"status":1,"name":"Beaumont Summit Kit-L-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"60","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","url_key":"beaumont-summit-kit-l-yellow","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-XL-Orange","id":272,"status":1,"name":"Beaumont Summit Kit-XL-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"56","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","url_key":"beaumont-summit-kit-xl-orange","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-XL-Red","id":273,"status":1,"name":"Beaumont Summit Kit-XL-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"58","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","url_key":"beaumont-summit-kit-xl-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-XL-Yellow","id":274,"status":1,"name":"Beaumont Summit Kit-XL-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"60","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","url_key":"beaumont-summit-kit-xl-yellow","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42}],"configurable_options":[{"id":29,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":275,"attribute_code":"color"},{"id":28,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":275,"attribute_code":"size"}],"color_options":[56,58,60],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-275.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"353","_score":1,"_source":{"id":353,"sku":"MJ09-XL-White","name":"Taurus Elements Shell-XL-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                \n

                • Yellow 1/4 zip pullover.
                • Two chest pockets.
                • Standard fit.
                • Waterproof, breathable, seam sealed.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"taurus-elements-shell-xl-white-353","links":{},"stock":{"item_id":353,"product_id":353,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xl-white-353.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"352","_score":1,"_source":{"id":352,"sku":"MJ09-XL-Blue","name":"Taurus Elements Shell-XL-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                \n

                • Yellow 1/4 zip pullover.
                • Two chest pockets.
                • Standard fit.
                • Waterproof, breathable, seam sealed.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"taurus-elements-shell-xl-blue-352","links":{},"stock":{"item_id":352,"product_id":352,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xl-blue-352.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"362","_score":1,"_source":{"id":362,"sku":"MJ10-M-Black","name":"Mars HeatTech™ Pullover-M-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                \n

                • Red 1/4 zip pullover.
                • Adjustable VELCRO® sleeve cuffs.
                • Two hand pockets.
                • Napoleon pocket.
                • Machine wash/dry

                ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mars-heattech-and-trade-pullover-m-black-362","links":{},"stock":{"item_id":362,"product_id":362,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-m-black-362.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"360","_score":1,"_source":{"id":360,"sku":"MJ10-S-Orange","name":"Mars HeatTech™ Pullover-S-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                \n

                • Red 1/4 zip pullover.
                • Adjustable VELCRO® sleeve cuffs.
                • Two hand pockets.
                • Napoleon pocket.
                • Machine wash/dry

                ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mars-heattech-and-trade-pullover-s-orange-360","links":{},"stock":{"item_id":360,"product_id":360,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-s-orange-360.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"351","_score":1,"_source":{"id":351,"sku":"MJ09-L-Yellow","name":"Taurus Elements Shell-L-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                \n

                • Yellow 1/4 zip pullover.
                • Two chest pockets.
                • Standard fit.
                • Waterproof, breathable, seam sealed.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"taurus-elements-shell-l-yellow-351","links":{},"stock":{"item_id":351,"product_id":351,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-l-yellow-351.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"356","_score":1,"_source":{"id":356,"sku":"MJ10-XS-Black","name":"Mars HeatTech™ Pullover-XS-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                \n

                • Red 1/4 zip pullover.
                • Adjustable VELCRO® sleeve cuffs.
                • Two hand pockets.
                • Napoleon pocket.
                • Machine wash/dry

                ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mars-heattech-and-trade-pullover-xs-black-356","links":{},"stock":{"item_id":356,"product_id":356,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xs-black-356.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"357","_score":1,"_source":{"id":357,"sku":"MJ10-XS-Orange","name":"Mars HeatTech™ Pullover-XS-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                \n

                • Red 1/4 zip pullover.
                • Adjustable VELCRO® sleeve cuffs.
                • Two hand pockets.
                • Napoleon pocket.
                • Machine wash/dry

                ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mars-heattech-and-trade-pullover-xs-orange-357","links":{},"stock":{"item_id":357,"product_id":357,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xs-orange-357.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"358","_score":1,"_source":{"id":358,"sku":"MJ10-XS-Red","name":"Mars HeatTech™ Pullover-XS-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                \n

                • Red 1/4 zip pullover.
                • Adjustable VELCRO® sleeve cuffs.
                • Two hand pockets.
                • Napoleon pocket.
                • Machine wash/dry

                ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mars-heattech-and-trade-pullover-xs-red-358","links":{},"stock":{"item_id":358,"product_id":358,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xs-red-358.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"354","_score":1,"_source":{"id":354,"sku":"MJ09-XL-Yellow","name":"Taurus Elements Shell-XL-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                \n

                • Yellow 1/4 zip pullover.
                • Two chest pockets.
                • Standard fit.
                • Waterproof, breathable, seam sealed.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"taurus-elements-shell-xl-yellow-354","links":{},"stock":{"item_id":354,"product_id":354,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xl-yellow-354.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"364","_score":1,"_source":{"id":364,"sku":"MJ10-M-Red","name":"Mars HeatTech™ Pullover-M-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                \n

                • Red 1/4 zip pullover.
                • Adjustable VELCRO® sleeve cuffs.
                • Two hand pockets.
                • Napoleon pocket.
                • Machine wash/dry

                ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mars-heattech-and-trade-pullover-m-red-364","links":{},"stock":{"item_id":364,"product_id":364,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-m-red-364.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"366","_score":1,"_source":{"id":366,"sku":"MJ10-L-Orange","name":"Mars HeatTech™ Pullover-L-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                \n

                • Red 1/4 zip pullover.
                • Adjustable VELCRO® sleeve cuffs.
                • Two hand pockets.
                • Napoleon pocket.
                • Machine wash/dry

                ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mars-heattech-and-trade-pullover-l-orange-366","links":{},"stock":{"item_id":366,"product_id":366,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-l-orange-366.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"361","_score":1,"_source":{"id":361,"sku":"MJ10-S-Red","name":"Mars HeatTech™ Pullover-S-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                \n

                • Red 1/4 zip pullover.
                • Adjustable VELCRO® sleeve cuffs.
                • Two hand pockets.
                • Napoleon pocket.
                • Machine wash/dry

                ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mars-heattech-and-trade-pullover-s-red-361","links":{},"stock":{"item_id":361,"product_id":361,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-s-red-361.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"359","_score":1,"_source":{"id":359,"sku":"MJ10-S-Black","name":"Mars HeatTech™ Pullover-S-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                \n

                • Red 1/4 zip pullover.
                • Adjustable VELCRO® sleeve cuffs.
                • Two hand pockets.
                • Napoleon pocket.
                • Machine wash/dry

                ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mars-heattech-and-trade-pullover-s-black-359","links":{},"stock":{"item_id":359,"product_id":359,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-s-black-359.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"378","_score":1,"_source":{"id":378,"sku":"MJ11-M-Black","name":"Typhon Performance Fleece-lined Jacket-M-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                \n

                • Black full-zip flight jacket.
                • Cocona® wicking fiber.
                • Machine wash/dry.

                ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"typhon-performance-fleece-lined-jacket-m-black-378","links":{},"stock":{"item_id":378,"product_id":378,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-m-black-378.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"372","_score":1,"_source":{"id":372,"sku":"MJ11-XS-Black","name":"Typhon Performance Fleece-lined Jacket-XS-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                \n

                • Black full-zip flight jacket.
                • Cocona® wicking fiber.
                • Machine wash/dry.

                ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"typhon-performance-fleece-lined-jacket-xs-black-372","links":{},"stock":{"item_id":372,"product_id":372,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-07-03 11:29:59","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xs-black-372.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"365","_score":1,"_source":{"id":365,"sku":"MJ10-L-Black","name":"Mars HeatTech™ Pullover-L-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                \n

                • Red 1/4 zip pullover.
                • Adjustable VELCRO® sleeve cuffs.
                • Two hand pockets.
                • Napoleon pocket.
                • Machine wash/dry

                ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mars-heattech-and-trade-pullover-l-black-365","links":{},"stock":{"item_id":365,"product_id":365,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-l-black-365.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"269","_score":1,"_source":{"id":269,"sku":"MJ01-L-Orange","name":"Beaumont Summit Kit-L-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                \n

                • Yellow full zip rain jacket.
                • Full-zip front.
                • Stand-up collar.
                • Elasticized cuffs.
                • Machine wash/dry.

                ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"beaumont-summit-kit-l-orange-269","links":{},"stock":{"item_id":269,"product_id":269,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-l-orange-269.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"290","_score":1,"_source":{"id":290,"sku":"MJ02-XL-Red","name":"Hyperion Elements Jacket-XL-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                \n

                • Lime 1/4 zip pullover.
                • Split pocket.
                • Thumb holes.
                • Machine wash/hang to dry.

                ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hyperion-elements-jacket-xl-red-290","links":{},"stock":{"item_id":290,"product_id":290,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xl-red-290.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"297","_score":1,"_source":{"id":297,"sku":"MJ04-S-Purple","name":"Kenobi Trail Jacket-S-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                \n

                • Black 1/4 zip pullover with royal zipper.
                • Adjustable hood and sleeve cuffs.
                • Machine wash/air dry.

                ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"kenobi-trail-jacket-s-purple-297","links":{},"stock":{"item_id":297,"product_id":297,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-s-purple-297.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"299","_score":1,"_source":{"id":299,"sku":"MJ04-M-Blue","name":"Kenobi Trail Jacket-M-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                \n

                • Black 1/4 zip pullover with royal zipper.
                • Adjustable hood and sleeve cuffs.
                • Machine wash/air dry.

                ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"kenobi-trail-jacket-m-blue-299","links":{},"stock":{"item_id":299,"product_id":299,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-m-blue-299.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"281","_score":1,"_source":{"id":281,"sku":"MJ02-S-Red","name":"Hyperion Elements Jacket-S-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                \n

                • Lime 1/4 zip pullover.
                • Split pocket.
                • Thumb holes.
                • Machine wash/hang to dry.

                ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hyperion-elements-jacket-s-red-281","links":{},"stock":{"item_id":281,"product_id":281,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-s-red-281.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"296","_score":1,"_source":{"id":296,"sku":"MJ04-S-Blue","name":"Kenobi Trail Jacket-S-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                \n

                • Black 1/4 zip pullover with royal zipper.
                • Adjustable hood and sleeve cuffs.
                • Machine wash/air dry.

                ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"kenobi-trail-jacket-s-blue-296","links":{},"stock":{"item_id":296,"product_id":296,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-s-blue-296.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"277","_score":1,"_source":{"id":277,"sku":"MJ02-XS-Orange","name":"Hyperion Elements Jacket-XS-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                \n

                • Lime 1/4 zip pullover.
                • Split pocket.
                • Thumb holes.
                • Machine wash/hang to dry.

                ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hyperion-elements-jacket-xs-orange-277","links":{},"stock":{"item_id":277,"product_id":277,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xs-orange-277.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"279","_score":1,"_source":{"id":279,"sku":"MJ02-S-Green","name":"Hyperion Elements Jacket-S-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                \n

                • Lime 1/4 zip pullover.
                • Split pocket.
                • Thumb holes.
                • Machine wash/hang to dry.

                ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hyperion-elements-jacket-s-green-279","links":{},"stock":{"item_id":279,"product_id":279,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-s-green-279.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"284","_score":1,"_source":{"id":284,"sku":"MJ02-M-Red","name":"Hyperion Elements Jacket-M-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                \n

                • Lime 1/4 zip pullover.
                • Split pocket.
                • Thumb holes.
                • Machine wash/hang to dry.

                ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hyperion-elements-jacket-m-red-284","links":{},"stock":{"item_id":284,"product_id":284,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-m-red-284.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"293","_score":1,"_source":{"id":293,"sku":"MJ04-XS-Blue","name":"Kenobi Trail Jacket-XS-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                \n

                • Black 1/4 zip pullover with royal zipper.
                • Adjustable hood and sleeve cuffs.
                • Machine wash/air dry.

                ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"kenobi-trail-jacket-xs-blue-293","links":{},"stock":{"item_id":293,"product_id":293,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xs-blue-293.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"300","_score":1,"_source":{"id":300,"sku":"MJ04-M-Purple","name":"Kenobi Trail Jacket-M-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                \n

                • Black 1/4 zip pullover with royal zipper.
                • Adjustable hood and sleeve cuffs.
                • Machine wash/air dry.

                ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"kenobi-trail-jacket-m-purple-300","links":{},"stock":{"item_id":300,"product_id":300,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-m-purple-300.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"298","_score":1,"_source":{"id":298,"sku":"MJ04-M-Black","name":"Kenobi Trail Jacket-M-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                \n

                • Black 1/4 zip pullover with royal zipper.
                • Adjustable hood and sleeve cuffs.
                • Machine wash/air dry.

                ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"kenobi-trail-jacket-m-black-298","links":{},"stock":{"item_id":298,"product_id":298,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-m-black-298.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"294","_score":1,"_source":{"id":294,"sku":"MJ04-XS-Purple","name":"Kenobi Trail Jacket-XS-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                \n

                • Black 1/4 zip pullover with royal zipper.
                • Adjustable hood and sleeve cuffs.
                • Machine wash/air dry.

                ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"kenobi-trail-jacket-xs-purple-294","links":{},"stock":{"item_id":294,"product_id":294,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xs-purple-294.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"292","_score":1,"_source":{"id":292,"sku":"MJ04-XS-Black","name":"Kenobi Trail Jacket-XS-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                \n

                • Black 1/4 zip pullover with royal zipper.
                • Adjustable hood and sleeve cuffs.
                • Machine wash/air dry.

                ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"kenobi-trail-jacket-xs-black-292","links":{},"stock":{"item_id":292,"product_id":292,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xs-black-292.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"295","_score":1,"_source":{"id":295,"sku":"MJ04-S-Black","name":"Kenobi Trail Jacket-S-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                \n

                • Black 1/4 zip pullover with royal zipper.
                • Adjustable hood and sleeve cuffs.
                • Machine wash/air dry.

                ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"kenobi-trail-jacket-s-black-295","links":{},"stock":{"item_id":295,"product_id":295,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-s-black-295.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"304","_score":1,"_source":{"id":304,"sku":"MJ04-XL-Black","name":"Kenobi Trail Jacket-XL-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                \n

                • Black 1/4 zip pullover with royal zipper.
                • Adjustable hood and sleeve cuffs.
                • Machine wash/air dry.

                ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"kenobi-trail-jacket-xl-black-304","links":{},"stock":{"item_id":304,"product_id":304,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xl-black-304.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"312","_score":1,"_source":{"id":312,"sku":"MJ07-S-Red","name":"Orion Two-Tone Fitted Jacket-S-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                \n

                • Red full zip fleece with gray insets.
                • Double-knit construction.
                • Full athletic cut.
                • Set in sleeves.
                • Front pouch pocket.

                ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"orion-two-tone-fitted-jacket-s-red-312","links":{},"stock":{"item_id":312,"product_id":312,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-s-red-312.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"306","_score":1,"_source":{"id":306,"sku":"MJ04-XL-Purple","name":"Kenobi Trail Jacket-XL-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                \n

                • Black 1/4 zip pullover with royal zipper.
                • Adjustable hood and sleeve cuffs.
                • Machine wash/air dry.

                ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"kenobi-trail-jacket-xl-purple-306","links":{},"stock":{"item_id":306,"product_id":306,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xl-purple-306.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"305","_score":1,"_source":{"id":305,"sku":"MJ04-XL-Blue","name":"Kenobi Trail Jacket-XL-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                \n

                • Black 1/4 zip pullover with royal zipper.
                • Adjustable hood and sleeve cuffs.
                • Machine wash/air dry.

                ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"kenobi-trail-jacket-xl-blue-305","links":{},"stock":{"item_id":305,"product_id":305,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xl-blue-305.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"316","_score":1,"_source":{"id":316,"sku":"MJ07-M-Yellow","name":"Orion Two-Tone Fitted Jacket-M-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                \n

                • Red full zip fleece with gray insets.
                • Double-knit construction.
                • Full athletic cut.
                • Set in sleeves.
                • Front pouch pocket.

                ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"orion-two-tone-fitted-jacket-m-yellow-316","links":{},"stock":{"item_id":316,"product_id":316,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-m-yellow-316.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"303","_score":1,"_source":{"id":303,"sku":"MJ04-L-Purple","name":"Kenobi Trail Jacket-L-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                \n

                • Black 1/4 zip pullover with royal zipper.
                • Adjustable hood and sleeve cuffs.
                • Machine wash/air dry.

                ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"kenobi-trail-jacket-l-purple-303","links":{},"stock":{"item_id":303,"product_id":303,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-l-purple-303.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"313","_score":1,"_source":{"id":313,"sku":"MJ07-S-Yellow","name":"Orion Two-Tone Fitted Jacket-S-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                \n

                • Red full zip fleece with gray insets.
                • Double-knit construction.
                • Full athletic cut.
                • Set in sleeves.
                • Front pouch pocket.

                ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"orion-two-tone-fitted-jacket-s-yellow-313","links":{},"stock":{"item_id":313,"product_id":313,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-s-yellow-313.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"314","_score":1,"_source":{"id":314,"sku":"MJ07-M-Black","name":"Orion Two-Tone Fitted Jacket-M-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                \n

                • Red full zip fleece with gray insets.
                • Double-knit construction.
                • Full athletic cut.
                • Set in sleeves.
                • Front pouch pocket.

                ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"orion-two-tone-fitted-jacket-m-black-314","links":{},"stock":{"item_id":314,"product_id":314,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-m-black-314.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"301","_score":1,"_source":{"id":301,"sku":"MJ04-L-Black","name":"Kenobi Trail Jacket-L-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                \n

                • Black 1/4 zip pullover with royal zipper.
                • Adjustable hood and sleeve cuffs.
                • Machine wash/air dry.

                ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"kenobi-trail-jacket-l-black-301","links":{},"stock":{"item_id":301,"product_id":301,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-l-black-301.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"308","_score":1,"_source":{"id":308,"sku":"MJ07-XS-Black","name":"Orion Two-Tone Fitted Jacket-XS-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                \n

                • Red full zip fleece with gray insets.
                • Double-knit construction.
                • Full athletic cut.
                • Set in sleeves.
                • Front pouch pocket.

                ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"orion-two-tone-fitted-jacket-xs-black-308","links":{},"stock":{"item_id":308,"product_id":308,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xs-black-308.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"310","_score":1,"_source":{"id":310,"sku":"MJ07-XS-Yellow","name":"Orion Two-Tone Fitted Jacket-XS-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                \n

                • Red full zip fleece with gray insets.
                • Double-knit construction.
                • Full athletic cut.
                • Set in sleeves.
                • Front pouch pocket.

                ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"orion-two-tone-fitted-jacket-xs-yellow-310","links":{},"stock":{"item_id":310,"product_id":310,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xs-yellow-310.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"317","_score":1,"_source":{"id":317,"sku":"MJ07-L-Black","name":"Orion Two-Tone Fitted Jacket-L-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                \n

                • Red full zip fleece with gray insets.
                • Double-knit construction.
                • Full athletic cut.
                • Set in sleeves.
                • Front pouch pocket.

                ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"orion-two-tone-fitted-jacket-l-black-317","links":{},"stock":{"item_id":317,"product_id":317,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-l-black-317.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"311","_score":1,"_source":{"id":311,"sku":"MJ07-S-Black","name":"Orion Two-Tone Fitted Jacket-S-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                \n

                • Red full zip fleece with gray insets.
                • Double-knit construction.
                • Full athletic cut.
                • Set in sleeves.
                • Front pouch pocket.

                ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"orion-two-tone-fitted-jacket-s-black-311","links":{},"stock":{"item_id":311,"product_id":311,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-s-black-311.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"286","_score":1,"_source":{"id":286,"sku":"MJ02-L-Orange","name":"Hyperion Elements Jacket-L-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                \n

                • Lime 1/4 zip pullover.
                • Split pocket.
                • Thumb holes.
                • Machine wash/hang to dry.

                ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hyperion-elements-jacket-l-orange-286","links":{},"stock":{"item_id":286,"product_id":286,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-l-orange-286.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"271","_score":1,"_source":{"id":271,"sku":"MJ01-L-Yellow","name":"Beaumont Summit Kit-L-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                \n

                • Yellow full zip rain jacket.
                • Full-zip front.
                • Stand-up collar.
                • Elasticized cuffs.
                • Machine wash/dry.

                ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"beaumont-summit-kit-l-yellow-271","links":{},"stock":{"item_id":271,"product_id":271,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-l-yellow-271.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"283","_score":1,"_source":{"id":283,"sku":"MJ02-M-Orange","name":"Hyperion Elements Jacket-M-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                \n

                • Lime 1/4 zip pullover.
                • Split pocket.
                • Thumb holes.
                • Machine wash/hang to dry.

                ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hyperion-elements-jacket-m-orange-283","links":{},"stock":{"item_id":283,"product_id":283,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-m-orange-283.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"282","_score":1,"_source":{"id":282,"sku":"MJ02-M-Green","name":"Hyperion Elements Jacket-M-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                \n

                • Lime 1/4 zip pullover.
                • Split pocket.
                • Thumb holes.
                • Machine wash/hang to dry.

                ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hyperion-elements-jacket-m-green-282","links":{},"stock":{"item_id":282,"product_id":282,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-m-green-282.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"289","_score":1,"_source":{"id":289,"sku":"MJ02-XL-Orange","name":"Hyperion Elements Jacket-XL-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                \n

                • Lime 1/4 zip pullover.
                • Split pocket.
                • Thumb holes.
                • Machine wash/hang to dry.

                ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hyperion-elements-jacket-xl-orange-289","links":{},"stock":{"item_id":289,"product_id":289,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xl-orange-289.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"285","_score":1,"_source":{"id":285,"sku":"MJ02-L-Green","name":"Hyperion Elements Jacket-L-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                \n

                • Lime 1/4 zip pullover.
                • Split pocket.
                • Thumb holes.
                • Machine wash/hang to dry.

                ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hyperion-elements-jacket-l-green-285","links":{},"stock":{"item_id":285,"product_id":285,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-l-green-285.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"370","_score":1,"_source":{"id":370,"sku":"MJ10-XL-Red","name":"Mars HeatTech™ Pullover-XL-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                \n

                • Red 1/4 zip pullover.
                • Adjustable VELCRO® sleeve cuffs.
                • Two hand pockets.
                • Napoleon pocket.
                • Machine wash/dry

                ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mars-heattech-and-trade-pullover-xl-red-370","links":{},"stock":{"item_id":370,"product_id":370,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xl-red-370.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"371","_score":1,"_source":{"id":371,"sku":"MJ10","name":"Mars HeatTech™ Pullover","attribute_set_id":9,"price":66,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                \n

                • Red 1/4 zip pullover.
                • Adjustable VELCRO® sleeve cuffs.
                • Two hand pockets.
                • Napoleon pocket.
                • Machine wash/dry

                ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mars-heattech-trade-pullover","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[120,123,124,126,128],"pattern":"197","climate":[202,204,206,207,208,210],"slug":"mars-heattech-and-trade-pullover-371","links":{},"stock":{"item_id":371,"product_id":371,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ10-XS-Black","id":356,"status":1,"name":"Mars HeatTech™ Pullover-XS-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"49","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","url_key":"mars-heattech-trade-pullover-xs-black","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-XS-Orange","id":357,"status":1,"name":"Mars HeatTech™ Pullover-XS-Orange","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"56","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","url_key":"mars-heattech-trade-pullover-xs-orange","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-XS-Red","id":358,"status":1,"name":"Mars HeatTech™ Pullover-XS-Red","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"58","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","url_key":"mars-heattech-trade-pullover-xs-red","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-S-Black","id":359,"status":1,"name":"Mars HeatTech™ Pullover-S-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"49","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","url_key":"mars-heattech-trade-pullover-s-black","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-S-Orange","id":360,"status":1,"name":"Mars HeatTech™ Pullover-S-Orange","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"56","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","url_key":"mars-heattech-trade-pullover-s-orange","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-S-Red","id":361,"status":1,"name":"Mars HeatTech™ Pullover-S-Red","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"58","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","url_key":"mars-heattech-trade-pullover-s-red","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-M-Black","id":362,"status":1,"name":"Mars HeatTech™ Pullover-M-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"49","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","url_key":"mars-heattech-trade-pullover-m-black","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-M-Orange","id":363,"status":1,"name":"Mars HeatTech™ Pullover-M-Orange","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"56","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","url_key":"mars-heattech-trade-pullover-m-orange","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-M-Red","id":364,"status":1,"name":"Mars HeatTech™ Pullover-M-Red","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"58","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","url_key":"mars-heattech-trade-pullover-m-red","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-L-Black","id":365,"status":1,"name":"Mars HeatTech™ Pullover-L-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"49","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","url_key":"mars-heattech-trade-pullover-l-black","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-L-Orange","id":366,"status":1,"name":"Mars HeatTech™ Pullover-L-Orange","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"56","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","url_key":"mars-heattech-trade-pullover-l-orange","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-L-Red","id":367,"status":1,"name":"Mars HeatTech™ Pullover-L-Red","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"58","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","url_key":"mars-heattech-trade-pullover-l-red","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-XL-Black","id":368,"status":1,"name":"Mars HeatTech™ Pullover-XL-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"49","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","url_key":"mars-heattech-trade-pullover-xl-black","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-XL-Orange","id":369,"status":1,"name":"Mars HeatTech™ Pullover-XL-Orange","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"56","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","url_key":"mars-heattech-trade-pullover-xl-orange","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-XL-Red","id":370,"status":1,"name":"Mars HeatTech™ Pullover-XL-Red","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"58","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","url_key":"mars-heattech-trade-pullover-xl-red","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66}],"configurable_options":[{"id":41,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":371,"attribute_code":"color"},{"id":40,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":371,"attribute_code":"size"}],"color_options":[49,56,58],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-371.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"355","_score":1,"_source":{"id":355,"sku":"MJ09","name":"Taurus Elements Shell","attribute_set_id":9,"price":65,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                \n

                • Yellow 1/4 zip pullover.
                • Two chest pockets.
                • Standard fit.
                • Waterproof, breathable, seam sealed.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"taurus-elements-shell","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,149,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[118,120,123,126,128],"pattern":"197","climate":[204,206,207,208,210],"slug":"taurus-elements-shell-355","links":{},"stock":{"item_id":355,"product_id":355,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ09-XS-Blue","id":340,"status":1,"name":"Taurus Elements Shell-XS-Blue","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"50","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","url_key":"taurus-elements-shell-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ09-XS-White","id":341,"status":1,"name":"Taurus Elements Shell-XS-White","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"59","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","url_key":"taurus-elements-shell-xs-white","msrp_display_actual_price_type":"0"},{"sku":"MJ09-XS-Yellow","id":342,"status":1,"name":"Taurus Elements Shell-XS-Yellow","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"60","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","url_key":"taurus-elements-shell-xs-yellow","msrp_display_actual_price_type":"0"},{"sku":"MJ09-S-Blue","id":343,"status":1,"name":"Taurus Elements Shell-S-Blue","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"50","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","url_key":"taurus-elements-shell-s-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ09-S-White","id":344,"status":1,"name":"Taurus Elements Shell-S-White","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"59","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","url_key":"taurus-elements-shell-s-white","msrp_display_actual_price_type":"0"},{"sku":"MJ09-S-Yellow","id":345,"status":1,"name":"Taurus Elements Shell-S-Yellow","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"60","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","url_key":"taurus-elements-shell-s-yellow","msrp_display_actual_price_type":"0"},{"sku":"MJ09-M-Blue","id":346,"status":1,"name":"Taurus Elements Shell-M-Blue","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"50","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","url_key":"taurus-elements-shell-m-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ09-M-White","id":347,"status":1,"name":"Taurus Elements Shell-M-White","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"59","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","url_key":"taurus-elements-shell-m-white","msrp_display_actual_price_type":"0"},{"sku":"MJ09-M-Yellow","id":348,"status":1,"name":"Taurus Elements Shell-M-Yellow","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"60","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","url_key":"taurus-elements-shell-m-yellow","msrp_display_actual_price_type":"0"},{"sku":"MJ09-L-Blue","id":349,"status":1,"name":"Taurus Elements Shell-L-Blue","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"50","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","url_key":"taurus-elements-shell-l-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ09-L-White","id":350,"status":1,"name":"Taurus Elements Shell-L-White","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"59","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","url_key":"taurus-elements-shell-l-white","msrp_display_actual_price_type":"0"},{"sku":"MJ09-L-Yellow","id":351,"status":1,"name":"Taurus Elements Shell-L-Yellow","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"60","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","url_key":"taurus-elements-shell-l-yellow","msrp_display_actual_price_type":"0","final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65},{"sku":"MJ09-XL-Blue","id":352,"status":1,"name":"Taurus Elements Shell-XL-Blue","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"50","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","url_key":"taurus-elements-shell-xl-blue","msrp_display_actual_price_type":"0","final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65},{"sku":"MJ09-XL-White","id":353,"status":1,"name":"Taurus Elements Shell-XL-White","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"59","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","url_key":"taurus-elements-shell-xl-white","msrp_display_actual_price_type":"0","final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65},{"sku":"MJ09-XL-Yellow","id":354,"status":1,"name":"Taurus Elements Shell-XL-Yellow","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"60","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","url_key":"taurus-elements-shell-xl-yellow","msrp_display_actual_price_type":"0","final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65}],"configurable_options":[{"id":39,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":355,"attribute_code":"color"},{"id":38,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":355,"attribute_code":"size"}],"color_options":[50,59,60],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-355.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"387","_score":1,"_source":{"id":387,"sku":"MJ11","name":"Typhon Performance Fleece-lined Jacket","attribute_set_id":9,"price":60,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                \n

                • Black full-zip flight jacket.
                • Cocona® wicking fiber.
                • Machine wash/dry.

                ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"typhon-performance-fleece-lined-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,37,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[117,122,124,126,129],"pattern":"197","climate":[202,208,210,211],"slug":"typhon-performance-fleece-lined-jacket-387","links":{},"stock":{"item_id":387,"product_id":387,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ11-XS-Black","id":372,"status":1,"name":"Typhon Performance Fleece-lined Jacket-XS-Black","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"49","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MJ11-XS-Green","id":373,"status":1,"name":"Typhon Performance Fleece-lined Jacket-XS-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"53","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-XS-Red","id":374,"status":1,"name":"Typhon Performance Fleece-lined Jacket-XS-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"58","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-xs-red","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-S-Black","id":375,"status":1,"name":"Typhon Performance Fleece-lined Jacket-S-Black","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"49","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-s-black","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-S-Green","id":376,"status":1,"name":"Typhon Performance Fleece-lined Jacket-S-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"53","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-s-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-S-Red","id":377,"status":1,"name":"Typhon Performance Fleece-lined Jacket-S-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"58","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-s-red","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-M-Black","id":378,"status":1,"name":"Typhon Performance Fleece-lined Jacket-M-Black","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"49","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-m-black","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-M-Green","id":379,"status":1,"name":"Typhon Performance Fleece-lined Jacket-M-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"53","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-m-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-M-Red","id":380,"status":1,"name":"Typhon Performance Fleece-lined Jacket-M-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"58","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-m-red","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-L-Black","id":381,"status":1,"name":"Typhon Performance Fleece-lined Jacket-L-Black","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"49","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-l-black","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-L-Green","id":382,"status":1,"name":"Typhon Performance Fleece-lined Jacket-L-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"53","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-l-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-L-Red","id":383,"status":1,"name":"Typhon Performance Fleece-lined Jacket-L-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"58","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-l-red","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-XL-Black","id":384,"status":1,"name":"Typhon Performance Fleece-lined Jacket-XL-Black","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"49","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-xl-black","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-XL-Green","id":385,"status":1,"name":"Typhon Performance Fleece-lined Jacket-XL-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"53","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-XL-Red","id":386,"status":1,"name":"Typhon Performance Fleece-lined Jacket-XL-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"58","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60}],"configurable_options":[{"id":43,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":387,"attribute_code":"color"},{"id":42,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":387,"attribute_code":"size"}],"color_options":[49,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-387.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"419","_score":1,"_source":{"id":419,"sku":"MJ03","name":"Montana Wind Jacket","attribute_set_id":9,"price":49,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                \n

                Adjustable hood.
                Split pocket.
                Thumb holes.
                Machine wash/hang to dry.

                ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"montana-wind-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":[120,121,124,126,129],"pattern":"197","climate":[204,206,208,210],"slug":"montana-wind-jacket-419","links":{},"stock":{"item_id":419,"product_id":419,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ03-XS-Black","id":404,"status":1,"name":"Montana Wind Jacket-XS-Black","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"49","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","url_key":"montana-wind-jacket-xs-black","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-XS-Green","id":405,"status":1,"name":"Montana Wind Jacket-XS-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"53","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","url_key":"montana-wind-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-XS-Red","id":406,"status":1,"name":"Montana Wind Jacket-XS-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"58","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","url_key":"montana-wind-jacket-xs-red","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-S-Black","id":407,"status":1,"name":"Montana Wind Jacket-S-Black","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"49","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","url_key":"montana-wind-jacket-s-black","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-S-Green","id":408,"status":1,"name":"Montana Wind Jacket-S-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"53","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","url_key":"montana-wind-jacket-s-green","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-S-Red","id":409,"status":1,"name":"Montana Wind Jacket-S-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"58","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","url_key":"montana-wind-jacket-s-red","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-M-Black","id":410,"status":1,"name":"Montana Wind Jacket-M-Black","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"49","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","url_key":"montana-wind-jacket-m-black","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-M-Green","id":411,"status":1,"name":"Montana Wind Jacket-M-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"53","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","url_key":"montana-wind-jacket-m-green","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-M-Red","id":412,"status":1,"name":"Montana Wind Jacket-M-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"58","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","url_key":"montana-wind-jacket-m-red","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-L-Black","id":413,"status":1,"name":"Montana Wind Jacket-L-Black","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"49","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","url_key":"montana-wind-jacket-l-black","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-L-Green","id":414,"status":1,"name":"Montana Wind Jacket-L-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"53","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","url_key":"montana-wind-jacket-l-green","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-L-Red","id":415,"status":1,"name":"Montana Wind Jacket-L-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"58","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","url_key":"montana-wind-jacket-l-red","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-XL-Black","id":416,"status":1,"name":"Montana Wind Jacket-XL-Black","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"49","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","url_key":"montana-wind-jacket-xl-black","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-XL-Green","id":417,"status":1,"name":"Montana Wind Jacket-XL-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"53","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","url_key":"montana-wind-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-XL-Red","id":418,"status":1,"name":"Montana Wind Jacket-XL-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"58","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","url_key":"montana-wind-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49}],"configurable_options":[{"id":47,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":419,"attribute_code":"color"},{"id":46,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":419,"attribute_code":"size"}],"color_options":[49,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-419.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"403","_score":1,"_source":{"id":403,"sku":"MJ06","name":"Jupiter All-Weather Trainer ","attribute_set_id":9,"price":56.99,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                \n

                • Relaxed fit.
                • Hand pockets.
                • Machine wash/dry.
                • Reflective safety trim.

                ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"jupiter-all-weather-trainer","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,146,37],"eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[117,120,125,129],"pattern":"197","climate":[202,205,206,208,209],"slug":"jupiter-all-weather-trainer-403","links":{},"stock":{"item_id":403,"product_id":403,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ06-XS-Blue","id":388,"status":1,"name":"Jupiter All-Weather Trainer -XS-Blue","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"167","color":"50","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","url_key":"jupiter-all-weather-trainer-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ06-XS-Green","id":389,"status":1,"name":"Jupiter All-Weather Trainer -XS-Green","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"167","color":"53","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","url_key":"jupiter-all-weather-trainer-xs-green","msrp_display_actual_price_type":"0"},{"sku":"MJ06-XS-Purple","id":390,"status":1,"name":"Jupiter All-Weather Trainer -XS-Purple","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"167","color":"57","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","url_key":"jupiter-all-weather-trainer-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ06-S-Blue","id":391,"status":1,"name":"Jupiter All-Weather Trainer -S-Blue","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"168","color":"50","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","url_key":"jupiter-all-weather-trainer-s-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ06-S-Green","id":392,"status":1,"name":"Jupiter All-Weather Trainer -S-Green","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"168","color":"53","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","url_key":"jupiter-all-weather-trainer-s-green","msrp_display_actual_price_type":"0"},{"sku":"MJ06-S-Purple","id":393,"status":1,"name":"Jupiter All-Weather Trainer -S-Purple","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"168","color":"57","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","url_key":"jupiter-all-weather-trainer-s-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ06-M-Blue","id":394,"status":1,"name":"Jupiter All-Weather Trainer -M-Blue","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"169","color":"50","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","url_key":"jupiter-all-weather-trainer-m-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ06-M-Green","id":395,"status":1,"name":"Jupiter All-Weather Trainer -M-Green","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"169","color":"53","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","url_key":"jupiter-all-weather-trainer-m-green","msrp_display_actual_price_type":"0"},{"sku":"MJ06-M-Purple","id":396,"status":1,"name":"Jupiter All-Weather Trainer -M-Purple","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"169","color":"57","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","url_key":"jupiter-all-weather-trainer-m-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ06-L-Blue","id":397,"status":1,"name":"Jupiter All-Weather Trainer -L-Blue","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"170","color":"50","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","url_key":"jupiter-all-weather-trainer-l-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ06-L-Green","id":398,"status":1,"name":"Jupiter All-Weather Trainer -L-Green","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"170","color":"53","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","url_key":"jupiter-all-weather-trainer-l-green","msrp_display_actual_price_type":"0"},{"sku":"MJ06-L-Purple","id":399,"status":1,"name":"Jupiter All-Weather Trainer -L-Purple","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"170","color":"57","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","url_key":"jupiter-all-weather-trainer-l-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ06-XL-Blue","id":400,"status":1,"name":"Jupiter All-Weather Trainer -XL-Blue","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"171","color":"50","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","url_key":"jupiter-all-weather-trainer-xl-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ06-XL-Green","id":401,"status":1,"name":"Jupiter All-Weather Trainer -XL-Green","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"171","color":"53","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","url_key":"jupiter-all-weather-trainer-xl-green","msrp_display_actual_price_type":"0","final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99},{"sku":"MJ06-XL-Purple","id":402,"status":1,"name":"Jupiter All-Weather Trainer -XL-Purple","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"171","color":"57","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","url_key":"jupiter-all-weather-trainer-xl-purple","msrp_display_actual_price_type":"0","final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99}],"configurable_options":[{"id":45,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"}],"product_id":403,"attribute_code":"color"},{"id":44,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":403,"attribute_code":"size"}],"color_options":[50,53,57],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-403.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"435","_score":1,"_source":{"id":435,"sku":"MJ12","name":"Proteus Fitness Jackshirt","attribute_set_id":9,"price":45,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                \n

                • 1/4 zip. Stand-up collar.
                • Machine wash/dry.
                • Quilted inner layer.

                ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"proteus-fitness-jackshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,145,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[117,122,125,128],"pattern":"197","climate":[202,204,205,208],"slug":"proteus-fitness-jackshirt-435","links":{},"stock":{"item_id":435,"product_id":435,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ12-XS-Black","id":420,"status":1,"name":"Proteus Fitness Jackshirt-XS-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"49","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","url_key":"proteus-fitness-jackshirt-xs-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-XS-Blue","id":421,"status":1,"name":"Proteus Fitness Jackshirt-XS-Blue","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"50","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","url_key":"proteus-fitness-jackshirt-xs-blue","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-XS-Orange","id":422,"status":1,"name":"Proteus Fitness Jackshirt-XS-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"56","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","url_key":"proteus-fitness-jackshirt-xs-orange","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-S-Black","id":423,"status":1,"name":"Proteus Fitness Jackshirt-S-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"49","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","url_key":"proteus-fitness-jackshirt-s-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-S-Blue","id":424,"status":1,"name":"Proteus Fitness Jackshirt-S-Blue","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"50","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","url_key":"proteus-fitness-jackshirt-s-blue","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-S-Orange","id":425,"status":1,"name":"Proteus Fitness Jackshirt-S-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"56","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","url_key":"proteus-fitness-jackshirt-s-orange","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-M-Black","id":426,"status":1,"name":"Proteus Fitness Jackshirt-M-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"49","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","url_key":"proteus-fitness-jackshirt-m-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-M-Blue","id":427,"status":1,"name":"Proteus Fitness Jackshirt-M-Blue","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"50","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","url_key":"proteus-fitness-jackshirt-m-blue","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-M-Orange","id":428,"status":1,"name":"Proteus Fitness Jackshirt-M-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"56","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","url_key":"proteus-fitness-jackshirt-m-orange","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-L-Black","id":429,"status":1,"name":"Proteus Fitness Jackshirt-L-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"49","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","url_key":"proteus-fitness-jackshirt-l-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-L-Blue","id":430,"status":1,"name":"Proteus Fitness Jackshirt-L-Blue","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"50","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","url_key":"proteus-fitness-jackshirt-l-blue","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-L-Orange","id":431,"status":1,"name":"Proteus Fitness Jackshirt-L-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"56","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","url_key":"proteus-fitness-jackshirt-l-orange","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-XL-Black","id":432,"status":1,"name":"Proteus Fitness Jackshirt-XL-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"49","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","url_key":"proteus-fitness-jackshirt-xl-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-XL-Blue","id":433,"status":1,"name":"Proteus Fitness Jackshirt-XL-Blue","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"50","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","url_key":"proteus-fitness-jackshirt-xl-blue","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-XL-Orange","id":434,"status":1,"name":"Proteus Fitness Jackshirt-XL-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"56","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","url_key":"proteus-fitness-jackshirt-xl-orange","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45}],"configurable_options":[{"id":49,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":435,"attribute_code":"color"},{"id":48,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":435,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-435.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"404","_score":1,"_source":{"id":404,"sku":"MJ03-XS-Black","name":"Montana Wind Jacket-XS-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                \n

                Adjustable hood.
                Split pocket.
                Thumb holes.
                Machine wash/hang to dry.

                ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"montana-wind-jacket-xs-black-404","links":{},"stock":{"item_id":404,"product_id":404,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xs-black-404.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"416","_score":1,"_source":{"id":416,"sku":"MJ03-XL-Black","name":"Montana Wind Jacket-XL-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                \n

                Adjustable hood.
                Split pocket.
                Thumb holes.
                Machine wash/hang to dry.

                ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"montana-wind-jacket-xl-black-416","links":{},"stock":{"item_id":416,"product_id":416,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xl-black-416.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"420","_score":1,"_source":{"id":420,"sku":"MJ12-XS-Black","name":"Proteus Fitness Jackshirt-XS-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                \n

                • 1/4 zip. Stand-up collar.
                • Machine wash/dry.
                • Quilted inner layer.

                ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"proteus-fitness-jackshirt-xs-black-420","links":{},"stock":{"item_id":420,"product_id":420,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xs-black-420.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"415","_score":1,"_source":{"id":415,"sku":"MJ03-L-Red","name":"Montana Wind Jacket-L-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                \n

                Adjustable hood.
                Split pocket.
                Thumb holes.
                Machine wash/hang to dry.

                ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"montana-wind-jacket-l-red-415","links":{},"stock":{"item_id":415,"product_id":415,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-l-red-415.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"418","_score":1,"_source":{"id":418,"sku":"MJ03-XL-Red","name":"Montana Wind Jacket-XL-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                \n

                Adjustable hood.
                Split pocket.
                Thumb holes.
                Machine wash/hang to dry.

                ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"montana-wind-jacket-xl-red-418","links":{},"stock":{"item_id":418,"product_id":418,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xl-red-418.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"417","_score":1,"_source":{"id":417,"sku":"MJ03-XL-Green","name":"Montana Wind Jacket-XL-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                \n

                Adjustable hood.
                Split pocket.
                Thumb holes.
                Machine wash/hang to dry.

                ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"montana-wind-jacket-xl-green-417","links":{},"stock":{"item_id":417,"product_id":417,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xl-green-417.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"424","_score":1,"_source":{"id":424,"sku":"MJ12-S-Blue","name":"Proteus Fitness Jackshirt-S-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                \n

                • 1/4 zip. Stand-up collar.
                • Machine wash/dry.
                • Quilted inner layer.

                ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"proteus-fitness-jackshirt-s-blue-424","links":{},"stock":{"item_id":424,"product_id":424,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-s-blue-424.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"425","_score":1,"_source":{"id":425,"sku":"MJ12-S-Orange","name":"Proteus Fitness Jackshirt-S-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                \n

                • 1/4 zip. Stand-up collar.
                • Machine wash/dry.
                • Quilted inner layer.

                ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"proteus-fitness-jackshirt-s-orange-425","links":{},"stock":{"item_id":425,"product_id":425,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-s-orange-425.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"431","_score":1,"_source":{"id":431,"sku":"MJ12-L-Orange","name":"Proteus Fitness Jackshirt-L-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                \n

                • 1/4 zip. Stand-up collar.
                • Machine wash/dry.
                • Quilted inner layer.

                ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"proteus-fitness-jackshirt-l-orange-431","links":{},"stock":{"item_id":431,"product_id":431,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-l-orange-431.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"426","_score":1,"_source":{"id":426,"sku":"MJ12-M-Black","name":"Proteus Fitness Jackshirt-M-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                \n

                • 1/4 zip. Stand-up collar.
                • Machine wash/dry.
                • Quilted inner layer.

                ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"proteus-fitness-jackshirt-m-black-426","links":{},"stock":{"item_id":426,"product_id":426,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-m-black-426.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"433","_score":1,"_source":{"id":433,"sku":"MJ12-XL-Blue","name":"Proteus Fitness Jackshirt-XL-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                \n

                • 1/4 zip. Stand-up collar.
                • Machine wash/dry.
                • Quilted inner layer.

                ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"proteus-fitness-jackshirt-xl-blue-433","links":{},"stock":{"item_id":433,"product_id":433,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xl-blue-433.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"429","_score":1,"_source":{"id":429,"sku":"MJ12-L-Black","name":"Proteus Fitness Jackshirt-L-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                \n

                • 1/4 zip. Stand-up collar.
                • Machine wash/dry.
                • Quilted inner layer.

                ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"proteus-fitness-jackshirt-l-black-429","links":{},"stock":{"item_id":429,"product_id":429,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-l-black-429.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"427","_score":1,"_source":{"id":427,"sku":"MJ12-M-Blue","name":"Proteus Fitness Jackshirt-M-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                \n

                • 1/4 zip. Stand-up collar.
                • Machine wash/dry.
                • Quilted inner layer.

                ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"proteus-fitness-jackshirt-m-blue-427","links":{},"stock":{"item_id":427,"product_id":427,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-m-blue-427.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"443","_score":1,"_source":{"id":443,"sku":"MS04-M-Orange","name":"Gobi HeatTec® Tee-M-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                \n

                • Orange micropolyester shirt.
                • HeatTec® wicking fabric.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gobi-heattec-and-reg-tee-m-orange-443","links":{},"stock":{"item_id":443,"product_id":443,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-m-orange-443.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"432","_score":1,"_source":{"id":432,"sku":"MJ12-XL-Black","name":"Proteus Fitness Jackshirt-XL-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                \n

                • 1/4 zip. Stand-up collar.
                • Machine wash/dry.
                • Quilted inner layer.

                ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"proteus-fitness-jackshirt-xl-black-432","links":{},"stock":{"item_id":432,"product_id":432,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xl-black-432.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"428","_score":1,"_source":{"id":428,"sku":"MJ12-M-Orange","name":"Proteus Fitness Jackshirt-M-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                \n

                • 1/4 zip. Stand-up collar.
                • Machine wash/dry.
                • Quilted inner layer.

                ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"proteus-fitness-jackshirt-m-orange-428","links":{},"stock":{"item_id":428,"product_id":428,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-m-orange-428.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"421","_score":1,"_source":{"id":421,"sku":"MJ12-XS-Blue","name":"Proteus Fitness Jackshirt-XS-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                \n

                • 1/4 zip. Stand-up collar.
                • Machine wash/dry.
                • Quilted inner layer.

                ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"proteus-fitness-jackshirt-xs-blue-421","links":{},"stock":{"item_id":421,"product_id":421,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xs-blue-421.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"430","_score":1,"_source":{"id":430,"sku":"MJ12-L-Blue","name":"Proteus Fitness Jackshirt-L-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                \n

                • 1/4 zip. Stand-up collar.
                • Machine wash/dry.
                • Quilted inner layer.

                ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"proteus-fitness-jackshirt-l-blue-430","links":{},"stock":{"item_id":430,"product_id":430,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-l-blue-430.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"438","_score":1,"_source":{"id":438,"sku":"MS04-XS-Red","name":"Gobi HeatTec® Tee-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                \n

                • Orange micropolyester shirt.
                • HeatTec® wicking fabric.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gobi-heattec-and-reg-tee-xs-red-438","links":{},"stock":{"item_id":438,"product_id":438,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xs-red-438.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"423","_score":1,"_source":{"id":423,"sku":"MJ12-S-Black","name":"Proteus Fitness Jackshirt-S-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                \n

                • 1/4 zip. Stand-up collar.
                • Machine wash/dry.
                • Quilted inner layer.

                ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"proteus-fitness-jackshirt-s-black-423","links":{},"stock":{"item_id":423,"product_id":423,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-s-black-423.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"439","_score":1,"_source":{"id":439,"sku":"MS04-S-Black","name":"Gobi HeatTec® Tee-S-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                \n

                • Orange micropolyester shirt.
                • HeatTec® wicking fabric.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gobi-heattec-and-reg-tee-s-black-439","links":{},"stock":{"item_id":439,"product_id":439,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-s-black-439.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"434","_score":1,"_source":{"id":434,"sku":"MJ12-XL-Orange","name":"Proteus Fitness Jackshirt-XL-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                \n

                • 1/4 zip. Stand-up collar.
                • Machine wash/dry.
                • Quilted inner layer.

                ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"proteus-fitness-jackshirt-xl-orange-434","links":{},"stock":{"item_id":434,"product_id":434,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xl-orange-434.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"442","_score":1,"_source":{"id":442,"sku":"MS04-M-Black","name":"Gobi HeatTec® Tee-M-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                \n

                • Orange micropolyester shirt.
                • HeatTec® wicking fabric.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gobi-heattec-and-reg-tee-m-black-442","links":{},"stock":{"item_id":442,"product_id":442,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-m-black-442.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"437","_score":1,"_source":{"id":437,"sku":"MS04-XS-Orange","name":"Gobi HeatTec® Tee-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                \n

                • Orange micropolyester shirt.
                • HeatTec® wicking fabric.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gobi-heattec-and-reg-tee-xs-orange-437","links":{},"stock":{"item_id":437,"product_id":437,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xs-orange-437.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"436","_score":1,"_source":{"id":436,"sku":"MS04-XS-Black","name":"Gobi HeatTec® Tee-XS-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                \n

                • Orange micropolyester shirt.
                • HeatTec® wicking fabric.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gobi-heattec-and-reg-tee-xs-black-436","links":{},"stock":{"item_id":436,"product_id":436,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xs-black-436.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"440","_score":1,"_source":{"id":440,"sku":"MS04-S-Orange","name":"Gobi HeatTec® Tee-S-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                \n

                • Orange micropolyester shirt.
                • HeatTec® wicking fabric.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gobi-heattec-and-reg-tee-s-orange-440","links":{},"stock":{"item_id":440,"product_id":440,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-s-orange-440.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"447","_score":1,"_source":{"id":447,"sku":"MS04-L-Red","name":"Gobi HeatTec® Tee-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                \n

                • Orange micropolyester shirt.
                • HeatTec® wicking fabric.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gobi-heattec-and-reg-tee-l-red-447","links":{},"stock":{"item_id":447,"product_id":447,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-l-red-447.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"441","_score":1,"_source":{"id":441,"sku":"MS04-S-Red","name":"Gobi HeatTec® Tee-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                \n

                • Orange micropolyester shirt.
                • HeatTec® wicking fabric.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gobi-heattec-and-reg-tee-s-red-441","links":{},"stock":{"item_id":441,"product_id":441,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-s-red-441.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"449","_score":1,"_source":{"id":449,"sku":"MS04-XL-Orange","name":"Gobi HeatTec® Tee-XL-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                \n

                • Orange micropolyester shirt.
                • HeatTec® wicking fabric.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gobi-heattec-and-reg-tee-xl-orange-449","links":{},"stock":{"item_id":449,"product_id":449,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xl-orange-449.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"444","_score":1,"_source":{"id":444,"sku":"MS04-M-Red","name":"Gobi HeatTec® Tee-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                \n

                • Orange micropolyester shirt.
                • HeatTec® wicking fabric.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gobi-heattec-and-reg-tee-m-red-444","links":{},"stock":{"item_id":444,"product_id":444,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-m-red-444.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"448","_score":1,"_source":{"id":448,"sku":"MS04-XL-Black","name":"Gobi HeatTec® Tee-XL-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                \n

                • Orange micropolyester shirt.
                • HeatTec® wicking fabric.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gobi-heattec-and-reg-tee-xl-black-448","links":{},"stock":{"item_id":448,"product_id":448,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xl-black-448.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"446","_score":1,"_source":{"id":446,"sku":"MS04-L-Orange","name":"Gobi HeatTec® Tee-L-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                \n

                • Orange micropolyester shirt.
                • HeatTec® wicking fabric.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gobi-heattec-and-reg-tee-l-orange-446","links":{},"stock":{"item_id":446,"product_id":446,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-l-orange-446.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"376","_score":1,"_source":{"id":376,"sku":"MJ11-S-Green","name":"Typhon Performance Fleece-lined Jacket-S-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                \n

                • Black full-zip flight jacket.
                • Cocona® wicking fiber.
                • Machine wash/dry.

                ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"typhon-performance-fleece-lined-jacket-s-green-376","links":{},"stock":{"item_id":376,"product_id":376,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-s-green-376.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"382","_score":1,"_source":{"id":382,"sku":"MJ11-L-Green","name":"Typhon Performance Fleece-lined Jacket-L-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                \n

                • Black full-zip flight jacket.
                • Cocona® wicking fiber.
                • Machine wash/dry.

                ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"typhon-performance-fleece-lined-jacket-l-green-382","links":{},"stock":{"item_id":382,"product_id":382,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-l-green-382.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"368","_score":1,"_source":{"id":368,"sku":"MJ10-XL-Black","name":"Mars HeatTech™ Pullover-XL-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                \n

                • Red 1/4 zip pullover.
                • Adjustable VELCRO® sleeve cuffs.
                • Two hand pockets.
                • Napoleon pocket.
                • Machine wash/dry

                ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mars-heattech-and-trade-pullover-xl-black-368","links":{},"stock":{"item_id":368,"product_id":368,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xl-black-368.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"379","_score":1,"_source":{"id":379,"sku":"MJ11-M-Green","name":"Typhon Performance Fleece-lined Jacket-M-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                \n

                • Black full-zip flight jacket.
                • Cocona® wicking fiber.
                • Machine wash/dry.

                ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"typhon-performance-fleece-lined-jacket-m-green-379","links":{},"stock":{"item_id":379,"product_id":379,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-m-green-379.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"373","_score":1,"_source":{"id":373,"sku":"MJ11-XS-Green","name":"Typhon Performance Fleece-lined Jacket-XS-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                \n

                • Black full-zip flight jacket.
                • Cocona® wicking fiber.
                • Machine wash/dry.

                ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"typhon-performance-fleece-lined-jacket-xs-green-373","links":{},"stock":{"item_id":373,"product_id":373,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xs-green-373.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"389","_score":1,"_source":{"id":389,"sku":"MJ06-XS-Green","name":"Jupiter All-Weather Trainer -XS-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                \n

                • Relaxed fit.
                • Hand pockets.
                • Machine wash/dry.
                • Reflective safety trim.

                ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jupiter-all-weather-trainer-xs-green-389","links":{},"stock":{"item_id":389,"product_id":389,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xs-green-389.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"384","_score":1,"_source":{"id":384,"sku":"MJ11-XL-Black","name":"Typhon Performance Fleece-lined Jacket-XL-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                \n

                • Black full-zip flight jacket.
                • Cocona® wicking fiber.
                • Machine wash/dry.

                ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"typhon-performance-fleece-lined-jacket-xl-black-384","links":{},"stock":{"item_id":384,"product_id":384,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xl-black-384.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"377","_score":1,"_source":{"id":377,"sku":"MJ11-S-Red","name":"Typhon Performance Fleece-lined Jacket-S-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                \n

                • Black full-zip flight jacket.
                • Cocona® wicking fiber.
                • Machine wash/dry.

                ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"typhon-performance-fleece-lined-jacket-s-red-377","links":{},"stock":{"item_id":377,"product_id":377,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-s-red-377.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"374","_score":1,"_source":{"id":374,"sku":"MJ11-XS-Red","name":"Typhon Performance Fleece-lined Jacket-XS-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                \n

                • Black full-zip flight jacket.
                • Cocona® wicking fiber.
                • Machine wash/dry.

                ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"typhon-performance-fleece-lined-jacket-xs-red-374","links":{},"stock":{"item_id":374,"product_id":374,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xs-red-374.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"388","_score":1,"_source":{"id":388,"sku":"MJ06-XS-Blue","name":"Jupiter All-Weather Trainer -XS-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                \n

                • Relaxed fit.
                • Hand pockets.
                • Machine wash/dry.
                • Reflective safety trim.

                ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jupiter-all-weather-trainer-xs-blue-388","links":{},"stock":{"item_id":388,"product_id":388,"stock_id":1,"qty":49,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xs-blue-388.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"392","_score":1,"_source":{"id":392,"sku":"MJ06-S-Green","name":"Jupiter All-Weather Trainer -S-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                \n

                • Relaxed fit.
                • Hand pockets.
                • Machine wash/dry.
                • Reflective safety trim.

                ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jupiter-all-weather-trainer-s-green-392","links":{},"stock":{"item_id":392,"product_id":392,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-s-green-392.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"385","_score":1,"_source":{"id":385,"sku":"MJ11-XL-Green","name":"Typhon Performance Fleece-lined Jacket-XL-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                \n

                • Black full-zip flight jacket.
                • Cocona® wicking fiber.
                • Machine wash/dry.

                ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"typhon-performance-fleece-lined-jacket-xl-green-385","links":{},"stock":{"item_id":385,"product_id":385,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xl-green-385.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"381","_score":1,"_source":{"id":381,"sku":"MJ11-L-Black","name":"Typhon Performance Fleece-lined Jacket-L-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                \n

                • Black full-zip flight jacket.
                • Cocona® wicking fiber.
                • Machine wash/dry.

                ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"typhon-performance-fleece-lined-jacket-l-black-381","links":{},"stock":{"item_id":381,"product_id":381,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-l-black-381.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"383","_score":1,"_source":{"id":383,"sku":"MJ11-L-Red","name":"Typhon Performance Fleece-lined Jacket-L-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                \n

                • Black full-zip flight jacket.
                • Cocona® wicking fiber.
                • Machine wash/dry.

                ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"typhon-performance-fleece-lined-jacket-l-red-383","links":{},"stock":{"item_id":383,"product_id":383,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-l-red-383.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"393","_score":1,"_source":{"id":393,"sku":"MJ06-S-Purple","name":"Jupiter All-Weather Trainer -S-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                \n

                • Relaxed fit.
                • Hand pockets.
                • Machine wash/dry.
                • Reflective safety trim.

                ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jupiter-all-weather-trainer-s-purple-393","links":{},"stock":{"item_id":393,"product_id":393,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-s-purple-393.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"395","_score":1,"_source":{"id":395,"sku":"MJ06-M-Green","name":"Jupiter All-Weather Trainer -M-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                \n

                • Relaxed fit.
                • Hand pockets.
                • Machine wash/dry.
                • Reflective safety trim.

                ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jupiter-all-weather-trainer-m-green-395","links":{},"stock":{"item_id":395,"product_id":395,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-m-green-395.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"394","_score":1,"_source":{"id":394,"sku":"MJ06-M-Blue","name":"Jupiter All-Weather Trainer -M-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                \n

                • Relaxed fit.
                • Hand pockets.
                • Machine wash/dry.
                • Reflective safety trim.

                ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jupiter-all-weather-trainer-m-blue-394","links":{},"stock":{"item_id":394,"product_id":394,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-m-blue-394.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"397","_score":1,"_source":{"id":397,"sku":"MJ06-L-Blue","name":"Jupiter All-Weather Trainer -L-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                \n

                • Relaxed fit.
                • Hand pockets.
                • Machine wash/dry.
                • Reflective safety trim.

                ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jupiter-all-weather-trainer-l-blue-397","links":{},"stock":{"item_id":397,"product_id":397,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-l-blue-397.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"391","_score":1,"_source":{"id":391,"sku":"MJ06-S-Blue","name":"Jupiter All-Weather Trainer -S-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                \n

                • Relaxed fit.
                • Hand pockets.
                • Machine wash/dry.
                • Reflective safety trim.

                ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jupiter-all-weather-trainer-s-blue-391","links":{},"stock":{"item_id":391,"product_id":391,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-s-blue-391.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"375","_score":1,"_source":{"id":375,"sku":"MJ11-S-Black","name":"Typhon Performance Fleece-lined Jacket-S-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                \n

                • Black full-zip flight jacket.
                • Cocona® wicking fiber.
                • Machine wash/dry.

                ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"typhon-performance-fleece-lined-jacket-s-black-375","links":{},"stock":{"item_id":375,"product_id":375,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-s-black-375.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"363","_score":1,"_source":{"id":363,"sku":"MJ10-M-Orange","name":"Mars HeatTech™ Pullover-M-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                \n

                • Red 1/4 zip pullover.
                • Adjustable VELCRO® sleeve cuffs.
                • Two hand pockets.
                • Napoleon pocket.
                • Machine wash/dry

                ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mars-heattech-and-trade-pullover-m-orange-363","links":{},"stock":{"item_id":363,"product_id":363,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-m-orange-363.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"369","_score":1,"_source":{"id":369,"sku":"MJ10-XL-Orange","name":"Mars HeatTech™ Pullover-XL-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                \n

                • Red 1/4 zip pullover.
                • Adjustable VELCRO® sleeve cuffs.
                • Two hand pockets.
                • Napoleon pocket.
                • Machine wash/dry

                ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mars-heattech-and-trade-pullover-xl-orange-369","links":{},"stock":{"item_id":369,"product_id":369,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xl-orange-369.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"367","_score":1,"_source":{"id":367,"sku":"MJ10-L-Red","name":"Mars HeatTech™ Pullover-L-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                \n

                • Red 1/4 zip pullover.
                • Adjustable VELCRO® sleeve cuffs.
                • Two hand pockets.
                • Napoleon pocket.
                • Machine wash/dry

                ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mars-heattech-and-trade-pullover-l-red-367","links":{},"stock":{"item_id":367,"product_id":367,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-l-red-367.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"386","_score":1,"_source":{"id":386,"sku":"MJ11-XL-Red","name":"Typhon Performance Fleece-lined Jacket-XL-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                \n

                • Black full-zip flight jacket.
                • Cocona® wicking fiber.
                • Machine wash/dry.

                ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"typhon-performance-fleece-lined-jacket-xl-red-386","links":{},"stock":{"item_id":386,"product_id":386,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xl-red-386.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"380","_score":1,"_source":{"id":380,"sku":"MJ11-M-Red","name":"Typhon Performance Fleece-lined Jacket-M-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                \n

                • Black full-zip flight jacket.
                • Cocona® wicking fiber.
                • Machine wash/dry.

                ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"typhon-performance-fleece-lined-jacket-m-red-380","links":{},"stock":{"item_id":380,"product_id":380,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-m-red-380.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"398","_score":1,"_source":{"id":398,"sku":"MJ06-L-Green","name":"Jupiter All-Weather Trainer -L-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                \n

                • Relaxed fit.
                • Hand pockets.
                • Machine wash/dry.
                • Reflective safety trim.

                ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jupiter-all-weather-trainer-l-green-398","links":{},"stock":{"item_id":398,"product_id":398,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-l-green-398.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"390","_score":1,"_source":{"id":390,"sku":"MJ06-XS-Purple","name":"Jupiter All-Weather Trainer -XS-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                \n

                • Relaxed fit.
                • Hand pockets.
                • Machine wash/dry.
                • Reflective safety trim.

                ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jupiter-all-weather-trainer-xs-purple-390","links":{},"stock":{"item_id":390,"product_id":390,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xs-purple-390.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"399","_score":1,"_source":{"id":399,"sku":"MJ06-L-Purple","name":"Jupiter All-Weather Trainer -L-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                \n

                • Relaxed fit.
                • Hand pockets.
                • Machine wash/dry.
                • Reflective safety trim.

                ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jupiter-all-weather-trainer-l-purple-399","links":{},"stock":{"item_id":399,"product_id":399,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-l-purple-399.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"400","_score":1,"_source":{"id":400,"sku":"MJ06-XL-Blue","name":"Jupiter All-Weather Trainer -XL-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                \n

                • Relaxed fit.
                • Hand pockets.
                • Machine wash/dry.
                • Reflective safety trim.

                ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jupiter-all-weather-trainer-xl-blue-400","links":{},"stock":{"item_id":400,"product_id":400,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xl-blue-400.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"396","_score":1,"_source":{"id":396,"sku":"MJ06-M-Purple","name":"Jupiter All-Weather Trainer -M-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                \n

                • Relaxed fit.
                • Hand pockets.
                • Machine wash/dry.
                • Reflective safety trim.

                ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jupiter-all-weather-trainer-m-purple-396","links":{},"stock":{"item_id":396,"product_id":396,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-m-purple-396.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"408","_score":1,"_source":{"id":408,"sku":"MJ03-S-Green","name":"Montana Wind Jacket-S-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                \n

                Adjustable hood.
                Split pocket.
                Thumb holes.
                Machine wash/hang to dry.

                ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"montana-wind-jacket-s-green-408","links":{},"stock":{"item_id":408,"product_id":408,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-s-green-408.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"405","_score":1,"_source":{"id":405,"sku":"MJ03-XS-Green","name":"Montana Wind Jacket-XS-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                \n

                Adjustable hood.
                Split pocket.
                Thumb holes.
                Machine wash/hang to dry.

                ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"montana-wind-jacket-xs-green-405","links":{},"stock":{"item_id":405,"product_id":405,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xs-green-405.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"411","_score":1,"_source":{"id":411,"sku":"MJ03-M-Green","name":"Montana Wind Jacket-M-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                \n

                Adjustable hood.
                Split pocket.
                Thumb holes.
                Machine wash/hang to dry.

                ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"montana-wind-jacket-m-green-411","links":{},"stock":{"item_id":411,"product_id":411,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-m-green-411.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"402","_score":1,"_source":{"id":402,"sku":"MJ06-XL-Purple","name":"Jupiter All-Weather Trainer -XL-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                \n

                • Relaxed fit.
                • Hand pockets.
                • Machine wash/dry.
                • Reflective safety trim.

                ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jupiter-all-weather-trainer-xl-purple-402","links":{},"stock":{"item_id":402,"product_id":402,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xl-purple-402.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"407","_score":1,"_source":{"id":407,"sku":"MJ03-S-Black","name":"Montana Wind Jacket-S-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                \n

                Adjustable hood.
                Split pocket.
                Thumb holes.
                Machine wash/hang to dry.

                ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"montana-wind-jacket-s-black-407","links":{},"stock":{"item_id":407,"product_id":407,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-s-black-407.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"401","_score":1,"_source":{"id":401,"sku":"MJ06-XL-Green","name":"Jupiter All-Weather Trainer -XL-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                \n

                • Relaxed fit.
                • Hand pockets.
                • Machine wash/dry.
                • Reflective safety trim.

                ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jupiter-all-weather-trainer-xl-green-401","links":{},"stock":{"item_id":401,"product_id":401,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xl-green-401.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"412","_score":1,"_source":{"id":412,"sku":"MJ03-M-Red","name":"Montana Wind Jacket-M-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                \n

                Adjustable hood.
                Split pocket.
                Thumb holes.
                Machine wash/hang to dry.

                ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"montana-wind-jacket-m-red-412","links":{},"stock":{"item_id":412,"product_id":412,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-m-red-412.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"422","_score":1,"_source":{"id":422,"sku":"MJ12-XS-Orange","name":"Proteus Fitness Jackshirt-XS-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                \n

                • 1/4 zip. Stand-up collar.
                • Machine wash/dry.
                • Quilted inner layer.

                ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"proteus-fitness-jackshirt-xs-orange-422","links":{},"stock":{"item_id":422,"product_id":422,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xs-orange-422.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"409","_score":1,"_source":{"id":409,"sku":"MJ03-S-Red","name":"Montana Wind Jacket-S-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                \n

                Adjustable hood.
                Split pocket.
                Thumb holes.
                Machine wash/hang to dry.

                ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"montana-wind-jacket-s-red-409","links":{},"stock":{"item_id":409,"product_id":409,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-s-red-409.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"406","_score":1,"_source":{"id":406,"sku":"MJ03-XS-Red","name":"Montana Wind Jacket-XS-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                \n

                Adjustable hood.
                Split pocket.
                Thumb holes.
                Machine wash/hang to dry.

                ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"montana-wind-jacket-xs-red-406","links":{},"stock":{"item_id":406,"product_id":406,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xs-red-406.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"413","_score":1,"_source":{"id":413,"sku":"MJ03-L-Black","name":"Montana Wind Jacket-L-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                \n

                Adjustable hood.
                Split pocket.
                Thumb holes.
                Machine wash/hang to dry.

                ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"montana-wind-jacket-l-black-413","links":{},"stock":{"item_id":413,"product_id":413,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-l-black-413.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"414","_score":1,"_source":{"id":414,"sku":"MJ03-L-Green","name":"Montana Wind Jacket-L-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                \n

                Adjustable hood.
                Split pocket.
                Thumb holes.
                Machine wash/hang to dry.

                ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"montana-wind-jacket-l-green-414","links":{},"stock":{"item_id":414,"product_id":414,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-l-green-414.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"410","_score":1,"_source":{"id":410,"sku":"MJ03-M-Black","name":"Montana Wind Jacket-M-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                \n

                Adjustable hood.
                Split pocket.
                Thumb holes.
                Machine wash/hang to dry.

                ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"montana-wind-jacket-m-black-410","links":{},"stock":{"item_id":410,"product_id":410,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-m-black-410.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"450","_score":1,"_source":{"id":450,"sku":"MS04-XL-Red","name":"Gobi HeatTec® Tee-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                \n

                • Orange micropolyester shirt.
                • HeatTec® wicking fabric.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gobi-heattec-and-reg-tee-xl-red-450","links":{},"stock":{"item_id":450,"product_id":450,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xl-red-450.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"445","_score":1,"_source":{"id":445,"sku":"MS04-L-Black","name":"Gobi HeatTec® Tee-L-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                \n

                • Orange micropolyester shirt.
                • HeatTec® wicking fabric.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gobi-heattec-and-reg-tee-l-black-445","links":{},"stock":{"item_id":445,"product_id":445,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-l-black-445.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"468","_score":1,"_source":{"id":468,"sku":"MS09-XS-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                \n

                • Royal polyester tee with black accents.
                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-crew-neck-xs-black-468","links":{},"stock":{"item_id":468,"product_id":468,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xs-black-468.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"699","_score":1,"_source":{"id":699,"sku":"MT07","name":"Argus All-Weather Tank","attribute_set_id":9,"price":22,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

                \n

                • Dark gray polyester spandex tank.
                • Reflective details for nighttime visibility.
                • Stash pocket.
                • Anti-chafe flatlock seams.

                ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"argus-all-weather-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"argus-all-weather-tank-699","links":{},"stock":{"item_id":699,"product_id":699,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT07-XS-Gray","id":694,"status":1,"name":"Argus All-Weather Tank-XS-Gray","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"167","color":"52","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","url_key":"argus-all-weather-tank-xs-gray","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"MT07-S-Gray","id":695,"status":1,"name":"Argus All-Weather Tank-S-Gray","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"168","color":"52","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","url_key":"argus-all-weather-tank-s-gray","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"MT07-M-Gray","id":696,"status":1,"name":"Argus All-Weather Tank-M-Gray","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"169","color":"52","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","url_key":"argus-all-weather-tank-m-gray","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"MT07-L-Gray","id":697,"status":1,"name":"Argus All-Weather Tank-L-Gray","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"170","color":"52","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","url_key":"argus-all-weather-tank-l-gray","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"MT07-XL-Gray","id":698,"status":1,"name":"Argus All-Weather Tank-XL-Gray","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"171","color":"52","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","url_key":"argus-all-weather-tank-xl-gray","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22}],"configurable_options":[{"id":87,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"}],"product_id":699,"attribute_code":"color"},{"id":86,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":699,"attribute_code":"size"}],"color_options":[52],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-699.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"675","_score":1,"_source":{"id":675,"sku":"MT03","name":"Primo Endurance Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                \n

                • Red heather tank with gray pocket.
                • Chafe-resistant flatlock seams.
                • Relaxed fit.
                • Contrast topstitching.
                • Machine wash/dry.

                ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"primo-endurance-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"primo-endurance-tank-675","links":{},"stock":{"item_id":675,"product_id":675,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT03-XS-Blue","id":660,"status":1,"name":"Primo Endurance Tank-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"50","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","url_key":"primo-endurance-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-XS-Red","id":661,"status":1,"name":"Primo Endurance Tank-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"58","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","url_key":"primo-endurance-tank-xs-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-XS-Yellow","id":662,"status":1,"name":"Primo Endurance Tank-XS-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"60","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","url_key":"primo-endurance-tank-xs-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-S-Blue","id":663,"status":1,"name":"Primo Endurance Tank-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"50","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","url_key":"primo-endurance-tank-s-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-S-Red","id":664,"status":1,"name":"Primo Endurance Tank-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"58","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","url_key":"primo-endurance-tank-s-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-S-Yellow","id":665,"status":1,"name":"Primo Endurance Tank-S-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"60","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","url_key":"primo-endurance-tank-s-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-M-Blue","id":666,"status":1,"name":"Primo Endurance Tank-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"50","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","url_key":"primo-endurance-tank-m-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-M-Red","id":667,"status":1,"name":"Primo Endurance Tank-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"58","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","url_key":"primo-endurance-tank-m-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-M-Yellow","id":668,"status":1,"name":"Primo Endurance Tank-M-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"60","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","url_key":"primo-endurance-tank-m-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-L-Blue","id":669,"status":1,"name":"Primo Endurance Tank-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"50","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","url_key":"primo-endurance-tank-l-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-L-Red","id":670,"status":1,"name":"Primo Endurance Tank-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"58","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","url_key":"primo-endurance-tank-l-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-L-Yellow","id":671,"status":1,"name":"Primo Endurance Tank-L-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"60","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","url_key":"primo-endurance-tank-l-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-XL-Blue","id":672,"status":1,"name":"Primo Endurance Tank-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"50","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","url_key":"primo-endurance-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-XL-Red","id":673,"status":1,"name":"Primo Endurance Tank-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"58","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","url_key":"primo-endurance-tank-xl-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-XL-Yellow","id":674,"status":1,"name":"Primo Endurance Tank-XL-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"60","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","url_key":"primo-endurance-tank-xl-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":79,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":675,"attribute_code":"color"},{"id":78,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":675,"attribute_code":"size"}],"color_options":[50,58,60],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-675.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"693","_score":1,"_source":{"id":693,"sku":"MT06","name":"Vulcan Weightlifting Tank","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

                \n

                • Black polyester spandex tank.
                • 100% polyester.
                • Freedom of movement.
                • No-chafe seams.

                ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"vulcan-weightlifting-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"vulcan-weightlifting-tank-693","links":{},"stock":{"item_id":693,"product_id":693,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT06-XS-Black","id":688,"status":1,"name":"Vulcan Weightlifting Tank-XS-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"49","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","url_key":"vulcan-weightlifting-tank-xs-black","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MT06-S-Black","id":689,"status":1,"name":"Vulcan Weightlifting Tank-S-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"49","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","url_key":"vulcan-weightlifting-tank-s-black","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MT06-M-Black","id":690,"status":1,"name":"Vulcan Weightlifting Tank-M-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"49","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","url_key":"vulcan-weightlifting-tank-m-black","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MT06-L-Black","id":691,"status":1,"name":"Vulcan Weightlifting Tank-L-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"49","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","url_key":"vulcan-weightlifting-tank-l-black","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MT06-XL-Black","id":692,"status":1,"name":"Vulcan Weightlifting Tank-XL-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"49","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","url_key":"vulcan-weightlifting-tank-xl-black","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28}],"configurable_options":[{"id":85,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"}],"product_id":693,"attribute_code":"color"},{"id":84,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":693,"attribute_code":"size"}],"color_options":[49],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-693.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"659","_score":1,"_source":{"id":659,"sku":"MT02","name":"Tristan Endurance Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                \n

                • White performance tank.
                • Stylish contrast stitching.
                • Relaxed fit.
                • Ribbed crew neckline.
                • Machine wash/dry.

                ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"tristan-endurance-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,149,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"tristan-endurance-tank-659","links":{},"stock":{"item_id":659,"product_id":659,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT02-XS-Gray","id":644,"status":1,"name":"Tristan Endurance Tank-XS-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"52","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","url_key":"tristan-endurance-tank-xs-gray","msrp_display_actual_price_type":"0"},{"sku":"MT02-XS-Red","id":645,"status":1,"name":"Tristan Endurance Tank-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"58","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","url_key":"tristan-endurance-tank-xs-red","msrp_display_actual_price_type":"0"},{"sku":"MT02-XS-White","id":646,"status":1,"name":"Tristan Endurance Tank-XS-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"59","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","url_key":"tristan-endurance-tank-xs-white","msrp_display_actual_price_type":"0"},{"sku":"MT02-S-Gray","id":647,"status":1,"name":"Tristan Endurance Tank-S-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"52","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","url_key":"tristan-endurance-tank-s-gray","msrp_display_actual_price_type":"0"},{"sku":"MT02-S-Red","id":648,"status":1,"name":"Tristan Endurance Tank-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"58","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","url_key":"tristan-endurance-tank-s-red","msrp_display_actual_price_type":"0"},{"sku":"MT02-S-White","id":649,"status":1,"name":"Tristan Endurance Tank-S-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"59","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","url_key":"tristan-endurance-tank-s-white","msrp_display_actual_price_type":"0"},{"sku":"MT02-M-Gray","id":650,"status":1,"name":"Tristan Endurance Tank-M-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"52","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","url_key":"tristan-endurance-tank-m-gray","msrp_display_actual_price_type":"0"},{"sku":"MT02-M-Red","id":651,"status":1,"name":"Tristan Endurance Tank-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"58","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","url_key":"tristan-endurance-tank-m-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT02-M-White","id":652,"status":1,"name":"Tristan Endurance Tank-M-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"59","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","url_key":"tristan-endurance-tank-m-white","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT02-L-Gray","id":653,"status":1,"name":"Tristan Endurance Tank-L-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"52","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","url_key":"tristan-endurance-tank-l-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT02-L-Red","id":654,"status":1,"name":"Tristan Endurance Tank-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"58","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","url_key":"tristan-endurance-tank-l-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT02-L-White","id":655,"status":1,"name":"Tristan Endurance Tank-L-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"59","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","url_key":"tristan-endurance-tank-l-white","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT02-XL-Gray","id":656,"status":1,"name":"Tristan Endurance Tank-XL-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"52","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","url_key":"tristan-endurance-tank-xl-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT02-XL-Red","id":657,"status":1,"name":"Tristan Endurance Tank-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"58","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","url_key":"tristan-endurance-tank-xl-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT02-XL-White","id":658,"status":1,"name":"Tristan Endurance Tank-XL-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"59","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","url_key":"tristan-endurance-tank-xl-white","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":77,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":659,"attribute_code":"color"},{"id":76,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":659,"attribute_code":"size"}],"color_options":[52,58,59],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-659.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"687","_score":1,"_source":{"id":687,"sku":"MT05","name":"Rocco Gym Tank","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

                \n

                • Light blue heather gray tank.
                • Quick-drying, moisture-wicking.
                • 4-way stretch construction.
                • Flatlock seams prevent chafing.
                • Mesh at back for breathability.
                • 100% Polyester.
                • UPF 50 protection.

                ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"rocco-gym-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"rocco-gym-tank-687","links":{},"stock":{"item_id":687,"product_id":687,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT05-XS-Blue","id":682,"status":1,"name":"Rocco Gym Tank-XS-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"50","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","url_key":"rocco-gym-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MT05-S-Blue","id":683,"status":1,"name":"Rocco Gym Tank-S-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"50","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","url_key":"rocco-gym-tank-s-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MT05-M-Blue","id":684,"status":1,"name":"Rocco Gym Tank-M-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"50","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","url_key":"rocco-gym-tank-m-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MT05-L-Blue","id":685,"status":1,"name":"Rocco Gym Tank-L-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"50","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","url_key":"rocco-gym-tank-l-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MT05-XL-Blue","id":686,"status":1,"name":"Rocco Gym Tank-XL-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"50","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","url_key":"rocco-gym-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24}],"configurable_options":[{"id":83,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"}],"product_id":687,"attribute_code":"color"},{"id":82,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":687,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-687.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"681","_score":1,"_source":{"id":681,"sku":"MT04","name":"Helios Endurance Tank","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

                \n

                • Blue heather tank with gray pocket.
                • Contrast sides and back inserts.
                • Self-fabric binding at neck and armholes.
                • Machine wash/dry.

                ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"helios-endurance-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"1","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"helios-endurance-tank-681","links":{},"stock":{"item_id":681,"product_id":681,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT04-XS-Blue","id":676,"status":1,"name":"Helios Endurance Tank-XS-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"50","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","url_key":"helios-endurance-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MT04-S-Blue","id":677,"status":1,"name":"Helios Endurance Tank-S-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"50","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","url_key":"helios-endurance-tank-s-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MT04-M-Blue","id":678,"status":1,"name":"Helios Endurance Tank-M-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"50","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","url_key":"helios-endurance-tank-m-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MT04-L-Blue","id":679,"status":1,"name":"Helios Endurance Tank-L-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"50","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","url_key":"helios-endurance-tank-l-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MT04-XL-Blue","id":680,"status":1,"name":"Helios Endurance Tank-XL-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"50","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","url_key":"helios-endurance-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32}],"configurable_options":[{"id":81,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"}],"product_id":681,"attribute_code":"color"},{"id":80,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":681,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-681.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"611","_score":1,"_source":{"id":611,"sku":"MS07","name":"Deion Long-Sleeve EverCool™ Tee","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                \n

                • Fitted.
                • Contrast inner neck tape.
                • Machine wash/dry.

                ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"deion-long-sleeve-evercool-trade-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,153,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,204,205,209],"slug":"deion-long-sleeve-evercool-and-trade-tee-611","links":{},"stock":{"item_id":611,"product_id":611,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS07-XS-Black","id":596,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-XS-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MS07-XS-Green","id":597,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-XS-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"53","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-xs-green","msrp_display_actual_price_type":"0"},{"sku":"MS07-XS-White","id":598,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-XS-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"59","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-xs-white","msrp_display_actual_price_type":"0"},{"sku":"MS07-S-Black","id":599,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-S-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-s-black","msrp_display_actual_price_type":"0"},{"sku":"MS07-S-Green","id":600,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-S-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"53","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-s-green","msrp_display_actual_price_type":"0"},{"sku":"MS07-S-White","id":601,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-S-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"59","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-s-white","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS07-M-Black","id":602,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-M-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-m-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS07-M-Green","id":603,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-M-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"53","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-m-green","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS07-M-White","id":604,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-M-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"59","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-m-white","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS07-L-Black","id":605,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-L-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-l-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS07-L-Green","id":606,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-L-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"53","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-l-green","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS07-L-White","id":607,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-L-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"59","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-l-white","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS07-XL-Black","id":608,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-XL-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-xl-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS07-XL-Green","id":609,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-XL-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"53","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-xl-green","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS07-XL-White","id":610,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-XL-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"59","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-xl-white","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39}],"configurable_options":[{"id":71,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":59,"label":"White"}],"product_id":611,"attribute_code":"color"},{"id":70,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":611,"attribute_code":"size"}],"color_options":[49,53,59],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-611.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"627","_score":1,"_source":{"id":627,"sku":"MS08","name":"Strike Endurance Tee","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                \n

                • Loose fit.
                • Ribbed cuffs/collar.
                • Machine wash/dry.

                ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"strike-endurance-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[202,204,205,209],"slug":"strike-endurance-tee-627","links":{},"stock":{"item_id":627,"product_id":627,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS08-XS-Black","id":612,"status":1,"name":"Strike Endurance Tee-XS-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","url_key":"strike-endurance-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MS08-XS-Blue","id":613,"status":1,"name":"Strike Endurance Tee-XS-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","url_key":"strike-endurance-tee-xs-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-XS-Red","id":614,"status":1,"name":"Strike Endurance Tee-XS-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"58","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","url_key":"strike-endurance-tee-xs-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-S-Black","id":615,"status":1,"name":"Strike Endurance Tee-S-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","url_key":"strike-endurance-tee-s-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-S-Blue","id":616,"status":1,"name":"Strike Endurance Tee-S-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","url_key":"strike-endurance-tee-s-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-S-Red","id":617,"status":1,"name":"Strike Endurance Tee-S-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"58","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","url_key":"strike-endurance-tee-s-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-M-Black","id":618,"status":1,"name":"Strike Endurance Tee-M-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","url_key":"strike-endurance-tee-m-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-M-Blue","id":619,"status":1,"name":"Strike Endurance Tee-M-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","url_key":"strike-endurance-tee-m-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-M-Red","id":620,"status":1,"name":"Strike Endurance Tee-M-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"58","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","url_key":"strike-endurance-tee-m-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-L-Black","id":621,"status":1,"name":"Strike Endurance Tee-L-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","url_key":"strike-endurance-tee-l-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-L-Blue","id":622,"status":1,"name":"Strike Endurance Tee-L-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","url_key":"strike-endurance-tee-l-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-L-Red","id":623,"status":1,"name":"Strike Endurance Tee-L-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"58","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","url_key":"strike-endurance-tee-l-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-XL-Black","id":624,"status":1,"name":"Strike Endurance Tee-XL-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","url_key":"strike-endurance-tee-xl-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-XL-Blue","id":625,"status":1,"name":"Strike Endurance Tee-XL-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","url_key":"strike-endurance-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-XL-Red","id":626,"status":1,"name":"Strike Endurance Tee-XL-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"58","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","url_key":"strike-endurance-tee-xl-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39}],"configurable_options":[{"id":73,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":627,"attribute_code":"color"},{"id":72,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":627,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-627.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"672","_score":1,"_source":{"id":672,"sku":"MT03-XL-Blue","name":"Primo Endurance Tank-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                \n

                • Red heather tank with gray pocket.
                • Chafe-resistant flatlock seams.
                • Relaxed fit.
                • Contrast topstitching.
                • Machine wash/dry.

                ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"primo-endurance-tank-xl-blue-672","links":{},"stock":{"item_id":672,"product_id":672,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xl-blue-672.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"668","_score":1,"_source":{"id":668,"sku":"MT03-M-Yellow","name":"Primo Endurance Tank-M-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                \n

                • Red heather tank with gray pocket.
                • Chafe-resistant flatlock seams.
                • Relaxed fit.
                • Contrast topstitching.
                • Machine wash/dry.

                ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"primo-endurance-tank-m-yellow-668","links":{},"stock":{"item_id":668,"product_id":668,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-m-yellow-668.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"670","_score":1,"_source":{"id":670,"sku":"MT03-L-Red","name":"Primo Endurance Tank-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                \n

                • Red heather tank with gray pocket.
                • Chafe-resistant flatlock seams.
                • Relaxed fit.
                • Contrast topstitching.
                • Machine wash/dry.

                ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"primo-endurance-tank-l-red-670","links":{},"stock":{"item_id":670,"product_id":670,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-l-red-670.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"667","_score":1,"_source":{"id":667,"sku":"MT03-M-Red","name":"Primo Endurance Tank-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                \n

                • Red heather tank with gray pocket.
                • Chafe-resistant flatlock seams.
                • Relaxed fit.
                • Contrast topstitching.
                • Machine wash/dry.

                ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"primo-endurance-tank-m-red-667","links":{},"stock":{"item_id":667,"product_id":667,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-m-red-667.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"673","_score":1,"_source":{"id":673,"sku":"MT03-XL-Red","name":"Primo Endurance Tank-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                \n

                • Red heather tank with gray pocket.
                • Chafe-resistant flatlock seams.
                • Relaxed fit.
                • Contrast topstitching.
                • Machine wash/dry.

                ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"primo-endurance-tank-xl-red-673","links":{},"stock":{"item_id":673,"product_id":673,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xl-red-673.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"678","_score":1,"_source":{"id":678,"sku":"MT04-M-Blue","name":"Helios Endurance Tank-M-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

                \n

                • Blue heather tank with gray pocket.
                • Contrast sides and back inserts.
                • Self-fabric binding at neck and armholes.
                • Machine wash/dry.

                ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helios-endurance-tank-m-blue-678","links":{},"stock":{"item_id":678,"product_id":678,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-m-blue-678.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"684","_score":1,"_source":{"id":684,"sku":"MT05-M-Blue","name":"Rocco Gym Tank-M-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

                \n

                • Light blue heather gray tank.
                • Quick-drying, moisture-wicking.
                • 4-way stretch construction.
                • Flatlock seams prevent chafing.
                • Mesh at back for breathability.
                • 100% Polyester.
                • UPF 50 protection.

                ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"rocco-gym-tank-m-blue-684","links":{},"stock":{"item_id":684,"product_id":684,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-m-blue-684.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"655","_score":1,"_source":{"id":655,"sku":"MT02-L-White","name":"Tristan Endurance Tank-L-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                \n

                • White performance tank.
                • Stylish contrast stitching.
                • Relaxed fit.
                • Ribbed crew neckline.
                • Machine wash/dry.

                ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tristan-endurance-tank-l-white-655","links":{},"stock":{"item_id":655,"product_id":655,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-l-white-655.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"680","_score":1,"_source":{"id":680,"sku":"MT04-XL-Blue","name":"Helios Endurance Tank-XL-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

                \n

                • Blue heather tank with gray pocket.
                • Contrast sides and back inserts.
                • Self-fabric binding at neck and armholes.
                • Machine wash/dry.

                ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helios-endurance-tank-xl-blue-680","links":{},"stock":{"item_id":680,"product_id":680,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-xl-blue-680.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"665","_score":1,"_source":{"id":665,"sku":"MT03-S-Yellow","name":"Primo Endurance Tank-S-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                \n

                • Red heather tank with gray pocket.
                • Chafe-resistant flatlock seams.
                • Relaxed fit.
                • Contrast topstitching.
                • Machine wash/dry.

                ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"primo-endurance-tank-s-yellow-665","links":{},"stock":{"item_id":665,"product_id":665,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-s-yellow-665.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"696","_score":1,"_source":{"id":696,"sku":"MT07-M-Gray","name":"Argus All-Weather Tank-M-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

                \n

                • Dark gray polyester spandex tank.
                • Reflective details for nighttime visibility.
                • Stash pocket.
                • Anti-chafe flatlock seams.

                ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"argus-all-weather-tank-m-gray-696","links":{},"stock":{"item_id":696,"product_id":696,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-m-gray-696.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"685","_score":1,"_source":{"id":685,"sku":"MT05-L-Blue","name":"Rocco Gym Tank-L-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

                \n

                • Light blue heather gray tank.
                • Quick-drying, moisture-wicking.
                • 4-way stretch construction.
                • Flatlock seams prevent chafing.
                • Mesh at back for breathability.
                • 100% Polyester.
                • UPF 50 protection.

                ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"rocco-gym-tank-l-blue-685","links":{},"stock":{"item_id":685,"product_id":685,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-l-blue-685.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"671","_score":1,"_source":{"id":671,"sku":"MT03-L-Yellow","name":"Primo Endurance Tank-L-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                \n

                • Red heather tank with gray pocket.
                • Chafe-resistant flatlock seams.
                • Relaxed fit.
                • Contrast topstitching.
                • Machine wash/dry.

                ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"primo-endurance-tank-l-yellow-671","links":{},"stock":{"item_id":671,"product_id":671,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-l-yellow-671.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"700","_score":1,"_source":{"id":700,"sku":"MT08-XS-Green","name":"Sparta Gym Tank-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

                \n

                • Green polyester tank.
                • Ultra lightweight.
                • Naturally odor-resistant.
                • Close-to-body athletic fit.
                • Chafe-resistant flatlock seams.

                ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"sparta-gym-tank-xs-green-700","links":{},"stock":{"item_id":700,"product_id":700,"stock_id":1,"qty":67,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-xs-green-700.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"695","_score":1,"_source":{"id":695,"sku":"MT07-S-Gray","name":"Argus All-Weather Tank-S-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

                \n

                • Dark gray polyester spandex tank.
                • Reflective details for nighttime visibility.
                • Stash pocket.
                • Anti-chafe flatlock seams.

                ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"argus-all-weather-tank-s-gray-695","links":{},"stock":{"item_id":695,"product_id":695,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-s-gray-695.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"698","_score":1,"_source":{"id":698,"sku":"MT07-XL-Gray","name":"Argus All-Weather Tank-XL-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

                \n

                • Dark gray polyester spandex tank.
                • Reflective details for nighttime visibility.
                • Stash pocket.
                • Anti-chafe flatlock seams.

                ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"argus-all-weather-tank-xl-gray-698","links":{},"stock":{"item_id":698,"product_id":698,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-xl-gray-698.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"697","_score":1,"_source":{"id":697,"sku":"MT07-L-Gray","name":"Argus All-Weather Tank-L-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

                \n

                • Dark gray polyester spandex tank.
                • Reflective details for nighttime visibility.
                • Stash pocket.
                • Anti-chafe flatlock seams.

                ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"argus-all-weather-tank-l-gray-697","links":{},"stock":{"item_id":697,"product_id":697,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-l-gray-697.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"692","_score":1,"_source":{"id":692,"sku":"MT06-XL-Black","name":"Vulcan Weightlifting Tank-XL-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

                \n

                • Black polyester spandex tank.
                • 100% polyester.
                • Freedom of movement.
                • No-chafe seams.

                ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"vulcan-weightlifting-tank-xl-black-692","links":{},"stock":{"item_id":692,"product_id":692,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-xl-black-692.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"683","_score":1,"_source":{"id":683,"sku":"MT05-S-Blue","name":"Rocco Gym Tank-S-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

                \n

                • Light blue heather gray tank.
                • Quick-drying, moisture-wicking.
                • 4-way stretch construction.
                • Flatlock seams prevent chafing.
                • Mesh at back for breathability.
                • 100% Polyester.
                • UPF 50 protection.

                ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"rocco-gym-tank-s-blue-683","links":{},"stock":{"item_id":683,"product_id":683,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-s-blue-683.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"694","_score":1,"_source":{"id":694,"sku":"MT07-XS-Gray","name":"Argus All-Weather Tank-XS-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

                \n

                • Dark gray polyester spandex tank.
                • Reflective details for nighttime visibility.
                • Stash pocket.
                • Anti-chafe flatlock seams.

                ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"argus-all-weather-tank-xs-gray-694","links":{},"stock":{"item_id":694,"product_id":694,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-xs-gray-694.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"643","_score":1,"_source":{"id":643,"sku":"MT01","name":"Erikssen CoolTech™ Fitness Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                \n

                • Red performance tank.
                • Slight scoop neckline.
                • Reflectivity.
                • Machine wash/dry.

                ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"erikssen-cooltech-trade-fitness-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,152,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"erikssen-cooltech-and-trade-fitness-tank-643","links":{},"stock":{"item_id":643,"product_id":643,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT01-XS-Gray","id":628,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-XS-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"52","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-xs-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-XS-Orange","id":629,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-XS-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"56","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-xs-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-XS-Red","id":630,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"58","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-xs-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-S-Gray","id":631,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-S-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"52","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-s-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-S-Orange","id":632,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-S-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"56","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-s-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-S-Red","id":633,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"58","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-s-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-M-Gray","id":634,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-M-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"52","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-m-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-M-Orange","id":635,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-M-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"56","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-m-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-M-Red","id":636,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"58","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-m-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-L-Gray","id":637,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-L-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"52","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-l-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-L-Orange","id":638,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-L-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"56","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-l-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-L-Red","id":639,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"58","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-l-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-XL-Gray","id":640,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-XL-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"52","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-xl-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-XL-Orange","id":641,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-XL-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"56","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-xl-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-XL-Red","id":642,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"58","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-xl-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":75,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":643,"attribute_code":"color"},{"id":74,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":643,"attribute_code":"size"}],"color_options":[52,56,58],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-643.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"628","_score":1,"_source":{"id":628,"sku":"MT01-XS-Gray","name":"Erikssen CoolTech™ Fitness Tank-XS-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                \n

                • Red performance tank.
                • Slight scoop neckline.
                • Reflectivity.
                • Machine wash/dry.

                ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erikssen-cooltech-and-trade-fitness-tank-xs-gray-628","links":{},"stock":{"item_id":628,"product_id":628,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xs-gray-628.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"613","_score":1,"_source":{"id":613,"sku":"MS08-XS-Blue","name":"Strike Endurance Tee-XS-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                \n

                • Loose fit.
                • Ribbed cuffs/collar.
                • Machine wash/dry.

                ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"strike-endurance-tee-xs-blue-613","links":{},"stock":{"item_id":613,"product_id":613,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xs-blue-613.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"618","_score":1,"_source":{"id":618,"sku":"MS08-M-Black","name":"Strike Endurance Tee-M-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                \n

                • Loose fit.
                • Ribbed cuffs/collar.
                • Machine wash/dry.

                ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"strike-endurance-tee-m-black-618","links":{},"stock":{"item_id":618,"product_id":618,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-m-black-618.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"617","_score":1,"_source":{"id":617,"sku":"MS08-S-Red","name":"Strike Endurance Tee-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                \n

                • Loose fit.
                • Ribbed cuffs/collar.
                • Machine wash/dry.

                ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"strike-endurance-tee-s-red-617","links":{},"stock":{"item_id":617,"product_id":617,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-s-red-617.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"629","_score":1,"_source":{"id":629,"sku":"MT01-XS-Orange","name":"Erikssen CoolTech™ Fitness Tank-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                \n

                • Red performance tank.
                • Slight scoop neckline.
                • Reflectivity.
                • Machine wash/dry.

                ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erikssen-cooltech-and-trade-fitness-tank-xs-orange-629","links":{},"stock":{"item_id":629,"product_id":629,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xs-orange-629.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"621","_score":1,"_source":{"id":621,"sku":"MS08-L-Black","name":"Strike Endurance Tee-L-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                \n

                • Loose fit.
                • Ribbed cuffs/collar.
                • Machine wash/dry.

                ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"strike-endurance-tee-l-black-621","links":{},"stock":{"item_id":621,"product_id":621,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-l-black-621.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"634","_score":1,"_source":{"id":634,"sku":"MT01-M-Gray","name":"Erikssen CoolTech™ Fitness Tank-M-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                \n

                • Red performance tank.
                • Slight scoop neckline.
                • Reflectivity.
                • Machine wash/dry.

                ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erikssen-cooltech-and-trade-fitness-tank-m-gray-634","links":{},"stock":{"item_id":634,"product_id":634,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-m-gray-634.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"633","_score":1,"_source":{"id":633,"sku":"MT01-S-Red","name":"Erikssen CoolTech™ Fitness Tank-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                \n

                • Red performance tank.
                • Slight scoop neckline.
                • Reflectivity.
                • Machine wash/dry.

                ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erikssen-cooltech-and-trade-fitness-tank-s-red-633","links":{},"stock":{"item_id":633,"product_id":633,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-s-red-633.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"640","_score":1,"_source":{"id":640,"sku":"MT01-XL-Gray","name":"Erikssen CoolTech™ Fitness Tank-XL-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                \n

                • Red performance tank.
                • Slight scoop neckline.
                • Reflectivity.
                • Machine wash/dry.

                ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erikssen-cooltech-and-trade-fitness-tank-xl-gray-640","links":{},"stock":{"item_id":640,"product_id":640,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xl-gray-640.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"641","_score":1,"_source":{"id":641,"sku":"MT01-XL-Orange","name":"Erikssen CoolTech™ Fitness Tank-XL-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                \n

                • Red performance tank.
                • Slight scoop neckline.
                • Reflectivity.
                • Machine wash/dry.

                ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erikssen-cooltech-and-trade-fitness-tank-xl-orange-641","links":{},"stock":{"item_id":641,"product_id":641,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xl-orange-641.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"642","_score":1,"_source":{"id":642,"sku":"MT01-XL-Red","name":"Erikssen CoolTech™ Fitness Tank-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                \n

                • Red performance tank.
                • Slight scoop neckline.
                • Reflectivity.
                • Machine wash/dry.

                ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erikssen-cooltech-and-trade-fitness-tank-xl-red-642","links":{},"stock":{"item_id":642,"product_id":642,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xl-red-642.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"646","_score":1,"_source":{"id":646,"sku":"MT02-XS-White","name":"Tristan Endurance Tank-XS-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                \n

                • White performance tank.
                • Stylish contrast stitching.
                • Relaxed fit.
                • Ribbed crew neckline.
                • Machine wash/dry.

                ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tristan-endurance-tank-xs-white-646","links":{},"stock":{"item_id":646,"product_id":646,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xs-white-646.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"644","_score":1,"_source":{"id":644,"sku":"MT02-XS-Gray","name":"Tristan Endurance Tank-XS-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                \n

                • White performance tank.
                • Stylish contrast stitching.
                • Relaxed fit.
                • Ribbed crew neckline.
                • Machine wash/dry.

                ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tristan-endurance-tank-xs-gray-644","links":{},"stock":{"item_id":644,"product_id":644,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xs-gray-644.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"630","_score":1,"_source":{"id":630,"sku":"MT01-XS-Red","name":"Erikssen CoolTech™ Fitness Tank-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                \n

                • Red performance tank.
                • Slight scoop neckline.
                • Reflectivity.
                • Machine wash/dry.

                ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erikssen-cooltech-and-trade-fitness-tank-xs-red-630","links":{},"stock":{"item_id":630,"product_id":630,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xs-red-630.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"636","_score":1,"_source":{"id":636,"sku":"MT01-M-Red","name":"Erikssen CoolTech™ Fitness Tank-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                \n

                • Red performance tank.
                • Slight scoop neckline.
                • Reflectivity.
                • Machine wash/dry.

                ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erikssen-cooltech-and-trade-fitness-tank-m-red-636","links":{},"stock":{"item_id":636,"product_id":636,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-m-red-636.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"648","_score":1,"_source":{"id":648,"sku":"MT02-S-Red","name":"Tristan Endurance Tank-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                \n

                • White performance tank.
                • Stylish contrast stitching.
                • Relaxed fit.
                • Ribbed crew neckline.
                • Machine wash/dry.

                ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tristan-endurance-tank-s-red-648","links":{},"stock":{"item_id":648,"product_id":648,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-s-red-648.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"631","_score":1,"_source":{"id":631,"sku":"MT01-S-Gray","name":"Erikssen CoolTech™ Fitness Tank-S-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                \n

                • Red performance tank.
                • Slight scoop neckline.
                • Reflectivity.
                • Machine wash/dry.

                ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erikssen-cooltech-and-trade-fitness-tank-s-gray-631","links":{},"stock":{"item_id":631,"product_id":631,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-s-gray-631.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"650","_score":1,"_source":{"id":650,"sku":"MT02-M-Gray","name":"Tristan Endurance Tank-M-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                \n

                • White performance tank.
                • Stylish contrast stitching.
                • Relaxed fit.
                • Ribbed crew neckline.
                • Machine wash/dry.

                ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tristan-endurance-tank-m-gray-650","links":{},"stock":{"item_id":650,"product_id":650,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-m-gray-650.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"645","_score":1,"_source":{"id":645,"sku":"MT02-XS-Red","name":"Tristan Endurance Tank-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                \n

                • White performance tank.
                • Stylish contrast stitching.
                • Relaxed fit.
                • Ribbed crew neckline.
                • Machine wash/dry.

                ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tristan-endurance-tank-xs-red-645","links":{},"stock":{"item_id":645,"product_id":645,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xs-red-645.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"654","_score":1,"_source":{"id":654,"sku":"MT02-L-Red","name":"Tristan Endurance Tank-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                \n

                • White performance tank.
                • Stylish contrast stitching.
                • Relaxed fit.
                • Ribbed crew neckline.
                • Machine wash/dry.

                ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tristan-endurance-tank-l-red-654","links":{},"stock":{"item_id":654,"product_id":654,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-l-red-654.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"652","_score":1,"_source":{"id":652,"sku":"MT02-M-White","name":"Tristan Endurance Tank-M-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                \n

                • White performance tank.
                • Stylish contrast stitching.
                • Relaxed fit.
                • Ribbed crew neckline.
                • Machine wash/dry.

                ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tristan-endurance-tank-m-white-652","links":{},"stock":{"item_id":652,"product_id":652,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-m-white-652.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"651","_score":1,"_source":{"id":651,"sku":"MT02-M-Red","name":"Tristan Endurance Tank-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                \n

                • White performance tank.
                • Stylish contrast stitching.
                • Relaxed fit.
                • Ribbed crew neckline.
                • Machine wash/dry.

                ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tristan-endurance-tank-m-red-651","links":{},"stock":{"item_id":651,"product_id":651,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-m-red-651.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"656","_score":1,"_source":{"id":656,"sku":"MT02-XL-Gray","name":"Tristan Endurance Tank-XL-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                \n

                • White performance tank.
                • Stylish contrast stitching.
                • Relaxed fit.
                • Ribbed crew neckline.
                • Machine wash/dry.

                ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tristan-endurance-tank-xl-gray-656","links":{},"stock":{"item_id":656,"product_id":656,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xl-gray-656.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"653","_score":1,"_source":{"id":653,"sku":"MT02-L-Gray","name":"Tristan Endurance Tank-L-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                \n

                • White performance tank.
                • Stylish contrast stitching.
                • Relaxed fit.
                • Ribbed crew neckline.
                • Machine wash/dry.

                ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tristan-endurance-tank-l-gray-653","links":{},"stock":{"item_id":653,"product_id":653,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-l-gray-653.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"662","_score":1,"_source":{"id":662,"sku":"MT03-XS-Yellow","name":"Primo Endurance Tank-XS-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                \n

                • Red heather tank with gray pocket.
                • Chafe-resistant flatlock seams.
                • Relaxed fit.
                • Contrast topstitching.
                • Machine wash/dry.

                ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"primo-endurance-tank-xs-yellow-662","links":{},"stock":{"item_id":662,"product_id":662,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xs-yellow-662.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"658","_score":1,"_source":{"id":658,"sku":"MT02-XL-White","name":"Tristan Endurance Tank-XL-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                \n

                • White performance tank.
                • Stylish contrast stitching.
                • Relaxed fit.
                • Ribbed crew neckline.
                • Machine wash/dry.

                ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tristan-endurance-tank-xl-white-658","links":{},"stock":{"item_id":658,"product_id":658,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xl-white-658.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"666","_score":1,"_source":{"id":666,"sku":"MT03-M-Blue","name":"Primo Endurance Tank-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                \n

                • Red heather tank with gray pocket.
                • Chafe-resistant flatlock seams.
                • Relaxed fit.
                • Contrast topstitching.
                • Machine wash/dry.

                ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"primo-endurance-tank-m-blue-666","links":{},"stock":{"item_id":666,"product_id":666,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-m-blue-666.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"663","_score":1,"_source":{"id":663,"sku":"MT03-S-Blue","name":"Primo Endurance Tank-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                \n

                • Red heather tank with gray pocket.
                • Chafe-resistant flatlock seams.
                • Relaxed fit.
                • Contrast topstitching.
                • Machine wash/dry.

                ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"primo-endurance-tank-s-blue-663","links":{},"stock":{"item_id":663,"product_id":663,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-s-blue-663.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"661","_score":1,"_source":{"id":661,"sku":"MT03-XS-Red","name":"Primo Endurance Tank-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                \n

                • Red heather tank with gray pocket.
                • Chafe-resistant flatlock seams.
                • Relaxed fit.
                • Contrast topstitching.
                • Machine wash/dry.

                ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"primo-endurance-tank-xs-red-661","links":{},"stock":{"item_id":661,"product_id":661,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xs-red-661.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"660","_score":1,"_source":{"id":660,"sku":"MT03-XS-Blue","name":"Primo Endurance Tank-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                \n

                • Red heather tank with gray pocket.
                • Chafe-resistant flatlock seams.
                • Relaxed fit.
                • Contrast topstitching.
                • Machine wash/dry.

                ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"primo-endurance-tank-xs-blue-660","links":{},"stock":{"item_id":660,"product_id":660,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xs-blue-660.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"657","_score":1,"_source":{"id":657,"sku":"MT02-XL-Red","name":"Tristan Endurance Tank-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                \n

                • White performance tank.
                • Stylish contrast stitching.
                • Relaxed fit.
                • Ribbed crew neckline.
                • Machine wash/dry.

                ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tristan-endurance-tank-xl-red-657","links":{},"stock":{"item_id":657,"product_id":657,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xl-red-657.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"664","_score":1,"_source":{"id":664,"sku":"MT03-S-Red","name":"Primo Endurance Tank-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                \n

                • Red heather tank with gray pocket.
                • Chafe-resistant flatlock seams.
                • Relaxed fit.
                • Contrast topstitching.
                • Machine wash/dry.

                ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"primo-endurance-tank-s-red-664","links":{},"stock":{"item_id":664,"product_id":664,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-s-red-664.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"669","_score":1,"_source":{"id":669,"sku":"MT03-L-Blue","name":"Primo Endurance Tank-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                \n

                • Red heather tank with gray pocket.
                • Chafe-resistant flatlock seams.
                • Relaxed fit.
                • Contrast topstitching.
                • Machine wash/dry.

                ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"primo-endurance-tank-l-blue-669","links":{},"stock":{"item_id":669,"product_id":669,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-l-blue-669.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"682","_score":1,"_source":{"id":682,"sku":"MT05-XS-Blue","name":"Rocco Gym Tank-XS-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

                \n

                • Light blue heather gray tank.
                • Quick-drying, moisture-wicking.
                • 4-way stretch construction.
                • Flatlock seams prevent chafing.
                • Mesh at back for breathability.
                • 100% Polyester.
                • UPF 50 protection.

                ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"rocco-gym-tank-xs-blue-682","links":{},"stock":{"item_id":682,"product_id":682,"stock_id":1,"qty":55,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-xs-blue-682.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"679","_score":1,"_source":{"id":679,"sku":"MT04-L-Blue","name":"Helios Endurance Tank-L-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

                \n

                • Blue heather tank with gray pocket.
                • Contrast sides and back inserts.
                • Self-fabric binding at neck and armholes.
                • Machine wash/dry.

                ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helios-endurance-tank-l-blue-679","links":{},"stock":{"item_id":679,"product_id":679,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-l-blue-679.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"674","_score":1,"_source":{"id":674,"sku":"MT03-XL-Yellow","name":"Primo Endurance Tank-XL-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                \n

                • Red heather tank with gray pocket.
                • Chafe-resistant flatlock seams.
                • Relaxed fit.
                • Contrast topstitching.
                • Machine wash/dry.

                ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"primo-endurance-tank-xl-yellow-674","links":{},"stock":{"item_id":674,"product_id":674,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xl-yellow-674.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"686","_score":1,"_source":{"id":686,"sku":"MT05-XL-Blue","name":"Rocco Gym Tank-XL-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

                \n

                • Light blue heather gray tank.
                • Quick-drying, moisture-wicking.
                • 4-way stretch construction.
                • Flatlock seams prevent chafing.
                • Mesh at back for breathability.
                • 100% Polyester.
                • UPF 50 protection.

                ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"rocco-gym-tank-xl-blue-686","links":{},"stock":{"item_id":686,"product_id":686,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-xl-blue-686.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"676","_score":1,"_source":{"id":676,"sku":"MT04-XS-Blue","name":"Helios Endurance Tank-XS-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

                \n

                • Blue heather tank with gray pocket.
                • Contrast sides and back inserts.
                • Self-fabric binding at neck and armholes.
                • Machine wash/dry.

                ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helios-endurance-tank-xs-blue-676","links":{},"stock":{"item_id":676,"product_id":676,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-xs-blue-676.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"688","_score":1,"_source":{"id":688,"sku":"MT06-XS-Black","name":"Vulcan Weightlifting Tank-XS-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

                \n

                • Black polyester spandex tank.
                • 100% polyester.
                • Freedom of movement.
                • No-chafe seams.

                ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"vulcan-weightlifting-tank-xs-black-688","links":{},"stock":{"item_id":688,"product_id":688,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-xs-black-688.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"677","_score":1,"_source":{"id":677,"sku":"MT04-S-Blue","name":"Helios Endurance Tank-S-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

                \n

                • Blue heather tank with gray pocket.
                • Contrast sides and back inserts.
                • Self-fabric binding at neck and armholes.
                • Machine wash/dry.

                ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helios-endurance-tank-s-blue-677","links":{},"stock":{"item_id":677,"product_id":677,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-s-blue-677.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"689","_score":1,"_source":{"id":689,"sku":"MT06-S-Black","name":"Vulcan Weightlifting Tank-S-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

                \n

                • Black polyester spandex tank.
                • 100% polyester.
                • Freedom of movement.
                • No-chafe seams.

                ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"vulcan-weightlifting-tank-s-black-689","links":{},"stock":{"item_id":689,"product_id":689,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-s-black-689.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"691","_score":1,"_source":{"id":691,"sku":"MT06-L-Black","name":"Vulcan Weightlifting Tank-L-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

                \n

                • Black polyester spandex tank.
                • 100% polyester.
                • Freedom of movement.
                • No-chafe seams.

                ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"vulcan-weightlifting-tank-l-black-691","links":{},"stock":{"item_id":691,"product_id":691,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-l-black-691.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"690","_score":1,"_source":{"id":690,"sku":"MT06-M-Black","name":"Vulcan Weightlifting Tank-M-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

                \n

                • Black polyester spandex tank.
                • 100% polyester.
                • Freedom of movement.
                • No-chafe seams.

                ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"vulcan-weightlifting-tank-m-black-690","links":{},"stock":{"item_id":690,"product_id":690,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-m-black-690.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"637","_score":1,"_source":{"id":637,"sku":"MT01-L-Gray","name":"Erikssen CoolTech™ Fitness Tank-L-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                \n

                • Red performance tank.
                • Slight scoop neckline.
                • Reflectivity.
                • Machine wash/dry.

                ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erikssen-cooltech-and-trade-fitness-tank-l-gray-637","links":{},"stock":{"item_id":637,"product_id":637,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-l-gray-637.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"647","_score":1,"_source":{"id":647,"sku":"MT02-S-Gray","name":"Tristan Endurance Tank-S-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                \n

                • White performance tank.
                • Stylish contrast stitching.
                • Relaxed fit.
                • Ribbed crew neckline.
                • Machine wash/dry.

                ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tristan-endurance-tank-s-gray-647","links":{},"stock":{"item_id":647,"product_id":647,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-s-gray-647.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"649","_score":1,"_source":{"id":649,"sku":"MT02-S-White","name":"Tristan Endurance Tank-S-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                \n

                • White performance tank.
                • Stylish contrast stitching.
                • Relaxed fit.
                • Ribbed crew neckline.
                • Machine wash/dry.

                ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tristan-endurance-tank-s-white-649","links":{},"stock":{"item_id":649,"product_id":649,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-s-white-649.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"639","_score":1,"_source":{"id":639,"sku":"MT01-L-Red","name":"Erikssen CoolTech™ Fitness Tank-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                \n

                • Red performance tank.
                • Slight scoop neckline.
                • Reflectivity.
                • Machine wash/dry.

                ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erikssen-cooltech-and-trade-fitness-tank-l-red-639","links":{},"stock":{"item_id":639,"product_id":639,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-l-red-639.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"638","_score":1,"_source":{"id":638,"sku":"MT01-L-Orange","name":"Erikssen CoolTech™ Fitness Tank-L-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                \n

                • Red performance tank.
                • Slight scoop neckline.
                • Reflectivity.
                • Machine wash/dry.

                ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erikssen-cooltech-and-trade-fitness-tank-l-orange-638","links":{},"stock":{"item_id":638,"product_id":638,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-l-orange-638.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"876","_score":1,"_source":{"id":876,"sku":"MP12-33-Black","name":"Cronus Yoga Pant -33-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                \n

                • Drawstring waist.
                • Loose, straight-leg fit.
                • Lightweight cotton-recycled blend.
                • Front pockets with stitching detail.
                • Elastic ankle.

                ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cronus-yoga-pant-33-black-876","links":{},"stock":{"item_id":876,"product_id":876,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-33-black-876.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"855","_score":1,"_source":{"id":855,"sku":"MP10-34-Green","name":"Orestes Yoga Pant -34-Green","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                \n

                • A yoga essential.
                • Breathable stretch organic cotton/spandex.
                • Standard Fit.

                ","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-yoga-pant-34-green-855","links":{},"stock":{"item_id":855,"product_id":855,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-34-green-855.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"869","_score":1,"_source":{"id":869,"sku":"MP11-36-Blue","name":"Aether Gym Pant -36-Blue","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2019-05-17 10:37:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                \r\n

                • Pants/shorts convertible.
                • Lightweight moisture wicking.
                • Water repellent.
                • Belted waist.

                ","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-36-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"179","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"aether-gym-pant-36-blue-869","links":{},"stock":{"item_id":869,"product_id":869,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-36-blue-869.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"854","_score":1,"_source":{"id":854,"sku":"MP10-34-Blue","name":"Orestes Yoga Pant -34-Blue","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                \n

                • A yoga essential.
                • Breathable stretch organic cotton/spandex.
                • Standard Fit.

                ","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-yoga-pant-34-blue-854","links":{},"stock":{"item_id":854,"product_id":854,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-34-blue-854.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"875","_score":1,"_source":{"id":875,"sku":"MP12-32-Red","name":"Cronus Yoga Pant -32-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                \n

                • Drawstring waist.
                • Loose, straight-leg fit.
                • Lightweight cotton-recycled blend.
                • Front pockets with stitching detail.
                • Elastic ankle.

                ","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","color":"58","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cronus-yoga-pant-32-red-875","links":{},"stock":{"item_id":875,"product_id":875,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-32-red-875.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"886","_score":1,"_source":{"id":886,"sku":"MSH01-32-Black","name":"Cobalt CoolTech™ Fitness Short-32-Black","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                \n

                • Light blue nylon shorts.
                • Relaxed fit.
                • 5\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","color":"49","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cobalt-cooltech-and-trade-fitness-short-32-black-886","links":{},"stock":{"item_id":886,"product_id":886,"stock_id":1,"qty":78,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-32-black-886.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"873","_score":1,"_source":{"id":873,"sku":"MP12-32-Black","name":"Cronus Yoga Pant -32-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                \n

                • Drawstring waist.
                • Loose, straight-leg fit.
                • Lightweight cotton-recycled blend.
                • Front pockets with stitching detail.
                • Elastic ankle.

                ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cronus-yoga-pant-32-black-873","links":{},"stock":{"item_id":873,"product_id":873,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-32-black-873.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"868","_score":1,"_source":{"id":868,"sku":"MP11-34-Green","name":"Aether Gym Pant -34-Green","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                \n

                • Pants/shorts convertible.
                • Lightweight moisture wicking.
                • Water repellent.
                • Belted waist.

                ","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"aether-gym-pant-34-green-868","links":{},"stock":{"item_id":868,"product_id":868,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-34-green-868.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"887","_score":1,"_source":{"id":887,"sku":"MSH01-32-Blue","name":"Cobalt CoolTech™ Fitness Short-32-Blue","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                \n

                • Light blue nylon shorts.
                • Relaxed fit.
                • 5\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","color":"50","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cobalt-cooltech-and-trade-fitness-short-32-blue-887","links":{},"stock":{"item_id":887,"product_id":887,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-32-blue-887.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"882","_score":1,"_source":{"id":882,"sku":"MP12-36-Black","name":"Cronus Yoga Pant -36-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                \n

                • Drawstring waist.
                • Loose, straight-leg fit.
                • Lightweight cotton-recycled blend.
                • Front pockets with stitching detail.
                • Elastic ankle.

                ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cronus-yoga-pant-36-black-882","links":{},"stock":{"item_id":882,"product_id":882,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-36-black-882.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"891","_score":1,"_source":{"id":891,"sku":"MSH01-33-Red","name":"Cobalt CoolTech™ Fitness Short-33-Red","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                \n

                • Light blue nylon shorts.
                • Relaxed fit.
                • 5\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","color":"58","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cobalt-cooltech-and-trade-fitness-short-33-red-891","links":{},"stock":{"item_id":891,"product_id":891,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-33-red-891.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"889","_score":1,"_source":{"id":889,"sku":"MSH01-33-Black","name":"Cobalt CoolTech™ Fitness Short-33-Black","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                \n

                • Light blue nylon shorts.
                • Relaxed fit.
                • 5\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","color":"49","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cobalt-cooltech-and-trade-fitness-short-33-black-889","links":{},"stock":{"item_id":889,"product_id":889,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-33-black-889.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"897","_score":1,"_source":{"id":897,"sku":"MSH01-36-Red","name":"Cobalt CoolTech™ Fitness Short-36-Red","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                \n

                • Light blue nylon shorts.
                • Relaxed fit.
                • 5\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","color":"58","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cobalt-cooltech-and-trade-fitness-short-36-red-897","links":{},"stock":{"item_id":897,"product_id":897,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-36-red-897.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"878","_score":1,"_source":{"id":878,"sku":"MP12-33-Red","name":"Cronus Yoga Pant -33-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                \n

                • Drawstring waist.
                • Loose, straight-leg fit.
                • Lightweight cotton-recycled blend.
                • Front pockets with stitching detail.
                • Elastic ankle.

                ","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","color":"58","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cronus-yoga-pant-33-red-878","links":{},"stock":{"item_id":878,"product_id":878,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-33-red-878.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"881","_score":1,"_source":{"id":881,"sku":"MP12-34-Red","name":"Cronus Yoga Pant -34-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                \n

                • Drawstring waist.
                • Loose, straight-leg fit.
                • Lightweight cotton-recycled blend.
                • Front pockets with stitching detail.
                • Elastic ankle.

                ","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","color":"58","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cronus-yoga-pant-34-red-881","links":{},"stock":{"item_id":881,"product_id":881,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-34-red-881.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"880","_score":1,"_source":{"id":880,"sku":"MP12-34-Blue","name":"Cronus Yoga Pant -34-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                \n

                • Drawstring waist.
                • Loose, straight-leg fit.
                • Lightweight cotton-recycled blend.
                • Front pockets with stitching detail.
                • Elastic ankle.

                ","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","color":"50","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cronus-yoga-pant-34-blue-880","links":{},"stock":{"item_id":880,"product_id":880,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-34-blue-880.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"879","_score":1,"_source":{"id":879,"sku":"MP12-34-Black","name":"Cronus Yoga Pant -34-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                \n

                • Drawstring waist.
                • Loose, straight-leg fit.
                • Lightweight cotton-recycled blend.
                • Front pockets with stitching detail.
                • Elastic ankle.

                ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cronus-yoga-pant-34-black-879","links":{},"stock":{"item_id":879,"product_id":879,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-34-black-879.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"888","_score":1,"_source":{"id":888,"sku":"MSH01-32-Red","name":"Cobalt CoolTech™ Fitness Short-32-Red","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                \n

                • Light blue nylon shorts.
                • Relaxed fit.
                • 5\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","color":"58","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cobalt-cooltech-and-trade-fitness-short-32-red-888","links":{},"stock":{"item_id":888,"product_id":888,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-32-red-888.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"892","_score":1,"_source":{"id":892,"sku":"MSH01-34-Black","name":"Cobalt CoolTech™ Fitness Short-34-Black","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                \n

                • Light blue nylon shorts.
                • Relaxed fit.
                • 5\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","color":"49","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cobalt-cooltech-and-trade-fitness-short-34-black-892","links":{},"stock":{"item_id":892,"product_id":892,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-34-black-892.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"893","_score":1,"_source":{"id":893,"sku":"MSH01-34-Blue","name":"Cobalt CoolTech™ Fitness Short-34-Blue","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                \n

                • Light blue nylon shorts.
                • Relaxed fit.
                • 5\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","color":"50","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cobalt-cooltech-and-trade-fitness-short-34-blue-893","links":{},"stock":{"item_id":893,"product_id":893,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-34-blue-893.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"884","_score":1,"_source":{"id":884,"sku":"MP12-36-Red","name":"Cronus Yoga Pant -36-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                \n

                • Drawstring waist.
                • Loose, straight-leg fit.
                • Lightweight cotton-recycled blend.
                • Front pockets with stitching detail.
                • Elastic ankle.

                ","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","color":"58","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cronus-yoga-pant-36-red-884","links":{},"stock":{"item_id":884,"product_id":884,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-36-red-884.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"899","_score":1,"_source":{"id":899,"sku":"MSH02-32-Black","name":"Apollo Running Short-32-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

                \n

                • Black shorts with green accents.
                • Side pockets.
                • 4\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"apollo-running-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"apollo-running-short-32-black-899","links":{},"stock":{"item_id":899,"product_id":899,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-32-black-899.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"896","_score":1,"_source":{"id":896,"sku":"MSH01-36-Blue","name":"Cobalt CoolTech™ Fitness Short-36-Blue","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                \n

                • Light blue nylon shorts.
                • Relaxed fit.
                • 5\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","color":"50","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cobalt-cooltech-and-trade-fitness-short-36-blue-896","links":{},"stock":{"item_id":896,"product_id":896,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-36-blue-896.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"890","_score":1,"_source":{"id":890,"sku":"MSH01-33-Blue","name":"Cobalt CoolTech™ Fitness Short-33-Blue","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                \n

                • Light blue nylon shorts.
                • Relaxed fit.
                • 5\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","color":"50","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cobalt-cooltech-and-trade-fitness-short-33-blue-890","links":{},"stock":{"item_id":890,"product_id":890,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-33-blue-890.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"894","_score":1,"_source":{"id":894,"sku":"MSH01-34-Red","name":"Cobalt CoolTech™ Fitness Short-34-Red","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                \n

                • Light blue nylon shorts.
                • Relaxed fit.
                • 5\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","color":"58","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cobalt-cooltech-and-trade-fitness-short-34-red-894","links":{},"stock":{"item_id":894,"product_id":894,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-34-red-894.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"867","_score":1,"_source":{"id":867,"sku":"MP11-34-Brown","name":"Aether Gym Pant -34-Brown","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                \n

                • Pants/shorts convertible.
                • Lightweight moisture wicking.
                • Water repellent.
                • Belted waist.

                ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","color":"51","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-34-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"aether-gym-pant-34-brown-867","links":{},"stock":{"item_id":867,"product_id":867,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-34-brown-867.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"900","_score":1,"_source":{"id":900,"sku":"MSH02-33-Black","name":"Apollo Running Short-33-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

                \n

                • Black shorts with green accents.
                • Side pockets.
                • 4\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"apollo-running-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"apollo-running-short-33-black-900","links":{},"stock":{"item_id":900,"product_id":900,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-33-black-900.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"895","_score":1,"_source":{"id":895,"sku":"MSH01-36-Black","name":"Cobalt CoolTech™ Fitness Short-36-Black","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                \n

                • Light blue nylon shorts.
                • Relaxed fit.
                • 5\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","color":"49","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cobalt-cooltech-and-trade-fitness-short-36-black-895","links":{},"stock":{"item_id":895,"product_id":895,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-36-black-895.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"883","_score":1,"_source":{"id":883,"sku":"MP12-36-Blue","name":"Cronus Yoga Pant -36-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                \n

                • Drawstring waist.
                • Loose, straight-leg fit.
                • Lightweight cotton-recycled blend.
                • Front pockets with stitching detail.
                • Elastic ankle.

                ","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","color":"50","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cronus-yoga-pant-36-blue-883","links":{},"stock":{"item_id":883,"product_id":883,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-36-blue-883.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"874","_score":1,"_source":{"id":874,"sku":"MP12-32-Blue","name":"Cronus Yoga Pant -32-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                \n

                • Drawstring waist.
                • Loose, straight-leg fit.
                • Lightweight cotton-recycled blend.
                • Front pockets with stitching detail.
                • Elastic ankle.

                ","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","color":"50","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cronus-yoga-pant-32-blue-874","links":{},"stock":{"item_id":874,"product_id":874,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-32-blue-874.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"866","_score":1,"_source":{"id":866,"sku":"MP11-34-Blue","name":"Aether Gym Pant -34-Blue","attribute_set_id":10,"price":74,"status":2,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2019-05-14 08:09:40","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                \r\n

                • Pants/shorts convertible.
                • Lightweight moisture wicking.
                • Water repellent.
                • Belted waist.

                ","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-34-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"178","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"aether-gym-pant-34-blue-866","links":{},"stock":{"item_id":866,"product_id":866,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-34-blue-866.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"877","_score":1,"_source":{"id":877,"sku":"MP12-33-Blue","name":"Cronus Yoga Pant -33-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                \n

                • Drawstring waist.
                • Loose, straight-leg fit.
                • Lightweight cotton-recycled blend.
                • Front pockets with stitching detail.
                • Elastic ankle.

                ","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","color":"50","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cronus-yoga-pant-33-blue-877","links":{},"stock":{"item_id":877,"product_id":877,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-33-blue-877.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"807","_score":1,"_source":{"id":807,"sku":"MP06","name":"Mithra Warmup Pant","attribute_set_id":10,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                \n

                • Ankle zips.
                • Elasticized waistband with draw cord.
                • Dual hand pockets.
                • Reflective elements for low-light safety.

                ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mithra-warmup-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,146,154,38,159],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,113],"pattern":"197","climate":[202,203,204,206,210,211],"slug":"mithra-warmup-pant-807","links":{},"stock":{"item_id":807,"product_id":807,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP06-32-Gray","id":795,"status":1,"name":"Mithra Warmup Pant-32-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"176","color":"52","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","url_key":"mithra-warmup-pant-32-gray","msrp_display_actual_price_type":"0"},{"sku":"MP06-32-Green","id":796,"status":1,"name":"Mithra Warmup Pant-32-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"176","color":"53","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","url_key":"mithra-warmup-pant-32-green","msrp_display_actual_price_type":"0"},{"sku":"MP06-32-Orange","id":797,"status":1,"name":"Mithra Warmup Pant-32-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"176","color":"56","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","url_key":"mithra-warmup-pant-32-orange","msrp_display_actual_price_type":"0"},{"sku":"MP06-33-Gray","id":798,"status":1,"name":"Mithra Warmup Pant-33-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"177","color":"52","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","url_key":"mithra-warmup-pant-33-gray","msrp_display_actual_price_type":"0"},{"sku":"MP06-33-Green","id":799,"status":1,"name":"Mithra Warmup Pant-33-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"177","color":"53","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","url_key":"mithra-warmup-pant-33-green","msrp_display_actual_price_type":"0"},{"sku":"MP06-33-Orange","id":800,"status":1,"name":"Mithra Warmup Pant-33-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"177","color":"56","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","url_key":"mithra-warmup-pant-33-orange","msrp_display_actual_price_type":"0"},{"sku":"MP06-34-Gray","id":801,"status":1,"name":"Mithra Warmup Pant-34-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"178","color":"52","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","url_key":"mithra-warmup-pant-34-gray","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MP06-34-Green","id":802,"status":1,"name":"Mithra Warmup Pant-34-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"178","color":"53","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","url_key":"mithra-warmup-pant-34-green","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MP06-34-Orange","id":803,"status":1,"name":"Mithra Warmup Pant-34-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"178","color":"56","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","url_key":"mithra-warmup-pant-34-orange","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MP06-36-Gray","id":804,"status":1,"name":"Mithra Warmup Pant-36-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"179","color":"52","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","url_key":"mithra-warmup-pant-36-gray","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MP06-36-Green","id":805,"status":1,"name":"Mithra Warmup Pant-36-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"179","color":"53","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","url_key":"mithra-warmup-pant-36-green","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MP06-36-Orange","id":806,"status":1,"name":"Mithra Warmup Pant-36-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"179","color":"56","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","url_key":"mithra-warmup-pant-36-orange","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28}],"configurable_options":[{"id":109,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":807,"attribute_code":"color"},{"id":108,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":807,"attribute_code":"size"}],"color_options":[52,53,56],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-807.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"820","_score":1,"_source":{"id":820,"sku":"MP07","name":"Thorpe Track Pant","attribute_set_id":10,"price":68,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                \n

                • Moisture transfer properties.
                • 7% stretch.
                • Reflective safety trim.
                • Elastic drawcord waist.

                ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"thorpe-track-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38,39,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[202,203,204,208,211],"slug":"thorpe-track-pant-820","links":{},"stock":{"item_id":820,"product_id":820,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP07-32-Black","id":808,"status":1,"name":"Thorpe Track Pant-32-Black","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"49","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","url_key":"thorpe-track-pant-32-black","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"MP07-32-Blue","id":809,"status":1,"name":"Thorpe Track Pant-32-Blue","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"50","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","url_key":"thorpe-track-pant-32-blue","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"MP07-32-Purple","id":810,"status":1,"name":"Thorpe Track Pant-32-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"57","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","url_key":"thorpe-track-pant-32-purple","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"MP07-33-Black","id":811,"status":1,"name":"Thorpe Track Pant-33-Black","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"49","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","url_key":"thorpe-track-pant-33-black","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"MP07-33-Blue","id":812,"status":1,"name":"Thorpe Track Pant-33-Blue","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"50","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","url_key":"thorpe-track-pant-33-blue","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"MP07-33-Purple","id":813,"status":1,"name":"Thorpe Track Pant-33-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"57","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","url_key":"thorpe-track-pant-33-purple","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"MP07-34-Black","id":814,"status":1,"name":"Thorpe Track Pant-34-Black","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"49","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","url_key":"thorpe-track-pant-34-black","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"MP07-34-Blue","id":815,"status":1,"name":"Thorpe Track Pant-34-Blue","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"50","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","url_key":"thorpe-track-pant-34-blue","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"MP07-34-Purple","id":816,"status":1,"name":"Thorpe Track Pant-34-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"57","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","url_key":"thorpe-track-pant-34-purple","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"MP07-36-Black","id":817,"status":1,"name":"Thorpe Track Pant-36-Black","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"49","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","url_key":"thorpe-track-pant-36-black","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"MP07-36-Blue","id":818,"status":1,"name":"Thorpe Track Pant-36-Blue","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"50","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","url_key":"thorpe-track-pant-36-blue","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"MP07-36-Purple","id":819,"status":1,"name":"Thorpe Track Pant-36-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"57","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","url_key":"thorpe-track-pant-36-purple","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68}],"configurable_options":[{"id":111,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":820,"attribute_code":"color"},{"id":110,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":820,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-820.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"833","_score":1,"_source":{"id":833,"sku":"MP08","name":"Zeppelin Yoga Pant","attribute_set_id":10,"price":82,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                \n

                • Smooth exterior for easy over-layering.
                • Brushed fleece interior insulates and wicks.
                • No-roll elastic waistband with inner drawstring.
                • Chafe-resistant flatlock seams.

                ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"zeppelin-yoga-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,148,151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,113,105,115,109],"pattern":"197","climate":[202,204,208,210,211],"slug":"zeppelin-yoga-pant-833","links":{},"stock":{"item_id":833,"product_id":833,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP08-32-Blue","id":821,"status":1,"name":"Zeppelin Yoga Pant-32-Blue","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"50","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","url_key":"zeppelin-yoga-pant-32-blue","msrp_display_actual_price_type":"0","final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82},{"sku":"MP08-32-Green","id":822,"status":1,"name":"Zeppelin Yoga Pant-32-Green","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"53","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","url_key":"zeppelin-yoga-pant-32-green","msrp_display_actual_price_type":"0","final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82},{"sku":"MP08-32-Red","id":823,"status":1,"name":"Zeppelin Yoga Pant-32-Red","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"58","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","url_key":"zeppelin-yoga-pant-32-red","msrp_display_actual_price_type":"0","final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82},{"sku":"MP08-33-Blue","id":824,"status":1,"name":"Zeppelin Yoga Pant-33-Blue","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"50","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","url_key":"zeppelin-yoga-pant-33-blue","msrp_display_actual_price_type":"0","final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82},{"sku":"MP08-33-Green","id":825,"status":1,"name":"Zeppelin Yoga Pant-33-Green","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"53","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","url_key":"zeppelin-yoga-pant-33-green","msrp_display_actual_price_type":"0","final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82},{"sku":"MP08-33-Red","id":826,"status":1,"name":"Zeppelin Yoga Pant-33-Red","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"58","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","url_key":"zeppelin-yoga-pant-33-red","msrp_display_actual_price_type":"0","final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82},{"sku":"MP08-34-Blue","id":827,"status":1,"name":"Zeppelin Yoga Pant-34-Blue","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"50","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","url_key":"zeppelin-yoga-pant-34-blue","msrp_display_actual_price_type":"0","final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82},{"sku":"MP08-34-Green","id":828,"status":1,"name":"Zeppelin Yoga Pant-34-Green","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"53","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","url_key":"zeppelin-yoga-pant-34-green","msrp_display_actual_price_type":"0","final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82},{"sku":"MP08-34-Red","id":829,"status":1,"name":"Zeppelin Yoga Pant-34-Red","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"58","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","url_key":"zeppelin-yoga-pant-34-red","msrp_display_actual_price_type":"0","final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82},{"sku":"MP08-36-Blue","id":830,"status":1,"name":"Zeppelin Yoga Pant-36-Blue","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"50","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","url_key":"zeppelin-yoga-pant-36-blue","msrp_display_actual_price_type":"0","final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82},{"sku":"MP08-36-Green","id":831,"status":1,"name":"Zeppelin Yoga Pant-36-Green","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"53","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","url_key":"zeppelin-yoga-pant-36-green","msrp_display_actual_price_type":"0","final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82},{"sku":"MP08-36-Red","id":832,"status":1,"name":"Zeppelin Yoga Pant-36-Red","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"58","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","url_key":"zeppelin-yoga-pant-36-red","msrp_display_actual_price_type":"0","final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82}],"configurable_options":[{"id":113,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":833,"attribute_code":"color"},{"id":112,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":833,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-833.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"846","_score":1,"_source":{"id":846,"sku":"MP09","name":"Livingston All-Purpose Tight","attribute_set_id":10,"price":75,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                \n

                • Breathable stretch organic cotton/spandex.
                • Compression fit
                • Hidden key pocket
                • Elastic waist with internal drawcord.

                ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"livingston-all-purpose-tight","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,145,38,39],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"1","sale":"0","style_bottom":[113,105,108,115,109],"pattern":"197","climate":[202,203,204,210,211],"slug":"livingston-all-purpose-tight-846","links":{},"stock":{"item_id":846,"product_id":846,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP09-32-Black","id":834,"status":1,"name":"Livingston All-Purpose Tight-32-Black","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"176","color":"49","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","url_key":"livingston-all-purpose-tight-32-black","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"MP09-32-Blue","id":835,"status":1,"name":"Livingston All-Purpose Tight-32-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"176","color":"50","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","url_key":"livingston-all-purpose-tight-32-blue","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"MP09-32-Red","id":836,"status":1,"name":"Livingston All-Purpose Tight-32-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"176","color":"58","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","url_key":"livingston-all-purpose-tight-32-red","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"MP09-33-Black","id":837,"status":1,"name":"Livingston All-Purpose Tight-33-Black","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"177","color":"49","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","url_key":"livingston-all-purpose-tight-33-black","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"MP09-33-Blue","id":838,"status":1,"name":"Livingston All-Purpose Tight-33-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"177","color":"50","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","url_key":"livingston-all-purpose-tight-33-blue","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"MP09-33-Red","id":839,"status":1,"name":"Livingston All-Purpose Tight-33-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"177","color":"58","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","url_key":"livingston-all-purpose-tight-33-red","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"MP09-34-Black","id":840,"status":1,"name":"Livingston All-Purpose Tight-34-Black","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"178","color":"49","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","url_key":"livingston-all-purpose-tight-34-black","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"MP09-34-Blue","id":841,"status":1,"name":"Livingston All-Purpose Tight-34-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"178","color":"50","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","url_key":"livingston-all-purpose-tight-34-blue","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"MP09-34-Red","id":842,"status":1,"name":"Livingston All-Purpose Tight-34-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"178","color":"58","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","url_key":"livingston-all-purpose-tight-34-red","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"MP09-36-Black","id":843,"status":1,"name":"Livingston All-Purpose Tight-36-Black","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"179","color":"49","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","url_key":"livingston-all-purpose-tight-36-black","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"MP09-36-Blue","id":844,"status":1,"name":"Livingston All-Purpose Tight-36-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"179","color":"50","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","url_key":"livingston-all-purpose-tight-36-blue","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"MP09-36-Red","id":845,"status":1,"name":"Livingston All-Purpose Tight-36-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"179","color":"58","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","url_key":"livingston-all-purpose-tight-36-red","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75}],"configurable_options":[{"id":115,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":846,"attribute_code":"color"},{"id":114,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":846,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-846.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"768","_score":1,"_source":{"id":768,"sku":"MP03","name":"Geo Insulated Jogging Pant","attribute_set_id":10,"price":51,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                \n

                • Black polyester spandex pants with zipper pockets.
                • Reflective safety accents.
                • Loose fit.
                • On-seam pockets.
                • 8\" leg zips. 32\" inseam.
                • Machine wash/dry.

                ","image":"/m/p/mp03-black_main.jpg","small_image":"/m/p/mp03-black_main.jpg","thumbnail":"/m/p/mp03-black_main.jpg","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"geo-insulated-jogging-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,38,39,151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[202,204,205,210,211],"slug":"geo-insulated-jogging-pant-768","links":{},"stock":{"item_id":768,"product_id":768,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP03-32-Blue","id":756,"status":1,"name":"Geo Insulated Jogging Pant-32-Blue","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"50","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","url_key":"geo-insulated-jogging-pant-32-blue","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MP03-32-Green","id":757,"status":1,"name":"Geo Insulated Jogging Pant-32-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"53","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","url_key":"geo-insulated-jogging-pant-32-green","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MP03-32-Red","id":758,"status":1,"name":"Geo Insulated Jogging Pant-32-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"58","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","url_key":"geo-insulated-jogging-pant-32-red","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MP03-33-Blue","id":759,"status":1,"name":"Geo Insulated Jogging Pant-33-Blue","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"50","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","url_key":"geo-insulated-jogging-pant-33-blue","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MP03-33-Green","id":760,"status":1,"name":"Geo Insulated Jogging Pant-33-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"53","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","url_key":"geo-insulated-jogging-pant-33-green","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MP03-33-Red","id":761,"status":1,"name":"Geo Insulated Jogging Pant-33-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"58","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","url_key":"geo-insulated-jogging-pant-33-red","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MP03-34-Blue","id":762,"status":1,"name":"Geo Insulated Jogging Pant-34-Blue","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"50","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","url_key":"geo-insulated-jogging-pant-34-blue","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MP03-34-Green","id":763,"status":1,"name":"Geo Insulated Jogging Pant-34-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"53","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","url_key":"geo-insulated-jogging-pant-34-green","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MP03-34-Red","id":764,"status":1,"name":"Geo Insulated Jogging Pant-34-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"58","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","url_key":"geo-insulated-jogging-pant-34-red","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MP03-36-Blue","id":765,"status":1,"name":"Geo Insulated Jogging Pant-36-Blue","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"50","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","url_key":"geo-insulated-jogging-pant-36-blue","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MP03-36-Green","id":766,"status":1,"name":"Geo Insulated Jogging Pant-36-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"53","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","url_key":"geo-insulated-jogging-pant-36-green","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MP03-36-Red","id":767,"status":1,"name":"Geo Insulated Jogging Pant-36-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"58","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","url_key":"geo-insulated-jogging-pant-36-red","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51}],"configurable_options":[{"id":103,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":768,"attribute_code":"color"},{"id":102,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":768,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-768.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"781","_score":1,"_source":{"id":781,"sku":"MP04","name":"Supernova Sport Pant","attribute_set_id":10,"price":45,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                \n

                • Dark heather gray straight leg cotton pants.
                • Relaxed fit.
                • Internal drawstring.
                • Machine wash/dry.

                ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"supernova-sport-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[202,203,204,208,210,211],"slug":"supernova-sport-pant-781","links":{},"stock":{"item_id":781,"product_id":781,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP04-32-Black","id":769,"status":1,"name":"Supernova Sport Pant-32-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"49","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","url_key":"supernova-sport-pant-32-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MP04-32-Gray","id":770,"status":1,"name":"Supernova Sport Pant-32-Gray","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"52","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","url_key":"supernova-sport-pant-32-gray","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MP04-32-Green","id":771,"status":1,"name":"Supernova Sport Pant-32-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"53","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","url_key":"supernova-sport-pant-32-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MP04-33-Black","id":772,"status":1,"name":"Supernova Sport Pant-33-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"49","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","url_key":"supernova-sport-pant-33-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MP04-33-Gray","id":773,"status":1,"name":"Supernova Sport Pant-33-Gray","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"52","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","url_key":"supernova-sport-pant-33-gray","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MP04-33-Green","id":774,"status":1,"name":"Supernova Sport Pant-33-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"53","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","url_key":"supernova-sport-pant-33-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MP04-34-Black","id":775,"status":1,"name":"Supernova Sport Pant-34-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"49","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","url_key":"supernova-sport-pant-34-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MP04-34-Gray","id":776,"status":1,"name":"Supernova Sport Pant-34-Gray","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"52","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","url_key":"supernova-sport-pant-34-gray","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MP04-34-Green","id":777,"status":1,"name":"Supernova Sport Pant-34-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"53","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","url_key":"supernova-sport-pant-34-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MP04-36-Black","id":778,"status":1,"name":"Supernova Sport Pant-36-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"49","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","url_key":"supernova-sport-pant-36-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MP04-36-Gray","id":779,"status":1,"name":"Supernova Sport Pant-36-Gray","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"52","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","url_key":"supernova-sport-pant-36-gray","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MP04-36-Green","id":780,"status":1,"name":"Supernova Sport Pant-36-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"53","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","url_key":"supernova-sport-pant-36-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45}],"configurable_options":[{"id":105,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":781,"attribute_code":"color"},{"id":104,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":781,"attribute_code":"size"}],"color_options":[49,52,53],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-781.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"794","_score":1,"_source":{"id":794,"sku":"MP05","name":"Kratos Gym Pant","attribute_set_id":10,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                \n

                • Navy cotton straight leg pants.
                • Relaxed fit.
                • 2 side-seam pockets.
                • Internal zip pocket.
                • Drawstring waist.
                • Machine wash/dry.

                ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"kratos-gym-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38,39],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[208,210,211],"slug":"kratos-gym-pant-794","links":{},"stock":{"item_id":794,"product_id":794,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP05-32-Black","id":782,"status":1,"name":"Kratos Gym Pant-32-Black","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"49","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","url_key":"kratos-gym-pant-32-black","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"MP05-32-Blue","id":783,"status":1,"name":"Kratos Gym Pant-32-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"50","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","url_key":"kratos-gym-pant-32-blue","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"MP05-32-Green","id":784,"status":1,"name":"Kratos Gym Pant-32-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"53","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","url_key":"kratos-gym-pant-32-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"MP05-33-Black","id":785,"status":1,"name":"Kratos Gym Pant-33-Black","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"49","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","url_key":"kratos-gym-pant-33-black","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"MP05-33-Blue","id":786,"status":1,"name":"Kratos Gym Pant-33-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"50","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","url_key":"kratos-gym-pant-33-blue","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"MP05-33-Green","id":787,"status":1,"name":"Kratos Gym Pant-33-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"53","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","url_key":"kratos-gym-pant-33-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"MP05-34-Black","id":788,"status":1,"name":"Kratos Gym Pant-34-Black","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"49","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","url_key":"kratos-gym-pant-34-black","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"MP05-34-Blue","id":789,"status":1,"name":"Kratos Gym Pant-34-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"50","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","url_key":"kratos-gym-pant-34-blue","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"MP05-34-Green","id":790,"status":1,"name":"Kratos Gym Pant-34-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"53","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","url_key":"kratos-gym-pant-34-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"MP05-36-Black","id":791,"status":1,"name":"Kratos Gym Pant-36-Black","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"49","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","url_key":"kratos-gym-pant-36-black","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"MP05-36-Blue","id":792,"status":1,"name":"Kratos Gym Pant-36-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"50","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","url_key":"kratos-gym-pant-36-blue","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"MP05-36-Green","id":793,"status":1,"name":"Kratos Gym Pant-36-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"53","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","url_key":"kratos-gym-pant-36-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57}],"configurable_options":[{"id":107,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":794,"attribute_code":"color"},{"id":106,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":794,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-794.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"859","_score":1,"_source":{"id":859,"sku":"MP10","name":"Orestes Yoga Pant ","attribute_set_id":10,"price":66,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                \n

                • A yoga essential.
                • Breathable stretch organic cotton/spandex.
                • Standard Fit.

                ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"orestes-yoga-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,154,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[116,115,109],"pattern":"197","climate":[204,205,206,210,211],"slug":"orestes-yoga-pant-859","links":{},"stock":{"item_id":859,"product_id":859,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP10-32-Black","id":847,"status":1,"name":"Orestes Yoga Pant -32-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"176","color":"49","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","url_key":"orestes-yoga-pant-32-black","msrp_display_actual_price_type":"0"},{"sku":"MP10-32-Blue","id":848,"status":1,"name":"Orestes Yoga Pant -32-Blue","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"176","color":"50","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","url_key":"orestes-yoga-pant-32-blue","msrp_display_actual_price_type":"0"},{"sku":"MP10-32-Green","id":849,"status":1,"name":"Orestes Yoga Pant -32-Green","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"176","color":"53","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","url_key":"orestes-yoga-pant-32-green","msrp_display_actual_price_type":"0"},{"sku":"MP10-33-Black","id":850,"status":1,"name":"Orestes Yoga Pant -33-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"177","color":"49","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","url_key":"orestes-yoga-pant-33-black","msrp_display_actual_price_type":"0"},{"sku":"MP10-33-Blue","id":851,"status":1,"name":"Orestes Yoga Pant -33-Blue","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"177","color":"50","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","url_key":"orestes-yoga-pant-33-blue","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MP10-33-Green","id":852,"status":1,"name":"Orestes Yoga Pant -33-Green","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"177","color":"53","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","url_key":"orestes-yoga-pant-33-green","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MP10-34-Black","id":853,"status":1,"name":"Orestes Yoga Pant -34-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"178","color":"49","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","url_key":"orestes-yoga-pant-34-black","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MP10-34-Blue","id":854,"status":1,"name":"Orestes Yoga Pant -34-Blue","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"178","color":"50","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","url_key":"orestes-yoga-pant-34-blue","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MP10-34-Green","id":855,"status":1,"name":"Orestes Yoga Pant -34-Green","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"178","color":"53","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","url_key":"orestes-yoga-pant-34-green","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MP10-36-Black","id":856,"status":1,"name":"Orestes Yoga Pant -36-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"179","color":"49","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","url_key":"orestes-yoga-pant-36-black","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MP10-36-Blue","id":857,"status":1,"name":"Orestes Yoga Pant -36-Blue","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"179","color":"50","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","url_key":"orestes-yoga-pant-36-blue","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MP10-36-Green","id":858,"status":1,"name":"Orestes Yoga Pant -36-Green","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"179","color":"53","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","url_key":"orestes-yoga-pant-36-green","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66}],"configurable_options":[{"id":117,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":859,"attribute_code":"color"},{"id":116,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":859,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-859.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"885","_score":1,"_source":{"id":885,"sku":"MP12","name":"Cronus Yoga Pant ","attribute_set_id":10,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                \n

                • Drawstring waist.
                • Loose, straight-leg fit.
                • Lightweight cotton-recycled blend.
                • Front pockets with stitching detail.
                • Elastic ankle.

                ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cronus-yoga-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[38,33,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,115,109],"pattern":"197","climate":[204,205,206,208,210,211],"slug":"cronus-yoga-pant-885","links":{},"stock":{"item_id":885,"product_id":885,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP12-32-Black","id":873,"status":1,"name":"Cronus Yoga Pant -32-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"49","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","url_key":"cronus-yoga-pant-32-black","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"MP12-32-Blue","id":874,"status":1,"name":"Cronus Yoga Pant -32-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"50","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","url_key":"cronus-yoga-pant-32-blue","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"MP12-32-Red","id":875,"status":1,"name":"Cronus Yoga Pant -32-Red","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"58","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","url_key":"cronus-yoga-pant-32-red","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"MP12-33-Black","id":876,"status":1,"name":"Cronus Yoga Pant -33-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"49","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","url_key":"cronus-yoga-pant-33-black","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"MP12-33-Blue","id":877,"status":1,"name":"Cronus Yoga Pant -33-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"50","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","url_key":"cronus-yoga-pant-33-blue","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"MP12-33-Red","id":878,"status":1,"name":"Cronus Yoga Pant -33-Red","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"58","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","url_key":"cronus-yoga-pant-33-red","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"MP12-34-Black","id":879,"status":1,"name":"Cronus Yoga Pant -34-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"49","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","url_key":"cronus-yoga-pant-34-black","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"MP12-34-Blue","id":880,"status":1,"name":"Cronus Yoga Pant -34-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"50","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","url_key":"cronus-yoga-pant-34-blue","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"MP12-34-Red","id":881,"status":1,"name":"Cronus Yoga Pant -34-Red","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"58","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","url_key":"cronus-yoga-pant-34-red","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"MP12-36-Black","id":882,"status":1,"name":"Cronus Yoga Pant -36-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"49","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","url_key":"cronus-yoga-pant-36-black","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"MP12-36-Blue","id":883,"status":1,"name":"Cronus Yoga Pant -36-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"50","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","url_key":"cronus-yoga-pant-36-blue","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"MP12-36-Red","id":884,"status":1,"name":"Cronus Yoga Pant -36-Red","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"58","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","url_key":"cronus-yoga-pant-36-red","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48}],"configurable_options":[{"id":121,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":885,"attribute_code":"color"},{"id":120,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":885,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-885.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"872","_score":1,"_source":{"id":872,"sku":"MP11","name":"Aether Gym Pant ","attribute_set_id":10,"price":74,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2019-05-17 10:35:29","product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                \r\n

                • Pants/shorts convertible.
                • Lightweight moisture wicking.
                • Water repellent.
                • Belted waist.

                ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","category_ids":[18,32,34,2],"options_container":"container2","required_options":"1","has_options":"1","url_key":"aether-gym-pant","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":[143,151,159],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[202,203,204,205,206,207,208,210],"slug":"aether-gym-pant-872","links":{},"stock":{"item_id":872,"product_id":872,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":null,"vid":null},{"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":null,"vid":null}],"configurable_children":[{"sku":"MP11-32-Blue","id":860,"status":1,"name":"Aether Gym Pant -32-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"176","color":"50","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","url_key":"aether-gym-pant-32-blue","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MP11-32-Brown","id":861,"status":1,"name":"Aether Gym Pant -32-Brown","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"176","color":"51","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","url_key":"aether-gym-pant-32-brown","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MP11-32-Green","id":862,"status":1,"name":"Aether Gym Pant -32-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"176","color":"53","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","url_key":"aether-gym-pant-32-green","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MP11-33-Blue","id":863,"status":1,"name":"Aether Gym Pant -33-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"177","color":"50","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","url_key":"aether-gym-pant-33-blue","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MP11-33-Brown","id":864,"status":1,"name":"Aether Gym Pant -33-Brown","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"177","color":"51","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","url_key":"aether-gym-pant-33-brown","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MP11-33-Green","id":865,"status":1,"name":"Aether Gym Pant -33-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"177","color":"53","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","url_key":"aether-gym-pant-33-green","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MP11-34-Blue","id":866,"status":2,"name":"Aether Gym Pant -34-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"178","color":"50","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","url_key":"aether-gym-pant-34-blue","msrp_display_actual_price_type":"0"},{"sku":"MP11-34-Brown","id":867,"status":1,"name":"Aether Gym Pant -34-Brown","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"178","color":"51","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","url_key":"aether-gym-pant-34-brown","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MP11-34-Green","id":868,"status":1,"name":"Aether Gym Pant -34-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"178","color":"53","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","url_key":"aether-gym-pant-34-green","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MP11-36-Blue","id":869,"status":1,"name":"Aether Gym Pant -36-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"179","color":"50","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","url_key":"aether-gym-pant-36-blue","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MP11-36-Brown","id":870,"status":1,"name":"Aether Gym Pant -36-Brown","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"179","color":"51","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","url_key":"aether-gym-pant-36-brown","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MP11-36-Green","id":871,"status":1,"name":"Aether Gym Pant -36-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"179","color":"53","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","url_key":"aether-gym-pant-36-green","msrp_display_actual_price_type":"0"}],"configurable_options":[{"id":316,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":51,"label":"Brown"},{"value_index":53,"label":"Green"}],"product_id":872,"attribute_code":"color"},{"id":317,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":872,"attribute_code":"size"}],"color_options":[50,51,53],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-872.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"834","_score":1,"_source":{"id":834,"sku":"MP09-32-Black","name":"Livingston All-Purpose Tight-32-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                \n

                • Breathable stretch organic cotton/spandex.
                • Compression fit
                • Hidden key pocket
                • Elastic waist with internal drawcord.

                ","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","color":"49","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"livingston-all-purpose-tight-32-black-834","links":{},"stock":{"item_id":834,"product_id":834,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-32-black-834.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"847","_score":1,"_source":{"id":847,"sku":"MP10-32-Black","name":"Orestes Yoga Pant -32-Black","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                \n

                • A yoga essential.
                • Breathable stretch organic cotton/spandex.
                • Standard Fit.

                ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","color":"49","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-yoga-pant-32-black-847","links":{},"stock":{"item_id":847,"product_id":847,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-32-black-847.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"830","_score":1,"_source":{"id":830,"sku":"MP08-36-Blue","name":"Zeppelin Yoga Pant-36-Blue","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                \n

                • Smooth exterior for easy over-layering.
                • Brushed fleece interior insulates and wicks.
                • No-roll elastic waistband with inner drawstring.
                • Chafe-resistant flatlock seams.

                ","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"zeppelin-yoga-pant-36-blue-830","links":{},"stock":{"item_id":830,"product_id":830,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-36-blue-830.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"838","_score":1,"_source":{"id":838,"sku":"MP09-33-Blue","name":"Livingston All-Purpose Tight-33-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                \n

                • Breathable stretch organic cotton/spandex.
                • Compression fit
                • Hidden key pocket
                • Elastic waist with internal drawcord.

                ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","color":"50","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"livingston-all-purpose-tight-33-blue-838","links":{},"stock":{"item_id":838,"product_id":838,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-33-blue-838.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"828","_score":1,"_source":{"id":828,"sku":"MP08-34-Green","name":"Zeppelin Yoga Pant-34-Green","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                \n

                • Smooth exterior for easy over-layering.
                • Brushed fleece interior insulates and wicks.
                • No-roll elastic waistband with inner drawstring.
                • Chafe-resistant flatlock seams.

                ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"zeppelin-yoga-pant-34-green-828","links":{},"stock":{"item_id":828,"product_id":828,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-34-green-828.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"837","_score":1,"_source":{"id":837,"sku":"MP09-33-Black","name":"Livingston All-Purpose Tight-33-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                \n

                • Breathable stretch organic cotton/spandex.
                • Compression fit
                • Hidden key pocket
                • Elastic waist with internal drawcord.

                ","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","color":"49","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"livingston-all-purpose-tight-33-black-837","links":{},"stock":{"item_id":837,"product_id":837,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-33-black-837.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"849","_score":1,"_source":{"id":849,"sku":"MP10-32-Green","name":"Orestes Yoga Pant -32-Green","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                \n

                • A yoga essential.
                • Breathable stretch organic cotton/spandex.
                • Standard Fit.

                ","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-yoga-pant-32-green-849","links":{},"stock":{"item_id":849,"product_id":849,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-32-green-849.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"836","_score":1,"_source":{"id":836,"sku":"MP09-32-Red","name":"Livingston All-Purpose Tight-32-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                \n

                • Breathable stretch organic cotton/spandex.
                • Compression fit
                • Hidden key pocket
                • Elastic waist with internal drawcord.

                ","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","color":"58","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"livingston-all-purpose-tight-32-red-836","links":{},"stock":{"item_id":836,"product_id":836,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-32-red-836.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"839","_score":1,"_source":{"id":839,"sku":"MP09-33-Red","name":"Livingston All-Purpose Tight-33-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                \n

                • Breathable stretch organic cotton/spandex.
                • Compression fit
                • Hidden key pocket
                • Elastic waist with internal drawcord.

                ","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","color":"58","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"livingston-all-purpose-tight-33-red-839","links":{},"stock":{"item_id":839,"product_id":839,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-33-red-839.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"822","_score":1,"_source":{"id":822,"sku":"MP08-32-Green","name":"Zeppelin Yoga Pant-32-Green","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                \n

                • Smooth exterior for easy over-layering.
                • Brushed fleece interior insulates and wicks.
                • No-roll elastic waistband with inner drawstring.
                • Chafe-resistant flatlock seams.

                ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"zeppelin-yoga-pant-32-green-822","links":{},"stock":{"item_id":822,"product_id":822,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-32-green-822.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"832","_score":1,"_source":{"id":832,"sku":"MP08-36-Red","name":"Zeppelin Yoga Pant-36-Red","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                \n

                • Smooth exterior for easy over-layering.
                • Brushed fleece interior insulates and wicks.
                • No-roll elastic waistband with inner drawstring.
                • Chafe-resistant flatlock seams.

                ","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"zeppelin-yoga-pant-36-red-832","links":{},"stock":{"item_id":832,"product_id":832,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-36-red-832.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"835","_score":1,"_source":{"id":835,"sku":"MP09-32-Blue","name":"Livingston All-Purpose Tight-32-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                \n

                • Breathable stretch organic cotton/spandex.
                • Compression fit
                • Hidden key pocket
                • Elastic waist with internal drawcord.

                ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","color":"50","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"livingston-all-purpose-tight-32-blue-835","links":{},"stock":{"item_id":835,"product_id":835,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-32-blue-835.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"848","_score":1,"_source":{"id":848,"sku":"MP10-32-Blue","name":"Orestes Yoga Pant -32-Blue","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                \n

                • A yoga essential.
                • Breathable stretch organic cotton/spandex.
                • Standard Fit.

                ","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-yoga-pant-32-blue-848","links":{},"stock":{"item_id":848,"product_id":848,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-32-blue-848.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"844","_score":1,"_source":{"id":844,"sku":"MP09-36-Blue","name":"Livingston All-Purpose Tight-36-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                \n

                • Breathable stretch organic cotton/spandex.
                • Compression fit
                • Hidden key pocket
                • Elastic waist with internal drawcord.

                ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","color":"50","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"livingston-all-purpose-tight-36-blue-844","links":{},"stock":{"item_id":844,"product_id":844,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-36-blue-844.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"843","_score":1,"_source":{"id":843,"sku":"MP09-36-Black","name":"Livingston All-Purpose Tight-36-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                \n

                • Breathable stretch organic cotton/spandex.
                • Compression fit
                • Hidden key pocket
                • Elastic waist with internal drawcord.

                ","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","color":"49","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"livingston-all-purpose-tight-36-black-843","links":{},"stock":{"item_id":843,"product_id":843,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-36-black-843.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"850","_score":1,"_source":{"id":850,"sku":"MP10-33-Black","name":"Orestes Yoga Pant -33-Black","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                \n

                • A yoga essential.
                • Breathable stretch organic cotton/spandex.
                • Standard Fit.

                ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","color":"49","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-yoga-pant-33-black-850","links":{},"stock":{"item_id":850,"product_id":850,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-33-black-850.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"845","_score":1,"_source":{"id":845,"sku":"MP09-36-Red","name":"Livingston All-Purpose Tight-36-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                \n

                • Breathable stretch organic cotton/spandex.
                • Compression fit
                • Hidden key pocket
                • Elastic waist with internal drawcord.

                ","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","color":"58","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"livingston-all-purpose-tight-36-red-845","links":{},"stock":{"item_id":845,"product_id":845,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-36-red-845.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"840","_score":1,"_source":{"id":840,"sku":"MP09-34-Black","name":"Livingston All-Purpose Tight-34-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                \n

                • Breathable stretch organic cotton/spandex.
                • Compression fit
                • Hidden key pocket
                • Elastic waist with internal drawcord.

                ","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","color":"49","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"livingston-all-purpose-tight-34-black-840","links":{},"stock":{"item_id":840,"product_id":840,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-34-black-840.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"898","_score":1,"_source":{"id":898,"sku":"MSH01","name":"Cobalt CoolTech™ Fitness Short","attribute_set_id":10,"price":44,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                \n

                • Light blue nylon shorts.
                • Relaxed fit.
                • 5\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cobalt-cooltech-trade-fitness-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,37,38,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[202,205,212],"slug":"cobalt-cooltech-and-trade-fitness-short-898","links":{},"stock":{"item_id":898,"product_id":898,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH01-32-Black","id":886,"status":1,"name":"Cobalt CoolTech™ Fitness Short-32-Black","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"176","color":"49","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-32-black","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"MSH01-32-Blue","id":887,"status":1,"name":"Cobalt CoolTech™ Fitness Short-32-Blue","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"176","color":"50","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-32-blue","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"MSH01-32-Red","id":888,"status":1,"name":"Cobalt CoolTech™ Fitness Short-32-Red","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"176","color":"58","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-32-red","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"MSH01-33-Black","id":889,"status":1,"name":"Cobalt CoolTech™ Fitness Short-33-Black","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"177","color":"49","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-33-black","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"MSH01-33-Blue","id":890,"status":1,"name":"Cobalt CoolTech™ Fitness Short-33-Blue","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"177","color":"50","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-33-blue","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"MSH01-33-Red","id":891,"status":1,"name":"Cobalt CoolTech™ Fitness Short-33-Red","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"177","color":"58","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-33-red","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"MSH01-34-Black","id":892,"status":1,"name":"Cobalt CoolTech™ Fitness Short-34-Black","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"178","color":"49","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-34-black","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"MSH01-34-Blue","id":893,"status":1,"name":"Cobalt CoolTech™ Fitness Short-34-Blue","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"178","color":"50","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-34-blue","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"MSH01-34-Red","id":894,"status":1,"name":"Cobalt CoolTech™ Fitness Short-34-Red","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"178","color":"58","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-34-red","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"MSH01-36-Black","id":895,"status":1,"name":"Cobalt CoolTech™ Fitness Short-36-Black","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"179","color":"49","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-36-black","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"MSH01-36-Blue","id":896,"status":1,"name":"Cobalt CoolTech™ Fitness Short-36-Blue","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"179","color":"50","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-36-blue","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"MSH01-36-Red","id":897,"status":1,"name":"Cobalt CoolTech™ Fitness Short-36-Red","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"179","color":"58","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-36-red","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44}],"configurable_options":[{"id":123,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":898,"attribute_code":"color"},{"id":122,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":898,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-898.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"804","_score":1,"_source":{"id":804,"sku":"MP06-36-Gray","name":"Mithra Warmup Pant-36-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                \n

                • Ankle zips.
                • Elasticized waistband with draw cord.
                • Dual hand pockets.
                • Reflective elements for low-light safety.

                ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","color":"52","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"mithra-warmup-pant-36-gray-804","links":{},"stock":{"item_id":804,"product_id":804,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-36-gray-804.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"810","_score":1,"_source":{"id":810,"sku":"MP07-32-Purple","name":"Thorpe Track Pant-32-Purple","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                \n

                • Moisture transfer properties.
                • 7% stretch.
                • Reflective safety trim.
                • Elastic drawcord waist.

                ","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","color":"57","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"thorpe-track-pant-32-purple-810","links":{},"stock":{"item_id":810,"product_id":810,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-32-purple-810.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"812","_score":1,"_source":{"id":812,"sku":"MP07-33-Blue","name":"Thorpe Track Pant-33-Blue","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                \n

                • Moisture transfer properties.
                • 7% stretch.
                • Reflective safety trim.
                • Elastic drawcord waist.

                ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"thorpe-track-pant-33-blue-812","links":{},"stock":{"item_id":812,"product_id":812,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-33-blue-812.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"805","_score":1,"_source":{"id":805,"sku":"MP06-36-Green","name":"Mithra Warmup Pant-36-Green","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                \n

                • Ankle zips.
                • Elasticized waistband with draw cord.
                • Dual hand pockets.
                • Reflective elements for low-light safety.

                ","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","color":"53","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"mithra-warmup-pant-36-green-805","links":{},"stock":{"item_id":805,"product_id":805,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-36-green-805.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"809","_score":1,"_source":{"id":809,"sku":"MP07-32-Blue","name":"Thorpe Track Pant-32-Blue","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                \n

                • Moisture transfer properties.
                • 7% stretch.
                • Reflective safety trim.
                • Elastic drawcord waist.

                ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"thorpe-track-pant-32-blue-809","links":{},"stock":{"item_id":809,"product_id":809,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-32-blue-809.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"818","_score":1,"_source":{"id":818,"sku":"MP07-36-Blue","name":"Thorpe Track Pant-36-Blue","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                \n

                • Moisture transfer properties.
                • 7% stretch.
                • Reflective safety trim.
                • Elastic drawcord waist.

                ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"thorpe-track-pant-36-blue-818","links":{},"stock":{"item_id":818,"product_id":818,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-36-blue-818.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"829","_score":1,"_source":{"id":829,"sku":"MP08-34-Red","name":"Zeppelin Yoga Pant-34-Red","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                \n

                • Smooth exterior for easy over-layering.
                • Brushed fleece interior insulates and wicks.
                • No-roll elastic waistband with inner drawstring.
                • Chafe-resistant flatlock seams.

                ","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"zeppelin-yoga-pant-34-red-829","links":{},"stock":{"item_id":829,"product_id":829,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-34-red-829.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"814","_score":1,"_source":{"id":814,"sku":"MP07-34-Black","name":"Thorpe Track Pant-34-Black","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                \n

                • Moisture transfer properties.
                • 7% stretch.
                • Reflective safety trim.
                • Elastic drawcord waist.

                ","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"thorpe-track-pant-34-black-814","links":{},"stock":{"item_id":814,"product_id":814,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-34-black-814.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"803","_score":1,"_source":{"id":803,"sku":"MP06-34-Orange","name":"Mithra Warmup Pant-34-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                \n

                • Ankle zips.
                • Elasticized waistband with draw cord.
                • Dual hand pockets.
                • Reflective elements for low-light safety.

                ","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","color":"56","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-34-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"mithra-warmup-pant-34-orange-803","links":{},"stock":{"item_id":803,"product_id":803,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-34-orange-803.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"801","_score":1,"_source":{"id":801,"sku":"MP06-34-Gray","name":"Mithra Warmup Pant-34-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                \n

                • Ankle zips.
                • Elasticized waistband with draw cord.
                • Dual hand pockets.
                • Reflective elements for low-light safety.

                ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","color":"52","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"mithra-warmup-pant-34-gray-801","links":{},"stock":{"item_id":801,"product_id":801,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-34-gray-801.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"808","_score":1,"_source":{"id":808,"sku":"MP07-32-Black","name":"Thorpe Track Pant-32-Black","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                \n

                • Moisture transfer properties.
                • 7% stretch.
                • Reflective safety trim.
                • Elastic drawcord waist.

                ","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"thorpe-track-pant-32-black-808","links":{},"stock":{"item_id":808,"product_id":808,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-32-black-808.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"811","_score":1,"_source":{"id":811,"sku":"MP07-33-Black","name":"Thorpe Track Pant-33-Black","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                \n

                • Moisture transfer properties.
                • 7% stretch.
                • Reflective safety trim.
                • Elastic drawcord waist.

                ","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"thorpe-track-pant-33-black-811","links":{},"stock":{"item_id":811,"product_id":811,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-33-black-811.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"806","_score":1,"_source":{"id":806,"sku":"MP06-36-Orange","name":"Mithra Warmup Pant-36-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                \n

                • Ankle zips.
                • Elasticized waistband with draw cord.
                • Dual hand pockets.
                • Reflective elements for low-light safety.

                ","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","color":"56","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-36-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"mithra-warmup-pant-36-orange-806","links":{},"stock":{"item_id":806,"product_id":806,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-36-orange-806.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"802","_score":1,"_source":{"id":802,"sku":"MP06-34-Green","name":"Mithra Warmup Pant-34-Green","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                \n

                • Ankle zips.
                • Elasticized waistband with draw cord.
                • Dual hand pockets.
                • Reflective elements for low-light safety.

                ","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","color":"53","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"mithra-warmup-pant-34-green-802","links":{},"stock":{"item_id":802,"product_id":802,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-34-green-802.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"825","_score":1,"_source":{"id":825,"sku":"MP08-33-Green","name":"Zeppelin Yoga Pant-33-Green","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                \n

                • Smooth exterior for easy over-layering.
                • Brushed fleece interior insulates and wicks.
                • No-roll elastic waistband with inner drawstring.
                • Chafe-resistant flatlock seams.

                ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"zeppelin-yoga-pant-33-green-825","links":{},"stock":{"item_id":825,"product_id":825,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-33-green-825.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"823","_score":1,"_source":{"id":823,"sku":"MP08-32-Red","name":"Zeppelin Yoga Pant-32-Red","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                \n

                • Smooth exterior for easy over-layering.
                • Brushed fleece interior insulates and wicks.
                • No-roll elastic waistband with inner drawstring.
                • Chafe-resistant flatlock seams.

                ","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"zeppelin-yoga-pant-32-red-823","links":{},"stock":{"item_id":823,"product_id":823,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-32-red-823.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"827","_score":1,"_source":{"id":827,"sku":"MP08-34-Blue","name":"Zeppelin Yoga Pant-34-Blue","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                \n

                • Smooth exterior for easy over-layering.
                • Brushed fleece interior insulates and wicks.
                • No-roll elastic waistband with inner drawstring.
                • Chafe-resistant flatlock seams.

                ","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"zeppelin-yoga-pant-34-blue-827","links":{},"stock":{"item_id":827,"product_id":827,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-34-blue-827.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"856","_score":1,"_source":{"id":856,"sku":"MP10-36-Black","name":"Orestes Yoga Pant -36-Black","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                \n

                • A yoga essential.
                • Breathable stretch organic cotton/spandex.
                • Standard Fit.

                ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","color":"49","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-yoga-pant-36-black-856","links":{},"stock":{"item_id":856,"product_id":856,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-36-black-856.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"862","_score":1,"_source":{"id":862,"sku":"MP11-32-Green","name":"Aether Gym Pant -32-Green","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                \n

                • Pants/shorts convertible.
                • Lightweight moisture wicking.
                • Water repellent.
                • Belted waist.

                ","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"aether-gym-pant-32-green-862","links":{},"stock":{"item_id":862,"product_id":862,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-32-green-862.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"851","_score":1,"_source":{"id":851,"sku":"MP10-33-Blue","name":"Orestes Yoga Pant -33-Blue","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                \n

                • A yoga essential.
                • Breathable stretch organic cotton/spandex.
                • Standard Fit.

                ","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-yoga-pant-33-blue-851","links":{},"stock":{"item_id":851,"product_id":851,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-33-blue-851.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"870","_score":1,"_source":{"id":870,"sku":"MP11-36-Brown","name":"Aether Gym Pant -36-Brown","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                \n

                • Pants/shorts convertible.
                • Lightweight moisture wicking.
                • Water repellent.
                • Belted waist.

                ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","color":"51","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-36-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"aether-gym-pant-36-brown-870","links":{},"stock":{"item_id":870,"product_id":870,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-36-brown-870.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"864","_score":1,"_source":{"id":864,"sku":"MP11-33-Brown","name":"Aether Gym Pant -33-Brown","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                \n

                • Pants/shorts convertible.
                • Lightweight moisture wicking.
                • Water repellent.
                • Belted waist.

                ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","color":"51","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-33-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"aether-gym-pant-33-brown-864","links":{},"stock":{"item_id":864,"product_id":864,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-33-brown-864.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"860","_score":1,"_source":{"id":860,"sku":"MP11-32-Blue","name":"Aether Gym Pant -32-Blue","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2019-05-17 10:36:33","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                \r\n

                • Pants/shorts convertible.
                • Lightweight moisture wicking.
                • Water repellent.
                • Belted waist.

                ","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-32-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"176","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"aether-gym-pant-32-blue-860","links":{},"stock":{"item_id":860,"product_id":860,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-32-blue-860.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"861","_score":1,"_source":{"id":861,"sku":"MP11-32-Brown","name":"Aether Gym Pant -32-Brown","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                \n

                • Pants/shorts convertible.
                • Lightweight moisture wicking.
                • Water repellent.
                • Belted waist.

                ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","color":"51","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-32-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"aether-gym-pant-32-brown-861","links":{},"stock":{"item_id":861,"product_id":861,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-32-brown-861.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"863","_score":1,"_source":{"id":863,"sku":"MP11-33-Blue","name":"Aether Gym Pant -33-Blue","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2019-05-17 10:37:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                \r\n

                • Pants/shorts convertible.
                • Lightweight moisture wicking.
                • Water repellent.
                • Belted waist.

                ","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-33-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"177","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"aether-gym-pant-33-blue-863","links":{},"stock":{"item_id":863,"product_id":863,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-33-blue-863.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"852","_score":1,"_source":{"id":852,"sku":"MP10-33-Green","name":"Orestes Yoga Pant -33-Green","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                \n

                • A yoga essential.
                • Breathable stretch organic cotton/spandex.
                • Standard Fit.

                ","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-yoga-pant-33-green-852","links":{},"stock":{"item_id":852,"product_id":852,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-33-green-852.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"858","_score":1,"_source":{"id":858,"sku":"MP10-36-Green","name":"Orestes Yoga Pant -36-Green","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                \n

                • A yoga essential.
                • Breathable stretch organic cotton/spandex.
                • Standard Fit.

                ","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-yoga-pant-36-green-858","links":{},"stock":{"item_id":858,"product_id":858,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-36-green-858.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"857","_score":1,"_source":{"id":857,"sku":"MP10-36-Blue","name":"Orestes Yoga Pant -36-Blue","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                \n

                • A yoga essential.
                • Breathable stretch organic cotton/spandex.
                • Standard Fit.

                ","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-yoga-pant-36-blue-857","links":{},"stock":{"item_id":857,"product_id":857,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-36-blue-857.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"853","_score":1,"_source":{"id":853,"sku":"MP10-34-Black","name":"Orestes Yoga Pant -34-Black","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                \n

                • A yoga essential.
                • Breathable stretch organic cotton/spandex.
                • Standard Fit.

                ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","color":"49","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-yoga-pant-34-black-853","links":{},"stock":{"item_id":853,"product_id":853,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-34-black-853.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"871","_score":1,"_source":{"id":871,"sku":"MP11-36-Green","name":"Aether Gym Pant -36-Green","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2019-05-14 08:20:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                \r\n

                • Pants/shorts convertible.
                • Lightweight moisture wicking.
                • Water repellent.
                • Belted waist.

                ","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-36-green","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"179","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"aether-gym-pant-36-green-871","links":{},"stock":{"item_id":871,"product_id":871,"stock_id":1,"qty":100,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-green_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-36-green-871.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"865","_score":1,"_source":{"id":865,"sku":"MP11-33-Green","name":"Aether Gym Pant -33-Green","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                \n

                • Pants/shorts convertible.
                • Lightweight moisture wicking.
                • Water repellent.
                • Belted waist.

                ","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"aether-gym-pant-33-green-865","links":{},"stock":{"item_id":865,"product_id":865,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-33-green-865.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"826","_score":1,"_source":{"id":826,"sku":"MP08-33-Red","name":"Zeppelin Yoga Pant-33-Red","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                \n

                • Smooth exterior for easy over-layering.
                • Brushed fleece interior insulates and wicks.
                • No-roll elastic waistband with inner drawstring.
                • Chafe-resistant flatlock seams.

                ","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"zeppelin-yoga-pant-33-red-826","links":{},"stock":{"item_id":826,"product_id":826,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-33-red-826.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"817","_score":1,"_source":{"id":817,"sku":"MP07-36-Black","name":"Thorpe Track Pant-36-Black","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                \n

                • Moisture transfer properties.
                • 7% stretch.
                • Reflective safety trim.
                • Elastic drawcord waist.

                ","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"thorpe-track-pant-36-black-817","links":{},"stock":{"item_id":817,"product_id":817,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-36-black-817.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"816","_score":1,"_source":{"id":816,"sku":"MP07-34-Purple","name":"Thorpe Track Pant-34-Purple","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                \n

                • Moisture transfer properties.
                • 7% stretch.
                • Reflective safety trim.
                • Elastic drawcord waist.

                ","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","color":"57","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"thorpe-track-pant-34-purple-816","links":{},"stock":{"item_id":816,"product_id":816,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-34-purple-816.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"819","_score":1,"_source":{"id":819,"sku":"MP07-36-Purple","name":"Thorpe Track Pant-36-Purple","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                \n

                • Moisture transfer properties.
                • 7% stretch.
                • Reflective safety trim.
                • Elastic drawcord waist.

                ","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","color":"57","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"thorpe-track-pant-36-purple-819","links":{},"stock":{"item_id":819,"product_id":819,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-36-purple-819.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"813","_score":1,"_source":{"id":813,"sku":"MP07-33-Purple","name":"Thorpe Track Pant-33-Purple","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                \n

                • Moisture transfer properties.
                • 7% stretch.
                • Reflective safety trim.
                • Elastic drawcord waist.

                ","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","color":"57","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"thorpe-track-pant-33-purple-813","links":{},"stock":{"item_id":813,"product_id":813,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-33-purple-813.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"824","_score":1,"_source":{"id":824,"sku":"MP08-33-Blue","name":"Zeppelin Yoga Pant-33-Blue","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                \n

                • Smooth exterior for easy over-layering.
                • Brushed fleece interior insulates and wicks.
                • No-roll elastic waistband with inner drawstring.
                • Chafe-resistant flatlock seams.

                ","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"zeppelin-yoga-pant-33-blue-824","links":{},"stock":{"item_id":824,"product_id":824,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-33-blue-824.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"815","_score":1,"_source":{"id":815,"sku":"MP07-34-Blue","name":"Thorpe Track Pant-34-Blue","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                \n

                • Moisture transfer properties.
                • 7% stretch.
                • Reflective safety trim.
                • Elastic drawcord waist.

                ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"thorpe-track-pant-34-blue-815","links":{},"stock":{"item_id":815,"product_id":815,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-34-blue-815.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"831","_score":1,"_source":{"id":831,"sku":"MP08-36-Green","name":"Zeppelin Yoga Pant-36-Green","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                \n

                • Smooth exterior for easy over-layering.
                • Brushed fleece interior insulates and wicks.
                • No-roll elastic waistband with inner drawstring.
                • Chafe-resistant flatlock seams.

                ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"zeppelin-yoga-pant-36-green-831","links":{},"stock":{"item_id":831,"product_id":831,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-36-green-831.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"841","_score":1,"_source":{"id":841,"sku":"MP09-34-Blue","name":"Livingston All-Purpose Tight-34-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                \n

                • Breathable stretch organic cotton/spandex.
                • Compression fit
                • Hidden key pocket
                • Elastic waist with internal drawcord.

                ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","color":"50","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"livingston-all-purpose-tight-34-blue-841","links":{},"stock":{"item_id":841,"product_id":841,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-34-blue-841.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"821","_score":1,"_source":{"id":821,"sku":"MP08-32-Blue","name":"Zeppelin Yoga Pant-32-Blue","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                \n

                • Smooth exterior for easy over-layering.
                • Brushed fleece interior insulates and wicks.
                • No-roll elastic waistband with inner drawstring.
                • Chafe-resistant flatlock seams.

                ","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"zeppelin-yoga-pant-32-blue-821","links":{},"stock":{"item_id":821,"product_id":821,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-32-blue-821.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"842","_score":1,"_source":{"id":842,"sku":"MP09-34-Red","name":"Livingston All-Purpose Tight-34-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                \n

                • Breathable stretch organic cotton/spandex.
                • Compression fit
                • Hidden key pocket
                • Elastic waist with internal drawcord.

                ","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","color":"58","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"livingston-all-purpose-tight-34-red-842","links":{},"stock":{"item_id":842,"product_id":842,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-34-red-842.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1009","_score":1,"_source":{"id":1009,"sku":"MSH11-32-Blue","name":"Arcadio Gym Short-32-Blue","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                \n

                • Royal blue cotton shorts.
                • Built-in mesh brief.
                • 87% Spandex 13% Lycra.
                • Adjustable drawstring.

                ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","color":"50","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"arcadio-gym-short-32-blue-1009","links":{},"stock":{"item_id":1009,"product_id":1009,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-32-blue-1009.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1037","_score":1,"_source":{"id":1037,"sku":"WH01-S-Green","name":"Mona Pullover Hoodlie-S-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                • Light green heathered hoodie.
                • Long-Sleeve, pullover.
                • Long elliptical hem for extra coverage.
                • Deep button placket for layering.
                • Double rib design.
                • Mid layer, mid weight.
                • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mona-pullover-hoodlie-s-green-1037","links":{},"stock":{"item_id":1037,"product_id":1037,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-s-green-1037.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1028","_score":1,"_source":{"id":1028,"sku":"MSH12-34-Gray","name":"Pierce Gym Short-34-Gray","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                \n

                • Dark red cotton shorts.
                • 87% Supplex, 13% Lycra.
                • Adjustable drawstring waistband.
                • Built-in mesh brief.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","color":"52","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"pierce-gym-short-34-gray-1028","links":{},"stock":{"item_id":1028,"product_id":1028,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-34-gray-1028.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1046","_score":1,"_source":{"id":1046,"sku":"WH01-XL-Green","name":"Mona Pullover Hoodlie-XL-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                • Light green heathered hoodie.
                • Long-Sleeve, pullover.
                • Long elliptical hem for extra coverage.
                • Deep button placket for layering.
                • Double rib design.
                • Mid layer, mid weight.
                • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mona-pullover-hoodlie-xl-green-1046","links":{},"stock":{"item_id":1046,"product_id":1046,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xl-green-1046.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1032","_score":1,"_source":{"id":1032,"sku":"MSH12-36-Red","name":"Pierce Gym Short-36-Red","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                \n

                • Dark red cotton shorts.
                • 87% Supplex, 13% Lycra.
                • Adjustable drawstring waistband.
                • Built-in mesh brief.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","color":"58","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"pierce-gym-short-36-red-1032","links":{},"stock":{"item_id":1032,"product_id":1032,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-36-red-1032.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1050","_score":1,"_source":{"id":1050,"sku":"WH02-XS-Blue","name":"Hera Pullover Hoodie-XS-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                \n

                • Teal with purple stiching.
                • Hoodie pullover.
                • Snug fit.

                ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hera-pullover-hoodie-xs-blue-1050","links":{},"stock":{"item_id":1050,"product_id":1050,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xs-blue-1050.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1043","_score":1,"_source":{"id":1043,"sku":"WH01-L-Green","name":"Mona Pullover Hoodlie-L-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                • Light green heathered hoodie.
                • Long-Sleeve, pullover.
                • Long elliptical hem for extra coverage.
                • Deep button placket for layering.
                • Double rib design.
                • Mid layer, mid weight.
                • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mona-pullover-hoodlie-l-green-1043","links":{},"stock":{"item_id":1043,"product_id":1043,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-l-green-1043.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1034","_score":1,"_source":{"id":1034,"sku":"WH01-XS-Green","name":"Mona Pullover Hoodlie-XS-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                • Light green heathered hoodie.
                • Long-Sleeve, pullover.
                • Long elliptical hem for extra coverage.
                • Deep button placket for layering.
                • Double rib design.
                • Mid layer, mid weight.
                • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mona-pullover-hoodlie-xs-green-1034","links":{},"stock":{"item_id":1034,"product_id":1034,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xs-green-1034.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1042","_score":1,"_source":{"id":1042,"sku":"WH01-M-Purple","name":"Mona Pullover Hoodlie-M-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                • Light green heathered hoodie.
                • Long-Sleeve, pullover.
                • Long elliptical hem for extra coverage.
                • Deep button placket for layering.
                • Double rib design.
                • Mid layer, mid weight.
                • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mona-pullover-hoodlie-m-purple-1042","links":{},"stock":{"item_id":1042,"product_id":1042,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-m-purple-1042.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1029","_score":1,"_source":{"id":1029,"sku":"MSH12-34-Red","name":"Pierce Gym Short-34-Red","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                \n

                • Dark red cotton shorts.
                • 87% Supplex, 13% Lycra.
                • Adjustable drawstring waistband.
                • Built-in mesh brief.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","color":"58","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"pierce-gym-short-34-red-1029","links":{},"stock":{"item_id":1029,"product_id":1029,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-34-red-1029.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1041","_score":1,"_source":{"id":1041,"sku":"WH01-M-Orange","name":"Mona Pullover Hoodlie-M-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                • Light green heathered hoodie.
                • Long-Sleeve, pullover.
                • Long elliptical hem for extra coverage.
                • Deep button placket for layering.
                • Double rib design.
                • Mid layer, mid weight.
                • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mona-pullover-hoodlie-m-orange-1041","links":{},"stock":{"item_id":1041,"product_id":1041,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-m-orange-1041.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1044","_score":1,"_source":{"id":1044,"sku":"WH01-L-Orange","name":"Mona Pullover Hoodlie-L-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                • Light green heathered hoodie.
                • Long-Sleeve, pullover.
                • Long elliptical hem for extra coverage.
                • Deep button placket for layering.
                • Double rib design.
                • Mid layer, mid weight.
                • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mona-pullover-hoodlie-l-orange-1044","links":{},"stock":{"item_id":1044,"product_id":1044,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-l-orange-1044.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1035","_score":1,"_source":{"id":1035,"sku":"WH01-XS-Orange","name":"Mona Pullover Hoodlie-XS-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                • Light green heathered hoodie.
                • Long-Sleeve, pullover.
                • Long elliptical hem for extra coverage.
                • Deep button placket for layering.
                • Double rib design.
                • Mid layer, mid weight.
                • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mona-pullover-hoodlie-xs-orange-1035","links":{},"stock":{"item_id":1035,"product_id":1035,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xs-orange-1035.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1047","_score":1,"_source":{"id":1047,"sku":"WH01-XL-Orange","name":"Mona Pullover Hoodlie-XL-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                • Light green heathered hoodie.
                • Long-Sleeve, pullover.
                • Long elliptical hem for extra coverage.
                • Deep button placket for layering.
                • Double rib design.
                • Mid layer, mid weight.
                • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mona-pullover-hoodlie-xl-orange-1047","links":{},"stock":{"item_id":1047,"product_id":1047,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xl-orange-1047.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1048","_score":1,"_source":{"id":1048,"sku":"WH01-XL-Purple","name":"Mona Pullover Hoodlie-XL-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                • Light green heathered hoodie.
                • Long-Sleeve, pullover.
                • Long elliptical hem for extra coverage.
                • Deep button placket for layering.
                • Double rib design.
                • Mid layer, mid weight.
                • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mona-pullover-hoodlie-xl-purple-1048","links":{},"stock":{"item_id":1048,"product_id":1048,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xl-purple-1048.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1031","_score":1,"_source":{"id":1031,"sku":"MSH12-36-Gray","name":"Pierce Gym Short-36-Gray","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                \n

                • Dark red cotton shorts.
                • 87% Supplex, 13% Lycra.
                • Adjustable drawstring waistband.
                • Built-in mesh brief.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","color":"52","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"pierce-gym-short-36-gray-1031","links":{},"stock":{"item_id":1031,"product_id":1031,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-36-gray-1031.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1045","_score":1,"_source":{"id":1045,"sku":"WH01-L-Purple","name":"Mona Pullover Hoodlie-L-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                • Light green heathered hoodie.
                • Long-Sleeve, pullover.
                • Long elliptical hem for extra coverage.
                • Deep button placket for layering.
                • Double rib design.
                • Mid layer, mid weight.
                • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mona-pullover-hoodlie-l-purple-1045","links":{},"stock":{"item_id":1045,"product_id":1045,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-l-purple-1045.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1039","_score":1,"_source":{"id":1039,"sku":"WH01-S-Purple","name":"Mona Pullover Hoodlie-S-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                • Light green heathered hoodie.
                • Long-Sleeve, pullover.
                • Long elliptical hem for extra coverage.
                • Deep button placket for layering.
                • Double rib design.
                • Mid layer, mid weight.
                • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mona-pullover-hoodlie-s-purple-1039","links":{},"stock":{"item_id":1039,"product_id":1039,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-s-purple-1039.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1007","_score":1,"_source":{"id":1007,"sku":"MSH10","name":"Sol Active Short","attribute_set_id":10,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                \n

                • Light blue jersey shorts with mesh detail.
                • 87% Spandex 13% Lycra.
                • Machine wash cold, tumble dry low.
                • Superior performance fabric.
                • Flat-lock seams.

                ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sol-active-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[205,212,209],"slug":"sol-active-short-1007","links":{},"stock":{"item_id":1007,"product_id":1007,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH10-32-Blue","id":995,"status":1,"name":"Sol Active Short-32-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"176","color":"50","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","url_key":"sol-active-short-32-blue","msrp_display_actual_price_type":"0"},{"sku":"MSH10-32-Green","id":996,"status":1,"name":"Sol Active Short-32-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"176","color":"53","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","url_key":"sol-active-short-32-green","msrp_display_actual_price_type":"0"},{"sku":"MSH10-32-Purple","id":997,"status":1,"name":"Sol Active Short-32-Purple","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"176","color":"57","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","url_key":"sol-active-short-32-purple","msrp_display_actual_price_type":"0"},{"sku":"MSH10-33-Blue","id":998,"status":1,"name":"Sol Active Short-33-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"177","color":"50","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","url_key":"sol-active-short-33-blue","msrp_display_actual_price_type":"0"},{"sku":"MSH10-33-Green","id":999,"status":1,"name":"Sol Active Short-33-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"177","color":"53","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","url_key":"sol-active-short-33-green","msrp_display_actual_price_type":"0"},{"sku":"MSH10-33-Purple","id":1000,"status":1,"name":"Sol Active Short-33-Purple","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"177","color":"57","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","url_key":"sol-active-short-33-purple","msrp_display_actual_price_type":"0"},{"sku":"MSH10-34-Blue","id":1001,"status":1,"name":"Sol Active Short-34-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"178","color":"50","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","url_key":"sol-active-short-34-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MSH10-34-Green","id":1002,"status":1,"name":"Sol Active Short-34-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"178","color":"53","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","url_key":"sol-active-short-34-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MSH10-34-Purple","id":1003,"status":1,"name":"Sol Active Short-34-Purple","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"178","color":"57","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","url_key":"sol-active-short-34-purple","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MSH10-36-Blue","id":1004,"status":1,"name":"Sol Active Short-36-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"179","color":"50","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","url_key":"sol-active-short-36-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MSH10-36-Green","id":1005,"status":1,"name":"Sol Active Short-36-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"179","color":"53","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","url_key":"sol-active-short-36-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MSH10-36-Purple","id":1006,"status":1,"name":"Sol Active Short-36-Purple","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"179","color":"57","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","url_key":"sol-active-short-36-purple","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32}],"configurable_options":[{"id":141,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"}],"product_id":1007,"attribute_code":"color"},{"id":140,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":1007,"attribute_code":"size"}],"color_options":[50,53,57],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-1007.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1033","_score":1,"_source":{"id":1033,"sku":"MSH12","name":"Pierce Gym Short","attribute_set_id":10,"price":27,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                \n

                • Dark red cotton shorts.
                • 87% Supplex, 13% Lycra.
                • Adjustable drawstring waistband.
                • Built-in mesh brief.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"pierce-gym-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,36,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_bottom":[116,105,108,114],"pattern":"197","climate":[205,212,209],"slug":"pierce-gym-short-1033","links":{},"stock":{"item_id":1033,"product_id":1033,"stock_id":1,"qty":7,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH12-32-Black","id":1021,"status":1,"name":"Pierce Gym Short-32-Black","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"176","color":"49","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","url_key":"pierce-gym-short-32-black","msrp_display_actual_price_type":"0"},{"sku":"MSH12-32-Gray","id":1022,"status":1,"name":"Pierce Gym Short-32-Gray","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"176","color":"52","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","url_key":"pierce-gym-short-32-gray","msrp_display_actual_price_type":"0","final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27},{"sku":"MSH12-32-Red","id":1023,"status":1,"name":"Pierce Gym Short-32-Red","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"176","color":"58","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","url_key":"pierce-gym-short-32-red","msrp_display_actual_price_type":"0","final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27},{"sku":"MSH12-33-Black","id":1024,"status":1,"name":"Pierce Gym Short-33-Black","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"177","color":"49","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","url_key":"pierce-gym-short-33-black","msrp_display_actual_price_type":"0","final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27},{"sku":"MSH12-33-Gray","id":1025,"status":1,"name":"Pierce Gym Short-33-Gray","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"177","color":"52","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","url_key":"pierce-gym-short-33-gray","msrp_display_actual_price_type":"0","final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27},{"sku":"MSH12-33-Red","id":1026,"status":1,"name":"Pierce Gym Short-33-Red","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"177","color":"58","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","url_key":"pierce-gym-short-33-red","msrp_display_actual_price_type":"0","final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27},{"sku":"MSH12-34-Black","id":1027,"status":1,"name":"Pierce Gym Short-34-Black","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"178","color":"49","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","url_key":"pierce-gym-short-34-black","msrp_display_actual_price_type":"0","final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27},{"sku":"MSH12-34-Gray","id":1028,"status":1,"name":"Pierce Gym Short-34-Gray","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"178","color":"52","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","url_key":"pierce-gym-short-34-gray","msrp_display_actual_price_type":"0","final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27},{"sku":"MSH12-34-Red","id":1029,"status":1,"name":"Pierce Gym Short-34-Red","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"178","color":"58","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","url_key":"pierce-gym-short-34-red","msrp_display_actual_price_type":"0","final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27},{"sku":"MSH12-36-Black","id":1030,"status":1,"name":"Pierce Gym Short-36-Black","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"179","color":"49","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","url_key":"pierce-gym-short-36-black","msrp_display_actual_price_type":"0","final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27},{"sku":"MSH12-36-Gray","id":1031,"status":1,"name":"Pierce Gym Short-36-Gray","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"179","color":"52","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","url_key":"pierce-gym-short-36-gray","msrp_display_actual_price_type":"0","final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27},{"sku":"MSH12-36-Red","id":1032,"status":1,"name":"Pierce Gym Short-36-Red","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"179","color":"58","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","url_key":"pierce-gym-short-36-red","msrp_display_actual_price_type":"0","final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27}],"configurable_options":[{"id":145,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"}],"product_id":1033,"attribute_code":"color"},{"id":144,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":1033,"attribute_code":"size"}],"color_options":[49,52,58],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-1033.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1020","_score":1,"_source":{"id":1020,"sku":"MSH11","name":"Arcadio Gym Short","attribute_set_id":10,"price":20,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                \n

                • Royal blue cotton shorts.
                • Built-in mesh brief.
                • 87% Spandex 13% Lycra.
                • Adjustable drawstring.

                ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"arcadio-gym-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105,108],"pattern":"197","climate":[202,205,212,208,209],"slug":"arcadio-gym-short-1020","links":{},"stock":{"item_id":1020,"product_id":1020,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH11-32-Black","id":1008,"status":1,"name":"Arcadio Gym Short-32-Black","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"49","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","url_key":"arcadio-gym-short-32-black","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20},{"sku":"MSH11-32-Blue","id":1009,"status":1,"name":"Arcadio Gym Short-32-Blue","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"50","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","url_key":"arcadio-gym-short-32-blue","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20},{"sku":"MSH11-32-Red","id":1010,"status":1,"name":"Arcadio Gym Short-32-Red","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"58","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","url_key":"arcadio-gym-short-32-red","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20},{"sku":"MSH11-33-Black","id":1011,"status":1,"name":"Arcadio Gym Short-33-Black","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"49","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","url_key":"arcadio-gym-short-33-black","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20},{"sku":"MSH11-33-Blue","id":1012,"status":1,"name":"Arcadio Gym Short-33-Blue","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"50","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","url_key":"arcadio-gym-short-33-blue","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20},{"sku":"MSH11-33-Red","id":1013,"status":1,"name":"Arcadio Gym Short-33-Red","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"58","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","url_key":"arcadio-gym-short-33-red","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20},{"sku":"MSH11-34-Black","id":1014,"status":1,"name":"Arcadio Gym Short-34-Black","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"49","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","url_key":"arcadio-gym-short-34-black","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20},{"sku":"MSH11-34-Blue","id":1015,"status":1,"name":"Arcadio Gym Short-34-Blue","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"50","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","url_key":"arcadio-gym-short-34-blue","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20},{"sku":"MSH11-34-Red","id":1016,"status":1,"name":"Arcadio Gym Short-34-Red","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"58","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","url_key":"arcadio-gym-short-34-red","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20},{"sku":"MSH11-36-Black","id":1017,"status":1,"name":"Arcadio Gym Short-36-Black","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"49","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","url_key":"arcadio-gym-short-36-black","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20},{"sku":"MSH11-36-Blue","id":1018,"status":1,"name":"Arcadio Gym Short-36-Blue","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"50","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","url_key":"arcadio-gym-short-36-blue","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20},{"sku":"MSH11-36-Red","id":1019,"status":1,"name":"Arcadio Gym Short-36-Red","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"58","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","url_key":"arcadio-gym-short-36-red","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20}],"configurable_options":[{"id":143,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":1020,"attribute_code":"color"},{"id":142,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":1020,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-1020.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1083","_score":1,"_source":{"id":1083,"sku":"WH04-XS-Orange","name":"Miko Pullover Hoodie-XS-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                \n

                • Teal two-tone hoodie.
                • Low scoop neckline.
                • Adjustable hood drawstrings.
                • Longer rounded hemline for extra back coverage.
                • Long-Sleeve style.

                ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"miko-pullover-hoodie-xs-orange-1083","links":{},"stock":{"item_id":1083,"product_id":1083,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xs-orange-1083.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1093","_score":1,"_source":{"id":1093,"sku":"WH04-L-Purple","name":"Miko Pullover Hoodie-L-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                \n

                • Teal two-tone hoodie.
                • Low scoop neckline.
                • Adjustable hood drawstrings.
                • Longer rounded hemline for extra back coverage.
                • Long-Sleeve style.

                ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"miko-pullover-hoodie-l-purple-1093","links":{},"stock":{"item_id":1093,"product_id":1093,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-l-purple-1093.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1071","_score":1,"_source":{"id":1071,"sku":"WH03-S-Red","name":"Autumn Pullie-S-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                \n

                • Cayenne Short-Sleeve roll neck sweatshirt.
                • Relaxed fit.
                • Short-Sleeves.
                • Machine wash/dry.

                ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"autumn-pullie-s-red-1071","links":{},"stock":{"item_id":1071,"product_id":1071,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-s-red-1071.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1098","_score":1,"_source":{"id":1098,"sku":"WH05-XS-Orange","name":"Selene Yoga Hoodie-XS-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                \n

                • Ivory heather full zip 3/4 sleeve hoodie.
                • Zip pocket at arm for convenient storage.
                • 24.0\" body length.
                • 89% Polyester / 11% Spandex.

                ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"selene-yoga-hoodie-xs-orange-1098","links":{},"stock":{"item_id":1098,"product_id":1098,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xs-orange-1098.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1082","_score":1,"_source":{"id":1082,"sku":"WH04-XS-Blue","name":"Miko Pullover Hoodie-XS-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                \n

                • Teal two-tone hoodie.
                • Low scoop neckline.
                • Adjustable hood drawstrings.
                • Longer rounded hemline for extra back coverage.
                • Long-Sleeve style.

                ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"miko-pullover-hoodie-xs-blue-1082","links":{},"stock":{"item_id":1082,"product_id":1082,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xs-blue-1082.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1094","_score":1,"_source":{"id":1094,"sku":"WH04-XL-Blue","name":"Miko Pullover Hoodie-XL-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                \n

                • Teal two-tone hoodie.
                • Low scoop neckline.
                • Adjustable hood drawstrings.
                • Longer rounded hemline for extra back coverage.
                • Long-Sleeve style.

                ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"miko-pullover-hoodie-xl-blue-1094","links":{},"stock":{"item_id":1094,"product_id":1094,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xl-blue-1094.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1100","_score":1,"_source":{"id":1100,"sku":"WH05-XS-White","name":"Selene Yoga Hoodie-XS-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                \n

                • Ivory heather full zip 3/4 sleeve hoodie.
                • Zip pocket at arm for convenient storage.
                • 24.0\" body length.
                • 89% Polyester / 11% Spandex.

                ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"selene-yoga-hoodie-xs-white-1100","links":{},"stock":{"item_id":1100,"product_id":1100,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xs-white-1100.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1075","_score":1,"_source":{"id":1075,"sku":"WH03-L-Green","name":"Autumn Pullie-L-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                \n

                • Cayenne Short-Sleeve roll neck sweatshirt.
                • Relaxed fit.
                • Short-Sleeves.
                • Machine wash/dry.

                ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"autumn-pullie-l-green-1075","links":{},"stock":{"item_id":1075,"product_id":1075,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-l-green-1075.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1091","_score":1,"_source":{"id":1091,"sku":"WH04-L-Blue","name":"Miko Pullover Hoodie-L-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                \n

                • Teal two-tone hoodie.
                • Low scoop neckline.
                • Adjustable hood drawstrings.
                • Longer rounded hemline for extra back coverage.
                • Long-Sleeve style.

                ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"miko-pullover-hoodie-l-blue-1091","links":{},"stock":{"item_id":1091,"product_id":1091,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-l-blue-1091.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1095","_score":1,"_source":{"id":1095,"sku":"WH04-XL-Orange","name":"Miko Pullover Hoodie-XL-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                \n

                • Teal two-tone hoodie.
                • Low scoop neckline.
                • Adjustable hood drawstrings.
                • Longer rounded hemline for extra back coverage.
                • Long-Sleeve style.

                ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"miko-pullover-hoodie-xl-orange-1095","links":{},"stock":{"item_id":1095,"product_id":1095,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xl-orange-1095.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1086","_score":1,"_source":{"id":1086,"sku":"WH04-S-Orange","name":"Miko Pullover Hoodie-S-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                \n

                • Teal two-tone hoodie.
                • Low scoop neckline.
                • Adjustable hood drawstrings.
                • Longer rounded hemline for extra back coverage.
                • Long-Sleeve style.

                ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"miko-pullover-hoodie-s-orange-1086","links":{},"stock":{"item_id":1086,"product_id":1086,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-s-orange-1086.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1090","_score":1,"_source":{"id":1090,"sku":"WH04-M-Purple","name":"Miko Pullover Hoodie-M-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                \n

                • Teal two-tone hoodie.
                • Low scoop neckline.
                • Adjustable hood drawstrings.
                • Longer rounded hemline for extra back coverage.
                • Long-Sleeve style.

                ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"miko-pullover-hoodie-m-purple-1090","links":{},"stock":{"item_id":1090,"product_id":1090,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-m-purple-1090.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1092","_score":1,"_source":{"id":1092,"sku":"WH04-L-Orange","name":"Miko Pullover Hoodie-L-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                \n

                • Teal two-tone hoodie.
                • Low scoop neckline.
                • Adjustable hood drawstrings.
                • Longer rounded hemline for extra back coverage.
                • Long-Sleeve style.

                ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"miko-pullover-hoodie-l-orange-1092","links":{},"stock":{"item_id":1092,"product_id":1092,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-l-orange-1092.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1096","_score":1,"_source":{"id":1096,"sku":"WH04-XL-Purple","name":"Miko Pullover Hoodie-XL-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                \n

                • Teal two-tone hoodie.
                • Low scoop neckline.
                • Adjustable hood drawstrings.
                • Longer rounded hemline for extra back coverage.
                • Long-Sleeve style.

                ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"miko-pullover-hoodie-xl-purple-1096","links":{},"stock":{"item_id":1096,"product_id":1096,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xl-purple-1096.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1097","_score":1,"_source":{"id":1097,"sku":"WH04","name":"Miko Pullover Hoodie","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                \n

                • Teal two-tone hoodie.
                • Low scoop neckline.
                • Adjustable hood drawstrings.
                • Longer rounded hemline for extra back coverage.
                • Long-Sleeve style.

                ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"miko-pullover-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[147,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[137,133],"pattern":"197","climate":[202,204,208],"slug":"miko-pullover-hoodie-1097","links":{},"stock":{"item_id":1097,"product_id":1097,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH04-XS-Blue","id":1082,"status":1,"name":"Miko Pullover Hoodie-XS-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"50","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","url_key":"miko-pullover-hoodie-xs-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-XS-Orange","id":1083,"status":1,"name":"Miko Pullover Hoodie-XS-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"56","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","url_key":"miko-pullover-hoodie-xs-orange","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-XS-Purple","id":1084,"status":1,"name":"Miko Pullover Hoodie-XS-Purple","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"57","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","url_key":"miko-pullover-hoodie-xs-purple","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-S-Blue","id":1085,"status":1,"name":"Miko Pullover Hoodie-S-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"50","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","url_key":"miko-pullover-hoodie-s-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-S-Orange","id":1086,"status":1,"name":"Miko Pullover Hoodie-S-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"56","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","url_key":"miko-pullover-hoodie-s-orange","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-S-Purple","id":1087,"status":1,"name":"Miko Pullover Hoodie-S-Purple","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"57","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","url_key":"miko-pullover-hoodie-s-purple","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-M-Blue","id":1088,"status":1,"name":"Miko Pullover Hoodie-M-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"50","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","url_key":"miko-pullover-hoodie-m-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-M-Orange","id":1089,"status":1,"name":"Miko Pullover Hoodie-M-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"56","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","url_key":"miko-pullover-hoodie-m-orange","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-M-Purple","id":1090,"status":1,"name":"Miko Pullover Hoodie-M-Purple","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"57","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","url_key":"miko-pullover-hoodie-m-purple","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-L-Blue","id":1091,"status":1,"name":"Miko Pullover Hoodie-L-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"50","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","url_key":"miko-pullover-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-L-Orange","id":1092,"status":1,"name":"Miko Pullover Hoodie-L-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"56","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","url_key":"miko-pullover-hoodie-l-orange","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-L-Purple","id":1093,"status":1,"name":"Miko Pullover Hoodie-L-Purple","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"57","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","url_key":"miko-pullover-hoodie-l-purple","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-XL-Blue","id":1094,"status":1,"name":"Miko Pullover Hoodie-XL-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"50","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","url_key":"miko-pullover-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-XL-Orange","id":1095,"status":1,"name":"Miko Pullover Hoodie-XL-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"56","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","url_key":"miko-pullover-hoodie-xl-orange","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-XL-Purple","id":1096,"status":1,"name":"Miko Pullover Hoodie-XL-Purple","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"57","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","url_key":"miko-pullover-hoodie-xl-purple","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69}],"configurable_options":[{"id":153,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1097,"attribute_code":"color"},{"id":152,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1097,"attribute_code":"size"}],"color_options":[50,56,57],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-1097.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1081","_score":1,"_source":{"id":1081,"sku":"WH03","name":"Autumn Pullie","attribute_set_id":9,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                \n

                • Cayenne Short-Sleeve roll neck sweatshirt.
                • Relaxed fit.
                • Short-Sleeves.
                • Machine wash/dry.

                ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"autumn-pullie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[137,133],"pattern":"197","climate":[205,206,208],"slug":"autumn-pullie-1081","links":{},"stock":{"item_id":1081,"product_id":1081,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH03-XS-Green","id":1066,"status":1,"name":"Autumn Pullie-XS-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"53","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","url_key":"autumn-pullie-xs-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-XS-Purple","id":1067,"status":1,"name":"Autumn Pullie-XS-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"57","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","url_key":"autumn-pullie-xs-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-XS-Red","id":1068,"status":1,"name":"Autumn Pullie-XS-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"58","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","url_key":"autumn-pullie-xs-red","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-S-Green","id":1069,"status":1,"name":"Autumn Pullie-S-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"53","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","url_key":"autumn-pullie-s-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-S-Purple","id":1070,"status":1,"name":"Autumn Pullie-S-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"57","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","url_key":"autumn-pullie-s-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-S-Red","id":1071,"status":1,"name":"Autumn Pullie-S-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"58","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","url_key":"autumn-pullie-s-red","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-M-Green","id":1072,"status":1,"name":"Autumn Pullie-M-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"53","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","url_key":"autumn-pullie-m-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-M-Purple","id":1073,"status":1,"name":"Autumn Pullie-M-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"57","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","url_key":"autumn-pullie-m-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-M-Red","id":1074,"status":1,"name":"Autumn Pullie-M-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"58","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","url_key":"autumn-pullie-m-red","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-L-Green","id":1075,"status":1,"name":"Autumn Pullie-L-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"53","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","url_key":"autumn-pullie-l-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-L-Purple","id":1076,"status":1,"name":"Autumn Pullie-L-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"57","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","url_key":"autumn-pullie-l-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-L-Red","id":1077,"status":1,"name":"Autumn Pullie-L-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"58","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","url_key":"autumn-pullie-l-red","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-XL-Green","id":1078,"status":1,"name":"Autumn Pullie-XL-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"53","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","url_key":"autumn-pullie-xl-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-XL-Purple","id":1079,"status":1,"name":"Autumn Pullie-XL-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"57","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","url_key":"autumn-pullie-xl-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-XL-Red","id":1080,"status":1,"name":"Autumn Pullie-XL-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"58","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","url_key":"autumn-pullie-xl-red","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57}],"configurable_options":[{"id":151,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1081,"attribute_code":"color"},{"id":150,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1081,"attribute_code":"size"}],"color_options":[53,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-1081.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1065","_score":1,"_source":{"id":1065,"sku":"WH02","name":"Hera Pullover Hoodie","attribute_set_id":9,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                \n

                • Teal with purple stiching.
                • Hoodie pullover.
                • Snug fit.

                ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hera-pullover-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":[138,137],"pattern":"197","climate":[202,204,206,208],"slug":"hera-pullover-hoodie-1065","links":{},"stock":{"item_id":1065,"product_id":1065,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH02-XS-Blue","id":1050,"status":1,"name":"Hera Pullover Hoodie-XS-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"167","color":"50","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","url_key":"hera-pullover-hoodie-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WH02-XS-Green","id":1051,"status":1,"name":"Hera Pullover Hoodie-XS-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"167","color":"53","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","url_key":"hera-pullover-hoodie-xs-green","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-XS-Orange","id":1052,"status":1,"name":"Hera Pullover Hoodie-XS-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"167","color":"56","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","url_key":"hera-pullover-hoodie-xs-orange","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-S-Blue","id":1053,"status":1,"name":"Hera Pullover Hoodie-S-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"168","color":"50","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","url_key":"hera-pullover-hoodie-s-blue","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-S-Green","id":1054,"status":1,"name":"Hera Pullover Hoodie-S-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"168","color":"53","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","url_key":"hera-pullover-hoodie-s-green","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-S-Orange","id":1055,"status":1,"name":"Hera Pullover Hoodie-S-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"168","color":"56","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","url_key":"hera-pullover-hoodie-s-orange","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-M-Blue","id":1056,"status":1,"name":"Hera Pullover Hoodie-M-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"169","color":"50","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","url_key":"hera-pullover-hoodie-m-blue","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-M-Green","id":1057,"status":1,"name":"Hera Pullover Hoodie-M-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"169","color":"53","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","url_key":"hera-pullover-hoodie-m-green","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-M-Orange","id":1058,"status":1,"name":"Hera Pullover Hoodie-M-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"169","color":"56","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","url_key":"hera-pullover-hoodie-m-orange","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-L-Blue","id":1059,"status":1,"name":"Hera Pullover Hoodie-L-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"170","color":"50","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","url_key":"hera-pullover-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-L-Green","id":1060,"status":1,"name":"Hera Pullover Hoodie-L-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"170","color":"53","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","url_key":"hera-pullover-hoodie-l-green","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-L-Orange","id":1061,"status":1,"name":"Hera Pullover Hoodie-L-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"170","color":"56","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","url_key":"hera-pullover-hoodie-l-orange","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-XL-Blue","id":1062,"status":1,"name":"Hera Pullover Hoodie-XL-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"171","color":"50","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","url_key":"hera-pullover-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-XL-Green","id":1063,"status":1,"name":"Hera Pullover Hoodie-XL-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"171","color":"53","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","url_key":"hera-pullover-hoodie-xl-green","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-XL-Orange","id":1064,"status":1,"name":"Hera Pullover Hoodie-XL-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"171","color":"56","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","url_key":"hera-pullover-hoodie-xl-orange","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48}],"configurable_options":[{"id":149,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":1065,"attribute_code":"color"},{"id":148,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1065,"attribute_code":"size"}],"color_options":[50,53,56],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-1065.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1002","_score":1,"_source":{"id":1002,"sku":"MSH10-34-Green","name":"Sol Active Short-34-Green","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                \n

                • Light blue jersey shorts with mesh detail.
                • 87% Spandex 13% Lycra.
                • Machine wash cold, tumble dry low.
                • Superior performance fabric.
                • Flat-lock seams.

                ","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","color":"53","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"sol-active-short-34-green-1002","links":{},"stock":{"item_id":1002,"product_id":1002,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-34-green-1002.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1013","_score":1,"_source":{"id":1013,"sku":"MSH11-33-Red","name":"Arcadio Gym Short-33-Red","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                \n

                • Royal blue cotton shorts.
                • Built-in mesh brief.
                • 87% Spandex 13% Lycra.
                • Adjustable drawstring.

                ","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","color":"58","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"arcadio-gym-short-33-red-1013","links":{},"stock":{"item_id":1013,"product_id":1013,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-33-red-1013.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1012","_score":1,"_source":{"id":1012,"sku":"MSH11-33-Blue","name":"Arcadio Gym Short-33-Blue","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                \n

                • Royal blue cotton shorts.
                • Built-in mesh brief.
                • 87% Spandex 13% Lycra.
                • Adjustable drawstring.

                ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","color":"50","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"arcadio-gym-short-33-blue-1012","links":{},"stock":{"item_id":1012,"product_id":1012,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-33-blue-1012.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1001","_score":1,"_source":{"id":1001,"sku":"MSH10-34-Blue","name":"Sol Active Short-34-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                \n

                • Light blue jersey shorts with mesh detail.
                • 87% Spandex 13% Lycra.
                • Machine wash cold, tumble dry low.
                • Superior performance fabric.
                • Flat-lock seams.

                ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"sol-active-short-34-blue-1001","links":{},"stock":{"item_id":1001,"product_id":1001,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-34-blue-1001.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1004","_score":1,"_source":{"id":1004,"sku":"MSH10-36-Blue","name":"Sol Active Short-36-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                \n

                • Light blue jersey shorts with mesh detail.
                • 87% Spandex 13% Lycra.
                • Machine wash cold, tumble dry low.
                • Superior performance fabric.
                • Flat-lock seams.

                ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"sol-active-short-36-blue-1004","links":{},"stock":{"item_id":1004,"product_id":1004,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-36-blue-1004.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1006","_score":1,"_source":{"id":1006,"sku":"MSH10-36-Purple","name":"Sol Active Short-36-Purple","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                \n

                • Light blue jersey shorts with mesh detail.
                • 87% Spandex 13% Lycra.
                • Machine wash cold, tumble dry low.
                • Superior performance fabric.
                • Flat-lock seams.

                ","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","color":"57","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"sol-active-short-36-purple-1006","links":{},"stock":{"item_id":1006,"product_id":1006,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-36-purple-1006.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1027","_score":1,"_source":{"id":1027,"sku":"MSH12-34-Black","name":"Pierce Gym Short-34-Black","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                \n

                • Dark red cotton shorts.
                • 87% Supplex, 13% Lycra.
                • Adjustable drawstring waistband.
                • Built-in mesh brief.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"pierce-gym-short-34-black-1027","links":{},"stock":{"item_id":1027,"product_id":1027,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-34-black-1027.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1003","_score":1,"_source":{"id":1003,"sku":"MSH10-34-Purple","name":"Sol Active Short-34-Purple","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                \n

                • Light blue jersey shorts with mesh detail.
                • 87% Spandex 13% Lycra.
                • Machine wash cold, tumble dry low.
                • Superior performance fabric.
                • Flat-lock seams.

                ","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","color":"57","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"sol-active-short-34-purple-1003","links":{},"stock":{"item_id":1003,"product_id":1003,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-34-purple-1003.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1019","_score":1,"_source":{"id":1019,"sku":"MSH11-36-Red","name":"Arcadio Gym Short-36-Red","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                \n

                • Royal blue cotton shorts.
                • Built-in mesh brief.
                • 87% Spandex 13% Lycra.
                • Adjustable drawstring.

                ","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","color":"58","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"arcadio-gym-short-36-red-1019","links":{},"stock":{"item_id":1019,"product_id":1019,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-36-red-1019.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1016","_score":1,"_source":{"id":1016,"sku":"MSH11-34-Red","name":"Arcadio Gym Short-34-Red","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                \n

                • Royal blue cotton shorts.
                • Built-in mesh brief.
                • 87% Spandex 13% Lycra.
                • Adjustable drawstring.

                ","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","color":"58","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"arcadio-gym-short-34-red-1016","links":{},"stock":{"item_id":1016,"product_id":1016,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-34-red-1016.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1008","_score":1,"_source":{"id":1008,"sku":"MSH11-32-Black","name":"Arcadio Gym Short-32-Black","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                \n

                • Royal blue cotton shorts.
                • Built-in mesh brief.
                • 87% Spandex 13% Lycra.
                • Adjustable drawstring.

                ","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"arcadio-gym-short-32-black-1008","links":{},"stock":{"item_id":1008,"product_id":1008,"stock_id":1,"qty":70,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-32-black-1008.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1021","_score":1,"_source":{"id":1021,"sku":"MSH12-32-Black","name":"Pierce Gym Short-32-Black","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                \n

                • Dark red cotton shorts.
                • 87% Supplex, 13% Lycra.
                • Adjustable drawstring waistband.
                • Built-in mesh brief.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"pierce-gym-short-32-black-1021","links":{},"stock":{"item_id":1021,"product_id":1021,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-07-01 12:19:18","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/m/s/msh12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-32-black-1021.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1011","_score":1,"_source":{"id":1011,"sku":"MSH11-33-Black","name":"Arcadio Gym Short-33-Black","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                \n

                • Royal blue cotton shorts.
                • Built-in mesh brief.
                • 87% Spandex 13% Lycra.
                • Adjustable drawstring.

                ","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"arcadio-gym-short-33-black-1011","links":{},"stock":{"item_id":1011,"product_id":1011,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-33-black-1011.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1017","_score":1,"_source":{"id":1017,"sku":"MSH11-36-Black","name":"Arcadio Gym Short-36-Black","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                \n

                • Royal blue cotton shorts.
                • Built-in mesh brief.
                • 87% Spandex 13% Lycra.
                • Adjustable drawstring.

                ","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"arcadio-gym-short-36-black-1017","links":{},"stock":{"item_id":1017,"product_id":1017,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-36-black-1017.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1024","_score":1,"_source":{"id":1024,"sku":"MSH12-33-Black","name":"Pierce Gym Short-33-Black","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                \n

                • Dark red cotton shorts.
                • 87% Supplex, 13% Lycra.
                • Adjustable drawstring waistband.
                • Built-in mesh brief.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"pierce-gym-short-33-black-1024","links":{},"stock":{"item_id":1024,"product_id":1024,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-33-black-1024.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1010","_score":1,"_source":{"id":1010,"sku":"MSH11-32-Red","name":"Arcadio Gym Short-32-Red","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                \n

                • Royal blue cotton shorts.
                • Built-in mesh brief.
                • 87% Spandex 13% Lycra.
                • Adjustable drawstring.

                ","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","color":"58","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"arcadio-gym-short-32-red-1010","links":{},"stock":{"item_id":1010,"product_id":1010,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-32-red-1010.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1038","_score":1,"_source":{"id":1038,"sku":"WH01-S-Orange","name":"Mona Pullover Hoodlie-S-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                • Light green heathered hoodie.
                • Long-Sleeve, pullover.
                • Long elliptical hem for extra coverage.
                • Deep button placket for layering.
                • Double rib design.
                • Mid layer, mid weight.
                • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mona-pullover-hoodlie-s-orange-1038","links":{},"stock":{"item_id":1038,"product_id":1038,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-s-orange-1038.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1005","_score":1,"_source":{"id":1005,"sku":"MSH10-36-Green","name":"Sol Active Short-36-Green","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                \n

                • Light blue jersey shorts with mesh detail.
                • 87% Spandex 13% Lycra.
                • Machine wash cold, tumble dry low.
                • Superior performance fabric.
                • Flat-lock seams.

                ","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","color":"53","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"sol-active-short-36-green-1005","links":{},"stock":{"item_id":1005,"product_id":1005,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-36-green-1005.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1030","_score":1,"_source":{"id":1030,"sku":"MSH12-36-Black","name":"Pierce Gym Short-36-Black","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                \n

                • Dark red cotton shorts.
                • 87% Supplex, 13% Lycra.
                • Adjustable drawstring waistband.
                • Built-in mesh brief.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"pierce-gym-short-36-black-1030","links":{},"stock":{"item_id":1030,"product_id":1030,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-36-black-1030.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1025","_score":1,"_source":{"id":1025,"sku":"MSH12-33-Gray","name":"Pierce Gym Short-33-Gray","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                \n

                • Dark red cotton shorts.
                • 87% Supplex, 13% Lycra.
                • Adjustable drawstring waistband.
                • Built-in mesh brief.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","color":"52","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"pierce-gym-short-33-gray-1025","links":{},"stock":{"item_id":1025,"product_id":1025,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-33-gray-1025.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1018","_score":1,"_source":{"id":1018,"sku":"MSH11-36-Blue","name":"Arcadio Gym Short-36-Blue","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                \n

                • Royal blue cotton shorts.
                • Built-in mesh brief.
                • 87% Spandex 13% Lycra.
                • Adjustable drawstring.

                ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","color":"50","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"arcadio-gym-short-36-blue-1018","links":{},"stock":{"item_id":1018,"product_id":1018,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-36-blue-1018.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1014","_score":1,"_source":{"id":1014,"sku":"MSH11-34-Black","name":"Arcadio Gym Short-34-Black","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                \n

                • Royal blue cotton shorts.
                • Built-in mesh brief.
                • 87% Spandex 13% Lycra.
                • Adjustable drawstring.

                ","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"arcadio-gym-short-34-black-1014","links":{},"stock":{"item_id":1014,"product_id":1014,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-34-black-1014.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1026","_score":1,"_source":{"id":1026,"sku":"MSH12-33-Red","name":"Pierce Gym Short-33-Red","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                \n

                • Dark red cotton shorts.
                • 87% Supplex, 13% Lycra.
                • Adjustable drawstring waistband.
                • Built-in mesh brief.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","color":"58","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"pierce-gym-short-33-red-1026","links":{},"stock":{"item_id":1026,"product_id":1026,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-33-red-1026.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1022","_score":1,"_source":{"id":1022,"sku":"MSH12-32-Gray","name":"Pierce Gym Short-32-Gray","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                \n

                • Dark red cotton shorts.
                • 87% Supplex, 13% Lycra.
                • Adjustable drawstring waistband.
                • Built-in mesh brief.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","color":"52","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"pierce-gym-short-32-gray-1022","links":{},"stock":{"item_id":1022,"product_id":1022,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-32-gray-1022.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1036","_score":1,"_source":{"id":1036,"sku":"WH01-XS-Purple","name":"Mona Pullover Hoodlie-XS-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                • Light green heathered hoodie.
                • Long-Sleeve, pullover.
                • Long elliptical hem for extra coverage.
                • Deep button placket for layering.
                • Double rib design.
                • Mid layer, mid weight.
                • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mona-pullover-hoodlie-xs-purple-1036","links":{},"stock":{"item_id":1036,"product_id":1036,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xs-purple-1036.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1023","_score":1,"_source":{"id":1023,"sku":"MSH12-32-Red","name":"Pierce Gym Short-32-Red","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                \n

                • Dark red cotton shorts.
                • 87% Supplex, 13% Lycra.
                • Adjustable drawstring waistband.
                • Built-in mesh brief.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","color":"58","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"pierce-gym-short-32-red-1023","links":{},"stock":{"item_id":1023,"product_id":1023,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-32-red-1023.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1015","_score":1,"_source":{"id":1015,"sku":"MSH11-34-Blue","name":"Arcadio Gym Short-34-Blue","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                \n

                • Royal blue cotton shorts.
                • Built-in mesh brief.
                • 87% Spandex 13% Lycra.
                • Adjustable drawstring.

                ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","color":"50","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"arcadio-gym-short-34-blue-1015","links":{},"stock":{"item_id":1015,"product_id":1015,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-34-blue-1015.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1040","_score":1,"_source":{"id":1040,"sku":"WH01-M-Green","name":"Mona Pullover Hoodlie-M-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                • Light green heathered hoodie.
                • Long-Sleeve, pullover.
                • Long elliptical hem for extra coverage.
                • Deep button placket for layering.
                • Double rib design.
                • Mid layer, mid weight.
                • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mona-pullover-hoodlie-m-green-1040","links":{},"stock":{"item_id":1040,"product_id":1040,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-m-green-1040.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1053","_score":1,"_source":{"id":1053,"sku":"WH02-S-Blue","name":"Hera Pullover Hoodie-S-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                \n

                • Teal with purple stiching.
                • Hoodie pullover.
                • Snug fit.

                ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hera-pullover-hoodie-s-blue-1053","links":{},"stock":{"item_id":1053,"product_id":1053,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-s-blue-1053.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1060","_score":1,"_source":{"id":1060,"sku":"WH02-L-Green","name":"Hera Pullover Hoodie-L-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                \n

                • Teal with purple stiching.
                • Hoodie pullover.
                • Snug fit.

                ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hera-pullover-hoodie-l-green-1060","links":{},"stock":{"item_id":1060,"product_id":1060,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-l-green-1060.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1055","_score":1,"_source":{"id":1055,"sku":"WH02-S-Orange","name":"Hera Pullover Hoodie-S-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                \n

                • Teal with purple stiching.
                • Hoodie pullover.
                • Snug fit.

                ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hera-pullover-hoodie-s-orange-1055","links":{},"stock":{"item_id":1055,"product_id":1055,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-s-orange-1055.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1059","_score":1,"_source":{"id":1059,"sku":"WH02-L-Blue","name":"Hera Pullover Hoodie-L-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                \n

                • Teal with purple stiching.
                • Hoodie pullover.
                • Snug fit.

                ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hera-pullover-hoodie-l-blue-1059","links":{},"stock":{"item_id":1059,"product_id":1059,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-l-blue-1059.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1056","_score":1,"_source":{"id":1056,"sku":"WH02-M-Blue","name":"Hera Pullover Hoodie-M-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                \n

                • Teal with purple stiching.
                • Hoodie pullover.
                • Snug fit.

                ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hera-pullover-hoodie-m-blue-1056","links":{},"stock":{"item_id":1056,"product_id":1056,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-m-blue-1056.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1064","_score":1,"_source":{"id":1064,"sku":"WH02-XL-Orange","name":"Hera Pullover Hoodie-XL-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                \n

                • Teal with purple stiching.
                • Hoodie pullover.
                • Snug fit.

                ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hera-pullover-hoodie-xl-orange-1064","links":{},"stock":{"item_id":1064,"product_id":1064,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xl-orange-1064.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1052","_score":1,"_source":{"id":1052,"sku":"WH02-XS-Orange","name":"Hera Pullover Hoodie-XS-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                \n

                • Teal with purple stiching.
                • Hoodie pullover.
                • Snug fit.

                ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hera-pullover-hoodie-xs-orange-1052","links":{},"stock":{"item_id":1052,"product_id":1052,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xs-orange-1052.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1085","_score":1,"_source":{"id":1085,"sku":"WH04-S-Blue","name":"Miko Pullover Hoodie-S-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                \n

                • Teal two-tone hoodie.
                • Low scoop neckline.
                • Adjustable hood drawstrings.
                • Longer rounded hemline for extra back coverage.
                • Long-Sleeve style.

                ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"miko-pullover-hoodie-s-blue-1085","links":{},"stock":{"item_id":1085,"product_id":1085,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-s-blue-1085.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1057","_score":1,"_source":{"id":1057,"sku":"WH02-M-Green","name":"Hera Pullover Hoodie-M-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                \n

                • Teal with purple stiching.
                • Hoodie pullover.
                • Snug fit.

                ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hera-pullover-hoodie-m-green-1057","links":{},"stock":{"item_id":1057,"product_id":1057,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-m-green-1057.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1058","_score":1,"_source":{"id":1058,"sku":"WH02-M-Orange","name":"Hera Pullover Hoodie-M-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                \n

                • Teal with purple stiching.
                • Hoodie pullover.
                • Snug fit.

                ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hera-pullover-hoodie-m-orange-1058","links":{},"stock":{"item_id":1058,"product_id":1058,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-m-orange-1058.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1054","_score":1,"_source":{"id":1054,"sku":"WH02-S-Green","name":"Hera Pullover Hoodie-S-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                \n

                • Teal with purple stiching.
                • Hoodie pullover.
                • Snug fit.

                ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hera-pullover-hoodie-s-green-1054","links":{},"stock":{"item_id":1054,"product_id":1054,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-s-green-1054.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1080","_score":1,"_source":{"id":1080,"sku":"WH03-XL-Red","name":"Autumn Pullie-XL-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                \n

                • Cayenne Short-Sleeve roll neck sweatshirt.
                • Relaxed fit.
                • Short-Sleeves.
                • Machine wash/dry.

                ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"autumn-pullie-xl-red-1080","links":{},"stock":{"item_id":1080,"product_id":1080,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xl-red-1080.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1051","_score":1,"_source":{"id":1051,"sku":"WH02-XS-Green","name":"Hera Pullover Hoodie-XS-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:07","updated_at":"2017-11-06 12:17:07","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                \n

                • Teal with purple stiching.
                • Hoodie pullover.
                • Snug fit.

                ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hera-pullover-hoodie-xs-green-1051","links":{},"stock":{"item_id":1051,"product_id":1051,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xs-green-1051.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1073","_score":1,"_source":{"id":1073,"sku":"WH03-M-Purple","name":"Autumn Pullie-M-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                \n

                • Cayenne Short-Sleeve roll neck sweatshirt.
                • Relaxed fit.
                • Short-Sleeves.
                • Machine wash/dry.

                ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"autumn-pullie-m-purple-1073","links":{},"stock":{"item_id":1073,"product_id":1073,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-m-purple-1073.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1061","_score":1,"_source":{"id":1061,"sku":"WH02-L-Orange","name":"Hera Pullover Hoodie-L-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                \n

                • Teal with purple stiching.
                • Hoodie pullover.
                • Snug fit.

                ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hera-pullover-hoodie-l-orange-1061","links":{},"stock":{"item_id":1061,"product_id":1061,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-l-orange-1061.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1074","_score":1,"_source":{"id":1074,"sku":"WH03-M-Red","name":"Autumn Pullie-M-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                \n

                • Cayenne Short-Sleeve roll neck sweatshirt.
                • Relaxed fit.
                • Short-Sleeves.
                • Machine wash/dry.

                ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"autumn-pullie-m-red-1074","links":{},"stock":{"item_id":1074,"product_id":1074,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-m-red-1074.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1070","_score":1,"_source":{"id":1070,"sku":"WH03-S-Purple","name":"Autumn Pullie-S-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                \n

                • Cayenne Short-Sleeve roll neck sweatshirt.
                • Relaxed fit.
                • Short-Sleeves.
                • Machine wash/dry.

                ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"autumn-pullie-s-purple-1070","links":{},"stock":{"item_id":1070,"product_id":1070,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-s-purple-1070.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1066","_score":1,"_source":{"id":1066,"sku":"WH03-XS-Green","name":"Autumn Pullie-XS-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                \n

                • Cayenne Short-Sleeve roll neck sweatshirt.
                • Relaxed fit.
                • Short-Sleeves.
                • Machine wash/dry.

                ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"autumn-pullie-xs-green-1066","links":{},"stock":{"item_id":1066,"product_id":1066,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xs-green-1066.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1077","_score":1,"_source":{"id":1077,"sku":"WH03-L-Red","name":"Autumn Pullie-L-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                \n

                • Cayenne Short-Sleeve roll neck sweatshirt.
                • Relaxed fit.
                • Short-Sleeves.
                • Machine wash/dry.

                ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"autumn-pullie-l-red-1077","links":{},"stock":{"item_id":1077,"product_id":1077,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-l-red-1077.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1076","_score":1,"_source":{"id":1076,"sku":"WH03-L-Purple","name":"Autumn Pullie-L-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                \n

                • Cayenne Short-Sleeve roll neck sweatshirt.
                • Relaxed fit.
                • Short-Sleeves.
                • Machine wash/dry.

                ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"autumn-pullie-l-purple-1076","links":{},"stock":{"item_id":1076,"product_id":1076,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-l-purple-1076.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1067","_score":1,"_source":{"id":1067,"sku":"WH03-XS-Purple","name":"Autumn Pullie-XS-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                \n

                • Cayenne Short-Sleeve roll neck sweatshirt.
                • Relaxed fit.
                • Short-Sleeves.
                • Machine wash/dry.

                ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"autumn-pullie-xs-purple-1067","links":{},"stock":{"item_id":1067,"product_id":1067,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xs-purple-1067.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1099","_score":1,"_source":{"id":1099,"sku":"WH05-XS-Purple","name":"Selene Yoga Hoodie-XS-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                \n

                • Ivory heather full zip 3/4 sleeve hoodie.
                • Zip pocket at arm for convenient storage.
                • 24.0\" body length.
                • 89% Polyester / 11% Spandex.

                ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"selene-yoga-hoodie-xs-purple-1099","links":{},"stock":{"item_id":1099,"product_id":1099,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xs-purple-1099.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1079","_score":1,"_source":{"id":1079,"sku":"WH03-XL-Purple","name":"Autumn Pullie-XL-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                \n

                • Cayenne Short-Sleeve roll neck sweatshirt.
                • Relaxed fit.
                • Short-Sleeves.
                • Machine wash/dry.

                ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"autumn-pullie-xl-purple-1079","links":{},"stock":{"item_id":1079,"product_id":1079,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xl-purple-1079.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1063","_score":1,"_source":{"id":1063,"sku":"WH02-XL-Green","name":"Hera Pullover Hoodie-XL-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                \n

                • Teal with purple stiching.
                • Hoodie pullover.
                • Snug fit.

                ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hera-pullover-hoodie-xl-green-1063","links":{},"stock":{"item_id":1063,"product_id":1063,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xl-green-1063.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1087","_score":1,"_source":{"id":1087,"sku":"WH04-S-Purple","name":"Miko Pullover Hoodie-S-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                \n

                • Teal two-tone hoodie.
                • Low scoop neckline.
                • Adjustable hood drawstrings.
                • Longer rounded hemline for extra back coverage.
                • Long-Sleeve style.

                ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"miko-pullover-hoodie-s-purple-1087","links":{},"stock":{"item_id":1087,"product_id":1087,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-s-purple-1087.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1068","_score":1,"_source":{"id":1068,"sku":"WH03-XS-Red","name":"Autumn Pullie-XS-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                \n

                • Cayenne Short-Sleeve roll neck sweatshirt.
                • Relaxed fit.
                • Short-Sleeves.
                • Machine wash/dry.

                ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"autumn-pullie-xs-red-1068","links":{},"stock":{"item_id":1068,"product_id":1068,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xs-red-1068.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1084","_score":1,"_source":{"id":1084,"sku":"WH04-XS-Purple","name":"Miko Pullover Hoodie-XS-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                \n

                • Teal two-tone hoodie.
                • Low scoop neckline.
                • Adjustable hood drawstrings.
                • Longer rounded hemline for extra back coverage.
                • Long-Sleeve style.

                ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"miko-pullover-hoodie-xs-purple-1084","links":{},"stock":{"item_id":1084,"product_id":1084,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xs-purple-1084.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1078","_score":1,"_source":{"id":1078,"sku":"WH03-XL-Green","name":"Autumn Pullie-XL-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                \n

                • Cayenne Short-Sleeve roll neck sweatshirt.
                • Relaxed fit.
                • Short-Sleeves.
                • Machine wash/dry.

                ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"autumn-pullie-xl-green-1078","links":{},"stock":{"item_id":1078,"product_id":1078,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xl-green-1078.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1088","_score":1,"_source":{"id":1088,"sku":"WH04-M-Blue","name":"Miko Pullover Hoodie-M-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                \n

                • Teal two-tone hoodie.
                • Low scoop neckline.
                • Adjustable hood drawstrings.
                • Longer rounded hemline for extra back coverage.
                • Long-Sleeve style.

                ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"miko-pullover-hoodie-m-blue-1088","links":{},"stock":{"item_id":1088,"product_id":1088,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-m-blue-1088.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1089","_score":1,"_source":{"id":1089,"sku":"WH04-M-Orange","name":"Miko Pullover Hoodie-M-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                \n

                • Teal two-tone hoodie.
                • Low scoop neckline.
                • Adjustable hood drawstrings.
                • Longer rounded hemline for extra back coverage.
                • Long-Sleeve style.

                ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"miko-pullover-hoodie-m-orange-1089","links":{},"stock":{"item_id":1089,"product_id":1089,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-m-orange-1089.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1069","_score":1,"_source":{"id":1069,"sku":"WH03-S-Green","name":"Autumn Pullie-S-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                \n

                • Cayenne Short-Sleeve roll neck sweatshirt.
                • Relaxed fit.
                • Short-Sleeves.
                • Machine wash/dry.

                ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"autumn-pullie-s-green-1069","links":{},"stock":{"item_id":1069,"product_id":1069,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-s-green-1069.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1072","_score":1,"_source":{"id":1072,"sku":"WH03-M-Green","name":"Autumn Pullie-M-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                \n

                • Cayenne Short-Sleeve roll neck sweatshirt.
                • Relaxed fit.
                • Short-Sleeves.
                • Machine wash/dry.

                ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"autumn-pullie-m-green-1072","links":{},"stock":{"item_id":1072,"product_id":1072,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-m-green-1072.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1125","_score":1,"_source":{"id":1125,"sku":"WH07-S-White","name":"Phoebe Zipper Sweatshirt-S-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                \n

                • Gray full zip hoodie with yellow detail.
                • Hand-warmer pockets.
                • Zip MP3 pocket with outlet for earphones wire.
                • Polyester/cotton.
                • Washable.

                ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"phoebe-zipper-sweatshirt-s-white-1125","links":{},"stock":{"item_id":1125,"product_id":1125,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-s-white-1125.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1128","_score":1,"_source":{"id":1128,"sku":"WH07-M-White","name":"Phoebe Zipper Sweatshirt-M-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                \n

                • Gray full zip hoodie with yellow detail.
                • Hand-warmer pockets.
                • Zip MP3 pocket with outlet for earphones wire.
                • Polyester/cotton.
                • Washable.

                ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"phoebe-zipper-sweatshirt-m-white-1128","links":{},"stock":{"item_id":1128,"product_id":1128,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-m-white-1128.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1122","_score":1,"_source":{"id":1122,"sku":"WH07-XS-White","name":"Phoebe Zipper Sweatshirt-XS-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                \n

                • Gray full zip hoodie with yellow detail.
                • Hand-warmer pockets.
                • Zip MP3 pocket with outlet for earphones wire.
                • Polyester/cotton.
                • Washable.

                ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"phoebe-zipper-sweatshirt-xs-white-1122","links":{},"stock":{"item_id":1122,"product_id":1122,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xs-white-1122.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1142","_score":1,"_source":{"id":1142,"sku":"WH08-M-Orange","name":"Cassia Funnel Sweatshirt-M-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                \n

                • White full zip hoodie with gray detail.
                • 65% Cotton/28% Nylon/7% Spandex.
                • Front slash pockets.
                • Tagless label at back neck.

                ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"cassia-funnel-sweatshirt-m-orange-1142","links":{},"stock":{"item_id":1142,"product_id":1142,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-m-orange-1142.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1127","_score":1,"_source":{"id":1127,"sku":"WH07-M-Purple","name":"Phoebe Zipper Sweatshirt-M-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                \n

                • Gray full zip hoodie with yellow detail.
                • Hand-warmer pockets.
                • Zip MP3 pocket with outlet for earphones wire.
                • Polyester/cotton.
                • Washable.

                ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"phoebe-zipper-sweatshirt-m-purple-1127","links":{},"stock":{"item_id":1127,"product_id":1127,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-m-purple-1127.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1132","_score":1,"_source":{"id":1132,"sku":"WH07-XL-Gray","name":"Phoebe Zipper Sweatshirt-XL-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                \n

                • Gray full zip hoodie with yellow detail.
                • Hand-warmer pockets.
                • Zip MP3 pocket with outlet for earphones wire.
                • Polyester/cotton.
                • Washable.

                ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"phoebe-zipper-sweatshirt-xl-gray-1132","links":{},"stock":{"item_id":1132,"product_id":1132,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xl-gray-1132.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1124","_score":1,"_source":{"id":1124,"sku":"WH07-S-Purple","name":"Phoebe Zipper Sweatshirt-S-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                \n

                • Gray full zip hoodie with yellow detail.
                • Hand-warmer pockets.
                • Zip MP3 pocket with outlet for earphones wire.
                • Polyester/cotton.
                • Washable.

                ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"phoebe-zipper-sweatshirt-s-purple-1124","links":{},"stock":{"item_id":1124,"product_id":1124,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-s-purple-1124.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1123","_score":1,"_source":{"id":1123,"sku":"WH07-S-Gray","name":"Phoebe Zipper Sweatshirt-S-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                \n

                • Gray full zip hoodie with yellow detail.
                • Hand-warmer pockets.
                • Zip MP3 pocket with outlet for earphones wire.
                • Polyester/cotton.
                • Washable.

                ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"phoebe-zipper-sweatshirt-s-gray-1123","links":{},"stock":{"item_id":1123,"product_id":1123,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-s-gray-1123.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1130","_score":1,"_source":{"id":1130,"sku":"WH07-L-Purple","name":"Phoebe Zipper Sweatshirt-L-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                \n

                • Gray full zip hoodie with yellow detail.
                • Hand-warmer pockets.
                • Zip MP3 pocket with outlet for earphones wire.
                • Polyester/cotton.
                • Washable.

                ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"phoebe-zipper-sweatshirt-l-purple-1130","links":{},"stock":{"item_id":1130,"product_id":1130,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-l-purple-1130.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1126","_score":1,"_source":{"id":1126,"sku":"WH07-M-Gray","name":"Phoebe Zipper Sweatshirt-M-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                \n

                • Gray full zip hoodie with yellow detail.
                • Hand-warmer pockets.
                • Zip MP3 pocket with outlet for earphones wire.
                • Polyester/cotton.
                • Washable.

                ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"phoebe-zipper-sweatshirt-m-gray-1126","links":{},"stock":{"item_id":1126,"product_id":1126,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-m-gray-1126.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1121","_score":1,"_source":{"id":1121,"sku":"WH07-XS-Purple","name":"Phoebe Zipper Sweatshirt-XS-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                \n

                • Gray full zip hoodie with yellow detail.
                • Hand-warmer pockets.
                • Zip MP3 pocket with outlet for earphones wire.
                • Polyester/cotton.
                • Washable.

                ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"phoebe-zipper-sweatshirt-xs-purple-1121","links":{},"stock":{"item_id":1121,"product_id":1121,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xs-purple-1121.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1105","_score":1,"_source":{"id":1105,"sku":"WH05-M-Purple","name":"Selene Yoga Hoodie-M-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                \n

                • Ivory heather full zip 3/4 sleeve hoodie.
                • Zip pocket at arm for convenient storage.
                • 24.0\" body length.
                • 89% Polyester / 11% Spandex.

                ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"selene-yoga-hoodie-m-purple-1105","links":{},"stock":{"item_id":1105,"product_id":1105,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-m-purple-1105.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1149","_score":1,"_source":{"id":1149,"sku":"WH08-XL-Purple","name":"Cassia Funnel Sweatshirt-XL-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                \n

                • White full zip hoodie with gray detail.
                • 65% Cotton/28% Nylon/7% Spandex.
                • Front slash pockets.
                • Tagless label at back neck.

                ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"cassia-funnel-sweatshirt-xl-purple-1149","links":{},"stock":{"item_id":1149,"product_id":1149,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xl-purple-1149.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1106","_score":1,"_source":{"id":1106,"sku":"WH05-M-White","name":"Selene Yoga Hoodie-M-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                \n

                • Ivory heather full zip 3/4 sleeve hoodie.
                • Zip pocket at arm for convenient storage.
                • 24.0\" body length.
                • 89% Polyester / 11% Spandex.

                ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"selene-yoga-hoodie-m-white-1106","links":{},"stock":{"item_id":1106,"product_id":1106,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-m-white-1106.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1131","_score":1,"_source":{"id":1131,"sku":"WH07-L-White","name":"Phoebe Zipper Sweatshirt-L-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                \n

                • Gray full zip hoodie with yellow detail.
                • Hand-warmer pockets.
                • Zip MP3 pocket with outlet for earphones wire.
                • Polyester/cotton.
                • Washable.

                ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"phoebe-zipper-sweatshirt-l-white-1131","links":{},"stock":{"item_id":1131,"product_id":1131,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-l-white-1131.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1137","_score":1,"_source":{"id":1137,"sku":"WH08-XS-Purple","name":"Cassia Funnel Sweatshirt-XS-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                \n

                • White full zip hoodie with gray detail.
                • 65% Cotton/28% Nylon/7% Spandex.
                • Front slash pockets.
                • Tagless label at back neck.

                ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"cassia-funnel-sweatshirt-xs-purple-1137","links":{},"stock":{"item_id":1137,"product_id":1137,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xs-purple-1137.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1120","_score":1,"_source":{"id":1120,"sku":"WH07-XS-Gray","name":"Phoebe Zipper Sweatshirt-XS-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                \n

                • Gray full zip hoodie with yellow detail.
                • Hand-warmer pockets.
                • Zip MP3 pocket with outlet for earphones wire.
                • Polyester/cotton.
                • Washable.

                ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"phoebe-zipper-sweatshirt-xs-gray-1120","links":{},"stock":{"item_id":1120,"product_id":1120,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xs-gray-1120.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1138","_score":1,"_source":{"id":1138,"sku":"WH08-XS-White","name":"Cassia Funnel Sweatshirt-XS-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                \n

                • White full zip hoodie with gray detail.
                • 65% Cotton/28% Nylon/7% Spandex.
                • Front slash pockets.
                • Tagless label at back neck.

                ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"cassia-funnel-sweatshirt-xs-white-1138","links":{},"stock":{"item_id":1138,"product_id":1138,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xs-white-1138.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1134","_score":1,"_source":{"id":1134,"sku":"WH07-XL-White","name":"Phoebe Zipper Sweatshirt-XL-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                \n

                • Gray full zip hoodie with yellow detail.
                • Hand-warmer pockets.
                • Zip MP3 pocket with outlet for earphones wire.
                • Polyester/cotton.
                • Washable.

                ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"phoebe-zipper-sweatshirt-xl-white-1134","links":{},"stock":{"item_id":1134,"product_id":1134,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xl-white-1134.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1133","_score":1,"_source":{"id":1133,"sku":"WH07-XL-Purple","name":"Phoebe Zipper Sweatshirt-XL-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                \n

                • Gray full zip hoodie with yellow detail.
                • Hand-warmer pockets.
                • Zip MP3 pocket with outlet for earphones wire.
                • Polyester/cotton.
                • Washable.

                ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"phoebe-zipper-sweatshirt-xl-purple-1133","links":{},"stock":{"item_id":1133,"product_id":1133,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xl-purple-1133.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1143","_score":1,"_source":{"id":1143,"sku":"WH08-M-Purple","name":"Cassia Funnel Sweatshirt-M-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                \n

                • White full zip hoodie with gray detail.
                • 65% Cotton/28% Nylon/7% Spandex.
                • Front slash pockets.
                • Tagless label at back neck.

                ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"cassia-funnel-sweatshirt-m-purple-1143","links":{},"stock":{"item_id":1143,"product_id":1143,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-m-purple-1143.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1049","_score":1,"_source":{"id":1049,"sku":"WH01","name":"Mona Pullover Hoodlie","attribute_set_id":9,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                • Light green heathered hoodie.
                • Long-Sleeve, pullover.
                • Long elliptical hem for extra coverage.
                • Deep button placket for layering.
                • Double rib design.
                • Mid layer, mid weight.
                • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mona-pullover-hoodlie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":[138,137],"pattern":"197","climate":[202,204,206,208],"slug":"mona-pullover-hoodlie-1049","links":{},"stock":{"item_id":1049,"product_id":1049,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH01-XS-Green","id":1034,"status":1,"name":"Mona Pullover Hoodlie-XS-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"167","color":"53","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","url_key":"mona-pullover-hoodlie-xs-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-XS-Orange","id":1035,"status":1,"name":"Mona Pullover Hoodlie-XS-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"167","color":"56","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","url_key":"mona-pullover-hoodlie-xs-orange","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-XS-Purple","id":1036,"status":1,"name":"Mona Pullover Hoodlie-XS-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"167","color":"57","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","url_key":"mona-pullover-hoodlie-xs-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-S-Green","id":1037,"status":1,"name":"Mona Pullover Hoodlie-S-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"168","color":"53","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","url_key":"mona-pullover-hoodlie-s-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-S-Orange","id":1038,"status":1,"name":"Mona Pullover Hoodlie-S-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"168","color":"56","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","url_key":"mona-pullover-hoodlie-s-orange","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-S-Purple","id":1039,"status":1,"name":"Mona Pullover Hoodlie-S-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"168","color":"57","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","url_key":"mona-pullover-hoodlie-s-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-M-Green","id":1040,"status":1,"name":"Mona Pullover Hoodlie-M-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"169","color":"53","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","url_key":"mona-pullover-hoodlie-m-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-M-Orange","id":1041,"status":1,"name":"Mona Pullover Hoodlie-M-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"169","color":"56","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","url_key":"mona-pullover-hoodlie-m-orange","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-M-Purple","id":1042,"status":1,"name":"Mona Pullover Hoodlie-M-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"169","color":"57","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","url_key":"mona-pullover-hoodlie-m-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-L-Green","id":1043,"status":1,"name":"Mona Pullover Hoodlie-L-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"170","color":"53","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","url_key":"mona-pullover-hoodlie-l-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-L-Orange","id":1044,"status":1,"name":"Mona Pullover Hoodlie-L-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"170","color":"56","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","url_key":"mona-pullover-hoodlie-l-orange","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-L-Purple","id":1045,"status":1,"name":"Mona Pullover Hoodlie-L-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"170","color":"57","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","url_key":"mona-pullover-hoodlie-l-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-XL-Green","id":1046,"status":1,"name":"Mona Pullover Hoodlie-XL-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"171","color":"53","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","url_key":"mona-pullover-hoodlie-xl-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-XL-Orange","id":1047,"status":1,"name":"Mona Pullover Hoodlie-XL-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"171","color":"56","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","url_key":"mona-pullover-hoodlie-xl-orange","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-XL-Purple","id":1048,"status":1,"name":"Mona Pullover Hoodlie-XL-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"171","color":"57","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","url_key":"mona-pullover-hoodlie-xl-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57}],"configurable_options":[{"id":147,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1049,"attribute_code":"color"},{"id":146,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1049,"attribute_code":"size"}],"color_options":[53,56,57],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-1049.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1129","_score":1,"_source":{"id":1129,"sku":"WH07-L-Gray","name":"Phoebe Zipper Sweatshirt-L-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                \n

                • Gray full zip hoodie with yellow detail.
                • Hand-warmer pockets.
                • Zip MP3 pocket with outlet for earphones wire.
                • Polyester/cotton.
                • Washable.

                ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"phoebe-zipper-sweatshirt-l-gray-1129","links":{},"stock":{"item_id":1129,"product_id":1129,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-l-gray-1129.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1140","_score":1,"_source":{"id":1140,"sku":"WH08-S-Purple","name":"Cassia Funnel Sweatshirt-S-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                \n

                • White full zip hoodie with gray detail.
                • 65% Cotton/28% Nylon/7% Spandex.
                • Front slash pockets.
                • Tagless label at back neck.

                ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"cassia-funnel-sweatshirt-s-purple-1140","links":{},"stock":{"item_id":1140,"product_id":1140,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-s-purple-1140.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1150","_score":1,"_source":{"id":1150,"sku":"WH08-XL-White","name":"Cassia Funnel Sweatshirt-XL-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                \n

                • White full zip hoodie with gray detail.
                • 65% Cotton/28% Nylon/7% Spandex.
                • Front slash pockets.
                • Tagless label at back neck.

                ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"cassia-funnel-sweatshirt-xl-white-1150","links":{},"stock":{"item_id":1150,"product_id":1150,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xl-white-1150.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1141","_score":1,"_source":{"id":1141,"sku":"WH08-S-White","name":"Cassia Funnel Sweatshirt-S-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                \n

                • White full zip hoodie with gray detail.
                • 65% Cotton/28% Nylon/7% Spandex.
                • Front slash pockets.
                • Tagless label at back neck.

                ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"cassia-funnel-sweatshirt-s-white-1141","links":{},"stock":{"item_id":1141,"product_id":1141,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-s-white-1141.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1148","_score":1,"_source":{"id":1148,"sku":"WH08-XL-Orange","name":"Cassia Funnel Sweatshirt-XL-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                \n

                • White full zip hoodie with gray detail.
                • 65% Cotton/28% Nylon/7% Spandex.
                • Front slash pockets.
                • Tagless label at back neck.

                ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"cassia-funnel-sweatshirt-xl-orange-1148","links":{},"stock":{"item_id":1148,"product_id":1148,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xl-orange-1148.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1145","_score":1,"_source":{"id":1145,"sku":"WH08-L-Orange","name":"Cassia Funnel Sweatshirt-L-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                \n

                • White full zip hoodie with gray detail.
                • 65% Cotton/28% Nylon/7% Spandex.
                • Front slash pockets.
                • Tagless label at back neck.

                ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"cassia-funnel-sweatshirt-l-orange-1145","links":{},"stock":{"item_id":1145,"product_id":1145,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-l-orange-1145.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1136","_score":1,"_source":{"id":1136,"sku":"WH08-XS-Orange","name":"Cassia Funnel Sweatshirt-XS-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                \n

                • White full zip hoodie with gray detail.
                • 65% Cotton/28% Nylon/7% Spandex.
                • Front slash pockets.
                • Tagless label at back neck.

                ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"cassia-funnel-sweatshirt-xs-orange-1136","links":{},"stock":{"item_id":1136,"product_id":1136,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xs-orange-1136.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1146","_score":1,"_source":{"id":1146,"sku":"WH08-L-Purple","name":"Cassia Funnel Sweatshirt-L-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                \n

                • White full zip hoodie with gray detail.
                • 65% Cotton/28% Nylon/7% Spandex.
                • Front slash pockets.
                • Tagless label at back neck.

                ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"cassia-funnel-sweatshirt-l-purple-1146","links":{},"stock":{"item_id":1146,"product_id":1146,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-l-purple-1146.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1139","_score":1,"_source":{"id":1139,"sku":"WH08-S-Orange","name":"Cassia Funnel Sweatshirt-S-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                \n

                • White full zip hoodie with gray detail.
                • 65% Cotton/28% Nylon/7% Spandex.
                • Front slash pockets.
                • Tagless label at back neck.

                ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"cassia-funnel-sweatshirt-s-orange-1139","links":{},"stock":{"item_id":1139,"product_id":1139,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-s-orange-1139.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1147","_score":1,"_source":{"id":1147,"sku":"WH08-L-White","name":"Cassia Funnel Sweatshirt-L-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                \n

                • White full zip hoodie with gray detail.
                • 65% Cotton/28% Nylon/7% Spandex.
                • Front slash pockets.
                • Tagless label at back neck.

                ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"cassia-funnel-sweatshirt-l-white-1147","links":{},"stock":{"item_id":1147,"product_id":1147,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-l-white-1147.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1144","_score":1,"_source":{"id":1144,"sku":"WH08-M-White","name":"Cassia Funnel Sweatshirt-M-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                \n

                • White full zip hoodie with gray detail.
                • 65% Cotton/28% Nylon/7% Spandex.
                • Front slash pockets.
                • Tagless label at back neck.

                ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"cassia-funnel-sweatshirt-m-white-1144","links":{},"stock":{"item_id":1144,"product_id":1144,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-m-white-1144.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1102","_score":1,"_source":{"id":1102,"sku":"WH05-S-Purple","name":"Selene Yoga Hoodie-S-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                \n

                • Ivory heather full zip 3/4 sleeve hoodie.
                • Zip pocket at arm for convenient storage.
                • 24.0\" body length.
                • 89% Polyester / 11% Spandex.

                ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"selene-yoga-hoodie-s-purple-1102","links":{},"stock":{"item_id":1102,"product_id":1102,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-s-purple-1102.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1111","_score":1,"_source":{"id":1111,"sku":"WH05-XL-Purple","name":"Selene Yoga Hoodie-XL-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                \n

                • Ivory heather full zip 3/4 sleeve hoodie.
                • Zip pocket at arm for convenient storage.
                • 24.0\" body length.
                • 89% Polyester / 11% Spandex.

                ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"selene-yoga-hoodie-xl-purple-1111","links":{},"stock":{"item_id":1111,"product_id":1111,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xl-purple-1111.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1117","_score":1,"_source":{"id":1117,"sku":"WH06-L-Purple","name":"Daphne Full-Zip Hoodie-L-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

                \n

                • Purple full zip hoodie with pink accents.
                • Heather texture.
                • 4-way stretch.
                • Pre-shrunk.
                • Hood lined in vegan Sherpa for added warmth.
                • Ribbed hem on hood and front pouch pocket.
                • 60% Cotton / 40% Polyester.

                ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"daphne-full-zip-hoodie-l-purple-1117","links":{},"stock":{"item_id":1117,"product_id":1117,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-l-purple-1117.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1116","_score":1,"_source":{"id":1116,"sku":"WH06-M-Purple","name":"Daphne Full-Zip Hoodie-M-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

                \n

                • Purple full zip hoodie with pink accents.
                • Heather texture.
                • 4-way stretch.
                • Pre-shrunk.
                • Hood lined in vegan Sherpa for added warmth.
                • Ribbed hem on hood and front pouch pocket.
                • 60% Cotton / 40% Polyester.

                ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"daphne-full-zip-hoodie-m-purple-1116","links":{},"stock":{"item_id":1116,"product_id":1116,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-m-purple-1116.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1115","_score":1,"_source":{"id":1115,"sku":"WH06-S-Purple","name":"Daphne Full-Zip Hoodie-S-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

                \n

                • Purple full zip hoodie with pink accents.
                • Heather texture.
                • 4-way stretch.
                • Pre-shrunk.
                • Hood lined in vegan Sherpa for added warmth.
                • Ribbed hem on hood and front pouch pocket.
                • 60% Cotton / 40% Polyester.

                ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"daphne-full-zip-hoodie-s-purple-1115","links":{},"stock":{"item_id":1115,"product_id":1115,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-s-purple-1115.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1108","_score":1,"_source":{"id":1108,"sku":"WH05-L-Purple","name":"Selene Yoga Hoodie-L-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                \n

                • Ivory heather full zip 3/4 sleeve hoodie.
                • Zip pocket at arm for convenient storage.
                • 24.0\" body length.
                • 89% Polyester / 11% Spandex.

                ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"selene-yoga-hoodie-l-purple-1108","links":{},"stock":{"item_id":1108,"product_id":1108,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-l-purple-1108.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1109","_score":1,"_source":{"id":1109,"sku":"WH05-L-White","name":"Selene Yoga Hoodie-L-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                \n

                • Ivory heather full zip 3/4 sleeve hoodie.
                • Zip pocket at arm for convenient storage.
                • 24.0\" body length.
                • 89% Polyester / 11% Spandex.

                ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"selene-yoga-hoodie-l-white-1109","links":{},"stock":{"item_id":1109,"product_id":1109,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-l-white-1109.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1107","_score":1,"_source":{"id":1107,"sku":"WH05-L-Orange","name":"Selene Yoga Hoodie-L-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                \n

                • Ivory heather full zip 3/4 sleeve hoodie.
                • Zip pocket at arm for convenient storage.
                • 24.0\" body length.
                • 89% Polyester / 11% Spandex.

                ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"selene-yoga-hoodie-l-orange-1107","links":{},"stock":{"item_id":1107,"product_id":1107,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-l-orange-1107.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1104","_score":1,"_source":{"id":1104,"sku":"WH05-M-Orange","name":"Selene Yoga Hoodie-M-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                \n

                • Ivory heather full zip 3/4 sleeve hoodie.
                • Zip pocket at arm for convenient storage.
                • 24.0\" body length.
                • 89% Polyester / 11% Spandex.

                ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"selene-yoga-hoodie-m-orange-1104","links":{},"stock":{"item_id":1104,"product_id":1104,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-m-orange-1104.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1118","_score":1,"_source":{"id":1118,"sku":"WH06-XL-Purple","name":"Daphne Full-Zip Hoodie-XL-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

                \n

                • Purple full zip hoodie with pink accents.
                • Heather texture.
                • 4-way stretch.
                • Pre-shrunk.
                • Hood lined in vegan Sherpa for added warmth.
                • Ribbed hem on hood and front pouch pocket.
                • 60% Cotton / 40% Polyester.

                ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"daphne-full-zip-hoodie-xl-purple-1118","links":{},"stock":{"item_id":1118,"product_id":1118,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-xl-purple-1118.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1112","_score":1,"_source":{"id":1112,"sku":"WH05-XL-White","name":"Selene Yoga Hoodie-XL-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                \n

                • Ivory heather full zip 3/4 sleeve hoodie.
                • Zip pocket at arm for convenient storage.
                • 24.0\" body length.
                • 89% Polyester / 11% Spandex.

                ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"selene-yoga-hoodie-xl-white-1112","links":{},"stock":{"item_id":1112,"product_id":1112,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xl-white-1112.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1110","_score":1,"_source":{"id":1110,"sku":"WH05-XL-Orange","name":"Selene Yoga Hoodie-XL-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                \n

                • Ivory heather full zip 3/4 sleeve hoodie.
                • Zip pocket at arm for convenient storage.
                • 24.0\" body length.
                • 89% Polyester / 11% Spandex.

                ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"selene-yoga-hoodie-xl-orange-1110","links":{},"stock":{"item_id":1110,"product_id":1110,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xl-orange-1110.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1103","_score":1,"_source":{"id":1103,"sku":"WH05-S-White","name":"Selene Yoga Hoodie-S-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                \n

                • Ivory heather full zip 3/4 sleeve hoodie.
                • Zip pocket at arm for convenient storage.
                • 24.0\" body length.
                • 89% Polyester / 11% Spandex.

                ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"selene-yoga-hoodie-s-white-1103","links":{},"stock":{"item_id":1103,"product_id":1103,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-s-white-1103.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1101","_score":1,"_source":{"id":1101,"sku":"WH05-S-Orange","name":"Selene Yoga Hoodie-S-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                \n

                • Ivory heather full zip 3/4 sleeve hoodie.
                • Zip pocket at arm for convenient storage.
                • 24.0\" body length.
                • 89% Polyester / 11% Spandex.

                ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"selene-yoga-hoodie-s-orange-1101","links":{},"stock":{"item_id":1101,"product_id":1101,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-s-orange-1101.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1114","_score":1,"_source":{"id":1114,"sku":"WH06-XS-Purple","name":"Daphne Full-Zip Hoodie-XS-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

                \n

                • Purple full zip hoodie with pink accents.
                • Heather texture.
                • 4-way stretch.
                • Pre-shrunk.
                • Hood lined in vegan Sherpa for added warmth.
                • Ribbed hem on hood and front pouch pocket.
                • 60% Cotton / 40% Polyester.

                ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"daphne-full-zip-hoodie-xs-purple-1114","links":{},"stock":{"item_id":1114,"product_id":1114,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-xs-purple-1114.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1062","_score":1,"_source":{"id":1062,"sku":"WH02-XL-Blue","name":"Hera Pullover Hoodie-XL-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                \n

                • Teal with purple stiching.
                • Hoodie pullover.
                • Snug fit.

                ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hera-pullover-hoodie-xl-blue-1062","links":{},"stock":{"item_id":1062,"product_id":1062,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xl-blue-1062.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1194","_score":1,"_source":{"id":1194,"sku":"WH11-L-Green","name":"Eos V-Neck Hoodie-L-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                \n

                Semi-fitted.
                Long-Sleeve.
                Machine wash/line dry.

                ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"eos-v-neck-hoodie-l-green-1194","links":{},"stock":{"item_id":1194,"product_id":1194,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-l-green-1194.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1185","_score":1,"_source":{"id":1185,"sku":"WH11-XS-Green","name":"Eos V-Neck Hoodie-XS-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                \n

                Semi-fitted.
                Long-Sleeve.
                Machine wash/line dry.

                ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"eos-v-neck-hoodie-xs-green-1185","links":{},"stock":{"item_id":1185,"product_id":1185,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xs-green-1185.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1180","_score":1,"_source":{"id":1180,"sku":"WH10-XL-Blue","name":"Helena Hooded Fleece-XL-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                \n

                Full zip.
                Banded cuffs and waist.
                Front pockets.
                Machine wash/dry.

                ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helena-hooded-fleece-xl-blue-1180","links":{},"stock":{"item_id":1180,"product_id":1180,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xl-blue-1180.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1186","_score":1,"_source":{"id":1186,"sku":"WH11-XS-Orange","name":"Eos V-Neck Hoodie-XS-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                \n

                Semi-fitted.
                Long-Sleeve.
                Machine wash/line dry.

                ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"eos-v-neck-hoodie-xs-orange-1186","links":{},"stock":{"item_id":1186,"product_id":1186,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xs-orange-1186.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1195","_score":1,"_source":{"id":1195,"sku":"WH11-L-Orange","name":"Eos V-Neck Hoodie-L-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                \n

                Semi-fitted.
                Long-Sleeve.
                Machine wash/line dry.

                ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"eos-v-neck-hoodie-l-orange-1195","links":{},"stock":{"item_id":1195,"product_id":1195,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-l-orange-1195.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1198","_score":1,"_source":{"id":1198,"sku":"WH11-XL-Orange","name":"Eos V-Neck Hoodie-XL-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                \n

                Semi-fitted.
                Long-Sleeve.
                Machine wash/line dry.

                ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"eos-v-neck-hoodie-xl-orange-1198","links":{},"stock":{"item_id":1198,"product_id":1198,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xl-orange-1198.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1182","_score":1,"_source":{"id":1182,"sku":"WH10-XL-Yellow","name":"Helena Hooded Fleece-XL-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                \n

                Full zip.
                Banded cuffs and waist.
                Front pockets.
                Machine wash/dry.

                ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helena-hooded-fleece-xl-yellow-1182","links":{},"stock":{"item_id":1182,"product_id":1182,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xl-yellow-1182.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1177","_score":1,"_source":{"id":1177,"sku":"WH10-L-Blue","name":"Helena Hooded Fleece-L-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                \n

                Full zip.
                Banded cuffs and waist.
                Front pockets.
                Machine wash/dry.

                ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helena-hooded-fleece-l-blue-1177","links":{},"stock":{"item_id":1177,"product_id":1177,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-l-blue-1177.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1196","_score":1,"_source":{"id":1196,"sku":"WH11-XL-Blue","name":"Eos V-Neck Hoodie-XL-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                \n

                Semi-fitted.
                Long-Sleeve.
                Machine wash/line dry.

                ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"eos-v-neck-hoodie-xl-blue-1196","links":{},"stock":{"item_id":1196,"product_id":1196,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xl-blue-1196.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1197","_score":1,"_source":{"id":1197,"sku":"WH11-XL-Green","name":"Eos V-Neck Hoodie-XL-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                \n

                Semi-fitted.
                Long-Sleeve.
                Machine wash/line dry.

                ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"eos-v-neck-hoodie-xl-green-1197","links":{},"stock":{"item_id":1197,"product_id":1197,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xl-green-1197.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1190","_score":1,"_source":{"id":1190,"sku":"WH11-M-Blue","name":"Eos V-Neck Hoodie-M-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                \n

                Semi-fitted.
                Long-Sleeve.
                Machine wash/line dry.

                ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"eos-v-neck-hoodie-m-blue-1190","links":{},"stock":{"item_id":1190,"product_id":1190,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-m-blue-1190.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1189","_score":1,"_source":{"id":1189,"sku":"WH11-S-Orange","name":"Eos V-Neck Hoodie-S-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                \n

                Semi-fitted.
                Long-Sleeve.
                Machine wash/line dry.

                ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"eos-v-neck-hoodie-s-orange-1189","links":{},"stock":{"item_id":1189,"product_id":1189,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-s-orange-1189.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1188","_score":1,"_source":{"id":1188,"sku":"WH11-S-Green","name":"Eos V-Neck Hoodie-S-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                \n

                Semi-fitted.
                Long-Sleeve.
                Machine wash/line dry.

                ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"eos-v-neck-hoodie-s-green-1188","links":{},"stock":{"item_id":1188,"product_id":1188,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-s-green-1188.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1193","_score":1,"_source":{"id":1193,"sku":"WH11-L-Blue","name":"Eos V-Neck Hoodie-L-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                \n

                Semi-fitted.
                Long-Sleeve.
                Machine wash/line dry.

                ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"eos-v-neck-hoodie-l-blue-1193","links":{},"stock":{"item_id":1193,"product_id":1193,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-l-blue-1193.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1200","_score":1,"_source":{"id":1200,"sku":"WH12-XS-Gray","name":"Circe Hooded Ice Fleece-XS-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                \n

                Full-zip front.
                Three-panel hood.
                Flatlock seams throughout.
                Welt hand pockets.
                Machine wash/dry.

                ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"circe-hooded-ice-fleece-xs-gray-1200","links":{},"stock":{"item_id":1200,"product_id":1200,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xs-gray-1200.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1191","_score":1,"_source":{"id":1191,"sku":"WH11-M-Green","name":"Eos V-Neck Hoodie-M-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                \n

                Semi-fitted.
                Long-Sleeve.
                Machine wash/line dry.

                ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"eos-v-neck-hoodie-m-green-1191","links":{},"stock":{"item_id":1191,"product_id":1191,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-m-green-1191.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1167","_score":1,"_source":{"id":1167,"sku":"WH09","name":"Ariel Roll Sleeve Sweatshirt","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:12","updated_at":"2019-04-11 09:24:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                \r\n

                • Purple two-tone lightweight hoodie.
                • 100% cotton.
                • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                • Casual, comfy piece for running errands or weekend activities.

                ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","category_ids":[24,36,2],"options_container":"container2","required_options":"1","has_options":"1","url_key":"ariel-roll-sleeve-sweatshirt","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":"33","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[138,137],"pattern":"195","climate":[205,206,208,209],"slug":"ariel-roll-sleeve-sweatshirt-1167","links":{},"stock":{"item_id":1167,"product_id":1167,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":null,"vid":null},{"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":null,"vid":null}],"configurable_children":[{"sku":"WH09-XS-Green","id":1152,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-XS-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"167","color":"53","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-xs-green","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-XS-Purple","id":1153,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-XS-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"167","color":"57","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-xs-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-XS-Red","id":1154,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-XS-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"167","color":"58","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-xs-red","msrp_display_actual_price_type":"0"},{"sku":"WH09-S-Green","id":1155,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-S-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"168","color":"53","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-s-green","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-S-Purple","id":1156,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-S-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"168","color":"57","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-s-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-S-Red","id":1157,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-S-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"168","color":"58","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-s-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-M-Green","id":1158,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-M-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"169","color":"53","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-m-green","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-M-Purple","id":1159,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-M-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"169","color":"57","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-m-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-M-Red","id":1160,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-M-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"169","color":"58","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-m-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-L-Green","id":1161,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-L-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"170","color":"53","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-l-green","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-L-Purple","id":1162,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-L-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"170","color":"57","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-l-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-L-Red","id":1163,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-L-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"170","color":"58","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-l-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-XL-Green","id":1164,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-XL-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"171","color":"53","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-xl-green","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-XL-Purple","id":1165,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-XL-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"171","color":"57","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-xl-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-XL-Red","id":1166,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-XL-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"171","color":"58","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-xl-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39}],"configurable_options":[{"id":304,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1167,"attribute_code":"color"},{"id":305,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1167,"attribute_code":"size"}],"color_options":[53,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-1167.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1151","_score":1,"_source":{"id":1151,"sku":"WH08","name":"Cassia Funnel Sweatshirt","attribute_set_id":9,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                \n

                • White full zip hoodie with gray detail.
                • 65% Cotton/28% Nylon/7% Spandex.
                • Front slash pockets.
                • Tagless label at back neck.

                ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cassia-funnel-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,33,151],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[138,129],"pattern":"197","climate":[202,204,205,206,208],"slug":"cassia-funnel-sweatshirt-1151","links":{},"stock":{"item_id":1151,"product_id":1151,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH08-XS-Orange","id":1136,"status":1,"name":"Cassia Funnel Sweatshirt-XS-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"167","color":"56","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","url_key":"cassia-funnel-sweatshirt-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WH08-XS-Purple","id":1137,"status":1,"name":"Cassia Funnel Sweatshirt-XS-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"167","color":"57","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","url_key":"cassia-funnel-sweatshirt-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WH08-XS-White","id":1138,"status":1,"name":"Cassia Funnel Sweatshirt-XS-White","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"167","color":"59","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","url_key":"cassia-funnel-sweatshirt-xs-white","msrp_display_actual_price_type":"0"},{"sku":"WH08-S-Orange","id":1139,"status":1,"name":"Cassia Funnel Sweatshirt-S-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"168","color":"56","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","url_key":"cassia-funnel-sweatshirt-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WH08-S-Purple","id":1140,"status":1,"name":"Cassia Funnel Sweatshirt-S-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"168","color":"57","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","url_key":"cassia-funnel-sweatshirt-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WH08-S-White","id":1141,"status":1,"name":"Cassia Funnel Sweatshirt-S-White","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"168","color":"59","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","url_key":"cassia-funnel-sweatshirt-s-white","msrp_display_actual_price_type":"0"},{"sku":"WH08-M-Orange","id":1142,"status":1,"name":"Cassia Funnel Sweatshirt-M-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"169","color":"56","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","url_key":"cassia-funnel-sweatshirt-m-orange","msrp_display_actual_price_type":"0"},{"sku":"WH08-M-Purple","id":1143,"status":1,"name":"Cassia Funnel Sweatshirt-M-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"169","color":"57","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","url_key":"cassia-funnel-sweatshirt-m-purple","msrp_display_actual_price_type":"0"},{"sku":"WH08-M-White","id":1144,"status":1,"name":"Cassia Funnel Sweatshirt-M-White","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"169","color":"59","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","url_key":"cassia-funnel-sweatshirt-m-white","msrp_display_actual_price_type":"0"},{"sku":"WH08-L-Orange","id":1145,"status":1,"name":"Cassia Funnel Sweatshirt-L-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"170","color":"56","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","url_key":"cassia-funnel-sweatshirt-l-orange","msrp_display_actual_price_type":"0"},{"sku":"WH08-L-Purple","id":1146,"status":1,"name":"Cassia Funnel Sweatshirt-L-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"170","color":"57","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","url_key":"cassia-funnel-sweatshirt-l-purple","msrp_display_actual_price_type":"0"},{"sku":"WH08-L-White","id":1147,"status":1,"name":"Cassia Funnel Sweatshirt-L-White","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"170","color":"59","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","url_key":"cassia-funnel-sweatshirt-l-white","msrp_display_actual_price_type":"0"},{"sku":"WH08-XL-Orange","id":1148,"status":1,"name":"Cassia Funnel Sweatshirt-XL-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"171","color":"56","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","url_key":"cassia-funnel-sweatshirt-xl-orange","msrp_display_actual_price_type":"0"},{"sku":"WH08-XL-Purple","id":1149,"status":1,"name":"Cassia Funnel Sweatshirt-XL-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"171","color":"57","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","url_key":"cassia-funnel-sweatshirt-xl-purple","msrp_display_actual_price_type":"0"},{"sku":"WH08-XL-White","id":1150,"status":1,"name":"Cassia Funnel Sweatshirt-XL-White","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"171","color":"59","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","url_key":"cassia-funnel-sweatshirt-xl-white","msrp_display_actual_price_type":"0"}],"configurable_options":[{"id":161,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"}],"product_id":1151,"attribute_code":"color"},{"id":160,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1151,"attribute_code":"size"}],"color_options":[56,57,59],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-1151.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1183","_score":1,"_source":{"id":1183,"sku":"WH10","name":"Helena Hooded Fleece","attribute_set_id":9,"price":55,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                \n

                Full zip.
                Banded cuffs and waist.
                Front pockets.
                Machine wash/dry.

                ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"helena-hooded-fleece","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":[138,129],"pattern":"197","climate":[204,208],"slug":"helena-hooded-fleece-1183","links":{},"stock":{"item_id":1183,"product_id":1183,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH10-XS-Blue","id":1168,"status":1,"name":"Helena Hooded Fleece-XS-Blue","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"167","color":"50","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","url_key":"helena-hooded-fleece-xs-blue","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-XS-Gray","id":1169,"status":1,"name":"Helena Hooded Fleece-XS-Gray","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"167","color":"52","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","url_key":"helena-hooded-fleece-xs-gray","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-XS-Yellow","id":1170,"status":1,"name":"Helena Hooded Fleece-XS-Yellow","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"167","color":"60","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","url_key":"helena-hooded-fleece-xs-yellow","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-S-Blue","id":1171,"status":1,"name":"Helena Hooded Fleece-S-Blue","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"168","color":"50","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","url_key":"helena-hooded-fleece-s-blue","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-S-Gray","id":1172,"status":1,"name":"Helena Hooded Fleece-S-Gray","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"168","color":"52","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","url_key":"helena-hooded-fleece-s-gray","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-S-Yellow","id":1173,"status":1,"name":"Helena Hooded Fleece-S-Yellow","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"168","color":"60","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","url_key":"helena-hooded-fleece-s-yellow","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-M-Blue","id":1174,"status":1,"name":"Helena Hooded Fleece-M-Blue","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"169","color":"50","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","url_key":"helena-hooded-fleece-m-blue","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-M-Gray","id":1175,"status":1,"name":"Helena Hooded Fleece-M-Gray","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"169","color":"52","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","url_key":"helena-hooded-fleece-m-gray","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-M-Yellow","id":1176,"status":1,"name":"Helena Hooded Fleece-M-Yellow","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"169","color":"60","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","url_key":"helena-hooded-fleece-m-yellow","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-L-Blue","id":1177,"status":1,"name":"Helena Hooded Fleece-L-Blue","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"170","color":"50","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","url_key":"helena-hooded-fleece-l-blue","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-L-Gray","id":1178,"status":1,"name":"Helena Hooded Fleece-L-Gray","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"170","color":"52","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","url_key":"helena-hooded-fleece-l-gray","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-L-Yellow","id":1179,"status":1,"name":"Helena Hooded Fleece-L-Yellow","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"170","color":"60","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","url_key":"helena-hooded-fleece-l-yellow","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-XL-Blue","id":1180,"status":1,"name":"Helena Hooded Fleece-XL-Blue","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"171","color":"50","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","url_key":"helena-hooded-fleece-xl-blue","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-XL-Gray","id":1181,"status":1,"name":"Helena Hooded Fleece-XL-Gray","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"171","color":"52","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","url_key":"helena-hooded-fleece-xl-gray","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-XL-Yellow","id":1182,"status":1,"name":"Helena Hooded Fleece-XL-Yellow","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"171","color":"60","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","url_key":"helena-hooded-fleece-xl-yellow","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55}],"configurable_options":[{"id":165,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":60,"label":"Yellow"}],"product_id":1183,"attribute_code":"color"},{"id":164,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1183,"attribute_code":"size"}],"color_options":[50,52,60],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-1183.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1199","_score":1,"_source":{"id":1199,"sku":"WH11","name":"Eos V-Neck Hoodie","attribute_set_id":9,"price":54,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                \n

                Semi-fitted.
                Long-Sleeve.
                Machine wash/line dry.

                ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"eos-v-neck-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[137,133],"pattern":"197","climate":[204,205,206],"slug":"eos-v-neck-hoodie-1199","links":{},"stock":{"item_id":1199,"product_id":1199,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH11-XS-Blue","id":1184,"status":1,"name":"Eos V-Neck Hoodie-XS-Blue","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"167","color":"50","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","url_key":"eos-v-neck-hoodie-xs-blue","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-XS-Green","id":1185,"status":1,"name":"Eos V-Neck Hoodie-XS-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"167","color":"53","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","url_key":"eos-v-neck-hoodie-xs-green","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-XS-Orange","id":1186,"status":1,"name":"Eos V-Neck Hoodie-XS-Orange","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"167","color":"56","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","url_key":"eos-v-neck-hoodie-xs-orange","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-S-Blue","id":1187,"status":1,"name":"Eos V-Neck Hoodie-S-Blue","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"168","color":"50","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","url_key":"eos-v-neck-hoodie-s-blue","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-S-Green","id":1188,"status":1,"name":"Eos V-Neck Hoodie-S-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"168","color":"53","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","url_key":"eos-v-neck-hoodie-s-green","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-S-Orange","id":1189,"status":1,"name":"Eos V-Neck Hoodie-S-Orange","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"168","color":"56","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","url_key":"eos-v-neck-hoodie-s-orange","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-M-Blue","id":1190,"status":1,"name":"Eos V-Neck Hoodie-M-Blue","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"169","color":"50","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","url_key":"eos-v-neck-hoodie-m-blue","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-M-Green","id":1191,"status":1,"name":"Eos V-Neck Hoodie-M-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"169","color":"53","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","url_key":"eos-v-neck-hoodie-m-green","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-M-Orange","id":1192,"status":1,"name":"Eos V-Neck Hoodie-M-Orange","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"169","color":"56","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","url_key":"eos-v-neck-hoodie-m-orange","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-L-Blue","id":1193,"status":1,"name":"Eos V-Neck Hoodie-L-Blue","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"170","color":"50","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","url_key":"eos-v-neck-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-L-Green","id":1194,"status":1,"name":"Eos V-Neck Hoodie-L-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"170","color":"53","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","url_key":"eos-v-neck-hoodie-l-green","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-L-Orange","id":1195,"status":1,"name":"Eos V-Neck Hoodie-L-Orange","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"170","color":"56","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","url_key":"eos-v-neck-hoodie-l-orange","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-XL-Blue","id":1196,"status":1,"name":"Eos V-Neck Hoodie-XL-Blue","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"171","color":"50","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","url_key":"eos-v-neck-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-XL-Green","id":1197,"status":1,"name":"Eos V-Neck Hoodie-XL-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"171","color":"53","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","url_key":"eos-v-neck-hoodie-xl-green","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-XL-Orange","id":1198,"status":1,"name":"Eos V-Neck Hoodie-XL-Orange","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"171","color":"56","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","url_key":"eos-v-neck-hoodie-xl-orange","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54}],"configurable_options":[{"id":167,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":1199,"attribute_code":"color"},{"id":166,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1199,"attribute_code":"size"}],"color_options":[50,53,56],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-1199.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1244","_score":1,"_source":{"id":1244,"sku":"WJ03-XS-Red","name":"Augusta Pullover Jacket-XS-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                \n

                • Pink half-zip pullover.
                • Front pouch pockets.
                • Fold-down collar.

                ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"augusta-pullover-jacket-xs-red-1244","links":{},"stock":{"item_id":1244,"product_id":1244,"stock_id":1,"qty":49,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xs-red-1244.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1248","_score":1,"_source":{"id":1248,"sku":"WJ03-M-Blue","name":"Augusta Pullover Jacket-M-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                \n

                • Pink half-zip pullover.
                • Front pouch pockets.
                • Fold-down collar.

                ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"augusta-pullover-jacket-m-blue-1248","links":{},"stock":{"item_id":1248,"product_id":1248,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-m-blue-1248.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1246","_score":1,"_source":{"id":1246,"sku":"WJ03-S-Orange","name":"Augusta Pullover Jacket-S-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                \n

                • Pink half-zip pullover.
                • Front pouch pockets.
                • Fold-down collar.

                ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"augusta-pullover-jacket-s-orange-1246","links":{},"stock":{"item_id":1246,"product_id":1246,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-s-orange-1246.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1250","_score":1,"_source":{"id":1250,"sku":"WJ03-M-Red","name":"Augusta Pullover Jacket-M-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                \n

                • Pink half-zip pullover.
                • Front pouch pockets.
                • Fold-down collar.

                ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"augusta-pullover-jacket-m-red-1250","links":{},"stock":{"item_id":1250,"product_id":1250,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-m-red-1250.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1225","_score":1,"_source":{"id":1225,"sku":"WJ01","name":"Stellar Solar Jacket","attribute_set_id":9,"price":75,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.
                • Deep pink jacket with front panel rouching

                ","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"stellar-solar-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,159,145],"eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":[118,121,125,129],"pattern":"197","climate":[202,206,208,210],"slug":"stellar-solar-jacket-1225","links":{},"stock":{"item_id":1225,"product_id":1225,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ01-S-Blue","id":1216,"status":1,"name":"Stellar Solar Jacket-S-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"168","color":"50","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","url_key":"stellar-solar-jacket-s-blue","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WJ01-S-Red","id":1217,"status":1,"name":"Stellar Solar Jacket-S-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"168","color":"58","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","url_key":"stellar-solar-jacket-s-red","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WJ01-S-Yellow","id":1218,"status":1,"name":"Stellar Solar Jacket-S-Yellow","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"168","color":"60","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","url_key":"stellar-solar-jacket-s-yellow","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WJ01-M-Blue","id":1219,"status":1,"name":"Stellar Solar Jacket-M-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"169","color":"50","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","url_key":"stellar-solar-jacket-m-blue","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WJ01-M-Red","id":1220,"status":1,"name":"Stellar Solar Jacket-M-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"169","color":"58","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","url_key":"stellar-solar-jacket-m-red","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WJ01-M-Yellow","id":1221,"status":1,"name":"Stellar Solar Jacket-M-Yellow","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"169","color":"60","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","url_key":"stellar-solar-jacket-m-yellow","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WJ01-L-Blue","id":1222,"status":1,"name":"Stellar Solar Jacket-L-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"170","color":"50","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","url_key":"stellar-solar-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WJ01-L-Red","id":1223,"status":1,"name":"Stellar Solar Jacket-L-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"170","color":"58","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","url_key":"stellar-solar-jacket-l-red","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WJ01-L-Yellow","id":1224,"status":1,"name":"Stellar Solar Jacket-L-Yellow","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"170","color":"60","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","url_key":"stellar-solar-jacket-l-yellow","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75}],"configurable_options":[{"id":171,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":1225,"attribute_code":"color"},{"id":170,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"}],"product_id":1225,"attribute_code":"size"}],"color_options":[50,58,60],"size_options":[168,169,170],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-1225.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1215","_score":1,"_source":{"id":1215,"sku":"WH12","name":"Circe Hooded Ice Fleece","attribute_set_id":9,"price":68,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                \n

                Full-zip front.
                Three-panel hood.
                Flatlock seams throughout.
                Welt hand pockets.
                Machine wash/dry.

                ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"circe-hooded-ice-fleece","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,156],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":[138,133,129],"pattern":"197","climate":[203,204,211],"slug":"circe-hooded-ice-fleece-1215","links":{},"stock":{"item_id":1215,"product_id":1215,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH12-XS-Gray","id":1200,"status":1,"name":"Circe Hooded Ice Fleece-XS-Gray","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"167","color":"52","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","url_key":"circe-hooded-ice-fleece-xs-gray","msrp_display_actual_price_type":"0"},{"sku":"WH12-XS-Green","id":1201,"status":1,"name":"Circe Hooded Ice Fleece-XS-Green","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"167","color":"53","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","url_key":"circe-hooded-ice-fleece-xs-green","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-XS-Purple","id":1202,"status":1,"name":"Circe Hooded Ice Fleece-XS-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"167","color":"57","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","url_key":"circe-hooded-ice-fleece-xs-purple","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-S-Gray","id":1203,"status":1,"name":"Circe Hooded Ice Fleece-S-Gray","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"168","color":"52","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","url_key":"circe-hooded-ice-fleece-s-gray","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-S-Green","id":1204,"status":1,"name":"Circe Hooded Ice Fleece-S-Green","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"168","color":"53","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","url_key":"circe-hooded-ice-fleece-s-green","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-S-Purple","id":1205,"status":1,"name":"Circe Hooded Ice Fleece-S-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"168","color":"57","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","url_key":"circe-hooded-ice-fleece-s-purple","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-M-Gray","id":1206,"status":1,"name":"Circe Hooded Ice Fleece-M-Gray","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"169","color":"52","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","url_key":"circe-hooded-ice-fleece-m-gray","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-M-Green","id":1207,"status":1,"name":"Circe Hooded Ice Fleece-M-Green","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"169","color":"53","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","url_key":"circe-hooded-ice-fleece-m-green","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-M-Purple","id":1208,"status":1,"name":"Circe Hooded Ice Fleece-M-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"169","color":"57","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","url_key":"circe-hooded-ice-fleece-m-purple","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-L-Gray","id":1209,"status":1,"name":"Circe Hooded Ice Fleece-L-Gray","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"170","color":"52","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","url_key":"circe-hooded-ice-fleece-l-gray","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-L-Green","id":1210,"status":1,"name":"Circe Hooded Ice Fleece-L-Green","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"170","color":"53","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","url_key":"circe-hooded-ice-fleece-l-green","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-L-Purple","id":1211,"status":1,"name":"Circe Hooded Ice Fleece-L-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"170","color":"57","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","url_key":"circe-hooded-ice-fleece-l-purple","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-XL-Gray","id":1212,"status":1,"name":"Circe Hooded Ice Fleece-XL-Gray","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"171","color":"52","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","url_key":"circe-hooded-ice-fleece-xl-gray","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-XL-Green","id":1213,"status":1,"name":"Circe Hooded Ice Fleece-XL-Green","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"171","color":"53","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","url_key":"circe-hooded-ice-fleece-xl-green","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-XL-Purple","id":1214,"status":1,"name":"Circe Hooded Ice Fleece-XL-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"171","color":"57","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","url_key":"circe-hooded-ice-fleece-xl-purple","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68}],"configurable_options":[{"id":169,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"}],"product_id":1215,"attribute_code":"color"},{"id":168,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1215,"attribute_code":"size"}],"color_options":[52,53,57],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-1215.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1159","_score":1,"_source":{"id":1159,"sku":"WH09-M-Purple","name":"Ariel Roll Sleeve Sweatshirt-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                \n

                • Purple two-tone lightweight hoodie.
                • 100% cotton.
                • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                • Casual, comfy piece for running errands or weekend activities.

                ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ariel-roll-sleeve-sweatshirt-m-purple-1159","links":{},"stock":{"item_id":1159,"product_id":1159,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-m-purple-1159.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1161","_score":1,"_source":{"id":1161,"sku":"WH09-L-Green","name":"Ariel Roll Sleeve Sweatshirt-L-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                \n

                • Purple two-tone lightweight hoodie.
                • 100% cotton.
                • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                • Casual, comfy piece for running errands or weekend activities.

                ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ariel-roll-sleeve-sweatshirt-l-green-1161","links":{},"stock":{"item_id":1161,"product_id":1161,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-l-green-1161.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1157","_score":1,"_source":{"id":1157,"sku":"WH09-S-Red","name":"Ariel Roll Sleeve Sweatshirt-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                \n

                • Purple two-tone lightweight hoodie.
                • 100% cotton.
                • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                • Casual, comfy piece for running errands or weekend activities.

                ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ariel-roll-sleeve-sweatshirt-s-red-1157","links":{},"stock":{"item_id":1157,"product_id":1157,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-s-red-1157.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1152","_score":1,"_source":{"id":1152,"sku":"WH09-XS-Green","name":"Ariel Roll Sleeve Sweatshirt-XS-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                \n

                • Purple two-tone lightweight hoodie.
                • 100% cotton.
                • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                • Casual, comfy piece for running errands or weekend activities.

                ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ariel-roll-sleeve-sweatshirt-xs-green-1152","links":{},"stock":{"item_id":1152,"product_id":1152,"stock_id":1,"qty":4,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xs-green-1152.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1154","_score":1,"_source":{"id":1154,"sku":"WH09-XS-Red","name":"Ariel Roll Sleeve Sweatshirt-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2019-04-11 10:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                \r\n

                • Purple two-tone lightweight hoodie.
                • 100% cotton.
                • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                • Casual, comfy piece for running errands or weekend activities.

                ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xs-red","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"167","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","slug":"ariel-roll-sleeve-sweatshirt-xs-red-1154","links":{},"stock":{"item_id":1154,"product_id":1154,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-04-11 10:16:50","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xs-red-1154.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1160","_score":1,"_source":{"id":1160,"sku":"WH09-M-Red","name":"Ariel Roll Sleeve Sweatshirt-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                \n

                • Purple two-tone lightweight hoodie.
                • 100% cotton.
                • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                • Casual, comfy piece for running errands or weekend activities.

                ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ariel-roll-sleeve-sweatshirt-m-red-1160","links":{},"stock":{"item_id":1160,"product_id":1160,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-m-red-1160.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1165","_score":1,"_source":{"id":1165,"sku":"WH09-XL-Purple","name":"Ariel Roll Sleeve Sweatshirt-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                \n

                • Purple two-tone lightweight hoodie.
                • 100% cotton.
                • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                • Casual, comfy piece for running errands or weekend activities.

                ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ariel-roll-sleeve-sweatshirt-xl-purple-1165","links":{},"stock":{"item_id":1165,"product_id":1165,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xl-purple-1165.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1164","_score":1,"_source":{"id":1164,"sku":"WH09-XL-Green","name":"Ariel Roll Sleeve Sweatshirt-XL-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                \n

                • Purple two-tone lightweight hoodie.
                • 100% cotton.
                • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                • Casual, comfy piece for running errands or weekend activities.

                ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ariel-roll-sleeve-sweatshirt-xl-green-1164","links":{},"stock":{"item_id":1164,"product_id":1164,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xl-green-1164.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1163","_score":1,"_source":{"id":1163,"sku":"WH09-L-Red","name":"Ariel Roll Sleeve Sweatshirt-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                \n

                • Purple two-tone lightweight hoodie.
                • 100% cotton.
                • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                • Casual, comfy piece for running errands or weekend activities.

                ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ariel-roll-sleeve-sweatshirt-l-red-1163","links":{},"stock":{"item_id":1163,"product_id":1163,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-l-red-1163.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1155","_score":1,"_source":{"id":1155,"sku":"WH09-S-Green","name":"Ariel Roll Sleeve Sweatshirt-S-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                \n

                • Purple two-tone lightweight hoodie.
                • 100% cotton.
                • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                • Casual, comfy piece for running errands or weekend activities.

                ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ariel-roll-sleeve-sweatshirt-s-green-1155","links":{},"stock":{"item_id":1155,"product_id":1155,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-s-green-1155.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1178","_score":1,"_source":{"id":1178,"sku":"WH10-L-Gray","name":"Helena Hooded Fleece-L-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                \n

                Full zip.
                Banded cuffs and waist.
                Front pockets.
                Machine wash/dry.

                ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helena-hooded-fleece-l-gray-1178","links":{},"stock":{"item_id":1178,"product_id":1178,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-l-gray-1178.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1156","_score":1,"_source":{"id":1156,"sku":"WH09-S-Purple","name":"Ariel Roll Sleeve Sweatshirt-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                \n

                • Purple two-tone lightweight hoodie.
                • 100% cotton.
                • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                • Casual, comfy piece for running errands or weekend activities.

                ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ariel-roll-sleeve-sweatshirt-s-purple-1156","links":{},"stock":{"item_id":1156,"product_id":1156,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-s-purple-1156.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1158","_score":1,"_source":{"id":1158,"sku":"WH09-M-Green","name":"Ariel Roll Sleeve Sweatshirt-M-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                \n

                • Purple two-tone lightweight hoodie.
                • 100% cotton.
                • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                • Casual, comfy piece for running errands or weekend activities.

                ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ariel-roll-sleeve-sweatshirt-m-green-1158","links":{},"stock":{"item_id":1158,"product_id":1158,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-m-green-1158.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1169","_score":1,"_source":{"id":1169,"sku":"WH10-XS-Gray","name":"Helena Hooded Fleece-XS-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                \n

                Full zip.
                Banded cuffs and waist.
                Front pockets.
                Machine wash/dry.

                ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helena-hooded-fleece-xs-gray-1169","links":{},"stock":{"item_id":1169,"product_id":1169,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xs-gray-1169.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1168","_score":1,"_source":{"id":1168,"sku":"WH10-XS-Blue","name":"Helena Hooded Fleece-XS-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                \n

                Full zip.
                Banded cuffs and waist.
                Front pockets.
                Machine wash/dry.

                ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helena-hooded-fleece-xs-blue-1168","links":{},"stock":{"item_id":1168,"product_id":1168,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xs-blue-1168.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1174","_score":1,"_source":{"id":1174,"sku":"WH10-M-Blue","name":"Helena Hooded Fleece-M-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                \n

                Full zip.
                Banded cuffs and waist.
                Front pockets.
                Machine wash/dry.

                ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helena-hooded-fleece-m-blue-1174","links":{},"stock":{"item_id":1174,"product_id":1174,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-m-blue-1174.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1162","_score":1,"_source":{"id":1162,"sku":"WH09-L-Purple","name":"Ariel Roll Sleeve Sweatshirt-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                \n

                • Purple two-tone lightweight hoodie.
                • 100% cotton.
                • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                • Casual, comfy piece for running errands or weekend activities.

                ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ariel-roll-sleeve-sweatshirt-l-purple-1162","links":{},"stock":{"item_id":1162,"product_id":1162,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-l-purple-1162.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1184","_score":1,"_source":{"id":1184,"sku":"WH11-XS-Blue","name":"Eos V-Neck Hoodie-XS-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                \n

                Semi-fitted.
                Long-Sleeve.
                Machine wash/line dry.

                ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"eos-v-neck-hoodie-xs-blue-1184","links":{},"stock":{"item_id":1184,"product_id":1184,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xs-blue-1184.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1166","_score":1,"_source":{"id":1166,"sku":"WH09-XL-Red","name":"Ariel Roll Sleeve Sweatshirt-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                \n

                • Purple two-tone lightweight hoodie.
                • 100% cotton.
                • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                • Casual, comfy piece for running errands or weekend activities.

                ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ariel-roll-sleeve-sweatshirt-xl-red-1166","links":{},"stock":{"item_id":1166,"product_id":1166,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xl-red-1166.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1170","_score":1,"_source":{"id":1170,"sku":"WH10-XS-Yellow","name":"Helena Hooded Fleece-XS-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                \n

                Full zip.
                Banded cuffs and waist.
                Front pockets.
                Machine wash/dry.

                ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helena-hooded-fleece-xs-yellow-1170","links":{},"stock":{"item_id":1170,"product_id":1170,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xs-yellow-1170.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1187","_score":1,"_source":{"id":1187,"sku":"WH11-S-Blue","name":"Eos V-Neck Hoodie-S-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                \n

                Semi-fitted.
                Long-Sleeve.
                Machine wash/line dry.

                ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"eos-v-neck-hoodie-s-blue-1187","links":{},"stock":{"item_id":1187,"product_id":1187,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-s-blue-1187.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1179","_score":1,"_source":{"id":1179,"sku":"WH10-L-Yellow","name":"Helena Hooded Fleece-L-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                \n

                Full zip.
                Banded cuffs and waist.
                Front pockets.
                Machine wash/dry.

                ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helena-hooded-fleece-l-yellow-1179","links":{},"stock":{"item_id":1179,"product_id":1179,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-l-yellow-1179.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1192","_score":1,"_source":{"id":1192,"sku":"WH11-M-Orange","name":"Eos V-Neck Hoodie-M-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                \n

                Semi-fitted.
                Long-Sleeve.
                Machine wash/line dry.

                ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"eos-v-neck-hoodie-m-orange-1192","links":{},"stock":{"item_id":1192,"product_id":1192,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-m-orange-1192.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1119","_score":1,"_source":{"id":1119,"sku":"WH06","name":"Daphne Full-Zip Hoodie","attribute_set_id":9,"price":59,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

                \n

                • Purple full zip hoodie with pink accents.
                • Heather texture.
                • 4-way stretch.
                • Pre-shrunk.
                • Hood lined in vegan Sherpa for added warmth.
                • Ribbed hem on hood and front pouch pocket.
                • 60% Cotton / 40% Polyester.

                ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"daphne-full-zip-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[138,129],"pattern":"197","climate":[202,203,204,208,210,211],"slug":"daphne-full-zip-hoodie-1119","links":{},"stock":{"item_id":1119,"product_id":1119,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH06-XS-Purple","id":1114,"status":1,"name":"Daphne Full-Zip Hoodie-XS-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"57","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","url_key":"daphne-full-zip-hoodie-xs-purple","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH06-S-Purple","id":1115,"status":1,"name":"Daphne Full-Zip Hoodie-S-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"57","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","url_key":"daphne-full-zip-hoodie-s-purple","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH06-M-Purple","id":1116,"status":1,"name":"Daphne Full-Zip Hoodie-M-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"57","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","url_key":"daphne-full-zip-hoodie-m-purple","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH06-L-Purple","id":1117,"status":1,"name":"Daphne Full-Zip Hoodie-L-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"57","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","url_key":"daphne-full-zip-hoodie-l-purple","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH06-XL-Purple","id":1118,"status":1,"name":"Daphne Full-Zip Hoodie-XL-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"57","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","url_key":"daphne-full-zip-hoodie-xl-purple","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59}],"configurable_options":[{"id":157,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":57,"label":"Purple"}],"product_id":1119,"attribute_code":"color"},{"id":156,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1119,"attribute_code":"size"}],"color_options":[57],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-1119.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1113","_score":1,"_source":{"id":1113,"sku":"WH05","name":"Selene Yoga Hoodie","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                \n

                • Ivory heather full zip 3/4 sleeve hoodie.
                • Zip pocket at arm for convenient storage.
                • 24.0\" body length.
                • 89% Polyester / 11% Spandex.

                ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"selene-yoga-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[138,129],"pattern":"197","climate":[205,206,208],"slug":"selene-yoga-hoodie-1113","links":{},"stock":{"item_id":1113,"product_id":1113,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH05-XS-Orange","id":1098,"status":1,"name":"Selene Yoga Hoodie-XS-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"56","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","url_key":"selene-yoga-hoodie-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WH05-XS-Purple","id":1099,"status":1,"name":"Selene Yoga Hoodie-XS-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"57","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","url_key":"selene-yoga-hoodie-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WH05-XS-White","id":1100,"status":1,"name":"Selene Yoga Hoodie-XS-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"59","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","url_key":"selene-yoga-hoodie-xs-white","msrp_display_actual_price_type":"0"},{"sku":"WH05-S-Orange","id":1101,"status":1,"name":"Selene Yoga Hoodie-S-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"56","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","url_key":"selene-yoga-hoodie-s-orange","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WH05-S-Purple","id":1102,"status":1,"name":"Selene Yoga Hoodie-S-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"57","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","url_key":"selene-yoga-hoodie-s-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WH05-S-White","id":1103,"status":1,"name":"Selene Yoga Hoodie-S-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"59","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","url_key":"selene-yoga-hoodie-s-white","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WH05-M-Orange","id":1104,"status":1,"name":"Selene Yoga Hoodie-M-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"56","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","url_key":"selene-yoga-hoodie-m-orange","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WH05-M-Purple","id":1105,"status":1,"name":"Selene Yoga Hoodie-M-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"57","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","url_key":"selene-yoga-hoodie-m-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WH05-M-White","id":1106,"status":1,"name":"Selene Yoga Hoodie-M-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"59","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","url_key":"selene-yoga-hoodie-m-white","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WH05-L-Orange","id":1107,"status":1,"name":"Selene Yoga Hoodie-L-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"56","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","url_key":"selene-yoga-hoodie-l-orange","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WH05-L-Purple","id":1108,"status":1,"name":"Selene Yoga Hoodie-L-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"57","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","url_key":"selene-yoga-hoodie-l-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WH05-L-White","id":1109,"status":1,"name":"Selene Yoga Hoodie-L-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"59","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","url_key":"selene-yoga-hoodie-l-white","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WH05-XL-Orange","id":1110,"status":1,"name":"Selene Yoga Hoodie-XL-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"56","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","url_key":"selene-yoga-hoodie-xl-orange","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WH05-XL-Purple","id":1111,"status":1,"name":"Selene Yoga Hoodie-XL-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"57","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","url_key":"selene-yoga-hoodie-xl-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WH05-XL-White","id":1112,"status":1,"name":"Selene Yoga Hoodie-XL-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"59","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","url_key":"selene-yoga-hoodie-xl-white","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42}],"configurable_options":[{"id":155,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"}],"product_id":1113,"attribute_code":"color"},{"id":154,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1113,"attribute_code":"size"}],"color_options":[56,57,59],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-1113.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1135","_score":1,"_source":{"id":1135,"sku":"WH07","name":"Phoebe Zipper Sweatshirt","attribute_set_id":9,"price":59,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                \n

                • Gray full zip hoodie with yellow detail.
                • Hand-warmer pockets.
                • Zip MP3 pocket with outlet for earphones wire.
                • Polyester/cotton.
                • Washable.

                ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"phoebe-zipper-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":[138,133,129],"pattern":"197","climate":[204,205,206],"slug":"phoebe-zipper-sweatshirt-1135","links":{},"stock":{"item_id":1135,"product_id":1135,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH07-XS-Gray","id":1120,"status":1,"name":"Phoebe Zipper Sweatshirt-XS-Gray","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"167","color":"52","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","url_key":"phoebe-zipper-sweatshirt-xs-gray","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-XS-Purple","id":1121,"status":1,"name":"Phoebe Zipper Sweatshirt-XS-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"167","color":"57","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","url_key":"phoebe-zipper-sweatshirt-xs-purple","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-XS-White","id":1122,"status":1,"name":"Phoebe Zipper Sweatshirt-XS-White","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"167","color":"59","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","url_key":"phoebe-zipper-sweatshirt-xs-white","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-S-Gray","id":1123,"status":1,"name":"Phoebe Zipper Sweatshirt-S-Gray","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"168","color":"52","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","url_key":"phoebe-zipper-sweatshirt-s-gray","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-S-Purple","id":1124,"status":1,"name":"Phoebe Zipper Sweatshirt-S-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"168","color":"57","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","url_key":"phoebe-zipper-sweatshirt-s-purple","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-S-White","id":1125,"status":1,"name":"Phoebe Zipper Sweatshirt-S-White","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"168","color":"59","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","url_key":"phoebe-zipper-sweatshirt-s-white","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-M-Gray","id":1126,"status":1,"name":"Phoebe Zipper Sweatshirt-M-Gray","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"169","color":"52","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","url_key":"phoebe-zipper-sweatshirt-m-gray","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-M-Purple","id":1127,"status":1,"name":"Phoebe Zipper Sweatshirt-M-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"169","color":"57","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","url_key":"phoebe-zipper-sweatshirt-m-purple","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-M-White","id":1128,"status":1,"name":"Phoebe Zipper Sweatshirt-M-White","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"169","color":"59","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","url_key":"phoebe-zipper-sweatshirt-m-white","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-L-Gray","id":1129,"status":1,"name":"Phoebe Zipper Sweatshirt-L-Gray","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"170","color":"52","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","url_key":"phoebe-zipper-sweatshirt-l-gray","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-L-Purple","id":1130,"status":1,"name":"Phoebe Zipper Sweatshirt-L-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"170","color":"57","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","url_key":"phoebe-zipper-sweatshirt-l-purple","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-L-White","id":1131,"status":1,"name":"Phoebe Zipper Sweatshirt-L-White","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"170","color":"59","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","url_key":"phoebe-zipper-sweatshirt-l-white","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-XL-Gray","id":1132,"status":1,"name":"Phoebe Zipper Sweatshirt-XL-Gray","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"171","color":"52","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","url_key":"phoebe-zipper-sweatshirt-xl-gray","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-XL-Purple","id":1133,"status":1,"name":"Phoebe Zipper Sweatshirt-XL-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"171","color":"57","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","url_key":"phoebe-zipper-sweatshirt-xl-purple","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-XL-White","id":1134,"status":1,"name":"Phoebe Zipper Sweatshirt-XL-White","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"171","color":"59","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","url_key":"phoebe-zipper-sweatshirt-xl-white","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59}],"configurable_options":[{"id":159,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"}],"product_id":1135,"attribute_code":"color"},{"id":158,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1135,"attribute_code":"size"}],"color_options":[52,57,59],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-1135.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1213","_score":1,"_source":{"id":1213,"sku":"WH12-XL-Green","name":"Circe Hooded Ice Fleece-XL-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                \n

                Full-zip front.
                Three-panel hood.
                Flatlock seams throughout.
                Welt hand pockets.
                Machine wash/dry.

                ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"circe-hooded-ice-fleece-xl-green-1213","links":{},"stock":{"item_id":1213,"product_id":1213,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xl-green-1213.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1211","_score":1,"_source":{"id":1211,"sku":"WH12-L-Purple","name":"Circe Hooded Ice Fleece-L-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                \n

                Full-zip front.
                Three-panel hood.
                Flatlock seams throughout.
                Welt hand pockets.
                Machine wash/dry.

                ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"circe-hooded-ice-fleece-l-purple-1211","links":{},"stock":{"item_id":1211,"product_id":1211,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-l-purple-1211.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1217","_score":1,"_source":{"id":1217,"sku":"WJ01-S-Red","name":"Stellar Solar Jacket-S-Red","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.
                • Deep pink jacket with front panel rouching

                ","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","color":"58","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stellar-solar-jacket-s-red-1217","links":{},"stock":{"item_id":1217,"product_id":1217,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-s-red-1217.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1201","_score":1,"_source":{"id":1201,"sku":"WH12-XS-Green","name":"Circe Hooded Ice Fleece-XS-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                \n

                Full-zip front.
                Three-panel hood.
                Flatlock seams throughout.
                Welt hand pockets.
                Machine wash/dry.

                ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"circe-hooded-ice-fleece-xs-green-1201","links":{},"stock":{"item_id":1201,"product_id":1201,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xs-green-1201.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1205","_score":1,"_source":{"id":1205,"sku":"WH12-S-Purple","name":"Circe Hooded Ice Fleece-S-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                \n

                Full-zip front.
                Three-panel hood.
                Flatlock seams throughout.
                Welt hand pockets.
                Machine wash/dry.

                ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"circe-hooded-ice-fleece-s-purple-1205","links":{},"stock":{"item_id":1205,"product_id":1205,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-s-purple-1205.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1202","_score":1,"_source":{"id":1202,"sku":"WH12-XS-Purple","name":"Circe Hooded Ice Fleece-XS-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                \n

                Full-zip front.
                Three-panel hood.
                Flatlock seams throughout.
                Welt hand pockets.
                Machine wash/dry.

                ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"circe-hooded-ice-fleece-xs-purple-1202","links":{},"stock":{"item_id":1202,"product_id":1202,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xs-purple-1202.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1206","_score":1,"_source":{"id":1206,"sku":"WH12-M-Gray","name":"Circe Hooded Ice Fleece-M-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                \n

                Full-zip front.
                Three-panel hood.
                Flatlock seams throughout.
                Welt hand pockets.
                Machine wash/dry.

                ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"circe-hooded-ice-fleece-m-gray-1206","links":{},"stock":{"item_id":1206,"product_id":1206,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-m-gray-1206.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1220","_score":1,"_source":{"id":1220,"sku":"WJ01-M-Red","name":"Stellar Solar Jacket-M-Red","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.
                • Deep pink jacket with front panel rouching

                ","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","color":"58","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stellar-solar-jacket-m-red-1220","links":{},"stock":{"item_id":1220,"product_id":1220,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-m-red-1220.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1210","_score":1,"_source":{"id":1210,"sku":"WH12-L-Green","name":"Circe Hooded Ice Fleece-L-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                \n

                Full-zip front.
                Three-panel hood.
                Flatlock seams throughout.
                Welt hand pockets.
                Machine wash/dry.

                ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"circe-hooded-ice-fleece-l-green-1210","links":{},"stock":{"item_id":1210,"product_id":1210,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-l-green-1210.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1216","_score":1,"_source":{"id":1216,"sku":"WJ01-S-Blue","name":"Stellar Solar Jacket-S-Blue","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.
                • Deep pink jacket with front panel rouching

                ","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","color":"50","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stellar-solar-jacket-s-blue-1216","links":{},"stock":{"item_id":1216,"product_id":1216,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-s-blue-1216.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1208","_score":1,"_source":{"id":1208,"sku":"WH12-M-Purple","name":"Circe Hooded Ice Fleece-M-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                \n

                Full-zip front.
                Three-panel hood.
                Flatlock seams throughout.
                Welt hand pockets.
                Machine wash/dry.

                ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"circe-hooded-ice-fleece-m-purple-1208","links":{},"stock":{"item_id":1208,"product_id":1208,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-m-purple-1208.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1218","_score":1,"_source":{"id":1218,"sku":"WJ01-S-Yellow","name":"Stellar Solar Jacket-S-Yellow","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.
                • Deep pink jacket with front panel rouching

                ","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","color":"60","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stellar-solar-jacket-s-yellow-1218","links":{},"stock":{"item_id":1218,"product_id":1218,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-s-yellow-1218.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1214","_score":1,"_source":{"id":1214,"sku":"WH12-XL-Purple","name":"Circe Hooded Ice Fleece-XL-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                \n

                Full-zip front.
                Three-panel hood.
                Flatlock seams throughout.
                Welt hand pockets.
                Machine wash/dry.

                ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"circe-hooded-ice-fleece-xl-purple-1214","links":{},"stock":{"item_id":1214,"product_id":1214,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xl-purple-1214.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1209","_score":1,"_source":{"id":1209,"sku":"WH12-L-Gray","name":"Circe Hooded Ice Fleece-L-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                \n

                Full-zip front.
                Three-panel hood.
                Flatlock seams throughout.
                Welt hand pockets.
                Machine wash/dry.

                ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"circe-hooded-ice-fleece-l-gray-1209","links":{},"stock":{"item_id":1209,"product_id":1209,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-l-gray-1209.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1231","_score":1,"_source":{"id":1231,"sku":"WJ02-S-Gray","name":"Josie Yoga Jacket-S-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                \n

                • Slate rouched neck pullover.
                • Moisture-wicking fabric.
                • Hidden zipper.
                • Mesh armpit venting.
                • Dropped rear hem.

                ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"josie-yoga-jacket-s-gray-1231","links":{},"stock":{"item_id":1231,"product_id":1231,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-s-gray-1231.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1204","_score":1,"_source":{"id":1204,"sku":"WH12-S-Green","name":"Circe Hooded Ice Fleece-S-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                \n

                Full-zip front.
                Three-panel hood.
                Flatlock seams throughout.
                Welt hand pockets.
                Machine wash/dry.

                ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"circe-hooded-ice-fleece-s-green-1204","links":{},"stock":{"item_id":1204,"product_id":1204,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-s-green-1204.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1219","_score":1,"_source":{"id":1219,"sku":"WJ01-M-Blue","name":"Stellar Solar Jacket-M-Blue","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.
                • Deep pink jacket with front panel rouching

                ","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","color":"50","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stellar-solar-jacket-m-blue-1219","links":{},"stock":{"item_id":1219,"product_id":1219,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-m-blue-1219.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1223","_score":1,"_source":{"id":1223,"sku":"WJ01-L-Red","name":"Stellar Solar Jacket-L-Red","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.
                • Deep pink jacket with front panel rouching

                ","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","color":"58","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stellar-solar-jacket-l-red-1223","links":{},"stock":{"item_id":1223,"product_id":1223,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-l-red-1223.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1221","_score":1,"_source":{"id":1221,"sku":"WJ01-M-Yellow","name":"Stellar Solar Jacket-M-Yellow","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.
                • Deep pink jacket with front panel rouching

                ","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","color":"60","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stellar-solar-jacket-m-yellow-1221","links":{},"stock":{"item_id":1221,"product_id":1221,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-m-yellow-1221.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1230","_score":1,"_source":{"id":1230,"sku":"WJ02-S-Blue","name":"Josie Yoga Jacket-S-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                \n

                • Slate rouched neck pullover.
                • Moisture-wicking fabric.
                • Hidden zipper.
                • Mesh armpit venting.
                • Dropped rear hem.

                ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"josie-yoga-jacket-s-blue-1230","links":{},"stock":{"item_id":1230,"product_id":1230,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-s-blue-1230.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1226","_score":1,"_source":{"id":1226,"sku":"WJ02-XS-Black","name":"Josie Yoga Jacket-XS-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                \n

                • Slate rouched neck pullover.
                • Moisture-wicking fabric.
                • Hidden zipper.
                • Mesh armpit venting.
                • Dropped rear hem.

                ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"josie-yoga-jacket-xs-black-1226","links":{},"stock":{"item_id":1226,"product_id":1226,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xs-black-1226.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1224","_score":1,"_source":{"id":1224,"sku":"WJ01-L-Yellow","name":"Stellar Solar Jacket-L-Yellow","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.
                • Deep pink jacket with front panel rouching

                ","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","color":"60","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stellar-solar-jacket-l-yellow-1224","links":{},"stock":{"item_id":1224,"product_id":1224,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-l-yellow-1224.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1212","_score":1,"_source":{"id":1212,"sku":"WH12-XL-Gray","name":"Circe Hooded Ice Fleece-XL-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                \n

                Full-zip front.
                Three-panel hood.
                Flatlock seams throughout.
                Welt hand pockets.
                Machine wash/dry.

                ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"circe-hooded-ice-fleece-xl-gray-1212","links":{},"stock":{"item_id":1212,"product_id":1212,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xl-gray-1212.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1222","_score":1,"_source":{"id":1222,"sku":"WJ01-L-Blue","name":"Stellar Solar Jacket-L-Blue","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.
                • Deep pink jacket with front panel rouching

                ","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","color":"50","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stellar-solar-jacket-l-blue-1222","links":{},"stock":{"item_id":1222,"product_id":1222,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-l-blue-1222.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1236","_score":1,"_source":{"id":1236,"sku":"WJ02-L-Blue","name":"Josie Yoga Jacket-L-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                \n

                • Slate rouched neck pullover.
                • Moisture-wicking fabric.
                • Hidden zipper.
                • Mesh armpit venting.
                • Dropped rear hem.

                ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"josie-yoga-jacket-l-blue-1236","links":{},"stock":{"item_id":1236,"product_id":1236,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-l-blue-1236.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1227","_score":1,"_source":{"id":1227,"sku":"WJ02-XS-Blue","name":"Josie Yoga Jacket-XS-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                \n

                • Slate rouched neck pullover.
                • Moisture-wicking fabric.
                • Hidden zipper.
                • Mesh armpit venting.
                • Dropped rear hem.

                ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"josie-yoga-jacket-xs-blue-1227","links":{},"stock":{"item_id":1227,"product_id":1227,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xs-blue-1227.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1241","_score":1,"_source":{"id":1241,"sku":"WJ02","name":"Josie Yoga Jacket","attribute_set_id":9,"price":56.25,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                \n

                • Slate rouched neck pullover.
                • Moisture-wicking fabric.
                • Hidden zipper.
                • Mesh armpit venting.
                • Dropped rear hem.

                ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"josie-yoga-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[38,151,156],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":[118,137,120,125],"pattern":"197","climate":[205,206,208],"slug":"josie-yoga-jacket-1241","links":{},"stock":{"item_id":1241,"product_id":1241,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ02-XS-Black","id":1226,"status":1,"name":"Josie Yoga Jacket-XS-Black","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"167","color":"49","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","url_key":"josie-yoga-jacket-xs-black","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-XS-Blue","id":1227,"status":1,"name":"Josie Yoga Jacket-XS-Blue","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"167","color":"50","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","url_key":"josie-yoga-jacket-xs-blue","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-XS-Gray","id":1228,"status":1,"name":"Josie Yoga Jacket-XS-Gray","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"167","color":"52","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","url_key":"josie-yoga-jacket-xs-gray","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-S-Black","id":1229,"status":1,"name":"Josie Yoga Jacket-S-Black","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"168","color":"49","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","url_key":"josie-yoga-jacket-s-black","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-S-Blue","id":1230,"status":1,"name":"Josie Yoga Jacket-S-Blue","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"168","color":"50","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","url_key":"josie-yoga-jacket-s-blue","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-S-Gray","id":1231,"status":1,"name":"Josie Yoga Jacket-S-Gray","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"168","color":"52","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","url_key":"josie-yoga-jacket-s-gray","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-M-Black","id":1232,"status":1,"name":"Josie Yoga Jacket-M-Black","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"169","color":"49","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","url_key":"josie-yoga-jacket-m-black","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-M-Blue","id":1233,"status":1,"name":"Josie Yoga Jacket-M-Blue","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"169","color":"50","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","url_key":"josie-yoga-jacket-m-blue","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-M-Gray","id":1234,"status":1,"name":"Josie Yoga Jacket-M-Gray","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"169","color":"52","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","url_key":"josie-yoga-jacket-m-gray","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-L-Black","id":1235,"status":1,"name":"Josie Yoga Jacket-L-Black","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"170","color":"49","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","url_key":"josie-yoga-jacket-l-black","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-L-Blue","id":1236,"status":1,"name":"Josie Yoga Jacket-L-Blue","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"170","color":"50","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","url_key":"josie-yoga-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-L-Gray","id":1237,"status":1,"name":"Josie Yoga Jacket-L-Gray","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"170","color":"52","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","url_key":"josie-yoga-jacket-l-gray","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-XL-Black","id":1238,"status":1,"name":"Josie Yoga Jacket-XL-Black","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"171","color":"49","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","url_key":"josie-yoga-jacket-xl-black","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-XL-Blue","id":1239,"status":1,"name":"Josie Yoga Jacket-XL-Blue","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"171","color":"50","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","url_key":"josie-yoga-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-XL-Gray","id":1240,"status":1,"name":"Josie Yoga Jacket-XL-Gray","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"171","color":"52","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","url_key":"josie-yoga-jacket-xl-gray","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25}],"configurable_options":[{"id":173,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"}],"product_id":1241,"attribute_code":"color"},{"id":172,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1241,"attribute_code":"size"}],"color_options":[49,50,52],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-1241.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1203","_score":1,"_source":{"id":1203,"sku":"WH12-S-Gray","name":"Circe Hooded Ice Fleece-S-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                \n

                Full-zip front.
                Three-panel hood.
                Flatlock seams throughout.
                Welt hand pockets.
                Machine wash/dry.

                ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"circe-hooded-ice-fleece-s-gray-1203","links":{},"stock":{"item_id":1203,"product_id":1203,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-s-gray-1203.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1207","_score":1,"_source":{"id":1207,"sku":"WH12-M-Green","name":"Circe Hooded Ice Fleece-M-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                \n

                Full-zip front.
                Three-panel hood.
                Flatlock seams throughout.
                Welt hand pockets.
                Machine wash/dry.

                ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"circe-hooded-ice-fleece-m-green-1207","links":{},"stock":{"item_id":1207,"product_id":1207,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-m-green-1207.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1240","_score":1,"_source":{"id":1240,"sku":"WJ02-XL-Gray","name":"Josie Yoga Jacket-XL-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                \n

                • Slate rouched neck pullover.
                • Moisture-wicking fabric.
                • Hidden zipper.
                • Mesh armpit venting.
                • Dropped rear hem.

                ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"josie-yoga-jacket-xl-gray-1240","links":{},"stock":{"item_id":1240,"product_id":1240,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xl-gray-1240.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1235","_score":1,"_source":{"id":1235,"sku":"WJ02-L-Black","name":"Josie Yoga Jacket-L-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                \n

                • Slate rouched neck pullover.
                • Moisture-wicking fabric.
                • Hidden zipper.
                • Mesh armpit venting.
                • Dropped rear hem.

                ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"josie-yoga-jacket-l-black-1235","links":{},"stock":{"item_id":1235,"product_id":1235,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-l-black-1235.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1232","_score":1,"_source":{"id":1232,"sku":"WJ02-M-Black","name":"Josie Yoga Jacket-M-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                \n

                • Slate rouched neck pullover.
                • Moisture-wicking fabric.
                • Hidden zipper.
                • Mesh armpit venting.
                • Dropped rear hem.

                ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"josie-yoga-jacket-m-black-1232","links":{},"stock":{"item_id":1232,"product_id":1232,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-m-black-1232.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1229","_score":1,"_source":{"id":1229,"sku":"WJ02-S-Black","name":"Josie Yoga Jacket-S-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                \n

                • Slate rouched neck pullover.
                • Moisture-wicking fabric.
                • Hidden zipper.
                • Mesh armpit venting.
                • Dropped rear hem.

                ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"josie-yoga-jacket-s-black-1229","links":{},"stock":{"item_id":1229,"product_id":1229,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-s-black-1229.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1238","_score":1,"_source":{"id":1238,"sku":"WJ02-XL-Black","name":"Josie Yoga Jacket-XL-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                \n

                • Slate rouched neck pullover.
                • Moisture-wicking fabric.
                • Hidden zipper.
                • Mesh armpit venting.
                • Dropped rear hem.

                ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"josie-yoga-jacket-xl-black-1238","links":{},"stock":{"item_id":1238,"product_id":1238,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xl-black-1238.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1228","_score":1,"_source":{"id":1228,"sku":"WJ02-XS-Gray","name":"Josie Yoga Jacket-XS-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                \n

                • Slate rouched neck pullover.
                • Moisture-wicking fabric.
                • Hidden zipper.
                • Mesh armpit venting.
                • Dropped rear hem.

                ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"josie-yoga-jacket-xs-gray-1228","links":{},"stock":{"item_id":1228,"product_id":1228,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xs-gray-1228.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1245","_score":1,"_source":{"id":1245,"sku":"WJ03-S-Blue","name":"Augusta Pullover Jacket-S-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                \n

                • Pink half-zip pullover.
                • Front pouch pockets.
                • Fold-down collar.

                ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"augusta-pullover-jacket-s-blue-1245","links":{},"stock":{"item_id":1245,"product_id":1245,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-s-blue-1245.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1234","_score":1,"_source":{"id":1234,"sku":"WJ02-M-Gray","name":"Josie Yoga Jacket-M-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                \n

                • Slate rouched neck pullover.
                • Moisture-wicking fabric.
                • Hidden zipper.
                • Mesh armpit venting.
                • Dropped rear hem.

                ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"josie-yoga-jacket-m-gray-1234","links":{},"stock":{"item_id":1234,"product_id":1234,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-m-gray-1234.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1242","_score":1,"_source":{"id":1242,"sku":"WJ03-XS-Blue","name":"Augusta Pullover Jacket-XS-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                \n

                • Pink half-zip pullover.
                • Front pouch pockets.
                • Fold-down collar.

                ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"augusta-pullover-jacket-xs-blue-1242","links":{},"stock":{"item_id":1242,"product_id":1242,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xs-blue-1242.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1233","_score":1,"_source":{"id":1233,"sku":"WJ02-M-Blue","name":"Josie Yoga Jacket-M-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                \n

                • Slate rouched neck pullover.
                • Moisture-wicking fabric.
                • Hidden zipper.
                • Mesh armpit venting.
                • Dropped rear hem.

                ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"josie-yoga-jacket-m-blue-1233","links":{},"stock":{"item_id":1233,"product_id":1233,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-m-blue-1233.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1237","_score":1,"_source":{"id":1237,"sku":"WJ02-L-Gray","name":"Josie Yoga Jacket-L-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                \n

                • Slate rouched neck pullover.
                • Moisture-wicking fabric.
                • Hidden zipper.
                • Mesh armpit venting.
                • Dropped rear hem.

                ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"josie-yoga-jacket-l-gray-1237","links":{},"stock":{"item_id":1237,"product_id":1237,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-l-gray-1237.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1249","_score":1,"_source":{"id":1249,"sku":"WJ03-M-Orange","name":"Augusta Pullover Jacket-M-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                \n

                • Pink half-zip pullover.
                • Front pouch pockets.
                • Fold-down collar.

                ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"augusta-pullover-jacket-m-orange-1249","links":{},"stock":{"item_id":1249,"product_id":1249,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-m-orange-1249.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1239","_score":1,"_source":{"id":1239,"sku":"WJ02-XL-Blue","name":"Josie Yoga Jacket-XL-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                \n

                • Slate rouched neck pullover.
                • Moisture-wicking fabric.
                • Hidden zipper.
                • Mesh armpit venting.
                • Dropped rear hem.

                ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"josie-yoga-jacket-xl-blue-1239","links":{},"stock":{"item_id":1239,"product_id":1239,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xl-blue-1239.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1243","_score":1,"_source":{"id":1243,"sku":"WJ03-XS-Orange","name":"Augusta Pullover Jacket-XS-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                \n

                • Pink half-zip pullover.
                • Front pouch pockets.
                • Fold-down collar.

                ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"augusta-pullover-jacket-xs-orange-1243","links":{},"stock":{"item_id":1243,"product_id":1243,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xs-orange-1243.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1247","_score":1,"_source":{"id":1247,"sku":"WJ03-S-Red","name":"Augusta Pullover Jacket-S-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                \n

                • Pink half-zip pullover.
                • Front pouch pockets.
                • Fold-down collar.

                ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"augusta-pullover-jacket-s-red-1247","links":{},"stock":{"item_id":1247,"product_id":1247,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-s-red-1247.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1175","_score":1,"_source":{"id":1175,"sku":"WH10-M-Gray","name":"Helena Hooded Fleece-M-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                \n

                Full zip.
                Banded cuffs and waist.
                Front pockets.
                Machine wash/dry.

                ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helena-hooded-fleece-m-gray-1175","links":{},"stock":{"item_id":1175,"product_id":1175,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-m-gray-1175.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1171","_score":1,"_source":{"id":1171,"sku":"WH10-S-Blue","name":"Helena Hooded Fleece-S-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                \n

                Full zip.
                Banded cuffs and waist.
                Front pockets.
                Machine wash/dry.

                ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helena-hooded-fleece-s-blue-1171","links":{},"stock":{"item_id":1171,"product_id":1171,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-s-blue-1171.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1172","_score":1,"_source":{"id":1172,"sku":"WH10-S-Gray","name":"Helena Hooded Fleece-S-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                \n

                Full zip.
                Banded cuffs and waist.
                Front pockets.
                Machine wash/dry.

                ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helena-hooded-fleece-s-gray-1172","links":{},"stock":{"item_id":1172,"product_id":1172,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-s-gray-1172.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1173","_score":1,"_source":{"id":1173,"sku":"WH10-S-Yellow","name":"Helena Hooded Fleece-S-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                \n

                Full zip.
                Banded cuffs and waist.
                Front pockets.
                Machine wash/dry.

                ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helena-hooded-fleece-s-yellow-1173","links":{},"stock":{"item_id":1173,"product_id":1173,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-s-yellow-1173.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1181","_score":1,"_source":{"id":1181,"sku":"WH10-XL-Gray","name":"Helena Hooded Fleece-XL-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                \n

                Full zip.
                Banded cuffs and waist.
                Front pockets.
                Machine wash/dry.

                ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helena-hooded-fleece-xl-gray-1181","links":{},"stock":{"item_id":1181,"product_id":1181,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xl-gray-1181.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1176","_score":1,"_source":{"id":1176,"sku":"WH10-M-Yellow","name":"Helena Hooded Fleece-M-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                \n

                Full zip.
                Banded cuffs and waist.
                Front pockets.
                Machine wash/dry.

                ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helena-hooded-fleece-m-yellow-1176","links":{},"stock":{"item_id":1176,"product_id":1176,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-m-yellow-1176.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1153","_score":1,"_source":{"id":1153,"sku":"WH09-XS-Purple","name":"Ariel Roll Sleeve Sweatshirt-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                \n

                • Purple two-tone lightweight hoodie.
                • 100% cotton.
                • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                • Casual, comfy piece for running errands or weekend activities.

                ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ariel-roll-sleeve-sweatshirt-xs-purple-1153","links":{},"stock":{"item_id":1153,"product_id":1153,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xs-purple-1153.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1573","_score":1,"_source":{"id":1573,"sku":"WS01-L-Yellow","name":"Gwyn Endurance Tee-L-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2019-05-13 09:57:42","weight":1,"product_links":[],"tier_prices":[{"customer_group_id":0,"qty":2,"value":22,"extension_attributes":{"website_id":0}}],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":"20.0000","minimal_price":20,"regular_price":24,"description":"

                When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                \r\n

                • Short-Sleeves.
                • Machine wash/line dry.

                ","special_from_date":"2019-05-13 00:00:00","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-l-yellow","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"170","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"gwyn-endurance-tee-l-yellow-1573","links":{},"stock":{"item_id":1573,"product_id":1573,"stock_id":1,"qty":66,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-l-yellow-1573.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1560","_score":1,"_source":{"id":1560,"sku":"WS12-XL-Purple","name":"Radiant Tee-XL-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                \n

                • Salmon soft scoop neck tee.
                • Athletic, semi-form fit.
                • Flat seams prevent chafing.
                • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"radiant-tee-xl-purple-1560","links":{},"stock":{"item_id":1560,"product_id":1560,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xl-purple-1560.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1575","_score":1,"_source":{"id":1575,"sku":"WS01-XL-Green","name":"Gwyn Endurance Tee-XL-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                \n

                • Short-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gwyn-endurance-tee-xl-green-1575","links":{},"stock":{"item_id":1575,"product_id":1575,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xl-green-1575.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1564","_score":1,"_source":{"id":1564,"sku":"WS01-XS-Yellow","name":"Gwyn Endurance Tee-XS-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                \n

                • Short-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gwyn-endurance-tee-xs-yellow-1564","links":{},"stock":{"item_id":1564,"product_id":1564,"stock_id":1,"qty":16,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xs-yellow-1564.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1578","_score":1,"_source":{"id":1578,"sku":"WS05-XS-Black","name":"Desiree Fitness Tee-XS-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                \n

                • Short-Sleeves.
                • Performance fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"desiree-fitness-tee-xs-black-1578","links":{},"stock":{"item_id":1578,"product_id":1578,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-07 12:11:20","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xs-black-1578.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1590","_score":1,"_source":{"id":1590,"sku":"WS05-XL-Black","name":"Desiree Fitness Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                \n

                • Short-Sleeves.
                • Performance fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"desiree-fitness-tee-xl-black-1590","links":{},"stock":{"item_id":1590,"product_id":1590,"stock_id":1,"qty":50,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xl-black-1590.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1579","_score":1,"_source":{"id":1579,"sku":"WS05-XS-Orange","name":"Desiree Fitness Tee-XS-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                \n

                • Short-Sleeves.
                • Performance fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"desiree-fitness-tee-xs-orange-1579","links":{},"stock":{"item_id":1579,"product_id":1579,"stock_id":1,"qty":51,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xs-orange-1579.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1583","_score":1,"_source":{"id":1583,"sku":"WS05-S-Yellow","name":"Desiree Fitness Tee-S-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                \n

                • Short-Sleeves.
                • Performance fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"desiree-fitness-tee-s-yellow-1583","links":{},"stock":{"item_id":1583,"product_id":1583,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-s-yellow-1583.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1567","_score":1,"_source":{"id":1567,"sku":"WS01-S-Yellow","name":"Gwyn Endurance Tee-S-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                \n

                • Short-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gwyn-endurance-tee-s-yellow-1567","links":{},"stock":{"item_id":1567,"product_id":1567,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-s-yellow-1567.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1584","_score":1,"_source":{"id":1584,"sku":"WS05-M-Black","name":"Desiree Fitness Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                \n

                • Short-Sleeves.
                • Performance fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"desiree-fitness-tee-m-black-1584","links":{},"stock":{"item_id":1584,"product_id":1584,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-07-22 07:24:29","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-m-black-1584.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1562","_score":1,"_source":{"id":1562,"sku":"WS01-XS-Black","name":"Gwyn Endurance Tee-XS-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                \n

                • Short-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gwyn-endurance-tee-xs-black-1562","links":{},"stock":{"item_id":1562,"product_id":1562,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-29 15:00:20","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xs-black-1562.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1592","_score":1,"_source":{"id":1592,"sku":"WS05-XL-Yellow","name":"Desiree Fitness Tee-XL-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                \n

                • Short-Sleeves.
                • Performance fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"desiree-fitness-tee-xl-yellow-1592","links":{},"stock":{"item_id":1592,"product_id":1592,"stock_id":1,"qty":78,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xl-yellow-1592.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1556","_score":1,"_source":{"id":1556,"sku":"WS12-L-Orange","name":"Radiant Tee-L-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                \n

                • Salmon soft scoop neck tee.
                • Athletic, semi-form fit.
                • Flat seams prevent chafing.
                • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"radiant-tee-l-orange-1556","links":{},"stock":{"item_id":1556,"product_id":1556,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-l-orange-1556.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1563","_score":1,"_source":{"id":1563,"sku":"WS01-XS-Green","name":"Gwyn Endurance Tee-XS-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                \n

                • Short-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gwyn-endurance-tee-xs-green-1563","links":{},"stock":{"item_id":1563,"product_id":1563,"stock_id":1,"qty":46,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xs-green-1563.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1595","_score":1,"_source":{"id":1595,"sku":"WB01-XS-Gray","name":"Electra Bra Top-XS-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                \n

                • Gray rouched bra top.
                • Attractive back straps feature contrasting motif fabric.
                • Interior bra top is lined with breathable mesh.
                • Elastic underband for superior support.
                • Removable cup inserts.
                • Chafe-free flat lock seams provide added comfort.

                ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"electra-bra-top-xs-gray-1595","links":{},"stock":{"item_id":1595,"product_id":1595,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xs-gray-1595.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1589","_score":1,"_source":{"id":1589,"sku":"WS05-L-Yellow","name":"Desiree Fitness Tee-L-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                \n

                • Short-Sleeves.
                • Performance fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"desiree-fitness-tee-l-yellow-1589","links":{},"stock":{"item_id":1589,"product_id":1589,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-l-yellow-1589.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1598","_score":1,"_source":{"id":1598,"sku":"WB01-S-Gray","name":"Electra Bra Top-S-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                \n

                • Gray rouched bra top.
                • Attractive back straps feature contrasting motif fabric.
                • Interior bra top is lined with breathable mesh.
                • Elastic underband for superior support.
                • Removable cup inserts.
                • Chafe-free flat lock seams provide added comfort.

                ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"electra-bra-top-s-gray-1598","links":{},"stock":{"item_id":1598,"product_id":1598,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-s-gray-1598.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1596","_score":1,"_source":{"id":1596,"sku":"WB01-XS-Purple","name":"Electra Bra Top-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                \n

                • Gray rouched bra top.
                • Attractive back straps feature contrasting motif fabric.
                • Interior bra top is lined with breathable mesh.
                • Elastic underband for superior support.
                • Removable cup inserts.
                • Chafe-free flat lock seams provide added comfort.

                ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"electra-bra-top-xs-purple-1596","links":{},"stock":{"item_id":1596,"product_id":1596,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xs-purple-1596.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1581","_score":1,"_source":{"id":1581,"sku":"WS05-S-Black","name":"Desiree Fitness Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                \n

                • Short-Sleeves.
                • Performance fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"desiree-fitness-tee-s-black-1581","links":{},"stock":{"item_id":1581,"product_id":1581,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-09-10 08:57:54","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-s-black-1581.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1585","_score":1,"_source":{"id":1585,"sku":"WS05-M-Orange","name":"Desiree Fitness Tee-M-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                \n

                • Short-Sleeves.
                • Performance fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"desiree-fitness-tee-m-orange-1585","links":{},"stock":{"item_id":1585,"product_id":1585,"stock_id":1,"qty":63,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-m-orange-1585.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1587","_score":1,"_source":{"id":1587,"sku":"WS05-L-Black","name":"Desiree Fitness Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                \n

                • Short-Sleeves.
                • Performance fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"desiree-fitness-tee-l-black-1587","links":{},"stock":{"item_id":1587,"product_id":1587,"stock_id":1,"qty":40,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-l-black-1587.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1597","_score":1,"_source":{"id":1597,"sku":"WB01-S-Black","name":"Electra Bra Top-S-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                \n

                • Gray rouched bra top.
                • Attractive back straps feature contrasting motif fabric.
                • Interior bra top is lined with breathable mesh.
                • Elastic underband for superior support.
                • Removable cup inserts.
                • Chafe-free flat lock seams provide added comfort.

                ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"electra-bra-top-s-black-1597","links":{},"stock":{"item_id":1597,"product_id":1597,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-s-black-1597.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1591","_score":1,"_source":{"id":1591,"sku":"WS05-XL-Orange","name":"Desiree Fitness Tee-XL-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                \n

                • Short-Sleeves.
                • Performance fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"desiree-fitness-tee-xl-orange-1591","links":{},"stock":{"item_id":1591,"product_id":1591,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xl-orange-1591.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1588","_score":1,"_source":{"id":1588,"sku":"WS05-L-Orange","name":"Desiree Fitness Tee-L-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                \n

                • Short-Sleeves.
                • Performance fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"desiree-fitness-tee-l-orange-1588","links":{},"stock":{"item_id":1588,"product_id":1588,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-l-orange-1588.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1582","_score":1,"_source":{"id":1582,"sku":"WS05-S-Orange","name":"Desiree Fitness Tee-S-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                \n

                • Short-Sleeves.
                • Performance fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"desiree-fitness-tee-s-orange-1582","links":{},"stock":{"item_id":1582,"product_id":1582,"stock_id":1,"qty":44,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-s-orange-1582.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1594","_score":1,"_source":{"id":1594,"sku":"WB01-XS-Black","name":"Electra Bra Top-XS-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                \n

                • Gray rouched bra top.
                • Attractive back straps feature contrasting motif fabric.
                • Interior bra top is lined with breathable mesh.
                • Elastic underband for superior support.
                • Removable cup inserts.
                • Chafe-free flat lock seams provide added comfort.

                ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"electra-bra-top-xs-black-1594","links":{},"stock":{"item_id":1594,"product_id":1594,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xs-black-1594.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1580","_score":1,"_source":{"id":1580,"sku":"WS05-XS-Yellow","name":"Desiree Fitness Tee-XS-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                \n

                • Short-Sleeves.
                • Performance fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"desiree-fitness-tee-xs-yellow-1580","links":{},"stock":{"item_id":1580,"product_id":1580,"stock_id":1,"qty":2,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xs-yellow-1580.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1600","_score":1,"_source":{"id":1600,"sku":"WB01-M-Black","name":"Electra Bra Top-M-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                \n

                • Gray rouched bra top.
                • Attractive back straps feature contrasting motif fabric.
                • Interior bra top is lined with breathable mesh.
                • Elastic underband for superior support.
                • Removable cup inserts.
                • Chafe-free flat lock seams provide added comfort.

                ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"electra-bra-top-m-black-1600","links":{},"stock":{"item_id":1600,"product_id":1600,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-m-black-1600.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1571","_score":1,"_source":{"id":1571,"sku":"WS01-L-Black","name":"Gwyn Endurance Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                \n

                • Short-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gwyn-endurance-tee-l-black-1571","links":{},"stock":{"item_id":1571,"product_id":1571,"stock_id":1,"qty":59,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-l-black-1571.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1599","_score":1,"_source":{"id":1599,"sku":"WB01-S-Purple","name":"Electra Bra Top-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                \n

                • Gray rouched bra top.
                • Attractive back straps feature contrasting motif fabric.
                • Interior bra top is lined with breathable mesh.
                • Elastic underband for superior support.
                • Removable cup inserts.
                • Chafe-free flat lock seams provide added comfort.

                ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"electra-bra-top-s-purple-1599","links":{},"stock":{"item_id":1599,"product_id":1599,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-s-purple-1599.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1561","_score":1,"_source":{"id":1561,"sku":"WS12","name":"Radiant Tee","attribute_set_id":9,"price":22,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                \n

                • Salmon soft scoop neck tee.
                • Athletic, semi-form fit.
                • Flat seams prevent chafing.
                • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"radiant-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[146,154,151],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"radiant-tee-1561","links":{},"stock":{"item_id":1561,"product_id":1561,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS12-XS-Blue","id":1546,"status":1,"name":"Radiant Tee-XS-Blue","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"50","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","url_key":"radiant-tee-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WS12-XS-Orange","id":1547,"status":1,"name":"Radiant Tee-XS-Orange","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"56","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","url_key":"radiant-tee-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WS12-XS-Purple","id":1548,"status":1,"name":"Radiant Tee-XS-Purple","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"57","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","url_key":"radiant-tee-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WS12-S-Blue","id":1549,"status":1,"name":"Radiant Tee-S-Blue","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"50","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","url_key":"radiant-tee-s-blue","msrp_display_actual_price_type":"0"},{"sku":"WS12-S-Orange","id":1550,"status":1,"name":"Radiant Tee-S-Orange","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"56","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","url_key":"radiant-tee-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WS12-S-Purple","id":1551,"status":1,"name":"Radiant Tee-S-Purple","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"57","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","url_key":"radiant-tee-s-purple","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"WS12-M-Blue","id":1552,"status":1,"name":"Radiant Tee-M-Blue","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"50","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","url_key":"radiant-tee-m-blue","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"WS12-M-Orange","id":1553,"status":1,"name":"Radiant Tee-M-Orange","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"56","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","url_key":"radiant-tee-m-orange","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"WS12-M-Purple","id":1554,"status":1,"name":"Radiant Tee-M-Purple","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"57","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","url_key":"radiant-tee-m-purple","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"WS12-L-Blue","id":1555,"status":1,"name":"Radiant Tee-L-Blue","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"50","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","url_key":"radiant-tee-l-blue","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"WS12-L-Orange","id":1556,"status":1,"name":"Radiant Tee-L-Orange","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"56","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","url_key":"radiant-tee-l-orange","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"WS12-L-Purple","id":1557,"status":1,"name":"Radiant Tee-L-Purple","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"57","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","url_key":"radiant-tee-l-purple","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"WS12-XL-Blue","id":1558,"status":1,"name":"Radiant Tee-XL-Blue","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"50","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","url_key":"radiant-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"WS12-XL-Orange","id":1559,"status":1,"name":"Radiant Tee-XL-Orange","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"56","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","url_key":"radiant-tee-xl-orange","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"WS12-XL-Purple","id":1560,"status":1,"name":"Radiant Tee-XL-Purple","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"57","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","url_key":"radiant-tee-xl-purple","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22}],"configurable_options":[{"id":213,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1561,"attribute_code":"color"},{"id":212,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1561,"attribute_code":"size"}],"color_options":[50,56,57],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-1561.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1593","_score":1,"_source":{"id":1593,"sku":"WS05","name":"Desiree Fitness Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                \n

                • Short-Sleeves.
                • Performance fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"desiree-fitness-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[152,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"desiree-fitness-tee-1593","links":{},"stock":{"item_id":1593,"product_id":1593,"stock_id":1,"qty":24,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS05-XS-Black","id":1578,"status":1,"name":"Desiree Fitness Tee-XS-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"167","color":"49","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","url_key":"desiree-fitness-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WS05-XS-Orange","id":1579,"status":1,"name":"Desiree Fitness Tee-XS-Orange","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"167","color":"56","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","url_key":"desiree-fitness-tee-xs-orange","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS05-XS-Yellow","id":1580,"status":1,"name":"Desiree Fitness Tee-XS-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"167","color":"60","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","url_key":"desiree-fitness-tee-xs-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS05-S-Black","id":1581,"status":1,"name":"Desiree Fitness Tee-S-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"168","color":"49","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","url_key":"desiree-fitness-tee-s-black","msrp_display_actual_price_type":"0"},{"sku":"WS05-S-Orange","id":1582,"status":1,"name":"Desiree Fitness Tee-S-Orange","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"168","color":"56","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","url_key":"desiree-fitness-tee-s-orange","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS05-S-Yellow","id":1583,"status":1,"name":"Desiree Fitness Tee-S-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"168","color":"60","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","url_key":"desiree-fitness-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS05-M-Black","id":1584,"status":1,"name":"Desiree Fitness Tee-M-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"169","color":"49","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","url_key":"desiree-fitness-tee-m-black","msrp_display_actual_price_type":"0"},{"sku":"WS05-M-Orange","id":1585,"status":1,"name":"Desiree Fitness Tee-M-Orange","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"169","color":"56","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","url_key":"desiree-fitness-tee-m-orange","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS05-M-Yellow","id":1586,"status":1,"name":"Desiree Fitness Tee-M-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"169","color":"60","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","url_key":"desiree-fitness-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS05-L-Black","id":1587,"status":1,"name":"Desiree Fitness Tee-L-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"170","color":"49","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","url_key":"desiree-fitness-tee-l-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS05-L-Orange","id":1588,"status":1,"name":"Desiree Fitness Tee-L-Orange","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"170","color":"56","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","url_key":"desiree-fitness-tee-l-orange","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS05-L-Yellow","id":1589,"status":1,"name":"Desiree Fitness Tee-L-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"170","color":"60","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","url_key":"desiree-fitness-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS05-XL-Black","id":1590,"status":1,"name":"Desiree Fitness Tee-XL-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"171","color":"49","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","url_key":"desiree-fitness-tee-xl-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS05-XL-Orange","id":1591,"status":1,"name":"Desiree Fitness Tee-XL-Orange","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"171","color":"56","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","url_key":"desiree-fitness-tee-xl-orange","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS05-XL-Yellow","id":1592,"status":1,"name":"Desiree Fitness Tee-XL-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"171","color":"60","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","url_key":"desiree-fitness-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24}],"configurable_options":[{"id":217,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1593,"attribute_code":"color"},{"id":216,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1593,"attribute_code":"size"}],"color_options":[49,56,60],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-1593.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1577","_score":1,"_source":{"id":1577,"sku":"WS01","name":"Gwyn Endurance Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":24,"description":"

                When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                \n

                • Short-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"gwyn-endurance-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[152,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"gwyn-endurance-tee-1577","links":{},"stock":{"item_id":1577,"product_id":1577,"stock_id":1,"qty":8,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS01-XS-Black","id":1562,"status":1,"name":"Gwyn Endurance Tee-XS-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"167","color":"49","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","url_key":"gwyn-endurance-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WS01-XS-Green","id":1563,"status":1,"name":"Gwyn Endurance Tee-XS-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"167","color":"53","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","url_key":"gwyn-endurance-tee-xs-green","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS01-XS-Yellow","id":1564,"status":1,"name":"Gwyn Endurance Tee-XS-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"167","color":"60","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","url_key":"gwyn-endurance-tee-xs-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS01-S-Black","id":1565,"status":1,"name":"Gwyn Endurance Tee-S-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"168","color":"49","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","url_key":"gwyn-endurance-tee-s-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS01-S-Green","id":1566,"status":1,"name":"Gwyn Endurance Tee-S-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"168","color":"53","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","url_key":"gwyn-endurance-tee-s-green","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS01-S-Yellow","id":1567,"status":1,"name":"Gwyn Endurance Tee-S-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"168","color":"60","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","url_key":"gwyn-endurance-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS01-M-Black","id":1568,"status":1,"name":"Gwyn Endurance Tee-M-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"169","color":"49","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","url_key":"gwyn-endurance-tee-m-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS01-M-Green","id":1569,"status":1,"name":"Gwyn Endurance Tee-M-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"169","color":"53","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","url_key":"gwyn-endurance-tee-m-green","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS01-M-Yellow","id":1570,"status":1,"name":"Gwyn Endurance Tee-M-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"169","color":"60","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","url_key":"gwyn-endurance-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS01-L-Black","id":1571,"status":1,"name":"Gwyn Endurance Tee-L-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"170","color":"49","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","url_key":"gwyn-endurance-tee-l-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS01-L-Green","id":1572,"status":1,"name":"Gwyn Endurance Tee-L-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"170","color":"53","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","url_key":"gwyn-endurance-tee-l-green","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS01-L-Yellow","id":1573,"status":1,"name":"Gwyn Endurance Tee-L-Yellow","price":24,"tier_prices":[{"customer_group_id":0,"qty":2,"value":22,"extension_attributes":{"website_id":0}}],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"170","color":"60","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","url_key":"gwyn-endurance-tee-l-yellow","special_price":20,"special_from_date":"2019-05-13 00:00:00","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"minimal_price":20,"regular_price":24},{"sku":"WS01-XL-Black","id":1574,"status":1,"name":"Gwyn Endurance Tee-XL-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"171","color":"49","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","url_key":"gwyn-endurance-tee-xl-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS01-XL-Green","id":1575,"status":1,"name":"Gwyn Endurance Tee-XL-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"171","color":"53","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","url_key":"gwyn-endurance-tee-xl-green","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS01-XL-Yellow","id":1576,"status":1,"name":"Gwyn Endurance Tee-XL-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"171","color":"60","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","url_key":"gwyn-endurance-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24}],"configurable_options":[{"id":215,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":60,"label":"Yellow"}],"product_id":1577,"attribute_code":"color"},{"id":214,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1577,"attribute_code":"size"}],"color_options":[49,53,60],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-1577.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1511","_score":1,"_source":{"id":1511,"sku":"WS09-XL-Red","name":"Tiffany Fitness Tee-XL-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                \n

                • Teal soft scoop neck tee.
                • Contrast stitching pattern.
                • Machine wash/dry.

                ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tiffany-fitness-tee-xl-red-1511","links":{},"stock":{"item_id":1511,"product_id":1511,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xl-red-1511.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1504","_score":1,"_source":{"id":1504,"sku":"WS09-M-Blue","name":"Tiffany Fitness Tee-M-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                \n

                • Teal soft scoop neck tee.
                • Contrast stitching pattern.
                • Machine wash/dry.

                ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tiffany-fitness-tee-m-blue-1504","links":{},"stock":{"item_id":1504,"product_id":1504,"stock_id":1,"qty":54,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-m-blue-1504.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1533","_score":1,"_source":{"id":1533,"sku":"WS11-S-Green","name":"Diva Gym Tee-S-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                \n

                • Bright yellow v-neck tee.
                • Moisture-wicking fabric.
                • Long-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"diva-gym-tee-s-green-1533","links":{},"stock":{"item_id":1533,"product_id":1533,"stock_id":1,"qty":11,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-s-green-1533.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1550","_score":1,"_source":{"id":1550,"sku":"WS12-S-Orange","name":"Radiant Tee-S-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                \n

                • Salmon soft scoop neck tee.
                • Athletic, semi-form fit.
                • Flat seams prevent chafing.
                • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"radiant-tee-s-orange-1550","links":{},"stock":{"item_id":1550,"product_id":1550,"stock_id":1,"qty":66,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-s-orange-1550.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1502","_score":1,"_source":{"id":1502,"sku":"WS09-S-Red","name":"Tiffany Fitness Tee-S-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                \n

                • Teal soft scoop neck tee.
                • Contrast stitching pattern.
                • Machine wash/dry.

                ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tiffany-fitness-tee-s-red-1502","links":{},"stock":{"item_id":1502,"product_id":1502,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-s-red-1502.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1501","_score":1,"_source":{"id":1501,"sku":"WS09-S-Blue","name":"Tiffany Fitness Tee-S-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                \n

                • Teal soft scoop neck tee.
                • Contrast stitching pattern.
                • Machine wash/dry.

                ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tiffany-fitness-tee-s-blue-1501","links":{},"stock":{"item_id":1501,"product_id":1501,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-s-blue-1501.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1517","_score":1,"_source":{"id":1517,"sku":"WS10-S-Green","name":"Karissa V-Neck Tee-S-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                \n

                • Pink heather soft v-neck tee.
                • Luma signature micro sleeves.
                • Semi-fitted.
                • Machine wash/dry.

                ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"karissa-v-neck-tee-s-green-1517","links":{},"stock":{"item_id":1517,"product_id":1517,"stock_id":1,"qty":58,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-s-green-1517.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1549","_score":1,"_source":{"id":1549,"sku":"WS12-S-Blue","name":"Radiant Tee-S-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                \n

                • Salmon soft scoop neck tee.
                • Athletic, semi-form fit.
                • Flat seams prevent chafing.
                • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"radiant-tee-s-blue-1549","links":{},"stock":{"item_id":1549,"product_id":1549,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-07-06 12:24:12","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-s-blue-1549.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1503","_score":1,"_source":{"id":1503,"sku":"WS09-S-White","name":"Tiffany Fitness Tee-S-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                \n

                • Teal soft scoop neck tee.
                • Contrast stitching pattern.
                • Machine wash/dry.

                ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tiffany-fitness-tee-s-white-1503","links":{},"stock":{"item_id":1503,"product_id":1503,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-s-white-1503.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1544","_score":1,"_source":{"id":1544,"sku":"WS11-XL-Yellow","name":"Diva Gym Tee-XL-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                \n

                • Bright yellow v-neck tee.
                • Moisture-wicking fabric.
                • Long-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"diva-gym-tee-xl-yellow-1544","links":{},"stock":{"item_id":1544,"product_id":1544,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xl-yellow-1544.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1514","_score":1,"_source":{"id":1514,"sku":"WS10-XS-Green","name":"Karissa V-Neck Tee-XS-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                \n

                • Pink heather soft v-neck tee.
                • Luma signature micro sleeves.
                • Semi-fitted.
                • Machine wash/dry.

                ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"karissa-v-neck-tee-xs-green-1514","links":{},"stock":{"item_id":1514,"product_id":1514,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-28 11:56:40","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xs-green-1514.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1505","_score":1,"_source":{"id":1505,"sku":"WS09-M-Red","name":"Tiffany Fitness Tee-M-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                \n

                • Teal soft scoop neck tee.
                • Contrast stitching pattern.
                • Machine wash/dry.

                ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tiffany-fitness-tee-m-red-1505","links":{},"stock":{"item_id":1505,"product_id":1505,"stock_id":1,"qty":44,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-m-red-1505.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1527","_score":1,"_source":{"id":1527,"sku":"WS10-XL-Red","name":"Karissa V-Neck Tee-XL-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                \n

                • Pink heather soft v-neck tee.
                • Luma signature micro sleeves.
                • Semi-fitted.
                • Machine wash/dry.

                ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"karissa-v-neck-tee-xl-red-1527","links":{},"stock":{"item_id":1527,"product_id":1527,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xl-red-1527.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1525","_score":1,"_source":{"id":1525,"sku":"WS10-L-Yellow","name":"Karissa V-Neck Tee-L-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                \n

                • Pink heather soft v-neck tee.
                • Luma signature micro sleeves.
                • Semi-fitted.
                • Machine wash/dry.

                ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"karissa-v-neck-tee-l-yellow-1525","links":{},"stock":{"item_id":1525,"product_id":1525,"stock_id":1,"qty":78,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-l-yellow-1525.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1506","_score":1,"_source":{"id":1506,"sku":"WS09-M-White","name":"Tiffany Fitness Tee-M-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                \n

                • Teal soft scoop neck tee.
                • Contrast stitching pattern.
                • Machine wash/dry.

                ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tiffany-fitness-tee-m-white-1506","links":{},"stock":{"item_id":1506,"product_id":1506,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-m-white-1506.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1528","_score":1,"_source":{"id":1528,"sku":"WS10-XL-Yellow","name":"Karissa V-Neck Tee-XL-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                \n

                • Pink heather soft v-neck tee.
                • Luma signature micro sleeves.
                • Semi-fitted.
                • Machine wash/dry.

                ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"karissa-v-neck-tee-xl-yellow-1528","links":{},"stock":{"item_id":1528,"product_id":1528,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xl-yellow-1528.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1515","_score":1,"_source":{"id":1515,"sku":"WS10-XS-Red","name":"Karissa V-Neck Tee-XS-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                \n

                • Pink heather soft v-neck tee.
                • Luma signature micro sleeves.
                • Semi-fitted.
                • Machine wash/dry.

                ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"karissa-v-neck-tee-xs-red-1515","links":{},"stock":{"item_id":1515,"product_id":1515,"stock_id":1,"qty":42,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xs-red-1515.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1509","_score":1,"_source":{"id":1509,"sku":"WS09-L-White","name":"Tiffany Fitness Tee-L-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                \n

                • Teal soft scoop neck tee.
                • Contrast stitching pattern.
                • Machine wash/dry.

                ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tiffany-fitness-tee-l-white-1509","links":{},"stock":{"item_id":1509,"product_id":1509,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-l-white-1509.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1507","_score":1,"_source":{"id":1507,"sku":"WS09-L-Blue","name":"Tiffany Fitness Tee-L-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                \n

                • Teal soft scoop neck tee.
                • Contrast stitching pattern.
                • Machine wash/dry.

                ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tiffany-fitness-tee-l-blue-1507","links":{},"stock":{"item_id":1507,"product_id":1507,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-l-blue-1507.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1516","_score":1,"_source":{"id":1516,"sku":"WS10-XS-Yellow","name":"Karissa V-Neck Tee-XS-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                \n

                • Pink heather soft v-neck tee.
                • Luma signature micro sleeves.
                • Semi-fitted.
                • Machine wash/dry.

                ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"karissa-v-neck-tee-xs-yellow-1516","links":{},"stock":{"item_id":1516,"product_id":1516,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xs-yellow-1516.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1519","_score":1,"_source":{"id":1519,"sku":"WS10-S-Yellow","name":"Karissa V-Neck Tee-S-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                \n

                • Pink heather soft v-neck tee.
                • Luma signature micro sleeves.
                • Semi-fitted.
                • Machine wash/dry.

                ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"karissa-v-neck-tee-s-yellow-1519","links":{},"stock":{"item_id":1519,"product_id":1519,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-s-yellow-1519.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1536","_score":1,"_source":{"id":1536,"sku":"WS11-M-Green","name":"Diva Gym Tee-M-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                \n

                • Bright yellow v-neck tee.
                • Moisture-wicking fabric.
                • Long-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"diva-gym-tee-m-green-1536","links":{},"stock":{"item_id":1536,"product_id":1536,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-08-07 19:27:21","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-m-green-1536.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1510","_score":1,"_source":{"id":1510,"sku":"WS09-XL-Blue","name":"Tiffany Fitness Tee-XL-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                \n

                • Teal soft scoop neck tee.
                • Contrast stitching pattern.
                • Machine wash/dry.

                ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tiffany-fitness-tee-xl-blue-1510","links":{},"stock":{"item_id":1510,"product_id":1510,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xl-blue-1510.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1538","_score":1,"_source":{"id":1538,"sku":"WS11-M-Yellow","name":"Diva Gym Tee-M-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                \n

                • Bright yellow v-neck tee.
                • Moisture-wicking fabric.
                • Long-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"diva-gym-tee-m-yellow-1538","links":{},"stock":{"item_id":1538,"product_id":1538,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-m-yellow-1538.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1522","_score":1,"_source":{"id":1522,"sku":"WS10-M-Yellow","name":"Karissa V-Neck Tee-M-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                \n

                • Pink heather soft v-neck tee.
                • Luma signature micro sleeves.
                • Semi-fitted.
                • Machine wash/dry.

                ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"karissa-v-neck-tee-m-yellow-1522","links":{},"stock":{"item_id":1522,"product_id":1522,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-m-yellow-1522.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1530","_score":1,"_source":{"id":1530,"sku":"WS11-XS-Green","name":"Diva Gym Tee-XS-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                \n

                • Bright yellow v-neck tee.
                • Moisture-wicking fabric.
                • Long-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"diva-gym-tee-xs-green-1530","links":{},"stock":{"item_id":1530,"product_id":1530,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-29 11:29:03","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xs-green-1530.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1518","_score":1,"_source":{"id":1518,"sku":"WS10-S-Red","name":"Karissa V-Neck Tee-S-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                \n

                • Pink heather soft v-neck tee.
                • Luma signature micro sleeves.
                • Semi-fitted.
                • Machine wash/dry.

                ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"karissa-v-neck-tee-s-red-1518","links":{},"stock":{"item_id":1518,"product_id":1518,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-s-red-1518.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1521","_score":1,"_source":{"id":1521,"sku":"WS10-M-Red","name":"Karissa V-Neck Tee-M-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                \n

                • Pink heather soft v-neck tee.
                • Luma signature micro sleeves.
                • Semi-fitted.
                • Machine wash/dry.

                ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"karissa-v-neck-tee-m-red-1521","links":{},"stock":{"item_id":1521,"product_id":1521,"stock_id":1,"qty":41,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-m-red-1521.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1526","_score":1,"_source":{"id":1526,"sku":"WS10-XL-Green","name":"Karissa V-Neck Tee-XL-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                \n

                • Pink heather soft v-neck tee.
                • Luma signature micro sleeves.
                • Semi-fitted.
                • Machine wash/dry.

                ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"karissa-v-neck-tee-xl-green-1526","links":{},"stock":{"item_id":1526,"product_id":1526,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xl-green-1526.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1545","_score":1,"_source":{"id":1545,"sku":"WS11","name":"Diva Gym Tee","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                \n

                • Bright yellow v-neck tee.
                • Moisture-wicking fabric.
                • Long-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"diva-gym-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"1","style_general":"136","pattern":"197","climate":[205,209],"slug":"diva-gym-tee-1545","links":{},"stock":{"item_id":1545,"product_id":1545,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS11-XS-Green","id":1530,"status":1,"name":"Diva Gym Tee-XS-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"167","color":"53","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","url_key":"diva-gym-tee-xs-green","msrp_display_actual_price_type":"0"},{"sku":"WS11-XS-Orange","id":1531,"status":1,"name":"Diva Gym Tee-XS-Orange","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"167","color":"56","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","url_key":"diva-gym-tee-xs-orange","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS11-XS-Yellow","id":1532,"status":1,"name":"Diva Gym Tee-XS-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"167","color":"60","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","url_key":"diva-gym-tee-xs-yellow","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS11-S-Green","id":1533,"status":1,"name":"Diva Gym Tee-S-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"168","color":"53","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","url_key":"diva-gym-tee-s-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS11-S-Orange","id":1534,"status":1,"name":"Diva Gym Tee-S-Orange","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"168","color":"56","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","url_key":"diva-gym-tee-s-orange","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS11-S-Yellow","id":1535,"status":1,"name":"Diva Gym Tee-S-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"168","color":"60","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","url_key":"diva-gym-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS11-M-Green","id":1536,"status":1,"name":"Diva Gym Tee-M-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"169","color":"53","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","url_key":"diva-gym-tee-m-green","msrp_display_actual_price_type":"0"},{"sku":"WS11-M-Orange","id":1537,"status":1,"name":"Diva Gym Tee-M-Orange","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"169","color":"56","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","url_key":"diva-gym-tee-m-orange","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS11-M-Yellow","id":1538,"status":1,"name":"Diva Gym Tee-M-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"169","color":"60","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","url_key":"diva-gym-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS11-L-Green","id":1539,"status":1,"name":"Diva Gym Tee-L-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"170","color":"53","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","url_key":"diva-gym-tee-l-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS11-L-Orange","id":1540,"status":1,"name":"Diva Gym Tee-L-Orange","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"170","color":"56","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","url_key":"diva-gym-tee-l-orange","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS11-L-Yellow","id":1541,"status":1,"name":"Diva Gym Tee-L-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"170","color":"60","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","url_key":"diva-gym-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS11-XL-Green","id":1542,"status":1,"name":"Diva Gym Tee-XL-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"171","color":"53","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","url_key":"diva-gym-tee-xl-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS11-XL-Orange","id":1543,"status":1,"name":"Diva Gym Tee-XL-Orange","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"171","color":"56","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","url_key":"diva-gym-tee-xl-orange","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS11-XL-Yellow","id":1544,"status":1,"name":"Diva Gym Tee-XL-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"171","color":"60","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","url_key":"diva-gym-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32}],"configurable_options":[{"id":211,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1545,"attribute_code":"color"},{"id":210,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1545,"attribute_code":"size"}],"color_options":[53,56,60],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-1545.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1529","_score":1,"_source":{"id":1529,"sku":"WS10","name":"Karissa V-Neck Tee","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                \n

                • Pink heather soft v-neck tee.
                • Luma signature micro sleeves.
                • Semi-fitted.
                • Machine wash/dry.

                ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"karissa-v-neck-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,153],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"karissa-v-neck-tee-1529","links":{},"stock":{"item_id":1529,"product_id":1529,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS10-XS-Green","id":1514,"status":1,"name":"Karissa V-Neck Tee-XS-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"53","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","url_key":"karissa-v-neck-tee-xs-green","msrp_display_actual_price_type":"0"},{"sku":"WS10-XS-Red","id":1515,"status":1,"name":"Karissa V-Neck Tee-XS-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"58","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","url_key":"karissa-v-neck-tee-xs-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-XS-Yellow","id":1516,"status":1,"name":"Karissa V-Neck Tee-XS-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"60","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","url_key":"karissa-v-neck-tee-xs-yellow","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-S-Green","id":1517,"status":1,"name":"Karissa V-Neck Tee-S-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"53","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","url_key":"karissa-v-neck-tee-s-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-S-Red","id":1518,"status":1,"name":"Karissa V-Neck Tee-S-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"58","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","url_key":"karissa-v-neck-tee-s-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-S-Yellow","id":1519,"status":1,"name":"Karissa V-Neck Tee-S-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"60","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","url_key":"karissa-v-neck-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-M-Green","id":1520,"status":1,"name":"Karissa V-Neck Tee-M-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"53","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","url_key":"karissa-v-neck-tee-m-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-M-Red","id":1521,"status":1,"name":"Karissa V-Neck Tee-M-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"58","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","url_key":"karissa-v-neck-tee-m-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-M-Yellow","id":1522,"status":1,"name":"Karissa V-Neck Tee-M-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"60","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","url_key":"karissa-v-neck-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-L-Green","id":1523,"status":1,"name":"Karissa V-Neck Tee-L-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"53","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","url_key":"karissa-v-neck-tee-l-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-L-Red","id":1524,"status":1,"name":"Karissa V-Neck Tee-L-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"58","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","url_key":"karissa-v-neck-tee-l-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-L-Yellow","id":1525,"status":1,"name":"Karissa V-Neck Tee-L-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"60","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","url_key":"karissa-v-neck-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-XL-Green","id":1526,"status":1,"name":"Karissa V-Neck Tee-XL-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"53","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","url_key":"karissa-v-neck-tee-xl-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-XL-Red","id":1527,"status":1,"name":"Karissa V-Neck Tee-XL-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"58","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","url_key":"karissa-v-neck-tee-xl-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-XL-Yellow","id":1528,"status":1,"name":"Karissa V-Neck Tee-XL-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"60","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","url_key":"karissa-v-neck-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32}],"configurable_options":[{"id":209,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":1529,"attribute_code":"color"},{"id":208,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1529,"attribute_code":"size"}],"color_options":[53,58,60],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-1529.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1513","_score":1,"_source":{"id":1513,"sku":"WS09","name":"Tiffany Fitness Tee","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                \n

                • Teal soft scoop neck tee.
                • Contrast stitching pattern.
                • Machine wash/dry.

                ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"tiffany-fitness-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"136","pattern":"197","climate":[205,209],"slug":"tiffany-fitness-tee-1513","links":{},"stock":{"item_id":1513,"product_id":1513,"stock_id":1,"qty":2,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS09-XS-Blue","id":1498,"status":1,"name":"Tiffany Fitness Tee-XS-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"167","color":"50","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","url_key":"tiffany-fitness-tee-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WS09-XS-Red","id":1499,"status":1,"name":"Tiffany Fitness Tee-XS-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"167","color":"58","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","url_key":"tiffany-fitness-tee-xs-red","msrp_display_actual_price_type":"0"},{"sku":"WS09-XS-White","id":1500,"status":1,"name":"Tiffany Fitness Tee-XS-White","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"167","color":"59","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","url_key":"tiffany-fitness-tee-xs-white","msrp_display_actual_price_type":"0"},{"sku":"WS09-S-Blue","id":1501,"status":1,"name":"Tiffany Fitness Tee-S-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"168","color":"50","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","url_key":"tiffany-fitness-tee-s-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS09-S-Red","id":1502,"status":1,"name":"Tiffany Fitness Tee-S-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"168","color":"58","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","url_key":"tiffany-fitness-tee-s-red","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS09-S-White","id":1503,"status":1,"name":"Tiffany Fitness Tee-S-White","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"168","color":"59","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","url_key":"tiffany-fitness-tee-s-white","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS09-M-Blue","id":1504,"status":1,"name":"Tiffany Fitness Tee-M-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"169","color":"50","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","url_key":"tiffany-fitness-tee-m-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS09-M-Red","id":1505,"status":1,"name":"Tiffany Fitness Tee-M-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"169","color":"58","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","url_key":"tiffany-fitness-tee-m-red","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS09-M-White","id":1506,"status":1,"name":"Tiffany Fitness Tee-M-White","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"169","color":"59","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","url_key":"tiffany-fitness-tee-m-white","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS09-L-Blue","id":1507,"status":1,"name":"Tiffany Fitness Tee-L-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"170","color":"50","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","url_key":"tiffany-fitness-tee-l-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS09-L-Red","id":1508,"status":1,"name":"Tiffany Fitness Tee-L-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"170","color":"58","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","url_key":"tiffany-fitness-tee-l-red","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS09-L-White","id":1509,"status":1,"name":"Tiffany Fitness Tee-L-White","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"170","color":"59","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","url_key":"tiffany-fitness-tee-l-white","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS09-XL-Blue","id":1510,"status":1,"name":"Tiffany Fitness Tee-XL-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"171","color":"50","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","url_key":"tiffany-fitness-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS09-XL-Red","id":1511,"status":1,"name":"Tiffany Fitness Tee-XL-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"171","color":"58","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","url_key":"tiffany-fitness-tee-xl-red","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS09-XL-White","id":1512,"status":1,"name":"Tiffany Fitness Tee-XL-White","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"171","color":"59","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","url_key":"tiffany-fitness-tee-xl-white","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28}],"configurable_options":[{"id":207,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":1513,"attribute_code":"color"},{"id":206,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1513,"attribute_code":"size"}],"color_options":[50,58,59],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-1513.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1557","_score":1,"_source":{"id":1557,"sku":"WS12-L-Purple","name":"Radiant Tee-L-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                \n

                • Salmon soft scoop neck tee.
                • Athletic, semi-form fit.
                • Flat seams prevent chafing.
                • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"radiant-tee-l-purple-1557","links":{},"stock":{"item_id":1557,"product_id":1557,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-l-purple-1557.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1558","_score":1,"_source":{"id":1558,"sku":"WS12-XL-Blue","name":"Radiant Tee-XL-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                \n

                • Salmon soft scoop neck tee.
                • Athletic, semi-form fit.
                • Flat seams prevent chafing.
                • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"radiant-tee-xl-blue-1558","links":{},"stock":{"item_id":1558,"product_id":1558,"stock_id":1,"qty":69,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xl-blue-1558.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1553","_score":1,"_source":{"id":1553,"sku":"WS12-M-Orange","name":"Radiant Tee-M-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                \n

                • Salmon soft scoop neck tee.
                • Athletic, semi-form fit.
                • Flat seams prevent chafing.
                • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"radiant-tee-m-orange-1553","links":{},"stock":{"item_id":1553,"product_id":1553,"stock_id":1,"qty":74,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-m-orange-1553.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1565","_score":1,"_source":{"id":1565,"sku":"WS01-S-Black","name":"Gwyn Endurance Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                \n

                • Short-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gwyn-endurance-tee-s-black-1565","links":{},"stock":{"item_id":1565,"product_id":1565,"stock_id":1,"qty":8,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-s-black-1565.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1554","_score":1,"_source":{"id":1554,"sku":"WS12-M-Purple","name":"Radiant Tee-M-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                \n

                • Salmon soft scoop neck tee.
                • Athletic, semi-form fit.
                • Flat seams prevent chafing.
                • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"radiant-tee-m-purple-1554","links":{},"stock":{"item_id":1554,"product_id":1554,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-m-purple-1554.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1559","_score":1,"_source":{"id":1559,"sku":"WS12-XL-Orange","name":"Radiant Tee-XL-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                \n

                • Salmon soft scoop neck tee.
                • Athletic, semi-form fit.
                • Flat seams prevent chafing.
                • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"radiant-tee-xl-orange-1559","links":{},"stock":{"item_id":1559,"product_id":1559,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xl-orange-1559.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1570","_score":1,"_source":{"id":1570,"sku":"WS01-M-Yellow","name":"Gwyn Endurance Tee-M-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2019-06-18 10:57:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                \r\n

                • Short-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-m-yellow","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"169","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"gwyn-endurance-tee-m-yellow-1570","links":{},"stock":{"item_id":1570,"product_id":1570,"stock_id":1,"qty":26,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-m-yellow-1570.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1576","_score":1,"_source":{"id":1576,"sku":"WS01-XL-Yellow","name":"Gwyn Endurance Tee-XL-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                \n

                • Short-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gwyn-endurance-tee-xl-yellow-1576","links":{},"stock":{"item_id":1576,"product_id":1576,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xl-yellow-1576.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1572","_score":1,"_source":{"id":1572,"sku":"WS01-L-Green","name":"Gwyn Endurance Tee-L-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                \n

                • Short-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gwyn-endurance-tee-l-green-1572","links":{},"stock":{"item_id":1572,"product_id":1572,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-l-green-1572.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1568","_score":1,"_source":{"id":1568,"sku":"WS01-M-Black","name":"Gwyn Endurance Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                \n

                • Short-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gwyn-endurance-tee-m-black-1568","links":{},"stock":{"item_id":1568,"product_id":1568,"stock_id":1,"qty":24,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-m-black-1568.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1566","_score":1,"_source":{"id":1566,"sku":"WS01-S-Green","name":"Gwyn Endurance Tee-S-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                \n

                • Short-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gwyn-endurance-tee-s-green-1566","links":{},"stock":{"item_id":1566,"product_id":1566,"stock_id":1,"qty":53,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-s-green-1566.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1586","_score":1,"_source":{"id":1586,"sku":"WS05-M-Yellow","name":"Desiree Fitness Tee-M-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                \n

                • Short-Sleeves.
                • Performance fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"desiree-fitness-tee-m-yellow-1586","links":{},"stock":{"item_id":1586,"product_id":1586,"stock_id":1,"qty":47,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-m-yellow-1586.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1569","_score":1,"_source":{"id":1569,"sku":"WS01-M-Green","name":"Gwyn Endurance Tee-M-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                \n

                • Short-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gwyn-endurance-tee-m-green-1569","links":{},"stock":{"item_id":1569,"product_id":1569,"stock_id":1,"qty":54,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-m-green-1569.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1531","_score":1,"_source":{"id":1531,"sku":"WS11-XS-Orange","name":"Diva Gym Tee-XS-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                \n

                • Bright yellow v-neck tee.
                • Moisture-wicking fabric.
                • Long-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"diva-gym-tee-xs-orange-1531","links":{},"stock":{"item_id":1531,"product_id":1531,"stock_id":1,"qty":45,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xs-orange-1531.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1539","_score":1,"_source":{"id":1539,"sku":"WS11-L-Green","name":"Diva Gym Tee-L-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                \n

                • Bright yellow v-neck tee.
                • Moisture-wicking fabric.
                • Long-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"diva-gym-tee-l-green-1539","links":{},"stock":{"item_id":1539,"product_id":1539,"stock_id":1,"qty":77,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-l-green-1539.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1540","_score":1,"_source":{"id":1540,"sku":"WS11-L-Orange","name":"Diva Gym Tee-L-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                \n

                • Bright yellow v-neck tee.
                • Moisture-wicking fabric.
                • Long-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"diva-gym-tee-l-orange-1540","links":{},"stock":{"item_id":1540,"product_id":1540,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-l-orange-1540.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1535","_score":1,"_source":{"id":1535,"sku":"WS11-S-Yellow","name":"Diva Gym Tee-S-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                \n

                • Bright yellow v-neck tee.
                • Moisture-wicking fabric.
                • Long-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"diva-gym-tee-s-yellow-1535","links":{},"stock":{"item_id":1535,"product_id":1535,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-s-yellow-1535.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1534","_score":1,"_source":{"id":1534,"sku":"WS11-S-Orange","name":"Diva Gym Tee-S-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                \n

                • Bright yellow v-neck tee.
                • Moisture-wicking fabric.
                • Long-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"diva-gym-tee-s-orange-1534","links":{},"stock":{"item_id":1534,"product_id":1534,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-s-orange-1534.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1532","_score":1,"_source":{"id":1532,"sku":"WS11-XS-Yellow","name":"Diva Gym Tee-XS-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                \n

                • Bright yellow v-neck tee.
                • Moisture-wicking fabric.
                • Long-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"diva-gym-tee-xs-yellow-1532","links":{},"stock":{"item_id":1532,"product_id":1532,"stock_id":1,"qty":79,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xs-yellow-1532.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1542","_score":1,"_source":{"id":1542,"sku":"WS11-XL-Green","name":"Diva Gym Tee-XL-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                \n

                • Bright yellow v-neck tee.
                • Moisture-wicking fabric.
                • Long-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"diva-gym-tee-xl-green-1542","links":{},"stock":{"item_id":1542,"product_id":1542,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xl-green-1542.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1524","_score":1,"_source":{"id":1524,"sku":"WS10-L-Red","name":"Karissa V-Neck Tee-L-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                \n

                • Pink heather soft v-neck tee.
                • Luma signature micro sleeves.
                • Semi-fitted.
                • Machine wash/dry.

                ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"karissa-v-neck-tee-l-red-1524","links":{},"stock":{"item_id":1524,"product_id":1524,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-l-red-1524.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1547","_score":1,"_source":{"id":1547,"sku":"WS12-XS-Orange","name":"Radiant Tee-XS-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                \n

                • Salmon soft scoop neck tee.
                • Athletic, semi-form fit.
                • Flat seams prevent chafing.
                • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"radiant-tee-xs-orange-1547","links":{},"stock":{"item_id":1547,"product_id":1547,"stock_id":1,"qty":71,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xs-orange-1547.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1546","_score":1,"_source":{"id":1546,"sku":"WS12-XS-Blue","name":"Radiant Tee-XS-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                \n

                • Salmon soft scoop neck tee.
                • Athletic, semi-form fit.
                • Flat seams prevent chafing.
                • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"radiant-tee-xs-blue-1546","links":{},"stock":{"item_id":1546,"product_id":1546,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-10 16:42:32","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xs-blue-1546.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1541","_score":1,"_source":{"id":1541,"sku":"WS11-L-Yellow","name":"Diva Gym Tee-L-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                \n

                • Bright yellow v-neck tee.
                • Moisture-wicking fabric.
                • Long-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"diva-gym-tee-l-yellow-1541","links":{},"stock":{"item_id":1541,"product_id":1541,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-l-yellow-1541.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1543","_score":1,"_source":{"id":1543,"sku":"WS11-XL-Orange","name":"Diva Gym Tee-XL-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                \n

                • Bright yellow v-neck tee.
                • Moisture-wicking fabric.
                • Long-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"diva-gym-tee-xl-orange-1543","links":{},"stock":{"item_id":1543,"product_id":1543,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xl-orange-1543.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1520","_score":1,"_source":{"id":1520,"sku":"WS10-M-Green","name":"Karissa V-Neck Tee-M-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                \n

                • Pink heather soft v-neck tee.
                • Luma signature micro sleeves.
                • Semi-fitted.
                • Machine wash/dry.

                ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"karissa-v-neck-tee-m-green-1520","links":{},"stock":{"item_id":1520,"product_id":1520,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-m-green-1520.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1548","_score":1,"_source":{"id":1548,"sku":"WS12-XS-Purple","name":"Radiant Tee-XS-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                \n

                • Salmon soft scoop neck tee.
                • Athletic, semi-form fit.
                • Flat seams prevent chafing.
                • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"radiant-tee-xs-purple-1548","links":{},"stock":{"item_id":1548,"product_id":1548,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xs-purple-1548.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1537","_score":1,"_source":{"id":1537,"sku":"WS11-M-Orange","name":"Diva Gym Tee-M-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                \n

                • Bright yellow v-neck tee.
                • Moisture-wicking fabric.
                • Long-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"diva-gym-tee-m-orange-1537","links":{},"stock":{"item_id":1537,"product_id":1537,"stock_id":1,"qty":65,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-m-orange-1537.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1508","_score":1,"_source":{"id":1508,"sku":"WS09-L-Red","name":"Tiffany Fitness Tee-L-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                \n

                • Teal soft scoop neck tee.
                • Contrast stitching pattern.
                • Machine wash/dry.

                ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tiffany-fitness-tee-l-red-1508","links":{},"stock":{"item_id":1508,"product_id":1508,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-l-red-1508.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1523","_score":1,"_source":{"id":1523,"sku":"WS10-L-Green","name":"Karissa V-Neck Tee-L-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                \n

                • Pink heather soft v-neck tee.
                • Luma signature micro sleeves.
                • Semi-fitted.
                • Machine wash/dry.

                ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"karissa-v-neck-tee-l-green-1523","links":{},"stock":{"item_id":1523,"product_id":1523,"stock_id":1,"qty":61,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-l-green-1523.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1552","_score":1,"_source":{"id":1552,"sku":"WS12-M-Blue","name":"Radiant Tee-M-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                \n

                • Salmon soft scoop neck tee.
                • Athletic, semi-form fit.
                • Flat seams prevent chafing.
                • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"radiant-tee-m-blue-1552","links":{},"stock":{"item_id":1552,"product_id":1552,"stock_id":1,"qty":37,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-m-blue-1552.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1551","_score":1,"_source":{"id":1551,"sku":"WS12-S-Purple","name":"Radiant Tee-S-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                \n

                • Salmon soft scoop neck tee.
                • Athletic, semi-form fit.
                • Flat seams prevent chafing.
                • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"radiant-tee-s-purple-1551","links":{},"stock":{"item_id":1551,"product_id":1551,"stock_id":1,"qty":73,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-s-purple-1551.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1555","_score":1,"_source":{"id":1555,"sku":"WS12-L-Blue","name":"Radiant Tee-L-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                \n

                • Salmon soft scoop neck tee.
                • Athletic, semi-form fit.
                • Flat seams prevent chafing.
                • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"radiant-tee-l-blue-1555","links":{},"stock":{"item_id":1555,"product_id":1555,"stock_id":1,"qty":73,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-l-blue-1555.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1574","_score":1,"_source":{"id":1574,"sku":"WS01-XL-Black","name":"Gwyn Endurance Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                \n

                • Short-Sleeves.
                • Machine wash/line dry.

                ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gwyn-endurance-tee-xl-black-1574","links":{},"stock":{"item_id":1574,"product_id":1574,"stock_id":1,"qty":54,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xl-black-1574.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1512","_score":1,"_source":{"id":1512,"sku":"WS09-XL-White","name":"Tiffany Fitness Tee-XL-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                \n

                • Teal soft scoop neck tee.
                • Contrast stitching pattern.
                • Machine wash/dry.

                ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tiffany-fitness-tee-xl-white-1512","links":{},"stock":{"item_id":1512,"product_id":1512,"stock_id":1,"qty":39,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xl-white-1512.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1861","_score":1,"_source":{"id":1861,"sku":"WP07-28-Blue","name":"Aeon Capri-28-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                \n

                • Black capris with teal accents.
                • Thick, 3\" flattering waistband.
                • Media pocket on inner waistband.
                • Dry wick finish for ultimate comfort and dryness.

                ","image":"/w/p/wp07-blue_main.jpg","small_image":"/w/p/wp07-blue_main.jpg","thumbnail":"/w/p/wp07-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"aeon-capri-28-blue-1861","links":{},"stock":{"item_id":1861,"product_id":1861,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-28-blue-1861.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1886","_score":1,"_source":{"id":1886,"sku":"WP10-29-White","name":"Daria Bikram Pant-29-White","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                \n

                • Heather gray capris with pink striped waist.
                • Flatlock seams.
                • Interior pocket.

                ","image":"/w/p/wp10-white_main.jpg","small_image":"/w/p/wp10-white_main.jpg","thumbnail":"/w/p/wp10-white_main.jpg","color":"59","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"daria-bikram-pant-29-white-1886","links":{},"stock":{"item_id":1886,"product_id":1886,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-29-white-1886.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1881","_score":1,"_source":{"id":1881,"sku":"WP10-28-Black","name":"Daria Bikram Pant-28-Black","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                \n

                • Heather gray capris with pink striped waist.
                • Flatlock seams.
                • Interior pocket.

                ","image":"/w/p/wp10-black_main.jpg","small_image":"/w/p/wp10-black_main.jpg","thumbnail":"/w/p/wp10-black_main.jpg","color":"49","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"daria-bikram-pant-28-black-1881","links":{},"stock":{"item_id":1881,"product_id":1881,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-28-black-1881.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1898","_score":1,"_source":{"id":1898,"sku":"WP12-29-Blue","name":"Deirdre Relaxed-Fit Capri-29-Blue","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                \n

                • Heather gray capris with mint green waist & accents.
                • Comfortable, relaxed fit with high rise.
                • Moisture-wicking, 4-way stretch construction.
                • Lined with mesh for better support.
                • Hidden pocket at waistband.
                • Flatlock seams and lined gusset for comfort.

                ","image":"/w/p/wp12-blue_main.jpg","small_image":"/w/p/wp12-blue_main.jpg","thumbnail":"/w/p/wp12-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"deirdre-relaxed-fit-capri-29-blue-1898","links":{},"stock":{"item_id":1898,"product_id":1898,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-29-blue-1898.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1884","_score":1,"_source":{"id":1884,"sku":"WP10-29-Black","name":"Daria Bikram Pant-29-Black","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                \n

                • Heather gray capris with pink striped waist.
                • Flatlock seams.
                • Interior pocket.

                ","image":"/w/p/wp10-black_main.jpg","small_image":"/w/p/wp10-black_main.jpg","thumbnail":"/w/p/wp10-black_main.jpg","color":"49","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"daria-bikram-pant-29-black-1884","links":{},"stock":{"item_id":1884,"product_id":1884,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-29-black-1884.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1868","_score":1,"_source":{"id":1868,"sku":"WP08-28-Green","name":"Bardot Capri-28-Green","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                \n

                • Black capris with pink waistband.
                • Cropped leggings.
                • Waistband drawcord.
                • Flat, thin and flattering.
                • Made with organic fabric.

                ","image":"/w/p/wp08-green_main.jpg","small_image":"/w/p/wp08-green_main.jpg","thumbnail":"/w/p/wp08-green_main.jpg","color":"53","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bardot-capri-28-green-1868","links":{},"stock":{"item_id":1868,"product_id":1868,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-28-green-1868.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1870","_score":1,"_source":{"id":1870,"sku":"WP08-29-Black","name":"Bardot Capri-29-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                \n

                • Black capris with pink waistband.
                • Cropped leggings.
                • Waistband drawcord.
                • Flat, thin and flattering.
                • Made with organic fabric.

                ","image":"/w/p/wp08-black_main.jpg","small_image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bardot-capri-29-black-1870","links":{},"stock":{"item_id":1870,"product_id":1870,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-29-black-1870.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1885","_score":1,"_source":{"id":1885,"sku":"WP10-29-Gray","name":"Daria Bikram Pant-29-Gray","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                \n

                • Heather gray capris with pink striped waist.
                • Flatlock seams.
                • Interior pocket.

                ","image":"/w/p/wp10-gray_main.jpg","small_image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","color":"52","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"daria-bikram-pant-29-gray-1885","links":{},"stock":{"item_id":1885,"product_id":1885,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-29-gray-1885.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1851","_score":1,"_source":{"id":1851,"sku":"WP05-29-Red","name":"Sahara Leggings-29-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                \n

                • Pinstripe legging with rouched ankles.
                • Secret pocket at waistband.
                • Flat seams for comfort.
                • Shaped fit with low rise.
                • 4-way stretch, moisture-wicking material.

                ","image":"/w/p/wp05-red_main.jpg","small_image":"/w/p/wp05-red_main.jpg","thumbnail":"/w/p/wp05-red_main.jpg","color":"58","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sahara-leggings-29-red-1851","links":{},"stock":{"item_id":1851,"product_id":1851,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-29-red-1851.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1896","_score":1,"_source":{"id":1896,"sku":"WP12-28-Gray","name":"Deirdre Relaxed-Fit Capri-28-Gray","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                \n

                • Heather gray capris with mint green waist & accents.
                • Comfortable, relaxed fit with high rise.
                • Moisture-wicking, 4-way stretch construction.
                • Lined with mesh for better support.
                • Hidden pocket at waistband.
                • Flatlock seams and lined gusset for comfort.

                ","image":"/w/p/wp12-gray_main.jpg","small_image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","color":"52","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"deirdre-relaxed-fit-capri-28-gray-1896","links":{},"stock":{"item_id":1896,"product_id":1896,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-28-gray-1896.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1874","_score":1,"_source":{"id":1874,"sku":"WP09-28-Black","name":"Carina Basic Capri-28-Black","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                \n

                • Black capris with rouching detail.
                • 93% cotton, 7% spandex.
                • Elasticized waistband.
                • Reinforced seams with exposed topstitching.
                • Soft, medium-weight jersey with added stretch.

                ","image":"/w/p/wp09-black_main.jpg","small_image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"carina-basic-capri-28-black-1874","links":{},"stock":{"item_id":1874,"product_id":1874,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_outfit.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-28-black-1874.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1889","_score":1,"_source":{"id":1889,"sku":"WP11-28-Green","name":"Sylvia Capri-28-Green","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                \n

                • Green striped capri.
                • Strategic side seam
                • Comfort gusset with lining.
                • Flat seaming.
                • Wide waistband.
                • Moisture wicking.

                ","image":"/w/p/wp11-green_main.jpg","small_image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","color":"53","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sylvia-capri-28-green-1889","links":{},"stock":{"item_id":1889,"product_id":1889,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-28-green-1889.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1890","_score":1,"_source":{"id":1890,"sku":"WP11-28-Red","name":"Sylvia Capri-28-Red","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                \n

                • Green striped capri.
                • Strategic side seam
                • Comfort gusset with lining.
                • Flat seaming.
                • Wide waistband.
                • Moisture wicking.

                ","image":"/w/p/wp11-red_main.jpg","small_image":"/w/p/wp11-red_main.jpg","thumbnail":"/w/p/wp11-red_main.jpg","color":"58","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sylvia-capri-28-red-1890","links":{},"stock":{"item_id":1890,"product_id":1890,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-28-red-1890.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1900","_score":1,"_source":{"id":1900,"sku":"WP12-29-Green","name":"Deirdre Relaxed-Fit Capri-29-Green","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                \n

                • Heather gray capris with mint green waist & accents.
                • Comfortable, relaxed fit with high rise.
                • Moisture-wicking, 4-way stretch construction.
                • Lined with mesh for better support.
                • Hidden pocket at waistband.
                • Flatlock seams and lined gusset for comfort.

                ","image":"/w/p/wp12-green_main.jpg","small_image":"/w/p/wp12-green_main.jpg","thumbnail":"/w/p/wp12-green_main.jpg","color":"53","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"deirdre-relaxed-fit-capri-29-green-1900","links":{},"stock":{"item_id":1900,"product_id":1900,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-29-green-1900.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1892","_score":1,"_source":{"id":1892,"sku":"WP11-29-Green","name":"Sylvia Capri-29-Green","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                \n

                • Green striped capri.
                • Strategic side seam
                • Comfort gusset with lining.
                • Flat seaming.
                • Wide waistband.
                • Moisture wicking.

                ","image":"/w/p/wp11-green_main.jpg","small_image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","color":"53","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sylvia-capri-29-green-1892","links":{},"stock":{"item_id":1892,"product_id":1892,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-29-green-1892.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1895","_score":1,"_source":{"id":1895,"sku":"WP12-28-Blue","name":"Deirdre Relaxed-Fit Capri-28-Blue","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                \n

                • Heather gray capris with mint green waist & accents.
                • Comfortable, relaxed fit with high rise.
                • Moisture-wicking, 4-way stretch construction.
                • Lined with mesh for better support.
                • Hidden pocket at waistband.
                • Flatlock seams and lined gusset for comfort.

                ","image":"/w/p/wp12-blue_main.jpg","small_image":"/w/p/wp12-blue_main.jpg","thumbnail":"/w/p/wp12-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"deirdre-relaxed-fit-capri-28-blue-1895","links":{},"stock":{"item_id":1895,"product_id":1895,"stock_id":1,"qty":80,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-28-blue-1895.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1897","_score":1,"_source":{"id":1897,"sku":"WP12-28-Green","name":"Deirdre Relaxed-Fit Capri-28-Green","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                \n

                • Heather gray capris with mint green waist & accents.
                • Comfortable, relaxed fit with high rise.
                • Moisture-wicking, 4-way stretch construction.
                • Lined with mesh for better support.
                • Hidden pocket at waistband.
                • Flatlock seams and lined gusset for comfort.

                ","image":"/w/p/wp12-green_main.jpg","small_image":"/w/p/wp12-green_main.jpg","thumbnail":"/w/p/wp12-green_main.jpg","color":"53","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"deirdre-relaxed-fit-capri-28-green-1897","links":{},"stock":{"item_id":1897,"product_id":1897,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-28-green-1897.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1893","_score":1,"_source":{"id":1893,"sku":"WP11-29-Red","name":"Sylvia Capri-29-Red","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                \n

                • Green striped capri.
                • Strategic side seam
                • Comfort gusset with lining.
                • Flat seaming.
                • Wide waistband.
                • Moisture wicking.

                ","image":"/w/p/wp11-red_main.jpg","small_image":"/w/p/wp11-red_main.jpg","thumbnail":"/w/p/wp11-red_main.jpg","color":"58","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sylvia-capri-29-red-1893","links":{},"stock":{"item_id":1893,"product_id":1893,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-29-red-1893.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1852","_score":1,"_source":{"id":1852,"sku":"WP05","name":"Sahara Leggings","attribute_set_id":10,"price":75,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                \n

                • Pinstripe legging with rouched ankles.
                • Secret pocket at waistband.
                • Flat seams for comfort.
                • Shaped fit with low rise.
                • 4-way stretch, moisture-wicking material.

                ","image":"/w/p/wp05-gray_main.jpg","small_image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sahara-leggings","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[109,113,115],"pattern":"197","climate":[204,205,208],"slug":"sahara-leggings-1852","links":{},"stock":{"item_id":1852,"product_id":1852,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP05-28-Blue","id":1846,"status":1,"name":"Sahara Leggings-28-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"50","image":"/w/p/wp05-blue_main.jpg","small_image":"/w/p/wp05-blue_main.jpg","thumbnail":"/w/p/wp05-blue_main.jpg","url_key":"sahara-leggings-28-blue","msrp_display_actual_price_type":"0"},{"sku":"WP05-28-Gray","id":1847,"status":1,"name":"Sahara Leggings-28-Gray","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"52","image":"/w/p/wp05-gray_main.jpg","small_image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","url_key":"sahara-leggings-28-gray","msrp_display_actual_price_type":"0"},{"sku":"WP05-28-Red","id":1848,"status":1,"name":"Sahara Leggings-28-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"58","image":"/w/p/wp05-red_main.jpg","small_image":"/w/p/wp05-red_main.jpg","thumbnail":"/w/p/wp05-red_main.jpg","url_key":"sahara-leggings-28-red","msrp_display_actual_price_type":"0"},{"sku":"WP05-29-Blue","id":1849,"status":1,"name":"Sahara Leggings-29-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"50","image":"/w/p/wp05-blue_main.jpg","small_image":"/w/p/wp05-blue_main.jpg","thumbnail":"/w/p/wp05-blue_main.jpg","url_key":"sahara-leggings-29-blue","msrp_display_actual_price_type":"0"},{"sku":"WP05-29-Gray","id":1850,"status":1,"name":"Sahara Leggings-29-Gray","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"52","image":"/w/p/wp05-gray_main.jpg","small_image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","url_key":"sahara-leggings-29-gray","msrp_display_actual_price_type":"0"},{"sku":"WP05-29-Red","id":1851,"status":1,"name":"Sahara Leggings-29-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"58","image":"/w/p/wp05-red_main.jpg","small_image":"/w/p/wp05-red_main.jpg","thumbnail":"/w/p/wp05-red_main.jpg","url_key":"sahara-leggings-29-red","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75}],"configurable_options":[{"id":255,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"}],"product_id":1852,"attribute_code":"color"},{"id":254,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1852,"attribute_code":"size"}],"color_options":[50,52,58],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-1852.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1859","_score":1,"_source":{"id":1859,"sku":"WP06","name":"Diana Tights","attribute_set_id":10,"price":59,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                \n

                • Black legging with slate details.
                • Flat-lock, chafe-free side seams.
                • Vented gusset.
                • Secret interior pocket.
                • Sustainable and recycled fabric.

                ","image":"/w/p/wp06-black_main.jpg","small_image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"diana-tights","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[150,38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[107,109],"pattern":"197","climate":[202,204,205,206,208,209],"slug":"diana-tights-1859","links":{},"stock":{"item_id":1859,"product_id":1859,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_outfit.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP06-28-Black","id":1853,"status":1,"name":"Diana Tights-28-Black","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"49","image":"/w/p/wp06-black_main.jpg","small_image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","url_key":"diana-tights-28-black","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WP06-28-Blue","id":1854,"status":1,"name":"Diana Tights-28-Blue","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"50","image":"/w/p/wp06-blue_main.jpg","small_image":"/w/p/wp06-blue_main.jpg","thumbnail":"/w/p/wp06-blue_main.jpg","url_key":"diana-tights-28-blue","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WP06-28-Orange","id":1855,"status":1,"name":"Diana Tights-28-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"56","image":"/w/p/wp06-orange_main.jpg","small_image":"/w/p/wp06-orange_main.jpg","thumbnail":"/w/p/wp06-orange_main.jpg","url_key":"diana-tights-28-orange","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WP06-29-Black","id":1856,"status":1,"name":"Diana Tights-29-Black","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"49","image":"/w/p/wp06-black_main.jpg","small_image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","url_key":"diana-tights-29-black","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WP06-29-Blue","id":1857,"status":1,"name":"Diana Tights-29-Blue","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"50","image":"/w/p/wp06-blue_main.jpg","small_image":"/w/p/wp06-blue_main.jpg","thumbnail":"/w/p/wp06-blue_main.jpg","url_key":"diana-tights-29-blue","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WP06-29-Orange","id":1858,"status":1,"name":"Diana Tights-29-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"56","image":"/w/p/wp06-orange_main.jpg","small_image":"/w/p/wp06-orange_main.jpg","thumbnail":"/w/p/wp06-orange_main.jpg","url_key":"diana-tights-29-orange","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59}],"configurable_options":[{"id":257,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":1859,"attribute_code":"color"},{"id":256,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1859,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-1859.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1866","_score":1,"_source":{"id":1866,"sku":"WP07","name":"Aeon Capri","attribute_set_id":10,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                \n

                • Black capris with teal accents.
                • Thick, 3\" flattering waistband.
                • Media pocket on inner waistband.
                • Dry wick finish for ultimate comfort and dryness.

                ","image":"/w/p/wp07-black_main.jpg","small_image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"aeon-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,150,154],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"107","pattern":"195","climate":[205,212,206],"slug":"aeon-capri-1866","links":{},"stock":{"item_id":1866,"product_id":1866,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP07-28-Black","id":1860,"status":1,"name":"Aeon Capri-28-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"49","image":"/w/p/wp07-black_main.jpg","small_image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","url_key":"aeon-capri-28-black","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP07-28-Blue","id":1861,"status":1,"name":"Aeon Capri-28-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"50","image":"/w/p/wp07-blue_main.jpg","small_image":"/w/p/wp07-blue_main.jpg","thumbnail":"/w/p/wp07-blue_main.jpg","url_key":"aeon-capri-28-blue","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP07-28-Orange","id":1862,"status":1,"name":"Aeon Capri-28-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"56","image":"/w/p/wp07-orange_main.jpg","small_image":"/w/p/wp07-orange_main.jpg","thumbnail":"/w/p/wp07-orange_main.jpg","url_key":"aeon-capri-28-orange","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP07-29-Black","id":1863,"status":1,"name":"Aeon Capri-29-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"49","image":"/w/p/wp07-black_main.jpg","small_image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","url_key":"aeon-capri-29-black","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP07-29-Blue","id":1864,"status":1,"name":"Aeon Capri-29-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"50","image":"/w/p/wp07-blue_main.jpg","small_image":"/w/p/wp07-blue_main.jpg","thumbnail":"/w/p/wp07-blue_main.jpg","url_key":"aeon-capri-29-blue","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP07-29-Orange","id":1865,"status":1,"name":"Aeon Capri-29-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"56","image":"/w/p/wp07-orange_main.jpg","small_image":"/w/p/wp07-orange_main.jpg","thumbnail":"/w/p/wp07-orange_main.jpg","url_key":"aeon-capri-29-orange","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48}],"configurable_options":[{"id":259,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":1866,"attribute_code":"color"},{"id":258,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1866,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-1866.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1887","_score":1,"_source":{"id":1887,"sku":"WP10","name":"Daria Bikram Pant","attribute_set_id":10,"price":51,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                \n

                • Heather gray capris with pink striped waist.
                • Flatlock seams.
                • Interior pocket.

                ","image":"/w/p/wp10-gray_main.jpg","small_image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"daria-bikram-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,151],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"107","pattern":"195","climate":[202,205,206,208,209],"slug":"daria-bikram-pant-1887","links":{},"stock":{"item_id":1887,"product_id":1887,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP10-28-Black","id":1881,"status":1,"name":"Daria Bikram Pant-28-Black","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","36","2"],"size":"172","color":"49","image":"/w/p/wp10-black_main.jpg","small_image":"/w/p/wp10-black_main.jpg","thumbnail":"/w/p/wp10-black_main.jpg","url_key":"daria-bikram-pant-28-black","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"WP10-28-Gray","id":1882,"status":1,"name":"Daria Bikram Pant-28-Gray","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","36","2"],"size":"172","color":"52","image":"/w/p/wp10-gray_main.jpg","small_image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","url_key":"daria-bikram-pant-28-gray","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"WP10-28-White","id":1883,"status":1,"name":"Daria Bikram Pant-28-White","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","36","2"],"size":"172","color":"59","image":"/w/p/wp10-white_main.jpg","small_image":"/w/p/wp10-white_main.jpg","thumbnail":"/w/p/wp10-white_main.jpg","url_key":"daria-bikram-pant-28-white","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"WP10-29-Black","id":1884,"status":1,"name":"Daria Bikram Pant-29-Black","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","36","2"],"size":"173","color":"49","image":"/w/p/wp10-black_main.jpg","small_image":"/w/p/wp10-black_main.jpg","thumbnail":"/w/p/wp10-black_main.jpg","url_key":"daria-bikram-pant-29-black","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"WP10-29-Gray","id":1885,"status":1,"name":"Daria Bikram Pant-29-Gray","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","36","2"],"size":"173","color":"52","image":"/w/p/wp10-gray_main.jpg","small_image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","url_key":"daria-bikram-pant-29-gray","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"WP10-29-White","id":1886,"status":1,"name":"Daria Bikram Pant-29-White","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","36","2"],"size":"173","color":"59","image":"/w/p/wp10-white_main.jpg","small_image":"/w/p/wp10-white_main.jpg","thumbnail":"/w/p/wp10-white_main.jpg","url_key":"daria-bikram-pant-29-white","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51}],"configurable_options":[{"id":265,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":59,"label":"White"}],"product_id":1887,"attribute_code":"color"},{"id":264,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1887,"attribute_code":"size"}],"color_options":[49,52,59],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-1887.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1880","_score":1,"_source":{"id":1880,"sku":"WP09","name":"Carina Basic Capri","attribute_set_id":10,"price":51,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                \n

                • Black capris with rouching detail.
                • 93% cotton, 7% spandex.
                • Elasticized waistband.
                • Reinforced seams with exposed topstitching.
                • Soft, medium-weight jersey with added stretch.

                ","image":"/w/p/wp09-black_main.jpg","small_image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"carina-basic-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[107,108,109],"pattern":"197","climate":[202,205,206,208,209],"slug":"carina-basic-capri-1880","links":{},"stock":{"item_id":1880,"product_id":1880,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_outfit.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP09-28-Black","id":1874,"status":1,"name":"Carina Basic Capri-28-Black","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"49","image":"/w/p/wp09-black_main.jpg","small_image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","url_key":"carina-basic-capri-28-black","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"WP09-28-Blue","id":1875,"status":1,"name":"Carina Basic Capri-28-Blue","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"50","image":"/w/p/wp09-blue_main.jpg","small_image":"/w/p/wp09-blue_main.jpg","thumbnail":"/w/p/wp09-blue_main.jpg","url_key":"carina-basic-capri-28-blue","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"WP09-28-Purple","id":1876,"status":1,"name":"Carina Basic Capri-28-Purple","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"57","image":"/w/p/wp09-purple_main.jpg","small_image":"/w/p/wp09-purple_main.jpg","thumbnail":"/w/p/wp09-purple_main.jpg","url_key":"carina-basic-capri-28-purple","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"WP09-29-Black","id":1877,"status":1,"name":"Carina Basic Capri-29-Black","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"49","image":"/w/p/wp09-black_main.jpg","small_image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","url_key":"carina-basic-capri-29-black","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"WP09-29-Blue","id":1878,"status":1,"name":"Carina Basic Capri-29-Blue","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"50","image":"/w/p/wp09-blue_main.jpg","small_image":"/w/p/wp09-blue_main.jpg","thumbnail":"/w/p/wp09-blue_main.jpg","url_key":"carina-basic-capri-29-blue","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"WP09-29-Purple","id":1879,"status":1,"name":"Carina Basic Capri-29-Purple","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"57","image":"/w/p/wp09-purple_main.jpg","small_image":"/w/p/wp09-purple_main.jpg","thumbnail":"/w/p/wp09-purple_main.jpg","url_key":"carina-basic-capri-29-purple","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51}],"configurable_options":[{"id":263,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":1880,"attribute_code":"color"},{"id":262,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1880,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-1880.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1894","_score":1,"_source":{"id":1894,"sku":"WP11","name":"Sylvia Capri","attribute_set_id":10,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                \n

                • Green striped capri.
                • Strategic side seam
                • Comfort gusset with lining.
                • Flat seaming.
                • Wide waistband.
                • Moisture wicking.

                ","image":"/w/p/wp11-green_main.jpg","small_image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sylvia-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,154,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"107","pattern":"199","climate":"205","slug":"sylvia-capri-1894","links":{},"stock":{"item_id":1894,"product_id":1894,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP11-28-Blue","id":1888,"status":1,"name":"Sylvia Capri-28-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"50","image":"/w/p/wp11-blue_main.jpg","small_image":"/w/p/wp11-blue_main.jpg","thumbnail":"/w/p/wp11-blue_main.jpg","url_key":"sylvia-capri-28-blue","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WP11-28-Green","id":1889,"status":1,"name":"Sylvia Capri-28-Green","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"53","image":"/w/p/wp11-green_main.jpg","small_image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","url_key":"sylvia-capri-28-green","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WP11-28-Red","id":1890,"status":1,"name":"Sylvia Capri-28-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"58","image":"/w/p/wp11-red_main.jpg","small_image":"/w/p/wp11-red_main.jpg","thumbnail":"/w/p/wp11-red_main.jpg","url_key":"sylvia-capri-28-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WP11-29-Blue","id":1891,"status":1,"name":"Sylvia Capri-29-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"50","image":"/w/p/wp11-blue_main.jpg","small_image":"/w/p/wp11-blue_main.jpg","thumbnail":"/w/p/wp11-blue_main.jpg","url_key":"sylvia-capri-29-blue","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WP11-29-Green","id":1892,"status":1,"name":"Sylvia Capri-29-Green","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"53","image":"/w/p/wp11-green_main.jpg","small_image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","url_key":"sylvia-capri-29-green","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WP11-29-Red","id":1893,"status":1,"name":"Sylvia Capri-29-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"58","image":"/w/p/wp11-red_main.jpg","small_image":"/w/p/wp11-red_main.jpg","thumbnail":"/w/p/wp11-red_main.jpg","url_key":"sylvia-capri-29-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42}],"configurable_options":[{"id":267,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1894,"attribute_code":"color"},{"id":266,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1894,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-1894.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1873","_score":1,"_source":{"id":1873,"sku":"WP08","name":"Bardot Capri","attribute_set_id":10,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                \n

                • Black capris with pink waistband.
                • Cropped leggings.
                • Waistband drawcord.
                • Flat, thin and flattering.
                • Made with organic fabric.

                ","image":"/w/p/wp08-black_main.jpg","small_image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"bardot-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[150,39,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[107,109],"pattern":"195","climate":[205,212,206,209],"slug":"bardot-capri-1873","links":{},"stock":{"item_id":1873,"product_id":1873,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP08-28-Black","id":1867,"status":1,"name":"Bardot Capri-28-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"49","image":"/w/p/wp08-black_main.jpg","small_image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","url_key":"bardot-capri-28-black","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP08-28-Green","id":1868,"status":1,"name":"Bardot Capri-28-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"53","image":"/w/p/wp08-green_main.jpg","small_image":"/w/p/wp08-green_main.jpg","thumbnail":"/w/p/wp08-green_main.jpg","url_key":"bardot-capri-28-green","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP08-28-Red","id":1869,"status":1,"name":"Bardot Capri-28-Red","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"58","image":"/w/p/wp08-red_main.jpg","small_image":"/w/p/wp08-red_main.jpg","thumbnail":"/w/p/wp08-red_main.jpg","url_key":"bardot-capri-28-red","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP08-29-Black","id":1870,"status":1,"name":"Bardot Capri-29-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"49","image":"/w/p/wp08-black_main.jpg","small_image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","url_key":"bardot-capri-29-black","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP08-29-Green","id":1871,"status":1,"name":"Bardot Capri-29-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"53","image":"/w/p/wp08-green_main.jpg","small_image":"/w/p/wp08-green_main.jpg","thumbnail":"/w/p/wp08-green_main.jpg","url_key":"bardot-capri-29-green","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP08-29-Red","id":1872,"status":1,"name":"Bardot Capri-29-Red","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"58","image":"/w/p/wp08-red_main.jpg","small_image":"/w/p/wp08-red_main.jpg","thumbnail":"/w/p/wp08-red_main.jpg","url_key":"bardot-capri-29-red","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48}],"configurable_options":[{"id":261,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1873,"attribute_code":"color"},{"id":260,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1873,"attribute_code":"size"}],"color_options":[49,53,58],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-1873.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1939","_score":1,"_source":{"id":1939,"sku":"WSH02-32-Yellow","name":"Maxima Drawstring Short-32-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                \n

                • Light gray run shorts
                - cotton polyester.
                • Contrast binding.
                • 3\" inseam.
                • Machine wash/dry.

                ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-32-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"maxima-drawstring-short-32-yellow-1939","links":{},"stock":{"item_id":1939,"product_id":1939,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-32-yellow-1939.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1950","_score":1,"_source":{"id":1950,"sku":"WSH03-31-Blue","name":"Gwen Drawstring Bike Short-31-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                \n

                • Dark heather gray rouched bike shorts.
                • Fitted. Inseam: 2\".
                • Machine wash/dry.

                ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-31-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"gwen-drawstring-bike-short-31-blue-1950","links":{},"stock":{"item_id":1950,"product_id":1950,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-31-blue-1950.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1928","_score":1,"_source":{"id":1928,"sku":"WSH02-29-Gray","name":"Maxima Drawstring Short-29-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                \n

                • Light gray run shorts
                - cotton polyester.
                • Contrast binding.
                • 3\" inseam.
                • Machine wash/dry.

                ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"maxima-drawstring-short-29-gray-1928","links":{},"stock":{"item_id":1928,"product_id":1928,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-29-gray-1928.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1946","_score":1,"_source":{"id":1946,"sku":"WSH03-29-Orange","name":"Gwen Drawstring Bike Short-29-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                \n

                • Dark heather gray rouched bike shorts.
                • Fitted. Inseam: 2\".
                • Machine wash/dry.

                ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"gwen-drawstring-bike-short-29-orange-1946","links":{},"stock":{"item_id":1946,"product_id":1946,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-29-orange-1946.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1925","_score":1,"_source":{"id":1925,"sku":"WSH02-28-Gray","name":"Maxima Drawstring Short-28-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                \n

                • Light gray run shorts
                - cotton polyester.
                • Contrast binding.
                • 3\" inseam.
                • Machine wash/dry.

                ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"maxima-drawstring-short-28-gray-1925","links":{},"stock":{"item_id":1925,"product_id":1925,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-28-gray-1925.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1944","_score":1,"_source":{"id":1944,"sku":"WSH03-29-Blue","name":"Gwen Drawstring Bike Short-29-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                \n

                • Dark heather gray rouched bike shorts.
                • Fitted. Inseam: 2\".
                • Machine wash/dry.

                ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"gwen-drawstring-bike-short-29-blue-1944","links":{},"stock":{"item_id":1944,"product_id":1944,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-29-blue-1944.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1934","_score":1,"_source":{"id":1934,"sku":"WSH02-31-Gray","name":"Maxima Drawstring Short-31-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                \n

                • Light gray run shorts
                - cotton polyester.
                • Contrast binding.
                • 3\" inseam.
                • Machine wash/dry.

                ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-31-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"maxima-drawstring-short-31-gray-1934","links":{},"stock":{"item_id":1934,"product_id":1934,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-31-gray-1934.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1945","_score":1,"_source":{"id":1945,"sku":"WSH03-29-Gray","name":"Gwen Drawstring Bike Short-29-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                \n

                • Dark heather gray rouched bike shorts.
                • Fitted. Inseam: 2\".
                • Machine wash/dry.

                ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"gwen-drawstring-bike-short-29-gray-1945","links":{},"stock":{"item_id":1945,"product_id":1945,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-29-gray-1945.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1908","_score":1,"_source":{"id":1908,"sku":"WP13","name":"Portia Capri","attribute_set_id":10,"price":49,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                \n

                • Salmon heather capri sweats.
                • Relaxed fit, high waist.
                • Inseam: 21\".
                • Wide elastic waistband.
                • Machine wash/dry.

                ","image":"/w/p/wp13-orange_main.jpg","small_image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"portia-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":"107","pattern":"197","climate":[205,212,206],"slug":"portia-capri-1908","links":{},"stock":{"item_id":1908,"product_id":1908,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp13-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP13-28-Blue","id":1902,"status":1,"name":"Portia Capri-28-Blue","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"50","image":"/w/p/wp13-blue_main.jpg","small_image":"/w/p/wp13-blue_main.jpg","thumbnail":"/w/p/wp13-blue_main.jpg","url_key":"portia-capri-28-blue","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"WP13-28-Green","id":1903,"status":1,"name":"Portia Capri-28-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"53","image":"/w/p/wp13-green_main.jpg","small_image":"/w/p/wp13-green_main.jpg","thumbnail":"/w/p/wp13-green_main.jpg","url_key":"portia-capri-28-green","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"WP13-28-Orange","id":1904,"status":1,"name":"Portia Capri-28-Orange","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"56","image":"/w/p/wp13-orange_main.jpg","small_image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","url_key":"portia-capri-28-orange","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"WP13-29-Blue","id":1905,"status":1,"name":"Portia Capri-29-Blue","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"50","image":"/w/p/wp13-blue_main.jpg","small_image":"/w/p/wp13-blue_main.jpg","thumbnail":"/w/p/wp13-blue_main.jpg","url_key":"portia-capri-29-blue","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"WP13-29-Green","id":1906,"status":1,"name":"Portia Capri-29-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"53","image":"/w/p/wp13-green_main.jpg","small_image":"/w/p/wp13-green_main.jpg","thumbnail":"/w/p/wp13-green_main.jpg","url_key":"portia-capri-29-green","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"WP13-29-Orange","id":1907,"status":1,"name":"Portia Capri-29-Orange","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"56","image":"/w/p/wp13-orange_main.jpg","small_image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","url_key":"portia-capri-29-orange","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49}],"configurable_options":[{"id":271,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":1908,"attribute_code":"color"},{"id":270,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1908,"attribute_code":"size"}],"color_options":[50,53,56],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-1908.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1924","_score":1,"_source":{"id":1924,"sku":"WSH01","name":"Fiona Fitness Short","attribute_set_id":10,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                \n

                • Black run shorts
                - cotton/spandex.
                • 5” inseam.
                • Machine wash/Line dry.

                ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"fiona-fitness-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,151],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[106,105],"pattern":"197","climate":[205,212,206,209],"slug":"fiona-fitness-short-1924","links":{},"stock":{"item_id":1924,"product_id":1924,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH01-28-Black","id":1909,"status":1,"name":"Fiona Fitness Short-28-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"172","color":"49","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","url_key":"fiona-fitness-short-28-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-28-Green","id":1910,"status":1,"name":"Fiona Fitness Short-28-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"172","color":"53","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","url_key":"fiona-fitness-short-28-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-28-Red","id":1911,"status":1,"name":"Fiona Fitness Short-28-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"172","color":"58","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","url_key":"fiona-fitness-short-28-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-29-Black","id":1912,"status":1,"name":"Fiona Fitness Short-29-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"173","color":"49","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","url_key":"fiona-fitness-short-29-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-29-Green","id":1913,"status":1,"name":"Fiona Fitness Short-29-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"173","color":"53","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","url_key":"fiona-fitness-short-29-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-29-Red","id":1914,"status":1,"name":"Fiona Fitness Short-29-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"173","color":"58","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","url_key":"fiona-fitness-short-29-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-30-Black","id":1915,"status":1,"name":"Fiona Fitness Short-30-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"174","color":"49","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","url_key":"fiona-fitness-short-30-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-30-Green","id":1916,"status":1,"name":"Fiona Fitness Short-30-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"174","color":"53","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","url_key":"fiona-fitness-short-30-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-30-Red","id":1917,"status":1,"name":"Fiona Fitness Short-30-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"174","color":"58","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","url_key":"fiona-fitness-short-30-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-31-Black","id":1918,"status":1,"name":"Fiona Fitness Short-31-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"175","color":"49","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","url_key":"fiona-fitness-short-31-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-31-Green","id":1919,"status":1,"name":"Fiona Fitness Short-31-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"175","color":"53","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","url_key":"fiona-fitness-short-31-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-31-Red","id":1920,"status":1,"name":"Fiona Fitness Short-31-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"175","color":"58","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","url_key":"fiona-fitness-short-31-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-32-Black","id":1921,"status":1,"name":"Fiona Fitness Short-32-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"176","color":"49","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","url_key":"fiona-fitness-short-32-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-32-Green","id":1922,"status":1,"name":"Fiona Fitness Short-32-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"176","color":"53","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","url_key":"fiona-fitness-short-32-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-32-Red","id":1923,"status":1,"name":"Fiona Fitness Short-32-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"176","color":"58","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","url_key":"fiona-fitness-short-32-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":273,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1924,"attribute_code":"color"},{"id":272,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1924,"attribute_code":"size"}],"color_options":[49,53,58],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-1924.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1901","_score":1,"_source":{"id":1901,"sku":"WP12","name":"Deirdre Relaxed-Fit Capri","attribute_set_id":10,"price":63,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                \n

                • Heather gray capris with mint green waist & accents.
                • Comfortable, relaxed fit with high rise.
                • Moisture-wicking, 4-way stretch construction.
                • Lined with mesh for better support.
                • Hidden pocket at waistband.
                • Flatlock seams and lined gusset for comfort.

                ","image":"/w/p/wp12-gray_main.jpg","small_image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"deirdre-relaxed-fit-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154,39],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"107","pattern":"195","climate":[205,212,206],"slug":"deirdre-relaxed-fit-capri-1901","links":{},"stock":{"item_id":1901,"product_id":1901,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP12-28-Blue","id":1895,"status":1,"name":"Deirdre Relaxed-Fit Capri-28-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"50","image":"/w/p/wp12-blue_main.jpg","small_image":"/w/p/wp12-blue_main.jpg","thumbnail":"/w/p/wp12-blue_main.jpg","url_key":"deirdre-relaxed-fit-capri-28-blue","msrp_display_actual_price_type":"0"},{"sku":"WP12-28-Gray","id":1896,"status":1,"name":"Deirdre Relaxed-Fit Capri-28-Gray","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"52","image":"/w/p/wp12-gray_main.jpg","small_image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","url_key":"deirdre-relaxed-fit-capri-28-gray","msrp_display_actual_price_type":"0"},{"sku":"WP12-28-Green","id":1897,"status":1,"name":"Deirdre Relaxed-Fit Capri-28-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"53","image":"/w/p/wp12-green_main.jpg","small_image":"/w/p/wp12-green_main.jpg","thumbnail":"/w/p/wp12-green_main.jpg","url_key":"deirdre-relaxed-fit-capri-28-green","msrp_display_actual_price_type":"0"},{"sku":"WP12-29-Blue","id":1898,"status":1,"name":"Deirdre Relaxed-Fit Capri-29-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"50","image":"/w/p/wp12-blue_main.jpg","small_image":"/w/p/wp12-blue_main.jpg","thumbnail":"/w/p/wp12-blue_main.jpg","url_key":"deirdre-relaxed-fit-capri-29-blue","msrp_display_actual_price_type":"0"},{"sku":"WP12-29-Gray","id":1899,"status":1,"name":"Deirdre Relaxed-Fit Capri-29-Gray","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"52","image":"/w/p/wp12-gray_main.jpg","small_image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","url_key":"deirdre-relaxed-fit-capri-29-gray","msrp_display_actual_price_type":"0"},{"sku":"WP12-29-Green","id":1900,"status":1,"name":"Deirdre Relaxed-Fit Capri-29-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"53","image":"/w/p/wp12-green_main.jpg","small_image":"/w/p/wp12-green_main.jpg","thumbnail":"/w/p/wp12-green_main.jpg","url_key":"deirdre-relaxed-fit-capri-29-green","msrp_display_actual_price_type":"0"}],"configurable_options":[{"id":269,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":1901,"attribute_code":"color"},{"id":268,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1901,"attribute_code":"size"}],"color_options":[50,52,53],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-1901.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1940","_score":1,"_source":{"id":1940,"sku":"WSH02","name":"Maxima Drawstring Short","attribute_set_id":10,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                \n

                • Light gray run shorts
                - cotton polyester.
                • Contrast binding.
                • 3\" inseam.
                • Machine wash/dry.

                ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"maxima-drawstring-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_bottom":"106","pattern":"197","climate":[205,212,206,209],"slug":"maxima-drawstring-short-1940","links":{},"stock":{"item_id":1940,"product_id":1940,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH02-28-Gray","id":1925,"status":1,"name":"Maxima Drawstring Short-28-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"172","color":"52","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","url_key":"maxima-drawstring-short-28-gray","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-28-Orange","id":1926,"status":1,"name":"Maxima Drawstring Short-28-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"172","color":"56","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","url_key":"maxima-drawstring-short-28-orange","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-28-Yellow","id":1927,"status":1,"name":"Maxima Drawstring Short-28-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"172","color":"60","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","url_key":"maxima-drawstring-short-28-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-29-Gray","id":1928,"status":1,"name":"Maxima Drawstring Short-29-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"173","color":"52","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","url_key":"maxima-drawstring-short-29-gray","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-29-Orange","id":1929,"status":1,"name":"Maxima Drawstring Short-29-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"173","color":"56","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","url_key":"maxima-drawstring-short-29-orange","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-29-Yellow","id":1930,"status":1,"name":"Maxima Drawstring Short-29-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"173","color":"60","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","url_key":"maxima-drawstring-short-29-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-30-Gray","id":1931,"status":1,"name":"Maxima Drawstring Short-30-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"174","color":"52","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","url_key":"maxima-drawstring-short-30-gray","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-30-Orange","id":1932,"status":1,"name":"Maxima Drawstring Short-30-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"174","color":"56","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","url_key":"maxima-drawstring-short-30-orange","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-30-Yellow","id":1933,"status":1,"name":"Maxima Drawstring Short-30-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"174","color":"60","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","url_key":"maxima-drawstring-short-30-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-31-Gray","id":1934,"status":1,"name":"Maxima Drawstring Short-31-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"175","color":"52","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","url_key":"maxima-drawstring-short-31-gray","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-31-Orange","id":1935,"status":1,"name":"Maxima Drawstring Short-31-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"175","color":"56","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","url_key":"maxima-drawstring-short-31-orange","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-31-Yellow","id":1936,"status":1,"name":"Maxima Drawstring Short-31-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"175","color":"60","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","url_key":"maxima-drawstring-short-31-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-32-Gray","id":1937,"status":1,"name":"Maxima Drawstring Short-32-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"176","color":"52","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","url_key":"maxima-drawstring-short-32-gray","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-32-Orange","id":1938,"status":1,"name":"Maxima Drawstring Short-32-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"176","color":"56","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","url_key":"maxima-drawstring-short-32-orange","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-32-Yellow","id":1939,"status":1,"name":"Maxima Drawstring Short-32-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"176","color":"60","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","url_key":"maxima-drawstring-short-32-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28}],"configurable_options":[{"id":275,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1940,"attribute_code":"color"},{"id":274,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1940,"attribute_code":"size"}],"color_options":[52,56,60],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-1940.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1916","_score":1,"_source":{"id":1916,"sku":"WSH01-30-Green","name":"Fiona Fitness Short-30-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                \n

                • Black run shorts
                - cotton/spandex.
                • 5” inseam.
                • Machine wash/Line dry.

                ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-30-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"fiona-fitness-short-30-green-1916","links":{},"stock":{"item_id":1916,"product_id":1916,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-30-green-1916.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1902","_score":1,"_source":{"id":1902,"sku":"WP13-28-Blue","name":"Portia Capri-28-Blue","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                \n

                • Salmon heather capri sweats.
                • Relaxed fit, high waist.
                • Inseam: 21\".
                • Wide elastic waistband.
                • Machine wash/dry.

                ","image":"/w/p/wp13-blue_main.jpg","small_image":"/w/p/wp13-blue_main.jpg","thumbnail":"/w/p/wp13-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"portia-capri-28-blue-1902","links":{},"stock":{"item_id":1902,"product_id":1902,"stock_id":1,"qty":63,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-28-blue-1902.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1910","_score":1,"_source":{"id":1910,"sku":"WSH01-28-Green","name":"Fiona Fitness Short-28-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                \n

                • Black run shorts
                - cotton/spandex.
                • 5” inseam.
                • Machine wash/Line dry.

                ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"fiona-fitness-short-28-green-1910","links":{},"stock":{"item_id":1910,"product_id":1910,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-28-green-1910.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1909","_score":1,"_source":{"id":1909,"sku":"WSH01-28-Black","name":"Fiona Fitness Short-28-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                \n

                • Black run shorts
                - cotton/spandex.
                • 5” inseam.
                • Machine wash/Line dry.

                ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"fiona-fitness-short-28-black-1909","links":{},"stock":{"item_id":1909,"product_id":1909,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-28-black-1909.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1920","_score":1,"_source":{"id":1920,"sku":"WSH01-31-Red","name":"Fiona Fitness Short-31-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                \n

                • Black run shorts
                - cotton/spandex.
                • 5” inseam.
                • Machine wash/Line dry.

                ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-31-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"fiona-fitness-short-31-red-1920","links":{},"stock":{"item_id":1920,"product_id":1920,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-31-red-1920.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1929","_score":1,"_source":{"id":1929,"sku":"WSH02-29-Orange","name":"Maxima Drawstring Short-29-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                \n

                • Light gray run shorts
                - cotton polyester.
                • Contrast binding.
                • 3\" inseam.
                • Machine wash/dry.

                ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"maxima-drawstring-short-29-orange-1929","links":{},"stock":{"item_id":1929,"product_id":1929,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-29-orange-1929.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1917","_score":1,"_source":{"id":1917,"sku":"WSH01-30-Red","name":"Fiona Fitness Short-30-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                \n

                • Black run shorts
                - cotton/spandex.
                • 5” inseam.
                • Machine wash/Line dry.

                ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-30-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"fiona-fitness-short-30-red-1917","links":{},"stock":{"item_id":1917,"product_id":1917,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-30-red-1917.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1933","_score":1,"_source":{"id":1933,"sku":"WSH02-30-Yellow","name":"Maxima Drawstring Short-30-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                \n

                • Light gray run shorts
                - cotton polyester.
                • Contrast binding.
                • 3\" inseam.
                • Machine wash/dry.

                ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-30-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"maxima-drawstring-short-30-yellow-1933","links":{},"stock":{"item_id":1933,"product_id":1933,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-30-yellow-1933.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1919","_score":1,"_source":{"id":1919,"sku":"WSH01-31-Green","name":"Fiona Fitness Short-31-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                \n

                • Black run shorts
                - cotton/spandex.
                • 5” inseam.
                • Machine wash/Line dry.

                ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-31-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"fiona-fitness-short-31-green-1919","links":{},"stock":{"item_id":1919,"product_id":1919,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-31-green-1919.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1922","_score":1,"_source":{"id":1922,"sku":"WSH01-32-Green","name":"Fiona Fitness Short-32-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                \n

                • Black run shorts
                - cotton/spandex.
                • 5” inseam.
                • Machine wash/Line dry.

                ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"fiona-fitness-short-32-green-1922","links":{},"stock":{"item_id":1922,"product_id":1922,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-32-green-1922.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1905","_score":1,"_source":{"id":1905,"sku":"WP13-29-Blue","name":"Portia Capri-29-Blue","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                \n

                • Salmon heather capri sweats.
                • Relaxed fit, high waist.
                • Inseam: 21\".
                • Wide elastic waistband.
                • Machine wash/dry.

                ","image":"/w/p/wp13-blue_main.jpg","small_image":"/w/p/wp13-blue_main.jpg","thumbnail":"/w/p/wp13-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"portia-capri-29-blue-1905","links":{},"stock":{"item_id":1905,"product_id":1905,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-29-blue-1905.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1948","_score":1,"_source":{"id":1948,"sku":"WSH03-30-Gray","name":"Gwen Drawstring Bike Short-30-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                \n

                • Dark heather gray rouched bike shorts.
                • Fitted. Inseam: 2\".
                • Machine wash/dry.

                ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-30-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"gwen-drawstring-bike-short-30-gray-1948","links":{},"stock":{"item_id":1948,"product_id":1948,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-30-gray-1948.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1941","_score":1,"_source":{"id":1941,"sku":"WSH03-28-Blue","name":"Gwen Drawstring Bike Short-28-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                \n

                • Dark heather gray rouched bike shorts.
                • Fitted. Inseam: 2\".
                • Machine wash/dry.

                ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"gwen-drawstring-bike-short-28-blue-1941","links":{},"stock":{"item_id":1941,"product_id":1941,"stock_id":1,"qty":21,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-28-blue-1941.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1926","_score":1,"_source":{"id":1926,"sku":"WSH02-28-Orange","name":"Maxima Drawstring Short-28-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                \n

                • Light gray run shorts
                - cotton polyester.
                • Contrast binding.
                • 3\" inseam.
                • Machine wash/dry.

                ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"maxima-drawstring-short-28-orange-1926","links":{},"stock":{"item_id":1926,"product_id":1926,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-28-orange-1926.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1942","_score":1,"_source":{"id":1942,"sku":"WSH03-28-Gray","name":"Gwen Drawstring Bike Short-28-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                \n

                • Dark heather gray rouched bike shorts.
                • Fitted. Inseam: 2\".
                • Machine wash/dry.

                ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"gwen-drawstring-bike-short-28-gray-1942","links":{},"stock":{"item_id":1942,"product_id":1942,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-28-gray-1942.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1930","_score":1,"_source":{"id":1930,"sku":"WSH02-29-Yellow","name":"Maxima Drawstring Short-29-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                \n

                • Light gray run shorts
                - cotton polyester.
                • Contrast binding.
                • 3\" inseam.
                • Machine wash/dry.

                ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-29-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"maxima-drawstring-short-29-yellow-1930","links":{},"stock":{"item_id":1930,"product_id":1930,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-29-yellow-1930.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1949","_score":1,"_source":{"id":1949,"sku":"WSH03-30-Orange","name":"Gwen Drawstring Bike Short-30-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                \n

                • Dark heather gray rouched bike shorts.
                • Fitted. Inseam: 2\".
                • Machine wash/dry.

                ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-30-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"gwen-drawstring-bike-short-30-orange-1949","links":{},"stock":{"item_id":1949,"product_id":1949,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-30-orange-1949.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1935","_score":1,"_source":{"id":1935,"sku":"WSH02-31-Orange","name":"Maxima Drawstring Short-31-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                \n

                • Light gray run shorts
                - cotton polyester.
                • Contrast binding.
                • 3\" inseam.
                • Machine wash/dry.

                ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-31-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"maxima-drawstring-short-31-orange-1935","links":{},"stock":{"item_id":1935,"product_id":1935,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-31-orange-1935.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1943","_score":1,"_source":{"id":1943,"sku":"WSH03-28-Orange","name":"Gwen Drawstring Bike Short-28-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                \n

                • Dark heather gray rouched bike shorts.
                • Fitted. Inseam: 2\".
                • Machine wash/dry.

                ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"gwen-drawstring-bike-short-28-orange-1943","links":{},"stock":{"item_id":1943,"product_id":1943,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-28-orange-1943.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1936","_score":1,"_source":{"id":1936,"sku":"WSH02-31-Yellow","name":"Maxima Drawstring Short-31-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                \n

                • Light gray run shorts
                - cotton polyester.
                • Contrast binding.
                • 3\" inseam.
                • Machine wash/dry.

                ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-31-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"maxima-drawstring-short-31-yellow-1936","links":{},"stock":{"item_id":1936,"product_id":1936,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-31-yellow-1936.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1921","_score":1,"_source":{"id":1921,"sku":"WSH01-32-Black","name":"Fiona Fitness Short-32-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                \n

                • Black run shorts
                - cotton/spandex.
                • 5” inseam.
                • Machine wash/Line dry.

                ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"fiona-fitness-short-32-black-1921","links":{},"stock":{"item_id":1921,"product_id":1921,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-32-black-1921.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1937","_score":1,"_source":{"id":1937,"sku":"WSH02-32-Gray","name":"Maxima Drawstring Short-32-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                \n

                • Light gray run shorts
                - cotton polyester.
                • Contrast binding.
                • 3\" inseam.
                • Machine wash/dry.

                ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"maxima-drawstring-short-32-gray-1937","links":{},"stock":{"item_id":1937,"product_id":1937,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-32-gray-1937.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1923","_score":1,"_source":{"id":1923,"sku":"WSH01-32-Red","name":"Fiona Fitness Short-32-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                \n

                • Black run shorts
                - cotton/spandex.
                • 5” inseam.
                • Machine wash/Line dry.

                ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"fiona-fitness-short-32-red-1923","links":{},"stock":{"item_id":1923,"product_id":1923,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-32-red-1923.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1855","_score":1,"_source":{"id":1855,"sku":"WP06-28-Orange","name":"Diana Tights-28-Orange","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                \n

                • Black legging with slate details.
                • Flat-lock, chafe-free side seams.
                • Vented gusset.
                • Secret interior pocket.
                • Sustainable and recycled fabric.

                ","image":"/w/p/wp06-orange_main.jpg","small_image":"/w/p/wp06-orange_main.jpg","thumbnail":"/w/p/wp06-orange_main.jpg","color":"56","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"diana-tights-28-orange-1855","links":{},"stock":{"item_id":1855,"product_id":1855,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-28-orange-1855.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1862","_score":1,"_source":{"id":1862,"sku":"WP07-28-Orange","name":"Aeon Capri-28-Orange","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                \n

                • Black capris with teal accents.
                • Thick, 3\" flattering waistband.
                • Media pocket on inner waistband.
                • Dry wick finish for ultimate comfort and dryness.

                ","image":"/w/p/wp07-orange_main.jpg","small_image":"/w/p/wp07-orange_main.jpg","thumbnail":"/w/p/wp07-orange_main.jpg","color":"56","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"aeon-capri-28-orange-1862","links":{},"stock":{"item_id":1862,"product_id":1862,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-28-orange-1862.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1860","_score":1,"_source":{"id":1860,"sku":"WP07-28-Black","name":"Aeon Capri-28-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                \n

                • Black capris with teal accents.
                • Thick, 3\" flattering waistband.
                • Media pocket on inner waistband.
                • Dry wick finish for ultimate comfort and dryness.

                ","image":"/w/p/wp07-black_main.jpg","small_image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","color":"49","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"aeon-capri-28-black-1860","links":{},"stock":{"item_id":1860,"product_id":1860,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-28-black-1860.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1877","_score":1,"_source":{"id":1877,"sku":"WP09-29-Black","name":"Carina Basic Capri-29-Black","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                \n

                • Black capris with rouching detail.
                • 93% cotton, 7% spandex.
                • Elasticized waistband.
                • Reinforced seams with exposed topstitching.
                • Soft, medium-weight jersey with added stretch.

                ","image":"/w/p/wp09-black_main.jpg","small_image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"carina-basic-capri-29-black-1877","links":{},"stock":{"item_id":1877,"product_id":1877,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_outfit.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-29-black-1877.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1854","_score":1,"_source":{"id":1854,"sku":"WP06-28-Blue","name":"Diana Tights-28-Blue","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                \n

                • Black legging with slate details.
                • Flat-lock, chafe-free side seams.
                • Vented gusset.
                • Secret interior pocket.
                • Sustainable and recycled fabric.

                ","image":"/w/p/wp06-blue_main.jpg","small_image":"/w/p/wp06-blue_main.jpg","thumbnail":"/w/p/wp06-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"diana-tights-28-blue-1854","links":{},"stock":{"item_id":1854,"product_id":1854,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-28-blue-1854.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1867","_score":1,"_source":{"id":1867,"sku":"WP08-28-Black","name":"Bardot Capri-28-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                \n

                • Black capris with pink waistband.
                • Cropped leggings.
                • Waistband drawcord.
                • Flat, thin and flattering.
                • Made with organic fabric.

                ","image":"/w/p/wp08-black_main.jpg","small_image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bardot-capri-28-black-1867","links":{},"stock":{"item_id":1867,"product_id":1867,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-28-black-1867.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1857","_score":1,"_source":{"id":1857,"sku":"WP06-29-Blue","name":"Diana Tights-29-Blue","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                \n

                • Black legging with slate details.
                • Flat-lock, chafe-free side seams.
                • Vented gusset.
                • Secret interior pocket.
                • Sustainable and recycled fabric.

                ","image":"/w/p/wp06-blue_main.jpg","small_image":"/w/p/wp06-blue_main.jpg","thumbnail":"/w/p/wp06-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"diana-tights-29-blue-1857","links":{},"stock":{"item_id":1857,"product_id":1857,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-29-blue-1857.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1863","_score":1,"_source":{"id":1863,"sku":"WP07-29-Black","name":"Aeon Capri-29-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                \n

                • Black capris with teal accents.
                • Thick, 3\" flattering waistband.
                • Media pocket on inner waistband.
                • Dry wick finish for ultimate comfort and dryness.

                ","image":"/w/p/wp07-black_main.jpg","small_image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","color":"49","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"aeon-capri-29-black-1863","links":{},"stock":{"item_id":1863,"product_id":1863,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-29-black-1863.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1882","_score":1,"_source":{"id":1882,"sku":"WP10-28-Gray","name":"Daria Bikram Pant-28-Gray","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                \n

                • Heather gray capris with pink striped waist.
                • Flatlock seams.
                • Interior pocket.

                ","image":"/w/p/wp10-gray_main.jpg","small_image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","color":"52","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"daria-bikram-pant-28-gray-1882","links":{},"stock":{"item_id":1882,"product_id":1882,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-28-gray-1882.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1891","_score":1,"_source":{"id":1891,"sku":"WP11-29-Blue","name":"Sylvia Capri-29-Blue","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                \n

                • Green striped capri.
                • Strategic side seam
                • Comfort gusset with lining.
                • Flat seaming.
                • Wide waistband.
                • Moisture wicking.

                ","image":"/w/p/wp11-blue_main.jpg","small_image":"/w/p/wp11-blue_main.jpg","thumbnail":"/w/p/wp11-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sylvia-capri-29-blue-1891","links":{},"stock":{"item_id":1891,"product_id":1891,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-29-blue-1891.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1888","_score":1,"_source":{"id":1888,"sku":"WP11-28-Blue","name":"Sylvia Capri-28-Blue","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                \n

                • Green striped capri.
                • Strategic side seam
                • Comfort gusset with lining.
                • Flat seaming.
                • Wide waistband.
                • Moisture wicking.

                ","image":"/w/p/wp11-blue_main.jpg","small_image":"/w/p/wp11-blue_main.jpg","thumbnail":"/w/p/wp11-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sylvia-capri-28-blue-1888","links":{},"stock":{"item_id":1888,"product_id":1888,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-28-blue-1888.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1864","_score":1,"_source":{"id":1864,"sku":"WP07-29-Blue","name":"Aeon Capri-29-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                \n

                • Black capris with teal accents.
                • Thick, 3\" flattering waistband.
                • Media pocket on inner waistband.
                • Dry wick finish for ultimate comfort and dryness.

                ","image":"/w/p/wp07-blue_main.jpg","small_image":"/w/p/wp07-blue_main.jpg","thumbnail":"/w/p/wp07-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"aeon-capri-29-blue-1864","links":{},"stock":{"item_id":1864,"product_id":1864,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-29-blue-1864.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1865","_score":1,"_source":{"id":1865,"sku":"WP07-29-Orange","name":"Aeon Capri-29-Orange","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                \n

                • Black capris with teal accents.
                • Thick, 3\" flattering waistband.
                • Media pocket on inner waistband.
                • Dry wick finish for ultimate comfort and dryness.

                ","image":"/w/p/wp07-orange_main.jpg","small_image":"/w/p/wp07-orange_main.jpg","thumbnail":"/w/p/wp07-orange_main.jpg","color":"56","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"aeon-capri-29-orange-1865","links":{},"stock":{"item_id":1865,"product_id":1865,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-29-orange-1865.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1875","_score":1,"_source":{"id":1875,"sku":"WP09-28-Blue","name":"Carina Basic Capri-28-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                \n

                • Black capris with rouching detail.
                • 93% cotton, 7% spandex.
                • Elasticized waistband.
                • Reinforced seams with exposed topstitching.
                • Soft, medium-weight jersey with added stretch.

                ","image":"/w/p/wp09-blue_main.jpg","small_image":"/w/p/wp09-blue_main.jpg","thumbnail":"/w/p/wp09-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"carina-basic-capri-28-blue-1875","links":{},"stock":{"item_id":1875,"product_id":1875,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-28-blue-1875.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1869","_score":1,"_source":{"id":1869,"sku":"WP08-28-Red","name":"Bardot Capri-28-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                \n

                • Black capris with pink waistband.
                • Cropped leggings.
                • Waistband drawcord.
                • Flat, thin and flattering.
                • Made with organic fabric.

                ","image":"/w/p/wp08-red_main.jpg","small_image":"/w/p/wp08-red_main.jpg","thumbnail":"/w/p/wp08-red_main.jpg","color":"58","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bardot-capri-28-red-1869","links":{},"stock":{"item_id":1869,"product_id":1869,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-28-red-1869.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1879","_score":1,"_source":{"id":1879,"sku":"WP09-29-Purple","name":"Carina Basic Capri-29-Purple","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                \n

                • Black capris with rouching detail.
                • 93% cotton, 7% spandex.
                • Elasticized waistband.
                • Reinforced seams with exposed topstitching.
                • Soft, medium-weight jersey with added stretch.

                ","image":"/w/p/wp09-purple_main.jpg","small_image":"/w/p/wp09-purple_main.jpg","thumbnail":"/w/p/wp09-purple_main.jpg","color":"57","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"carina-basic-capri-29-purple-1879","links":{},"stock":{"item_id":1879,"product_id":1879,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-29-purple-1879.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1883","_score":1,"_source":{"id":1883,"sku":"WP10-28-White","name":"Daria Bikram Pant-28-White","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                \n

                • Heather gray capris with pink striped waist.
                • Flatlock seams.
                • Interior pocket.

                ","image":"/w/p/wp10-white_main.jpg","small_image":"/w/p/wp10-white_main.jpg","thumbnail":"/w/p/wp10-white_main.jpg","color":"59","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"daria-bikram-pant-28-white-1883","links":{},"stock":{"item_id":1883,"product_id":1883,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-28-white-1883.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1961","_score":1,"_source":{"id":1961,"sku":"WSH04-29-Green","name":"Artemis Running Short-29-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                \n

                • Black rouched shorts with mint waist.
                • Soft, lightweight construction.
                • LumaTech™ wicking technology.
                • Semi-fitted.

                ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"artemis-running-short-29-green-1961","links":{},"stock":{"item_id":1961,"product_id":1961,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-29-green-1961.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1952","_score":1,"_source":{"id":1952,"sku":"WSH03-31-Orange","name":"Gwen Drawstring Bike Short-31-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                \n

                • Dark heather gray rouched bike shorts.
                • Fitted. Inseam: 2\".
                • Machine wash/dry.

                ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-31-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"gwen-drawstring-bike-short-31-orange-1952","links":{},"stock":{"item_id":1952,"product_id":1952,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-31-orange-1952.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1966","_score":1,"_source":{"id":1966,"sku":"WSH04-31-Black","name":"Artemis Running Short-31-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                \n

                • Black rouched shorts with mint waist.
                • Soft, lightweight construction.
                • LumaTech™ wicking technology.
                • Semi-fitted.

                ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-31-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"artemis-running-short-31-black-1966","links":{},"stock":{"item_id":1966,"product_id":1966,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-31-black-1966.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1954","_score":1,"_source":{"id":1954,"sku":"WSH03-32-Gray","name":"Gwen Drawstring Bike Short-32-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                \n

                • Dark heather gray rouched bike shorts.
                • Fitted. Inseam: 2\".
                • Machine wash/dry.

                ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"gwen-drawstring-bike-short-32-gray-1954","links":{},"stock":{"item_id":1954,"product_id":1954,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-32-gray-1954.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1968","_score":1,"_source":{"id":1968,"sku":"WSH04-31-Orange","name":"Artemis Running Short-31-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                \n

                • Black rouched shorts with mint waist.
                • Soft, lightweight construction.
                • LumaTech™ wicking technology.
                • Semi-fitted.

                ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-31-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"artemis-running-short-31-orange-1968","links":{},"stock":{"item_id":1968,"product_id":1968,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-31-orange-1968.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1965","_score":1,"_source":{"id":1965,"sku":"WSH04-30-Orange","name":"Artemis Running Short-30-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                \n

                • Black rouched shorts with mint waist.
                • Soft, lightweight construction.
                • LumaTech™ wicking technology.
                • Semi-fitted.

                ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-30-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"artemis-running-short-30-orange-1965","links":{},"stock":{"item_id":1965,"product_id":1965,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-30-orange-1965.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1955","_score":1,"_source":{"id":1955,"sku":"WSH03-32-Orange","name":"Gwen Drawstring Bike Short-32-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                \n

                • Dark heather gray rouched bike shorts.
                • Fitted. Inseam: 2\".
                • Machine wash/dry.

                ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-32-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"gwen-drawstring-bike-short-32-orange-1955","links":{},"stock":{"item_id":1955,"product_id":1955,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-32-orange-1955.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1962","_score":1,"_source":{"id":1962,"sku":"WSH04-29-Orange","name":"Artemis Running Short-29-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                \n

                • Black rouched shorts with mint waist.
                • Soft, lightweight construction.
                • LumaTech™ wicking technology.
                • Semi-fitted.

                ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"artemis-running-short-29-orange-1962","links":{},"stock":{"item_id":1962,"product_id":1962,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-29-orange-1962.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1957","_score":1,"_source":{"id":1957,"sku":"WSH04-28-Black","name":"Artemis Running Short-28-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                \n

                • Black rouched shorts with mint waist.
                • Soft, lightweight construction.
                • LumaTech™ wicking technology.
                • Semi-fitted.

                ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"artemis-running-short-28-black-1957","links":{},"stock":{"item_id":1957,"product_id":1957,"stock_id":1,"qty":65,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-28-black-1957.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1959","_score":1,"_source":{"id":1959,"sku":"WSH04-28-Orange","name":"Artemis Running Short-28-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                \n

                • Black rouched shorts with mint waist.
                • Soft, lightweight construction.
                • LumaTech™ wicking technology.
                • Semi-fitted.

                ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"artemis-running-short-28-orange-1959","links":{},"stock":{"item_id":1959,"product_id":1959,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-28-orange-1959.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1991","_score":1,"_source":{"id":1991,"sku":"WSH06-28-Purple","name":"Angel Light Running Short-28-Purple","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                \n

                • Dark heather gray running shorts.
                • Snug fit.
                • Elastic waistband.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/w/s/wsh06-purple_main.jpg","small_image":"/w/s/wsh06-purple_main.jpg","thumbnail":"/w/s/wsh06-purple_main.jpg","color":"57","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"angel-light-running-short-28-purple-1991","links":{},"stock":{"item_id":1991,"product_id":1991,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-28-purple-1991.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1978","_score":1,"_source":{"id":1978,"sku":"WSH05-29-Yellow","name":"Bess Yoga Short-29-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                \n

                • Navy cotton shorts with light bue waist detail.
                • Front shirred waistband.
                • Flat-lock, chafe-free side seams.
                • Vented gusset.
                • Hidden interior pocket.
                • Sustainable and recycled fabric.

                ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-29-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bess-yoga-short-29-yellow-1978","links":{},"stock":{"item_id":1978,"product_id":1978,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-29-yellow-1978.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1981","_score":1,"_source":{"id":1981,"sku":"WSH05-30-Yellow","name":"Bess Yoga Short-30-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                \n

                • Navy cotton shorts with light bue waist detail.
                • Front shirred waistband.
                • Flat-lock, chafe-free side seams.
                • Vented gusset.
                • Hidden interior pocket.
                • Sustainable and recycled fabric.

                ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-30-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"bess-yoga-short-30-yellow-1981","links":{},"stock":{"item_id":1981,"product_id":1981,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-30-yellow-1981.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1912","_score":1,"_source":{"id":1912,"sku":"WSH01-29-Black","name":"Fiona Fitness Short-29-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                \n

                • Black run shorts
                - cotton/spandex.
                • 5” inseam.
                • Machine wash/Line dry.

                ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"fiona-fitness-short-29-black-1912","links":{},"stock":{"item_id":1912,"product_id":1912,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-29-black-1912.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1911","_score":1,"_source":{"id":1911,"sku":"WSH01-28-Red","name":"Fiona Fitness Short-28-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                \n

                • Black run shorts
                - cotton/spandex.
                • 5” inseam.
                • Machine wash/Line dry.

                ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"fiona-fitness-short-28-red-1911","links":{},"stock":{"item_id":1911,"product_id":1911,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-28-red-1911.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1915","_score":1,"_source":{"id":1915,"sku":"WSH01-30-Black","name":"Fiona Fitness Short-30-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                \n

                • Black run shorts
                - cotton/spandex.
                • 5” inseam.
                • Machine wash/Line dry.

                ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-30-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"fiona-fitness-short-30-black-1915","links":{},"stock":{"item_id":1915,"product_id":1915,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-30-black-1915.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1931","_score":1,"_source":{"id":1931,"sku":"WSH02-30-Gray","name":"Maxima Drawstring Short-30-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                \n

                • Light gray run shorts
                - cotton polyester.
                • Contrast binding.
                • 3\" inseam.
                • Machine wash/dry.

                ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-30-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"maxima-drawstring-short-30-gray-1931","links":{},"stock":{"item_id":1931,"product_id":1931,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-30-gray-1931.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1913","_score":1,"_source":{"id":1913,"sku":"WSH01-29-Green","name":"Fiona Fitness Short-29-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                \n

                • Black run shorts
                - cotton/spandex.
                • 5” inseam.
                • Machine wash/Line dry.

                ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"fiona-fitness-short-29-green-1913","links":{},"stock":{"item_id":1913,"product_id":1913,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-29-green-1913.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1918","_score":1,"_source":{"id":1918,"sku":"WSH01-31-Black","name":"Fiona Fitness Short-31-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                \n

                • Black run shorts
                - cotton/spandex.
                • 5” inseam.
                • Machine wash/Line dry.

                ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-31-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"fiona-fitness-short-31-black-1918","links":{},"stock":{"item_id":1918,"product_id":1918,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-31-black-1918.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1907","_score":1,"_source":{"id":1907,"sku":"WP13-29-Orange","name":"Portia Capri-29-Orange","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                \n

                • Salmon heather capri sweats.
                • Relaxed fit, high waist.
                • Inseam: 21\".
                • Wide elastic waistband.
                • Machine wash/dry.

                ","image":"/w/p/wp13-orange_main.jpg","small_image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","color":"56","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"portia-capri-29-orange-1907","links":{},"stock":{"item_id":1907,"product_id":1907,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp13-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-29-orange-1907.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1906","_score":1,"_source":{"id":1906,"sku":"WP13-29-Green","name":"Portia Capri-29-Green","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                \n

                • Salmon heather capri sweats.
                • Relaxed fit, high waist.
                • Inseam: 21\".
                • Wide elastic waistband.
                • Machine wash/dry.

                ","image":"/w/p/wp13-green_main.jpg","small_image":"/w/p/wp13-green_main.jpg","thumbnail":"/w/p/wp13-green_main.jpg","color":"53","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"portia-capri-29-green-1906","links":{},"stock":{"item_id":1906,"product_id":1906,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-29-green-1906.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1914","_score":1,"_source":{"id":1914,"sku":"WSH01-29-Red","name":"Fiona Fitness Short-29-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                \n

                • Black run shorts
                - cotton/spandex.
                • 5” inseam.
                • Machine wash/Line dry.

                ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"fiona-fitness-short-29-red-1914","links":{},"stock":{"item_id":1914,"product_id":1914,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-29-red-1914.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1904","_score":1,"_source":{"id":1904,"sku":"WP13-28-Orange","name":"Portia Capri-28-Orange","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                \n

                • Salmon heather capri sweats.
                • Relaxed fit, high waist.
                • Inseam: 21\".
                • Wide elastic waistband.
                • Machine wash/dry.

                ","image":"/w/p/wp13-orange_main.jpg","small_image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","color":"56","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"portia-capri-28-orange-1904","links":{},"stock":{"item_id":1904,"product_id":1904,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp13-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-28-orange-1904.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1876","_score":1,"_source":{"id":1876,"sku":"WP09-28-Purple","name":"Carina Basic Capri-28-Purple","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                \n

                • Black capris with rouching detail.
                • 93% cotton, 7% spandex.
                • Elasticized waistband.
                • Reinforced seams with exposed topstitching.
                • Soft, medium-weight jersey with added stretch.

                ","image":"/w/p/wp09-purple_main.jpg","small_image":"/w/p/wp09-purple_main.jpg","thumbnail":"/w/p/wp09-purple_main.jpg","color":"57","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"carina-basic-capri-28-purple-1876","links":{},"stock":{"item_id":1876,"product_id":1876,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-28-purple-1876.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1872","_score":1,"_source":{"id":1872,"sku":"WP08-29-Red","name":"Bardot Capri-29-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                \n

                • Black capris with pink waistband.
                • Cropped leggings.
                • Waistband drawcord.
                • Flat, thin and flattering.
                • Made with organic fabric.

                ","image":"/w/p/wp08-red_main.jpg","small_image":"/w/p/wp08-red_main.jpg","thumbnail":"/w/p/wp08-red_main.jpg","color":"58","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bardot-capri-29-red-1872","links":{},"stock":{"item_id":1872,"product_id":1872,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-29-red-1872.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1878","_score":1,"_source":{"id":1878,"sku":"WP09-29-Blue","name":"Carina Basic Capri-29-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                \n

                • Black capris with rouching detail.
                • 93% cotton, 7% spandex.
                • Elasticized waistband.
                • Reinforced seams with exposed topstitching.
                • Soft, medium-weight jersey with added stretch.

                ","image":"/w/p/wp09-blue_main.jpg","small_image":"/w/p/wp09-blue_main.jpg","thumbnail":"/w/p/wp09-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"carina-basic-capri-29-blue-1878","links":{},"stock":{"item_id":1878,"product_id":1878,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-29-blue-1878.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1899","_score":1,"_source":{"id":1899,"sku":"WP12-29-Gray","name":"Deirdre Relaxed-Fit Capri-29-Gray","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                \n

                • Heather gray capris with mint green waist & accents.
                • Comfortable, relaxed fit with high rise.
                • Moisture-wicking, 4-way stretch construction.
                • Lined with mesh for better support.
                • Hidden pocket at waistband.
                • Flatlock seams and lined gusset for comfort.

                ","image":"/w/p/wp12-gray_main.jpg","small_image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","color":"52","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"deirdre-relaxed-fit-capri-29-gray-1899","links":{},"stock":{"item_id":1899,"product_id":1899,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-29-gray-1899.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1856","_score":1,"_source":{"id":1856,"sku":"WP06-29-Black","name":"Diana Tights-29-Black","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                \n

                • Black legging with slate details.
                • Flat-lock, chafe-free side seams.
                • Vented gusset.
                • Secret interior pocket.
                • Sustainable and recycled fabric.

                ","image":"/w/p/wp06-black_main.jpg","small_image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","color":"49","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"diana-tights-29-black-1856","links":{},"stock":{"item_id":1856,"product_id":1856,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_outfit.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-29-black-1856.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1947","_score":1,"_source":{"id":1947,"sku":"WSH03-30-Blue","name":"Gwen Drawstring Bike Short-30-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                \n

                • Dark heather gray rouched bike shorts.
                • Fitted. Inseam: 2\".
                • Machine wash/dry.

                ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-30-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"gwen-drawstring-bike-short-30-blue-1947","links":{},"stock":{"item_id":1947,"product_id":1947,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-30-blue-1947.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1927","_score":1,"_source":{"id":1927,"sku":"WSH02-28-Yellow","name":"Maxima Drawstring Short-28-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                \n

                • Light gray run shorts
                - cotton polyester.
                • Contrast binding.
                • 3\" inseam.
                • Machine wash/dry.

                ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-28-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"maxima-drawstring-short-28-yellow-1927","links":{},"stock":{"item_id":1927,"product_id":1927,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-28-yellow-1927.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1932","_score":1,"_source":{"id":1932,"sku":"WSH02-30-Orange","name":"Maxima Drawstring Short-30-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                \n

                • Light gray run shorts
                - cotton polyester.
                • Contrast binding.
                • 3\" inseam.
                • Machine wash/dry.

                ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-30-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"maxima-drawstring-short-30-orange-1932","links":{},"stock":{"item_id":1932,"product_id":1932,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-30-orange-1932.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1903","_score":1,"_source":{"id":1903,"sku":"WP13-28-Green","name":"Portia Capri-28-Green","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                \n

                • Salmon heather capri sweats.
                • Relaxed fit, high waist.
                • Inseam: 21\".
                • Wide elastic waistband.
                • Machine wash/dry.

                ","image":"/w/p/wp13-green_main.jpg","small_image":"/w/p/wp13-green_main.jpg","thumbnail":"/w/p/wp13-green_main.jpg","color":"53","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"portia-capri-28-green-1903","links":{},"stock":{"item_id":1903,"product_id":1903,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-28-green-1903.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1938","_score":1,"_source":{"id":1938,"sku":"WSH02-32-Orange","name":"Maxima Drawstring Short-32-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                \n

                • Light gray run shorts
                - cotton polyester.
                • Contrast binding.
                • 3\" inseam.
                • Machine wash/dry.

                ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-32-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"maxima-drawstring-short-32-orange-1938","links":{},"stock":{"item_id":1938,"product_id":1938,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-32-orange-1938.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1951","_score":1,"_source":{"id":1951,"sku":"WSH03-31-Gray","name":"Gwen Drawstring Bike Short-31-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                \n

                • Dark heather gray rouched bike shorts.
                • Fitted. Inseam: 2\".
                • Machine wash/dry.

                ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-31-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"gwen-drawstring-bike-short-31-gray-1951","links":{},"stock":{"item_id":1951,"product_id":1951,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-31-gray-1951.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1953","_score":1,"_source":{"id":1953,"sku":"WSH03-32-Blue","name":"Gwen Drawstring Bike Short-32-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                \n

                • Dark heather gray rouched bike shorts.
                • Fitted. Inseam: 2\".
                • Machine wash/dry.

                ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"gwen-drawstring-bike-short-32-blue-1953","links":{},"stock":{"item_id":1953,"product_id":1953,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-32-blue-1953.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1960","_score":1,"_source":{"id":1960,"sku":"WSH04-29-Black","name":"Artemis Running Short-29-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                \n

                • Black rouched shorts with mint waist.
                • Soft, lightweight construction.
                • LumaTech™ wicking technology.
                • Semi-fitted.

                ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"artemis-running-short-29-black-1960","links":{},"stock":{"item_id":1960,"product_id":1960,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-29-black-1960.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1853","_score":1,"_source":{"id":1853,"sku":"WP06-28-Black","name":"Diana Tights-28-Black","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                \n

                • Black legging with slate details.
                • Flat-lock, chafe-free side seams.
                • Vented gusset.
                • Secret interior pocket.
                • Sustainable and recycled fabric.

                ","image":"/w/p/wp06-black_main.jpg","small_image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","color":"49","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"diana-tights-28-black-1853","links":{},"stock":{"item_id":1853,"product_id":1853,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_outfit.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-28-black-1853.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1858","_score":1,"_source":{"id":1858,"sku":"WP06-29-Orange","name":"Diana Tights-29-Orange","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                \n

                • Black legging with slate details.
                • Flat-lock, chafe-free side seams.
                • Vented gusset.
                • Secret interior pocket.
                • Sustainable and recycled fabric.

                ","image":"/w/p/wp06-orange_main.jpg","small_image":"/w/p/wp06-orange_main.jpg","thumbnail":"/w/p/wp06-orange_main.jpg","color":"56","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"diana-tights-29-orange-1858","links":{},"stock":{"item_id":1858,"product_id":1858,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-29-orange-1858.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1871","_score":1,"_source":{"id":1871,"sku":"WP08-29-Green","name":"Bardot Capri-29-Green","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                \n

                • Black capris with pink waistband.
                • Cropped leggings.
                • Waistband drawcord.
                • Flat, thin and flattering.
                • Made with organic fabric.

                ","image":"/w/p/wp08-green_main.jpg","small_image":"/w/p/wp08-green_main.jpg","thumbnail":"/w/p/wp08-green_main.jpg","color":"53","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bardot-capri-29-green-1871","links":{},"stock":{"item_id":1871,"product_id":1871,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-29-green-1871.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2026","_score":1,"_source":{"id":2026,"sku":"WSH11-29-Blue","name":"Ina Compression Short-29-Blue","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                \n

                • Royal blue bike shorts.
                • Compression fit.
                • Moisture-wicking.
                • Anti-microbial.
                • Machine wash/dry.

                ","image":"/w/s/wsh11-blue_main.jpg","small_image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","color":"50","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ina-compression-short-29-blue-2026","links":{},"stock":{"item_id":2026,"product_id":2026,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-29-blue-2026.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2036","_score":1,"_source":{"id":2036,"sku":"WSH12-30-Green","name":"Erika Running Short-30-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                \n

                • Seafoam pattern running shorts.
                • Elastic waistband.
                • Snug fit.
                • 4'' inseam.
                • 76% premium brushed Nylon / 24% Spandex.

                ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-30-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"erika-running-short-30-green-2036","links":{},"stock":{"item_id":2036,"product_id":2036,"stock_id":1,"qty":79,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-30-green-2036.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2038","_score":1,"_source":{"id":2038,"sku":"WSH12-30-Red","name":"Erika Running Short-30-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                \n

                • Seafoam pattern running shorts.
                • Elastic waistband.
                • Snug fit.
                • 4'' inseam.
                • 76% premium brushed Nylon / 24% Spandex.

                ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-30-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"erika-running-short-30-red-2038","links":{},"stock":{"item_id":2038,"product_id":2038,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-30-red-2038.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2031","_score":1,"_source":{"id":2031,"sku":"WSH12-28-Purple","name":"Erika Running Short-28-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                \n

                • Seafoam pattern running shorts.
                • Elastic waistband.
                • Snug fit.
                • 4'' inseam.
                • 76% premium brushed Nylon / 24% Spandex.

                ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"erika-running-short-28-purple-2031","links":{},"stock":{"item_id":2031,"product_id":2031,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-28-purple-2031.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2034","_score":1,"_source":{"id":2034,"sku":"WSH12-29-Purple","name":"Erika Running Short-29-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                \n

                • Seafoam pattern running shorts.
                • Elastic waistband.
                • Snug fit.
                • 4'' inseam.
                • 76% premium brushed Nylon / 24% Spandex.

                ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"erika-running-short-29-purple-2034","links":{},"stock":{"item_id":2034,"product_id":2034,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-29-purple-2034.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2030","_score":1,"_source":{"id":2030,"sku":"WSH12-28-Green","name":"Erika Running Short-28-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2019-08-08 07:03:33","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":"48.0000","minimal_price":45,"regular_price":45,"description":"

                A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                \r\n

                • Seafoam pattern running shorts.
                • Elastic waistband.
                • Snug fit.
                • 4'' inseam.
                • 76% premium brushed Nylon / 24% Spandex.

                ","special_from_date":"2019-06-25 00:00:00","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-28-green","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"172","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"erika-running-short-28-green-2030","links":{},"stock":{"item_id":2030,"product_id":2030,"stock_id":1,"qty":33,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":null,"vid":null},{"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":null,"vid":null},{"image":"/2/0/20972656_640.jpg","pos":4,"typ":"external-video","lab":null,"vid":{"url":"https://vimeo.com/798022","title":"Big Buck Bunny - Official Trailer","desc":"The official trailer for BIG BUCK BUNNY\r\n\r\nwww.bigbuckbunny.org","meta":"","video_id":"798022","type":"vimeo"}}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-28-green-2030.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2028","_score":1,"_source":{"id":2028,"sku":"WSH11-29-Red","name":"Ina Compression Short-29-Red","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                \n

                • Royal blue bike shorts.
                • Compression fit.
                • Moisture-wicking.
                • Anti-microbial.
                • Machine wash/dry.

                ","image":"/w/s/wsh11-red_main.jpg","small_image":"/w/s/wsh11-red_main.jpg","thumbnail":"/w/s/wsh11-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ina-compression-short-29-red-2028","links":{},"stock":{"item_id":2028,"product_id":2028,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-29-red-2028.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2044","_score":1,"_source":{"id":2044,"sku":"WSH12-32-Red","name":"Erika Running Short-32-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                \n

                • Seafoam pattern running shorts.
                • Elastic waistband.
                • Snug fit.
                • 4'' inseam.
                • 76% premium brushed Nylon / 24% Spandex.

                ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"erika-running-short-32-red-2044","links":{},"stock":{"item_id":2044,"product_id":2044,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-32-red-2044.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2040","_score":1,"_source":{"id":2040,"sku":"WSH12-31-Purple","name":"Erika Running Short-31-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                \n

                • Seafoam pattern running shorts.
                • Elastic waistband.
                • Snug fit.
                • 4'' inseam.
                • 76% premium brushed Nylon / 24% Spandex.

                ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-31-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"erika-running-short-31-purple-2040","links":{},"stock":{"item_id":2040,"product_id":2040,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-31-purple-2040.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2046","_score":1,"_source":{"id":2046,"sku":"24-WG085_Group","name":"Set of Sprite Yoga Straps","attribute_set_id":11,"status":1,"visibility":4,"type_id":"grouped","created_at":"2017-11-06 12:17:53","updated_at":"2019-07-05 12:07:54","product_links":[{"sku":"24-WG085_Group","link_type":"associated","linked_product_sku":"24-WG085","linked_product_type":"simple","position":0,"extension_attributes":{"qty":20}},{"sku":"24-WG085_Group","link_type":"associated","linked_product_sku":"24-WG086","linked_product_type":"simple","position":1,"extension_attributes":{"qty":30}},{"sku":"24-WG085_Group","link_type":"associated","linked_product_sku":"24-WG087","linked_product_type":"simple","position":2,"extension_attributes":{"qty":40}}],"tier_prices":[],"custom_attributes":null,"final_price":14,"max_price":14,"max_regular_price":14,"minimal_regular_price":14,"special_price":null,"minimal_price":14,"regular_price":0,"description":"

                Great set of Sprite Yoga Straps for every stretch and hold you need. There are three straps in this set: 6', 8' and 10'.

                \r\n
                  \r\n
                • 100% soft and durable cotton.\r\n
                • Plastic cinch buckle is easy to use.\r\n
                • Choice of three natural colors made from phthalate and heavy metal free dyes.\r\n
                ","image":"/l/u/luma-yoga-strap-set.jpg","small_image":"/l/u/luma-yoga-strap-set.jpg","thumbnail":"/l/u/luma-yoga-strap-set.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"set-of-sprite-yoga-straps","gift_message_available":"0","activity":"8","material":[32,44],"category_gear":"87","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"set-of-sprite-yoga-straps-2046","links":{"associated":[{"sku":"24-WG085","pos":0},{"sku":"24-WG086","pos":1},{"sku":"24-WG087","pos":2}]},"stock":{"item_id":2046,"product_id":2046,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-yoga-strap-set.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/set-of-sprite-yoga-straps-2046.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2041","_score":1,"_source":{"id":2041,"sku":"WSH12-31-Red","name":"Erika Running Short-31-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                \n

                • Seafoam pattern running shorts.
                • Elastic waistband.
                • Snug fit.
                • 4'' inseam.
                • 76% premium brushed Nylon / 24% Spandex.

                ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-31-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"erika-running-short-31-red-2041","links":{},"stock":{"item_id":2041,"product_id":2041,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-31-red-2041.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2015","_score":1,"_source":{"id":2015,"sku":"WSH09","name":"Mimi All-Purpose Short","attribute_set_id":10,"price":44,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                \n

                • Gray/seafoam two-layer shorts.
                • Water-resistant construction.
                • Inner mesh brief for breathable support.
                • 2.0\" inseam.
                • Reflective trim for visibility.

                ","image":"/w/s/wsh09-gray_main.jpg","small_image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mimi-all-purpose-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,154,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"106","pattern":"198","climate":[206,209],"slug":"mimi-all-purpose-short-2015","links":{},"stock":{"item_id":2015,"product_id":2015,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh09-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh09-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH09-28-Gray","id":2009,"status":1,"name":"Mimi All-Purpose Short-28-Gray","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"52","image":"/w/s/wsh09-gray_main.jpg","small_image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","url_key":"mimi-all-purpose-short-28-gray","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"WSH09-28-Green","id":2010,"status":1,"name":"Mimi All-Purpose Short-28-Green","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"53","image":"/w/s/wsh09-green_main.jpg","small_image":"/w/s/wsh09-green_main.jpg","thumbnail":"/w/s/wsh09-green_main.jpg","url_key":"mimi-all-purpose-short-28-green","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"WSH09-28-White","id":2011,"status":1,"name":"Mimi All-Purpose Short-28-White","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"59","image":"/w/s/wsh09-white_main.jpg","small_image":"/w/s/wsh09-white_main.jpg","thumbnail":"/w/s/wsh09-white_main.jpg","url_key":"mimi-all-purpose-short-28-white","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"WSH09-29-Gray","id":2012,"status":1,"name":"Mimi All-Purpose Short-29-Gray","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"52","image":"/w/s/wsh09-gray_main.jpg","small_image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","url_key":"mimi-all-purpose-short-29-gray","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"WSH09-29-Green","id":2013,"status":1,"name":"Mimi All-Purpose Short-29-Green","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"53","image":"/w/s/wsh09-green_main.jpg","small_image":"/w/s/wsh09-green_main.jpg","thumbnail":"/w/s/wsh09-green_main.jpg","url_key":"mimi-all-purpose-short-29-green","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"WSH09-29-White","id":2014,"status":1,"name":"Mimi All-Purpose Short-29-White","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"59","image":"/w/s/wsh09-white_main.jpg","small_image":"/w/s/wsh09-white_main.jpg","thumbnail":"/w/s/wsh09-white_main.jpg","url_key":"mimi-all-purpose-short-29-white","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44}],"configurable_options":[{"id":289,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"},{"value_index":59,"label":"White"}],"product_id":2015,"attribute_code":"color"},{"id":288,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":2015,"attribute_code":"size"}],"color_options":[52,53,59],"size_options":[172,173],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-2015.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2008","_score":1,"_source":{"id":2008,"sku":"WSH08","name":"Sybil Running Short","attribute_set_id":10,"price":44,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

                \n

                • Blue running shorts with green waist.
                • Drawstring-adjustable waist.
                • 4\" inseam. Machine wash/line dry.

                ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sybil-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,33,36],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"106","pattern":"198","climate":[205,212],"slug":"sybil-running-short-2008","links":{},"stock":{"item_id":2008,"product_id":2008,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH08-28-Purple","id":2003,"status":1,"name":"Sybil Running Short-28-Purple","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","35","2"],"size":"172","color":"57","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","url_key":"sybil-running-short-28-purple","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"WSH08-29-Purple","id":2004,"status":1,"name":"Sybil Running Short-29-Purple","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","35","2"],"size":"173","color":"57","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","url_key":"sybil-running-short-29-purple","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"WSH08-30-Purple","id":2005,"status":1,"name":"Sybil Running Short-30-Purple","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","35","2"],"size":"174","color":"57","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","url_key":"sybil-running-short-30-purple","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"WSH08-31-Purple","id":2006,"status":1,"name":"Sybil Running Short-31-Purple","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","35","2"],"size":"175","color":"57","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","url_key":"sybil-running-short-31-purple","msrp_display_actual_price_type":"0"},{"sku":"WSH08-32-Purple","id":2007,"status":1,"name":"Sybil Running Short-32-Purple","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","35","2"],"size":"176","color":"57","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","url_key":"sybil-running-short-32-purple","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44}],"configurable_options":[{"id":287,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":57,"label":"Purple"}],"product_id":2008,"attribute_code":"color"},{"id":286,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":2008,"attribute_code":"size"}],"color_options":[57],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-2008.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2022","_score":1,"_source":{"id":2022,"sku":"WSH10","name":"Ana Running Short","attribute_set_id":10,"price":40,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40,"description":"

                Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                \n

                • Black/pink two-layer shorts.
                • Low-rise elastic waistband.
                • Relaxed fit.
                • Ultra-lightweight fabric.
                • Internal drawstring.
                • Machine wash/dry.

                ","image":"/w/s/wsh10-black_main.jpg","small_image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ana-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,154,38],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"106","pattern":"198","climate":[202,209],"slug":"ana-running-short-2022","links":{},"stock":{"item_id":2022,"product_id":2022,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH10-28-Black","id":2016,"status":1,"name":"Ana Running Short-28-Black","price":40,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","36","2"],"size":"172","color":"49","image":"/w/s/wsh10-black_main.jpg","small_image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","url_key":"ana-running-short-28-black","msrp_display_actual_price_type":"0","final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40},{"sku":"WSH10-28-Orange","id":2017,"status":1,"name":"Ana Running Short-28-Orange","price":40,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","36","2"],"size":"172","color":"56","image":"/w/s/wsh10-orange_main.jpg","small_image":"/w/s/wsh10-orange_main.jpg","thumbnail":"/w/s/wsh10-orange_main.jpg","url_key":"ana-running-short-28-orange","msrp_display_actual_price_type":"0","final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40},{"sku":"WSH10-28-White","id":2018,"status":1,"name":"Ana Running Short-28-White","price":40,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","36","2"],"size":"172","color":"59","image":"/w/s/wsh10-white_main.jpg","small_image":"/w/s/wsh10-white_main.jpg","thumbnail":"/w/s/wsh10-white_main.jpg","url_key":"ana-running-short-28-white","msrp_display_actual_price_type":"0","final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40},{"sku":"WSH10-29-Black","id":2019,"status":1,"name":"Ana Running Short-29-Black","price":40,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","36","2"],"size":"173","color":"49","image":"/w/s/wsh10-black_main.jpg","small_image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","url_key":"ana-running-short-29-black","msrp_display_actual_price_type":"0","final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40},{"sku":"WSH10-29-Orange","id":2020,"status":1,"name":"Ana Running Short-29-Orange","price":40,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","36","2"],"size":"173","color":"56","image":"/w/s/wsh10-orange_main.jpg","small_image":"/w/s/wsh10-orange_main.jpg","thumbnail":"/w/s/wsh10-orange_main.jpg","url_key":"ana-running-short-29-orange","msrp_display_actual_price_type":"0","final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40},{"sku":"WSH10-29-White","id":2021,"status":1,"name":"Ana Running Short-29-White","price":40,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","36","2"],"size":"173","color":"59","image":"/w/s/wsh10-white_main.jpg","small_image":"/w/s/wsh10-white_main.jpg","thumbnail":"/w/s/wsh10-white_main.jpg","url_key":"ana-running-short-29-white","msrp_display_actual_price_type":"0","final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40}],"configurable_options":[{"id":291,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":59,"label":"White"}],"product_id":2022,"attribute_code":"color"},{"id":290,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":2022,"attribute_code":"size"}],"color_options":[49,56,59],"size_options":[172,173],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-2022.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2029","_score":1,"_source":{"id":2029,"sku":"WSH11","name":"Ina Compression Short","attribute_set_id":10,"price":49,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                \n

                • Royal blue bike shorts.
                • Compression fit.
                • Moisture-wicking.
                • Anti-microbial.
                • Machine wash/dry.

                ","image":"/w/s/wsh11-blue_main.jpg","small_image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ina-compression-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,151],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"0","style_bottom":[112,105,108],"pattern":"197","climate":[202,212,209],"slug":"ina-compression-short-2029","links":{},"stock":{"item_id":2029,"product_id":2029,"stock_id":1,"qty":9,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH11-28-Blue","id":2023,"status":1,"name":"Ina Compression Short-28-Blue","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"172","color":"50","image":"/w/s/wsh11-blue_main.jpg","small_image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","url_key":"ina-compression-short-28-blue","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"WSH11-28-Orange","id":2024,"status":1,"name":"Ina Compression Short-28-Orange","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"172","color":"56","image":"/w/s/wsh11-orange_main.jpg","small_image":"/w/s/wsh11-orange_main.jpg","thumbnail":"/w/s/wsh11-orange_main.jpg","url_key":"ina-compression-short-28-orange","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"WSH11-28-Red","id":2025,"status":1,"name":"Ina Compression Short-28-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"172","color":"58","image":"/w/s/wsh11-red_main.jpg","small_image":"/w/s/wsh11-red_main.jpg","thumbnail":"/w/s/wsh11-red_main.jpg","url_key":"ina-compression-short-28-red","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"WSH11-29-Blue","id":2026,"status":1,"name":"Ina Compression Short-29-Blue","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"173","color":"50","image":"/w/s/wsh11-blue_main.jpg","small_image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","url_key":"ina-compression-short-29-blue","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"WSH11-29-Orange","id":2027,"status":1,"name":"Ina Compression Short-29-Orange","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"173","color":"56","image":"/w/s/wsh11-orange_main.jpg","small_image":"/w/s/wsh11-orange_main.jpg","thumbnail":"/w/s/wsh11-orange_main.jpg","url_key":"ina-compression-short-29-orange","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"WSH11-29-Red","id":2028,"status":1,"name":"Ina Compression Short-29-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"173","color":"58","image":"/w/s/wsh11-red_main.jpg","small_image":"/w/s/wsh11-red_main.jpg","thumbnail":"/w/s/wsh11-red_main.jpg","url_key":"ina-compression-short-29-red","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49}],"configurable_options":[{"id":293,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":2029,"attribute_code":"color"},{"id":292,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":2029,"attribute_code":"size"}],"color_options":[50,56,58],"size_options":[172,173],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-2029.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1967","_score":1,"_source":{"id":1967,"sku":"WSH04-31-Green","name":"Artemis Running Short-31-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                \n

                • Black rouched shorts with mint waist.
                • Soft, lightweight construction.
                • LumaTech™ wicking technology.
                • Semi-fitted.

                ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-31-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"artemis-running-short-31-green-1967","links":{},"stock":{"item_id":1967,"product_id":1967,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-31-green-1967.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1969","_score":1,"_source":{"id":1969,"sku":"WSH04-32-Black","name":"Artemis Running Short-32-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                \n

                • Black rouched shorts with mint waist.
                • Soft, lightweight construction.
                • LumaTech™ wicking technology.
                • Semi-fitted.

                ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"artemis-running-short-32-black-1969","links":{},"stock":{"item_id":1969,"product_id":1969,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-32-black-1969.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1958","_score":1,"_source":{"id":1958,"sku":"WSH04-28-Green","name":"Artemis Running Short-28-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                \n

                • Black rouched shorts with mint waist.
                • Soft, lightweight construction.
                • LumaTech™ wicking technology.
                • Semi-fitted.

                ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"artemis-running-short-28-green-1958","links":{},"stock":{"item_id":1958,"product_id":1958,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-28-green-1958.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1987","_score":1,"_source":{"id":1987,"sku":"WSH05-32-Yellow","name":"Bess Yoga Short-32-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                \n

                • Navy cotton shorts with light bue waist detail.
                • Front shirred waistband.
                • Flat-lock, chafe-free side seams.
                • Vented gusset.
                • Hidden interior pocket.
                • Sustainable and recycled fabric.

                ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-32-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"bess-yoga-short-32-yellow-1987","links":{},"stock":{"item_id":1987,"product_id":1987,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-32-yellow-1987.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1977","_score":1,"_source":{"id":1977,"sku":"WSH05-29-Purple","name":"Bess Yoga Short-29-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                \n

                • Navy cotton shorts with light bue waist detail.
                • Front shirred waistband.
                • Flat-lock, chafe-free side seams.
                • Vented gusset.
                • Hidden interior pocket.
                • Sustainable and recycled fabric.

                ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bess-yoga-short-29-purple-1977","links":{},"stock":{"item_id":1977,"product_id":1977,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-29-purple-1977.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1964","_score":1,"_source":{"id":1964,"sku":"WSH04-30-Green","name":"Artemis Running Short-30-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                \n

                • Black rouched shorts with mint waist.
                • Soft, lightweight construction.
                • LumaTech™ wicking technology.
                • Semi-fitted.

                ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-30-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"artemis-running-short-30-green-1964","links":{},"stock":{"item_id":1964,"product_id":1964,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-30-green-1964.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1985","_score":1,"_source":{"id":1985,"sku":"WSH05-32-Blue","name":"Bess Yoga Short-32-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                \n

                • Navy cotton shorts with light bue waist detail.
                • Front shirred waistband.
                • Flat-lock, chafe-free side seams.
                • Vented gusset.
                • Hidden interior pocket.
                • Sustainable and recycled fabric.

                ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"bess-yoga-short-32-blue-1985","links":{},"stock":{"item_id":1985,"product_id":1985,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-32-blue-1985.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1963","_score":1,"_source":{"id":1963,"sku":"WSH04-30-Black","name":"Artemis Running Short-30-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                \n

                • Black rouched shorts with mint waist.
                • Soft, lightweight construction.
                • LumaTech™ wicking technology.
                • Semi-fitted.

                ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-30-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"artemis-running-short-30-black-1963","links":{},"stock":{"item_id":1963,"product_id":1963,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-30-black-1963.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1973","_score":1,"_source":{"id":1973,"sku":"WSH05-28-Blue","name":"Bess Yoga Short-28-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                \n

                • Navy cotton shorts with light bue waist detail.
                • Front shirred waistband.
                • Flat-lock, chafe-free side seams.
                • Vented gusset.
                • Hidden interior pocket.
                • Sustainable and recycled fabric.

                ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bess-yoga-short-28-blue-1973","links":{},"stock":{"item_id":1973,"product_id":1973,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-28-blue-1973.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1980","_score":1,"_source":{"id":1980,"sku":"WSH05-30-Purple","name":"Bess Yoga Short-30-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                \n

                • Navy cotton shorts with light bue waist detail.
                • Front shirred waistband.
                • Flat-lock, chafe-free side seams.
                • Vented gusset.
                • Hidden interior pocket.
                • Sustainable and recycled fabric.

                ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-30-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"bess-yoga-short-30-purple-1980","links":{},"stock":{"item_id":1980,"product_id":1980,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-30-purple-1980.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1983","_score":1,"_source":{"id":1983,"sku":"WSH05-31-Purple","name":"Bess Yoga Short-31-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                \n

                • Navy cotton shorts with light bue waist detail.
                • Front shirred waistband.
                • Flat-lock, chafe-free side seams.
                • Vented gusset.
                • Hidden interior pocket.
                • Sustainable and recycled fabric.

                ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-31-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"bess-yoga-short-31-purple-1983","links":{},"stock":{"item_id":1983,"product_id":1983,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-31-purple-1983.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1990","_score":1,"_source":{"id":1990,"sku":"WSH06-28-Orange","name":"Angel Light Running Short-28-Orange","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                \n

                • Dark heather gray running shorts.
                • Snug fit.
                • Elastic waistband.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/w/s/wsh06-orange_main.jpg","small_image":"/w/s/wsh06-orange_main.jpg","thumbnail":"/w/s/wsh06-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"angel-light-running-short-28-orange-1990","links":{},"stock":{"item_id":1990,"product_id":1990,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-28-orange-1990.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1970","_score":1,"_source":{"id":1970,"sku":"WSH04-32-Green","name":"Artemis Running Short-32-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                \n

                • Black rouched shorts with mint waist.
                • Soft, lightweight construction.
                • LumaTech™ wicking technology.
                • Semi-fitted.

                ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"artemis-running-short-32-green-1970","links":{},"stock":{"item_id":1970,"product_id":1970,"stock_id":1,"qty":52,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-32-green-1970.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1979","_score":1,"_source":{"id":1979,"sku":"WSH05-30-Blue","name":"Bess Yoga Short-30-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                \n

                • Navy cotton shorts with light bue waist detail.
                • Front shirred waistband.
                • Flat-lock, chafe-free side seams.
                • Vented gusset.
                • Hidden interior pocket.
                • Sustainable and recycled fabric.

                ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-30-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"bess-yoga-short-30-blue-1979","links":{},"stock":{"item_id":1979,"product_id":1979,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-30-blue-1979.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1997","_score":1,"_source":{"id":1997,"sku":"WSH07-28-Blue","name":"Echo Fit Compression Short-28-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                \n

                • Black compression shorts.
                • High-waisted cut.
                • Compression fit.
                • Inseam: 1.0\".
                • Machine wash/dry.

                ","image":"/w/s/wsh07-blue_main.jpg","small_image":"/w/s/wsh07-blue_main.jpg","thumbnail":"/w/s/wsh07-blue_main.jpg","color":"50","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"echo-fit-compression-short-28-blue-1997","links":{},"stock":{"item_id":1997,"product_id":1997,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-28-blue-1997.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1998","_score":1,"_source":{"id":1998,"sku":"WSH07-28-Purple","name":"Echo Fit Compression Short-28-Purple","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                \n

                • Black compression shorts.
                • High-waisted cut.
                • Compression fit.
                • Inseam: 1.0\".
                • Machine wash/dry.

                ","image":"/w/s/wsh07-purple_main.jpg","small_image":"/w/s/wsh07-purple_main.jpg","thumbnail":"/w/s/wsh07-purple_main.jpg","color":"57","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"echo-fit-compression-short-28-purple-1998","links":{},"stock":{"item_id":1998,"product_id":1998,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-28-purple-1998.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1975","_score":1,"_source":{"id":1975,"sku":"WSH05-28-Yellow","name":"Bess Yoga Short-28-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                \n

                • Navy cotton shorts with light bue waist detail.
                • Front shirred waistband.
                • Flat-lock, chafe-free side seams.
                • Vented gusset.
                • Hidden interior pocket.
                • Sustainable and recycled fabric.

                ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-28-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bess-yoga-short-28-yellow-1975","links":{},"stock":{"item_id":1975,"product_id":1975,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-28-yellow-1975.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1984","_score":1,"_source":{"id":1984,"sku":"WSH05-31-Yellow","name":"Bess Yoga Short-31-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                \n

                • Navy cotton shorts with light bue waist detail.
                • Front shirred waistband.
                • Flat-lock, chafe-free side seams.
                • Vented gusset.
                • Hidden interior pocket.
                • Sustainable and recycled fabric.

                ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-31-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"bess-yoga-short-31-yellow-1984","links":{},"stock":{"item_id":1984,"product_id":1984,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-31-yellow-1984.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1982","_score":1,"_source":{"id":1982,"sku":"WSH05-31-Blue","name":"Bess Yoga Short-31-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                \n

                • Navy cotton shorts with light bue waist detail.
                • Front shirred waistband.
                • Flat-lock, chafe-free side seams.
                • Vented gusset.
                • Hidden interior pocket.
                • Sustainable and recycled fabric.

                ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-31-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"bess-yoga-short-31-blue-1982","links":{},"stock":{"item_id":1982,"product_id":1982,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-31-blue-1982.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1989","_score":1,"_source":{"id":1989,"sku":"WSH06-28-Gray","name":"Angel Light Running Short-28-Gray","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                \n

                • Dark heather gray running shorts.
                • Snug fit.
                • Elastic waistband.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/w/s/wsh06-gray_main.jpg","small_image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","color":"52","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"angel-light-running-short-28-gray-1989","links":{},"stock":{"item_id":1989,"product_id":1989,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-28-gray-1989.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1996","_score":1,"_source":{"id":1996,"sku":"WSH07-28-Black","name":"Echo Fit Compression Short-28-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                \n

                • Black compression shorts.
                • High-waisted cut.
                • Compression fit.
                • Inseam: 1.0\".
                • Machine wash/dry.

                ","image":"/w/s/wsh07-black_main.jpg","small_image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","color":"49","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"echo-fit-compression-short-28-black-1996","links":{},"stock":{"item_id":1996,"product_id":1996,"stock_id":1,"qty":70,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh07-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-28-black-1996.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1976","_score":1,"_source":{"id":1976,"sku":"WSH05-29-Blue","name":"Bess Yoga Short-29-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                \n

                • Navy cotton shorts with light bue waist detail.
                • Front shirred waistband.
                • Flat-lock, chafe-free side seams.
                • Vented gusset.
                • Hidden interior pocket.
                • Sustainable and recycled fabric.

                ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bess-yoga-short-29-blue-1976","links":{},"stock":{"item_id":1976,"product_id":1976,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-29-blue-1976.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1986","_score":1,"_source":{"id":1986,"sku":"WSH05-32-Purple","name":"Bess Yoga Short-32-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                \n

                • Navy cotton shorts with light bue waist detail.
                • Front shirred waistband.
                • Flat-lock, chafe-free side seams.
                • Vented gusset.
                • Hidden interior pocket.
                • Sustainable and recycled fabric.

                ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"bess-yoga-short-32-purple-1986","links":{},"stock":{"item_id":1986,"product_id":1986,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-32-purple-1986.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1993","_score":1,"_source":{"id":1993,"sku":"WSH06-29-Orange","name":"Angel Light Running Short-29-Orange","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                \n

                • Dark heather gray running shorts.
                • Snug fit.
                • Elastic waistband.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/w/s/wsh06-orange_main.jpg","small_image":"/w/s/wsh06-orange_main.jpg","thumbnail":"/w/s/wsh06-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"angel-light-running-short-29-orange-1993","links":{},"stock":{"item_id":1993,"product_id":1993,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-29-orange-1993.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1974","_score":1,"_source":{"id":1974,"sku":"WSH05-28-Purple","name":"Bess Yoga Short-28-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                \n

                • Navy cotton shorts with light bue waist detail.
                • Front shirred waistband.
                • Flat-lock, chafe-free side seams.
                • Vented gusset.
                • Hidden interior pocket.
                • Sustainable and recycled fabric.

                ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bess-yoga-short-28-purple-1974","links":{},"stock":{"item_id":1974,"product_id":1974,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-28-purple-1974.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1992","_score":1,"_source":{"id":1992,"sku":"WSH06-29-Gray","name":"Angel Light Running Short-29-Gray","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                \n

                • Dark heather gray running shorts.
                • Snug fit.
                • Elastic waistband.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/w/s/wsh06-gray_main.jpg","small_image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","color":"52","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"angel-light-running-short-29-gray-1992","links":{},"stock":{"item_id":1992,"product_id":1992,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-29-gray-1992.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1971","_score":1,"_source":{"id":1971,"sku":"WSH04-32-Orange","name":"Artemis Running Short-32-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                \n

                • Black rouched shorts with mint waist.
                • Soft, lightweight construction.
                • LumaTech™ wicking technology.
                • Semi-fitted.

                ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-32-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"artemis-running-short-32-orange-1971","links":{},"stock":{"item_id":1971,"product_id":1971,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-32-orange-1971.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2000","_score":1,"_source":{"id":2000,"sku":"WSH07-29-Blue","name":"Echo Fit Compression Short-29-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                \n

                • Black compression shorts.
                • High-waisted cut.
                • Compression fit.
                • Inseam: 1.0\".
                • Machine wash/dry.

                ","image":"/w/s/wsh07-blue_main.jpg","small_image":"/w/s/wsh07-blue_main.jpg","thumbnail":"/w/s/wsh07-blue_main.jpg","color":"50","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"echo-fit-compression-short-29-blue-2000","links":{},"stock":{"item_id":2000,"product_id":2000,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-29-blue-2000.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1999","_score":1,"_source":{"id":1999,"sku":"WSH07-29-Black","name":"Echo Fit Compression Short-29-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                \n

                • Black compression shorts.
                • High-waisted cut.
                • Compression fit.
                • Inseam: 1.0\".
                • Machine wash/dry.

                ","image":"/w/s/wsh07-black_main.jpg","small_image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","color":"49","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"echo-fit-compression-short-29-black-1999","links":{},"stock":{"item_id":1999,"product_id":1999,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh07-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-29-black-1999.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1994","_score":1,"_source":{"id":1994,"sku":"WSH06-29-Purple","name":"Angel Light Running Short-29-Purple","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                \n

                • Dark heather gray running shorts.
                • Snug fit.
                • Elastic waistband.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/w/s/wsh06-purple_main.jpg","small_image":"/w/s/wsh06-purple_main.jpg","thumbnail":"/w/s/wsh06-purple_main.jpg","color":"57","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"angel-light-running-short-29-purple-1994","links":{},"stock":{"item_id":1994,"product_id":1994,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-29-purple-1994.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2035","_score":1,"_source":{"id":2035,"sku":"WSH12-29-Red","name":"Erika Running Short-29-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                \n

                • Seafoam pattern running shorts.
                • Elastic waistband.
                • Snug fit.
                • 4'' inseam.
                • 76% premium brushed Nylon / 24% Spandex.

                ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"erika-running-short-29-red-2035","links":{},"stock":{"item_id":2035,"product_id":2035,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-29-red-2035.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2043","_score":1,"_source":{"id":2043,"sku":"WSH12-32-Purple","name":"Erika Running Short-32-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                \n

                • Seafoam pattern running shorts.
                • Elastic waistband.
                • Snug fit.
                • 4'' inseam.
                • 76% premium brushed Nylon / 24% Spandex.

                ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"erika-running-short-32-purple-2043","links":{},"stock":{"item_id":2043,"product_id":2043,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-32-purple-2043.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2042","_score":1,"_source":{"id":2042,"sku":"WSH12-32-Green","name":"Erika Running Short-32-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                \n

                • Seafoam pattern running shorts.
                • Elastic waistband.
                • Snug fit.
                • 4'' inseam.
                • 76% premium brushed Nylon / 24% Spandex.

                ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"erika-running-short-32-green-2042","links":{},"stock":{"item_id":2042,"product_id":2042,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-32-green-2042.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2020","_score":1,"_source":{"id":2020,"sku":"WSH10-29-Orange","name":"Ana Running Short-29-Orange","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40,"description":"

                Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                \n

                • Black/pink two-layer shorts.
                • Low-rise elastic waistband.
                • Relaxed fit.
                • Ultra-lightweight fabric.
                • Internal drawstring.
                • Machine wash/dry.

                ","image":"/w/s/wsh10-orange_main.jpg","small_image":"/w/s/wsh10-orange_main.jpg","thumbnail":"/w/s/wsh10-orange_main.jpg","color":"56","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ana-running-short-29-orange-2020","links":{},"stock":{"item_id":2020,"product_id":2020,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-29-orange-2020.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2017","_score":1,"_source":{"id":2017,"sku":"WSH10-28-Orange","name":"Ana Running Short-28-Orange","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40,"description":"

                Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                \n

                • Black/pink two-layer shorts.
                • Low-rise elastic waistband.
                • Relaxed fit.
                • Ultra-lightweight fabric.
                • Internal drawstring.
                • Machine wash/dry.

                ","image":"/w/s/wsh10-orange_main.jpg","small_image":"/w/s/wsh10-orange_main.jpg","thumbnail":"/w/s/wsh10-orange_main.jpg","color":"56","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ana-running-short-28-orange-2017","links":{},"stock":{"item_id":2017,"product_id":2017,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-28-orange-2017.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2039","_score":1,"_source":{"id":2039,"sku":"WSH12-31-Green","name":"Erika Running Short-31-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                \n

                • Seafoam pattern running shorts.
                • Elastic waistband.
                • Snug fit.
                • 4'' inseam.
                • 76% premium brushed Nylon / 24% Spandex.

                ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-31-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"erika-running-short-31-green-2039","links":{},"stock":{"item_id":2039,"product_id":2039,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-31-green-2039.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2002","_score":1,"_source":{"id":2002,"sku":"WSH07","name":"Echo Fit Compression Short","attribute_set_id":10,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                \n

                • Black compression shorts.
                • High-waisted cut.
                • Compression fit.
                • Inseam: 1.0\".
                • Machine wash/dry.

                ","image":"/w/s/wsh07-black_main.jpg","small_image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"echo-fit-compression-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[112,105,108],"pattern":"197","climate":[202,205,212,206,209],"slug":"echo-fit-compression-short-2002","links":{},"stock":{"item_id":2002,"product_id":2002,"stock_id":1,"qty":14,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh07-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH07-28-Black","id":1996,"status":1,"name":"Echo Fit Compression Short-28-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","2"],"size":"172","color":"49","image":"/w/s/wsh07-black_main.jpg","small_image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","url_key":"echo-fit-compression-short-28-black","msrp_display_actual_price_type":"0"},{"sku":"WSH07-28-Blue","id":1997,"status":1,"name":"Echo Fit Compression Short-28-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","2"],"size":"172","color":"50","image":"/w/s/wsh07-blue_main.jpg","small_image":"/w/s/wsh07-blue_main.jpg","thumbnail":"/w/s/wsh07-blue_main.jpg","url_key":"echo-fit-compression-short-28-blue","msrp_display_actual_price_type":"0"},{"sku":"WSH07-28-Purple","id":1998,"status":1,"name":"Echo Fit Compression Short-28-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","2"],"size":"172","color":"57","image":"/w/s/wsh07-purple_main.jpg","small_image":"/w/s/wsh07-purple_main.jpg","thumbnail":"/w/s/wsh07-purple_main.jpg","url_key":"echo-fit-compression-short-28-purple","msrp_display_actual_price_type":"0"},{"sku":"WSH07-29-Black","id":1999,"status":1,"name":"Echo Fit Compression Short-29-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","2"],"size":"173","color":"49","image":"/w/s/wsh07-black_main.jpg","small_image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","url_key":"echo-fit-compression-short-29-black","msrp_display_actual_price_type":"0"},{"sku":"WSH07-29-Blue","id":2000,"status":1,"name":"Echo Fit Compression Short-29-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","2"],"size":"173","color":"50","image":"/w/s/wsh07-blue_main.jpg","small_image":"/w/s/wsh07-blue_main.jpg","thumbnail":"/w/s/wsh07-blue_main.jpg","url_key":"echo-fit-compression-short-29-blue","msrp_display_actual_price_type":"0"},{"sku":"WSH07-29-Purple","id":2001,"status":1,"name":"Echo Fit Compression Short-29-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","2"],"size":"173","color":"57","image":"/w/s/wsh07-purple_main.jpg","small_image":"/w/s/wsh07-purple_main.jpg","thumbnail":"/w/s/wsh07-purple_main.jpg","url_key":"echo-fit-compression-short-29-purple","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24}],"configurable_options":[{"id":285,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":2002,"attribute_code":"color"},{"id":284,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":2002,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[172,173],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-2002.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1988","_score":1,"_source":{"id":1988,"sku":"WSH05","name":"Bess Yoga Short","attribute_set_id":10,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                \n

                • Navy cotton shorts with light bue waist detail.
                • Front shirred waistband.
                • Flat-lock, chafe-free side seams.
                • Vented gusset.
                • Hidden interior pocket.
                • Sustainable and recycled fabric.

                ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"bess-yoga-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,156,36],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_bottom":"106","pattern":"198","climate":[202,212,209],"slug":"bess-yoga-short-1988","links":{},"stock":{"item_id":1988,"product_id":1988,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH05-28-Blue","id":1973,"status":1,"name":"Bess Yoga Short-28-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"172","color":"50","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","url_key":"bess-yoga-short-28-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-28-Purple","id":1974,"status":1,"name":"Bess Yoga Short-28-Purple","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"172","color":"57","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","url_key":"bess-yoga-short-28-purple","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-28-Yellow","id":1975,"status":1,"name":"Bess Yoga Short-28-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"172","color":"60","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","url_key":"bess-yoga-short-28-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-29-Blue","id":1976,"status":1,"name":"Bess Yoga Short-29-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"173","color":"50","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","url_key":"bess-yoga-short-29-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-29-Purple","id":1977,"status":1,"name":"Bess Yoga Short-29-Purple","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"173","color":"57","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","url_key":"bess-yoga-short-29-purple","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-29-Yellow","id":1978,"status":1,"name":"Bess Yoga Short-29-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"173","color":"60","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","url_key":"bess-yoga-short-29-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-30-Blue","id":1979,"status":1,"name":"Bess Yoga Short-30-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"174","color":"50","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","url_key":"bess-yoga-short-30-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-30-Purple","id":1980,"status":1,"name":"Bess Yoga Short-30-Purple","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"174","color":"57","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","url_key":"bess-yoga-short-30-purple","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-30-Yellow","id":1981,"status":1,"name":"Bess Yoga Short-30-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"174","color":"60","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","url_key":"bess-yoga-short-30-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-31-Blue","id":1982,"status":1,"name":"Bess Yoga Short-31-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"175","color":"50","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","url_key":"bess-yoga-short-31-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-31-Purple","id":1983,"status":1,"name":"Bess Yoga Short-31-Purple","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"175","color":"57","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","url_key":"bess-yoga-short-31-purple","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-31-Yellow","id":1984,"status":1,"name":"Bess Yoga Short-31-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"175","color":"60","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","url_key":"bess-yoga-short-31-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-32-Blue","id":1985,"status":1,"name":"Bess Yoga Short-32-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"176","color":"50","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","url_key":"bess-yoga-short-32-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-32-Purple","id":1986,"status":1,"name":"Bess Yoga Short-32-Purple","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"176","color":"57","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","url_key":"bess-yoga-short-32-purple","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-32-Yellow","id":1987,"status":1,"name":"Bess Yoga Short-32-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"176","color":"60","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","url_key":"bess-yoga-short-32-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28}],"configurable_options":[{"id":281,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"},{"value_index":60,"label":"Yellow"}],"product_id":1988,"attribute_code":"color"},{"id":280,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1988,"attribute_code":"size"}],"color_options":[50,57,60],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-1988.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1956","_score":1,"_source":{"id":1956,"sku":"WSH03","name":"Gwen Drawstring Bike Short","attribute_set_id":10,"price":50,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                \n

                • Dark heather gray rouched bike shorts.
                • Fitted. Inseam: 2\".
                • Machine wash/dry.

                ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"gwen-drawstring-bike-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,154],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_bottom":[106,112,105],"pattern":"197","climate":[202,205,212],"slug":"gwen-drawstring-bike-short-1956","links":{},"stock":{"item_id":1956,"product_id":1956,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH03-28-Blue","id":1941,"status":1,"name":"Gwen Drawstring Bike Short-28-Blue","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"172","color":"50","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","url_key":"gwen-drawstring-bike-short-28-blue","msrp_display_actual_price_type":"0"},{"sku":"WSH03-28-Gray","id":1942,"status":1,"name":"Gwen Drawstring Bike Short-28-Gray","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"172","color":"52","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","url_key":"gwen-drawstring-bike-short-28-gray","msrp_display_actual_price_type":"0"},{"sku":"WSH03-28-Orange","id":1943,"status":1,"name":"Gwen Drawstring Bike Short-28-Orange","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"172","color":"56","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","url_key":"gwen-drawstring-bike-short-28-orange","msrp_display_actual_price_type":"0"},{"sku":"WSH03-29-Blue","id":1944,"status":1,"name":"Gwen Drawstring Bike Short-29-Blue","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"173","color":"50","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","url_key":"gwen-drawstring-bike-short-29-blue","msrp_display_actual_price_type":"0"},{"sku":"WSH03-29-Gray","id":1945,"status":1,"name":"Gwen Drawstring Bike Short-29-Gray","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"173","color":"52","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","url_key":"gwen-drawstring-bike-short-29-gray","msrp_display_actual_price_type":"0"},{"sku":"WSH03-29-Orange","id":1946,"status":1,"name":"Gwen Drawstring Bike Short-29-Orange","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"173","color":"56","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","url_key":"gwen-drawstring-bike-short-29-orange","msrp_display_actual_price_type":"0"},{"sku":"WSH03-30-Blue","id":1947,"status":1,"name":"Gwen Drawstring Bike Short-30-Blue","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"174","color":"50","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","url_key":"gwen-drawstring-bike-short-30-blue","msrp_display_actual_price_type":"0"},{"sku":"WSH03-30-Gray","id":1948,"status":1,"name":"Gwen Drawstring Bike Short-30-Gray","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"174","color":"52","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","url_key":"gwen-drawstring-bike-short-30-gray","msrp_display_actual_price_type":"0"},{"sku":"WSH03-30-Orange","id":1949,"status":1,"name":"Gwen Drawstring Bike Short-30-Orange","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"174","color":"56","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","url_key":"gwen-drawstring-bike-short-30-orange","msrp_display_actual_price_type":"0"},{"sku":"WSH03-31-Blue","id":1950,"status":1,"name":"Gwen Drawstring Bike Short-31-Blue","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"175","color":"50","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","url_key":"gwen-drawstring-bike-short-31-blue","msrp_display_actual_price_type":"0"},{"sku":"WSH03-31-Gray","id":1951,"status":1,"name":"Gwen Drawstring Bike Short-31-Gray","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"175","color":"52","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","url_key":"gwen-drawstring-bike-short-31-gray","msrp_display_actual_price_type":"0","final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50},{"sku":"WSH03-31-Orange","id":1952,"status":1,"name":"Gwen Drawstring Bike Short-31-Orange","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"175","color":"56","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","url_key":"gwen-drawstring-bike-short-31-orange","msrp_display_actual_price_type":"0","final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50},{"sku":"WSH03-32-Blue","id":1953,"status":1,"name":"Gwen Drawstring Bike Short-32-Blue","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"176","color":"50","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","url_key":"gwen-drawstring-bike-short-32-blue","msrp_display_actual_price_type":"0","final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50},{"sku":"WSH03-32-Gray","id":1954,"status":1,"name":"Gwen Drawstring Bike Short-32-Gray","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"176","color":"52","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","url_key":"gwen-drawstring-bike-short-32-gray","msrp_display_actual_price_type":"0","final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50},{"sku":"WSH03-32-Orange","id":1955,"status":1,"name":"Gwen Drawstring Bike Short-32-Orange","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"176","color":"56","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","url_key":"gwen-drawstring-bike-short-32-orange","msrp_display_actual_price_type":"0","final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50}],"configurable_options":[{"id":277,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"}],"product_id":1956,"attribute_code":"color"},{"id":276,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1956,"attribute_code":"size"}],"color_options":[50,52,56],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-1956.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2010","_score":1,"_source":{"id":2010,"sku":"WSH09-28-Green","name":"Mimi All-Purpose Short-28-Green","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                \n

                • Gray/seafoam two-layer shorts.
                • Water-resistant construction.
                • Inner mesh brief for breathable support.
                • 2.0\" inseam.
                • Reflective trim for visibility.

                ","image":"/w/s/wsh09-green_main.jpg","small_image":"/w/s/wsh09-green_main.jpg","thumbnail":"/w/s/wsh09-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"mimi-all-purpose-short-28-green-2010","links":{},"stock":{"item_id":2010,"product_id":2010,"stock_id":1,"qty":77,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-28-green-2010.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2021","_score":1,"_source":{"id":2021,"sku":"WSH10-29-White","name":"Ana Running Short-29-White","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40,"description":"

                Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                \n

                • Black/pink two-layer shorts.
                • Low-rise elastic waistband.
                • Relaxed fit.
                • Ultra-lightweight fabric.
                • Internal drawstring.
                • Machine wash/dry.

                ","image":"/w/s/wsh10-white_main.jpg","small_image":"/w/s/wsh10-white_main.jpg","thumbnail":"/w/s/wsh10-white_main.jpg","color":"59","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ana-running-short-29-white-2021","links":{},"stock":{"item_id":2021,"product_id":2021,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-29-white-2021.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2001","_score":1,"_source":{"id":2001,"sku":"WSH07-29-Purple","name":"Echo Fit Compression Short-29-Purple","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                \n

                • Black compression shorts.
                • High-waisted cut.
                • Compression fit.
                • Inseam: 1.0\".
                • Machine wash/dry.

                ","image":"/w/s/wsh07-purple_main.jpg","small_image":"/w/s/wsh07-purple_main.jpg","thumbnail":"/w/s/wsh07-purple_main.jpg","color":"57","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"echo-fit-compression-short-29-purple-2001","links":{},"stock":{"item_id":2001,"product_id":2001,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-29-purple-2001.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2003","_score":1,"_source":{"id":2003,"sku":"WSH08-28-Purple","name":"Sybil Running Short-28-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

                \n

                • Blue running shorts with green waist.
                • Drawstring-adjustable waist.
                • 4\" inseam. Machine wash/line dry.

                ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sybil-running-short-28-purple-2003","links":{},"stock":{"item_id":2003,"product_id":2003,"stock_id":1,"qty":63,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-28-purple-2003.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2005","_score":1,"_source":{"id":2005,"sku":"WSH08-30-Purple","name":"Sybil Running Short-30-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

                \n

                • Blue running shorts with green waist.
                • Drawstring-adjustable waist.
                • 4\" inseam. Machine wash/line dry.

                ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-30-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"sybil-running-short-30-purple-2005","links":{},"stock":{"item_id":2005,"product_id":2005,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-30-purple-2005.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2004","_score":1,"_source":{"id":2004,"sku":"WSH08-29-Purple","name":"Sybil Running Short-29-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

                \n

                • Blue running shorts with green waist.
                • Drawstring-adjustable waist.
                • 4\" inseam. Machine wash/line dry.

                ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sybil-running-short-29-purple-2004","links":{},"stock":{"item_id":2004,"product_id":2004,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-29-purple-2004.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2019","_score":1,"_source":{"id":2019,"sku":"WSH10-29-Black","name":"Ana Running Short-29-Black","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40,"description":"

                Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                \n

                • Black/pink two-layer shorts.
                • Low-rise elastic waistband.
                • Relaxed fit.
                • Ultra-lightweight fabric.
                • Internal drawstring.
                • Machine wash/dry.

                ","image":"/w/s/wsh10-black_main.jpg","small_image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","color":"49","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ana-running-short-29-black-2019","links":{},"stock":{"item_id":2019,"product_id":2019,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-29-black-2019.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2016","_score":1,"_source":{"id":2016,"sku":"WSH10-28-Black","name":"Ana Running Short-28-Black","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40,"description":"

                Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                \n

                • Black/pink two-layer shorts.
                • Low-rise elastic waistband.
                • Relaxed fit.
                • Ultra-lightweight fabric.
                • Internal drawstring.
                • Machine wash/dry.

                ","image":"/w/s/wsh10-black_main.jpg","small_image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","color":"49","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ana-running-short-28-black-2016","links":{},"stock":{"item_id":2016,"product_id":2016,"stock_id":1,"qty":35,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-28-black-2016.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2007","_score":1,"_source":{"id":2007,"sku":"WSH08-32-Purple","name":"Sybil Running Short-32-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

                \n

                • Blue running shorts with green waist.
                • Drawstring-adjustable waist.
                • 4\" inseam. Machine wash/line dry.

                ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"sybil-running-short-32-purple-2007","links":{},"stock":{"item_id":2007,"product_id":2007,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-32-purple-2007.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2024","_score":1,"_source":{"id":2024,"sku":"WSH11-28-Orange","name":"Ina Compression Short-28-Orange","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                \n

                • Royal blue bike shorts.
                • Compression fit.
                • Moisture-wicking.
                • Anti-microbial.
                • Machine wash/dry.

                ","image":"/w/s/wsh11-orange_main.jpg","small_image":"/w/s/wsh11-orange_main.jpg","thumbnail":"/w/s/wsh11-orange_main.jpg","color":"56","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ina-compression-short-28-orange-2024","links":{},"stock":{"item_id":2024,"product_id":2024,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-28-orange-2024.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2027","_score":1,"_source":{"id":2027,"sku":"WSH11-29-Orange","name":"Ina Compression Short-29-Orange","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                \n

                • Royal blue bike shorts.
                • Compression fit.
                • Moisture-wicking.
                • Anti-microbial.
                • Machine wash/dry.

                ","image":"/w/s/wsh11-orange_main.jpg","small_image":"/w/s/wsh11-orange_main.jpg","thumbnail":"/w/s/wsh11-orange_main.jpg","color":"56","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ina-compression-short-29-orange-2027","links":{},"stock":{"item_id":2027,"product_id":2027,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-29-orange-2027.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2014","_score":1,"_source":{"id":2014,"sku":"WSH09-29-White","name":"Mimi All-Purpose Short-29-White","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                \n

                • Gray/seafoam two-layer shorts.
                • Water-resistant construction.
                • Inner mesh brief for breathable support.
                • 2.0\" inseam.
                • Reflective trim for visibility.

                ","image":"/w/s/wsh09-white_main.jpg","small_image":"/w/s/wsh09-white_main.jpg","thumbnail":"/w/s/wsh09-white_main.jpg","color":"59","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"mimi-all-purpose-short-29-white-2014","links":{},"stock":{"item_id":2014,"product_id":2014,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-29-white-2014.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2032","_score":1,"_source":{"id":2032,"sku":"WSH12-28-Red","name":"Erika Running Short-28-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                \n

                • Seafoam pattern running shorts.
                • Elastic waistband.
                • Snug fit.
                • 4'' inseam.
                • 76% premium brushed Nylon / 24% Spandex.

                ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"erika-running-short-28-red-2032","links":{},"stock":{"item_id":2032,"product_id":2032,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-28-red-2032.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2012","_score":1,"_source":{"id":2012,"sku":"WSH09-29-Gray","name":"Mimi All-Purpose Short-29-Gray","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                \n

                • Gray/seafoam two-layer shorts.
                • Water-resistant construction.
                • Inner mesh brief for breathable support.
                • 2.0\" inseam.
                • Reflective trim for visibility.

                ","image":"/w/s/wsh09-gray_main.jpg","small_image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","color":"52","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"mimi-all-purpose-short-29-gray-2012","links":{},"stock":{"item_id":2012,"product_id":2012,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh09-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh09-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-29-gray-2012.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2033","_score":1,"_source":{"id":2033,"sku":"WSH12-29-Green","name":"Erika Running Short-29-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                \n

                • Seafoam pattern running shorts.
                • Elastic waistband.
                • Snug fit.
                • 4'' inseam.
                • 76% premium brushed Nylon / 24% Spandex.

                ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"erika-running-short-29-green-2033","links":{},"stock":{"item_id":2033,"product_id":2033,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-29-green-2033.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2009","_score":1,"_source":{"id":2009,"sku":"WSH09-28-Gray","name":"Mimi All-Purpose Short-28-Gray","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                \n

                • Gray/seafoam two-layer shorts.
                • Water-resistant construction.
                • Inner mesh brief for breathable support.
                • 2.0\" inseam.
                • Reflective trim for visibility.

                ","image":"/w/s/wsh09-gray_main.jpg","small_image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","color":"52","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"mimi-all-purpose-short-28-gray-2009","links":{},"stock":{"item_id":2009,"product_id":2009,"stock_id":1,"qty":45,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh09-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh09-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-28-gray-2009.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2011","_score":1,"_source":{"id":2011,"sku":"WSH09-28-White","name":"Mimi All-Purpose Short-28-White","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                \n

                • Gray/seafoam two-layer shorts.
                • Water-resistant construction.
                • Inner mesh brief for breathable support.
                • 2.0\" inseam.
                • Reflective trim for visibility.

                ","image":"/w/s/wsh09-white_main.jpg","small_image":"/w/s/wsh09-white_main.jpg","thumbnail":"/w/s/wsh09-white_main.jpg","color":"59","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"mimi-all-purpose-short-28-white-2011","links":{},"stock":{"item_id":2011,"product_id":2011,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-28-white-2011.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2023","_score":1,"_source":{"id":2023,"sku":"WSH11-28-Blue","name":"Ina Compression Short-28-Blue","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                \n

                • Royal blue bike shorts.
                • Compression fit.
                • Moisture-wicking.
                • Anti-microbial.
                • Machine wash/dry.

                ","image":"/w/s/wsh11-blue_main.jpg","small_image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","color":"50","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ina-compression-short-28-blue-2023","links":{},"stock":{"item_id":2023,"product_id":2023,"stock_id":1,"qty":3,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-28-blue-2023.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2037","_score":1,"_source":{"id":2037,"sku":"WSH12-30-Purple","name":"Erika Running Short-30-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                \n

                • Seafoam pattern running shorts.
                • Elastic waistband.
                • Snug fit.
                • 4'' inseam.
                • 76% premium brushed Nylon / 24% Spandex.

                ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-30-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"erika-running-short-30-purple-2037","links":{},"stock":{"item_id":2037,"product_id":2037,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-30-purple-2037.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2013","_score":1,"_source":{"id":2013,"sku":"WSH09-29-Green","name":"Mimi All-Purpose Short-29-Green","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                \n

                • Gray/seafoam two-layer shorts.
                • Water-resistant construction.
                • Inner mesh brief for breathable support.
                • 2.0\" inseam.
                • Reflective trim for visibility.

                ","image":"/w/s/wsh09-green_main.jpg","small_image":"/w/s/wsh09-green_main.jpg","thumbnail":"/w/s/wsh09-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"mimi-all-purpose-short-29-green-2013","links":{},"stock":{"item_id":2013,"product_id":2013,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-29-green-2013.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1972","_score":1,"_source":{"id":1972,"sku":"WSH04","name":"Artemis Running Short","attribute_set_id":10,"price":45,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                \n

                • Black rouched shorts with mint waist.
                • Soft, lightweight construction.
                • LumaTech™ wicking technology.
                • Semi-fitted.

                ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"artemis-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"106","pattern":"198","climate":[202,205,212,206,209],"slug":"artemis-running-short-1972","links":{},"stock":{"item_id":1972,"product_id":1972,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH04-28-Black","id":1957,"status":1,"name":"Artemis Running Short-28-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"49","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","url_key":"artemis-running-short-28-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-28-Green","id":1958,"status":1,"name":"Artemis Running Short-28-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"53","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","url_key":"artemis-running-short-28-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-28-Orange","id":1959,"status":1,"name":"Artemis Running Short-28-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"56","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","url_key":"artemis-running-short-28-orange","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-29-Black","id":1960,"status":1,"name":"Artemis Running Short-29-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"49","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","url_key":"artemis-running-short-29-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-29-Green","id":1961,"status":1,"name":"Artemis Running Short-29-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"53","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","url_key":"artemis-running-short-29-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-29-Orange","id":1962,"status":1,"name":"Artemis Running Short-29-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"56","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","url_key":"artemis-running-short-29-orange","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-30-Black","id":1963,"status":1,"name":"Artemis Running Short-30-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"174","color":"49","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","url_key":"artemis-running-short-30-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-30-Green","id":1964,"status":1,"name":"Artemis Running Short-30-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"174","color":"53","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","url_key":"artemis-running-short-30-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-30-Orange","id":1965,"status":1,"name":"Artemis Running Short-30-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"174","color":"56","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","url_key":"artemis-running-short-30-orange","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-31-Black","id":1966,"status":1,"name":"Artemis Running Short-31-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"175","color":"49","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","url_key":"artemis-running-short-31-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-31-Green","id":1967,"status":1,"name":"Artemis Running Short-31-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"175","color":"53","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","url_key":"artemis-running-short-31-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-31-Orange","id":1968,"status":1,"name":"Artemis Running Short-31-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"175","color":"56","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","url_key":"artemis-running-short-31-orange","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-32-Black","id":1969,"status":1,"name":"Artemis Running Short-32-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"176","color":"49","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","url_key":"artemis-running-short-32-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-32-Green","id":1970,"status":1,"name":"Artemis Running Short-32-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"176","color":"53","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","url_key":"artemis-running-short-32-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-32-Orange","id":1971,"status":1,"name":"Artemis Running Short-32-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"176","color":"56","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","url_key":"artemis-running-short-32-orange","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45}],"configurable_options":[{"id":279,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":1972,"attribute_code":"color"},{"id":278,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1972,"attribute_code":"size"}],"color_options":[49,53,56],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-1972.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1995","_score":1,"_source":{"id":1995,"sku":"WSH06","name":"Angel Light Running Short","attribute_set_id":10,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                \n

                • Dark heather gray running shorts.
                • Snug fit.
                • Elastic waistband.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/w/s/wsh06-gray_main.jpg","small_image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"angel-light-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,36,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[106,112],"pattern":"197","climate":[202,205,212],"slug":"angel-light-running-short-1995","links":{},"stock":{"item_id":1995,"product_id":1995,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH06-28-Gray","id":1989,"status":1,"name":"Angel Light Running Short-28-Gray","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"52","image":"/w/s/wsh06-gray_main.jpg","small_image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","url_key":"angel-light-running-short-28-gray","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WSH06-28-Orange","id":1990,"status":1,"name":"Angel Light Running Short-28-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"56","image":"/w/s/wsh06-orange_main.jpg","small_image":"/w/s/wsh06-orange_main.jpg","thumbnail":"/w/s/wsh06-orange_main.jpg","url_key":"angel-light-running-short-28-orange","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WSH06-28-Purple","id":1991,"status":1,"name":"Angel Light Running Short-28-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"57","image":"/w/s/wsh06-purple_main.jpg","small_image":"/w/s/wsh06-purple_main.jpg","thumbnail":"/w/s/wsh06-purple_main.jpg","url_key":"angel-light-running-short-28-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WSH06-29-Gray","id":1992,"status":1,"name":"Angel Light Running Short-29-Gray","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"52","image":"/w/s/wsh06-gray_main.jpg","small_image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","url_key":"angel-light-running-short-29-gray","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WSH06-29-Orange","id":1993,"status":1,"name":"Angel Light Running Short-29-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"56","image":"/w/s/wsh06-orange_main.jpg","small_image":"/w/s/wsh06-orange_main.jpg","thumbnail":"/w/s/wsh06-orange_main.jpg","url_key":"angel-light-running-short-29-orange","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WSH06-29-Purple","id":1994,"status":1,"name":"Angel Light Running Short-29-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"57","image":"/w/s/wsh06-purple_main.jpg","small_image":"/w/s/wsh06-purple_main.jpg","thumbnail":"/w/s/wsh06-purple_main.jpg","url_key":"angel-light-running-short-29-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42}],"configurable_options":[{"id":283,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1995,"attribute_code":"color"},{"id":282,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1995,"attribute_code":"size"}],"color_options":[52,56,57],"size_options":[172,173],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-1995.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2045","_score":1,"_source":{"id":2045,"sku":"WSH12","name":"Erika Running Short","attribute_set_id":10,"price":45,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                \n

                • Seafoam pattern running shorts.
                • Elastic waistband.
                • Snug fit.
                • 4'' inseam.
                • 76% premium brushed Nylon / 24% Spandex.

                ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"erika-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[106,112],"pattern":"196","climate":[212,206,209],"slug":"erika-running-short-2045","links":{},"stock":{"item_id":2045,"product_id":2045,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH12-28-Green","id":2030,"status":1,"name":"Erika Running Short-28-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"172","color":"53","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","url_key":"erika-running-short-28-green","special_price":null,"special_from_date":"2019-06-25 00:00:00","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"minimal_price":45,"regular_price":45},{"sku":"WSH12-28-Purple","id":2031,"status":1,"name":"Erika Running Short-28-Purple","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"172","color":"57","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","url_key":"erika-running-short-28-purple","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-28-Red","id":2032,"status":1,"name":"Erika Running Short-28-Red","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"172","color":"58","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","url_key":"erika-running-short-28-red","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-29-Green","id":2033,"status":1,"name":"Erika Running Short-29-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"173","color":"53","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","url_key":"erika-running-short-29-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-29-Purple","id":2034,"status":1,"name":"Erika Running Short-29-Purple","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"173","color":"57","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","url_key":"erika-running-short-29-purple","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-29-Red","id":2035,"status":1,"name":"Erika Running Short-29-Red","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"173","color":"58","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","url_key":"erika-running-short-29-red","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-30-Green","id":2036,"status":1,"name":"Erika Running Short-30-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"174","color":"53","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","url_key":"erika-running-short-30-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-30-Purple","id":2037,"status":1,"name":"Erika Running Short-30-Purple","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"174","color":"57","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","url_key":"erika-running-short-30-purple","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-30-Red","id":2038,"status":1,"name":"Erika Running Short-30-Red","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"174","color":"58","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","url_key":"erika-running-short-30-red","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-31-Green","id":2039,"status":1,"name":"Erika Running Short-31-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"175","color":"53","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","url_key":"erika-running-short-31-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-31-Purple","id":2040,"status":1,"name":"Erika Running Short-31-Purple","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"175","color":"57","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","url_key":"erika-running-short-31-purple","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-31-Red","id":2041,"status":1,"name":"Erika Running Short-31-Red","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"175","color":"58","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","url_key":"erika-running-short-31-red","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-32-Green","id":2042,"status":1,"name":"Erika Running Short-32-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"176","color":"53","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","url_key":"erika-running-short-32-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-32-Purple","id":2043,"status":1,"name":"Erika Running Short-32-Purple","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"176","color":"57","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","url_key":"erika-running-short-32-purple","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-32-Red","id":2044,"status":1,"name":"Erika Running Short-32-Red","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"176","color":"58","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","url_key":"erika-running-short-32-red","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45}],"configurable_options":[{"id":295,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":2045,"attribute_code":"color"},{"id":294,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":2045,"attribute_code":"size"}],"color_options":[53,57,58],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-2045.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2018","_score":1,"_source":{"id":2018,"sku":"WSH10-28-White","name":"Ana Running Short-28-White","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40,"description":"

                Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                \n

                • Black/pink two-layer shorts.
                • Low-rise elastic waistband.
                • Relaxed fit.
                • Ultra-lightweight fabric.
                • Internal drawstring.
                • Machine wash/dry.

                ","image":"/w/s/wsh10-white_main.jpg","small_image":"/w/s/wsh10-white_main.jpg","thumbnail":"/w/s/wsh10-white_main.jpg","color":"59","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ana-running-short-28-white-2018","links":{},"stock":{"item_id":2018,"product_id":2018,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-28-white-2018.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2006","_score":1,"_source":{"id":2006,"sku":"WSH08-31-Purple","name":"Sybil Running Short-31-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

                \n

                • Blue running shorts with green waist.
                • Drawstring-adjustable waist.
                • 4\" inseam. Machine wash/line dry.

                ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-31-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"sybil-running-short-31-purple-2006","links":{},"stock":{"item_id":2006,"product_id":2006,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-01-14 09:38:48","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-31-purple-2006.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2025","_score":1,"_source":{"id":2025,"sku":"WSH11-28-Red","name":"Ina Compression Short-28-Red","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                \n

                • Royal blue bike shorts.
                • Compression fit.
                • Moisture-wicking.
                • Anti-microbial.
                • Machine wash/dry.

                ","image":"/w/s/wsh11-red_main.jpg","small_image":"/w/s/wsh11-red_main.jpg","thumbnail":"/w/s/wsh11-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ina-compression-short-28-red-2025","links":{},"stock":{"item_id":2025,"product_id":2025,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-28-red-2025.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"71","_score":1,"_source":{"id":71,"sku":"MH02-S-Black","name":"Teton Pullover Hoodie-S-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                \n

                • Black pullover hoodie.
                • Soft, brushed interior.
                • Front hand pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"teton-pullover-hoodie-s-black-71","links":{},"stock":{"item_id":71,"product_id":71,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-s-black-71.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"57","_score":1,"_source":{"id":57,"sku":"MH01-S-Orange","name":"Chaz Kangeroo Hoodie-S-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                \n

                • Two-tone gray heather hoodie.
                • Drawstring-adjustable hood.
                • Machine wash/dry.

                ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chaz-kangeroo-hoodie-s-orange-57","links":{},"stock":{"item_id":57,"product_id":57,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-s-orange-57.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"51","_score":1,"_source":{"id":51,"sku":"240-LV09","name":"Luma Yoga For Life","attribute_set_id":14,"price":10,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:34","updated_at":"2019-05-16 19:49:54","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":10,"max_price":10,"max_regular_price":10,"minimal_regular_price":10,"special_price":null,"minimal_price":10,"regular_price":10,"description":"
                • Increase strength + flexibility + metabolism
                • Burn calories + feel great
                • Gain energy + youthfulness + mental wellness

                Download description

                Tone up mind and bodyPro Yoga Instructor and Master Practitioner Marie Peale helps tone and sculpt your physique with her invigorating yet gentle approach.

                You'll learn to use yoga to relax, control stress and increase your calorie-burning capacity, all while exploring traditional and new yoga poses that lengthen and strengthen your full muscular structure.

                • Easy download
                • Audio options: Music and instruction or instruction only
                • Heart rate techniques explained
                • Breathing techniques explained
                • Move through exercises at your own pace

                Two 25-minute workout episodes and one 40-minute workout episode with warm-up and cool down:

                Episode 1Creative, fun session geared toward opening your lungs. Combines stretching and breathing with a focus on hips and shoulders.

                Episode 2Ramp up the tempo and energy with calorie-burning flows. A stimulating workout introducing the body-sculpting power of yoga.

                Episode 3Push your fitness reach and stamina with an intense series of standing and floor exercises and poses. End this extra-length session with a meditative cool down.

                instructor bio

                About MarieMarie is a trained martial artist and dancer with a BS in Biological Engineering and over 10 years as a certified yoga teacher. Marie has studied yoga in England, India and, in 2009, at the Ashraqat Ashram Yoga Farm in the United States. She has been teaching full time since then. Her focus on strength and wellness combines a deep knowledge of human biology and motivation guided by unconditional love for her audience.

                ","short_description":"

                \r\nLuma founder Erin Renny on yoga and longevity: \"I won't promise you'll live longer with yoga. No one can promise that. But your life will be healthier, less stressful, and more physically in tune when you focus on connecting your mind and body or a regular basis. Yoga is my favorite way to express this connection. I want to share the secrets of lifelong yoga with anyone willing to breathe and learn with me.\"\r\n

                ","meta_description":"You'll learn to use yoga to relax, control stress and increase your calorie-burning capacity, all while exploring traditional and new yoga poses that lengthen and strengthen your full muscular structure.","image":"/l/t/lt06.jpg","small_image":"/l/t/lt06.jpg","thumbnail":"/l/t/lt06.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"luma-yoga-for-life","msrp_display_actual_price_type":"0","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","gift_message_available":"0","tax_class_id":"2","activity":[8,16],"format":"102","slug":"luma-yoga-for-life-51","links":{},"stock":{"item_id":51,"product_id":51,"stock_id":1,"qty":10,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/t/lt06.jpg","pos":1,"typ":"image","lab":"Image","vid":null},{"image":"/6/5/654598283_640.jpg","pos":2,"typ":"external-video","lab":null,"vid":{"url":"https://vimeo.com/233305101","title":"Yoga For Life","desc":"Creative, fun session geared toward opening your lungs. Combines stretching and breathing with a focus on hips and shoulders.","meta":"","video_id":"233305101","type":"vimeo"}},{"image":"/h/q/hqdefault_1.jpg","pos":5,"typ":"external-video","lab":null,"vid":{"url":"https://youtu.be/L4K-mq9JoaQ","title":"Vue Storefront - Open Source PWA eCommerce Solution Demo","desc":"Vue Storefront is a progressive web application for eCommerce based on Vuejs.\r\n\r\nhttps://vuestorefront.io/\r\n\r\nWe created Vue Storefront to improve the shopping experience by making the storefront ultra fast, off-line ready and impervious to traffic overloads.\r\n\r\nVue Storefront is 100% open source and distributed under the MIT license. You can take the source code from GitHub, customize your template and use it for your eCommerce as a PWA.\r\n\r\nPlatforms we work with right now: Magento ( Magento2 and Magento 1 ), PrestaShop. \r\nYou can easily connect our Storefront to: hybris, spryker, shopify, demandware, sylius.\r\n\r\n--\r\nâ–º Subscribe to Divante Channel Here: \r\nhttps://www.youtube.com/channel/UCXELY-WzF41oJlM-8qt5z8g?sub_confirmation=1 \r\n\r\n--\r\nAs one of the biggest eCommerce Software Houses in Europe, headquartered in Poland and employing about 150 people, our core competencies are built around Magento. This is the leading eCommerce platform for medium to large companies. We have been operating since 2008 and we are part of the OEX Group which is listed on the Warsaw Stock Exchange. Our annual revenue has been growing at a minimum of about 30% y/y.\r\n\r\n----\r\nFollow Divante Online Here:\r\n\r\n\r\nFacebook: http://facebook.com/Divante.co\r\nWebsite: http://divante.co\r\nTwitter: http://twitter.com/DivanteLTD\r\nCEO Twitter: http://twitter.com/tomik99\r\nGitHub: https://github.com/DivanteLtd\r\nBehance: http://behance.net/behancead24\r\nLinkedIn: https://www.linkedin.com/company-beta/600853\r\n\r\n-","meta":"","video_id":"L4K-mq9JoaQ","type":"youtube"}}],"category":[{"category_id":9,"name":"Training","slug":"training-9","path":"training/training-9"},{"category_id":10,"name":"Video Download","slug":"video-download-10","path":"training/training-video/video-download-10"}],"url_path":"training/training-9/luma-yoga-for-life-51.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"81","_score":1,"_source":{"id":81,"sku":"MH02-XL-Purple","name":"Teton Pullover Hoodie-XL-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                \n

                • Black pullover hoodie.
                • Soft, brushed interior.
                • Front hand pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"teton-pullover-hoodie-xl-purple-81","links":{},"stock":{"item_id":81,"product_id":81,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xl-purple-81.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"73","_score":1,"_source":{"id":73,"sku":"MH02-S-Red","name":"Teton Pullover Hoodie-S-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                \n

                • Black pullover hoodie.
                • Soft, brushed interior.
                • Front hand pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"teton-pullover-hoodie-s-red-73","links":{},"stock":{"item_id":73,"product_id":73,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-s-red-73.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"89","_score":1,"_source":{"id":89,"sku":"MH03-S-Green","name":"Bruno Compete Hoodie-S-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                \n

                • Full zip black hoodie pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Kangaroo pocket.
                • Machine wash/dry.

                ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bruno-compete-hoodie-s-green-89","links":{},"stock":{"item_id":89,"product_id":89,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-s-green-89.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"74","_score":1,"_source":{"id":74,"sku":"MH02-M-Black","name":"Teton Pullover Hoodie-M-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                \n

                • Black pullover hoodie.
                • Soft, brushed interior.
                • Front hand pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"teton-pullover-hoodie-m-black-74","links":{},"stock":{"item_id":74,"product_id":74,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-m-black-74.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"76","_score":1,"_source":{"id":76,"sku":"MH02-M-Red","name":"Teton Pullover Hoodie-M-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                \n

                • Black pullover hoodie.
                • Soft, brushed interior.
                • Front hand pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"teton-pullover-hoodie-m-red-76","links":{},"stock":{"item_id":76,"product_id":76,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-m-red-76.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"78","_score":1,"_source":{"id":78,"sku":"MH02-L-Purple","name":"Teton Pullover Hoodie-L-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                \n

                • Black pullover hoodie.
                • Soft, brushed interior.
                • Front hand pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"teton-pullover-hoodie-l-purple-78","links":{},"stock":{"item_id":78,"product_id":78,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-l-purple-78.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"66","_score":1,"_source":{"id":66,"sku":"MH01-XL-Orange","name":"Chaz Kangeroo Hoodie-XL-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                \n

                • Two-tone gray heather hoodie.
                • Drawstring-adjustable hood.
                • Machine wash/dry.

                ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chaz-kangeroo-hoodie-xl-orange-66","links":{},"stock":{"item_id":66,"product_id":66,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xl-orange-66.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"72","_score":1,"_source":{"id":72,"sku":"MH02-S-Purple","name":"Teton Pullover Hoodie-S-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                \n

                • Black pullover hoodie.
                • Soft, brushed interior.
                • Front hand pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"teton-pullover-hoodie-s-purple-72","links":{},"stock":{"item_id":72,"product_id":72,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-s-purple-72.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"85","_score":1,"_source":{"id":85,"sku":"MH03-XS-Blue","name":"Bruno Compete Hoodie-XS-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                \n

                • Full zip black hoodie pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Kangaroo pocket.
                • Machine wash/dry.

                ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bruno-compete-hoodie-xs-blue-85","links":{},"stock":{"item_id":85,"product_id":85,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xs-blue-85.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"92","_score":1,"_source":{"id":92,"sku":"MH03-M-Green","name":"Bruno Compete Hoodie-M-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                \n

                • Full zip black hoodie pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Kangaroo pocket.
                • Machine wash/dry.

                ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bruno-compete-hoodie-m-green-92","links":{},"stock":{"item_id":92,"product_id":92,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-m-green-92.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"90","_score":1,"_source":{"id":90,"sku":"MH03-M-Black","name":"Bruno Compete Hoodie-M-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                \n

                • Full zip black hoodie pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Kangaroo pocket.
                • Machine wash/dry.

                ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bruno-compete-hoodie-m-black-90","links":{},"stock":{"item_id":90,"product_id":90,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-m-black-90.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"86","_score":1,"_source":{"id":86,"sku":"MH03-XS-Green","name":"Bruno Compete Hoodie-XS-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                \n

                • Full zip black hoodie pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Kangaroo pocket.
                • Machine wash/dry.

                ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bruno-compete-hoodie-xs-green-86","links":{},"stock":{"item_id":86,"product_id":86,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xs-green-86.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"95","_score":1,"_source":{"id":95,"sku":"MH03-L-Green","name":"Bruno Compete Hoodie-L-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                \n

                • Full zip black hoodie pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Kangaroo pocket.
                • Machine wash/dry.

                ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bruno-compete-hoodie-l-green-95","links":{},"stock":{"item_id":95,"product_id":95,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-l-green-95.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"97","_score":1,"_source":{"id":97,"sku":"MH03-XL-Blue","name":"Bruno Compete Hoodie-XL-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                \n

                • Full zip black hoodie pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Kangaroo pocket.
                • Machine wash/dry.

                ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bruno-compete-hoodie-xl-blue-97","links":{},"stock":{"item_id":97,"product_id":97,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xl-blue-97.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"79","_score":1,"_source":{"id":79,"sku":"MH02-L-Red","name":"Teton Pullover Hoodie-L-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                \n

                • Black pullover hoodie.
                • Soft, brushed interior.
                • Front hand pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"teton-pullover-hoodie-l-red-79","links":{},"stock":{"item_id":79,"product_id":79,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-l-red-79.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"100","_score":1,"_source":{"id":100,"sku":"MH04-XS-Green","name":"Frankie Sweatshirt-XS-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                \n

                • Light green crewneck sweatshirt.
                • Hand pockets.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"frankie-sweatshirt-xs-green-100","links":{},"stock":{"item_id":100,"product_id":100,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xs-green-100.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"77","_score":1,"_source":{"id":77,"sku":"MH02-L-Black","name":"Teton Pullover Hoodie-L-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                \n

                • Black pullover hoodie.
                • Soft, brushed interior.
                • Front hand pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"teton-pullover-hoodie-l-black-77","links":{},"stock":{"item_id":77,"product_id":77,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-l-black-77.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"87","_score":1,"_source":{"id":87,"sku":"MH03-S-Black","name":"Bruno Compete Hoodie-S-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                \n

                • Full zip black hoodie pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Kangaroo pocket.
                • Machine wash/dry.

                ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bruno-compete-hoodie-s-black-87","links":{},"stock":{"item_id":87,"product_id":87,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-s-black-87.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"88","_score":1,"_source":{"id":88,"sku":"MH03-S-Blue","name":"Bruno Compete Hoodie-S-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                \n

                • Full zip black hoodie pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Kangaroo pocket.
                • Machine wash/dry.

                ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bruno-compete-hoodie-s-blue-88","links":{},"stock":{"item_id":88,"product_id":88,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-s-blue-88.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"93","_score":1,"_source":{"id":93,"sku":"MH03-L-Black","name":"Bruno Compete Hoodie-L-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                \n

                • Full zip black hoodie pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Kangaroo pocket.
                • Machine wash/dry.

                ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bruno-compete-hoodie-l-black-93","links":{},"stock":{"item_id":93,"product_id":93,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-l-black-93.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"98","_score":1,"_source":{"id":98,"sku":"MH03-XL-Green","name":"Bruno Compete Hoodie-XL-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                \n

                • Full zip black hoodie pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Kangaroo pocket.
                • Machine wash/dry.

                ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bruno-compete-hoodie-xl-green-98","links":{},"stock":{"item_id":98,"product_id":98,"stock_id":1,"qty":49,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xl-green-98.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"52","_score":1,"_source":{"id":52,"sku":"MH01-XS-Black","name":"Chaz Kangeroo Hoodie-XS-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                \n

                • Two-tone gray heather hoodie.
                • Drawstring-adjustable hood.
                • Machine wash/dry.

                ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chaz-kangeroo-hoodie-xs-black-52","links":{},"stock":{"item_id":52,"product_id":52,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xs-black-52.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"67","_score":1,"_source":{"id":67,"sku":"MH01","name":"Chaz Kangeroo Hoodie","attribute_set_id":9,"price":52,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                \n

                • Two-tone gray heather hoodie.
                • Drawstring-adjustable hood.
                • Machine wash/dry.

                ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"chaz-kangeroo-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"159","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","pattern":"195","climate":[202,204,205,208,210],"slug":"chaz-kangeroo-hoodie-67","links":{},"stock":{"item_id":67,"product_id":67,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH01-XS-Black","id":52,"status":1,"name":"Chaz Kangeroo Hoodie-XS-Black","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"49","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","url_key":"chaz-kangeroo-hoodie-xs-black","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-XS-Gray","id":53,"status":1,"name":"Chaz Kangeroo Hoodie-XS-Gray","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"52","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","url_key":"chaz-kangeroo-hoodie-xs-gray","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-XS-Orange","id":54,"status":1,"name":"Chaz Kangeroo Hoodie-XS-Orange","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"56","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","url_key":"chaz-kangeroo-hoodie-xs-orange","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-S-Black","id":55,"status":1,"name":"Chaz Kangeroo Hoodie-S-Black","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"49","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","url_key":"chaz-kangeroo-hoodie-s-black","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-S-Gray","id":56,"status":1,"name":"Chaz Kangeroo Hoodie-S-Gray","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"52","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","url_key":"chaz-kangeroo-hoodie-s-gray","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-S-Orange","id":57,"status":1,"name":"Chaz Kangeroo Hoodie-S-Orange","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"56","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","url_key":"chaz-kangeroo-hoodie-s-orange","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-M-Black","id":58,"status":1,"name":"Chaz Kangeroo Hoodie-M-Black","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"49","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","url_key":"chaz-kangeroo-hoodie-m-black","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-M-Gray","id":59,"status":1,"name":"Chaz Kangeroo Hoodie-M-Gray","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"52","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","url_key":"chaz-kangeroo-hoodie-m-gray","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-M-Orange","id":60,"status":1,"name":"Chaz Kangeroo Hoodie-M-Orange","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"56","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","url_key":"chaz-kangeroo-hoodie-m-orange","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-L-Black","id":61,"status":1,"name":"Chaz Kangeroo Hoodie-L-Black","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"49","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","url_key":"chaz-kangeroo-hoodie-l-black","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-L-Gray","id":62,"status":1,"name":"Chaz Kangeroo Hoodie-L-Gray","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"52","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","url_key":"chaz-kangeroo-hoodie-l-gray","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-L-Orange","id":63,"status":1,"name":"Chaz Kangeroo Hoodie-L-Orange","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"56","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","url_key":"chaz-kangeroo-hoodie-l-orange","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-XL-Black","id":64,"status":1,"name":"Chaz Kangeroo Hoodie-XL-Black","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"49","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","url_key":"chaz-kangeroo-hoodie-xl-black","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-XL-Gray","id":65,"status":1,"name":"Chaz Kangeroo Hoodie-XL-Gray","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"52","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","url_key":"chaz-kangeroo-hoodie-xl-gray","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-XL-Orange","id":66,"status":1,"name":"Chaz Kangeroo Hoodie-XL-Orange","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"56","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","url_key":"chaz-kangeroo-hoodie-xl-orange","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52}],"configurable_options":[{"id":3,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"}],"product_id":67,"attribute_code":"color"},{"id":2,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":67,"attribute_code":"size"}],"color_options":[49,52,56],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-67.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"99","_score":1,"_source":{"id":99,"sku":"MH03","name":"Bruno Compete Hoodie","attribute_set_id":9,"price":63,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                \n

                • Full zip black hoodie pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Kangaroo pocket.
                • Machine wash/dry.

                ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"bruno-compete-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","pattern":"197","climate":[202,204,205,208,210],"slug":"bruno-compete-hoodie-99","links":{},"stock":{"item_id":99,"product_id":99,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH03-XS-Black","id":84,"status":1,"name":"Bruno Compete Hoodie-XS-Black","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"49","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","url_key":"bruno-compete-hoodie-xs-black","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-XS-Blue","id":85,"status":1,"name":"Bruno Compete Hoodie-XS-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"50","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","url_key":"bruno-compete-hoodie-xs-blue","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-XS-Green","id":86,"status":1,"name":"Bruno Compete Hoodie-XS-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"53","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","url_key":"bruno-compete-hoodie-xs-green","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-S-Black","id":87,"status":1,"name":"Bruno Compete Hoodie-S-Black","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"49","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","url_key":"bruno-compete-hoodie-s-black","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-S-Blue","id":88,"status":1,"name":"Bruno Compete Hoodie-S-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"50","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","url_key":"bruno-compete-hoodie-s-blue","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-S-Green","id":89,"status":1,"name":"Bruno Compete Hoodie-S-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"53","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","url_key":"bruno-compete-hoodie-s-green","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-M-Black","id":90,"status":1,"name":"Bruno Compete Hoodie-M-Black","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"49","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","url_key":"bruno-compete-hoodie-m-black","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-M-Blue","id":91,"status":1,"name":"Bruno Compete Hoodie-M-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"50","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","url_key":"bruno-compete-hoodie-m-blue","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-M-Green","id":92,"status":1,"name":"Bruno Compete Hoodie-M-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"53","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","url_key":"bruno-compete-hoodie-m-green","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-L-Black","id":93,"status":1,"name":"Bruno Compete Hoodie-L-Black","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"49","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","url_key":"bruno-compete-hoodie-l-black","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-L-Blue","id":94,"status":1,"name":"Bruno Compete Hoodie-L-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"50","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","url_key":"bruno-compete-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-L-Green","id":95,"status":1,"name":"Bruno Compete Hoodie-L-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"53","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","url_key":"bruno-compete-hoodie-l-green","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-XL-Black","id":96,"status":1,"name":"Bruno Compete Hoodie-XL-Black","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"49","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","url_key":"bruno-compete-hoodie-xl-black","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-XL-Blue","id":97,"status":1,"name":"Bruno Compete Hoodie-XL-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"50","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","url_key":"bruno-compete-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-XL-Green","id":98,"status":1,"name":"Bruno Compete Hoodie-XL-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"53","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","url_key":"bruno-compete-hoodie-xl-green","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63}],"configurable_options":[{"id":7,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":99,"attribute_code":"color"},{"id":6,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":99,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-99.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"83","_score":1,"_source":{"id":83,"sku":"MH02","name":"Teton Pullover Hoodie","attribute_set_id":9,"price":70,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                \n

                • Black pullover hoodie.
                • Soft, brushed interior.
                • Front hand pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"teton-pullover-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,145,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","pattern":"197","climate":[202,204,205,208,210],"slug":"teton-pullover-hoodie-83","links":{},"stock":{"item_id":83,"product_id":83,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH02-XS-Black","id":68,"status":1,"name":"Teton Pullover Hoodie-XS-Black","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"49","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","url_key":"teton-pullover-hoodie-xs-black","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-XS-Purple","id":69,"status":1,"name":"Teton Pullover Hoodie-XS-Purple","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"57","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","url_key":"teton-pullover-hoodie-xs-purple","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-XS-Red","id":70,"status":1,"name":"Teton Pullover Hoodie-XS-Red","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","url_key":"teton-pullover-hoodie-xs-red","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-S-Black","id":71,"status":1,"name":"Teton Pullover Hoodie-S-Black","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"49","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","url_key":"teton-pullover-hoodie-s-black","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-S-Purple","id":72,"status":1,"name":"Teton Pullover Hoodie-S-Purple","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"57","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","url_key":"teton-pullover-hoodie-s-purple","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-S-Red","id":73,"status":1,"name":"Teton Pullover Hoodie-S-Red","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","url_key":"teton-pullover-hoodie-s-red","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-M-Black","id":74,"status":1,"name":"Teton Pullover Hoodie-M-Black","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"49","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","url_key":"teton-pullover-hoodie-m-black","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-M-Purple","id":75,"status":1,"name":"Teton Pullover Hoodie-M-Purple","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"57","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","url_key":"teton-pullover-hoodie-m-purple","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-M-Red","id":76,"status":1,"name":"Teton Pullover Hoodie-M-Red","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","url_key":"teton-pullover-hoodie-m-red","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-L-Black","id":77,"status":1,"name":"Teton Pullover Hoodie-L-Black","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"49","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","url_key":"teton-pullover-hoodie-l-black","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-L-Purple","id":78,"status":1,"name":"Teton Pullover Hoodie-L-Purple","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"57","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","url_key":"teton-pullover-hoodie-l-purple","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-L-Red","id":79,"status":1,"name":"Teton Pullover Hoodie-L-Red","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","url_key":"teton-pullover-hoodie-l-red","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-XL-Black","id":80,"status":1,"name":"Teton Pullover Hoodie-XL-Black","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"49","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","url_key":"teton-pullover-hoodie-xl-black","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-XL-Purple","id":81,"status":1,"name":"Teton Pullover Hoodie-XL-Purple","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"57","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","url_key":"teton-pullover-hoodie-xl-purple","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-XL-Red","id":82,"status":1,"name":"Teton Pullover Hoodie-XL-Red","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","url_key":"teton-pullover-hoodie-xl-red","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70}],"configurable_options":[{"id":5,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":83,"attribute_code":"color"},{"id":4,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":83,"attribute_code":"size"}],"color_options":[49,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-83.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"7","_score":1,"_source":{"id":7,"sku":"24-UB02","name":"Impulse Duffle","attribute_set_id":15,"price":74,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:24","updated_at":"2017-11-06 12:16:24","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                Good for beach trips, track meets, yoga retreats and more, the Impulse Duffle is the companion you'll want at your side. A large U-shaped opening makes packing a hassle-free affair, while a zippered interior pocket keeps jewelry and other small valuables safely tucked out of sight.

                \n
                  \n
                • Wheeled.
                • \n
                • Dual carry handles.
                • \n
                • Retractable top handle.
                • \n
                • W 14\" x H 26\" x D 11\".
                • \n
                ","image":"/u/b/ub02-black-0.jpg","small_image":"/u/b/ub02-black-0.jpg","thumbnail":"/u/b/ub02-black-0.jpg","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"impulse-duffle","tax_class_id":"2","activity":[11,19,22],"style_bags":[25,26],"material":[37,38],"strap_bags":[61,64,68],"features_bags":[70,76,79],"slug":"impulse-duffle-7","links":{},"stock":{"item_id":7,"product_id":7,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/u/b/ub02-black-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/gerat-3/impulse-duffle-7.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"9","_score":1,"_source":{"id":9,"sku":"24-WB02","name":"Compete Track Tote","attribute_set_id":15,"price":2,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:24","updated_at":"2019-07-12 12:20:12","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":2,"max_price":2,"max_regular_price":2,"minimal_regular_price":2,"special_price":"1.0000","minimal_price":2,"regular_price":2,"description":"

                The Compete Track Tote holds a host of exercise supplies with ease. Stash your towel, jacket and street shoes inside. Tuck water bottles in easy-access external spaces. Perfect for trips to gym or yoga studio, with dual top handles for convenience to and from.

                \r\n

                  \r\n
                • Two-way zippers.
                • \r\n
                • Contrast detailing.
                • \r\n
                • W 22.0\" x H 17\" x D 10\".
                • \r\n
                ","special_from_date":"2015-05-06 00:00:00","special_to_date":"2016-07-12 00:00:00","image":"/w/b/wb02-green-0.jpg","small_image":"/w/b/wb02-green-0.jpg","thumbnail":"/w/b/wb02-green-0.jpg","color":"49","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"compete-track-tote","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[11,20,8],"style_bags":[29,30],"material":[37,38,39],"strap_bags":[61,64,66],"features_bags":[74,75,77],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"compete-track-tote-9","links":{},"stock":{"item_id":9,"product_id":9,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-green-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/gerat-3/compete-track-tote-9.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"13","_score":1,"_source":{"id":13,"sku":"24-WB07","name":"Overnight Duffle","attribute_set_id":15,"price":2,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:26","updated_at":"2019-05-08 10:36:22","product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                For long weekends away, camping outings and business trips, the Overnight Duffle can't be beat. The dual handles make it a cinch to carry, while the durable waterproof exterior helps you worry less about the weather. With multiple organizational pockets inside and out, it's the perfect travel companion.

                \r\n
                  \r\n
                • Dual top handles.
                • \r\n
                • W 15\" x H 15\" x D 9\".
                • \r\n
                ","image":"/w/b/wb07-brown-0_1.jpg","small_image":"/w/b/wb07-brown-0_1.jpg","thumbnail":"/w/b/wb07-brown-0_1.jpg","color":"49","category_ids":[3,7,4,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"overnight-duffle","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[19,22],"style_bags":"26","material":[35,37,38],"strap_bags":"64","features_bags":[74,79],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","slug":"overnight-duffle-13","links":{},"stock":{"item_id":13,"product_id":13,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-07-23 03:26:45","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/b/wb07-brown-0_1.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/gerat-3/overnight-duffle-13.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"5","_score":1,"_source":{"id":5,"sku":"24-MB06","name":"Rival Field Messenger","attribute_set_id":15,"price":2,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:23","updated_at":"2019-05-08 10:18:15","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":2,"max_price":2,"max_regular_price":2,"minimal_regular_price":2,"special_price":null,"minimal_price":2,"regular_price":2,"description":"

                The Rival Field Messenger packs all your campus, studio or trail essentials inside a unique design of soft, textured leather - with loads of character to spare. Two exterior pockets keep all your smaller items handy, and the roomy interior offers even more space.

                \r\n
                  \r\n
                • Leather construction.
                • \r\n
                • Adjustable fabric carry strap.
                • \r\n
                • Dimensions: 18\" x 10\" x 4\".
                • \r\n
                ","image":"/m/b/mb06-gray-0.jpg","small_image":"/m/b/mb06-gray-0.jpg","thumbnail":"/m/b/mb06-gray-0.jpg","color":"49","category_ids":[3,7,4,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rival-field-messenger","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[22,23],"style_bags":[27,28,29],"material":[35,37,41],"strap_bags":[61,62,66,67],"features_bags":[73,75,78],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","slug":"rival-field-messenger-5","links":{},"stock":{"item_id":5,"product_id":5,"stock_id":1,"qty":22,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/b/mb06-gray-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/gerat-3/rival-field-messenger-5.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"10","_score":1,"_source":{"id":10,"sku":"24-WB05","name":"Savvy Shoulder Tote","attribute_set_id":15,"price":32,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:25","updated_at":"2019-07-12 12:22:49","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":"24.0000","minimal_price":32,"regular_price":32,"description":"

                Powerwalking to the gym or strolling to the local coffeehouse, the Savvy Shoulder Tote lets you stash your essentials in sporty style! A top-loading compartment provides quick and easy access to larger items, while zippered pockets on the front and side hold cash, credit cards and phone.

                \r\n
                  \r\n
                • Water-resistant shell.
                • \r\n
                • Water bottle pocket.
                • \r\n
                • Padded, articulating shoulder strap.
                • \r\n
                • Dimensions: W 21\" x H 15\" x D 10\".
                • \r\n
                ","special_from_date":"2017-11-06 00:00:00","special_to_date":"2018-07-11 00:00:00","image":"/w/b/wb05-red-0.jpg","small_image":"/w/b/wb05-red-0.jpg","thumbnail":"/w/b/wb05-red-0.jpg","color":"49","category_ids":[3,7,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"savvy-shoulder-tote","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[11,8],"style_bags":[29,30],"strap_bags":[61,62,66,67],"features_bags":[72,75],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"1","slug":"savvy-shoulder-tote-10","links":{},"stock":{"item_id":10,"product_id":10,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-red-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/gerat-3/savvy-shoulder-tote-10.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"25","_score":1,"_source":{"id":25,"sku":"24-WG081-pink","name":"Sprite Stasis Ball 55 cm","attribute_set_id":12,"price":23,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":23,"max_price":23,"max_regular_price":23,"minimal_regular_price":23,"special_price":null,"minimal_price":23,"regular_price":23,"description":"

                The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                \n
                  \n
                • Durable, burst-resistant design.
                • \n
                • Hand pump included.
                • \n
                ","image":"/l/u/luma-stability-ball-pink.jpg","small_image":"/l/u/luma-stability-ball-pink.jpg","thumbnail":"/l/u/luma-stability-ball-pink.jpg","color":"58","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-55-cm-pink","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"91","slug":"sprite-stasis-ball-55-cm-25","links":{},"stock":{"item_id":25,"product_id":25,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball-pink.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-stasis-ball-55-cm-25.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"24","_score":1,"_source":{"id":24,"sku":"24-WG081-gray","name":"Sprite Stasis Ball 55 cm","attribute_set_id":12,"price":23,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":23,"max_price":23,"max_regular_price":23,"minimal_regular_price":23,"special_price":null,"minimal_price":23,"regular_price":23,"description":"

                The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                \n
                  \n
                • Durable, burst-resistant design.
                • \n
                • Hand pump included.
                • \n
                ","image":"/l/u/luma-stability-ball-gray.jpg","small_image":"/l/u/luma-stability-ball-gray.jpg","thumbnail":"/l/u/luma-stability-ball-gray.jpg","color":"52","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-55-cm-gray","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"91","slug":"sprite-stasis-ball-55-cm-24","links":{},"stock":{"item_id":24,"product_id":24,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball-gray.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-stasis-ball-55-cm-24.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"23","_score":1,"_source":{"id":23,"sku":"24-UG03","name":"Harmony Lumaflex™ Strength Band Kit ","attribute_set_id":11,"price":22,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                Forget fancy machines and costly memberships - the Harmony Lumaflex™ Stength Band Kit is all you need for an amazing workout. The kit has everything you need for a range of strengthening and toning exercises.

                \n
                  \n
                • Three flex bands.
                • \n
                • Textured, ergonomic grips.
                • \n
                • Adjustable lengths.
                • \n
                • Mesh carry bag included.
                • \n
                ","image":"/u/g/ug03-bk-0.jpg","small_image":"/u/g/ug03-bk-0.jpg","thumbnail":"/u/g/ug03-bk-0.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"harmony-lumaflex-trade-strength-band-kit","tax_class_id":"2","activity":"11","material":[35,44,45],"gender":[80,81,84],"category_gear":"87","slug":"harmony-lumaflex-and-trade-strength-band-kit-23","links":{},"stock":{"item_id":23,"product_id":23,"stock_id":1,"qty":73,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/u/g/ug03-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/harmony-lumaflex-and-trade-strength-band-kit-23.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"27","_score":1,"_source":{"id":27,"sku":"24-WG082-gray","name":"Sprite Stasis Ball 65 cm","attribute_set_id":12,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                \n
                  \n
                • 65 cm plastic shell.
                • \n
                • Durable, burst-resistant design.
                • \n
                • Hand pump included.
                • \n
                ","image":"/l/u/luma-stability-ball-gray.jpg","small_image":"/l/u/luma-stability-ball-gray.jpg","thumbnail":"/l/u/luma-stability-ball-gray.jpg","color":"52","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-65-cm-gray","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"92","slug":"sprite-stasis-ball-65-cm-27","links":{},"stock":{"item_id":27,"product_id":27,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball-gray.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-stasis-ball-65-cm-27.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"36","_score":1,"_source":{"id":36,"sku":"24-MG04","name":"Aim Analog Watch","attribute_set_id":11,"price":45,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Stay light-years ahead of the competition with our Aim Analog Watch. The flexible, rubberized strap is contoured to conform to the shape of your wrist for a comfortable all-day fit. The face features three illuminated hands, a digital read-out of the current time, and stopwatch functions.

                \n
                  \n
                • Japanese quartz movement.
                • \n
                • Strap fits 7\" to 8.0\".
                • \n
                ","image":"/m/g/mg04-bk-0.jpg","small_image":"/m/g/mg04-bk-0.jpg","thumbnail":"/m/g/mg04-bk-0.jpg","category_ids":[3,6],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aim-analog-watch","tax_class_id":"2","activity":[9,17,5,11],"material":[44,45],"gender":"80","category_gear":[86,87,90],"slug":"aim-analog-watch-36","links":{},"stock":{"item_id":36,"product_id":36,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/g/mg04-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"}],"url_path":"gear/gerat-3/aim-analog-watch-36.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"42","_score":1,"_source":{"id":42,"sku":"24-WG01","name":"Bolo Sport Watch","attribute_set_id":11,"price":49,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":"49.0000","minimal_price":49,"regular_price":49,"description":"

                The Bolo Sport Watch is sleek, sporty and sized just right to fit your smaller wrist. Easy to read and set up, it features a large digital face and button-activated alarm and stopwatch. The soft-touch resin band promises no-pinch comfort, while the water-resistant design lets you take your workout to the lap pool.

                \n
                  \n
                • Displays time, day and date.
                • \n
                • Two-tone design.
                • \n
                • 12/24 hour formats.
                • \n
                • Nickel-free buckle on band.
                • \n
                • Battery included.
                • \n
                ","special_from_date":"2017-11-06 12:16:30","image":"/w/g/wg01-bk-0.jpg","small_image":"/w/g/wg01-bk-0.jpg","thumbnail":"/w/g/wg01-bk-0.jpg","category_ids":[3,6],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bolo-sport-watch","tax_class_id":"2","activity":[9,17],"material":"48","gender":"81","category_gear":[86,87,90],"sale":"1","slug":"bolo-sport-watch-42","links":{},"stock":{"item_id":42,"product_id":42,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/g/wg01-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"}],"url_path":"gear/gerat-3/bolo-sport-watch-42.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"8","_score":1,"_source":{"id":8,"sku":"24-WB01","name":"Voyage Yoga Bag - tier price","attribute_set_id":15,"price":32,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:24","updated_at":"2018-08-22 09:32:35","product_links":[],"tier_prices":[{"customer_group_id":1,"qty":1,"value":15,"extension_attributes":{"website_id":0}}],"custom_attributes":null,"description":"

                Everything you need for a trip to the gym will fit inside this surprisingly spacious Voyage Yoga Bag. Stock it with a water bottle, change of clothes, pair of shoes, and even a few beauty products. Fits inside a locker and zips shut for security.

                \r\n
                  \r\n
                • Slip pocket on front.
                • \r\n
                • Contrast piping.
                • \r\n
                • Durable nylon construction.
                • \r\n
                ","image":"/w/b/wb01-black-0.jpg","small_image":"/w/b/wb01-black-0.jpg","thumbnail":"/w/b/wb01-black-0.jpg","color":"49","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"voyage-yoga-bag","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[11,8],"style_bags":[29,30],"material":[37,38],"strap_bags":[64,66],"features_bags":[74,77,79],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"voyage-yoga-bag-tier-price-8","links":{},"stock":{"item_id":8,"product_id":8,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-08-20 20:22:00","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/b/wb01-black-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/gerat-3/voyage-yoga-bag-tier-price-8.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"6","_score":1,"_source":{"id":6,"sku":"24-MB02","name":"Fusion Backpack","attribute_set_id":15,"price":59,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:23","updated_at":"2017-11-06 12:16:23","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                With the Fusion Backpack strapped on, every trek is an adventure - even a bus ride to work. That's partly because two large zippered compartments store everything you need, while a front zippered pocket and side mesh pouches are perfect for stashing those little extras, in case you change your mind and take the day off.

                \n
                  \n
                • Durable nylon construction.
                • \n
                • 2 main zippered compartments.
                • \n
                • 1 exterior zippered pocket.
                • \n
                • Mesh side pouches.
                • \n
                • Padded, adjustable straps.
                • \n
                • Top carry handle.
                • \n
                • Dimensions: 18\" x 10\" x 6\".
                • \n
                ","image":"/m/b/mb02-gray-0.jpg","small_image":"/m/b/mb02-gray-0.jpg","thumbnail":"/m/b/mb02-gray-0.jpg","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fusion-backpack","tax_class_id":"2","activity":[18,20,8],"style_bags":[24,28],"material":[31,37,38],"strap_bags":[61,64,65],"features_bags":[71,72,74,75],"slug":"fusion-backpack-6","links":{},"stock":{"item_id":6,"product_id":6,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/b/mb02-gray-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null},{"image":"/m/b/mb02-blue-0.jpg","pos":2,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/gerat-3/fusion-backpack-6.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"19","_score":1,"_source":{"id":19,"sku":"24-UG05","name":"Go-Get'r Pushup Grips","attribute_set_id":11,"price":19,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2017-11-06 12:16:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":19,"max_price":19,"max_regular_price":19,"minimal_regular_price":19,"special_price":null,"minimal_price":19,"regular_price":19,"description":"

                The Go-Get'r Pushup Grips safely provide the extra range of motion you need for a deep-dip routine targeting core, shoulder, chest and arm strength. Do fewer pushups using more energy, getting better results faster than the standard floor-level technique yield.

                \n
                  \n
                • Durable foam grips.
                • \n
                • Supportive base.
                • \n
                ","image":"/u/g/ug05-gr-0.jpg","small_image":"/u/g/ug05-gr-0.jpg","thumbnail":"/u/g/ug05-gr-0.jpg","category_ids":[3,7,5,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"go-get-r-pushup-grips","tax_class_id":"2","activity":[16,11],"material":[44,45],"gender":[80,81,84],"category_gear":"87","erin_recommends":"1","new":"1","slug":"go-getr-pushup-grips-19","links":{},"stock":{"item_id":19,"product_id":19,"stock_id":1,"qty":66,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/u/g/ug05-gr-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/gerat-3/go-getr-pushup-grips-19.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"22","_score":1,"_source":{"id":22,"sku":"24-WG088","name":"Sprite Foam Roller","attribute_set_id":11,"price":19,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2019-09-03 12:09:39","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":19,"max_price":19,"max_regular_price":19,"minimal_regular_price":19,"special_price":null,"minimal_price":19,"regular_price":19,"description":"

                It hurts so good to use the Sprite Foam Roller on achy, tired muscles for myofascial massage therapy. Or you can add this fundamental piece to your Pilates and yoga accouterment, or apply towards core stability, strengthening and balance exercise.

                \r\n
                  \r\n
                • 6'' wide by 12'' long.
                • \r\n
                • Safe for myofascial release.
                • \r\n
                • EPP or PE foam options.
                • \r\n
                • Solid, dense, closed-cell foam.
                • \r\n
                ","image":"/l/u/luma-foam-roller.jpg","small_image":"/l/u/luma-foam-roller.jpg","thumbnail":"/l/u/luma-foam-roller.jpg","color":"50","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-foam-roller","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[8,11],"material":"42","gender":[80,81,84],"category_gear":"87","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"sprite-foam-roller-22","links":{},"stock":{"item_id":22,"product_id":22,"stock_id":1,"qty":26,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-foam-roller.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/gerat-3/sprite-foam-roller-22.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"69","_score":1,"_source":{"id":69,"sku":"MH02-XS-Purple","name":"Teton Pullover Hoodie-XS-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                \n

                • Black pullover hoodie.
                • Soft, brushed interior.
                • Front hand pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"teton-pullover-hoodie-xs-purple-69","links":{},"stock":{"item_id":69,"product_id":69,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xs-purple-69.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"70","_score":1,"_source":{"id":70,"sku":"MH02-XS-Red","name":"Teton Pullover Hoodie-XS-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                \n

                • Black pullover hoodie.
                • Soft, brushed interior.
                • Front hand pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"teton-pullover-hoodie-xs-red-70","links":{},"stock":{"item_id":70,"product_id":70,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xs-red-70.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"68","_score":1,"_source":{"id":68,"sku":"MH02-XS-Black","name":"Teton Pullover Hoodie-XS-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                \n

                • Black pullover hoodie.
                • Soft, brushed interior.
                • Front hand pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"teton-pullover-hoodie-xs-black-68","links":{},"stock":{"item_id":68,"product_id":68,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xs-black-68.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"65","_score":1,"_source":{"id":65,"sku":"MH01-XL-Gray","name":"Chaz Kangeroo Hoodie-XL-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                \n

                • Two-tone gray heather hoodie.
                • Drawstring-adjustable hood.
                • Machine wash/dry.

                ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chaz-kangeroo-hoodie-xl-gray-65","links":{},"stock":{"item_id":65,"product_id":65,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xl-gray-65.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"63","_score":1,"_source":{"id":63,"sku":"MH01-L-Orange","name":"Chaz Kangeroo Hoodie-L-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                \n

                • Two-tone gray heather hoodie.
                • Drawstring-adjustable hood.
                • Machine wash/dry.

                ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chaz-kangeroo-hoodie-l-orange-63","links":{},"stock":{"item_id":63,"product_id":63,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-l-orange-63.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"82","_score":1,"_source":{"id":82,"sku":"MH02-XL-Red","name":"Teton Pullover Hoodie-XL-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                \n

                • Black pullover hoodie.
                • Soft, brushed interior.
                • Front hand pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"teton-pullover-hoodie-xl-red-82","links":{},"stock":{"item_id":82,"product_id":82,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xl-red-82.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"56","_score":1,"_source":{"id":56,"sku":"MH01-S-Gray","name":"Chaz Kangeroo Hoodie-S-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                \n

                • Two-tone gray heather hoodie.
                • Drawstring-adjustable hood.
                • Machine wash/dry.

                ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chaz-kangeroo-hoodie-s-gray-56","links":{},"stock":{"item_id":56,"product_id":56,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-s-gray-56.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"54","_score":1,"_source":{"id":54,"sku":"MH01-XS-Orange","name":"Chaz Kangeroo Hoodie-XS-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                \n

                • Two-tone gray heather hoodie.
                • Drawstring-adjustable hood.
                • Machine wash/dry.

                ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chaz-kangeroo-hoodie-xs-orange-54","links":{},"stock":{"item_id":54,"product_id":54,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xs-orange-54.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"80","_score":1,"_source":{"id":80,"sku":"MH02-XL-Black","name":"Teton Pullover Hoodie-XL-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                \n

                • Black pullover hoodie.
                • Soft, brushed interior.
                • Front hand pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"teton-pullover-hoodie-xl-black-80","links":{},"stock":{"item_id":80,"product_id":80,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xl-black-80.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"75","_score":1,"_source":{"id":75,"sku":"MH02-M-Purple","name":"Teton Pullover Hoodie-M-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                \n

                • Black pullover hoodie.
                • Soft, brushed interior.
                • Front hand pockets.
                • Machine wash/dry.

                ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"teton-pullover-hoodie-m-purple-75","links":{},"stock":{"item_id":75,"product_id":75,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-m-purple-75.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"59","_score":1,"_source":{"id":59,"sku":"MH01-M-Gray","name":"Chaz Kangeroo Hoodie-M-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                \n

                • Two-tone gray heather hoodie.
                • Drawstring-adjustable hood.
                • Machine wash/dry.

                ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chaz-kangeroo-hoodie-m-gray-59","links":{},"stock":{"item_id":59,"product_id":59,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-m-gray-59.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"64","_score":1,"_source":{"id":64,"sku":"MH01-XL-Black","name":"Chaz Kangeroo Hoodie-XL-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                \n

                • Two-tone gray heather hoodie.
                • Drawstring-adjustable hood.
                • Machine wash/dry.

                ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chaz-kangeroo-hoodie-xl-black-64","links":{},"stock":{"item_id":64,"product_id":64,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xl-black-64.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"53","_score":1,"_source":{"id":53,"sku":"MH01-XS-Gray","name":"Chaz Kangeroo Hoodie-XS-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                \n

                • Two-tone gray heather hoodie.
                • Drawstring-adjustable hood.
                • Machine wash/dry.

                ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chaz-kangeroo-hoodie-xs-gray-53","links":{},"stock":{"item_id":53,"product_id":53,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xs-gray-53.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"60","_score":1,"_source":{"id":60,"sku":"MH01-M-Orange","name":"Chaz Kangeroo Hoodie-M-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                \n

                • Two-tone gray heather hoodie.
                • Drawstring-adjustable hood.
                • Machine wash/dry.

                ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chaz-kangeroo-hoodie-m-orange-60","links":{},"stock":{"item_id":60,"product_id":60,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-m-orange-60.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"62","_score":1,"_source":{"id":62,"sku":"MH01-L-Gray","name":"Chaz Kangeroo Hoodie-L-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                \n

                • Two-tone gray heather hoodie.
                • Drawstring-adjustable hood.
                • Machine wash/dry.

                ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chaz-kangeroo-hoodie-l-gray-62","links":{},"stock":{"item_id":62,"product_id":62,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-l-gray-62.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"58","_score":1,"_source":{"id":58,"sku":"MH01-M-Black","name":"Chaz Kangeroo Hoodie-M-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                \n

                • Two-tone gray heather hoodie.
                • Drawstring-adjustable hood.
                • Machine wash/dry.

                ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chaz-kangeroo-hoodie-m-black-58","links":{},"stock":{"item_id":58,"product_id":58,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-m-black-58.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"55","_score":1,"_source":{"id":55,"sku":"MH01-S-Black","name":"Chaz Kangeroo Hoodie-S-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                \n

                • Two-tone gray heather hoodie.
                • Drawstring-adjustable hood.
                • Machine wash/dry.

                ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chaz-kangeroo-hoodie-s-black-55","links":{},"stock":{"item_id":55,"product_id":55,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-s-black-55.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"61","_score":1,"_source":{"id":61,"sku":"MH01-L-Black","name":"Chaz Kangeroo Hoodie-L-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                \n

                • Two-tone gray heather hoodie.
                • Drawstring-adjustable hood.
                • Machine wash/dry.

                ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chaz-kangeroo-hoodie-l-black-61","links":{},"stock":{"item_id":61,"product_id":61,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-l-black-61.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"14","_score":1,"_source":{"id":14,"sku":"24-WB04","name":"Push It Messenger Bag - tier price","attribute_set_id":15,"price":45,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:26","updated_at":"2018-08-22 09:27:59","product_links":[],"tier_prices":[{"customer_group_id":1,"qty":1,"value":35,"extension_attributes":{"website_id":0}}],"custom_attributes":null,"description":"

                The name says so, but the Push It Messenger Bag is much more than a busy commuter's tote. It's a closet away from home when you're pedaling from class or work to gym and back or home again. It's the perfect size and shape for laptop, folded clothes, even extra shoes.

                \r\n
                  \r\n
                • Adjustable crossbody strap.
                • \r\n
                • Top handle.
                • \r\n
                • Zippered interior pocket.
                • \r\n
                • Secure clip closures.
                • \r\n
                • Durable fabric construction.
                • \r\n
                ","image":"/w/b/wb04-blue-0.jpg","small_image":"/w/b/wb04-blue-0.jpg","thumbnail":"/w/b/wb04-blue-0.jpg","color":"49","category_ids":[3,7,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"push-it-messenger-bag","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[20,23,8],"style_bags":[27,28],"material":[37,38],"strap_bags":[61,62,63,65,66,67],"features_bags":[74,75,78,79],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","slug":"push-it-messenger-bag-tier-price-14","links":{},"stock":{"item_id":14,"product_id":14,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-07-31 17:04:19","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/b/wb04-blue-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/gerat-3/push-it-messenger-bag-tier-price-14.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"91","_score":1,"_source":{"id":91,"sku":"MH03-M-Blue","name":"Bruno Compete Hoodie-M-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                \n

                • Full zip black hoodie pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Kangaroo pocket.
                • Machine wash/dry.

                ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bruno-compete-hoodie-m-blue-91","links":{},"stock":{"item_id":91,"product_id":91,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-m-blue-91.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"96","_score":1,"_source":{"id":96,"sku":"MH03-XL-Black","name":"Bruno Compete Hoodie-XL-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                \n

                • Full zip black hoodie pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Kangaroo pocket.
                • Machine wash/dry.

                ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bruno-compete-hoodie-xl-black-96","links":{},"stock":{"item_id":96,"product_id":96,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xl-black-96.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"84","_score":1,"_source":{"id":84,"sku":"MH03-XS-Black","name":"Bruno Compete Hoodie-XS-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                \n

                • Full zip black hoodie pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Kangaroo pocket.
                • Machine wash/dry.

                ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bruno-compete-hoodie-xs-black-84","links":{},"stock":{"item_id":84,"product_id":84,"stock_id":1,"qty":42,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xs-black-84.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"94","_score":1,"_source":{"id":94,"sku":"MH03-L-Blue","name":"Bruno Compete Hoodie-L-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                \n

                • Full zip black hoodie pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Kangaroo pocket.
                • Machine wash/dry.

                ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bruno-compete-hoodie-l-blue-94","links":{},"stock":{"item_id":94,"product_id":94,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-l-blue-94.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"2","_score":1,"_source":{"id":2,"sku":"24-MB04","name":"Strive Shoulder Pack","attribute_set_id":15,"price":32,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:22","updated_at":"2017-11-06 12:16:22","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":"32.0000","minimal_price":32,"regular_price":32,"description":"

                Convenience is next to nothing when your day is crammed with action. So whether you're heading to class, gym, or the unbeaten path, make sure you've got your Strive Shoulder Pack stuffed with all your essentials, and extras as well.

                \n
                  \n
                • Zippered main compartment.
                • \n
                • Front zippered pocket.
                • \n
                • Side mesh pocket.
                • \n
                • Cell phone pocket on strap.
                • \n
                • Adjustable shoulder strap and top carry handle.
                • \n
                ","special_from_date":"2017-11-06 12:16:22","image":"/m/b/mb04-black-0.jpg","small_image":"/m/b/mb04-black-0.jpg","thumbnail":"/m/b/mb04-black-0.jpg","category_ids":[3,7,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strive-shoulder-pack","tax_class_id":"2","activity":[11,21,23,18],"style_bags":[27,29,30],"material":[32,33,36,38],"strap_bags":[61,62,65,66,67],"features_bags":[72,74,75,78],"erin_recommends":"1","sale":"1","slug":"strive-shoulder-pack-2","links":{},"stock":{"item_id":2,"product_id":2,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/b/mb04-black-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null},{"image":"/m/b/mb04-black-0_alt1.jpg","pos":2,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/gerat-3/strive-shoulder-pack-2.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"11","_score":1,"_source":{"id":11,"sku":"24-WB06","name":"Endeavor Daytrip Backpack","attribute_set_id":15,"price":33,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:25","updated_at":"2017-11-06 12:16:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33,"max_price":33,"max_regular_price":33,"minimal_regular_price":33,"special_price":"33.0000","minimal_price":33,"regular_price":33,"description":"

                With more room than it appears, the Endeavor Daytrip Backpack will hold a whole day's worth of books, binders and gym clothes. The spacious main compartment includes a dedicated laptop sleeve. Two other compartments offer extra storage space.

                \n
                  \n
                • Foam-padded adjustable shoulder straps.
                • \n
                • 900D polyester.
                • \n
                • Oversized zippers.
                • \n
                • Locker loop.
                • \n
                ","special_from_date":"2017-11-06 12:16:25","image":"/w/b/wb06-red-0.jpg","small_image":"/w/b/wb06-red-0.jpg","thumbnail":"/w/b/wb06-red-0.jpg","category_ids":[3,7,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"endeavor-daytrip-backpack","tax_class_id":"2","activity":[11,18,20,23],"style_bags":[24,28],"material":[36,37,38],"strap_bags":[61,64,65],"features_bags":[72,75,77,78,79],"erin_recommends":"1","sale":"1","slug":"endeavor-daytrip-backpack-11","links":{},"stock":{"item_id":11,"product_id":11,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb06-red-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null},{"image":"/w/b/wb06-red-0_alt1.jpg","pos":2,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Gerät","slug":"gerat-3","path":"gear/gerat-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/gerat-3/endeavor-daytrip-backpack-11.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"237","_score":1,"_source":{"id":237,"sku":"MH12-L-Blue","name":"Ajax Full-Zip Sweatshirt -L-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                \n

                • Mint striped full zip hoodie.
                • 100% bonded polyester fleece.
                • Pouch pocket.
                • Rib cuffs and hem.
                • Machine washable.

                ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ajax-full-zip-sweatshirt-l-blue-237","links":{},"stock":{"item_id":237,"product_id":237,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-l-blue-237.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"211","_score":1,"_source":{"id":211,"sku":"MH10","name":"Mach Street Sweatshirt ","attribute_set_id":9,"price":62,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                \n

                • Navy heather crewneck sweatshirt.
                • LumaTech™ moisture-wicking fabric.
                • Antimicrobial, odor-resistant.
                • Zip hand pockets.
                • Chafe-resistant flatlock seams.
                • Rib-knit cuffs and hem.

                ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mach-street-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,148],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","pattern":"197","climate":[202,204,205,208],"slug":"mach-street-sweatshirt-211","links":{},"stock":{"item_id":211,"product_id":211,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH10-XS-Black","id":196,"status":1,"name":"Mach Street Sweatshirt -XS-Black","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"49","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","url_key":"mach-street-sweatshirt-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MH10-XS-Blue","id":197,"status":1,"name":"Mach Street Sweatshirt -XS-Blue","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"50","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","url_key":"mach-street-sweatshirt-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"MH10-XS-Red","id":198,"status":1,"name":"Mach Street Sweatshirt -XS-Red","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","url_key":"mach-street-sweatshirt-xs-red","msrp_display_actual_price_type":"0"},{"sku":"MH10-S-Black","id":199,"status":1,"name":"Mach Street Sweatshirt -S-Black","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"49","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","url_key":"mach-street-sweatshirt-s-black","msrp_display_actual_price_type":"0"},{"sku":"MH10-S-Blue","id":200,"status":1,"name":"Mach Street Sweatshirt -S-Blue","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"50","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","url_key":"mach-street-sweatshirt-s-blue","msrp_display_actual_price_type":"0"},{"sku":"MH10-S-Red","id":201,"status":1,"name":"Mach Street Sweatshirt -S-Red","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","url_key":"mach-street-sweatshirt-s-red","msrp_display_actual_price_type":"0","final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62},{"sku":"MH10-M-Black","id":202,"status":1,"name":"Mach Street Sweatshirt -M-Black","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"49","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","url_key":"mach-street-sweatshirt-m-black","msrp_display_actual_price_type":"0","final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62},{"sku":"MH10-M-Blue","id":203,"status":1,"name":"Mach Street Sweatshirt -M-Blue","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"50","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","url_key":"mach-street-sweatshirt-m-blue","msrp_display_actual_price_type":"0","final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62},{"sku":"MH10-M-Red","id":204,"status":1,"name":"Mach Street Sweatshirt -M-Red","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","url_key":"mach-street-sweatshirt-m-red","msrp_display_actual_price_type":"0","final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62},{"sku":"MH10-L-Black","id":205,"status":1,"name":"Mach Street Sweatshirt -L-Black","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"49","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","url_key":"mach-street-sweatshirt-l-black","msrp_display_actual_price_type":"0","final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62},{"sku":"MH10-L-Blue","id":206,"status":1,"name":"Mach Street Sweatshirt -L-Blue","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"50","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","url_key":"mach-street-sweatshirt-l-blue","msrp_display_actual_price_type":"0","final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62},{"sku":"MH10-L-Red","id":207,"status":1,"name":"Mach Street Sweatshirt -L-Red","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","url_key":"mach-street-sweatshirt-l-red","msrp_display_actual_price_type":"0","final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62},{"sku":"MH10-XL-Black","id":208,"status":1,"name":"Mach Street Sweatshirt -XL-Black","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"49","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","url_key":"mach-street-sweatshirt-xl-black","msrp_display_actual_price_type":"0","final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62},{"sku":"MH10-XL-Blue","id":209,"status":1,"name":"Mach Street Sweatshirt -XL-Blue","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"50","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","url_key":"mach-street-sweatshirt-xl-blue","msrp_display_actual_price_type":"0","final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62},{"sku":"MH10-XL-Red","id":210,"status":1,"name":"Mach Street Sweatshirt -XL-Red","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","url_key":"mach-street-sweatshirt-xl-red","msrp_display_actual_price_type":"0","final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62}],"configurable_options":[{"id":21,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":211,"attribute_code":"color"},{"id":20,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":211,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-211.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"227","_score":1,"_source":{"id":227,"sku":"MH11","name":"Grayson Crewneck Sweatshirt ","attribute_set_id":9,"price":64,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                \n

                • Cream crewneck sweatshirt with black accents.
                • 80% cotton/20% polyester fleece.
                • Patterned knit hood lining.
                • Knit cuffs and waist.
                • Pouch pocket.
                • Curl edged seam detail

                ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"grayson-crewneck-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"195","climate":[202,204,205,208,210],"slug":"grayson-crewneck-sweatshirt-227","links":{},"stock":{"item_id":227,"product_id":227,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH11-XS-Orange","id":212,"status":1,"name":"Grayson Crewneck Sweatshirt -XS-Orange","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"56","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","url_key":"grayson-crewneck-sweatshirt-xs-orange","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-XS-Red","id":213,"status":1,"name":"Grayson Crewneck Sweatshirt -XS-Red","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","url_key":"grayson-crewneck-sweatshirt-xs-red","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-XS-White","id":214,"status":1,"name":"Grayson Crewneck Sweatshirt -XS-White","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"59","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","url_key":"grayson-crewneck-sweatshirt-xs-white","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-S-Orange","id":215,"status":1,"name":"Grayson Crewneck Sweatshirt -S-Orange","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"56","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","url_key":"grayson-crewneck-sweatshirt-s-orange","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-S-Red","id":216,"status":1,"name":"Grayson Crewneck Sweatshirt -S-Red","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","url_key":"grayson-crewneck-sweatshirt-s-red","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-S-White","id":217,"status":1,"name":"Grayson Crewneck Sweatshirt -S-White","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"59","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","url_key":"grayson-crewneck-sweatshirt-s-white","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-M-Orange","id":218,"status":1,"name":"Grayson Crewneck Sweatshirt -M-Orange","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"56","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","url_key":"grayson-crewneck-sweatshirt-m-orange","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-M-Red","id":219,"status":1,"name":"Grayson Crewneck Sweatshirt -M-Red","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","url_key":"grayson-crewneck-sweatshirt-m-red","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-M-White","id":220,"status":1,"name":"Grayson Crewneck Sweatshirt -M-White","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"59","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","url_key":"grayson-crewneck-sweatshirt-m-white","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-L-Orange","id":221,"status":1,"name":"Grayson Crewneck Sweatshirt -L-Orange","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"56","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","url_key":"grayson-crewneck-sweatshirt-l-orange","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-L-Red","id":222,"status":1,"name":"Grayson Crewneck Sweatshirt -L-Red","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","url_key":"grayson-crewneck-sweatshirt-l-red","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-L-White","id":223,"status":1,"name":"Grayson Crewneck Sweatshirt -L-White","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"59","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","url_key":"grayson-crewneck-sweatshirt-l-white","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-XL-Orange","id":224,"status":1,"name":"Grayson Crewneck Sweatshirt -XL-Orange","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"56","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","url_key":"grayson-crewneck-sweatshirt-xl-orange","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-XL-Red","id":225,"status":1,"name":"Grayson Crewneck Sweatshirt -XL-Red","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","url_key":"grayson-crewneck-sweatshirt-xl-red","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-XL-White","id":226,"status":1,"name":"Grayson Crewneck Sweatshirt -XL-White","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"59","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","url_key":"grayson-crewneck-sweatshirt-xl-white","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64}],"configurable_options":[{"id":23,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":227,"attribute_code":"color"},{"id":22,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":227,"attribute_code":"size"}],"color_options":[56,58,59],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-227.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"243","_score":1,"_source":{"id":243,"sku":"MH12","name":"Ajax Full-Zip Sweatshirt ","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                \n

                • Mint striped full zip hoodie.
                • 100% bonded polyester fleece.
                • Pouch pocket.
                • Rib cuffs and hem.
                • Machine washable.

                ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ajax-full-zip-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"199","climate":[202,204,205,208,210],"slug":"ajax-full-zip-sweatshirt-243","links":{},"stock":{"item_id":243,"product_id":243,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH12-XS-Blue","id":228,"status":1,"name":"Ajax Full-Zip Sweatshirt -XS-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"50","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","url_key":"ajax-full-zip-sweatshirt-xs-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-XS-Green","id":229,"status":1,"name":"Ajax Full-Zip Sweatshirt -XS-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"53","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","url_key":"ajax-full-zip-sweatshirt-xs-green","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-XS-Red","id":230,"status":1,"name":"Ajax Full-Zip Sweatshirt -XS-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","url_key":"ajax-full-zip-sweatshirt-xs-red","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-S-Blue","id":231,"status":1,"name":"Ajax Full-Zip Sweatshirt -S-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"50","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","url_key":"ajax-full-zip-sweatshirt-s-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-S-Green","id":232,"status":1,"name":"Ajax Full-Zip Sweatshirt -S-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"53","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","url_key":"ajax-full-zip-sweatshirt-s-green","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-S-Red","id":233,"status":1,"name":"Ajax Full-Zip Sweatshirt -S-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","url_key":"ajax-full-zip-sweatshirt-s-red","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-M-Blue","id":234,"status":1,"name":"Ajax Full-Zip Sweatshirt -M-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"50","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","url_key":"ajax-full-zip-sweatshirt-m-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-M-Green","id":235,"status":1,"name":"Ajax Full-Zip Sweatshirt -M-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"53","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","url_key":"ajax-full-zip-sweatshirt-m-green","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-M-Red","id":236,"status":1,"name":"Ajax Full-Zip Sweatshirt -M-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","url_key":"ajax-full-zip-sweatshirt-m-red","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-L-Blue","id":237,"status":1,"name":"Ajax Full-Zip Sweatshirt -L-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"50","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","url_key":"ajax-full-zip-sweatshirt-l-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-L-Green","id":238,"status":1,"name":"Ajax Full-Zip Sweatshirt -L-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"53","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","url_key":"ajax-full-zip-sweatshirt-l-green","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-L-Red","id":239,"status":1,"name":"Ajax Full-Zip Sweatshirt -L-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","url_key":"ajax-full-zip-sweatshirt-l-red","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-XL-Blue","id":240,"status":1,"name":"Ajax Full-Zip Sweatshirt -XL-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"50","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","url_key":"ajax-full-zip-sweatshirt-xl-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-XL-Green","id":241,"status":1,"name":"Ajax Full-Zip Sweatshirt -XL-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"53","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","url_key":"ajax-full-zip-sweatshirt-xl-green","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-XL-Red","id":242,"status":1,"name":"Ajax Full-Zip Sweatshirt -XL-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","url_key":"ajax-full-zip-sweatshirt-xl-red","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69}],"configurable_options":[{"id":25,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":243,"attribute_code":"color"},{"id":24,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":243,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-243.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"163","_score":1,"_source":{"id":163,"sku":"MH07","name":"Hero Hoodie","attribute_set_id":9,"price":54,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                \n

                • Full-zip gray and black hoodie.
                • Ribbed hem.
                • Standard fit.
                • Drawcord hood cinch.
                • Water-resistant coating.

                ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hero-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,146,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","pattern":"195","climate":"208","slug":"hero-hoodie-163","links":{},"stock":{"item_id":163,"product_id":163,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH07-XS-Black","id":148,"status":1,"name":"Hero Hoodie-XS-Black","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"49","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","url_key":"hero-hoodie-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MH07-XS-Gray","id":149,"status":1,"name":"Hero Hoodie-XS-Gray","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"52","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","url_key":"hero-hoodie-xs-gray","msrp_display_actual_price_type":"0"},{"sku":"MH07-XS-Green","id":150,"status":1,"name":"Hero Hoodie-XS-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"53","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","url_key":"hero-hoodie-xs-green","msrp_display_actual_price_type":"0"},{"sku":"MH07-S-Black","id":151,"status":1,"name":"Hero Hoodie-S-Black","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"49","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","url_key":"hero-hoodie-s-black","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"MH07-S-Gray","id":152,"status":1,"name":"Hero Hoodie-S-Gray","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"52","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","url_key":"hero-hoodie-s-gray","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"MH07-S-Green","id":153,"status":1,"name":"Hero Hoodie-S-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"53","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","url_key":"hero-hoodie-s-green","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"MH07-M-Black","id":154,"status":1,"name":"Hero Hoodie-M-Black","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"49","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","url_key":"hero-hoodie-m-black","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"MH07-M-Gray","id":155,"status":1,"name":"Hero Hoodie-M-Gray","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"52","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","url_key":"hero-hoodie-m-gray","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"MH07-M-Green","id":156,"status":1,"name":"Hero Hoodie-M-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"53","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","url_key":"hero-hoodie-m-green","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"MH07-L-Black","id":157,"status":1,"name":"Hero Hoodie-L-Black","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"49","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","url_key":"hero-hoodie-l-black","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"MH07-L-Gray","id":158,"status":1,"name":"Hero Hoodie-L-Gray","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"52","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","url_key":"hero-hoodie-l-gray","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"MH07-L-Green","id":159,"status":1,"name":"Hero Hoodie-L-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"53","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","url_key":"hero-hoodie-l-green","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"MH07-XL-Black","id":160,"status":1,"name":"Hero Hoodie-XL-Black","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"49","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","url_key":"hero-hoodie-xl-black","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"MH07-XL-Gray","id":161,"status":1,"name":"Hero Hoodie-XL-Gray","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"52","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","url_key":"hero-hoodie-xl-gray","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"MH07-XL-Green","id":162,"status":1,"name":"Hero Hoodie-XL-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"53","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","url_key":"hero-hoodie-xl-green","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54}],"configurable_options":[{"id":15,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":163,"attribute_code":"color"},{"id":14,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":163,"attribute_code":"size"}],"color_options":[49,52,53],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-163.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"179","_score":1,"_source":{"id":179,"sku":"MH08","name":"Oslo Trek Hoodie","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":30,"max_price":30,"max_regular_price":30,"minimal_regular_price":30,"special_price":null,"minimal_price":30,"regular_price":42,"description":"

                Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                \n

                • Brown hoodie with black detail.
                • Pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Machine wash/dry.

                ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"oslo-trek-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"197","climate":[210,204],"slug":"oslo-trek-hoodie-179","links":{},"stock":{"item_id":179,"product_id":179,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH08-XS-Brown","id":164,"status":1,"name":"Oslo Trek Hoodie-XS-Brown","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"51","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","url_key":"oslo-trek-hoodie-xs-brown","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-XS-Purple","id":165,"status":1,"name":"Oslo Trek Hoodie-XS-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"57","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","url_key":"oslo-trek-hoodie-xs-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-XS-Red","id":166,"status":1,"name":"Oslo Trek Hoodie-XS-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","url_key":"oslo-trek-hoodie-xs-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-S-Brown","id":167,"status":1,"name":"Oslo Trek Hoodie-S-Brown","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"51","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","url_key":"oslo-trek-hoodie-s-brown","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-S-Purple","id":168,"status":1,"name":"Oslo Trek Hoodie-S-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"57","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","url_key":"oslo-trek-hoodie-s-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-S-Red","id":169,"status":1,"name":"Oslo Trek Hoodie-S-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","url_key":"oslo-trek-hoodie-s-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-M-Brown","id":170,"status":1,"name":"Oslo Trek Hoodie-M-Brown","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"51","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","url_key":"oslo-trek-hoodie-m-brown","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-M-Purple","id":171,"status":1,"name":"Oslo Trek Hoodie-M-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"57","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","url_key":"oslo-trek-hoodie-m-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-M-Red","id":172,"status":1,"name":"Oslo Trek Hoodie-M-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","url_key":"oslo-trek-hoodie-m-red","special_price":30,"special_from_date":"2019-03-22 08:35:33","msrp_display_actual_price_type":"0","final_price":30,"max_price":30,"max_regular_price":30,"minimal_regular_price":30,"minimal_price":30,"regular_price":42},{"sku":"MH08-L-Brown","id":173,"status":1,"name":"Oslo Trek Hoodie-L-Brown","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"51","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","url_key":"oslo-trek-hoodie-l-brown","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-L-Purple","id":174,"status":1,"name":"Oslo Trek Hoodie-L-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"57","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","url_key":"oslo-trek-hoodie-l-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-L-Red","id":175,"status":1,"name":"Oslo Trek Hoodie-L-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","url_key":"oslo-trek-hoodie-l-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-XL-Brown","id":176,"status":1,"name":"Oslo Trek Hoodie-XL-Brown","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"51","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","url_key":"oslo-trek-hoodie-xl-brown","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-XL-Purple","id":177,"status":1,"name":"Oslo Trek Hoodie-XL-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"57","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","url_key":"oslo-trek-hoodie-xl-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-XL-Red","id":178,"status":1,"name":"Oslo Trek Hoodie-XL-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","url_key":"oslo-trek-hoodie-xl-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42}],"configurable_options":[{"id":17,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":51,"label":"Brown"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":179,"attribute_code":"color"},{"id":16,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":179,"attribute_code":"size"}],"color_options":[51,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-179.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"195","_score":1,"_source":{"id":195,"sku":"MH09","name":"Abominable Hoodie","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                \n

                • Blue heather hoodie.
                • Relaxed fit.
                • Moisture-wicking.
                • Machine wash/dry.

                ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"abominable-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,159,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","pattern":"197","climate":[208,210],"slug":"abominable-hoodie-195","links":{},"stock":{"item_id":195,"product_id":195,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH09-XS-Blue","id":180,"status":1,"name":"Abominable Hoodie-XS-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"50","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","url_key":"abominable-hoodie-xs-blue","special_price":null,"special_from_date":"2017-11-15 00:00:00","special_to_date":"2017-12-11 00:00:00","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"minimal_price":69,"regular_price":69},{"sku":"MH09-XS-Green","id":181,"status":1,"name":"Abominable Hoodie-XS-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"53","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","url_key":"abominable-hoodie-xs-green","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-XS-Red","id":182,"status":1,"name":"Abominable Hoodie-XS-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","url_key":"abominable-hoodie-xs-red","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-S-Blue","id":183,"status":1,"name":"Abominable Hoodie-S-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"50","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","url_key":"abominable-hoodie-s-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-S-Green","id":184,"status":1,"name":"Abominable Hoodie-S-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"53","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","url_key":"abominable-hoodie-s-green","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-S-Red","id":185,"status":1,"name":"Abominable Hoodie-S-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","url_key":"abominable-hoodie-s-red","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-M-Blue","id":186,"status":1,"name":"Abominable Hoodie-M-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"50","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","url_key":"abominable-hoodie-m-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-M-Green","id":187,"status":1,"name":"Abominable Hoodie-M-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"53","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","url_key":"abominable-hoodie-m-green","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-M-Red","id":188,"status":1,"name":"Abominable Hoodie-M-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","url_key":"abominable-hoodie-m-red","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-L-Blue","id":189,"status":1,"name":"Abominable Hoodie-L-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"50","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","url_key":"abominable-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-L-Green","id":190,"status":1,"name":"Abominable Hoodie-L-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"53","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","url_key":"abominable-hoodie-l-green","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-L-Red","id":191,"status":1,"name":"Abominable Hoodie-L-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","url_key":"abominable-hoodie-l-red","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-XL-Blue","id":192,"status":1,"name":"Abominable Hoodie-XL-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"50","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","url_key":"abominable-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-XL-Green","id":193,"status":1,"name":"Abominable Hoodie-XL-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"53","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","url_key":"abominable-hoodie-xl-green","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-XL-Red","id":194,"status":1,"name":"Abominable Hoodie-XL-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","url_key":"abominable-hoodie-xl-red","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69}],"configurable_options":[{"id":19,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":195,"attribute_code":"color"},{"id":18,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":195,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-195.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"166","_score":1,"_source":{"id":166,"sku":"MH08-XS-Red","name":"Oslo Trek Hoodie-XS-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                \n

                • Brown hoodie with black detail.
                • Pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Machine wash/dry.

                ","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"oslo-trek-hoodie-xs-red-166","links":{},"stock":{"item_id":166,"product_id":166,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xs-red-166.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"165","_score":1,"_source":{"id":165,"sku":"MH08-XS-Purple","name":"Oslo Trek Hoodie-XS-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                \n

                • Brown hoodie with black detail.
                • Pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Machine wash/dry.

                ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"oslo-trek-hoodie-xs-purple-165","links":{},"stock":{"item_id":165,"product_id":165,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xs-purple-165.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"190","_score":1,"_source":{"id":190,"sku":"MH09-L-Green","name":"Abominable Hoodie-L-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                \n

                • Blue heather hoodie.
                • Relaxed fit.
                • Moisture-wicking.
                • Machine wash/dry.

                ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"abominable-hoodie-l-green-190","links":{},"stock":{"item_id":190,"product_id":190,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-l-green-190.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"169","_score":1,"_source":{"id":169,"sku":"MH08-S-Red","name":"Oslo Trek Hoodie-S-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                \n

                • Brown hoodie with black detail.
                • Pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Machine wash/dry.

                ","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"oslo-trek-hoodie-s-red-169","links":{},"stock":{"item_id":169,"product_id":169,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-s-red-169.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"171","_score":1,"_source":{"id":171,"sku":"MH08-M-Purple","name":"Oslo Trek Hoodie-M-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                \n

                • Brown hoodie with black detail.
                • Pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Machine wash/dry.

                ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"oslo-trek-hoodie-m-purple-171","links":{},"stock":{"item_id":171,"product_id":171,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-m-purple-171.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"193","_score":1,"_source":{"id":193,"sku":"MH09-XL-Green","name":"Abominable Hoodie-XL-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                \n

                • Blue heather hoodie.
                • Relaxed fit.
                • Moisture-wicking.
                • Machine wash/dry.

                ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"abominable-hoodie-xl-green-193","links":{},"stock":{"item_id":193,"product_id":193,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xl-green-193.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"168","_score":1,"_source":{"id":168,"sku":"MH08-S-Purple","name":"Oslo Trek Hoodie-S-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                \n

                • Brown hoodie with black detail.
                • Pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Machine wash/dry.

                ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"oslo-trek-hoodie-s-purple-168","links":{},"stock":{"item_id":168,"product_id":168,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-s-purple-168.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"181","_score":1,"_source":{"id":181,"sku":"MH09-XS-Green","name":"Abominable Hoodie-XS-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                \n

                • Blue heather hoodie.
                • Relaxed fit.
                • Moisture-wicking.
                • Machine wash/dry.

                ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"abominable-hoodie-xs-green-181","links":{},"stock":{"item_id":181,"product_id":181,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xs-green-181.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"188","_score":1,"_source":{"id":188,"sku":"MH09-M-Red","name":"Abominable Hoodie-M-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                \n

                • Blue heather hoodie.
                • Relaxed fit.
                • Moisture-wicking.
                • Machine wash/dry.

                ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"abominable-hoodie-m-red-188","links":{},"stock":{"item_id":188,"product_id":188,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-m-red-188.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"194","_score":1,"_source":{"id":194,"sku":"MH09-XL-Red","name":"Abominable Hoodie-XL-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                \n

                • Blue heather hoodie.
                • Relaxed fit.
                • Moisture-wicking.
                • Machine wash/dry.

                ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"abominable-hoodie-xl-red-194","links":{},"stock":{"item_id":194,"product_id":194,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xl-red-194.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"178","_score":1,"_source":{"id":178,"sku":"MH08-XL-Red","name":"Oslo Trek Hoodie-XL-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                \n

                • Brown hoodie with black detail.
                • Pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Machine wash/dry.

                ","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"oslo-trek-hoodie-xl-red-178","links":{},"stock":{"item_id":178,"product_id":178,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xl-red-178.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"173","_score":1,"_source":{"id":173,"sku":"MH08-L-Brown","name":"Oslo Trek Hoodie-L-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                \n

                • Brown hoodie with black detail.
                • Pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Machine wash/dry.

                ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-l-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"oslo-trek-hoodie-l-brown-173","links":{},"stock":{"item_id":173,"product_id":173,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-l-brown-173.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"183","_score":1,"_source":{"id":183,"sku":"MH09-S-Blue","name":"Abominable Hoodie-S-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                \n

                • Blue heather hoodie.
                • Relaxed fit.
                • Moisture-wicking.
                • Machine wash/dry.

                ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"abominable-hoodie-s-blue-183","links":{},"stock":{"item_id":183,"product_id":183,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-s-blue-183.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"182","_score":1,"_source":{"id":182,"sku":"MH09-XS-Red","name":"Abominable Hoodie-XS-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                \n

                • Blue heather hoodie.
                • Relaxed fit.
                • Moisture-wicking.
                • Machine wash/dry.

                ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"abominable-hoodie-xs-red-182","links":{},"stock":{"item_id":182,"product_id":182,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xs-red-182.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"177","_score":1,"_source":{"id":177,"sku":"MH08-XL-Purple","name":"Oslo Trek Hoodie-XL-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                \n

                • Brown hoodie with black detail.
                • Pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Machine wash/dry.

                ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"oslo-trek-hoodie-xl-purple-177","links":{},"stock":{"item_id":177,"product_id":177,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xl-purple-177.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"200","_score":1,"_source":{"id":200,"sku":"MH10-S-Blue","name":"Mach Street Sweatshirt -S-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                \n

                • Navy heather crewneck sweatshirt.
                • LumaTech™ moisture-wicking fabric.
                • Antimicrobial, odor-resistant.
                • Zip hand pockets.
                • Chafe-resistant flatlock seams.
                • Rib-knit cuffs and hem.

                ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mach-street-sweatshirt-s-blue-200","links":{},"stock":{"item_id":200,"product_id":200,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-s-blue-200.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"186","_score":1,"_source":{"id":186,"sku":"MH09-M-Blue","name":"Abominable Hoodie-M-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                \n

                • Blue heather hoodie.
                • Relaxed fit.
                • Moisture-wicking.
                • Machine wash/dry.

                ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"abominable-hoodie-m-blue-186","links":{},"stock":{"item_id":186,"product_id":186,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-m-blue-186.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"180","_score":1,"_source":{"id":180,"sku":"MH09-XS-Blue","name":"Abominable Hoodie-XS-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-12-01 13:03:34","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":"20.0000","minimal_price":69,"regular_price":69,"description":"

                It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                \r\n

                • Blue heather hoodie.
                • Relaxed fit.
                • Moisture-wicking.
                • Machine wash/dry.

                ","special_from_date":"2017-11-15 00:00:00","special_to_date":"2017-12-11 00:00:00","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xs-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"167","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"abominable-hoodie-xs-blue-180","links":{},"stock":{"item_id":180,"product_id":180,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":null,"vid":null},{"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xs-blue-180.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"187","_score":1,"_source":{"id":187,"sku":"MH09-M-Green","name":"Abominable Hoodie-M-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                \n

                • Blue heather hoodie.
                • Relaxed fit.
                • Moisture-wicking.
                • Machine wash/dry.

                ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"abominable-hoodie-m-green-187","links":{},"stock":{"item_id":187,"product_id":187,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-m-green-187.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"192","_score":1,"_source":{"id":192,"sku":"MH09-XL-Blue","name":"Abominable Hoodie-XL-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                \n

                • Blue heather hoodie.
                • Relaxed fit.
                • Moisture-wicking.
                • Machine wash/dry.

                ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"abominable-hoodie-xl-blue-192","links":{},"stock":{"item_id":192,"product_id":192,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xl-blue-192.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"197","_score":1,"_source":{"id":197,"sku":"MH10-XS-Blue","name":"Mach Street Sweatshirt -XS-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                \n

                • Navy heather crewneck sweatshirt.
                • LumaTech™ moisture-wicking fabric.
                • Antimicrobial, odor-resistant.
                • Zip hand pockets.
                • Chafe-resistant flatlock seams.
                • Rib-knit cuffs and hem.

                ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mach-street-sweatshirt-xs-blue-197","links":{},"stock":{"item_id":197,"product_id":197,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xs-blue-197.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"199","_score":1,"_source":{"id":199,"sku":"MH10-S-Black","name":"Mach Street Sweatshirt -S-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                \n

                • Navy heather crewneck sweatshirt.
                • LumaTech™ moisture-wicking fabric.
                • Antimicrobial, odor-resistant.
                • Zip hand pockets.
                • Chafe-resistant flatlock seams.
                • Rib-knit cuffs and hem.

                ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mach-street-sweatshirt-s-black-199","links":{},"stock":{"item_id":199,"product_id":199,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-s-black-199.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"198","_score":1,"_source":{"id":198,"sku":"MH10-XS-Red","name":"Mach Street Sweatshirt -XS-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                \n

                • Navy heather crewneck sweatshirt.
                • LumaTech™ moisture-wicking fabric.
                • Antimicrobial, odor-resistant.
                • Zip hand pockets.
                • Chafe-resistant flatlock seams.
                • Rib-knit cuffs and hem.

                ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mach-street-sweatshirt-xs-red-198","links":{},"stock":{"item_id":198,"product_id":198,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xs-red-198.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"216","_score":1,"_source":{"id":216,"sku":"MH11-S-Red","name":"Grayson Crewneck Sweatshirt -S-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                \n

                • Cream crewneck sweatshirt with black accents.
                • 80% cotton/20% polyester fleece.
                • Patterned knit hood lining.
                • Knit cuffs and waist.
                • Pouch pocket.
                • Curl edged seam detail

                ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"grayson-crewneck-sweatshirt-s-red-216","links":{},"stock":{"item_id":216,"product_id":216,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-s-red-216.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"220","_score":1,"_source":{"id":220,"sku":"MH11-M-White","name":"Grayson Crewneck Sweatshirt -M-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                \n

                • Cream crewneck sweatshirt with black accents.
                • 80% cotton/20% polyester fleece.
                • Patterned knit hood lining.
                • Knit cuffs and waist.
                • Pouch pocket.
                • Curl edged seam detail

                ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"grayson-crewneck-sweatshirt-m-white-220","links":{},"stock":{"item_id":220,"product_id":220,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-m-white-220.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"224","_score":1,"_source":{"id":224,"sku":"MH11-XL-Orange","name":"Grayson Crewneck Sweatshirt -XL-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                \n

                • Cream crewneck sweatshirt with black accents.
                • 80% cotton/20% polyester fleece.
                • Patterned knit hood lining.
                • Knit cuffs and waist.
                • Pouch pocket.
                • Curl edged seam detail

                ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"grayson-crewneck-sweatshirt-xl-orange-224","links":{},"stock":{"item_id":224,"product_id":224,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xl-orange-224.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"223","_score":1,"_source":{"id":223,"sku":"MH11-L-White","name":"Grayson Crewneck Sweatshirt -L-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                \n

                • Cream crewneck sweatshirt with black accents.
                • 80% cotton/20% polyester fleece.
                • Patterned knit hood lining.
                • Knit cuffs and waist.
                • Pouch pocket.
                • Curl edged seam detail

                ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"grayson-crewneck-sweatshirt-l-white-223","links":{},"stock":{"item_id":223,"product_id":223,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-l-white-223.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"238","_score":1,"_source":{"id":238,"sku":"MH12-L-Green","name":"Ajax Full-Zip Sweatshirt -L-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                \n

                • Mint striped full zip hoodie.
                • 100% bonded polyester fleece.
                • Pouch pocket.
                • Rib cuffs and hem.
                • Machine washable.

                ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ajax-full-zip-sweatshirt-l-green-238","links":{},"stock":{"item_id":238,"product_id":238,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-l-green-238.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"207","_score":1,"_source":{"id":207,"sku":"MH10-L-Red","name":"Mach Street Sweatshirt -L-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                \n

                • Navy heather crewneck sweatshirt.
                • LumaTech™ moisture-wicking fabric.
                • Antimicrobial, odor-resistant.
                • Zip hand pockets.
                • Chafe-resistant flatlock seams.
                • Rib-knit cuffs and hem.

                ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mach-street-sweatshirt-l-red-207","links":{},"stock":{"item_id":207,"product_id":207,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-l-red-207.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"234","_score":1,"_source":{"id":234,"sku":"MH12-M-Blue","name":"Ajax Full-Zip Sweatshirt -M-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                \n

                • Mint striped full zip hoodie.
                • 100% bonded polyester fleece.
                • Pouch pocket.
                • Rib cuffs and hem.
                • Machine washable.

                ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ajax-full-zip-sweatshirt-m-blue-234","links":{},"stock":{"item_id":234,"product_id":234,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-m-blue-234.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"230","_score":1,"_source":{"id":230,"sku":"MH12-XS-Red","name":"Ajax Full-Zip Sweatshirt -XS-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                \n

                • Mint striped full zip hoodie.
                • 100% bonded polyester fleece.
                • Pouch pocket.
                • Rib cuffs and hem.
                • Machine washable.

                ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ajax-full-zip-sweatshirt-xs-red-230","links":{},"stock":{"item_id":230,"product_id":230,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xs-red-230.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"249","_score":1,"_source":{"id":249,"sku":"MH13-S-Lavender","name":"Marco Lightweight Active Hoodie-S-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                \n

                • Light blue heather full zip hoodie.
                • Fitted flatlock seams.
                • Matching lining and drawstring.
                • Machine wash/dry.

                ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-s-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"marco-lightweight-active-hoodie-s-lavender-249","links":{},"stock":{"item_id":249,"product_id":249,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-s-lavender-249.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"244","_score":1,"_source":{"id":244,"sku":"MH13-XS-Blue","name":"Marco Lightweight Active Hoodie-XS-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                \n

                • Light blue heather full zip hoodie.
                • Fitted flatlock seams.
                • Matching lining and drawstring.
                • Machine wash/dry.

                ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"marco-lightweight-active-hoodie-xs-blue-244","links":{},"stock":{"item_id":244,"product_id":244,"stock_id":1,"qty":39,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xs-blue-244.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"228","_score":1,"_source":{"id":228,"sku":"MH12-XS-Blue","name":"Ajax Full-Zip Sweatshirt -XS-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                \n

                • Mint striped full zip hoodie.
                • 100% bonded polyester fleece.
                • Pouch pocket.
                • Rib cuffs and hem.
                • Machine washable.

                ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ajax-full-zip-sweatshirt-xs-blue-228","links":{},"stock":{"item_id":228,"product_id":228,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xs-blue-228.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"247","_score":1,"_source":{"id":247,"sku":"MH13-S-Blue","name":"Marco Lightweight Active Hoodie-S-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                \n

                • Light blue heather full zip hoodie.
                • Fitted flatlock seams.
                • Matching lining and drawstring.
                • Machine wash/dry.

                ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"marco-lightweight-active-hoodie-s-blue-247","links":{},"stock":{"item_id":247,"product_id":247,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-s-blue-247.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"232","_score":1,"_source":{"id":232,"sku":"MH12-S-Green","name":"Ajax Full-Zip Sweatshirt -S-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                \n

                • Mint striped full zip hoodie.
                • 100% bonded polyester fleece.
                • Pouch pocket.
                • Rib cuffs and hem.
                • Machine washable.

                ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ajax-full-zip-sweatshirt-s-green-232","links":{},"stock":{"item_id":232,"product_id":232,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-s-green-232.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"242","_score":1,"_source":{"id":242,"sku":"MH12-XL-Red","name":"Ajax Full-Zip Sweatshirt -XL-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                \n

                • Mint striped full zip hoodie.
                • 100% bonded polyester fleece.
                • Pouch pocket.
                • Rib cuffs and hem.
                • Machine washable.

                ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ajax-full-zip-sweatshirt-xl-red-242","links":{},"stock":{"item_id":242,"product_id":242,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xl-red-242.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"246","_score":1,"_source":{"id":246,"sku":"MH13-XS-Lavender","name":"Marco Lightweight Active Hoodie-XS-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                \n

                • Light blue heather full zip hoodie.
                • Fitted flatlock seams.
                • Matching lining and drawstring.
                • Machine wash/dry.

                ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xs-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"marco-lightweight-active-hoodie-xs-lavender-246","links":{},"stock":{"item_id":246,"product_id":246,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xs-lavender-246.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"250","_score":1,"_source":{"id":250,"sku":"MH13-M-Blue","name":"Marco Lightweight Active Hoodie-M-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                \n

                • Light blue heather full zip hoodie.
                • Fitted flatlock seams.
                • Matching lining and drawstring.
                • Machine wash/dry.

                ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"marco-lightweight-active-hoodie-m-blue-250","links":{},"stock":{"item_id":250,"product_id":250,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-m-blue-250.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"239","_score":1,"_source":{"id":239,"sku":"MH12-L-Red","name":"Ajax Full-Zip Sweatshirt -L-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                \n

                • Mint striped full zip hoodie.
                • 100% bonded polyester fleece.
                • Pouch pocket.
                • Rib cuffs and hem.
                • Machine washable.

                ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ajax-full-zip-sweatshirt-l-red-239","links":{},"stock":{"item_id":239,"product_id":239,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-l-red-239.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"248","_score":1,"_source":{"id":248,"sku":"MH13-S-Green","name":"Marco Lightweight Active Hoodie-S-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                \n

                • Light blue heather full zip hoodie.
                • Fitted flatlock seams.
                • Matching lining and drawstring.
                • Machine wash/dry.

                ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"marco-lightweight-active-hoodie-s-green-248","links":{},"stock":{"item_id":248,"product_id":248,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-s-green-248.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"203","_score":1,"_source":{"id":203,"sku":"MH10-M-Blue","name":"Mach Street Sweatshirt -M-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                \n

                • Navy heather crewneck sweatshirt.
                • LumaTech™ moisture-wicking fabric.
                • Antimicrobial, odor-resistant.
                • Zip hand pockets.
                • Chafe-resistant flatlock seams.
                • Rib-knit cuffs and hem.

                ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mach-street-sweatshirt-m-blue-203","links":{},"stock":{"item_id":203,"product_id":203,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-m-blue-203.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"217","_score":1,"_source":{"id":217,"sku":"MH11-S-White","name":"Grayson Crewneck Sweatshirt -S-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                \n

                • Cream crewneck sweatshirt with black accents.
                • 80% cotton/20% polyester fleece.
                • Patterned knit hood lining.
                • Knit cuffs and waist.
                • Pouch pocket.
                • Curl edged seam detail

                ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"grayson-crewneck-sweatshirt-s-white-217","links":{},"stock":{"item_id":217,"product_id":217,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-s-white-217.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"221","_score":1,"_source":{"id":221,"sku":"MH11-L-Orange","name":"Grayson Crewneck Sweatshirt -L-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                \n

                • Cream crewneck sweatshirt with black accents.
                • 80% cotton/20% polyester fleece.
                • Patterned knit hood lining.
                • Knit cuffs and waist.
                • Pouch pocket.
                • Curl edged seam detail

                ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"grayson-crewneck-sweatshirt-l-orange-221","links":{},"stock":{"item_id":221,"product_id":221,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-l-orange-221.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"233","_score":1,"_source":{"id":233,"sku":"MH12-S-Red","name":"Ajax Full-Zip Sweatshirt -S-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                \n

                • Mint striped full zip hoodie.
                • 100% bonded polyester fleece.
                • Pouch pocket.
                • Rib cuffs and hem.
                • Machine washable.

                ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ajax-full-zip-sweatshirt-s-red-233","links":{},"stock":{"item_id":233,"product_id":233,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-s-red-233.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"240","_score":1,"_source":{"id":240,"sku":"MH12-XL-Blue","name":"Ajax Full-Zip Sweatshirt -XL-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                \n

                • Mint striped full zip hoodie.
                • 100% bonded polyester fleece.
                • Pouch pocket.
                • Rib cuffs and hem.
                • Machine washable.

                ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ajax-full-zip-sweatshirt-xl-blue-240","links":{},"stock":{"item_id":240,"product_id":240,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xl-blue-240.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"245","_score":1,"_source":{"id":245,"sku":"MH13-XS-Green","name":"Marco Lightweight Active Hoodie-XS-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                \n

                • Light blue heather full zip hoodie.
                • Fitted flatlock seams.
                • Matching lining and drawstring.
                • Machine wash/dry.

                ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"marco-lightweight-active-hoodie-xs-green-245","links":{},"stock":{"item_id":245,"product_id":245,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xs-green-245.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"229","_score":1,"_source":{"id":229,"sku":"MH12-XS-Green","name":"Ajax Full-Zip Sweatshirt -XS-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                \n

                • Mint striped full zip hoodie.
                • 100% bonded polyester fleece.
                • Pouch pocket.
                • Rib cuffs and hem.
                • Machine washable.

                ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ajax-full-zip-sweatshirt-xs-green-229","links":{},"stock":{"item_id":229,"product_id":229,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xs-green-229.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"241","_score":1,"_source":{"id":241,"sku":"MH12-XL-Green","name":"Ajax Full-Zip Sweatshirt -XL-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                \n

                • Mint striped full zip hoodie.
                • 100% bonded polyester fleece.
                • Pouch pocket.
                • Rib cuffs and hem.
                • Machine washable.

                ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ajax-full-zip-sweatshirt-xl-green-241","links":{},"stock":{"item_id":241,"product_id":241,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xl-green-241.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"225","_score":1,"_source":{"id":225,"sku":"MH11-XL-Red","name":"Grayson Crewneck Sweatshirt -XL-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                \n

                • Cream crewneck sweatshirt with black accents.
                • 80% cotton/20% polyester fleece.
                • Patterned knit hood lining.
                • Knit cuffs and waist.
                • Pouch pocket.
                • Curl edged seam detail

                ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"grayson-crewneck-sweatshirt-xl-red-225","links":{},"stock":{"item_id":225,"product_id":225,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xl-red-225.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"236","_score":1,"_source":{"id":236,"sku":"MH12-M-Red","name":"Ajax Full-Zip Sweatshirt -M-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                \n

                • Mint striped full zip hoodie.
                • 100% bonded polyester fleece.
                • Pouch pocket.
                • Rib cuffs and hem.
                • Machine washable.

                ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ajax-full-zip-sweatshirt-m-red-236","links":{},"stock":{"item_id":236,"product_id":236,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-m-red-236.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"235","_score":1,"_source":{"id":235,"sku":"MH12-M-Green","name":"Ajax Full-Zip Sweatshirt -M-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                \n

                • Mint striped full zip hoodie.
                • 100% bonded polyester fleece.
                • Pouch pocket.
                • Rib cuffs and hem.
                • Machine washable.

                ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ajax-full-zip-sweatshirt-m-green-235","links":{},"stock":{"item_id":235,"product_id":235,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-m-green-235.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"222","_score":1,"_source":{"id":222,"sku":"MH11-L-Red","name":"Grayson Crewneck Sweatshirt -L-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                \n

                • Cream crewneck sweatshirt with black accents.
                • 80% cotton/20% polyester fleece.
                • Patterned knit hood lining.
                • Knit cuffs and waist.
                • Pouch pocket.
                • Curl edged seam detail

                ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"grayson-crewneck-sweatshirt-l-red-222","links":{},"stock":{"item_id":222,"product_id":222,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-l-red-222.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"231","_score":1,"_source":{"id":231,"sku":"MH12-S-Blue","name":"Ajax Full-Zip Sweatshirt -S-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                \n

                • Mint striped full zip hoodie.
                • 100% bonded polyester fleece.
                • Pouch pocket.
                • Rib cuffs and hem.
                • Machine washable.

                ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ajax-full-zip-sweatshirt-s-blue-231","links":{},"stock":{"item_id":231,"product_id":231,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-s-blue-231.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"206","_score":1,"_source":{"id":206,"sku":"MH10-L-Blue","name":"Mach Street Sweatshirt -L-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                \n

                • Navy heather crewneck sweatshirt.
                • LumaTech™ moisture-wicking fabric.
                • Antimicrobial, odor-resistant.
                • Zip hand pockets.
                • Chafe-resistant flatlock seams.
                • Rib-knit cuffs and hem.

                ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mach-street-sweatshirt-l-blue-206","links":{},"stock":{"item_id":206,"product_id":206,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-l-blue-206.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"205","_score":1,"_source":{"id":205,"sku":"MH10-L-Black","name":"Mach Street Sweatshirt -L-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                \n

                • Navy heather crewneck sweatshirt.
                • LumaTech™ moisture-wicking fabric.
                • Antimicrobial, odor-resistant.
                • Zip hand pockets.
                • Chafe-resistant flatlock seams.
                • Rib-knit cuffs and hem.

                ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mach-street-sweatshirt-l-black-205","links":{},"stock":{"item_id":205,"product_id":205,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-l-black-205.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"213","_score":1,"_source":{"id":213,"sku":"MH11-XS-Red","name":"Grayson Crewneck Sweatshirt -XS-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                \n

                • Cream crewneck sweatshirt with black accents.
                • 80% cotton/20% polyester fleece.
                • Patterned knit hood lining.
                • Knit cuffs and waist.
                • Pouch pocket.
                • Curl edged seam detail

                ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"grayson-crewneck-sweatshirt-xs-red-213","links":{},"stock":{"item_id":213,"product_id":213,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xs-red-213.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"219","_score":1,"_source":{"id":219,"sku":"MH11-M-Red","name":"Grayson Crewneck Sweatshirt -M-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                \n

                • Cream crewneck sweatshirt with black accents.
                • 80% cotton/20% polyester fleece.
                • Patterned knit hood lining.
                • Knit cuffs and waist.
                • Pouch pocket.
                • Curl edged seam detail

                ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"grayson-crewneck-sweatshirt-m-red-219","links":{},"stock":{"item_id":219,"product_id":219,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-m-red-219.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"208","_score":1,"_source":{"id":208,"sku":"MH10-XL-Black","name":"Mach Street Sweatshirt -XL-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                \n

                • Navy heather crewneck sweatshirt.
                • LumaTech™ moisture-wicking fabric.
                • Antimicrobial, odor-resistant.
                • Zip hand pockets.
                • Chafe-resistant flatlock seams.
                • Rib-knit cuffs and hem.

                ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mach-street-sweatshirt-xl-black-208","links":{},"stock":{"item_id":208,"product_id":208,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xl-black-208.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"215","_score":1,"_source":{"id":215,"sku":"MH11-S-Orange","name":"Grayson Crewneck Sweatshirt -S-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                \n

                • Cream crewneck sweatshirt with black accents.
                • 80% cotton/20% polyester fleece.
                • Patterned knit hood lining.
                • Knit cuffs and waist.
                • Pouch pocket.
                • Curl edged seam detail

                ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"grayson-crewneck-sweatshirt-s-orange-215","links":{},"stock":{"item_id":215,"product_id":215,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-s-orange-215.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"212","_score":1,"_source":{"id":212,"sku":"MH11-XS-Orange","name":"Grayson Crewneck Sweatshirt -XS-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                \n

                • Cream crewneck sweatshirt with black accents.
                • 80% cotton/20% polyester fleece.
                • Patterned knit hood lining.
                • Knit cuffs and waist.
                • Pouch pocket.
                • Curl edged seam detail

                ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"grayson-crewneck-sweatshirt-xs-orange-212","links":{},"stock":{"item_id":212,"product_id":212,"stock_id":1,"qty":17,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xs-orange-212.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"209","_score":1,"_source":{"id":209,"sku":"MH10-XL-Blue","name":"Mach Street Sweatshirt -XL-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                \n

                • Navy heather crewneck sweatshirt.
                • LumaTech™ moisture-wicking fabric.
                • Antimicrobial, odor-resistant.
                • Zip hand pockets.
                • Chafe-resistant flatlock seams.
                • Rib-knit cuffs and hem.

                ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mach-street-sweatshirt-xl-blue-209","links":{},"stock":{"item_id":209,"product_id":209,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xl-blue-209.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"218","_score":1,"_source":{"id":218,"sku":"MH11-M-Orange","name":"Grayson Crewneck Sweatshirt -M-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                \n

                • Cream crewneck sweatshirt with black accents.
                • 80% cotton/20% polyester fleece.
                • Patterned knit hood lining.
                • Knit cuffs and waist.
                • Pouch pocket.
                • Curl edged seam detail

                ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"grayson-crewneck-sweatshirt-m-orange-218","links":{},"stock":{"item_id":218,"product_id":218,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-m-orange-218.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"226","_score":1,"_source":{"id":226,"sku":"MH11-XL-White","name":"Grayson Crewneck Sweatshirt -XL-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                \n

                • Cream crewneck sweatshirt with black accents.
                • 80% cotton/20% polyester fleece.
                • Patterned knit hood lining.
                • Knit cuffs and waist.
                • Pouch pocket.
                • Curl edged seam detail

                ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"grayson-crewneck-sweatshirt-xl-white-226","links":{},"stock":{"item_id":226,"product_id":226,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xl-white-226.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"201","_score":1,"_source":{"id":201,"sku":"MH10-S-Red","name":"Mach Street Sweatshirt -S-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                \n

                • Navy heather crewneck sweatshirt.
                • LumaTech™ moisture-wicking fabric.
                • Antimicrobial, odor-resistant.
                • Zip hand pockets.
                • Chafe-resistant flatlock seams.
                • Rib-knit cuffs and hem.

                ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mach-street-sweatshirt-s-red-201","links":{},"stock":{"item_id":201,"product_id":201,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-s-red-201.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"202","_score":1,"_source":{"id":202,"sku":"MH10-M-Black","name":"Mach Street Sweatshirt -M-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                \n

                • Navy heather crewneck sweatshirt.
                • LumaTech™ moisture-wicking fabric.
                • Antimicrobial, odor-resistant.
                • Zip hand pockets.
                • Chafe-resistant flatlock seams.
                • Rib-knit cuffs and hem.

                ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mach-street-sweatshirt-m-black-202","links":{},"stock":{"item_id":202,"product_id":202,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-m-black-202.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"214","_score":1,"_source":{"id":214,"sku":"MH11-XS-White","name":"Grayson Crewneck Sweatshirt -XS-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                \n

                • Cream crewneck sweatshirt with black accents.
                • 80% cotton/20% polyester fleece.
                • Patterned knit hood lining.
                • Knit cuffs and waist.
                • Pouch pocket.
                • Curl edged seam detail

                ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"grayson-crewneck-sweatshirt-xs-white-214","links":{},"stock":{"item_id":214,"product_id":214,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xs-white-214.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"210","_score":1,"_source":{"id":210,"sku":"MH10-XL-Red","name":"Mach Street Sweatshirt -XL-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                \n

                • Navy heather crewneck sweatshirt.
                • LumaTech™ moisture-wicking fabric.
                • Antimicrobial, odor-resistant.
                • Zip hand pockets.
                • Chafe-resistant flatlock seams.
                • Rib-knit cuffs and hem.

                ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mach-street-sweatshirt-xl-red-210","links":{},"stock":{"item_id":210,"product_id":210,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xl-red-210.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"258","_score":1,"_source":{"id":258,"sku":"MH13-XL-Lavender","name":"Marco Lightweight Active Hoodie-XL-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                \n

                • Light blue heather full zip hoodie.
                • Fitted flatlock seams.
                • Matching lining and drawstring.
                • Machine wash/dry.

                ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xl-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"marco-lightweight-active-hoodie-xl-lavender-258","links":{},"stock":{"item_id":258,"product_id":258,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xl-lavender-258.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"252","_score":1,"_source":{"id":252,"sku":"MH13-M-Lavender","name":"Marco Lightweight Active Hoodie-M-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                \n

                • Light blue heather full zip hoodie.
                • Fitted flatlock seams.
                • Matching lining and drawstring.
                • Machine wash/dry.

                ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-m-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"marco-lightweight-active-hoodie-m-lavender-252","links":{},"stock":{"item_id":252,"product_id":252,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-m-lavender-252.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"257","_score":1,"_source":{"id":257,"sku":"MH13-XL-Green","name":"Marco Lightweight Active Hoodie-XL-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                \n

                • Light blue heather full zip hoodie.
                • Fitted flatlock seams.
                • Matching lining and drawstring.
                • Machine wash/dry.

                ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"marco-lightweight-active-hoodie-xl-green-257","links":{},"stock":{"item_id":257,"product_id":257,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xl-green-257.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"263","_score":1,"_source":{"id":263,"sku":"MJ01-S-Orange","name":"Beaumont Summit Kit-S-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                \n

                • Yellow full zip rain jacket.
                • Full-zip front.
                • Stand-up collar.
                • Elasticized cuffs.
                • Machine wash/dry.

                ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"beaumont-summit-kit-s-orange-263","links":{},"stock":{"item_id":263,"product_id":263,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-s-orange-263.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"256","_score":1,"_source":{"id":256,"sku":"MH13-XL-Blue","name":"Marco Lightweight Active Hoodie-XL-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                \n

                • Light blue heather full zip hoodie.
                • Fitted flatlock seams.
                • Matching lining and drawstring.
                • Machine wash/dry.

                ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"marco-lightweight-active-hoodie-xl-blue-256","links":{},"stock":{"item_id":256,"product_id":256,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xl-blue-256.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"255","_score":1,"_source":{"id":255,"sku":"MH13-L-Lavender","name":"Marco Lightweight Active Hoodie-L-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                \n

                • Light blue heather full zip hoodie.
                • Fitted flatlock seams.
                • Matching lining and drawstring.
                • Machine wash/dry.

                ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-l-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"marco-lightweight-active-hoodie-l-lavender-255","links":{},"stock":{"item_id":255,"product_id":255,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-l-lavender-255.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"260","_score":1,"_source":{"id":260,"sku":"MJ01-XS-Orange","name":"Beaumont Summit Kit-XS-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                \n

                • Yellow full zip rain jacket.
                • Full-zip front.
                • Stand-up collar.
                • Elasticized cuffs.
                • Machine wash/dry.

                ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"beaumont-summit-kit-xs-orange-260","links":{},"stock":{"item_id":260,"product_id":260,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xs-orange-260.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"176","_score":1,"_source":{"id":176,"sku":"MH08-XL-Brown","name":"Oslo Trek Hoodie-XL-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                \n

                • Brown hoodie with black detail.
                • Pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Machine wash/dry.

                ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xl-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"oslo-trek-hoodie-xl-brown-176","links":{},"stock":{"item_id":176,"product_id":176,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xl-brown-176.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"174","_score":1,"_source":{"id":174,"sku":"MH08-L-Purple","name":"Oslo Trek Hoodie-L-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                \n

                • Brown hoodie with black detail.
                • Pullover.
                • Adjustable drawstring hood.
                • Ribbed cuffs/waistband.
                • Machine wash/dry.

                ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"oslo-trek-hoodie-l-purple-174","links":{},"stock":{"item_id":174,"product_id":174,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-l-purple-174.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"191","_score":1,"_source":{"id":191,"sku":"MH09-L-Red","name":"Abominable Hoodie-L-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                \n

                • Blue heather hoodie.
                • Relaxed fit.
                • Moisture-wicking.
                • Machine wash/dry.

                ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"abominable-hoodie-l-red-191","links":{},"stock":{"item_id":191,"product_id":191,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-l-red-191.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"204","_score":1,"_source":{"id":204,"sku":"MH10-M-Red","name":"Mach Street Sweatshirt -M-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                \n

                • Navy heather crewneck sweatshirt.
                • LumaTech™ moisture-wicking fabric.
                • Antimicrobial, odor-resistant.
                • Zip hand pockets.
                • Chafe-resistant flatlock seams.
                • Rib-knit cuffs and hem.

                ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mach-street-sweatshirt-m-red-204","links":{},"stock":{"item_id":204,"product_id":204,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"483","_score":1,"_source":{"id":483,"sku":"MS09","name":"Ryker LumaTech™ Tee (Crew-neck)","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                \n

                • Royal polyester tee with black accents.
                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ryker-lumatech-trade-tee-crew-neck","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"ryker-lumatech-and-trade-tee-crew-neck-483","links":{},"stock":{"item_id":483,"product_id":483,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS09-XS-Black","id":468,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-black","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-XS-Blue","id":469,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-XS-Red","id":470,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"58","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-S-Black","id":471,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-S-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-s-black","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-S-Blue","id":472,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-S-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-s-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-S-Red","id":473,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-S-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"58","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-s-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-M-Black","id":474,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-M-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-m-black","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-M-Blue","id":475,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-M-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-m-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-M-Red","id":476,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-M-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"58","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-m-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-L-Black","id":477,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-L-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-l-black","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-L-Blue","id":478,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-L-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-l-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-L-Red","id":479,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-L-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"58","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-l-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-XL-Black","id":480,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-black","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-XL-Blue","id":481,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-XL-Red","id":482,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"58","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32}],"configurable_options":[{"id":55,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":483,"attribute_code":"color"},{"id":54,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":483,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-483.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"467","_score":1,"_source":{"id":467,"sku":"MS05","name":"Helios EverCool™ Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                \n

                • Teal quick dry tee.
                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"helios-evercool-trade-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,149,154],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"helios-evercool-and-trade-tee-467","links":{},"stock":{"item_id":467,"product_id":467,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS05-XS-Black","id":452,"status":1,"name":"Helios EverCool™ Tee-XS-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"167","color":"49","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","url_key":"helios-evercool-trade-tee-xs-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-XS-Blue","id":453,"status":1,"name":"Helios EverCool™ Tee-XS-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"167","color":"50","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","url_key":"helios-evercool-trade-tee-xs-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-XS-Purple","id":454,"status":1,"name":"Helios EverCool™ Tee-XS-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"167","color":"57","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","url_key":"helios-evercool-trade-tee-xs-purple","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-S-Black","id":455,"status":1,"name":"Helios EverCool™ Tee-S-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"168","color":"49","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","url_key":"helios-evercool-trade-tee-s-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-S-Blue","id":456,"status":1,"name":"Helios EverCool™ Tee-S-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"168","color":"50","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","url_key":"helios-evercool-trade-tee-s-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-S-Purple","id":457,"status":1,"name":"Helios EverCool™ Tee-S-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"168","color":"57","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","url_key":"helios-evercool-trade-tee-s-purple","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-M-Black","id":458,"status":1,"name":"Helios EverCool™ Tee-M-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"169","color":"49","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","url_key":"helios-evercool-trade-tee-m-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-M-Blue","id":459,"status":1,"name":"Helios EverCool™ Tee-M-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"169","color":"50","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","url_key":"helios-evercool-trade-tee-m-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-M-Purple","id":460,"status":1,"name":"Helios EverCool™ Tee-M-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"169","color":"57","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","url_key":"helios-evercool-trade-tee-m-purple","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-L-Black","id":461,"status":1,"name":"Helios EverCool™ Tee-L-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"170","color":"49","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","url_key":"helios-evercool-trade-tee-l-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-L-Blue","id":462,"status":1,"name":"Helios EverCool™ Tee-L-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"170","color":"50","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","url_key":"helios-evercool-trade-tee-l-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-L-Purple","id":463,"status":1,"name":"Helios EverCool™ Tee-L-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"170","color":"57","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","url_key":"helios-evercool-trade-tee-l-purple","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-XL-Black","id":464,"status":1,"name":"Helios EverCool™ Tee-XL-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"171","color":"49","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","url_key":"helios-evercool-trade-tee-xl-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-XL-Blue","id":465,"status":1,"name":"Helios EverCool™ Tee-XL-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"171","color":"50","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","url_key":"helios-evercool-trade-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-XL-Purple","id":466,"status":1,"name":"Helios EverCool™ Tee-XL-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"171","color":"57","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","url_key":"helios-evercool-trade-tee-xl-purple","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24}],"configurable_options":[{"id":53,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":467,"attribute_code":"color"},{"id":52,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":467,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-467.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"451","_score":1,"_source":{"id":451,"sku":"MS04","name":"Gobi HeatTec® Tee","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                \n

                • Orange micropolyester shirt.
                • HeatTec® wicking fabric.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"gobi-heattec-reg-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,152,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"gobi-heattec-and-reg-tee-451","links":{},"stock":{"item_id":451,"product_id":451,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS04-XS-Black","id":436,"status":1,"name":"Gobi HeatTec® Tee-XS-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","url_key":"gobi-heattec-reg-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MS04-XS-Orange","id":437,"status":1,"name":"Gobi HeatTec® Tee-XS-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"56","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","url_key":"gobi-heattec-reg-tee-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"MS04-XS-Red","id":438,"status":1,"name":"Gobi HeatTec® Tee-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"58","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","url_key":"gobi-heattec-reg-tee-xs-red","msrp_display_actual_price_type":"0"},{"sku":"MS04-S-Black","id":439,"status":1,"name":"Gobi HeatTec® Tee-S-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","url_key":"gobi-heattec-reg-tee-s-black","msrp_display_actual_price_type":"0"},{"sku":"MS04-S-Orange","id":440,"status":1,"name":"Gobi HeatTec® Tee-S-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"56","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","url_key":"gobi-heattec-reg-tee-s-orange","msrp_display_actual_price_type":"0"},{"sku":"MS04-S-Red","id":441,"status":1,"name":"Gobi HeatTec® Tee-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"58","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","url_key":"gobi-heattec-reg-tee-s-red","msrp_display_actual_price_type":"0"},{"sku":"MS04-M-Black","id":442,"status":1,"name":"Gobi HeatTec® Tee-M-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","url_key":"gobi-heattec-reg-tee-m-black","msrp_display_actual_price_type":"0"},{"sku":"MS04-M-Orange","id":443,"status":1,"name":"Gobi HeatTec® Tee-M-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"56","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","url_key":"gobi-heattec-reg-tee-m-orange","msrp_display_actual_price_type":"0"},{"sku":"MS04-M-Red","id":444,"status":1,"name":"Gobi HeatTec® Tee-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"58","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","url_key":"gobi-heattec-reg-tee-m-red","msrp_display_actual_price_type":"0"},{"sku":"MS04-L-Black","id":445,"status":1,"name":"Gobi HeatTec® Tee-L-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","url_key":"gobi-heattec-reg-tee-l-black","msrp_display_actual_price_type":"0"},{"sku":"MS04-L-Orange","id":446,"status":1,"name":"Gobi HeatTec® Tee-L-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"56","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","url_key":"gobi-heattec-reg-tee-l-orange","msrp_display_actual_price_type":"0"},{"sku":"MS04-L-Red","id":447,"status":1,"name":"Gobi HeatTec® Tee-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"58","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","url_key":"gobi-heattec-reg-tee-l-red","msrp_display_actual_price_type":"0"},{"sku":"MS04-XL-Black","id":448,"status":1,"name":"Gobi HeatTec® Tee-XL-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","url_key":"gobi-heattec-reg-tee-xl-black","msrp_display_actual_price_type":"0"},{"sku":"MS04-XL-Orange","id":449,"status":1,"name":"Gobi HeatTec® Tee-XL-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"56","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","url_key":"gobi-heattec-reg-tee-xl-orange","msrp_display_actual_price_type":"0"},{"sku":"MS04-XL-Red","id":450,"status":1,"name":"Gobi HeatTec® Tee-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"58","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","url_key":"gobi-heattec-reg-tee-xl-red","msrp_display_actual_price_type":"0"}],"configurable_options":[{"id":51,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":451,"attribute_code":"color"},{"id":50,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":451,"attribute_code":"size"}],"color_options":[49,56,58],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-451.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"499","_score":1,"_source":{"id":499,"sku":"MS11","name":"Atomic Endurance Running Tee (V-neck)","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                \n

                • Lime heathered v-neck tee.
                • Ultra-lightweight.
                • Moisture-wicking Cocona® fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"atomic-endurance-running-tee-v-neck","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"atomic-endurance-running-tee-v-neck-499","links":{},"stock":{"item_id":499,"product_id":499,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS11-XS-Blue","id":484,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-XS-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-xs-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-XS-Green","id":485,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-XS-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"53","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-xs-green","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-XS-Yellow","id":486,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-XS-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"60","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-xs-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-S-Blue","id":487,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-S-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-s-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-S-Green","id":488,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-S-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"53","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-s-green","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-S-Yellow","id":489,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-S-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"60","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-s-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-M-Blue","id":490,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-M-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-m-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-M-Green","id":491,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-M-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"53","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-m-green","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-M-Yellow","id":492,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-M-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"60","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-m-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-L-Blue","id":493,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-L-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-l-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-L-Green","id":494,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-L-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"53","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-l-green","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-L-Yellow","id":495,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-L-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"60","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-l-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-XL-Blue","id":496,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-XL-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-xl-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-XL-Green","id":497,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-XL-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"53","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-xl-green","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-XL-Yellow","id":498,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-XL-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"60","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-xl-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28}],"configurable_options":[{"id":57,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":60,"label":"Yellow"}],"product_id":499,"attribute_code":"color"},{"id":56,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":499,"attribute_code":"size"}],"color_options":[50,53,60],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-499.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"488","_score":1,"_source":{"id":488,"sku":"MS11-S-Green","name":"Atomic Endurance Running Tee (V-neck)-S-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                \n

                • Lime heathered v-neck tee.
                • Ultra-lightweight.
                • Moisture-wicking Cocona® fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-v-neck-s-green-488","links":{},"stock":{"item_id":488,"product_id":488,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-s-green-488.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"491","_score":1,"_source":{"id":491,"sku":"MS11-M-Green","name":"Atomic Endurance Running Tee (V-neck)-M-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                \n

                • Lime heathered v-neck tee.
                • Ultra-lightweight.
                • Moisture-wicking Cocona® fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-v-neck-m-green-491","links":{},"stock":{"item_id":491,"product_id":491,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-m-green-491.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"472","_score":1,"_source":{"id":472,"sku":"MS09-S-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-S-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                \n

                • Royal polyester tee with black accents.
                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-crew-neck-s-blue-472","links":{},"stock":{"item_id":472,"product_id":472,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-s-blue-472.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"470","_score":1,"_source":{"id":470,"sku":"MS09-XS-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                \n

                • Royal polyester tee with black accents.
                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-crew-neck-xs-red-470","links":{},"stock":{"item_id":470,"product_id":470,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xs-red-470.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"455","_score":1,"_source":{"id":455,"sku":"MS05-S-Black","name":"Helios EverCool™ Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                \n

                • Teal quick dry tee.
                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helios-evercool-and-trade-tee-s-black-455","links":{},"stock":{"item_id":455,"product_id":455,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-s-black-455.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"466","_score":1,"_source":{"id":466,"sku":"MS05-XL-Purple","name":"Helios EverCool™ Tee-XL-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                \n

                • Teal quick dry tee.
                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helios-evercool-and-trade-tee-xl-purple-466","links":{},"stock":{"item_id":466,"product_id":466,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xl-purple-466.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"459","_score":1,"_source":{"id":459,"sku":"MS05-M-Blue","name":"Helios EverCool™ Tee-M-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                \n

                • Teal quick dry tee.
                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helios-evercool-and-trade-tee-m-blue-459","links":{},"stock":{"item_id":459,"product_id":459,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-m-blue-459.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"487","_score":1,"_source":{"id":487,"sku":"MS11-S-Blue","name":"Atomic Endurance Running Tee (V-neck)-S-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                \n

                • Lime heathered v-neck tee.
                • Ultra-lightweight.
                • Moisture-wicking Cocona® fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-v-neck-s-blue-487","links":{},"stock":{"item_id":487,"product_id":487,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-s-blue-487.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"479","_score":1,"_source":{"id":479,"sku":"MS09-L-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-L-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                \n

                • Royal polyester tee with black accents.
                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-crew-neck-l-red-479","links":{},"stock":{"item_id":479,"product_id":479,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-l-red-479.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"481","_score":1,"_source":{"id":481,"sku":"MS09-XL-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                \n

                • Royal polyester tee with black accents.
                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-crew-neck-xl-blue-481","links":{},"stock":{"item_id":481,"product_id":481,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xl-blue-481.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"452","_score":1,"_source":{"id":452,"sku":"MS05-XS-Black","name":"Helios EverCool™ Tee-XS-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                \n

                • Teal quick dry tee.
                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helios-evercool-and-trade-tee-xs-black-452","links":{},"stock":{"item_id":452,"product_id":452,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xs-black-452.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"477","_score":1,"_source":{"id":477,"sku":"MS09-L-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-L-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                \n

                • Royal polyester tee with black accents.
                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-crew-neck-l-black-477","links":{},"stock":{"item_id":477,"product_id":477,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-l-black-477.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"473","_score":1,"_source":{"id":473,"sku":"MS09-S-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-S-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                \n

                • Royal polyester tee with black accents.
                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-crew-neck-s-red-473","links":{},"stock":{"item_id":473,"product_id":473,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-s-red-473.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"486","_score":1,"_source":{"id":486,"sku":"MS11-XS-Yellow","name":"Atomic Endurance Running Tee (V-neck)-XS-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                \n

                • Lime heathered v-neck tee.
                • Ultra-lightweight.
                • Moisture-wicking Cocona® fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-v-neck-xs-yellow-486","links":{},"stock":{"item_id":486,"product_id":486,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xs-yellow-486.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"484","_score":1,"_source":{"id":484,"sku":"MS11-XS-Blue","name":"Atomic Endurance Running Tee (V-neck)-XS-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                \n

                • Lime heathered v-neck tee.
                • Ultra-lightweight.
                • Moisture-wicking Cocona® fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-v-neck-xs-blue-484","links":{},"stock":{"item_id":484,"product_id":484,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xs-blue-484.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"482","_score":1,"_source":{"id":482,"sku":"MS09-XL-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                \n

                • Royal polyester tee with black accents.
                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-crew-neck-xl-red-482","links":{},"stock":{"item_id":482,"product_id":482,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xl-red-482.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"456","_score":1,"_source":{"id":456,"sku":"MS05-S-Blue","name":"Helios EverCool™ Tee-S-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                \n

                • Teal quick dry tee.
                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helios-evercool-and-trade-tee-s-blue-456","links":{},"stock":{"item_id":456,"product_id":456,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-s-blue-456.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"458","_score":1,"_source":{"id":458,"sku":"MS05-M-Black","name":"Helios EverCool™ Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                \n

                • Teal quick dry tee.
                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helios-evercool-and-trade-tee-m-black-458","links":{},"stock":{"item_id":458,"product_id":458,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-m-black-458.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"457","_score":1,"_source":{"id":457,"sku":"MS05-S-Purple","name":"Helios EverCool™ Tee-S-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                \n

                • Teal quick dry tee.
                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helios-evercool-and-trade-tee-s-purple-457","links":{},"stock":{"item_id":457,"product_id":457,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-s-purple-457.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"460","_score":1,"_source":{"id":460,"sku":"MS05-M-Purple","name":"Helios EverCool™ Tee-M-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                \n

                • Teal quick dry tee.
                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helios-evercool-and-trade-tee-m-purple-460","links":{},"stock":{"item_id":460,"product_id":460,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-m-purple-460.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"463","_score":1,"_source":{"id":463,"sku":"MS05-L-Purple","name":"Helios EverCool™ Tee-L-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                \n

                • Teal quick dry tee.
                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helios-evercool-and-trade-tee-l-purple-463","links":{},"stock":{"item_id":463,"product_id":463,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-l-purple-463.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"469","_score":1,"_source":{"id":469,"sku":"MS09-XS-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                \n

                • Royal polyester tee with black accents.
                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-crew-neck-xs-blue-469","links":{},"stock":{"item_id":469,"product_id":469,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xs-blue-469.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"462","_score":1,"_source":{"id":462,"sku":"MS05-L-Blue","name":"Helios EverCool™ Tee-L-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                \n

                • Teal quick dry tee.
                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helios-evercool-and-trade-tee-l-blue-462","links":{},"stock":{"item_id":462,"product_id":462,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-l-blue-462.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"465","_score":1,"_source":{"id":465,"sku":"MS05-XL-Blue","name":"Helios EverCool™ Tee-XL-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                \n

                • Teal quick dry tee.
                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helios-evercool-and-trade-tee-xl-blue-465","links":{},"stock":{"item_id":465,"product_id":465,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xl-blue-465.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"453","_score":1,"_source":{"id":453,"sku":"MS05-XS-Blue","name":"Helios EverCool™ Tee-XS-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                \n

                • Teal quick dry tee.
                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helios-evercool-and-trade-tee-xs-blue-453","links":{},"stock":{"item_id":453,"product_id":453,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xs-blue-453.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"471","_score":1,"_source":{"id":471,"sku":"MS09-S-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-S-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                \n

                • Royal polyester tee with black accents.
                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-crew-neck-s-black-471","links":{},"stock":{"item_id":471,"product_id":471,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-s-black-471.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"474","_score":1,"_source":{"id":474,"sku":"MS09-M-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-M-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                \n

                • Royal polyester tee with black accents.
                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-crew-neck-m-black-474","links":{},"stock":{"item_id":474,"product_id":474,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-m-black-474.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"461","_score":1,"_source":{"id":461,"sku":"MS05-L-Black","name":"Helios EverCool™ Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                \n

                • Teal quick dry tee.
                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helios-evercool-and-trade-tee-l-black-461","links":{},"stock":{"item_id":461,"product_id":461,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-l-black-461.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"478","_score":1,"_source":{"id":478,"sku":"MS09-L-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-L-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                \n

                • Royal polyester tee with black accents.
                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-crew-neck-l-blue-478","links":{},"stock":{"item_id":478,"product_id":478,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-l-blue-478.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"464","_score":1,"_source":{"id":464,"sku":"MS05-XL-Black","name":"Helios EverCool™ Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                \n

                • Teal quick dry tee.
                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helios-evercool-and-trade-tee-xl-black-464","links":{},"stock":{"item_id":464,"product_id":464,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xl-black-464.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"475","_score":1,"_source":{"id":475,"sku":"MS09-M-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-M-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                \n

                • Royal polyester tee with black accents.
                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-crew-neck-m-blue-475","links":{},"stock":{"item_id":475,"product_id":475,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-m-blue-475.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"498","_score":1,"_source":{"id":498,"sku":"MS11-XL-Yellow","name":"Atomic Endurance Running Tee (V-neck)-XL-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                \n

                • Lime heathered v-neck tee.
                • Ultra-lightweight.
                • Moisture-wicking Cocona® fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-v-neck-xl-yellow-498","links":{},"stock":{"item_id":498,"product_id":498,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xl-yellow-498.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"485","_score":1,"_source":{"id":485,"sku":"MS11-XS-Green","name":"Atomic Endurance Running Tee (V-neck)-XS-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                \n

                • Lime heathered v-neck tee.
                • Ultra-lightweight.
                • Moisture-wicking Cocona® fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-v-neck-xs-green-485","links":{},"stock":{"item_id":485,"product_id":485,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xs-green-485.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"489","_score":1,"_source":{"id":489,"sku":"MS11-S-Yellow","name":"Atomic Endurance Running Tee (V-neck)-S-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                \n

                • Lime heathered v-neck tee.
                • Ultra-lightweight.
                • Moisture-wicking Cocona® fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-v-neck-s-yellow-489","links":{},"stock":{"item_id":489,"product_id":489,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-s-yellow-489.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"480","_score":1,"_source":{"id":480,"sku":"MS09-XL-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                \n

                • Royal polyester tee with black accents.
                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-crew-neck-xl-black-480","links":{},"stock":{"item_id":480,"product_id":480,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xl-black-480.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"494","_score":1,"_source":{"id":494,"sku":"MS11-L-Green","name":"Atomic Endurance Running Tee (V-neck)-L-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                \n

                • Lime heathered v-neck tee.
                • Ultra-lightweight.
                • Moisture-wicking Cocona® fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-v-neck-l-green-494","links":{},"stock":{"item_id":494,"product_id":494,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-l-green-494.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"500","_score":1,"_source":{"id":500,"sku":"MS12-XS-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                \n

                • Red polyester tee.
                • Crew neckline.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-crew-neck-xs-black-500","links":{},"stock":{"item_id":500,"product_id":500,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xs-black-500.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"493","_score":1,"_source":{"id":493,"sku":"MS11-L-Blue","name":"Atomic Endurance Running Tee (V-neck)-L-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                \n

                • Lime heathered v-neck tee.
                • Ultra-lightweight.
                • Moisture-wicking Cocona® fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-v-neck-l-blue-493","links":{},"stock":{"item_id":493,"product_id":493,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-l-blue-493.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"476","_score":1,"_source":{"id":476,"sku":"MS09-M-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-M-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                \n

                • Royal polyester tee with black accents.
                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-crew-neck-m-red-476","links":{},"stock":{"item_id":476,"product_id":476,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-m-red-476.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"496","_score":1,"_source":{"id":496,"sku":"MS11-XL-Blue","name":"Atomic Endurance Running Tee (V-neck)-XL-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                \n

                • Lime heathered v-neck tee.
                • Ultra-lightweight.
                • Moisture-wicking Cocona® fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-v-neck-xl-blue-496","links":{},"stock":{"item_id":496,"product_id":496,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xl-blue-496.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"490","_score":1,"_source":{"id":490,"sku":"MS11-M-Blue","name":"Atomic Endurance Running Tee (V-neck)-M-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                \n

                • Lime heathered v-neck tee.
                • Ultra-lightweight.
                • Moisture-wicking Cocona® fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-v-neck-m-blue-490","links":{},"stock":{"item_id":490,"product_id":490,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-m-blue-490.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"492","_score":1,"_source":{"id":492,"sku":"MS11-M-Yellow","name":"Atomic Endurance Running Tee (V-neck)-M-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                \n

                • Lime heathered v-neck tee.
                • Ultra-lightweight.
                • Moisture-wicking Cocona® fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-v-neck-m-yellow-492","links":{},"stock":{"item_id":492,"product_id":492,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-m-yellow-492.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"497","_score":1,"_source":{"id":497,"sku":"MS11-XL-Green","name":"Atomic Endurance Running Tee (V-neck)-XL-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                \n

                • Lime heathered v-neck tee.
                • Ultra-lightweight.
                • Moisture-wicking Cocona® fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-v-neck-xl-green-497","links":{},"stock":{"item_id":497,"product_id":497,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xl-green-497.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"495","_score":1,"_source":{"id":495,"sku":"MS11-L-Yellow","name":"Atomic Endurance Running Tee (V-neck)-L-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                \n

                • Lime heathered v-neck tee.
                • Ultra-lightweight.
                • Moisture-wicking Cocona® fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-v-neck-l-yellow-495","links":{},"stock":{"item_id":495,"product_id":495,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-l-yellow-495.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"506","_score":1,"_source":{"id":506,"sku":"MS12-M-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-M-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                \n

                • Red polyester tee.
                • Crew neckline.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-crew-neck-m-black-506","links":{},"stock":{"item_id":506,"product_id":506,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-m-black-506.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"509","_score":1,"_source":{"id":509,"sku":"MS12-L-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-L-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                \n

                • Red polyester tee.
                • Crew neckline.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-crew-neck-l-black-509","links":{},"stock":{"item_id":509,"product_id":509,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-l-black-509.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"508","_score":1,"_source":{"id":508,"sku":"MS12-M-Red","name":"Atomic Endurance Running Tee (Crew-Neck)-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                \n

                • Red polyester tee.
                • Crew neckline.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-crew-neck-m-red-508","links":{},"stock":{"item_id":508,"product_id":508,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-m-red-508.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"504","_score":1,"_source":{"id":504,"sku":"MS12-S-Blue","name":"Atomic Endurance Running Tee (Crew-Neck)-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                \n

                • Red polyester tee.
                • Crew neckline.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-crew-neck-s-blue-504","links":{},"stock":{"item_id":504,"product_id":504,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-s-blue-504.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"502","_score":1,"_source":{"id":502,"sku":"MS12-XS-Red","name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                \n

                • Red polyester tee.
                • Crew neckline.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-crew-neck-xs-red-502","links":{},"stock":{"item_id":502,"product_id":502,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xs-red-502.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"503","_score":1,"_source":{"id":503,"sku":"MS12-S-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-S-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                \n

                • Red polyester tee.
                • Crew neckline.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-crew-neck-s-black-503","links":{},"stock":{"item_id":503,"product_id":503,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-s-black-503.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"518","_score":1,"_source":{"id":518,"sku":"MS03-XS-Orange","name":"Balboa Persistence Tee-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                \n

                • Crew neckline.
                • Semi-fitted.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"balboa-persistence-tee-xs-orange-518","links":{},"stock":{"item_id":518,"product_id":518,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xs-orange-518.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"512","_score":1,"_source":{"id":512,"sku":"MS12-XL-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                \n

                • Red polyester tee.
                • Crew neckline.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-crew-neck-xl-black-512","links":{},"stock":{"item_id":512,"product_id":512,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xl-black-512.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"521","_score":1,"_source":{"id":521,"sku":"MS03-S-Orange","name":"Balboa Persistence Tee-S-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                \n

                • Crew neckline.
                • Semi-fitted.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"balboa-persistence-tee-s-orange-521","links":{},"stock":{"item_id":521,"product_id":521,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-s-orange-521.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"501","_score":1,"_source":{"id":501,"sku":"MS12-XS-Blue","name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                \n

                • Red polyester tee.
                • Crew neckline.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-crew-neck-xs-blue-501","links":{},"stock":{"item_id":501,"product_id":501,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xs-blue-501.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"520","_score":1,"_source":{"id":520,"sku":"MS03-S-Green","name":"Balboa Persistence Tee-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                \n

                • Crew neckline.
                • Semi-fitted.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"balboa-persistence-tee-s-green-520","links":{},"stock":{"item_id":520,"product_id":520,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-s-green-520.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"530","_score":1,"_source":{"id":530,"sku":"MS03-XL-Orange","name":"Balboa Persistence Tee-XL-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                \n

                • Crew neckline.
                • Semi-fitted.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"balboa-persistence-tee-xl-orange-530","links":{},"stock":{"item_id":530,"product_id":530,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xl-orange-530.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"514","_score":1,"_source":{"id":514,"sku":"MS12-XL-Red","name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                \n

                • Red polyester tee.
                • Crew neckline.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-crew-neck-xl-red-514","links":{},"stock":{"item_id":514,"product_id":514,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xl-red-514.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"517","_score":1,"_source":{"id":517,"sku":"MS03-XS-Green","name":"Balboa Persistence Tee-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                \n

                • Crew neckline.
                • Semi-fitted.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"balboa-persistence-tee-xs-green-517","links":{},"stock":{"item_id":517,"product_id":517,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xs-green-517.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"507","_score":1,"_source":{"id":507,"sku":"MS12-M-Blue","name":"Atomic Endurance Running Tee (Crew-Neck)-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                \n

                • Red polyester tee.
                • Crew neckline.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-crew-neck-m-blue-507","links":{},"stock":{"item_id":507,"product_id":507,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-m-blue-507.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"505","_score":1,"_source":{"id":505,"sku":"MS12-S-Red","name":"Atomic Endurance Running Tee (Crew-Neck)-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                \n

                • Red polyester tee.
                • Crew neckline.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-crew-neck-s-red-505","links":{},"stock":{"item_id":505,"product_id":505,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-s-red-505.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"524","_score":1,"_source":{"id":524,"sku":"MS03-M-Orange","name":"Balboa Persistence Tee-M-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                \n

                • Crew neckline.
                • Semi-fitted.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"balboa-persistence-tee-m-orange-524","links":{},"stock":{"item_id":524,"product_id":524,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-m-orange-524.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"528","_score":1,"_source":{"id":528,"sku":"MS03-XL-Gray","name":"Balboa Persistence Tee-XL-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                \n

                • Crew neckline.
                • Semi-fitted.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"balboa-persistence-tee-xl-gray-528","links":{},"stock":{"item_id":528,"product_id":528,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xl-gray-528.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"539","_score":1,"_source":{"id":539,"sku":"MS06-M-Green","name":"Zoltan Gym Tee-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                \n

                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoltan-gym-tee-m-green-539","links":{},"stock":{"item_id":539,"product_id":539,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-m-green-539.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"529","_score":1,"_source":{"id":529,"sku":"MS03-XL-Green","name":"Balboa Persistence Tee-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                \n

                • Crew neckline.
                • Semi-fitted.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"balboa-persistence-tee-xl-green-529","links":{},"stock":{"item_id":529,"product_id":529,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xl-green-529.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"511","_score":1,"_source":{"id":511,"sku":"MS12-L-Red","name":"Atomic Endurance Running Tee (Crew-Neck)-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                \n

                • Red polyester tee.
                • Crew neckline.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-crew-neck-l-red-511","links":{},"stock":{"item_id":511,"product_id":511,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-l-red-511.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"537","_score":1,"_source":{"id":537,"sku":"MS06-S-Yellow","name":"Zoltan Gym Tee-S-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                \n

                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoltan-gym-tee-s-yellow-537","links":{},"stock":{"item_id":537,"product_id":537,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-s-yellow-537.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"510","_score":1,"_source":{"id":510,"sku":"MS12-L-Blue","name":"Atomic Endurance Running Tee (Crew-Neck)-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                \n

                • Red polyester tee.
                • Crew neckline.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-crew-neck-l-blue-510","links":{},"stock":{"item_id":510,"product_id":510,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-l-blue-510.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"525","_score":1,"_source":{"id":525,"sku":"MS03-L-Gray","name":"Balboa Persistence Tee-L-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                \n

                • Crew neckline.
                • Semi-fitted.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"balboa-persistence-tee-l-gray-525","links":{},"stock":{"item_id":525,"product_id":525,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-l-gray-525.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"533","_score":1,"_source":{"id":533,"sku":"MS06-XS-Green","name":"Zoltan Gym Tee-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                \n

                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoltan-gym-tee-xs-green-533","links":{},"stock":{"item_id":533,"product_id":533,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xs-green-533.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"534","_score":1,"_source":{"id":534,"sku":"MS06-XS-Yellow","name":"Zoltan Gym Tee-XS-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                \n

                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoltan-gym-tee-xs-yellow-534","links":{},"stock":{"item_id":534,"product_id":534,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xs-yellow-534.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"519","_score":1,"_source":{"id":519,"sku":"MS03-S-Gray","name":"Balboa Persistence Tee-S-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                \n

                • Crew neckline.
                • Semi-fitted.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"balboa-persistence-tee-s-gray-519","links":{},"stock":{"item_id":519,"product_id":519,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-s-gray-519.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"527","_score":1,"_source":{"id":527,"sku":"MS03-L-Orange","name":"Balboa Persistence Tee-L-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                \n

                • Crew neckline.
                • Semi-fitted.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"balboa-persistence-tee-l-orange-527","links":{},"stock":{"item_id":527,"product_id":527,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-l-orange-527.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"516","_score":1,"_source":{"id":516,"sku":"MS03-XS-Gray","name":"Balboa Persistence Tee-XS-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                \n

                • Crew neckline.
                • Semi-fitted.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"balboa-persistence-tee-xs-gray-516","links":{},"stock":{"item_id":516,"product_id":516,"stock_id":1,"qty":36,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xs-gray-516.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"526","_score":1,"_source":{"id":526,"sku":"MS03-L-Green","name":"Balboa Persistence Tee-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                \n

                • Crew neckline.
                • Semi-fitted.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"balboa-persistence-tee-l-green-526","links":{},"stock":{"item_id":526,"product_id":526,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-l-green-526.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"538","_score":1,"_source":{"id":538,"sku":"MS06-M-Blue","name":"Zoltan Gym Tee-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                \n

                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoltan-gym-tee-m-blue-538","links":{},"stock":{"item_id":538,"product_id":538,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-m-blue-538.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"532","_score":1,"_source":{"id":532,"sku":"MS06-XS-Blue","name":"Zoltan Gym Tee-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                \n

                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoltan-gym-tee-xs-blue-532","links":{},"stock":{"item_id":532,"product_id":532,"stock_id":1,"qty":77,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xs-blue-532.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"454","_score":1,"_source":{"id":454,"sku":"MS05-XS-Purple","name":"Helios EverCool™ Tee-XS-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                \n

                • Teal quick dry tee.
                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helios-evercool-and-trade-tee-xs-purple-454","links":{},"stock":{"item_id":454,"product_id":454,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xs-purple-454.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"581","_score":1,"_source":{"id":581,"sku":"MS10-XS-Blue","name":"Logan HeatTec® Tee-XS-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                \n

                • Semi-fitted.
                • Crew neckline.
                • Machine wash/tumble dry.

                ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"logan-heattec-and-reg-tee-xs-blue-581","links":{},"stock":{"item_id":581,"product_id":581,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xs-blue-581.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"576","_score":1,"_source":{"id":576,"sku":"MS02-XL-Black","name":"Ryker LumaTech™ Tee (V-neck)-XL-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                \n

                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-v-neck-xl-black-576","links":{},"stock":{"item_id":576,"product_id":576,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xl-black-576.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"567","_score":1,"_source":{"id":567,"sku":"MS02-S-Black","name":"Ryker LumaTech™ Tee (V-neck)-S-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                \n

                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-v-neck-s-black-567","links":{},"stock":{"item_id":567,"product_id":567,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-s-black-567.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"578","_score":1,"_source":{"id":578,"sku":"MS02-XL-Gray","name":"Ryker LumaTech™ Tee (V-neck)-XL-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                \n

                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-v-neck-xl-gray-578","links":{},"stock":{"item_id":578,"product_id":578,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xl-gray-578.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"592","_score":1,"_source":{"id":592,"sku":"MS10-XL-Black","name":"Logan HeatTec® Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                \n

                • Semi-fitted.
                • Crew neckline.
                • Machine wash/tumble dry.

                ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"logan-heattec-and-reg-tee-xl-black-592","links":{},"stock":{"item_id":592,"product_id":592,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xl-black-592.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"591","_score":1,"_source":{"id":591,"sku":"MS10-L-Red","name":"Logan HeatTec® Tee-L-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                \n

                • Semi-fitted.
                • Crew neckline.
                • Machine wash/tumble dry.

                ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"logan-heattec-and-reg-tee-l-red-591","links":{},"stock":{"item_id":591,"product_id":591,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-l-red-591.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"598","_score":1,"_source":{"id":598,"sku":"MS07-XS-White","name":"Deion Long-Sleeve EverCool™ Tee-XS-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                \n

                • Fitted.
                • Contrast inner neck tape.
                • Machine wash/dry.

                ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"deion-long-sleeve-evercool-and-trade-tee-xs-white-598","links":{},"stock":{"item_id":598,"product_id":598,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xs-white-598.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"583","_score":1,"_source":{"id":583,"sku":"MS10-S-Black","name":"Logan HeatTec® Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                \n

                • Semi-fitted.
                • Crew neckline.
                • Machine wash/tumble dry.

                ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"logan-heattec-and-reg-tee-s-black-583","links":{},"stock":{"item_id":583,"product_id":583,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-s-black-583.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"597","_score":1,"_source":{"id":597,"sku":"MS07-XS-Green","name":"Deion Long-Sleeve EverCool™ Tee-XS-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                \n

                • Fitted.
                • Contrast inner neck tape.
                • Machine wash/dry.

                ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"deion-long-sleeve-evercool-and-trade-tee-xs-green-597","links":{},"stock":{"item_id":597,"product_id":597,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xs-green-597.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"590","_score":1,"_source":{"id":590,"sku":"MS10-L-Blue","name":"Logan HeatTec® Tee-L-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                \n

                • Semi-fitted.
                • Crew neckline.
                • Machine wash/tumble dry.

                ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"logan-heattec-and-reg-tee-l-blue-590","links":{},"stock":{"item_id":590,"product_id":590,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-l-blue-590.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"596","_score":1,"_source":{"id":596,"sku":"MS07-XS-Black","name":"Deion Long-Sleeve EverCool™ Tee-XS-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                \n

                • Fitted.
                • Contrast inner neck tape.
                • Machine wash/dry.

                ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"deion-long-sleeve-evercool-and-trade-tee-xs-black-596","links":{},"stock":{"item_id":596,"product_id":596,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-06-26 15:20:32","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xs-black-596.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"593","_score":1,"_source":{"id":593,"sku":"MS10-XL-Blue","name":"Logan HeatTec® Tee-XL-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                \n

                • Semi-fitted.
                • Crew neckline.
                • Machine wash/tumble dry.

                ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"logan-heattec-and-reg-tee-xl-blue-593","links":{},"stock":{"item_id":593,"product_id":593,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xl-blue-593.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"586","_score":1,"_source":{"id":586,"sku":"MS10-M-Black","name":"Logan HeatTec® Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                \n

                • Semi-fitted.
                • Crew neckline.
                • Machine wash/tumble dry.

                ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"logan-heattec-and-reg-tee-m-black-586","links":{},"stock":{"item_id":586,"product_id":586,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-m-black-586.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"588","_score":1,"_source":{"id":588,"sku":"MS10-M-Red","name":"Logan HeatTec® Tee-M-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                \n

                • Semi-fitted.
                • Crew neckline.
                • Machine wash/tumble dry.

                ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"logan-heattec-and-reg-tee-m-red-588","links":{},"stock":{"item_id":588,"product_id":588,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-m-red-588.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"599","_score":1,"_source":{"id":599,"sku":"MS07-S-Black","name":"Deion Long-Sleeve EverCool™ Tee-S-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                \n

                • Fitted.
                • Contrast inner neck tape.
                • Machine wash/dry.

                ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"deion-long-sleeve-evercool-and-trade-tee-s-black-599","links":{},"stock":{"item_id":599,"product_id":599,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-s-black-599.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"580","_score":1,"_source":{"id":580,"sku":"MS10-XS-Black","name":"Logan HeatTec® Tee-XS-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                \n

                • Semi-fitted.
                • Crew neckline.
                • Machine wash/tumble dry.

                ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"logan-heattec-and-reg-tee-xs-black-580","links":{},"stock":{"item_id":580,"product_id":580,"stock_id":1,"qty":2,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xs-black-580.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"585","_score":1,"_source":{"id":585,"sku":"MS10-S-Red","name":"Logan HeatTec® Tee-S-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                \n

                • Semi-fitted.
                • Crew neckline.
                • Machine wash/tumble dry.

                ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"logan-heattec-and-reg-tee-s-red-585","links":{},"stock":{"item_id":585,"product_id":585,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-s-red-585.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"589","_score":1,"_source":{"id":589,"sku":"MS10-L-Black","name":"Logan HeatTec® Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                \n

                • Semi-fitted.
                • Crew neckline.
                • Machine wash/tumble dry.

                ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"logan-heattec-and-reg-tee-l-black-589","links":{},"stock":{"item_id":589,"product_id":589,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-l-black-589.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"559","_score":1,"_source":{"id":559,"sku":"MS01-L-Yellow","name":"Aero Daily Fitness Tee-L-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                \n

                Relaxed fit.
                Short-Sleeve.
                Machine wash/dry.

                ","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"aero-daily-fitness-tee-l-yellow-559","links":{},"stock":{"item_id":559,"product_id":559,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-l-yellow-559.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"563","_score":1,"_source":{"id":563,"sku":"MS01","name":"Aero Daily Fitness Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                \n

                Relaxed fit.
                Short-Sleeve.
                Machine wash/dry.

                ","image":"/m/s/ms01-blue_main.jpg","small_image":"/m/s/ms01-blue_main.jpg","thumbnail":"/m/s/ms01-blue_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"aero-daily-fitness-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"aero-daily-fitness-tee-563","links":{},"stock":{"item_id":563,"product_id":563,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS01-XS-Black","id":548,"status":1,"name":"Aero Daily Fitness Tee-XS-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","url_key":"aero-daily-fitness-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MS01-XS-Brown","id":549,"status":1,"name":"Aero Daily Fitness Tee-XS-Brown","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"51","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","url_key":"aero-daily-fitness-tee-xs-brown","msrp_display_actual_price_type":"0"},{"sku":"MS01-XS-Yellow","id":550,"status":1,"name":"Aero Daily Fitness Tee-XS-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"60","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","url_key":"aero-daily-fitness-tee-xs-yellow","msrp_display_actual_price_type":"0"},{"sku":"MS01-S-Black","id":551,"status":1,"name":"Aero Daily Fitness Tee-S-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","url_key":"aero-daily-fitness-tee-s-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS01-S-Brown","id":552,"status":1,"name":"Aero Daily Fitness Tee-S-Brown","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"51","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","url_key":"aero-daily-fitness-tee-s-brown","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS01-S-Yellow","id":553,"status":1,"name":"Aero Daily Fitness Tee-S-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"60","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","url_key":"aero-daily-fitness-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS01-M-Black","id":554,"status":1,"name":"Aero Daily Fitness Tee-M-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","url_key":"aero-daily-fitness-tee-m-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS01-M-Brown","id":555,"status":1,"name":"Aero Daily Fitness Tee-M-Brown","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"51","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","url_key":"aero-daily-fitness-tee-m-brown","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS01-M-Yellow","id":556,"status":1,"name":"Aero Daily Fitness Tee-M-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"60","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","url_key":"aero-daily-fitness-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS01-L-Black","id":557,"status":1,"name":"Aero Daily Fitness Tee-L-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","url_key":"aero-daily-fitness-tee-l-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS01-L-Brown","id":558,"status":1,"name":"Aero Daily Fitness Tee-L-Brown","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"51","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","url_key":"aero-daily-fitness-tee-l-brown","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS01-L-Yellow","id":559,"status":1,"name":"Aero Daily Fitness Tee-L-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"60","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","url_key":"aero-daily-fitness-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS01-XL-Black","id":560,"status":1,"name":"Aero Daily Fitness Tee-XL-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","url_key":"aero-daily-fitness-tee-xl-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS01-XL-Brown","id":561,"status":1,"name":"Aero Daily Fitness Tee-XL-Brown","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"51","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","url_key":"aero-daily-fitness-tee-xl-brown","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS01-XL-Yellow","id":562,"status":1,"name":"Aero Daily Fitness Tee-XL-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"60","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","url_key":"aero-daily-fitness-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24}],"configurable_options":[{"id":65,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":51,"label":"Brown"},{"value_index":60,"label":"Yellow"}],"product_id":563,"attribute_code":"color"},{"id":64,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":563,"attribute_code":"size"}],"color_options":[49,51,60],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-563.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"545","_score":1,"_source":{"id":545,"sku":"MS06-XL-Green","name":"Zoltan Gym Tee-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                \n

                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoltan-gym-tee-xl-green-545","links":{},"stock":{"item_id":545,"product_id":545,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xl-green-545.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"513","_score":1,"_source":{"id":513,"sku":"MS12-XL-Blue","name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                \n

                • Red polyester tee.
                • Crew neckline.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-crew-neck-xl-blue-513","links":{},"stock":{"item_id":513,"product_id":513,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xl-blue-513.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"544","_score":1,"_source":{"id":544,"sku":"MS06-XL-Blue","name":"Zoltan Gym Tee-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                \n

                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoltan-gym-tee-xl-blue-544","links":{},"stock":{"item_id":544,"product_id":544,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xl-blue-544.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"522","_score":1,"_source":{"id":522,"sku":"MS03-M-Gray","name":"Balboa Persistence Tee-M-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                \n

                • Crew neckline.
                • Semi-fitted.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"balboa-persistence-tee-m-gray-522","links":{},"stock":{"item_id":522,"product_id":522,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-m-gray-522.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"523","_score":1,"_source":{"id":523,"sku":"MS03-M-Green","name":"Balboa Persistence Tee-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                \n

                • Crew neckline.
                • Semi-fitted.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"balboa-persistence-tee-m-green-523","links":{},"stock":{"item_id":523,"product_id":523,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-m-green-523.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"541","_score":1,"_source":{"id":541,"sku":"MS06-L-Blue","name":"Zoltan Gym Tee-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                \n

                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoltan-gym-tee-l-blue-541","links":{},"stock":{"item_id":541,"product_id":541,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-l-blue-541.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"535","_score":1,"_source":{"id":535,"sku":"MS06-S-Blue","name":"Zoltan Gym Tee-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                \n

                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoltan-gym-tee-s-blue-535","links":{},"stock":{"item_id":535,"product_id":535,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-s-blue-535.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"542","_score":1,"_source":{"id":542,"sku":"MS06-L-Green","name":"Zoltan Gym Tee-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                \n

                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoltan-gym-tee-l-green-542","links":{},"stock":{"item_id":542,"product_id":542,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-l-green-542.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"536","_score":1,"_source":{"id":536,"sku":"MS06-S-Green","name":"Zoltan Gym Tee-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                \n

                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoltan-gym-tee-s-green-536","links":{},"stock":{"item_id":536,"product_id":536,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-s-green-536.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"540","_score":1,"_source":{"id":540,"sku":"MS06-M-Yellow","name":"Zoltan Gym Tee-M-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                \n

                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoltan-gym-tee-m-yellow-540","links":{},"stock":{"item_id":540,"product_id":540,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-m-yellow-540.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"548","_score":1,"_source":{"id":548,"sku":"MS01-XS-Black","name":"Aero Daily Fitness Tee-XS-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                \n

                Relaxed fit.
                Short-Sleeve.
                Machine wash/dry.

                ","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"aero-daily-fitness-tee-xs-black-548","links":{},"stock":{"item_id":548,"product_id":548,"stock_id":1,"qty":67,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xs-black-548.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"546","_score":1,"_source":{"id":546,"sku":"MS06-XL-Yellow","name":"Zoltan Gym Tee-XL-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                \n

                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoltan-gym-tee-xl-yellow-546","links":{},"stock":{"item_id":546,"product_id":546,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xl-yellow-546.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"550","_score":1,"_source":{"id":550,"sku":"MS01-XS-Yellow","name":"Aero Daily Fitness Tee-XS-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                \n

                Relaxed fit.
                Short-Sleeve.
                Machine wash/dry.

                ","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"aero-daily-fitness-tee-xs-yellow-550","links":{},"stock":{"item_id":550,"product_id":550,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xs-yellow-550.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"549","_score":1,"_source":{"id":549,"sku":"MS01-XS-Brown","name":"Aero Daily Fitness Tee-XS-Brown","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                \n

                Relaxed fit.
                Short-Sleeve.
                Machine wash/dry.

                ","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xs-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"aero-daily-fitness-tee-xs-brown-549","links":{},"stock":{"item_id":549,"product_id":549,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms01-brown_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xs-brown-549.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"543","_score":1,"_source":{"id":543,"sku":"MS06-L-Yellow","name":"Zoltan Gym Tee-L-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                \n

                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoltan-gym-tee-l-yellow-543","links":{},"stock":{"item_id":543,"product_id":543,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-l-yellow-543.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"515","_score":1,"_source":{"id":515,"sku":"MS12","name":"Atomic Endurance Running Tee (Crew-Neck)","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                \n

                • Red polyester tee.
                • Crew neckline.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"atomic-endurance-running-tee-crew-neck","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"atomic-endurance-running-tee-crew-neck-515","links":{},"stock":{"item_id":515,"product_id":515,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS12-XS-Black","id":500,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MS12-XS-Blue","id":501,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-xs-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-XS-Red","id":502,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"58","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-xs-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-S-Black","id":503,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-S-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-s-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-S-Blue","id":504,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-s-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-S-Red","id":505,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"58","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-s-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-M-Black","id":506,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-M-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-m-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-M-Blue","id":507,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-m-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-M-Red","id":508,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"58","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-m-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-L-Black","id":509,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-L-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-l-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-L-Blue","id":510,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-l-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-L-Red","id":511,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"58","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-l-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-XL-Black","id":512,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-xl-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-XL-Blue","id":513,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-xl-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-XL-Red","id":514,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"58","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-xl-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":59,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":515,"attribute_code":"color"},{"id":58,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":515,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-515.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"600","_score":1,"_source":{"id":600,"sku":"MS07-S-Green","name":"Deion Long-Sleeve EverCool™ Tee-S-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                \n

                • Fitted.
                • Contrast inner neck tape.
                • Machine wash/dry.

                ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"deion-long-sleeve-evercool-and-trade-tee-s-green-600","links":{},"stock":{"item_id":600,"product_id":600,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-s-green-600.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"579","_score":1,"_source":{"id":579,"sku":"MS02","name":"Ryker LumaTech™ Tee (V-neck)","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                \n

                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ryker-lumatech-trade-tee-v-neck","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,33,39],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"ryker-lumatech-and-trade-tee-v-neck-579","links":{},"stock":{"item_id":579,"product_id":579,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS02-XS-Black","id":564,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-XS-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-xs-black","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-XS-Blue","id":565,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-XS-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-xs-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-XS-Gray","id":566,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-XS-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"52","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-xs-gray","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-S-Black","id":567,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-S-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-s-black","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-S-Blue","id":568,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-S-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-s-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-S-Gray","id":569,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-S-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"52","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-s-gray","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-M-Black","id":570,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-M-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-m-black","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-M-Blue","id":571,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-M-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-m-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-M-Gray","id":572,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-M-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"52","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-m-gray","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-L-Black","id":573,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-L-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-l-black","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-L-Blue","id":574,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-L-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-l-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-L-Gray","id":575,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-L-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"52","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-l-gray","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-XL-Black","id":576,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-XL-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-xl-black","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-XL-Blue","id":577,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-XL-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-xl-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-XL-Gray","id":578,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-XL-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"52","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-xl-gray","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28}],"configurable_options":[{"id":67,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"}],"product_id":579,"attribute_code":"color"},{"id":66,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":579,"attribute_code":"size"}],"color_options":[49,50,52],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-579.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"595","_score":1,"_source":{"id":595,"sku":"MS10","name":"Logan HeatTec® Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                \n

                • Semi-fitted.
                • Crew neckline.
                • Machine wash/tumble dry.

                ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"logan-heattec-reg-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,152],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"logan-heattec-and-reg-tee-595","links":{},"stock":{"item_id":595,"product_id":595,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS10-XS-Black","id":580,"status":1,"name":"Logan HeatTec® Tee-XS-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","url_key":"logan-heattec-reg-tee-xs-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-XS-Blue","id":581,"status":1,"name":"Logan HeatTec® Tee-XS-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","url_key":"logan-heattec-reg-tee-xs-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-XS-Red","id":582,"status":1,"name":"Logan HeatTec® Tee-XS-Red","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"58","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","url_key":"logan-heattec-reg-tee-xs-red","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-S-Black","id":583,"status":1,"name":"Logan HeatTec® Tee-S-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","url_key":"logan-heattec-reg-tee-s-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-S-Blue","id":584,"status":1,"name":"Logan HeatTec® Tee-S-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","url_key":"logan-heattec-reg-tee-s-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-S-Red","id":585,"status":1,"name":"Logan HeatTec® Tee-S-Red","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"58","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","url_key":"logan-heattec-reg-tee-s-red","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-M-Black","id":586,"status":1,"name":"Logan HeatTec® Tee-M-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","url_key":"logan-heattec-reg-tee-m-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-M-Blue","id":587,"status":1,"name":"Logan HeatTec® Tee-M-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","url_key":"logan-heattec-reg-tee-m-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-M-Red","id":588,"status":1,"name":"Logan HeatTec® Tee-M-Red","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"58","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","url_key":"logan-heattec-reg-tee-m-red","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-L-Black","id":589,"status":1,"name":"Logan HeatTec® Tee-L-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","url_key":"logan-heattec-reg-tee-l-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-L-Blue","id":590,"status":1,"name":"Logan HeatTec® Tee-L-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","url_key":"logan-heattec-reg-tee-l-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-L-Red","id":591,"status":1,"name":"Logan HeatTec® Tee-L-Red","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"58","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","url_key":"logan-heattec-reg-tee-l-red","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-XL-Black","id":592,"status":1,"name":"Logan HeatTec® Tee-XL-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","url_key":"logan-heattec-reg-tee-xl-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-XL-Blue","id":593,"status":1,"name":"Logan HeatTec® Tee-XL-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","url_key":"logan-heattec-reg-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-XL-Red","id":594,"status":1,"name":"Logan HeatTec® Tee-XL-Red","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"58","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","url_key":"logan-heattec-reg-tee-xl-red","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24}],"configurable_options":[{"id":69,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":595,"attribute_code":"color"},{"id":68,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":595,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-595.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"531","_score":1,"_source":{"id":531,"sku":"MS03","name":"Balboa Persistence Tee","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                \n

                • Crew neckline.
                • Semi-fitted.
                • Cocona® performance fabric.
                • Machine wash/dry.

                ","image":"/m/s/ms03-black_main.jpg","small_image":"/m/s/ms03-black_main.jpg","thumbnail":"/m/s/ms03-black_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"balboa-persistence-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"balboa-persistence-tee-531","links":{},"stock":{"item_id":531,"product_id":531,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS03-XS-Gray","id":516,"status":1,"name":"Balboa Persistence Tee-XS-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"52","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","url_key":"balboa-persistence-tee-xs-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-XS-Green","id":517,"status":1,"name":"Balboa Persistence Tee-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"53","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","url_key":"balboa-persistence-tee-xs-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-XS-Orange","id":518,"status":1,"name":"Balboa Persistence Tee-XS-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"56","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","url_key":"balboa-persistence-tee-xs-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-S-Gray","id":519,"status":1,"name":"Balboa Persistence Tee-S-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"52","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","url_key":"balboa-persistence-tee-s-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-S-Green","id":520,"status":1,"name":"Balboa Persistence Tee-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"53","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","url_key":"balboa-persistence-tee-s-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-S-Orange","id":521,"status":1,"name":"Balboa Persistence Tee-S-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"56","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","url_key":"balboa-persistence-tee-s-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-M-Gray","id":522,"status":1,"name":"Balboa Persistence Tee-M-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"52","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","url_key":"balboa-persistence-tee-m-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-M-Green","id":523,"status":1,"name":"Balboa Persistence Tee-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"53","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","url_key":"balboa-persistence-tee-m-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-M-Orange","id":524,"status":1,"name":"Balboa Persistence Tee-M-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"56","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","url_key":"balboa-persistence-tee-m-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-L-Gray","id":525,"status":1,"name":"Balboa Persistence Tee-L-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"52","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","url_key":"balboa-persistence-tee-l-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-L-Green","id":526,"status":1,"name":"Balboa Persistence Tee-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"53","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","url_key":"balboa-persistence-tee-l-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-L-Orange","id":527,"status":1,"name":"Balboa Persistence Tee-L-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"56","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","url_key":"balboa-persistence-tee-l-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-XL-Gray","id":528,"status":1,"name":"Balboa Persistence Tee-XL-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"52","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","url_key":"balboa-persistence-tee-xl-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-XL-Green","id":529,"status":1,"name":"Balboa Persistence Tee-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"53","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","url_key":"balboa-persistence-tee-xl-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-XL-Orange","id":530,"status":1,"name":"Balboa Persistence Tee-XL-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"56","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","url_key":"balboa-persistence-tee-xl-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":61,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":531,"attribute_code":"color"},{"id":60,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":531,"attribute_code":"size"}],"color_options":[52,53,56],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-531.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"547","_score":1,"_source":{"id":547,"sku":"MS06","name":"Zoltan Gym Tee","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                \n

                • Relaxed fit.
                • Crew neckline.
                • Machine wash/dry.

                ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"zoltan-gym-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"zoltan-gym-tee-547","links":{},"stock":{"item_id":547,"product_id":547,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS06-XS-Blue","id":532,"status":1,"name":"Zoltan Gym Tee-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","url_key":"zoltan-gym-tee-xs-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-XS-Green","id":533,"status":1,"name":"Zoltan Gym Tee-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"53","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","url_key":"zoltan-gym-tee-xs-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-XS-Yellow","id":534,"status":1,"name":"Zoltan Gym Tee-XS-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"60","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","url_key":"zoltan-gym-tee-xs-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-S-Blue","id":535,"status":1,"name":"Zoltan Gym Tee-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","url_key":"zoltan-gym-tee-s-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-S-Green","id":536,"status":1,"name":"Zoltan Gym Tee-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"53","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","url_key":"zoltan-gym-tee-s-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-S-Yellow","id":537,"status":1,"name":"Zoltan Gym Tee-S-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"60","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","url_key":"zoltan-gym-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-M-Blue","id":538,"status":1,"name":"Zoltan Gym Tee-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","url_key":"zoltan-gym-tee-m-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-M-Green","id":539,"status":1,"name":"Zoltan Gym Tee-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"53","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","url_key":"zoltan-gym-tee-m-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-M-Yellow","id":540,"status":1,"name":"Zoltan Gym Tee-M-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"60","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","url_key":"zoltan-gym-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-L-Blue","id":541,"status":1,"name":"Zoltan Gym Tee-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","url_key":"zoltan-gym-tee-l-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-L-Green","id":542,"status":1,"name":"Zoltan Gym Tee-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"53","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","url_key":"zoltan-gym-tee-l-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-L-Yellow","id":543,"status":1,"name":"Zoltan Gym Tee-L-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"60","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","url_key":"zoltan-gym-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-XL-Blue","id":544,"status":1,"name":"Zoltan Gym Tee-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","url_key":"zoltan-gym-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-XL-Green","id":545,"status":1,"name":"Zoltan Gym Tee-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"53","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","url_key":"zoltan-gym-tee-xl-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-XL-Yellow","id":546,"status":1,"name":"Zoltan Gym Tee-XL-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"60","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","url_key":"zoltan-gym-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":63,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":60,"label":"Yellow"}],"product_id":547,"attribute_code":"color"},{"id":62,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":547,"attribute_code":"size"}],"color_options":[50,53,60],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-547.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"553","_score":1,"_source":{"id":553,"sku":"MS01-S-Yellow","name":"Aero Daily Fitness Tee-S-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                \n

                Relaxed fit.
                Short-Sleeve.
                Machine wash/dry.

                ","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"aero-daily-fitness-tee-s-yellow-553","links":{},"stock":{"item_id":553,"product_id":553,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-s-yellow-553.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"560","_score":1,"_source":{"id":560,"sku":"MS01-XL-Black","name":"Aero Daily Fitness Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                \n

                Relaxed fit.
                Short-Sleeve.
                Machine wash/dry.

                ","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"aero-daily-fitness-tee-xl-black-560","links":{},"stock":{"item_id":560,"product_id":560,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xl-black-560.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"569","_score":1,"_source":{"id":569,"sku":"MS02-S-Gray","name":"Ryker LumaTech™ Tee (V-neck)-S-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                \n

                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-v-neck-s-gray-569","links":{},"stock":{"item_id":569,"product_id":569,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-s-gray-569.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"552","_score":1,"_source":{"id":552,"sku":"MS01-S-Brown","name":"Aero Daily Fitness Tee-S-Brown","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                \n

                Relaxed fit.
                Short-Sleeve.
                Machine wash/dry.

                ","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-s-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"aero-daily-fitness-tee-s-brown-552","links":{},"stock":{"item_id":552,"product_id":552,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms01-brown_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-s-brown-552.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"556","_score":1,"_source":{"id":556,"sku":"MS01-M-Yellow","name":"Aero Daily Fitness Tee-M-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                \n

                Relaxed fit.
                Short-Sleeve.
                Machine wash/dry.

                ","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"aero-daily-fitness-tee-m-yellow-556","links":{},"stock":{"item_id":556,"product_id":556,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-m-yellow-556.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"561","_score":1,"_source":{"id":561,"sku":"MS01-XL-Brown","name":"Aero Daily Fitness Tee-XL-Brown","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                \n

                Relaxed fit.
                Short-Sleeve.
                Machine wash/dry.

                ","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xl-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"aero-daily-fitness-tee-xl-brown-561","links":{},"stock":{"item_id":561,"product_id":561,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms01-brown_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xl-brown-561.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"558","_score":1,"_source":{"id":558,"sku":"MS01-L-Brown","name":"Aero Daily Fitness Tee-L-Brown","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                \n

                Relaxed fit.
                Short-Sleeve.
                Machine wash/dry.

                ","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-l-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"aero-daily-fitness-tee-l-brown-558","links":{},"stock":{"item_id":558,"product_id":558,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms01-brown_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-l-brown-558.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"557","_score":1,"_source":{"id":557,"sku":"MS01-L-Black","name":"Aero Daily Fitness Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                \n

                Relaxed fit.
                Short-Sleeve.
                Machine wash/dry.

                ","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"aero-daily-fitness-tee-l-black-557","links":{},"stock":{"item_id":557,"product_id":557,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-l-black-557.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"562","_score":1,"_source":{"id":562,"sku":"MS01-XL-Yellow","name":"Aero Daily Fitness Tee-XL-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                \n

                Relaxed fit.
                Short-Sleeve.
                Machine wash/dry.

                ","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"aero-daily-fitness-tee-xl-yellow-562","links":{},"stock":{"item_id":562,"product_id":562,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xl-yellow-562.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"572","_score":1,"_source":{"id":572,"sku":"MS02-M-Gray","name":"Ryker LumaTech™ Tee (V-neck)-M-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                \n

                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-v-neck-m-gray-572","links":{},"stock":{"item_id":572,"product_id":572,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-m-gray-572.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"570","_score":1,"_source":{"id":570,"sku":"MS02-M-Black","name":"Ryker LumaTech™ Tee (V-neck)-M-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                \n

                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-v-neck-m-black-570","links":{},"stock":{"item_id":570,"product_id":570,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-m-black-570.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"555","_score":1,"_source":{"id":555,"sku":"MS01-M-Brown","name":"Aero Daily Fitness Tee-M-Brown","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                \n

                Relaxed fit.
                Short-Sleeve.
                Machine wash/dry.

                ","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-m-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"aero-daily-fitness-tee-m-brown-555","links":{},"stock":{"item_id":555,"product_id":555,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms01-brown_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-m-brown-555.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"566","_score":1,"_source":{"id":566,"sku":"MS02-XS-Gray","name":"Ryker LumaTech™ Tee (V-neck)-XS-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                \n

                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-v-neck-xs-gray-566","links":{},"stock":{"item_id":566,"product_id":566,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xs-gray-566.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"565","_score":1,"_source":{"id":565,"sku":"MS02-XS-Blue","name":"Ryker LumaTech™ Tee (V-neck)-XS-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                \n

                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-v-neck-xs-blue-565","links":{},"stock":{"item_id":565,"product_id":565,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xs-blue-565.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"577","_score":1,"_source":{"id":577,"sku":"MS02-XL-Blue","name":"Ryker LumaTech™ Tee (V-neck)-XL-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                \n

                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-v-neck-xl-blue-577","links":{},"stock":{"item_id":577,"product_id":577,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xl-blue-577.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"574","_score":1,"_source":{"id":574,"sku":"MS02-L-Blue","name":"Ryker LumaTech™ Tee (V-neck)-L-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                \n

                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-v-neck-l-blue-574","links":{},"stock":{"item_id":574,"product_id":574,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-l-blue-574.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"568","_score":1,"_source":{"id":568,"sku":"MS02-S-Blue","name":"Ryker LumaTech™ Tee (V-neck)-S-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                \n

                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-v-neck-s-blue-568","links":{},"stock":{"item_id":568,"product_id":568,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-s-blue-568.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"584","_score":1,"_source":{"id":584,"sku":"MS10-S-Blue","name":"Logan HeatTec® Tee-S-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                \n

                • Semi-fitted.
                • Crew neckline.
                • Machine wash/tumble dry.

                ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"logan-heattec-and-reg-tee-s-blue-584","links":{},"stock":{"item_id":584,"product_id":584,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-s-blue-584.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"582","_score":1,"_source":{"id":582,"sku":"MS10-XS-Red","name":"Logan HeatTec® Tee-XS-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                \n

                • Semi-fitted.
                • Crew neckline.
                • Machine wash/tumble dry.

                ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"logan-heattec-and-reg-tee-xs-red-582","links":{},"stock":{"item_id":582,"product_id":582,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xs-red-582.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"587","_score":1,"_source":{"id":587,"sku":"MS10-M-Blue","name":"Logan HeatTec® Tee-M-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                \n

                • Semi-fitted.
                • Crew neckline.
                • Machine wash/tumble dry.

                ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"logan-heattec-and-reg-tee-m-blue-587","links":{},"stock":{"item_id":587,"product_id":587,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-m-blue-587.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"594","_score":1,"_source":{"id":594,"sku":"MS10-XL-Red","name":"Logan HeatTec® Tee-XL-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                \n

                • Semi-fitted.
                • Crew neckline.
                • Machine wash/tumble dry.

                ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"logan-heattec-and-reg-tee-xl-red-594","links":{},"stock":{"item_id":594,"product_id":594,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xl-red-594.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"612","_score":1,"_source":{"id":612,"sku":"MS08-XS-Black","name":"Strike Endurance Tee-XS-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                \n

                • Loose fit.
                • Ribbed cuffs/collar.
                • Machine wash/dry.

                ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"strike-endurance-tee-xs-black-612","links":{},"stock":{"item_id":612,"product_id":612,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-03-12 11:23:38","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xs-black-612.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"602","_score":1,"_source":{"id":602,"sku":"MS07-M-Black","name":"Deion Long-Sleeve EverCool™ Tee-M-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                \n

                • Fitted.
                • Contrast inner neck tape.
                • Machine wash/dry.

                ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"deion-long-sleeve-evercool-and-trade-tee-m-black-602","links":{},"stock":{"item_id":602,"product_id":602,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-m-black-602.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"601","_score":1,"_source":{"id":601,"sku":"MS07-S-White","name":"Deion Long-Sleeve EverCool™ Tee-S-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                \n

                • Fitted.
                • Contrast inner neck tape.
                • Machine wash/dry.

                ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"deion-long-sleeve-evercool-and-trade-tee-s-white-601","links":{},"stock":{"item_id":601,"product_id":601,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-s-white-601.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"610","_score":1,"_source":{"id":610,"sku":"MS07-XL-White","name":"Deion Long-Sleeve EverCool™ Tee-XL-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                \n

                • Fitted.
                • Contrast inner neck tape.
                • Machine wash/dry.

                ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"deion-long-sleeve-evercool-and-trade-tee-xl-white-610","links":{},"stock":{"item_id":610,"product_id":610,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xl-white-610.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"609","_score":1,"_source":{"id":609,"sku":"MS07-XL-Green","name":"Deion Long-Sleeve EverCool™ Tee-XL-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                \n

                • Fitted.
                • Contrast inner neck tape.
                • Machine wash/dry.

                ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"deion-long-sleeve-evercool-and-trade-tee-xl-green-609","links":{},"stock":{"item_id":609,"product_id":609,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xl-green-609.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"604","_score":1,"_source":{"id":604,"sku":"MS07-M-White","name":"Deion Long-Sleeve EverCool™ Tee-M-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                \n

                • Fitted.
                • Contrast inner neck tape.
                • Machine wash/dry.

                ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"deion-long-sleeve-evercool-and-trade-tee-m-white-604","links":{},"stock":{"item_id":604,"product_id":604,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-m-white-604.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"615","_score":1,"_source":{"id":615,"sku":"MS08-S-Black","name":"Strike Endurance Tee-S-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                \n

                • Loose fit.
                • Ribbed cuffs/collar.
                • Machine wash/dry.

                ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"strike-endurance-tee-s-black-615","links":{},"stock":{"item_id":615,"product_id":615,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-s-black-615.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"606","_score":1,"_source":{"id":606,"sku":"MS07-L-Green","name":"Deion Long-Sleeve EverCool™ Tee-L-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                \n

                • Fitted.
                • Contrast inner neck tape.
                • Machine wash/dry.

                ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"deion-long-sleeve-evercool-and-trade-tee-l-green-606","links":{},"stock":{"item_id":606,"product_id":606,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-l-green-606.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"605","_score":1,"_source":{"id":605,"sku":"MS07-L-Black","name":"Deion Long-Sleeve EverCool™ Tee-L-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                \n

                • Fitted.
                • Contrast inner neck tape.
                • Machine wash/dry.

                ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"deion-long-sleeve-evercool-and-trade-tee-l-black-605","links":{},"stock":{"item_id":605,"product_id":605,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-l-black-605.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"607","_score":1,"_source":{"id":607,"sku":"MS07-L-White","name":"Deion Long-Sleeve EverCool™ Tee-L-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                \n

                • Fitted.
                • Contrast inner neck tape.
                • Machine wash/dry.

                ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"deion-long-sleeve-evercool-and-trade-tee-l-white-607","links":{},"stock":{"item_id":607,"product_id":607,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-l-white-607.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"620","_score":1,"_source":{"id":620,"sku":"MS08-M-Red","name":"Strike Endurance Tee-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                \n

                • Loose fit.
                • Ribbed cuffs/collar.
                • Machine wash/dry.

                ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"strike-endurance-tee-m-red-620","links":{},"stock":{"item_id":620,"product_id":620,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-m-red-620.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"625","_score":1,"_source":{"id":625,"sku":"MS08-XL-Blue","name":"Strike Endurance Tee-XL-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                \n

                • Loose fit.
                • Ribbed cuffs/collar.
                • Machine wash/dry.

                ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"strike-endurance-tee-xl-blue-625","links":{},"stock":{"item_id":625,"product_id":625,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xl-blue-625.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"619","_score":1,"_source":{"id":619,"sku":"MS08-M-Blue","name":"Strike Endurance Tee-M-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                \n

                • Loose fit.
                • Ribbed cuffs/collar.
                • Machine wash/dry.

                ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"strike-endurance-tee-m-blue-619","links":{},"stock":{"item_id":619,"product_id":619,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-m-blue-619.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"622","_score":1,"_source":{"id":622,"sku":"MS08-L-Blue","name":"Strike Endurance Tee-L-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                \n

                • Loose fit.
                • Ribbed cuffs/collar.
                • Machine wash/dry.

                ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"strike-endurance-tee-l-blue-622","links":{},"stock":{"item_id":622,"product_id":622,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-l-blue-622.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"608","_score":1,"_source":{"id":608,"sku":"MS07-XL-Black","name":"Deion Long-Sleeve EverCool™ Tee-XL-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                \n

                • Fitted.
                • Contrast inner neck tape.
                • Machine wash/dry.

                ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"deion-long-sleeve-evercool-and-trade-tee-xl-black-608","links":{},"stock":{"item_id":608,"product_id":608,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xl-black-608.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"603","_score":1,"_source":{"id":603,"sku":"MS07-M-Green","name":"Deion Long-Sleeve EverCool™ Tee-M-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                \n

                • Fitted.
                • Contrast inner neck tape.
                • Machine wash/dry.

                ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"deion-long-sleeve-evercool-and-trade-tee-m-green-603","links":{},"stock":{"item_id":603,"product_id":603,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-m-green-603.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"626","_score":1,"_source":{"id":626,"sku":"MS08-XL-Red","name":"Strike Endurance Tee-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                \n

                • Loose fit.
                • Ribbed cuffs/collar.
                • Machine wash/dry.

                ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"strike-endurance-tee-xl-red-626","links":{},"stock":{"item_id":626,"product_id":626,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xl-red-626.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"623","_score":1,"_source":{"id":623,"sku":"MS08-L-Red","name":"Strike Endurance Tee-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                \n

                • Loose fit.
                • Ribbed cuffs/collar.
                • Machine wash/dry.

                ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"strike-endurance-tee-l-red-623","links":{},"stock":{"item_id":623,"product_id":623,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-l-red-623.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"616","_score":1,"_source":{"id":616,"sku":"MS08-S-Blue","name":"Strike Endurance Tee-S-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                \n

                • Loose fit.
                • Ribbed cuffs/collar.
                • Machine wash/dry.

                ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"strike-endurance-tee-s-blue-616","links":{},"stock":{"item_id":616,"product_id":616,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-s-blue-616.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"624","_score":1,"_source":{"id":624,"sku":"MS08-XL-Black","name":"Strike Endurance Tee-XL-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                \n

                • Loose fit.
                • Ribbed cuffs/collar.
                • Machine wash/dry.

                ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"strike-endurance-tee-xl-black-624","links":{},"stock":{"item_id":624,"product_id":624,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xl-black-624.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"614","_score":1,"_source":{"id":614,"sku":"MS08-XS-Red","name":"Strike Endurance Tee-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                \n

                • Loose fit.
                • Ribbed cuffs/collar.
                • Machine wash/dry.

                ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"strike-endurance-tee-xs-red-614","links":{},"stock":{"item_id":614,"product_id":614,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xs-red-614.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"632","_score":1,"_source":{"id":632,"sku":"MT01-S-Orange","name":"Erikssen CoolTech™ Fitness Tank-S-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                \n

                • Red performance tank.
                • Slight scoop neckline.
                • Reflectivity.
                • Machine wash/dry.

                ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erikssen-cooltech-and-trade-fitness-tank-s-orange-632","links":{},"stock":{"item_id":632,"product_id":632,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-s-orange-632.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"551","_score":1,"_source":{"id":551,"sku":"MS01-S-Black","name":"Aero Daily Fitness Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                \n

                Relaxed fit.
                Short-Sleeve.
                Machine wash/dry.

                ","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"aero-daily-fitness-tee-s-black-551","links":{},"stock":{"item_id":551,"product_id":551,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-s-black-551.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"554","_score":1,"_source":{"id":554,"sku":"MS01-M-Black","name":"Aero Daily Fitness Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                \n

                Relaxed fit.
                Short-Sleeve.
                Machine wash/dry.

                ","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"aero-daily-fitness-tee-m-black-554","links":{},"stock":{"item_id":554,"product_id":554,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-m-black-554.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"571","_score":1,"_source":{"id":571,"sku":"MS02-M-Blue","name":"Ryker LumaTech™ Tee (V-neck)-M-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                \n

                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-v-neck-m-blue-571","links":{},"stock":{"item_id":571,"product_id":571,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-m-blue-571.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"575","_score":1,"_source":{"id":575,"sku":"MS02-L-Gray","name":"Ryker LumaTech™ Tee (V-neck)-L-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                \n

                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-v-neck-l-gray-575","links":{},"stock":{"item_id":575,"product_id":575,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-l-gray-575.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"573","_score":1,"_source":{"id":573,"sku":"MS02-L-Black","name":"Ryker LumaTech™ Tee (V-neck)-L-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                \n

                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-v-neck-l-black-573","links":{},"stock":{"item_id":573,"product_id":573,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-l-black-573.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"564","_score":1,"_source":{"id":564,"sku":"MS02-XS-Black","name":"Ryker LumaTech™ Tee (V-neck)-XS-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                \n

                • Relaxed fit.
                • Short-Sleeve.
                • Machine wash/dry.

                ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-v-neck-xs-black-564","links":{},"stock":{"item_id":564,"product_id":564,"stock_id":1,"qty":63,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xs-black-564.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"635","_score":1,"_source":{"id":635,"sku":"MT01-M-Orange","name":"Erikssen CoolTech™ Fitness Tank-M-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                \n

                • Red performance tank.
                • Slight scoop neckline.
                • Reflectivity.
                • Machine wash/dry.

                ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erikssen-cooltech-and-trade-fitness-tank-m-orange-635","links":{},"tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"757","_score":1,"_source":{"id":757,"sku":"MP03-32-Green","name":"Geo Insulated Jogging Pant-32-Green","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                \n

                • Black polyester spandex pants with zipper pockets.
                • Reflective safety accents.
                • Loose fit.
                • On-seam pockets.
                • 8\" leg zips. 32\" inseam.
                • Machine wash/dry.

                ","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"geo-insulated-jogging-pant-32-green-757","links":{},"stock":{"item_id":757,"product_id":757,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-32-green-757.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"787","_score":1,"_source":{"id":787,"sku":"MP05-33-Green","name":"Kratos Gym Pant-33-Green","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                \n

                • Navy cotton straight leg pants.
                • Relaxed fit.
                • 2 side-seam pockets.
                • Internal zip pocket.
                • Drawstring waist.
                • Machine wash/dry.

                ","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"kratos-gym-pant-33-green-787","links":{},"stock":{"item_id":787,"product_id":787,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-33-green-787.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"783","_score":1,"_source":{"id":783,"sku":"MP05-32-Blue","name":"Kratos Gym Pant-32-Blue","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                \n

                • Navy cotton straight leg pants.
                • Relaxed fit.
                • 2 side-seam pockets.
                • Internal zip pocket.
                • Drawstring waist.
                • Machine wash/dry.

                ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"kratos-gym-pant-32-blue-783","links":{},"stock":{"item_id":783,"product_id":783,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-32-blue-783.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"798","_score":1,"_source":{"id":798,"sku":"MP06-33-Gray","name":"Mithra Warmup Pant-33-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                \n

                • Ankle zips.
                • Elasticized waistband with draw cord.
                • Dual hand pockets.
                • Reflective elements for low-light safety.

                ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","color":"52","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"mithra-warmup-pant-33-gray-798","links":{},"stock":{"item_id":798,"product_id":798,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-33-gray-798.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"800","_score":1,"_source":{"id":800,"sku":"MP06-33-Orange","name":"Mithra Warmup Pant-33-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                \n

                • Ankle zips.
                • Elasticized waistband with draw cord.
                • Dual hand pockets.
                • Reflective elements for low-light safety.

                ","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","color":"56","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-33-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"mithra-warmup-pant-33-orange-800","links":{},"stock":{"item_id":800,"product_id":800,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-33-orange-800.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"788","_score":1,"_source":{"id":788,"sku":"MP05-34-Black","name":"Kratos Gym Pant-34-Black","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                \n

                • Navy cotton straight leg pants.
                • Relaxed fit.
                • 2 side-seam pockets.
                • Internal zip pocket.
                • Drawstring waist.
                • Machine wash/dry.

                ","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"kratos-gym-pant-34-black-788","links":{},"stock":{"item_id":788,"product_id":788,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-34-black-788.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"779","_score":1,"_source":{"id":779,"sku":"MP04-36-Gray","name":"Supernova Sport Pant-36-Gray","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                \n

                • Dark heather gray straight leg cotton pants.
                • Relaxed fit.
                • Internal drawstring.
                • Machine wash/dry.

                ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"supernova-sport-pant-36-gray-779","links":{},"stock":{"item_id":779,"product_id":779,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-36-gray-779.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"795","_score":1,"_source":{"id":795,"sku":"MP06-32-Gray","name":"Mithra Warmup Pant-32-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                \n

                • Ankle zips.
                • Elasticized waistband with draw cord.
                • Dual hand pockets.
                • Reflective elements for low-light safety.

                ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","color":"52","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"mithra-warmup-pant-32-gray-795","links":{},"stock":{"item_id":795,"product_id":795,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-32-gray-795.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"796","_score":1,"_source":{"id":796,"sku":"MP06-32-Green","name":"Mithra Warmup Pant-32-Green","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                \n

                • Ankle zips.
                • Elasticized waistband with draw cord.
                • Dual hand pockets.
                • Reflective elements for low-light safety.

                ","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","color":"53","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"mithra-warmup-pant-32-green-796","links":{},"stock":{"item_id":796,"product_id":796,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-32-green-796.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"799","_score":1,"_source":{"id":799,"sku":"MP06-33-Green","name":"Mithra Warmup Pant-33-Green","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                \n

                • Ankle zips.
                • Elasticized waistband with draw cord.
                • Dual hand pockets.
                • Reflective elements for low-light safety.

                ","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","color":"53","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"mithra-warmup-pant-33-green-799","links":{},"stock":{"item_id":799,"product_id":799,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-33-green-799.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"790","_score":1,"_source":{"id":790,"sku":"MP05-34-Green","name":"Kratos Gym Pant-34-Green","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                \n

                • Navy cotton straight leg pants.
                • Relaxed fit.
                • 2 side-seam pockets.
                • Internal zip pocket.
                • Drawstring waist.
                • Machine wash/dry.

                ","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"kratos-gym-pant-34-green-790","links":{},"stock":{"item_id":790,"product_id":790,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-34-green-790.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"793","_score":1,"_source":{"id":793,"sku":"MP05-36-Green","name":"Kratos Gym Pant-36-Green","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                \n

                • Navy cotton straight leg pants.
                • Relaxed fit.
                • 2 side-seam pockets.
                • Internal zip pocket.
                • Drawstring waist.
                • Machine wash/dry.

                ","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"kratos-gym-pant-36-green-793","links":{},"stock":{"item_id":793,"product_id":793,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-36-green-793.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"791","_score":1,"_source":{"id":791,"sku":"MP05-36-Black","name":"Kratos Gym Pant-36-Black","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                \n

                • Navy cotton straight leg pants.
                • Relaxed fit.
                • 2 side-seam pockets.
                • Internal zip pocket.
                • Drawstring waist.
                • Machine wash/dry.

                ","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"kratos-gym-pant-36-black-791","links":{},"stock":{"item_id":791,"product_id":791,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-36-black-791.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"755","_score":1,"_source":{"id":755,"sku":"MP02","name":"Viktor LumaTech™ Pant","attribute_set_id":10,"price":46,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                \n

                • Dark gray polyester/spandex straight leg pants.
                • Elastic waistband and internal drawstring.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"viktor-lumatech-trade-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38,151],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,115],"pattern":"197","climate":[203,204,211],"slug":"viktor-lumatech-and-trade-pant-755","links":{},"stock":{"item_id":755,"product_id":755,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP02-32-Blue","id":743,"status":1,"name":"Viktor LumaTech™ Pant-32-Blue","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"176","color":"50","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","url_key":"viktor-lumatech-trade-pant-32-blue","msrp_display_actual_price_type":"0"},{"sku":"MP02-32-Gray","id":744,"status":1,"name":"Viktor LumaTech™ Pant-32-Gray","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"176","color":"52","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","url_key":"viktor-lumatech-trade-pant-32-gray","msrp_display_actual_price_type":"0"},{"sku":"MP02-32-Red","id":745,"status":1,"name":"Viktor LumaTech™ Pant-32-Red","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"176","color":"58","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","url_key":"viktor-lumatech-trade-pant-32-red","msrp_display_actual_price_type":"0"},{"sku":"MP02-33-Blue","id":746,"status":1,"name":"Viktor LumaTech™ Pant-33-Blue","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"177","color":"50","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","url_key":"viktor-lumatech-trade-pant-33-blue","msrp_display_actual_price_type":"0"},{"sku":"MP02-33-Gray","id":747,"status":1,"name":"Viktor LumaTech™ Pant-33-Gray","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"177","color":"52","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","url_key":"viktor-lumatech-trade-pant-33-gray","msrp_display_actual_price_type":"0"},{"sku":"MP02-33-Red","id":748,"status":1,"name":"Viktor LumaTech™ Pant-33-Red","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"177","color":"58","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","url_key":"viktor-lumatech-trade-pant-33-red","msrp_display_actual_price_type":"0"},{"sku":"MP02-34-Blue","id":749,"status":1,"name":"Viktor LumaTech™ Pant-34-Blue","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"178","color":"50","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","url_key":"viktor-lumatech-trade-pant-34-blue","msrp_display_actual_price_type":"0"},{"sku":"MP02-34-Gray","id":750,"status":1,"name":"Viktor LumaTech™ Pant-34-Gray","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"178","color":"52","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","url_key":"viktor-lumatech-trade-pant-34-gray","msrp_display_actual_price_type":"0"},{"sku":"MP02-34-Red","id":751,"status":1,"name":"Viktor LumaTech™ Pant-34-Red","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"178","color":"58","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","url_key":"viktor-lumatech-trade-pant-34-red","msrp_display_actual_price_type":"0","final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46},{"sku":"MP02-36-Blue","id":752,"status":1,"name":"Viktor LumaTech™ Pant-36-Blue","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"179","color":"50","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","url_key":"viktor-lumatech-trade-pant-36-blue","msrp_display_actual_price_type":"0","final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46},{"sku":"MP02-36-Gray","id":753,"status":1,"name":"Viktor LumaTech™ Pant-36-Gray","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"179","color":"52","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","url_key":"viktor-lumatech-trade-pant-36-gray","msrp_display_actual_price_type":"0","final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46},{"sku":"MP02-36-Red","id":754,"status":1,"name":"Viktor LumaTech™ Pant-36-Red","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"179","color":"58","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","url_key":"viktor-lumatech-trade-pant-36-red","msrp_display_actual_price_type":"0","final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46}],"configurable_options":[{"id":101,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"}],"product_id":755,"attribute_code":"color"},{"id":100,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":755,"attribute_code":"size"}],"color_options":[50,52,58],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-755.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"711","_score":1,"_source":{"id":711,"sku":"MT09","name":"Sinbad Fitness Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

                \n

                • Teal polyester tank.
                • Premium fit tank top.
                • Ultra lightweight.
                • Naturally odor-resistant.

                ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sinbad-fitness-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"sinbad-fitness-tank-711","links":{},"stock":{"item_id":711,"product_id":711,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT09-XS-Blue","id":706,"status":1,"name":"Sinbad Fitness Tank-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"50","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","url_key":"sinbad-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT09-S-Blue","id":707,"status":1,"name":"Sinbad Fitness Tank-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"50","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","url_key":"sinbad-fitness-tank-s-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT09-M-Blue","id":708,"status":1,"name":"Sinbad Fitness Tank-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"50","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","url_key":"sinbad-fitness-tank-m-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT09-L-Blue","id":709,"status":1,"name":"Sinbad Fitness Tank-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"50","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","url_key":"sinbad-fitness-tank-l-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT09-XL-Blue","id":710,"status":1,"name":"Sinbad Fitness Tank-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"50","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","url_key":"sinbad-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":91,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"}],"product_id":711,"attribute_code":"color"},{"id":90,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":711,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-711.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"729","_score":1,"_source":{"id":729,"sku":"MT12","name":"Cassius Sparring Tank","attribute_set_id":9,"price":18,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

                \n

                • Royal crewneck cotton tank.
                • Contrast stitching.
                • Self fabric binding at neckline.
                • Slim fit.
                • 96% Merino / 4% LYCRA®.

                ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cassius-sparring-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"cassius-sparring-tank-729","links":{},"stock":{"item_id":729,"product_id":729,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT12-XS-Blue","id":724,"status":1,"name":"Cassius Sparring Tank-XS-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"50","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","url_key":"cassius-sparring-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18},{"sku":"MT12-S-Blue","id":725,"status":1,"name":"Cassius Sparring Tank-S-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"50","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","url_key":"cassius-sparring-tank-s-blue","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18},{"sku":"MT12-M-Blue","id":726,"status":1,"name":"Cassius Sparring Tank-M-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"50","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","url_key":"cassius-sparring-tank-m-blue","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18},{"sku":"MT12-L-Blue","id":727,"status":1,"name":"Cassius Sparring Tank-L-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"50","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","url_key":"cassius-sparring-tank-l-blue","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18},{"sku":"MT12-XL-Blue","id":728,"status":1,"name":"Cassius Sparring Tank-XL-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"50","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","url_key":"cassius-sparring-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18}],"configurable_options":[{"id":97,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"}],"product_id":729,"attribute_code":"color"},{"id":96,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":729,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-729.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"705","_score":1,"_source":{"id":705,"sku":"MT08","name":"Sparta Gym Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

                \n

                • Green polyester tank.
                • Ultra lightweight.
                • Naturally odor-resistant.
                • Close-to-body athletic fit.
                • Chafe-resistant flatlock seams.

                ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sparta-gym-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"sparta-gym-tank-705","links":{},"stock":{"item_id":705,"product_id":705,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT08-XS-Green","id":700,"status":1,"name":"Sparta Gym Tank-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"53","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","url_key":"sparta-gym-tank-xs-green","msrp_display_actual_price_type":"0"},{"sku":"MT08-S-Green","id":701,"status":1,"name":"Sparta Gym Tank-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"53","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","url_key":"sparta-gym-tank-s-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT08-M-Green","id":702,"status":1,"name":"Sparta Gym Tank-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"53","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","url_key":"sparta-gym-tank-m-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT08-L-Green","id":703,"status":1,"name":"Sparta Gym Tank-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"53","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","url_key":"sparta-gym-tank-l-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT08-XL-Green","id":704,"status":1,"name":"Sparta Gym Tank-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"53","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","url_key":"sparta-gym-tank-xl-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":89,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"}],"product_id":705,"attribute_code":"color"},{"id":88,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":705,"attribute_code":"size"}],"color_options":[53],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-705.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"723","_score":1,"_source":{"id":723,"sku":"MT11","name":"Atlas Fitness Tank","attribute_set_id":9,"price":18,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

                \n

                • Teal scoop neck cotton tank.
                • Triblend, soft fabric.
                • Relaxed fit.

                ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"atlas-fitness-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"atlas-fitness-tank-723","links":{},"stock":{"item_id":723,"product_id":723,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT11-XS-Blue","id":718,"status":1,"name":"Atlas Fitness Tank-XS-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"167","color":"50","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","url_key":"atlas-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18},{"sku":"MT11-S-Blue","id":719,"status":1,"name":"Atlas Fitness Tank-S-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"168","color":"50","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","url_key":"atlas-fitness-tank-s-blue","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18},{"sku":"MT11-M-Blue","id":720,"status":1,"name":"Atlas Fitness Tank-M-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"169","color":"50","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","url_key":"atlas-fitness-tank-m-blue","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18},{"sku":"MT11-L-Blue","id":721,"status":1,"name":"Atlas Fitness Tank-L-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"170","color":"50","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","url_key":"atlas-fitness-tank-l-blue","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18},{"sku":"MT11-XL-Blue","id":722,"status":1,"name":"Atlas Fitness Tank-XL-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"171","color":"50","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","url_key":"atlas-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18}],"configurable_options":[{"id":95,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"}],"product_id":723,"attribute_code":"color"},{"id":94,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":723,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-723.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"742","_score":1,"_source":{"id":742,"sku":"MP01","name":"Caesar Warm-Up Pant","attribute_set_id":10,"price":35,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2018-02-11 12:01:51","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":23,"max_price":23,"max_regular_price":23,"minimal_regular_price":23,"special_price":null,"minimal_price":23,"regular_price":35,"description":"

                Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                \r\n

                • Light gray heather knit straight leg pants.
                • Relaxed fit.
                • Inseam: 32\".
                • Machine wash/dry.
                • CoolTech™ wicking fabric.

                ","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","category_ids":[18,32,2],"options_container":"container2","required_options":"1","has_options":"1","url_key":"caesar-warm-up-pant","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":[156,145,146,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[204,208],"slug":"caesar-warm-up-pant-742","links":{},"stock":{"item_id":742,"product_id":742,"stock_id":1,"qty":1,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"configurable_children":[{"sku":"MP01-32-Black","id":730,"status":1,"name":"Caesar Warm-Up Pant-32-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"49","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","url_key":"caesar-warm-up-pant-32-black","msrp_display_actual_price_type":"0"},{"sku":"MP01-32-Gray","id":731,"status":1,"name":"Caesar Warm-Up Pant-32-Gray","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"52","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","url_key":"caesar-warm-up-pant-32-gray","special_price":23,"special_from_date":"2018-02-11 12:06:30","msrp_display_actual_price_type":"0","final_price":23,"max_price":23,"max_regular_price":23,"minimal_regular_price":23,"minimal_price":23,"regular_price":35},{"sku":"MP01-32-Purple","id":732,"status":1,"name":"Caesar Warm-Up Pant-32-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"57","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","url_key":"caesar-warm-up-pant-32-purple","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MP01-33-Black","id":733,"status":1,"name":"Caesar Warm-Up Pant-33-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"49","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","url_key":"caesar-warm-up-pant-33-black","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MP01-33-Gray","id":734,"status":1,"name":"Caesar Warm-Up Pant-33-Gray","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"52","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","url_key":"caesar-warm-up-pant-33-gray","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MP01-33-Purple","id":735,"status":1,"name":"Caesar Warm-Up Pant-33-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"57","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","url_key":"caesar-warm-up-pant-33-purple","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MP01-34-Black","id":736,"status":1,"name":"Caesar Warm-Up Pant-34-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"49","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","url_key":"caesar-warm-up-pant-34-black","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MP01-34-Gray","id":737,"status":1,"name":"Caesar Warm-Up Pant-34-Gray","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"52","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","url_key":"caesar-warm-up-pant-34-gray","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MP01-34-Purple","id":738,"status":1,"name":"Caesar Warm-Up Pant-34-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"57","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","url_key":"caesar-warm-up-pant-34-purple","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MP01-36-Black","id":739,"status":1,"name":"Caesar Warm-Up Pant-36-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"49","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","url_key":"caesar-warm-up-pant-36-black","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MP01-36-Gray","id":740,"status":1,"name":"Caesar Warm-Up Pant-36-Gray","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"52","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","url_key":"caesar-warm-up-pant-36-gray","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MP01-36-Purple","id":741,"status":1,"name":"Caesar Warm-Up Pant-36-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"57","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","url_key":"caesar-warm-up-pant-36-purple","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35}],"configurable_options":[{"id":296,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"}],"product_id":742,"attribute_code":"color"},{"id":297,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":742,"attribute_code":"size"}],"color_options":[49,52,57],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-742.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"715","_score":1,"_source":{"id":715,"sku":"MT10-L-Yellow","name":"Tiberius Gym Tank-L-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

                \n

                • Yellow scoop neck cotton tank.
                • Comfortable, relaxed fit.
                • 55% Hemp / 45% Organic Cotton.
                • Pesticide- and herbicide-free hemp.

                ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tiberius-gym-tank-l-yellow-715","links":{},"stock":{"item_id":715,"product_id":715,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-l-yellow-715.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"714","_score":1,"_source":{"id":714,"sku":"MT10-M-Yellow","name":"Tiberius Gym Tank-M-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

                \n

                • Yellow scoop neck cotton tank.
                • Comfortable, relaxed fit.
                • 55% Hemp / 45% Organic Cotton.
                • Pesticide- and herbicide-free hemp.

                ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tiberius-gym-tank-m-yellow-714","links":{},"stock":{"item_id":714,"product_id":714,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-m-yellow-714.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"716","_score":1,"_source":{"id":716,"sku":"MT10-XL-Yellow","name":"Tiberius Gym Tank-XL-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

                \n

                • Yellow scoop neck cotton tank.
                • Comfortable, relaxed fit.
                • 55% Hemp / 45% Organic Cotton.
                • Pesticide- and herbicide-free hemp.

                ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tiberius-gym-tank-xl-yellow-716","links":{},"stock":{"item_id":716,"product_id":716,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-xl-yellow-716.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"738","_score":1,"_source":{"id":738,"sku":"MP01-34-Purple","name":"Caesar Warm-Up Pant-34-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                \n

                • Light gray heather knit straight leg pants.
                • Relaxed fit.
                • Inseam: 32\".
                • Machine wash/dry.
                • CoolTech™ wicking fabric.

                ","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","color":"57","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"caesar-warm-up-pant-34-purple-738","links":{},"stock":{"item_id":738,"product_id":738,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-34-purple-738.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"746","_score":1,"_source":{"id":746,"sku":"MP02-33-Blue","name":"Viktor LumaTech™ Pant-33-Blue","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                \n

                • Dark gray polyester/spandex straight leg pants.
                • Elastic waistband and internal drawstring.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","color":"50","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"viktor-lumatech-and-trade-pant-33-blue-746","links":{},"stock":{"item_id":746,"product_id":746,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-33-blue-746.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"745","_score":1,"_source":{"id":745,"sku":"MP02-32-Red","name":"Viktor LumaTech™ Pant-32-Red","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                \n

                • Dark gray polyester/spandex straight leg pants.
                • Elastic waistband and internal drawstring.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","color":"58","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"viktor-lumatech-and-trade-pant-32-red-745","links":{},"stock":{"item_id":745,"product_id":745,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-32-red-745.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"727","_score":1,"_source":{"id":727,"sku":"MT12-L-Blue","name":"Cassius Sparring Tank-L-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

                \n

                • Royal crewneck cotton tank.
                • Contrast stitching.
                • Self fabric binding at neckline.
                • Slim fit.
                • 96% Merino / 4% LYCRA®.

                ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"cassius-sparring-tank-l-blue-727","links":{},"stock":{"item_id":727,"product_id":727,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-l-blue-727.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"719","_score":1,"_source":{"id":719,"sku":"MT11-S-Blue","name":"Atlas Fitness Tank-S-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

                \n

                • Teal scoop neck cotton tank.
                • Triblend, soft fabric.
                • Relaxed fit.

                ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atlas-fitness-tank-s-blue-719","links":{},"stock":{"item_id":719,"product_id":719,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-s-blue-719.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"739","_score":1,"_source":{"id":739,"sku":"MP01-36-Black","name":"Caesar Warm-Up Pant-36-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                \n

                • Light gray heather knit straight leg pants.
                • Relaxed fit.
                • Inseam: 32\".
                • Machine wash/dry.
                • CoolTech™ wicking fabric.

                ","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"caesar-warm-up-pant-36-black-739","links":{},"stock":{"item_id":739,"product_id":739,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-36-black-739.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"740","_score":1,"_source":{"id":740,"sku":"MP01-36-Gray","name":"Caesar Warm-Up Pant-36-Gray","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                \n

                • Light gray heather knit straight leg pants.
                • Relaxed fit.
                • Inseam: 32\".
                • Machine wash/dry.
                • CoolTech™ wicking fabric.

                ","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"caesar-warm-up-pant-36-gray-740","links":{},"stock":{"item_id":740,"product_id":740,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-36-gray-740.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"735","_score":1,"_source":{"id":735,"sku":"MP01-33-Purple","name":"Caesar Warm-Up Pant-33-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                \n

                • Light gray heather knit straight leg pants.
                • Relaxed fit.
                • Inseam: 32\".
                • Machine wash/dry.
                • CoolTech™ wicking fabric.

                ","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","color":"57","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"caesar-warm-up-pant-33-purple-735","links":{},"stock":{"item_id":735,"product_id":735,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-33-purple-735.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"748","_score":1,"_source":{"id":748,"sku":"MP02-33-Red","name":"Viktor LumaTech™ Pant-33-Red","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                \n

                • Dark gray polyester/spandex straight leg pants.
                • Elastic waistband and internal drawstring.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","color":"58","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"viktor-lumatech-and-trade-pant-33-red-748","links":{},"stock":{"item_id":748,"product_id":748,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-33-red-748.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"750","_score":1,"_source":{"id":750,"sku":"MP02-34-Gray","name":"Viktor LumaTech™ Pant-34-Gray","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                \n

                • Dark gray polyester/spandex straight leg pants.
                • Elastic waistband and internal drawstring.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","color":"52","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"viktor-lumatech-and-trade-pant-34-gray-750","links":{},"stock":{"item_id":750,"product_id":750,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-34-gray-750.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"732","_score":1,"_source":{"id":732,"sku":"MP01-32-Purple","name":"Caesar Warm-Up Pant-32-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                \n

                • Light gray heather knit straight leg pants.
                • Relaxed fit.
                • Inseam: 32\".
                • Machine wash/dry.
                • CoolTech™ wicking fabric.

                ","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","color":"57","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"caesar-warm-up-pant-32-purple-732","links":{},"stock":{"item_id":732,"product_id":732,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-32-purple-732.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"736","_score":1,"_source":{"id":736,"sku":"MP01-34-Black","name":"Caesar Warm-Up Pant-34-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                \n

                • Light gray heather knit straight leg pants.
                • Relaxed fit.
                • Inseam: 32\".
                • Machine wash/dry.
                • CoolTech™ wicking fabric.

                ","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"caesar-warm-up-pant-34-black-736","links":{},"stock":{"item_id":736,"product_id":736,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-34-black-736.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"737","_score":1,"_source":{"id":737,"sku":"MP01-34-Gray","name":"Caesar Warm-Up Pant-34-Gray","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                \n

                • Light gray heather knit straight leg pants.
                • Relaxed fit.
                • Inseam: 32\".
                • Machine wash/dry.
                • CoolTech™ wicking fabric.

                ","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"caesar-warm-up-pant-34-gray-737","links":{},"stock":{"item_id":737,"product_id":737,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-34-gray-737.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"747","_score":1,"_source":{"id":747,"sku":"MP02-33-Gray","name":"Viktor LumaTech™ Pant-33-Gray","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                \n

                • Dark gray polyester/spandex straight leg pants.
                • Elastic waistband and internal drawstring.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","color":"52","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"viktor-lumatech-and-trade-pant-33-gray-747","links":{},"stock":{"item_id":747,"product_id":747,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-33-gray-747.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"741","_score":1,"_source":{"id":741,"sku":"MP01-36-Purple","name":"Caesar Warm-Up Pant-36-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                \n

                • Light gray heather knit straight leg pants.
                • Relaxed fit.
                • Inseam: 32\".
                • Machine wash/dry.
                • CoolTech™ wicking fabric.

                ","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","color":"57","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"caesar-warm-up-pant-36-purple-741","links":{},"stock":{"item_id":741,"product_id":741,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-36-purple-741.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"743","_score":1,"_source":{"id":743,"sku":"MP02-32-Blue","name":"Viktor LumaTech™ Pant-32-Blue","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                \n

                • Dark gray polyester/spandex straight leg pants.
                • Elastic waistband and internal drawstring.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","color":"50","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"viktor-lumatech-and-trade-pant-32-blue-743","links":{},"stock":{"item_id":743,"product_id":743,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-32-blue-743.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"744","_score":1,"_source":{"id":744,"sku":"MP02-32-Gray","name":"Viktor LumaTech™ Pant-32-Gray","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                \n

                • Dark gray polyester/spandex straight leg pants.
                • Elastic waistband and internal drawstring.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","color":"52","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"viktor-lumatech-and-trade-pant-32-gray-744","links":{},"stock":{"item_id":744,"product_id":744,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-32-gray-744.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"749","_score":1,"_source":{"id":749,"sku":"MP02-34-Blue","name":"Viktor LumaTech™ Pant-34-Blue","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                \n

                • Dark gray polyester/spandex straight leg pants.
                • Elastic waistband and internal drawstring.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","color":"50","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"viktor-lumatech-and-trade-pant-34-blue-749","links":{},"stock":{"item_id":749,"product_id":749,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-34-blue-749.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"708","_score":1,"_source":{"id":708,"sku":"MT09-M-Blue","name":"Sinbad Fitness Tank-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

                \n

                • Teal polyester tank.
                • Premium fit tank top.
                • Ultra lightweight.
                • Naturally odor-resistant.

                ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"sinbad-fitness-tank-m-blue-708","links":{},"stock":{"item_id":708,"product_id":708,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-m-blue-708.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"707","_score":1,"_source":{"id":707,"sku":"MT09-S-Blue","name":"Sinbad Fitness Tank-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

                \n

                • Teal polyester tank.
                • Premium fit tank top.
                • Ultra lightweight.
                • Naturally odor-resistant.

                ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"sinbad-fitness-tank-s-blue-707","links":{},"stock":{"item_id":707,"product_id":707,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-s-blue-707.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"703","_score":1,"_source":{"id":703,"sku":"MT08-L-Green","name":"Sparta Gym Tank-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

                \n

                • Green polyester tank.
                • Ultra lightweight.
                • Naturally odor-resistant.
                • Close-to-body athletic fit.
                • Chafe-resistant flatlock seams.

                ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"sparta-gym-tank-l-green-703","links":{},"stock":{"item_id":703,"product_id":703,"stock_id":1,"qty":77,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-l-green-703.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"701","_score":1,"_source":{"id":701,"sku":"MT08-S-Green","name":"Sparta Gym Tank-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

                \n

                • Green polyester tank.
                • Ultra lightweight.
                • Naturally odor-resistant.
                • Close-to-body athletic fit.
                • Chafe-resistant flatlock seams.

                ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"sparta-gym-tank-s-green-701","links":{},"stock":{"item_id":701,"product_id":701,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-s-green-701.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"718","_score":1,"_source":{"id":718,"sku":"MT11-XS-Blue","name":"Atlas Fitness Tank-XS-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

                \n

                • Teal scoop neck cotton tank.
                • Triblend, soft fabric.
                • Relaxed fit.

                ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atlas-fitness-tank-xs-blue-718","links":{},"stock":{"item_id":718,"product_id":718,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-xs-blue-718.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"704","_score":1,"_source":{"id":704,"sku":"MT08-XL-Green","name":"Sparta Gym Tank-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

                \n

                • Green polyester tank.
                • Ultra lightweight.
                • Naturally odor-resistant.
                • Close-to-body athletic fit.
                • Chafe-resistant flatlock seams.

                ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"sparta-gym-tank-xl-green-704","links":{},"stock":{"item_id":704,"product_id":704,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-xl-green-704.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"713","_score":1,"_source":{"id":713,"sku":"MT10-S-Yellow","name":"Tiberius Gym Tank-S-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

                \n

                • Yellow scoop neck cotton tank.
                • Comfortable, relaxed fit.
                • 55% Hemp / 45% Organic Cotton.
                • Pesticide- and herbicide-free hemp.

                ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tiberius-gym-tank-s-yellow-713","links":{},"stock":{"item_id":713,"product_id":713,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-s-yellow-713.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"712","_score":1,"_source":{"id":712,"sku":"MT10-XS-Yellow","name":"Tiberius Gym Tank-XS-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

                \n

                • Yellow scoop neck cotton tank.
                • Comfortable, relaxed fit.
                • 55% Hemp / 45% Organic Cotton.
                • Pesticide- and herbicide-free hemp.

                ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tiberius-gym-tank-xs-yellow-712","links":{},"stock":{"item_id":712,"product_id":712,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-xs-yellow-712.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"702","_score":1,"_source":{"id":702,"sku":"MT08-M-Green","name":"Sparta Gym Tank-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

                \n

                • Green polyester tank.
                • Ultra lightweight.
                • Naturally odor-resistant.
                • Close-to-body athletic fit.
                • Chafe-resistant flatlock seams.

                ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"sparta-gym-tank-m-green-702","links":{},"stock":{"item_id":702,"product_id":702,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-m-green-702.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"710","_score":1,"_source":{"id":710,"sku":"MT09-XL-Blue","name":"Sinbad Fitness Tank-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

                \n

                • Teal polyester tank.
                • Premium fit tank top.
                • Ultra lightweight.
                • Naturally odor-resistant.

                ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"sinbad-fitness-tank-xl-blue-710","links":{},"stock":{"item_id":710,"product_id":710,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-xl-blue-710.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"722","_score":1,"_source":{"id":722,"sku":"MT11-XL-Blue","name":"Atlas Fitness Tank-XL-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

                \n

                • Teal scoop neck cotton tank.
                • Triblend, soft fabric.
                • Relaxed fit.

                ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atlas-fitness-tank-xl-blue-722","links":{},"stock":{"item_id":722,"product_id":722,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-xl-blue-722.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"706","_score":1,"_source":{"id":706,"sku":"MT09-XS-Blue","name":"Sinbad Fitness Tank-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

                \n

                • Teal polyester tank.
                • Premium fit tank top.
                • Ultra lightweight.
                • Naturally odor-resistant.

                ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"sinbad-fitness-tank-xs-blue-706","links":{},"stock":{"item_id":706,"product_id":706,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-xs-blue-706.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"720","_score":1,"_source":{"id":720,"sku":"MT11-M-Blue","name":"Atlas Fitness Tank-M-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

                \n

                • Teal scoop neck cotton tank.
                • Triblend, soft fabric.
                • Relaxed fit.

                ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atlas-fitness-tank-m-blue-720","links":{},"stock":{"item_id":720,"product_id":720,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-m-blue-720.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"709","_score":1,"_source":{"id":709,"sku":"MT09-L-Blue","name":"Sinbad Fitness Tank-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

                \n

                • Teal polyester tank.
                • Premium fit tank top.
                • Ultra lightweight.
                • Naturally odor-resistant.

                ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"sinbad-fitness-tank-l-blue-709","links":{},"stock":{"item_id":709,"product_id":709,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-l-blue-709.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"724","_score":1,"_source":{"id":724,"sku":"MT12-XS-Blue","name":"Cassius Sparring Tank-XS-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

                \n

                • Royal crewneck cotton tank.
                • Contrast stitching.
                • Self fabric binding at neckline.
                • Slim fit.
                • 96% Merino / 4% LYCRA®.

                ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"cassius-sparring-tank-xs-blue-724","links":{},"stock":{"item_id":724,"product_id":724,"stock_id":1,"qty":35,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-xs-blue-724.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"730","_score":1,"_source":{"id":730,"sku":"MP01-32-Black","name":"Caesar Warm-Up Pant-32-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2018-02-11 12:04:31","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                \r\n

                • Light gray heather knit straight leg pants.
                • Relaxed fit.
                • Inseam: 32\".
                • Machine wash/dry.
                • CoolTech™ wicking fabric.

                ","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-32-black","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"176","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"caesar-warm-up-pant-32-black-730","links":{},"stock":{"item_id":730,"product_id":730,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-02-21 16:07:12","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/m/p/mp01-black_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-32-black-730.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"733","_score":1,"_source":{"id":733,"sku":"MP01-33-Black","name":"Caesar Warm-Up Pant-33-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                \n

                • Light gray heather knit straight leg pants.
                • Relaxed fit.
                • Inseam: 32\".
                • Machine wash/dry.
                • CoolTech™ wicking fabric.

                ","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"caesar-warm-up-pant-33-black-733","links":{},"stock":{"item_id":733,"product_id":733,"stock_id":1,"qty":62,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-33-black-733.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"721","_score":1,"_source":{"id":721,"sku":"MT11-L-Blue","name":"Atlas Fitness Tank-L-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

                \n

                • Teal scoop neck cotton tank.
                • Triblend, soft fabric.
                • Relaxed fit.

                ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atlas-fitness-tank-l-blue-721","links":{},"stock":{"item_id":721,"product_id":721,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-l-blue-721.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"773","_score":1,"_source":{"id":773,"sku":"MP04-33-Gray","name":"Supernova Sport Pant-33-Gray","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                \n

                • Dark heather gray straight leg cotton pants.
                • Relaxed fit.
                • Internal drawstring.
                • Machine wash/dry.

                ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"supernova-sport-pant-33-gray-773","links":{},"stock":{"item_id":773,"product_id":773,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-33-gray-773.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"772","_score":1,"_source":{"id":772,"sku":"MP04-33-Black","name":"Supernova Sport Pant-33-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                \n

                • Dark heather gray straight leg cotton pants.
                • Relaxed fit.
                • Internal drawstring.
                • Machine wash/dry.

                ","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"supernova-sport-pant-33-black-772","links":{},"stock":{"item_id":772,"product_id":772,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-33-black-772.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"771","_score":1,"_source":{"id":771,"sku":"MP04-32-Green","name":"Supernova Sport Pant-32-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                \n

                • Dark heather gray straight leg cotton pants.
                • Relaxed fit.
                • Internal drawstring.
                • Machine wash/dry.

                ","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","color":"53","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"supernova-sport-pant-32-green-771","links":{},"stock":{"item_id":771,"product_id":771,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-32-green-771.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"766","_score":1,"_source":{"id":766,"sku":"MP03-36-Green","name":"Geo Insulated Jogging Pant-36-Green","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                \n

                • Black polyester spandex pants with zipper pockets.
                • Reflective safety accents.
                • Loose fit.
                • On-seam pockets.
                • 8\" leg zips. 32\" inseam.
                • Machine wash/dry.

                ","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"geo-insulated-jogging-pant-36-green-766","links":{},"stock":{"item_id":766,"product_id":766,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-36-green-766.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"774","_score":1,"_source":{"id":774,"sku":"MP04-33-Green","name":"Supernova Sport Pant-33-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                \n

                • Dark heather gray straight leg cotton pants.
                • Relaxed fit.
                • Internal drawstring.
                • Machine wash/dry.

                ","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","color":"53","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"supernova-sport-pant-33-green-774","links":{},"stock":{"item_id":774,"product_id":774,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-33-green-774.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"754","_score":1,"_source":{"id":754,"sku":"MP02-36-Red","name":"Viktor LumaTech™ Pant-36-Red","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                \n

                • Dark gray polyester/spandex straight leg pants.
                • Elastic waistband and internal drawstring.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","color":"58","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"viktor-lumatech-and-trade-pant-36-red-754","links":{},"stock":{"item_id":754,"product_id":754,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-36-red-754.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"769","_score":1,"_source":{"id":769,"sku":"MP04-32-Black","name":"Supernova Sport Pant-32-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                \n

                • Dark heather gray straight leg cotton pants.
                • Relaxed fit.
                • Internal drawstring.
                • Machine wash/dry.

                ","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"supernova-sport-pant-32-black-769","links":{},"stock":{"item_id":769,"product_id":769,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-32-black-769.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"767","_score":1,"_source":{"id":767,"sku":"MP03-36-Red","name":"Geo Insulated Jogging Pant-36-Red","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                \n

                • Black polyester spandex pants with zipper pockets.
                • Reflective safety accents.
                • Loose fit.
                • On-seam pockets.
                • 8\" leg zips. 32\" inseam.
                • Machine wash/dry.

                ","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"geo-insulated-jogging-pant-36-red-767","links":{},"stock":{"item_id":767,"product_id":767,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-36-red-767.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"753","_score":1,"_source":{"id":753,"sku":"MP02-36-Gray","name":"Viktor LumaTech™ Pant-36-Gray","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                \n

                • Dark gray polyester/spandex straight leg pants.
                • Elastic waistband and internal drawstring.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","color":"52","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"viktor-lumatech-and-trade-pant-36-gray-753","links":{},"stock":{"item_id":753,"product_id":753,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-36-gray-753.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"770","_score":1,"_source":{"id":770,"sku":"MP04-32-Gray","name":"Supernova Sport Pant-32-Gray","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                \n

                • Dark heather gray straight leg cotton pants.
                • Relaxed fit.
                • Internal drawstring.
                • Machine wash/dry.

                ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"supernova-sport-pant-32-gray-770","links":{},"stock":{"item_id":770,"product_id":770,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-32-gray-770.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"764","_score":1,"_source":{"id":764,"sku":"MP03-34-Red","name":"Geo Insulated Jogging Pant-34-Red","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                \n

                • Black polyester spandex pants with zipper pockets.
                • Reflective safety accents.
                • Loose fit.
                • On-seam pockets.
                • 8\" leg zips. 32\" inseam.
                • Machine wash/dry.

                ","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"geo-insulated-jogging-pant-34-red-764","links":{},"stock":{"item_id":764,"product_id":764,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-34-red-764.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"775","_score":1,"_source":{"id":775,"sku":"MP04-34-Black","name":"Supernova Sport Pant-34-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                \n

                • Dark heather gray straight leg cotton pants.
                • Relaxed fit.
                • Internal drawstring.
                • Machine wash/dry.

                ","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"supernova-sport-pant-34-black-775","links":{},"stock":{"item_id":775,"product_id":775,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-34-black-775.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"776","_score":1,"_source":{"id":776,"sku":"MP04-34-Gray","name":"Supernova Sport Pant-34-Gray","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                \n

                • Dark heather gray straight leg cotton pants.
                • Relaxed fit.
                • Internal drawstring.
                • Machine wash/dry.

                ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"supernova-sport-pant-34-gray-776","links":{},"stock":{"item_id":776,"product_id":776,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-34-gray-776.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"792","_score":1,"_source":{"id":792,"sku":"MP05-36-Blue","name":"Kratos Gym Pant-36-Blue","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                \n

                • Navy cotton straight leg pants.
                • Relaxed fit.
                • 2 side-seam pockets.
                • Internal zip pocket.
                • Drawstring waist.
                • Machine wash/dry.

                ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"kratos-gym-pant-36-blue-792","links":{},"stock":{"item_id":792,"product_id":792,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-36-blue-792.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"785","_score":1,"_source":{"id":785,"sku":"MP05-33-Black","name":"Kratos Gym Pant-33-Black","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                \n

                • Navy cotton straight leg pants.
                • Relaxed fit.
                • 2 side-seam pockets.
                • Internal zip pocket.
                • Drawstring waist.
                • Machine wash/dry.

                ","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"kratos-gym-pant-33-black-785","links":{},"stock":{"item_id":785,"product_id":785,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-33-black-785.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"786","_score":1,"_source":{"id":786,"sku":"MP05-33-Blue","name":"Kratos Gym Pant-33-Blue","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                \n

                • Navy cotton straight leg pants.
                • Relaxed fit.
                • 2 side-seam pockets.
                • Internal zip pocket.
                • Drawstring waist.
                • Machine wash/dry.

                ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"kratos-gym-pant-33-blue-786","links":{},"stock":{"item_id":786,"product_id":786,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-33-blue-786.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"761","_score":1,"_source":{"id":761,"sku":"MP03-33-Red","name":"Geo Insulated Jogging Pant-33-Red","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                \n

                • Black polyester spandex pants with zipper pockets.
                • Reflective safety accents.
                • Loose fit.
                • On-seam pockets.
                • 8\" leg zips. 32\" inseam.
                • Machine wash/dry.

                ","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"geo-insulated-jogging-pant-33-red-761","links":{},"stock":{"item_id":761,"product_id":761,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-33-red-761.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"717","_score":1,"_source":{"id":717,"sku":"MT10","name":"Tiberius Gym Tank","attribute_set_id":9,"price":18,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

                \n

                • Yellow scoop neck cotton tank.
                • Comfortable, relaxed fit.
                • 55% Hemp / 45% Organic Cotton.
                • Pesticide- and herbicide-free hemp.

                ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"tiberius-gym-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,153,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"tiberius-gym-tank-717","links":{},"stock":{"item_id":717,"product_id":717,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT10-XS-Yellow","id":712,"status":1,"name":"Tiberius Gym Tank-XS-Yellow","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"60","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","url_key":"tiberius-gym-tank-xs-yellow","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18},{"sku":"MT10-S-Yellow","id":713,"status":1,"name":"Tiberius Gym Tank-S-Yellow","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"60","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","url_key":"tiberius-gym-tank-s-yellow","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18},{"sku":"MT10-M-Yellow","id":714,"status":1,"name":"Tiberius Gym Tank-M-Yellow","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"60","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","url_key":"tiberius-gym-tank-m-yellow","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18},{"sku":"MT10-L-Yellow","id":715,"status":1,"name":"Tiberius Gym Tank-L-Yellow","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"60","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","url_key":"tiberius-gym-tank-l-yellow","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18},{"sku":"MT10-XL-Yellow","id":716,"status":1,"name":"Tiberius Gym Tank-XL-Yellow","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"60","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","url_key":"tiberius-gym-tank-xl-yellow","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18}],"configurable_options":[{"id":93,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":60,"label":"Yellow"}],"product_id":717,"attribute_code":"color"},{"id":92,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":717,"attribute_code":"size"}],"color_options":[60],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-717.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"777","_score":1,"_source":{"id":777,"sku":"MP04-34-Green","name":"Supernova Sport Pant-34-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                \n

                • Dark heather gray straight leg cotton pants.
                • Relaxed fit.
                • Internal drawstring.
                • Machine wash/dry.

                ","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","color":"53","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"supernova-sport-pant-34-green-777","links":{},"stock":{"item_id":777,"product_id":777,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-34-green-777.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"782","_score":1,"_source":{"id":782,"sku":"MP05-32-Black","name":"Kratos Gym Pant-32-Black","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                \n

                • Navy cotton straight leg pants.
                • Relaxed fit.
                • 2 side-seam pockets.
                • Internal zip pocket.
                • Drawstring waist.
                • Machine wash/dry.

                ","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"kratos-gym-pant-32-black-782","links":{},"stock":{"item_id":782,"product_id":782,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-32-black-782.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"762","_score":1,"_source":{"id":762,"sku":"MP03-34-Blue","name":"Geo Insulated Jogging Pant-34-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                \n

                • Black polyester spandex pants with zipper pockets.
                • Reflective safety accents.
                • Loose fit.
                • On-seam pockets.
                • 8\" leg zips. 32\" inseam.
                • Machine wash/dry.

                ","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"geo-insulated-jogging-pant-34-blue-762","links":{},"stock":{"item_id":762,"product_id":762,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-34-blue-762.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"784","_score":1,"_source":{"id":784,"sku":"MP05-32-Green","name":"Kratos Gym Pant-32-Green","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                \n

                • Navy cotton straight leg pants.
                • Relaxed fit.
                • 2 side-seam pockets.
                • Internal zip pocket.
                • Drawstring waist.
                • Machine wash/dry.

                ","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"kratos-gym-pant-32-green-784","links":{},"stock":{"item_id":784,"product_id":784,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-32-green-784.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"789","_score":1,"_source":{"id":789,"sku":"MP05-34-Blue","name":"Kratos Gym Pant-34-Blue","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                \n

                • Navy cotton straight leg pants.
                • Relaxed fit.
                • 2 side-seam pockets.
                • Internal zip pocket.
                • Drawstring waist.
                • Machine wash/dry.

                ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"kratos-gym-pant-34-blue-789","links":{},"stock":{"item_id":789,"product_id":789,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-34-blue-789.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"765","_score":1,"_source":{"id":765,"sku":"MP03-36-Blue","name":"Geo Insulated Jogging Pant-36-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                \n

                • Black polyester spandex pants with zipper pockets.
                • Reflective safety accents.
                • Loose fit.
                • On-seam pockets.
                • 8\" leg zips. 32\" inseam.
                • Machine wash/dry.

                ","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"geo-insulated-jogging-pant-36-blue-765","links":{},"stock":{"item_id":765,"product_id":765,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-36-blue-765.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"778","_score":1,"_source":{"id":778,"sku":"MP04-36-Black","name":"Supernova Sport Pant-36-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                \n

                • Dark heather gray straight leg cotton pants.
                • Relaxed fit.
                • Internal drawstring.
                • Machine wash/dry.

                ","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"supernova-sport-pant-36-black-778","links":{},"stock":{"item_id":778,"product_id":778,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-36-black-778.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"780","_score":1,"_source":{"id":780,"sku":"MP04-36-Green","name":"Supernova Sport Pant-36-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                \n

                • Dark heather gray straight leg cotton pants.
                • Relaxed fit.
                • Internal drawstring.
                • Machine wash/dry.

                ","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","color":"53","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"supernova-sport-pant-36-green-780","links":{},"stock":{"item_id":780,"product_id":780,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-36-green-780.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"797","_score":1,"_source":{"id":797,"sku":"MP06-32-Orange","name":"Mithra Warmup Pant-32-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                \n

                • Ankle zips.
                • Elasticized waistband with draw cord.
                • Dual hand pockets.
                • Reflective elements for low-light safety.

                ","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","color":"56","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-32-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"mithra-warmup-pant-32-orange-797","links":{},"stock":{"item_id":797,"product_id":797,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-32-orange-797.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"734","_score":1,"_source":{"id":734,"sku":"MP01-33-Gray","name":"Caesar Warm-Up Pant-33-Gray","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                \n

                • Light gray heather knit straight leg pants.
                • Relaxed fit.
                • Inseam: 32\".
                • Machine wash/dry.
                • CoolTech™ wicking fabric.

                ","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"caesar-warm-up-pant-33-gray-734","links":{},"stock":{"item_id":734,"product_id":734,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-33-gray-734.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"731","_score":1,"_source":{"id":731,"sku":"MP01-32-Gray","name":"Caesar Warm-Up Pant-32-Gray","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2018-02-11 12:06:30","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":23,"max_price":23,"max_regular_price":23,"minimal_regular_price":23,"special_price":"23.0000","minimal_price":23,"regular_price":35,"description":"

                Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                \r\n

                • Light gray heather knit straight leg pants.
                • Relaxed fit.
                • Inseam: 32\".
                • Machine wash/dry.
                • CoolTech™ wicking fabric.

                ","special_from_date":"2018-02-11 12:06:30","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-32-gray","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"176","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"caesar-warm-up-pant-32-gray-731","links":{},"stock":{"item_id":731,"product_id":731,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-32-gray-731.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"725","_score":1,"_source":{"id":725,"sku":"MT12-S-Blue","name":"Cassius Sparring Tank-S-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

                \n

                • Royal crewneck cotton tank.
                • Contrast stitching.
                • Self fabric binding at neckline.
                • Slim fit.
                • 96% Merino / 4% LYCRA®.

                ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"cassius-sparring-tank-s-blue-725","links":{},"stock":{"item_id":725,"product_id":725,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-s-blue-725.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"726","_score":1,"_source":{"id":726,"sku":"MT12-M-Blue","name":"Cassius Sparring Tank-M-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

                \n

                • Royal crewneck cotton tank.
                • Contrast stitching.
                • Self fabric binding at neckline.
                • Slim fit.
                • 96% Merino / 4% LYCRA®.

                ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"cassius-sparring-tank-m-blue-726","links":{},"stock":{"item_id":726,"product_id":726,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-m-blue-726.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"728","_score":1,"_source":{"id":728,"sku":"MT12-XL-Blue","name":"Cassius Sparring Tank-XL-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

                \n

                • Royal crewneck cotton tank.
                • Contrast stitching.
                • Self fabric binding at neckline.
                • Slim fit.
                • 96% Merino / 4% LYCRA®.

                ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"cassius-sparring-tank-xl-blue-728","links":{},"stock":{"item_id":728,"product_id":728,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-xl-blue-728.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"763","_score":1,"_source":{"id":763,"sku":"MP03-34-Green","name":"Geo Insulated Jogging Pant-34-Green","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                \n

                • Black polyester spandex pants with zipper pockets.
                • Reflective safety accents.
                • Loose fit.
                • On-seam pockets.
                • 8\" leg zips. 32\" inseam.
                • Machine wash/dry.

                ","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"geo-insulated-jogging-pant-34-green-763","links":{},"stock":{"item_id":763,"product_id":763,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-34-green-763.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"752","_score":1,"_source":{"id":752,"sku":"MP02-36-Blue","name":"Viktor LumaTech™ Pant-36-Blue","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                \n

                • Dark gray polyester/spandex straight leg pants.
                • Elastic waistband and internal drawstring.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","color":"50","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"viktor-lumatech-and-trade-pant-36-blue-752","links":{},"stock":{"item_id":752,"product_id":752,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-36-blue-752.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"759","_score":1,"_source":{"id":759,"sku":"MP03-33-Blue","name":"Geo Insulated Jogging Pant-33-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                \n

                • Black polyester spandex pants with zipper pockets.
                • Reflective safety accents.
                • Loose fit.
                • On-seam pockets.
                • 8\" leg zips. 32\" inseam.
                • Machine wash/dry.

                ","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"geo-insulated-jogging-pant-33-blue-759","links":{},"stock":{"item_id":759,"product_id":759,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-33-blue-759.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"751","_score":1,"_source":{"id":751,"sku":"MP02-34-Red","name":"Viktor LumaTech™ Pant-34-Red","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                \n

                • Dark gray polyester/spandex straight leg pants.
                • Elastic waistband and internal drawstring.
                • Relaxed fit.
                • Machine wash/dry.

                ","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","color":"58","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"viktor-lumatech-and-trade-pant-34-red-751","links":{},"stock":{"item_id":751,"product_id":751,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-34-red-751.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"760","_score":1,"_source":{"id":760,"sku":"MP03-33-Green","name":"Geo Insulated Jogging Pant-33-Green","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                \n

                • Black polyester spandex pants with zipper pockets.
                • Reflective safety accents.
                • Loose fit.
                • On-seam pockets.
                • 8\" leg zips. 32\" inseam.
                • Machine wash/dry.

                ","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"geo-insulated-jogging-pant-33-green-760","links":{},"stock":{"item_id":760,"product_id":760,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-33-green-760.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"756","_score":1,"_source":{"id":756,"sku":"MP03-32-Blue","name":"Geo Insulated Jogging Pant-32-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                \n

                • Black polyester spandex pants with zipper pockets.
                • Reflective safety accents.
                • Loose fit.
                • On-seam pockets.
                • 8\" leg zips. 32\" inseam.
                • Machine wash/dry.

                ","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"geo-insulated-jogging-pant-32-blue-756","links":{},"stock":{"item_id":756,"product_id":756,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-32-blue-756.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"758","_score":1,"_source":{"id":758,"sku":"MP03-32-Red","name":"Geo Insulated Jogging Pant-32-Red","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                \n

                • Black polyester spandex pants with zipper pockets.
                • Reflective safety accents.
                • Loose fit.
                • On-seam pockets.
                • 8\" leg zips. 32\" inseam.
                • Machine wash/dry.

                ","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"geo-insulated-jogging-pant-32-red-758","links":{},"stock":{"item_id":758,"product_id":758,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-32-red-758.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"922","_score":1,"_source":{"id":922,"sku":"MSH04-33-Yellow","name":"Torque Power Short-33-Yellow","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                \n

                • Light gray shorts.
                • Fitted design.
                • Elastic waistband.
                • Flat-seam construction.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","color":"60","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-33-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"torque-power-short-33-yellow-922","links":{},"stock":{"item_id":922,"product_id":922,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-33-yellow-922.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"950","_score":1,"_source":{"id":950,"sku":"MSH06-34-Gray","name":"Lono Yoga Short-34-Gray","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                \n

                • Dark gray shorts with mesh accents.
                • Ultra flexible four-way stretch.
                • Flatlock seams and waistband.
                • Two pockets, phony fly.
                • Nylon/Lycra outer, Polyester/Lycra inner.

                ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","color":"52","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"lono-yoga-short-34-gray-950","links":{},"stock":{"item_id":950,"product_id":950,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-34-gray-950.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"920","_score":1,"_source":{"id":920,"sku":"MSH04-33-Gray","name":"Torque Power Short-33-Gray","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                \n

                • Light gray shorts.
                • Fitted design.
                • Elastic waistband.
                • Flat-seam construction.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","color":"52","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"torque-power-short-33-gray-920","links":{},"stock":{"item_id":920,"product_id":920,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-33-gray-920.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"940","_score":1,"_source":{"id":940,"sku":"MSH05-36-Blue","name":"Hawkeye Yoga Short-36-Blue","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                \n

                • Dark gray shorts with red accents.
                • 92% Organic Cotton 8% Spandex.
                • Breathable stretch organic cotton.
                • Medium=8.0\" (21.0cm) inseam.

                ","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"hawkeye-yoga-short-36-blue-940","links":{},"stock":{"item_id":940,"product_id":940,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-36-blue-940.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"926","_score":1,"_source":{"id":926,"sku":"MSH04-36-Gray","name":"Torque Power Short-36-Gray","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                \n

                • Light gray shorts.
                • Fitted design.
                • Elastic waistband.
                • Flat-seam construction.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","color":"52","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"torque-power-short-36-gray-926","links":{},"stock":{"item_id":926,"product_id":926,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-36-gray-926.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"917","_score":1,"_source":{"id":917,"sku":"MSH04-32-Gray","name":"Torque Power Short-32-Gray","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                \n

                • Light gray shorts.
                • Fitted design.
                • Elastic waistband.
                • Flat-seam construction.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","color":"52","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"torque-power-short-32-gray-917","links":{},"stock":{"item_id":917,"product_id":917,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-32-gray-917.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"936","_score":1,"_source":{"id":936,"sku":"MSH05-34-Black","name":"Hawkeye Yoga Short-34-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                \n

                • Dark gray shorts with red accents.
                • 92% Organic Cotton 8% Spandex.
                • Breathable stretch organic cotton.
                • Medium=8.0\" (21.0cm) inseam.

                ","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"hawkeye-yoga-short-34-black-936","links":{},"stock":{"item_id":936,"product_id":936,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-34-black-936.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"931","_score":1,"_source":{"id":931,"sku":"MSH05-32-Blue","name":"Hawkeye Yoga Short-32-Blue","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                \n

                • Dark gray shorts with red accents.
                • 92% Organic Cotton 8% Spandex.
                • Breathable stretch organic cotton.
                • Medium=8.0\" (21.0cm) inseam.

                ","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"hawkeye-yoga-short-32-blue-931","links":{},"stock":{"item_id":931,"product_id":931,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-32-blue-931.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"930","_score":1,"_source":{"id":930,"sku":"MSH05-32-Black","name":"Hawkeye Yoga Short-32-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                \n

                • Dark gray shorts with red accents.
                • 92% Organic Cotton 8% Spandex.
                • Breathable stretch organic cotton.
                • Medium=8.0\" (21.0cm) inseam.

                ","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"hawkeye-yoga-short-32-black-930","links":{},"stock":{"item_id":930,"product_id":930,"stock_id":1,"qty":70,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-32-black-930.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"928","_score":1,"_source":{"id":928,"sku":"MSH04-36-Yellow","name":"Torque Power Short-36-Yellow","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                \n

                • Light gray shorts.
                • Fitted design.
                • Elastic waistband.
                • Flat-seam construction.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","color":"60","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-36-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"torque-power-short-36-yellow-928","links":{},"stock":{"item_id":928,"product_id":928,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-36-yellow-928.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"909","_score":1,"_source":{"id":909,"sku":"MSH03-33-Green","name":"Meteor Workout Short-33-Green","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                \n

                • Royal blue shorts with light blue accents.
                • Interior drawstring waistband.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"meteor-workout-short-33-green-909","links":{},"stock":{"item_id":909,"product_id":909,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-33-green-909.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"918","_score":1,"_source":{"id":918,"sku":"MSH04-32-Purple","name":"Torque Power Short-32-Purple","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                \n

                • Light gray shorts.
                • Fitted design.
                • Elastic waistband.
                • Flat-seam construction.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","color":"57","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"torque-power-short-32-purple-918","links":{},"stock":{"item_id":918,"product_id":918,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-32-purple-918.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"945","_score":1,"_source":{"id":945,"sku":"MSH06-32-Red","name":"Lono Yoga Short-32-Red","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                \n

                • Dark gray shorts with mesh accents.
                • Ultra flexible four-way stretch.
                • Flatlock seams and waistband.
                • Two pockets, phony fly.
                • Nylon/Lycra outer, Polyester/Lycra inner.

                ","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","color":"58","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"lono-yoga-short-32-red-945","links":{},"stock":{"item_id":945,"product_id":945,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-32-red-945.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"937","_score":1,"_source":{"id":937,"sku":"MSH05-34-Blue","name":"Hawkeye Yoga Short-34-Blue","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                \n

                • Dark gray shorts with red accents.
                • 92% Organic Cotton 8% Spandex.
                • Breathable stretch organic cotton.
                • Medium=8.0\" (21.0cm) inseam.

                ","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"hawkeye-yoga-short-34-blue-937","links":{},"stock":{"item_id":937,"product_id":937,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-34-blue-937.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"935","_score":1,"_source":{"id":935,"sku":"MSH05-33-Gray","name":"Hawkeye Yoga Short-33-Gray","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                \n

                • Dark gray shorts with red accents.
                • 92% Organic Cotton 8% Spandex.
                • Breathable stretch organic cotton.
                • Medium=8.0\" (21.0cm) inseam.

                ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","color":"52","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"hawkeye-yoga-short-33-gray-935","links":{},"stock":{"item_id":935,"product_id":935,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-33-gray-935.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"939","_score":1,"_source":{"id":939,"sku":"MSH05-36-Black","name":"Hawkeye Yoga Short-36-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                \n

                • Dark gray shorts with red accents.
                • 92% Organic Cotton 8% Spandex.
                • Breathable stretch organic cotton.
                • Medium=8.0\" (21.0cm) inseam.

                ","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"hawkeye-yoga-short-36-black-939","links":{},"stock":{"item_id":939,"product_id":939,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-36-black-939.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"947","_score":1,"_source":{"id":947,"sku":"MSH06-33-Gray","name":"Lono Yoga Short-33-Gray","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                \n

                • Dark gray shorts with mesh accents.
                • Ultra flexible four-way stretch.
                • Flatlock seams and waistband.
                • Two pockets, phony fly.
                • Nylon/Lycra outer, Polyester/Lycra inner.

                ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","color":"52","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"lono-yoga-short-33-gray-947","links":{},"stock":{"item_id":947,"product_id":947,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-33-gray-947.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"932","_score":1,"_source":{"id":932,"sku":"MSH05-32-Gray","name":"Hawkeye Yoga Short-32-Gray","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                \n

                • Dark gray shorts with red accents.
                • 92% Organic Cotton 8% Spandex.
                • Breathable stretch organic cotton.
                • Medium=8.0\" (21.0cm) inseam.

                ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","color":"52","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"hawkeye-yoga-short-32-gray-932","links":{},"stock":{"item_id":932,"product_id":932,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-32-gray-932.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"949","_score":1,"_source":{"id":949,"sku":"MSH06-34-Blue","name":"Lono Yoga Short-34-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                \n

                • Dark gray shorts with mesh accents.
                • Ultra flexible four-way stretch.
                • Flatlock seams and waistband.
                • Two pockets, phony fly.
                • Nylon/Lycra outer, Polyester/Lycra inner.

                ","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"lono-yoga-short-34-blue-949","links":{},"stock":{"item_id":949,"product_id":949,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-34-blue-949.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"933","_score":1,"_source":{"id":933,"sku":"MSH05-33-Black","name":"Hawkeye Yoga Short-33-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                \n

                • Dark gray shorts with red accents.
                • 92% Organic Cotton 8% Spandex.
                • Breathable stretch organic cotton.
                • Medium=8.0\" (21.0cm) inseam.

                ","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"hawkeye-yoga-short-33-black-933","links":{},"stock":{"item_id":933,"product_id":933,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-33-black-933.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"944","_score":1,"_source":{"id":944,"sku":"MSH06-32-Gray","name":"Lono Yoga Short-32-Gray","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                \n

                • Dark gray shorts with mesh accents.
                • Ultra flexible four-way stretch.
                • Flatlock seams and waistband.
                • Two pockets, phony fly.
                • Nylon/Lycra outer, Polyester/Lycra inner.

                ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","color":"52","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"lono-yoga-short-32-gray-944","links":{},"stock":{"item_id":944,"product_id":944,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-32-gray-944.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"941","_score":1,"_source":{"id":941,"sku":"MSH05-36-Gray","name":"Hawkeye Yoga Short-36-Gray","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                \n

                • Dark gray shorts with red accents.
                • 92% Organic Cotton 8% Spandex.
                • Breathable stretch organic cotton.
                • Medium=8.0\" (21.0cm) inseam.

                ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","color":"52","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"hawkeye-yoga-short-36-gray-941","links":{},"stock":{"item_id":941,"product_id":941,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-36-gray-941.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"948","_score":1,"_source":{"id":948,"sku":"MSH06-33-Red","name":"Lono Yoga Short-33-Red","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                \n

                • Dark gray shorts with mesh accents.
                • Ultra flexible four-way stretch.
                • Flatlock seams and waistband.
                • Two pockets, phony fly.
                • Nylon/Lycra outer, Polyester/Lycra inner.

                ","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","color":"58","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"lono-yoga-short-33-red-948","links":{},"stock":{"item_id":948,"product_id":948,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-33-red-948.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"903","_score":1,"_source":{"id":903,"sku":"MSH02","name":"Apollo Running Short","attribute_set_id":10,"price":32.5,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

                \n

                • Black shorts with green accents.
                • Side pockets.
                • 4\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"apollo-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[38,39],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[202,205,209],"slug":"apollo-running-short-903","links":{},"stock":{"item_id":903,"product_id":903,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH02-32-Black","id":899,"status":1,"name":"Apollo Running Short-32-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"49","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","url_key":"apollo-running-short-32-black","msrp_display_actual_price_type":"0"},{"sku":"MSH02-33-Black","id":900,"status":1,"name":"Apollo Running Short-33-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"49","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","url_key":"apollo-running-short-33-black","msrp_display_actual_price_type":"0"},{"sku":"MSH02-34-Black","id":901,"status":1,"name":"Apollo Running Short-34-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"49","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","url_key":"apollo-running-short-34-black","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH02-36-Black","id":902,"status":1,"name":"Apollo Running Short-36-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"49","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","url_key":"apollo-running-short-36-black","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5}],"configurable_options":[{"id":125,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"}],"product_id":903,"attribute_code":"color"},{"id":124,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":903,"attribute_code":"size"}],"color_options":[49],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-903.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"916","_score":1,"_source":{"id":916,"sku":"MSH03","name":"Meteor Workout Short","attribute_set_id":10,"price":32.5,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                \n

                • Royal blue shorts with light blue accents.
                • Interior drawstring waistband.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"meteor-workout-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[202,208,209],"slug":"meteor-workout-short-916","links":{},"stock":{"item_id":916,"product_id":916,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH03-32-Black","id":904,"status":1,"name":"Meteor Workout Short-32-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"49","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","url_key":"meteor-workout-short-32-black","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH03-32-Blue","id":905,"status":1,"name":"Meteor Workout Short-32-Blue","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"50","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","url_key":"meteor-workout-short-32-blue","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH03-32-Green","id":906,"status":1,"name":"Meteor Workout Short-32-Green","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"53","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","url_key":"meteor-workout-short-32-green","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH03-33-Black","id":907,"status":1,"name":"Meteor Workout Short-33-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"49","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","url_key":"meteor-workout-short-33-black","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH03-33-Blue","id":908,"status":1,"name":"Meteor Workout Short-33-Blue","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"50","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","url_key":"meteor-workout-short-33-blue","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH03-33-Green","id":909,"status":1,"name":"Meteor Workout Short-33-Green","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"53","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","url_key":"meteor-workout-short-33-green","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH03-34-Black","id":910,"status":1,"name":"Meteor Workout Short-34-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"49","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","url_key":"meteor-workout-short-34-black","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH03-34-Blue","id":911,"status":1,"name":"Meteor Workout Short-34-Blue","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"50","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","url_key":"meteor-workout-short-34-blue","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH03-34-Green","id":912,"status":1,"name":"Meteor Workout Short-34-Green","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"53","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","url_key":"meteor-workout-short-34-green","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH03-36-Black","id":913,"status":1,"name":"Meteor Workout Short-36-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"49","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","url_key":"meteor-workout-short-36-black","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH03-36-Blue","id":914,"status":1,"name":"Meteor Workout Short-36-Blue","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"50","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","url_key":"meteor-workout-short-36-blue","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH03-36-Green","id":915,"status":1,"name":"Meteor Workout Short-36-Green","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"53","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","url_key":"meteor-workout-short-36-green","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5}],"configurable_options":[{"id":127,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":916,"attribute_code":"color"},{"id":126,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":916,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-916.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"968","_score":1,"_source":{"id":968,"sku":"MSH07","name":"Rapha Sports Short","attribute_set_id":10,"price":35,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                \n

                • Black shorts with royal accents.
                • Compression liner.
                • Inseam: 8\".
                • Machine wash/dry.

                ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"rapha-sports-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,36,38,39],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"1","style_bottom":[116,105,108],"pattern":[197,199],"climate":[205,208,209],"slug":"rapha-sports-short-968","links":{},"stock":{"item_id":968,"product_id":968,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH07-32-Black","id":956,"status":1,"name":"Rapha Sports Short-32-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"176","color":"49","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","url_key":"rapha-sports-short-32-black","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH07-32-Blue","id":957,"status":1,"name":"Rapha Sports Short-32-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"176","color":"50","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","url_key":"rapha-sports-short-32-blue","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH07-32-Purple","id":958,"status":1,"name":"Rapha Sports Short-32-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"176","color":"57","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","url_key":"rapha-sports-short-32-purple","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH07-33-Black","id":959,"status":1,"name":"Rapha Sports Short-33-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"177","color":"49","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","url_key":"rapha-sports-short-33-black","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH07-33-Blue","id":960,"status":1,"name":"Rapha Sports Short-33-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"177","color":"50","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","url_key":"rapha-sports-short-33-blue","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH07-33-Purple","id":961,"status":1,"name":"Rapha Sports Short-33-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"177","color":"57","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","url_key":"rapha-sports-short-33-purple","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH07-34-Black","id":962,"status":1,"name":"Rapha Sports Short-34-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"178","color":"49","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","url_key":"rapha-sports-short-34-black","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH07-34-Blue","id":963,"status":1,"name":"Rapha Sports Short-34-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"178","color":"50","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","url_key":"rapha-sports-short-34-blue","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH07-34-Purple","id":964,"status":1,"name":"Rapha Sports Short-34-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"178","color":"57","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","url_key":"rapha-sports-short-34-purple","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH07-36-Black","id":965,"status":1,"name":"Rapha Sports Short-36-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"179","color":"49","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","url_key":"rapha-sports-short-36-black","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH07-36-Blue","id":966,"status":1,"name":"Rapha Sports Short-36-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"179","color":"50","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","url_key":"rapha-sports-short-36-blue","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH07-36-Purple","id":967,"status":1,"name":"Rapha Sports Short-36-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"179","color":"57","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","url_key":"rapha-sports-short-36-purple","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35}],"configurable_options":[{"id":135,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":968,"attribute_code":"color"},{"id":134,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":968,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-968.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"981","_score":1,"_source":{"id":981,"sku":"MSH08","name":"Orestes Fitness Short","attribute_set_id":10,"price":35,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                \n

                • Black shorts with dark gray accents.
                • Elasticized waistband with interior drawstring.
                • Ventilating mesh detailing.
                • 100% polyester and recycled polyester.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"orestes-fitness-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_bottom":[116,105],"pattern":"197","climate":[202,205,212],"slug":"orestes-fitness-short-981","links":{},"stock":{"item_id":981,"product_id":981,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH08-32-Black","id":969,"status":1,"name":"Orestes Fitness Short-32-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"176","color":"49","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","url_key":"orestes-fitness-short-32-black","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH08-32-Blue","id":970,"status":1,"name":"Orestes Fitness Short-32-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"176","color":"50","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","url_key":"orestes-fitness-short-32-blue","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH08-32-Green","id":971,"status":1,"name":"Orestes Fitness Short-32-Green","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"176","color":"53","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","url_key":"orestes-fitness-short-32-green","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH08-33-Black","id":972,"status":1,"name":"Orestes Fitness Short-33-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"177","color":"49","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","url_key":"orestes-fitness-short-33-black","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH08-33-Blue","id":973,"status":1,"name":"Orestes Fitness Short-33-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"177","color":"50","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","url_key":"orestes-fitness-short-33-blue","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH08-33-Green","id":974,"status":1,"name":"Orestes Fitness Short-33-Green","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"177","color":"53","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","url_key":"orestes-fitness-short-33-green","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH08-34-Black","id":975,"status":1,"name":"Orestes Fitness Short-34-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"178","color":"49","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","url_key":"orestes-fitness-short-34-black","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH08-34-Blue","id":976,"status":1,"name":"Orestes Fitness Short-34-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"178","color":"50","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","url_key":"orestes-fitness-short-34-blue","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH08-34-Green","id":977,"status":1,"name":"Orestes Fitness Short-34-Green","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"178","color":"53","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","url_key":"orestes-fitness-short-34-green","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH08-36-Black","id":978,"status":1,"name":"Orestes Fitness Short-36-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"179","color":"49","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","url_key":"orestes-fitness-short-36-black","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH08-36-Blue","id":979,"status":1,"name":"Orestes Fitness Short-36-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"179","color":"50","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","url_key":"orestes-fitness-short-36-blue","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH08-36-Green","id":980,"status":1,"name":"Orestes Fitness Short-36-Green","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"179","color":"53","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","url_key":"orestes-fitness-short-36-green","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35}],"configurable_options":[{"id":137,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":981,"attribute_code":"color"},{"id":136,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":981,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-981.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"955","_score":1,"_source":{"id":955,"sku":"MSH06","name":"Lono Yoga Short","attribute_set_id":10,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                \n

                • Dark gray shorts with mesh accents.
                • Ultra flexible four-way stretch.
                • Flatlock seams and waistband.
                • Two pockets, phony fly.
                • Nylon/Lycra outer, Polyester/Lycra inner.

                ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"lono-yoga-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38,39],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,105,108],"pattern":"197","climate":[202,205,212,209],"slug":"lono-yoga-short-955","links":{},"stock":{"item_id":955,"product_id":955,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH06-32-Blue","id":943,"status":1,"name":"Lono Yoga Short-32-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"176","color":"50","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","url_key":"lono-yoga-short-32-blue","msrp_display_actual_price_type":"0"},{"sku":"MSH06-32-Gray","id":944,"status":1,"name":"Lono Yoga Short-32-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"176","color":"52","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","url_key":"lono-yoga-short-32-gray","msrp_display_actual_price_type":"0"},{"sku":"MSH06-32-Red","id":945,"status":1,"name":"Lono Yoga Short-32-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"176","color":"58","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","url_key":"lono-yoga-short-32-red","msrp_display_actual_price_type":"0"},{"sku":"MSH06-33-Blue","id":946,"status":1,"name":"Lono Yoga Short-33-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"177","color":"50","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","url_key":"lono-yoga-short-33-blue","msrp_display_actual_price_type":"0"},{"sku":"MSH06-33-Gray","id":947,"status":1,"name":"Lono Yoga Short-33-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"177","color":"52","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","url_key":"lono-yoga-short-33-gray","msrp_display_actual_price_type":"0"},{"sku":"MSH06-33-Red","id":948,"status":1,"name":"Lono Yoga Short-33-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"177","color":"58","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","url_key":"lono-yoga-short-33-red","msrp_display_actual_price_type":"0"},{"sku":"MSH06-34-Blue","id":949,"status":1,"name":"Lono Yoga Short-34-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"178","color":"50","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","url_key":"lono-yoga-short-34-blue","msrp_display_actual_price_type":"0"},{"sku":"MSH06-34-Gray","id":950,"status":1,"name":"Lono Yoga Short-34-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"178","color":"52","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","url_key":"lono-yoga-short-34-gray","msrp_display_actual_price_type":"0"},{"sku":"MSH06-34-Red","id":951,"status":1,"name":"Lono Yoga Short-34-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"178","color":"58","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","url_key":"lono-yoga-short-34-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MSH06-36-Blue","id":952,"status":1,"name":"Lono Yoga Short-36-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"179","color":"50","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","url_key":"lono-yoga-short-36-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MSH06-36-Gray","id":953,"status":1,"name":"Lono Yoga Short-36-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"179","color":"52","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","url_key":"lono-yoga-short-36-gray","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MSH06-36-Red","id":954,"status":1,"name":"Lono Yoga Short-36-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"179","color":"58","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","url_key":"lono-yoga-short-36-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32}],"configurable_options":[{"id":133,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"}],"product_id":955,"attribute_code":"color"},{"id":132,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":955,"attribute_code":"size"}],"color_options":[50,52,58],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-955.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"994","_score":1,"_source":{"id":994,"sku":"MSH09","name":"Troy Yoga Short","attribute_set_id":10,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                \n

                • Navy polyester pinstripe shorts.
                • Woven fabric with moderate stretch.
                • 62% cotton/34% nylon/4% spandex.
                • LumaTech™ lining.

                ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"troy-yoga-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,37,148,151],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[205,212,209],"slug":"troy-yoga-short-994","links":{},"stock":{"item_id":994,"product_id":994,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH09-32-Black","id":982,"status":1,"name":"Troy Yoga Short-32-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"49","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","url_key":"troy-yoga-short-32-black","msrp_display_actual_price_type":"0"},{"sku":"MSH09-32-Blue","id":983,"status":1,"name":"Troy Yoga Short-32-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"50","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","url_key":"troy-yoga-short-32-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MSH09-32-Green","id":984,"status":1,"name":"Troy Yoga Short-32-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"53","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","url_key":"troy-yoga-short-32-green","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MSH09-33-Black","id":985,"status":1,"name":"Troy Yoga Short-33-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"49","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","url_key":"troy-yoga-short-33-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MSH09-33-Blue","id":986,"status":1,"name":"Troy Yoga Short-33-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"50","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","url_key":"troy-yoga-short-33-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MSH09-33-Green","id":987,"status":1,"name":"Troy Yoga Short-33-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"53","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","url_key":"troy-yoga-short-33-green","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MSH09-34-Black","id":988,"status":1,"name":"Troy Yoga Short-34-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"49","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","url_key":"troy-yoga-short-34-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MSH09-34-Blue","id":989,"status":1,"name":"Troy Yoga Short-34-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"50","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","url_key":"troy-yoga-short-34-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MSH09-34-Green","id":990,"status":1,"name":"Troy Yoga Short-34-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"53","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","url_key":"troy-yoga-short-34-green","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MSH09-36-Black","id":991,"status":1,"name":"Troy Yoga Short-36-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"49","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","url_key":"troy-yoga-short-36-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MSH09-36-Blue","id":992,"status":1,"name":"Troy Yoga Short-36-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"50","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","url_key":"troy-yoga-short-36-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MSH09-36-Green","id":993,"status":1,"name":"Troy Yoga Short-36-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"53","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","url_key":"troy-yoga-short-36-green","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24}],"configurable_options":[{"id":139,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":994,"attribute_code":"color"},{"id":138,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":994,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-994.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"960","_score":1,"_source":{"id":960,"sku":"MSH07-33-Blue","name":"Rapha Sports Short-33-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                \n

                • Black shorts with royal accents.
                • Compression liner.
                • Inseam: 8\".
                • Machine wash/dry.

                ","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","color":"50","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"rapha-sports-short-33-blue-960","links":{},"stock":{"item_id":960,"product_id":960,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-33-blue-960.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"992","_score":1,"_source":{"id":992,"sku":"MSH09-36-Blue","name":"Troy Yoga Short-36-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                \n

                • Navy polyester pinstripe shorts.
                • Woven fabric with moderate stretch.
                • 62% cotton/34% nylon/4% spandex.
                • LumaTech™ lining.

                ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"troy-yoga-short-36-blue-992","links":{},"stock":{"item_id":992,"product_id":992,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-36-blue-992.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"979","_score":1,"_source":{"id":979,"sku":"MSH08-36-Blue","name":"Orestes Fitness Short-36-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                \n

                • Black shorts with dark gray accents.
                • Elasticized waistband with interior drawstring.
                • Ventilating mesh detailing.
                • 100% polyester and recycled polyester.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","color":"50","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-fitness-short-36-blue-979","links":{},"stock":{"item_id":979,"product_id":979,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-36-blue-979.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"975","_score":1,"_source":{"id":975,"sku":"MSH08-34-Black","name":"Orestes Fitness Short-34-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                \n

                • Black shorts with dark gray accents.
                • Elasticized waistband with interior drawstring.
                • Ventilating mesh detailing.
                • 100% polyester and recycled polyester.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-fitness-short-34-black-975","links":{},"stock":{"item_id":975,"product_id":975,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-34-black-975.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"971","_score":1,"_source":{"id":971,"sku":"MSH08-32-Green","name":"Orestes Fitness Short-32-Green","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                \n

                • Black shorts with dark gray accents.
                • Elasticized waistband with interior drawstring.
                • Ventilating mesh detailing.
                • 100% polyester and recycled polyester.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","color":"53","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-fitness-short-32-green-971","links":{},"stock":{"item_id":971,"product_id":971,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-32-green-971.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"984","_score":1,"_source":{"id":984,"sku":"MSH09-32-Green","name":"Troy Yoga Short-32-Green","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                \n

                • Navy polyester pinstripe shorts.
                • Woven fabric with moderate stretch.
                • 62% cotton/34% nylon/4% spandex.
                • LumaTech™ lining.

                ","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"troy-yoga-short-32-green-984","links":{},"stock":{"item_id":984,"product_id":984,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-32-green-984.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"973","_score":1,"_source":{"id":973,"sku":"MSH08-33-Blue","name":"Orestes Fitness Short-33-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                \n

                • Black shorts with dark gray accents.
                • Elasticized waistband with interior drawstring.
                • Ventilating mesh detailing.
                • 100% polyester and recycled polyester.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","color":"50","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-fitness-short-33-blue-973","links":{},"stock":{"item_id":973,"product_id":973,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-33-blue-973.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"988","_score":1,"_source":{"id":988,"sku":"MSH09-34-Black","name":"Troy Yoga Short-34-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                \n

                • Navy polyester pinstripe shorts.
                • Woven fabric with moderate stretch.
                • 62% cotton/34% nylon/4% spandex.
                • LumaTech™ lining.

                ","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"troy-yoga-short-34-black-988","links":{},"stock":{"item_id":988,"product_id":988,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-34-black-988.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"964","_score":1,"_source":{"id":964,"sku":"MSH07-34-Purple","name":"Rapha Sports Short-34-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                \n

                • Black shorts with royal accents.
                • Compression liner.
                • Inseam: 8\".
                • Machine wash/dry.

                ","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","color":"57","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"rapha-sports-short-34-purple-964","links":{},"stock":{"item_id":964,"product_id":964,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-34-purple-964.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"978","_score":1,"_source":{"id":978,"sku":"MSH08-36-Black","name":"Orestes Fitness Short-36-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                \n

                • Black shorts with dark gray accents.
                • Elasticized waistband with interior drawstring.
                • Ventilating mesh detailing.
                • 100% polyester and recycled polyester.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-fitness-short-36-black-978","links":{},"stock":{"item_id":978,"product_id":978,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-36-black-978.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"980","_score":1,"_source":{"id":980,"sku":"MSH08-36-Green","name":"Orestes Fitness Short-36-Green","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                \n

                • Black shorts with dark gray accents.
                • Elasticized waistband with interior drawstring.
                • Ventilating mesh detailing.
                • 100% polyester and recycled polyester.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","color":"53","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-fitness-short-36-green-980","links":{},"stock":{"item_id":980,"product_id":980,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-36-green-980.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"972","_score":1,"_source":{"id":972,"sku":"MSH08-33-Black","name":"Orestes Fitness Short-33-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                \n

                • Black shorts with dark gray accents.
                • Elasticized waistband with interior drawstring.
                • Ventilating mesh detailing.
                • 100% polyester and recycled polyester.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-fitness-short-33-black-972","links":{},"stock":{"item_id":972,"product_id":972,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-33-black-972.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"983","_score":1,"_source":{"id":983,"sku":"MSH09-32-Blue","name":"Troy Yoga Short-32-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                \n

                • Navy polyester pinstripe shorts.
                • Woven fabric with moderate stretch.
                • 62% cotton/34% nylon/4% spandex.
                • LumaTech™ lining.

                ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"troy-yoga-short-32-blue-983","links":{},"stock":{"item_id":983,"product_id":983,"stock_id":1,"qty":58,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-32-blue-983.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"996","_score":1,"_source":{"id":996,"sku":"MSH10-32-Green","name":"Sol Active Short-32-Green","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                \n

                • Light blue jersey shorts with mesh detail.
                • 87% Spandex 13% Lycra.
                • Machine wash cold, tumble dry low.
                • Superior performance fabric.
                • Flat-lock seams.

                ","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","color":"53","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"sol-active-short-32-green-996","links":{},"stock":{"item_id":996,"product_id":996,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-32-green-996.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"985","_score":1,"_source":{"id":985,"sku":"MSH09-33-Black","name":"Troy Yoga Short-33-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                \n

                • Navy polyester pinstripe shorts.
                • Woven fabric with moderate stretch.
                • 62% cotton/34% nylon/4% spandex.
                • LumaTech™ lining.

                ","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"troy-yoga-short-33-black-985","links":{},"stock":{"item_id":985,"product_id":985,"stock_id":1,"qty":71,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-33-black-985.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"995","_score":1,"_source":{"id":995,"sku":"MSH10-32-Blue","name":"Sol Active Short-32-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                \n

                • Light blue jersey shorts with mesh detail.
                • 87% Spandex 13% Lycra.
                • Machine wash cold, tumble dry low.
                • Superior performance fabric.
                • Flat-lock seams.

                ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"sol-active-short-32-blue-995","links":{},"stock":{"item_id":995,"product_id":995,"stock_id":1,"qty":10,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-32-blue-995.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"974","_score":1,"_source":{"id":974,"sku":"MSH08-33-Green","name":"Orestes Fitness Short-33-Green","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                \n

                • Black shorts with dark gray accents.
                • Elasticized waistband with interior drawstring.
                • Ventilating mesh detailing.
                • 100% polyester and recycled polyester.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","color":"53","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-fitness-short-33-green-974","links":{},"stock":{"item_id":974,"product_id":974,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-33-green-974.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"987","_score":1,"_source":{"id":987,"sku":"MSH09-33-Green","name":"Troy Yoga Short-33-Green","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                \n

                • Navy polyester pinstripe shorts.
                • Woven fabric with moderate stretch.
                • 62% cotton/34% nylon/4% spandex.
                • LumaTech™ lining.

                ","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"troy-yoga-short-33-green-987","links":{},"stock":{"item_id":987,"product_id":987,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-33-green-987.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"997","_score":1,"_source":{"id":997,"sku":"MSH10-32-Purple","name":"Sol Active Short-32-Purple","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                \n

                • Light blue jersey shorts with mesh detail.
                • 87% Spandex 13% Lycra.
                • Machine wash cold, tumble dry low.
                • Superior performance fabric.
                • Flat-lock seams.

                ","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","color":"57","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"sol-active-short-32-purple-997","links":{},"stock":{"item_id":997,"product_id":997,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-32-purple-997.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"989","_score":1,"_source":{"id":989,"sku":"MSH09-34-Blue","name":"Troy Yoga Short-34-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                \n

                • Navy polyester pinstripe shorts.
                • Woven fabric with moderate stretch.
                • 62% cotton/34% nylon/4% spandex.
                • LumaTech™ lining.

                ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"troy-yoga-short-34-blue-989","links":{},"stock":{"item_id":989,"product_id":989,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-34-blue-989.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1000","_score":1,"_source":{"id":1000,"sku":"MSH10-33-Purple","name":"Sol Active Short-33-Purple","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                \n

                • Light blue jersey shorts with mesh detail.
                • 87% Spandex 13% Lycra.
                • Machine wash cold, tumble dry low.
                • Superior performance fabric.
                • Flat-lock seams.

                ","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","color":"57","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"sol-active-short-33-purple-1000","links":{},"stock":{"item_id":1000,"product_id":1000,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-33-purple-1000.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"991","_score":1,"_source":{"id":991,"sku":"MSH09-36-Black","name":"Troy Yoga Short-36-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                \n

                • Navy polyester pinstripe shorts.
                • Woven fabric with moderate stretch.
                • 62% cotton/34% nylon/4% spandex.
                • LumaTech™ lining.

                ","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"troy-yoga-short-36-black-991","links":{},"stock":{"item_id":991,"product_id":991,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-36-black-991.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"998","_score":1,"_source":{"id":998,"sku":"MSH10-33-Blue","name":"Sol Active Short-33-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                \n

                • Light blue jersey shorts with mesh detail.
                • 87% Spandex 13% Lycra.
                • Machine wash cold, tumble dry low.
                • Superior performance fabric.
                • Flat-lock seams.

                ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"sol-active-short-33-blue-998","links":{},"stock":{"item_id":998,"product_id":998,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-33-blue-998.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"990","_score":1,"_source":{"id":990,"sku":"MSH09-34-Green","name":"Troy Yoga Short-34-Green","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                \n

                • Navy polyester pinstripe shorts.
                • Woven fabric with moderate stretch.
                • 62% cotton/34% nylon/4% spandex.
                • LumaTech™ lining.

                ","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"troy-yoga-short-34-green-990","links":{},"stock":{"item_id":990,"product_id":990,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-34-green-990.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"986","_score":1,"_source":{"id":986,"sku":"MSH09-33-Blue","name":"Troy Yoga Short-33-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                \n

                • Navy polyester pinstripe shorts.
                • Woven fabric with moderate stretch.
                • 62% cotton/34% nylon/4% spandex.
                • LumaTech™ lining.

                ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"troy-yoga-short-33-blue-986","links":{},"stock":{"item_id":986,"product_id":986,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-33-blue-986.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"993","_score":1,"_source":{"id":993,"sku":"MSH09-36-Green","name":"Troy Yoga Short-36-Green","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                \n

                • Navy polyester pinstripe shorts.
                • Woven fabric with moderate stretch.
                • 62% cotton/34% nylon/4% spandex.
                • LumaTech™ lining.

                ","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"troy-yoga-short-36-green-993","links":{},"stock":{"item_id":993,"product_id":993,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-36-green-993.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"999","_score":1,"_source":{"id":999,"sku":"MSH10-33-Green","name":"Sol Active Short-33-Green","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                \n

                • Light blue jersey shorts with mesh detail.
                • 87% Spandex 13% Lycra.
                • Machine wash cold, tumble dry low.
                • Superior performance fabric.
                • Flat-lock seams.

                ","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","color":"53","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"sol-active-short-33-green-999","links":{},"stock":{"item_id":999,"product_id":999,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-33-green-999.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"929","_score":1,"_source":{"id":929,"sku":"MSH04","name":"Torque Power Short","attribute_set_id":10,"price":32.5,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                \n

                • Light gray shorts.
                • Fitted design.
                • Elastic waistband.
                • Flat-seam construction.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"torque-power-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[205,212,206,208,209],"slug":"torque-power-short-929","links":{},"stock":{"item_id":929,"product_id":929,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH04-32-Gray","id":917,"status":1,"name":"Torque Power Short-32-Gray","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"52","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","url_key":"torque-power-short-32-gray","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH04-32-Purple","id":918,"status":1,"name":"Torque Power Short-32-Purple","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"57","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","url_key":"torque-power-short-32-purple","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH04-32-Yellow","id":919,"status":1,"name":"Torque Power Short-32-Yellow","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"60","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","url_key":"torque-power-short-32-yellow","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH04-33-Gray","id":920,"status":1,"name":"Torque Power Short-33-Gray","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"52","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","url_key":"torque-power-short-33-gray","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH04-33-Purple","id":921,"status":1,"name":"Torque Power Short-33-Purple","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"57","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","url_key":"torque-power-short-33-purple","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH04-33-Yellow","id":922,"status":1,"name":"Torque Power Short-33-Yellow","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"60","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","url_key":"torque-power-short-33-yellow","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH04-34-Gray","id":923,"status":1,"name":"Torque Power Short-34-Gray","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"52","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","url_key":"torque-power-short-34-gray","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH04-34-Purple","id":924,"status":1,"name":"Torque Power Short-34-Purple","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"57","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","url_key":"torque-power-short-34-purple","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH04-34-Yellow","id":925,"status":1,"name":"Torque Power Short-34-Yellow","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"60","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","url_key":"torque-power-short-34-yellow","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH04-36-Gray","id":926,"status":1,"name":"Torque Power Short-36-Gray","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"52","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","url_key":"torque-power-short-36-gray","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH04-36-Purple","id":927,"status":1,"name":"Torque Power Short-36-Purple","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"57","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","url_key":"torque-power-short-36-purple","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH04-36-Yellow","id":928,"status":1,"name":"Torque Power Short-36-Yellow","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"60","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","url_key":"torque-power-short-36-yellow","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5}],"configurable_options":[{"id":129,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"},{"value_index":60,"label":"Yellow"}],"product_id":929,"attribute_code":"color"},{"id":128,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":929,"attribute_code":"size"}],"color_options":[52,57,60],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-929.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"942","_score":1,"_source":{"id":942,"sku":"MSH05","name":"Hawkeye Yoga Short","attribute_set_id":10,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                \n

                • Dark gray shorts with red accents.
                • 92% Organic Cotton 8% Spandex.
                • Breathable stretch organic cotton.
                • Medium=8.0\" (21.0cm) inseam.

                ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hawkeye-yoga-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,158,38,39,159],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":[197,199],"climate":[205,208,209],"slug":"hawkeye-yoga-short-942","links":{},"stock":{"item_id":942,"product_id":942,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH05-32-Black","id":930,"status":1,"name":"Hawkeye Yoga Short-32-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"49","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","url_key":"hawkeye-yoga-short-32-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-32-Blue","id":931,"status":1,"name":"Hawkeye Yoga Short-32-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"50","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","url_key":"hawkeye-yoga-short-32-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-32-Gray","id":932,"status":1,"name":"Hawkeye Yoga Short-32-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"52","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","url_key":"hawkeye-yoga-short-32-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-33-Black","id":933,"status":1,"name":"Hawkeye Yoga Short-33-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"49","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","url_key":"hawkeye-yoga-short-33-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-33-Blue","id":934,"status":1,"name":"Hawkeye Yoga Short-33-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"50","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","url_key":"hawkeye-yoga-short-33-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-33-Gray","id":935,"status":1,"name":"Hawkeye Yoga Short-33-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"52","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","url_key":"hawkeye-yoga-short-33-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-34-Black","id":936,"status":1,"name":"Hawkeye Yoga Short-34-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"49","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","url_key":"hawkeye-yoga-short-34-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-34-Blue","id":937,"status":1,"name":"Hawkeye Yoga Short-34-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"50","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","url_key":"hawkeye-yoga-short-34-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-34-Gray","id":938,"status":1,"name":"Hawkeye Yoga Short-34-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"52","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","url_key":"hawkeye-yoga-short-34-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-36-Black","id":939,"status":1,"name":"Hawkeye Yoga Short-36-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"49","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","url_key":"hawkeye-yoga-short-36-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-36-Blue","id":940,"status":1,"name":"Hawkeye Yoga Short-36-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"50","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","url_key":"hawkeye-yoga-short-36-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-36-Gray","id":941,"status":1,"name":"Hawkeye Yoga Short-36-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"52","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","url_key":"hawkeye-yoga-short-36-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":131,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"}],"product_id":942,"attribute_code":"color"},{"id":130,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":942,"attribute_code":"size"}],"color_options":[49,50,52],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-942.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"906","_score":1,"_source":{"id":906,"sku":"MSH03-32-Green","name":"Meteor Workout Short-32-Green","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                \n

                • Royal blue shorts with light blue accents.
                • Interior drawstring waistband.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"meteor-workout-short-32-green-906","links":{},"stock":{"item_id":906,"product_id":906,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-32-green-906.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"912","_score":1,"_source":{"id":912,"sku":"MSH03-34-Green","name":"Meteor Workout Short-34-Green","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                \n

                • Royal blue shorts with light blue accents.
                • Interior drawstring waistband.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"meteor-workout-short-34-green-912","links":{},"stock":{"item_id":912,"product_id":912,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-34-green-912.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"908","_score":1,"_source":{"id":908,"sku":"MSH03-33-Blue","name":"Meteor Workout Short-33-Blue","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                \n

                • Royal blue shorts with light blue accents.
                • Interior drawstring waistband.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"meteor-workout-short-33-blue-908","links":{},"stock":{"item_id":908,"product_id":908,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-33-blue-908.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"904","_score":1,"_source":{"id":904,"sku":"MSH03-32-Black","name":"Meteor Workout Short-32-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                \n

                • Royal blue shorts with light blue accents.
                • Interior drawstring waistband.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"meteor-workout-short-32-black-904","links":{},"stock":{"item_id":904,"product_id":904,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-32-black-904.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"902","_score":1,"_source":{"id":902,"sku":"MSH02-36-Black","name":"Apollo Running Short-36-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

                \n

                • Black shorts with green accents.
                • Side pockets.
                • 4\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"apollo-running-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"apollo-running-short-36-black-902","links":{},"stock":{"item_id":902,"product_id":902,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-36-black-902.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"905","_score":1,"_source":{"id":905,"sku":"MSH03-32-Blue","name":"Meteor Workout Short-32-Blue","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                \n

                • Royal blue shorts with light blue accents.
                • Interior drawstring waistband.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"meteor-workout-short-32-blue-905","links":{},"stock":{"item_id":905,"product_id":905,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-32-blue-905.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"924","_score":1,"_source":{"id":924,"sku":"MSH04-34-Purple","name":"Torque Power Short-34-Purple","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                \n

                • Light gray shorts.
                • Fitted design.
                • Elastic waistband.
                • Flat-seam construction.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","color":"57","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"torque-power-short-34-purple-924","links":{},"stock":{"item_id":924,"product_id":924,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-34-purple-924.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"921","_score":1,"_source":{"id":921,"sku":"MSH04-33-Purple","name":"Torque Power Short-33-Purple","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                \n

                • Light gray shorts.
                • Fitted design.
                • Elastic waistband.
                • Flat-seam construction.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","color":"57","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"torque-power-short-33-purple-921","links":{},"stock":{"item_id":921,"product_id":921,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-33-purple-921.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"907","_score":1,"_source":{"id":907,"sku":"MSH03-33-Black","name":"Meteor Workout Short-33-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                \n

                • Royal blue shorts with light blue accents.
                • Interior drawstring waistband.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"meteor-workout-short-33-black-907","links":{},"stock":{"item_id":907,"product_id":907,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-33-black-907.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"913","_score":1,"_source":{"id":913,"sku":"MSH03-36-Black","name":"Meteor Workout Short-36-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                \n

                • Royal blue shorts with light blue accents.
                • Interior drawstring waistband.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"meteor-workout-short-36-black-913","links":{},"stock":{"item_id":913,"product_id":913,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-36-black-913.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"925","_score":1,"_source":{"id":925,"sku":"MSH04-34-Yellow","name":"Torque Power Short-34-Yellow","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                \n

                • Light gray shorts.
                • Fitted design.
                • Elastic waistband.
                • Flat-seam construction.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","color":"60","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-34-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"torque-power-short-34-yellow-925","links":{},"stock":{"item_id":925,"product_id":925,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-34-yellow-925.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"927","_score":1,"_source":{"id":927,"sku":"MSH04-36-Purple","name":"Torque Power Short-36-Purple","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                \n

                • Light gray shorts.
                • Fitted design.
                • Elastic waistband.
                • Flat-seam construction.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","color":"57","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"torque-power-short-36-purple-927","links":{},"stock":{"item_id":927,"product_id":927,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-36-purple-927.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"911","_score":1,"_source":{"id":911,"sku":"MSH03-34-Blue","name":"Meteor Workout Short-34-Blue","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                \n

                • Royal blue shorts with light blue accents.
                • Interior drawstring waistband.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"meteor-workout-short-34-blue-911","links":{},"stock":{"item_id":911,"product_id":911,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-34-blue-911.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"934","_score":1,"_source":{"id":934,"sku":"MSH05-33-Blue","name":"Hawkeye Yoga Short-33-Blue","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                \n

                • Dark gray shorts with red accents.
                • 92% Organic Cotton 8% Spandex.
                • Breathable stretch organic cotton.
                • Medium=8.0\" (21.0cm) inseam.

                ","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"hawkeye-yoga-short-33-blue-934","links":{},"stock":{"item_id":934,"product_id":934,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-33-blue-934.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"938","_score":1,"_source":{"id":938,"sku":"MSH05-34-Gray","name":"Hawkeye Yoga Short-34-Gray","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                \n

                • Dark gray shorts with red accents.
                • 92% Organic Cotton 8% Spandex.
                • Breathable stretch organic cotton.
                • Medium=8.0\" (21.0cm) inseam.

                ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","color":"52","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"hawkeye-yoga-short-34-gray-938","links":{},"stock":{"item_id":938,"product_id":938,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-34-gray-938.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"923","_score":1,"_source":{"id":923,"sku":"MSH04-34-Gray","name":"Torque Power Short-34-Gray","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                \n

                • Light gray shorts.
                • Fitted design.
                • Elastic waistband.
                • Flat-seam construction.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","color":"52","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"torque-power-short-34-gray-923","links":{},"stock":{"item_id":923,"product_id":923,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-34-gray-923.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"910","_score":1,"_source":{"id":910,"sku":"MSH03-34-Black","name":"Meteor Workout Short-34-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                \n

                • Royal blue shorts with light blue accents.
                • Interior drawstring waistband.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"meteor-workout-short-34-black-910","links":{},"stock":{"item_id":910,"product_id":910,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-34-black-910.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"914","_score":1,"_source":{"id":914,"sku":"MSH03-36-Blue","name":"Meteor Workout Short-36-Blue","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                \n

                • Royal blue shorts with light blue accents.
                • Interior drawstring waistband.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"meteor-workout-short-36-blue-914","links":{},"stock":{"item_id":914,"product_id":914,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-36-blue-914.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"915","_score":1,"_source":{"id":915,"sku":"MSH03-36-Green","name":"Meteor Workout Short-36-Green","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                \n

                • Royal blue shorts with light blue accents.
                • Interior drawstring waistband.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"meteor-workout-short-36-green-915","links":{},"stock":{"item_id":915,"product_id":915,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-36-green-915.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"901","_score":1,"_source":{"id":901,"sku":"MSH02-34-Black","name":"Apollo Running Short-34-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

                \n

                • Black shorts with green accents.
                • Side pockets.
                • 4\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"apollo-running-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"apollo-running-short-34-black-901","links":{},"stock":{"item_id":901,"product_id":901,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-34-black-901.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"951","_score":1,"_source":{"id":951,"sku":"MSH06-34-Red","name":"Lono Yoga Short-34-Red","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                \n

                • Dark gray shorts with mesh accents.
                • Ultra flexible four-way stretch.
                • Flatlock seams and waistband.
                • Two pockets, phony fly.
                • Nylon/Lycra outer, Polyester/Lycra inner.

                ","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","color":"58","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"lono-yoga-short-34-red-951","links":{},"stock":{"item_id":951,"product_id":951,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-34-red-951.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"954","_score":1,"_source":{"id":954,"sku":"MSH06-36-Red","name":"Lono Yoga Short-36-Red","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                \n

                • Dark gray shorts with mesh accents.
                • Ultra flexible four-way stretch.
                • Flatlock seams and waistband.
                • Two pockets, phony fly.
                • Nylon/Lycra outer, Polyester/Lycra inner.

                ","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","color":"58","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"lono-yoga-short-36-red-954","links":{},"stock":{"item_id":954,"product_id":954,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-36-red-954.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"952","_score":1,"_source":{"id":952,"sku":"MSH06-36-Blue","name":"Lono Yoga Short-36-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                \n

                • Dark gray shorts with mesh accents.
                • Ultra flexible four-way stretch.
                • Flatlock seams and waistband.
                • Two pockets, phony fly.
                • Nylon/Lycra outer, Polyester/Lycra inner.

                ","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"lono-yoga-short-36-blue-952","links":{},"stock":{"item_id":952,"product_id":952,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-36-blue-952.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"962","_score":1,"_source":{"id":962,"sku":"MSH07-34-Black","name":"Rapha Sports Short-34-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                \n

                • Black shorts with royal accents.
                • Compression liner.
                • Inseam: 8\".
                • Machine wash/dry.

                ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","color":"49","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"rapha-sports-short-34-black-962","links":{},"stock":{"item_id":962,"product_id":962,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-34-black-962.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"965","_score":1,"_source":{"id":965,"sku":"MSH07-36-Black","name":"Rapha Sports Short-36-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                \n

                • Black shorts with royal accents.
                • Compression liner.
                • Inseam: 8\".
                • Machine wash/dry.

                ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","color":"49","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"rapha-sports-short-36-black-965","links":{},"stock":{"item_id":965,"product_id":965,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-36-black-965.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"959","_score":1,"_source":{"id":959,"sku":"MSH07-33-Black","name":"Rapha Sports Short-33-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                \n

                • Black shorts with royal accents.
                • Compression liner.
                • Inseam: 8\".
                • Machine wash/dry.

                ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","color":"49","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"rapha-sports-short-33-black-959","links":{},"stock":{"item_id":959,"product_id":959,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-33-black-959.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"977","_score":1,"_source":{"id":977,"sku":"MSH08-34-Green","name":"Orestes Fitness Short-34-Green","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                \n

                • Black shorts with dark gray accents.
                • Elasticized waistband with interior drawstring.
                • Ventilating mesh detailing.
                • 100% polyester and recycled polyester.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","color":"53","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-fitness-short-34-green-977","links":{},"stock":{"item_id":977,"product_id":977,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-34-green-977.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"953","_score":1,"_source":{"id":953,"sku":"MSH06-36-Gray","name":"Lono Yoga Short-36-Gray","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                \n

                • Dark gray shorts with mesh accents.
                • Ultra flexible four-way stretch.
                • Flatlock seams and waistband.
                • Two pockets, phony fly.
                • Nylon/Lycra outer, Polyester/Lycra inner.

                ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","color":"52","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"lono-yoga-short-36-gray-953","links":{},"stock":{"item_id":953,"product_id":953,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-36-gray-953.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"976","_score":1,"_source":{"id":976,"sku":"MSH08-34-Blue","name":"Orestes Fitness Short-34-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                \n

                • Black shorts with dark gray accents.
                • Elasticized waistband with interior drawstring.
                • Ventilating mesh detailing.
                • 100% polyester and recycled polyester.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","color":"50","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-fitness-short-34-blue-976","links":{},"stock":{"item_id":976,"product_id":976,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-34-blue-976.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"961","_score":1,"_source":{"id":961,"sku":"MSH07-33-Purple","name":"Rapha Sports Short-33-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                \n

                • Black shorts with royal accents.
                • Compression liner.
                • Inseam: 8\".
                • Machine wash/dry.

                ","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","color":"57","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"rapha-sports-short-33-purple-961","links":{},"stock":{"item_id":961,"product_id":961,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-33-purple-961.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"958","_score":1,"_source":{"id":958,"sku":"MSH07-32-Purple","name":"Rapha Sports Short-32-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                \n

                • Black shorts with royal accents.
                • Compression liner.
                • Inseam: 8\".
                • Machine wash/dry.

                ","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","color":"57","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"rapha-sports-short-32-purple-958","links":{},"stock":{"item_id":958,"product_id":958,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-32-purple-958.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"970","_score":1,"_source":{"id":970,"sku":"MSH08-32-Blue","name":"Orestes Fitness Short-32-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                \n

                • Black shorts with dark gray accents.
                • Elasticized waistband with interior drawstring.
                • Ventilating mesh detailing.
                • 100% polyester and recycled polyester.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","color":"50","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-fitness-short-32-blue-970","links":{},"stock":{"item_id":970,"product_id":970,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-32-blue-970.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"969","_score":1,"_source":{"id":969,"sku":"MSH08-32-Black","name":"Orestes Fitness Short-32-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                \n

                • Black shorts with dark gray accents.
                • Elasticized waistband with interior drawstring.
                • Ventilating mesh detailing.
                • 100% polyester and recycled polyester.
                • Machine wash cold, tumble dry low.

                ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-fitness-short-32-black-969","links":{},"stock":{"item_id":969,"product_id":969,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-32-black-969.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"957","_score":1,"_source":{"id":957,"sku":"MSH07-32-Blue","name":"Rapha Sports Short-32-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                \n

                • Black shorts with royal accents.
                • Compression liner.
                • Inseam: 8\".
                • Machine wash/dry.

                ","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","color":"50","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"rapha-sports-short-32-blue-957","links":{},"stock":{"item_id":957,"product_id":957,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-32-blue-957.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"966","_score":1,"_source":{"id":966,"sku":"MSH07-36-Blue","name":"Rapha Sports Short-36-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                \n

                • Black shorts with royal accents.
                • Compression liner.
                • Inseam: 8\".
                • Machine wash/dry.

                ","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","color":"50","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"rapha-sports-short-36-blue-966","links":{},"stock":{"item_id":966,"product_id":966,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-36-blue-966.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"963","_score":1,"_source":{"id":963,"sku":"MSH07-34-Blue","name":"Rapha Sports Short-34-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                \n

                • Black shorts with royal accents.
                • Compression liner.
                • Inseam: 8\".
                • Machine wash/dry.

                ","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","color":"50","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"rapha-sports-short-34-blue-963","links":{},"stock":{"item_id":963,"product_id":963,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-34-blue-963.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"956","_score":1,"_source":{"id":956,"sku":"MSH07-32-Black","name":"Rapha Sports Short-32-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                \n

                • Black shorts with royal accents.
                • Compression liner.
                • Inseam: 8\".
                • Machine wash/dry.

                ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","color":"49","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"rapha-sports-short-32-black-956","links":{},"stock":{"item_id":956,"product_id":956,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-32-black-956.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"982","_score":1,"_source":{"id":982,"sku":"MSH09-32-Black","name":"Troy Yoga Short-32-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                \n

                • Navy polyester pinstripe shorts.
                • Woven fabric with moderate stretch.
                • 62% cotton/34% nylon/4% spandex.
                • LumaTech™ lining.

                ","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"troy-yoga-short-32-black-982","links":{},"stock":{"item_id":982,"product_id":982,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-03-21 13:14:03","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/m/s/msh09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-32-black-982.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"967","_score":1,"_source":{"id":967,"sku":"MSH07-36-Purple","name":"Rapha Sports Short-36-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                \n

                • Black shorts with royal accents.
                • Compression liner.
                • Inseam: 8\".
                • Machine wash/dry.

                ","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","color":"57","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"rapha-sports-short-36-purple-967","links":{},"stock":{"item_id":967,"product_id":967,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-36-purple-967.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"919","_score":1,"_source":{"id":919,"sku":"MSH04-32-Yellow","name":"Torque Power Short-32-Yellow","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                \n

                • Light gray shorts.
                • Fitted design.
                • Elastic waistband.
                • Flat-seam construction.
                • 7\" inseam.
                • Machine wash/dry.

                ","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","color":"60","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-32-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"torque-power-short-32-yellow-919","links":{},"stock":{"item_id":919,"product_id":919,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-32-yellow-919.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"946","_score":1,"_source":{"id":946,"sku":"MSH06-33-Blue","name":"Lono Yoga Short-33-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                \n

                • Dark gray shorts with mesh accents.
                • Ultra flexible four-way stretch.
                • Flatlock seams and waistband.
                • Two pockets, phony fly.
                • Nylon/Lycra outer, Polyester/Lycra inner.

                ","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"lono-yoga-short-33-blue-946","links":{},"stock":{"item_id":946,"product_id":946,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-33-blue-946.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"943","_score":1,"_source":{"id":943,"sku":"MSH06-32-Blue","name":"Lono Yoga Short-32-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                \n

                • Dark gray shorts with mesh accents.
                • Ultra flexible four-way stretch.
                • Flatlock seams and waistband.
                • Two pockets, phony fly.
                • Nylon/Lycra outer, Polyester/Lycra inner.

                ","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"lono-yoga-short-32-blue-943","links":{},"stock":{"item_id":943,"product_id":943,"stock_id":1,"qty":24,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-32-blue-943.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1281","_score":1,"_source":{"id":1281,"sku":"WJ05-M-Green","name":"Riona Full Zip Jacket-M-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                \n

                • Brown heather full zip rouched jacket.
                • Side hand pockets for extra storage.
                • High collar.
                • Thick cuffs for extra coverage.
                • Durable, shape retention material to longer wear.

                ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"riona-full-zip-jacket-m-green-1281","links":{},"stock":{"item_id":1281,"product_id":1281,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-m-green-1281.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1293","_score":1,"_source":{"id":1293,"sku":"WJ07-S-Orange","name":"Inez Full Zip Jacket-S-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                \n

                • Purple heather inset full zip jacket.
                • Full zip hoodie.
                • Contrast binding along the zipper, hood and sleeves.
                • Inseam pockets for storage.
                • Thumbholes for comfortable fit.

                ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"inez-full-zip-jacket-s-orange-1293","links":{},"stock":{"item_id":1293,"product_id":1293,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-s-orange-1293.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1299","_score":1,"_source":{"id":1299,"sku":"WJ07-L-Orange","name":"Inez Full Zip Jacket-L-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                \n

                • Purple heather inset full zip jacket.
                • Full zip hoodie.
                • Contrast binding along the zipper, hood and sleeves.
                • Inseam pockets for storage.
                • Thumbholes for comfortable fit.

                ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"inez-full-zip-jacket-l-orange-1299","links":{},"stock":{"item_id":1299,"product_id":1299,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-l-orange-1299.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1275","_score":1,"_source":{"id":1275,"sku":"WJ05-XS-Green","name":"Riona Full Zip Jacket-XS-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                \n

                • Brown heather full zip rouched jacket.
                • Side hand pockets for extra storage.
                • High collar.
                • Thick cuffs for extra coverage.
                • Durable, shape retention material to longer wear.

                ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"riona-full-zip-jacket-xs-green-1275","links":{},"stock":{"item_id":1275,"product_id":1275,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xs-green-1275.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1290","_score":1,"_source":{"id":1290,"sku":"WJ07-XS-Orange","name":"Inez Full Zip Jacket-XS-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                \n

                • Purple heather inset full zip jacket.
                • Full zip hoodie.
                • Contrast binding along the zipper, hood and sleeves.
                • Inseam pockets for storage.
                • Thumbholes for comfortable fit.

                ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"inez-full-zip-jacket-xs-orange-1290","links":{},"stock":{"item_id":1290,"product_id":1290,"stock_id":1,"qty":51,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xs-orange-1290.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1294","_score":1,"_source":{"id":1294,"sku":"WJ07-S-Purple","name":"Inez Full Zip Jacket-S-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                \n

                • Purple heather inset full zip jacket.
                • Full zip hoodie.
                • Contrast binding along the zipper, hood and sleeves.
                • Inseam pockets for storage.
                • Thumbholes for comfortable fit.

                ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"inez-full-zip-jacket-s-purple-1294","links":{},"stock":{"item_id":1294,"product_id":1294,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-s-purple-1294.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1297","_score":1,"_source":{"id":1297,"sku":"WJ07-M-Purple","name":"Inez Full Zip Jacket-M-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                \n

                • Purple heather inset full zip jacket.
                • Full zip hoodie.
                • Contrast binding along the zipper, hood and sleeves.
                • Inseam pockets for storage.
                • Thumbholes for comfortable fit.

                ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"inez-full-zip-jacket-m-purple-1297","links":{},"stock":{"item_id":1297,"product_id":1297,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-m-purple-1297.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1295","_score":1,"_source":{"id":1295,"sku":"WJ07-S-Red","name":"Inez Full Zip Jacket-S-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                \n

                • Purple heather inset full zip jacket.
                • Full zip hoodie.
                • Contrast binding along the zipper, hood and sleeves.
                • Inseam pockets for storage.
                • Thumbholes for comfortable fit.

                ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"inez-full-zip-jacket-s-red-1295","links":{},"stock":{"item_id":1295,"product_id":1295,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-s-red-1295.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1291","_score":1,"_source":{"id":1291,"sku":"WJ07-XS-Purple","name":"Inez Full Zip Jacket-XS-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                \n

                • Purple heather inset full zip jacket.
                • Full zip hoodie.
                • Contrast binding along the zipper, hood and sleeves.
                • Inseam pockets for storage.
                • Thumbholes for comfortable fit.

                ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"inez-full-zip-jacket-xs-purple-1291","links":{},"stock":{"item_id":1291,"product_id":1291,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xs-purple-1291.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1298","_score":1,"_source":{"id":1298,"sku":"WJ07-M-Red","name":"Inez Full Zip Jacket-M-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                \n

                • Purple heather inset full zip jacket.
                • Full zip hoodie.
                • Contrast binding along the zipper, hood and sleeves.
                • Inseam pockets for storage.
                • Thumbholes for comfortable fit.

                ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"inez-full-zip-jacket-m-red-1298","links":{},"stock":{"item_id":1298,"product_id":1298,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-m-red-1298.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1296","_score":1,"_source":{"id":1296,"sku":"WJ07-M-Orange","name":"Inez Full Zip Jacket-M-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                \n

                • Purple heather inset full zip jacket.
                • Full zip hoodie.
                • Contrast binding along the zipper, hood and sleeves.
                • Inseam pockets for storage.
                • Thumbholes for comfortable fit.

                ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"inez-full-zip-jacket-m-orange-1296","links":{},"stock":{"item_id":1296,"product_id":1296,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-m-orange-1296.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1257","_score":1,"_source":{"id":1257,"sku":"WJ03","name":"Augusta Pullover Jacket","attribute_set_id":9,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                \n

                • Pink half-zip pullover.
                • Front pouch pockets.
                • Fold-down collar.

                ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"augusta-pullover-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[118,137,125,126,128],"pattern":"197","climate":[202,204,205,206,208],"slug":"augusta-pullover-jacket-1257","links":{},"stock":{"item_id":1257,"product_id":1257,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ03-XS-Blue","id":1242,"status":1,"name":"Augusta Pullover Jacket-XS-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"50","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","url_key":"augusta-pullover-jacket-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ03-XS-Orange","id":1243,"status":1,"name":"Augusta Pullover Jacket-XS-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"56","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","url_key":"augusta-pullover-jacket-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ03-XS-Red","id":1244,"status":1,"name":"Augusta Pullover Jacket-XS-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"58","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","url_key":"augusta-pullover-jacket-xs-red","msrp_display_actual_price_type":"0"},{"sku":"WJ03-S-Blue","id":1245,"status":1,"name":"Augusta Pullover Jacket-S-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"50","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","url_key":"augusta-pullover-jacket-s-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ03-S-Orange","id":1246,"status":1,"name":"Augusta Pullover Jacket-S-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"56","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","url_key":"augusta-pullover-jacket-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ03-S-Red","id":1247,"status":1,"name":"Augusta Pullover Jacket-S-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"58","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","url_key":"augusta-pullover-jacket-s-red","msrp_display_actual_price_type":"0"},{"sku":"WJ03-M-Blue","id":1248,"status":1,"name":"Augusta Pullover Jacket-M-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"50","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","url_key":"augusta-pullover-jacket-m-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ03-M-Orange","id":1249,"status":1,"name":"Augusta Pullover Jacket-M-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"56","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","url_key":"augusta-pullover-jacket-m-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ03-M-Red","id":1250,"status":1,"name":"Augusta Pullover Jacket-M-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"58","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","url_key":"augusta-pullover-jacket-m-red","msrp_display_actual_price_type":"0"},{"sku":"WJ03-L-Blue","id":1251,"status":1,"name":"Augusta Pullover Jacket-L-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"50","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","url_key":"augusta-pullover-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ03-L-Orange","id":1252,"status":1,"name":"Augusta Pullover Jacket-L-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"56","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","url_key":"augusta-pullover-jacket-l-orange","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ03-L-Red","id":1253,"status":1,"name":"Augusta Pullover Jacket-L-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"58","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","url_key":"augusta-pullover-jacket-l-red","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ03-XL-Blue","id":1254,"status":1,"name":"Augusta Pullover Jacket-XL-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"50","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","url_key":"augusta-pullover-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ03-XL-Orange","id":1255,"status":1,"name":"Augusta Pullover Jacket-XL-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"56","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","url_key":"augusta-pullover-jacket-xl-orange","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ03-XL-Red","id":1256,"status":1,"name":"Augusta Pullover Jacket-XL-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"58","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","url_key":"augusta-pullover-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57}],"configurable_options":[{"id":175,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":1257,"attribute_code":"color"},{"id":174,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1257,"attribute_code":"size"}],"color_options":[50,56,58],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-1257.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1273","_score":1,"_source":{"id":1273,"sku":"WJ04","name":"Ingrid Running Jacket","attribute_set_id":9,"price":84,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                • Slim fit.
                • Moisture-wicking fabric.
                • Two side pockets.
                • Zippered pocket at back waist.
                • Machine wash/dry.
                • Ivory specked full zip

                ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ingrid-running-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38,156],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_general":[118,120,129],"pattern":"197","climate":[204,208,210,211],"slug":"ingrid-running-jacket-1273","links":{},"stock":{"item_id":1273,"product_id":1273,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ04-XS-Orange","id":1258,"status":1,"name":"Ingrid Running Jacket-XS-Orange","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"167","color":"56","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","url_key":"ingrid-running-jacket-xs-orange","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-XS-Red","id":1259,"status":1,"name":"Ingrid Running Jacket-XS-Red","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"167","color":"58","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","url_key":"ingrid-running-jacket-xs-red","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-XS-White","id":1260,"status":1,"name":"Ingrid Running Jacket-XS-White","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"167","color":"59","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","url_key":"ingrid-running-jacket-xs-white","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-S-Orange","id":1261,"status":1,"name":"Ingrid Running Jacket-S-Orange","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"168","color":"56","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","url_key":"ingrid-running-jacket-s-orange","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-S-Red","id":1262,"status":1,"name":"Ingrid Running Jacket-S-Red","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"168","color":"58","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","url_key":"ingrid-running-jacket-s-red","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-S-White","id":1263,"status":1,"name":"Ingrid Running Jacket-S-White","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"168","color":"59","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","url_key":"ingrid-running-jacket-s-white","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-M-Orange","id":1264,"status":1,"name":"Ingrid Running Jacket-M-Orange","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"169","color":"56","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","url_key":"ingrid-running-jacket-m-orange","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-M-Red","id":1265,"status":1,"name":"Ingrid Running Jacket-M-Red","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"169","color":"58","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","url_key":"ingrid-running-jacket-m-red","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-M-White","id":1266,"status":1,"name":"Ingrid Running Jacket-M-White","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"169","color":"59","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","url_key":"ingrid-running-jacket-m-white","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-L-Orange","id":1267,"status":1,"name":"Ingrid Running Jacket-L-Orange","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"170","color":"56","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","url_key":"ingrid-running-jacket-l-orange","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-L-Red","id":1268,"status":1,"name":"Ingrid Running Jacket-L-Red","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"170","color":"58","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","url_key":"ingrid-running-jacket-l-red","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-L-White","id":1269,"status":1,"name":"Ingrid Running Jacket-L-White","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"170","color":"59","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","url_key":"ingrid-running-jacket-l-white","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-XL-Orange","id":1270,"status":1,"name":"Ingrid Running Jacket-XL-Orange","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"171","color":"56","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","url_key":"ingrid-running-jacket-xl-orange","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-XL-Red","id":1271,"status":1,"name":"Ingrid Running Jacket-XL-Red","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"171","color":"58","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","url_key":"ingrid-running-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-XL-White","id":1272,"status":1,"name":"Ingrid Running Jacket-XL-White","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"171","color":"59","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","url_key":"ingrid-running-jacket-xl-white","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84}],"configurable_options":[{"id":177,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":1273,"attribute_code":"color"},{"id":176,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1273,"attribute_code":"size"}],"color_options":[56,58,59],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-1273.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1289","_score":1,"_source":{"id":1289,"sku":"WJ05","name":"Riona Full Zip Jacket","attribute_set_id":9,"price":60,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                \n

                • Brown heather full zip rouched jacket.
                • Side hand pockets for extra storage.
                • High collar.
                • Thick cuffs for extra coverage.
                • Durable, shape retention material to longer wear.

                ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"riona-full-zip-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,148,149],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[117,118,121,125,126,129],"pattern":"197","climate":[203,204,208,211],"slug":"riona-full-zip-jacket-1289","links":{},"stock":{"item_id":1289,"product_id":1289,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ05-XS-Brown","id":1274,"status":1,"name":"Riona Full Zip Jacket-XS-Brown","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"51","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","url_key":"riona-full-zip-jacket-xs-brown","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-XS-Green","id":1275,"status":1,"name":"Riona Full Zip Jacket-XS-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"53","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","url_key":"riona-full-zip-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-XS-Red","id":1276,"status":1,"name":"Riona Full Zip Jacket-XS-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"58","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","url_key":"riona-full-zip-jacket-xs-red","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-S-Brown","id":1277,"status":1,"name":"Riona Full Zip Jacket-S-Brown","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"51","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","url_key":"riona-full-zip-jacket-s-brown","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-S-Green","id":1278,"status":1,"name":"Riona Full Zip Jacket-S-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"53","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","url_key":"riona-full-zip-jacket-s-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-S-Red","id":1279,"status":1,"name":"Riona Full Zip Jacket-S-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"58","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","url_key":"riona-full-zip-jacket-s-red","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-M-Brown","id":1280,"status":1,"name":"Riona Full Zip Jacket-M-Brown","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"51","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","url_key":"riona-full-zip-jacket-m-brown","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-M-Green","id":1281,"status":1,"name":"Riona Full Zip Jacket-M-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"53","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","url_key":"riona-full-zip-jacket-m-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-M-Red","id":1282,"status":1,"name":"Riona Full Zip Jacket-M-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"58","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","url_key":"riona-full-zip-jacket-m-red","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-L-Brown","id":1283,"status":1,"name":"Riona Full Zip Jacket-L-Brown","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"51","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","url_key":"riona-full-zip-jacket-l-brown","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-L-Green","id":1284,"status":1,"name":"Riona Full Zip Jacket-L-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"53","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","url_key":"riona-full-zip-jacket-l-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-L-Red","id":1285,"status":1,"name":"Riona Full Zip Jacket-L-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"58","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","url_key":"riona-full-zip-jacket-l-red","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-XL-Brown","id":1286,"status":1,"name":"Riona Full Zip Jacket-XL-Brown","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"51","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","url_key":"riona-full-zip-jacket-xl-brown","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-XL-Green","id":1287,"status":1,"name":"Riona Full Zip Jacket-XL-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"53","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","url_key":"riona-full-zip-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-XL-Red","id":1288,"status":1,"name":"Riona Full Zip Jacket-XL-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"58","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","url_key":"riona-full-zip-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60}],"configurable_options":[{"id":179,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":51,"label":"Brown"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1289,"attribute_code":"color"},{"id":178,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1289,"attribute_code":"size"}],"color_options":[51,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-1289.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1316","_score":1,"_source":{"id":1316,"sku":"WJ08-L-Orange","name":"Adrienne Trek Jacket-L-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                \n

                • gray 1/4 zip pullover.
                • Comfortable, relaxed fit.
                • Front zip for venting.
                • Spacious, kangaroo pockets.
                • 27\" body length.
                • 95% Organic Cotton / 5% Spandex.

                ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"adrienne-trek-jacket-l-orange-1316","links":{},"stock":{"item_id":1316,"product_id":1316,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-l-orange-1316.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1301","_score":1,"_source":{"id":1301,"sku":"WJ07-L-Red","name":"Inez Full Zip Jacket-L-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                \n

                • Purple heather inset full zip jacket.
                • Full zip hoodie.
                • Contrast binding along the zipper, hood and sleeves.
                • Inseam pockets for storage.
                • Thumbholes for comfortable fit.

                ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"inez-full-zip-jacket-l-red-1301","links":{},"stock":{"item_id":1301,"product_id":1301,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-l-red-1301.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1310","_score":1,"_source":{"id":1310,"sku":"WJ08-S-Orange","name":"Adrienne Trek Jacket-S-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                \n

                • gray 1/4 zip pullover.
                • Comfortable, relaxed fit.
                • Front zip for venting.
                • Spacious, kangaroo pockets.
                • 27\" body length.
                • 95% Organic Cotton / 5% Spandex.

                ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"adrienne-trek-jacket-s-orange-1310","links":{},"stock":{"item_id":1310,"product_id":1310,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-s-orange-1310.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1312","_score":1,"_source":{"id":1312,"sku":"WJ08-M-Gray","name":"Adrienne Trek Jacket-M-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                \n

                • gray 1/4 zip pullover.
                • Comfortable, relaxed fit.
                • Front zip for venting.
                • Spacious, kangaroo pockets.
                • 27\" body length.
                • 95% Organic Cotton / 5% Spandex.

                ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"adrienne-trek-jacket-m-gray-1312","links":{},"stock":{"item_id":1312,"product_id":1312,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-m-gray-1312.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1318","_score":1,"_source":{"id":1318,"sku":"WJ08-XL-Gray","name":"Adrienne Trek Jacket-XL-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                \n

                • gray 1/4 zip pullover.
                • Comfortable, relaxed fit.
                • Front zip for venting.
                • Spacious, kangaroo pockets.
                • 27\" body length.
                • 95% Organic Cotton / 5% Spandex.

                ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"adrienne-trek-jacket-xl-gray-1318","links":{},"stock":{"item_id":1318,"product_id":1318,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xl-gray-1318.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1314","_score":1,"_source":{"id":1314,"sku":"WJ08-M-Purple","name":"Adrienne Trek Jacket-M-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                \n

                • gray 1/4 zip pullover.
                • Comfortable, relaxed fit.
                • Front zip for venting.
                • Spacious, kangaroo pockets.
                • 27\" body length.
                • 95% Organic Cotton / 5% Spandex.

                ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"adrienne-trek-jacket-m-purple-1314","links":{},"stock":{"item_id":1314,"product_id":1314,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-m-purple-1314.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1324","_score":1,"_source":{"id":1324,"sku":"WJ09-XS-Green","name":"Jade Yoga Jacket-XS-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                \n

                • Seafoam 1/4 zip pullover with purple stitching.
                • Lightweight, quick-drying, water-resistant construction.
                • Shirred details at front and back for a feminine look.
                • Hood collapses into collar.
                • Mesh liner for breathability.
                • Front zip pockets.
                • Hem cinches at sideseam.
                • 100% Polyester.

                ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jade-yoga-jacket-xs-green-1324","links":{},"stock":{"item_id":1324,"product_id":1324,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xs-green-1324.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1304","_score":1,"_source":{"id":1304,"sku":"WJ07-XL-Red","name":"Inez Full Zip Jacket-XL-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                \n

                • Purple heather inset full zip jacket.
                • Full zip hoodie.
                • Contrast binding along the zipper, hood and sleeves.
                • Inseam pockets for storage.
                • Thumbholes for comfortable fit.

                ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"inez-full-zip-jacket-xl-red-1304","links":{},"stock":{"item_id":1304,"product_id":1304,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xl-red-1304.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1308","_score":1,"_source":{"id":1308,"sku":"WJ08-XS-Purple","name":"Adrienne Trek Jacket-XS-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                \n

                • gray 1/4 zip pullover.
                • Comfortable, relaxed fit.
                • Front zip for venting.
                • Spacious, kangaroo pockets.
                • 27\" body length.
                • 95% Organic Cotton / 5% Spandex.

                ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"adrienne-trek-jacket-xs-purple-1308","links":{},"stock":{"item_id":1308,"product_id":1308,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xs-purple-1308.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1329","_score":1,"_source":{"id":1329,"sku":"WJ09-M-Gray","name":"Jade Yoga Jacket-M-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                \n

                • Seafoam 1/4 zip pullover with purple stitching.
                • Lightweight, quick-drying, water-resistant construction.
                • Shirred details at front and back for a feminine look.
                • Hood collapses into collar.
                • Mesh liner for breathability.
                • Front zip pockets.
                • Hem cinches at sideseam.
                • 100% Polyester.

                ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jade-yoga-jacket-m-gray-1329","links":{},"stock":{"item_id":1329,"product_id":1329,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-m-gray-1329.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1313","_score":1,"_source":{"id":1313,"sku":"WJ08-M-Orange","name":"Adrienne Trek Jacket-M-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                \n

                • gray 1/4 zip pullover.
                • Comfortable, relaxed fit.
                • Front zip for venting.
                • Spacious, kangaroo pockets.
                • 27\" body length.
                • 95% Organic Cotton / 5% Spandex.

                ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"adrienne-trek-jacket-m-orange-1313","links":{},"stock":{"item_id":1313,"product_id":1313,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-m-orange-1313.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1302","_score":1,"_source":{"id":1302,"sku":"WJ07-XL-Orange","name":"Inez Full Zip Jacket-XL-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                \n

                • Purple heather inset full zip jacket.
                • Full zip hoodie.
                • Contrast binding along the zipper, hood and sleeves.
                • Inseam pockets for storage.
                • Thumbholes for comfortable fit.

                ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"inez-full-zip-jacket-xl-orange-1302","links":{},"stock":{"item_id":1302,"product_id":1302,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xl-orange-1302.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1315","_score":1,"_source":{"id":1315,"sku":"WJ08-L-Gray","name":"Adrienne Trek Jacket-L-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                \n

                • gray 1/4 zip pullover.
                • Comfortable, relaxed fit.
                • Front zip for venting.
                • Spacious, kangaroo pockets.
                • 27\" body length.
                • 95% Organic Cotton / 5% Spandex.

                ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"adrienne-trek-jacket-l-gray-1315","links":{},"stock":{"item_id":1315,"product_id":1315,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-l-gray-1315.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1303","_score":1,"_source":{"id":1303,"sku":"WJ07-XL-Purple","name":"Inez Full Zip Jacket-XL-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                \n

                • Purple heather inset full zip jacket.
                • Full zip hoodie.
                • Contrast binding along the zipper, hood and sleeves.
                • Inseam pockets for storage.
                • Thumbholes for comfortable fit.

                ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"inez-full-zip-jacket-xl-purple-1303","links":{},"stock":{"item_id":1303,"product_id":1303,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xl-purple-1303.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1345","_score":1,"_source":{"id":1345,"sku":"WJ10-M-Orange","name":"Nadia Elements Shell-M-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                \n

                • Zippered front.
                • Zippered side pockets.
                • Drawstring-adjustable waist and hood.
                • Machine wash/line dry.
                • Light blue 1/4 zip pullover.

                ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nadia-elements-shell-m-orange-1345","links":{},"stock":{"item_id":1345,"product_id":1345,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-m-orange-1345.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1322","_score":1,"_source":{"id":1322,"sku":"WJ09-XS-Blue","name":"Jade Yoga Jacket-XS-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                \n

                • Seafoam 1/4 zip pullover with purple stitching.
                • Lightweight, quick-drying, water-resistant construction.
                • Shirred details at front and back for a feminine look.
                • Hood collapses into collar.
                • Mesh liner for breathability.
                • Front zip pockets.
                • Hem cinches at sideseam.
                • 100% Polyester.

                ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jade-yoga-jacket-xs-blue-1322","links":{},"stock":{"item_id":1322,"product_id":1322,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xs-blue-1322.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1307","_score":1,"_source":{"id":1307,"sku":"WJ08-XS-Orange","name":"Adrienne Trek Jacket-XS-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                \n

                • gray 1/4 zip pullover.
                • Comfortable, relaxed fit.
                • Front zip for venting.
                • Spacious, kangaroo pockets.
                • 27\" body length.
                • 95% Organic Cotton / 5% Spandex.

                ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"adrienne-trek-jacket-xs-orange-1307","links":{},"stock":{"item_id":1307,"product_id":1307,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xs-orange-1307.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1306","_score":1,"_source":{"id":1306,"sku":"WJ08-XS-Gray","name":"Adrienne Trek Jacket-XS-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                \n

                • gray 1/4 zip pullover.
                • Comfortable, relaxed fit.
                • Front zip for venting.
                • Spacious, kangaroo pockets.
                • 27\" body length.
                • 95% Organic Cotton / 5% Spandex.

                ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"adrienne-trek-jacket-xs-gray-1306","links":{},"stock":{"item_id":1306,"product_id":1306,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xs-gray-1306.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1326","_score":1,"_source":{"id":1326,"sku":"WJ09-S-Gray","name":"Jade Yoga Jacket-S-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                \n

                • Seafoam 1/4 zip pullover with purple stitching.
                • Lightweight, quick-drying, water-resistant construction.
                • Shirred details at front and back for a feminine look.
                • Hood collapses into collar.
                • Mesh liner for breathability.
                • Front zip pockets.
                • Hem cinches at sideseam.
                • 100% Polyester.

                ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jade-yoga-jacket-s-gray-1326","links":{},"stock":{"item_id":1326,"product_id":1326,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-s-gray-1326.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1320","_score":1,"_source":{"id":1320,"sku":"WJ08-XL-Purple","name":"Adrienne Trek Jacket-XL-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                \n

                • gray 1/4 zip pullover.
                • Comfortable, relaxed fit.
                • Front zip for venting.
                • Spacious, kangaroo pockets.
                • 27\" body length.
                • 95% Organic Cotton / 5% Spandex.

                ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"adrienne-trek-jacket-xl-purple-1320","links":{},"stock":{"item_id":1320,"product_id":1320,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xl-purple-1320.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1338","_score":1,"_source":{"id":1338,"sku":"WJ10-XS-Black","name":"Nadia Elements Shell-XS-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                \n

                • Zippered front.
                • Zippered side pockets.
                • Drawstring-adjustable waist and hood.
                • Machine wash/line dry.
                • Light blue 1/4 zip pullover.

                ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nadia-elements-shell-xs-black-1338","links":{},"stock":{"item_id":1338,"product_id":1338,"stock_id":1,"qty":70,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xs-black-1338.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1319","_score":1,"_source":{"id":1319,"sku":"WJ08-XL-Orange","name":"Adrienne Trek Jacket-XL-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                \n

                • gray 1/4 zip pullover.
                • Comfortable, relaxed fit.
                • Front zip for venting.
                • Spacious, kangaroo pockets.
                • 27\" body length.
                • 95% Organic Cotton / 5% Spandex.

                ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"adrienne-trek-jacket-xl-orange-1319","links":{},"stock":{"item_id":1319,"product_id":1319,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xl-orange-1319.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1311","_score":1,"_source":{"id":1311,"sku":"WJ08-S-Purple","name":"Adrienne Trek Jacket-S-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                \n

                • gray 1/4 zip pullover.
                • Comfortable, relaxed fit.
                • Front zip for venting.
                • Spacious, kangaroo pockets.
                • 27\" body length.
                • 95% Organic Cotton / 5% Spandex.

                ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"adrienne-trek-jacket-s-purple-1311","links":{},"stock":{"item_id":1311,"product_id":1311,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-s-purple-1311.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1328","_score":1,"_source":{"id":1328,"sku":"WJ09-M-Blue","name":"Jade Yoga Jacket-M-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                \n

                • Seafoam 1/4 zip pullover with purple stitching.
                • Lightweight, quick-drying, water-resistant construction.
                • Shirred details at front and back for a feminine look.
                • Hood collapses into collar.
                • Mesh liner for breathability.
                • Front zip pockets.
                • Hem cinches at sideseam.
                • 100% Polyester.

                ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jade-yoga-jacket-m-blue-1328","links":{},"stock":{"item_id":1328,"product_id":1328,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-m-blue-1328.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1331","_score":1,"_source":{"id":1331,"sku":"WJ09-L-Blue","name":"Jade Yoga Jacket-L-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                \n

                • Seafoam 1/4 zip pullover with purple stitching.
                • Lightweight, quick-drying, water-resistant construction.
                • Shirred details at front and back for a feminine look.
                • Hood collapses into collar.
                • Mesh liner for breathability.
                • Front zip pockets.
                • Hem cinches at sideseam.
                • 100% Polyester.

                ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jade-yoga-jacket-l-blue-1331","links":{},"stock":{"item_id":1331,"product_id":1331,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-l-blue-1331.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1327","_score":1,"_source":{"id":1327,"sku":"WJ09-S-Green","name":"Jade Yoga Jacket-S-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                \n

                • Seafoam 1/4 zip pullover with purple stitching.
                • Lightweight, quick-drying, water-resistant construction.
                • Shirred details at front and back for a feminine look.
                • Hood collapses into collar.
                • Mesh liner for breathability.
                • Front zip pockets.
                • Hem cinches at sideseam.
                • 100% Polyester.

                ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jade-yoga-jacket-s-green-1327","links":{},"stock":{"item_id":1327,"product_id":1327,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-s-green-1327.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1356","_score":1,"_source":{"id":1356,"sku":"WJ11-XS-Orange","name":"Neve Studio Dance Jacket-XS-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                \n

                • Bright blue 1/4 zip pullover.
                • CoolTech™ liner is sweat-wicking.
                • Sleeve thumbholes.
                • Zipper garage to protect your chin.
                • Stretchy collar drawcords.

                ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"neve-studio-dance-jacket-xs-orange-1356","links":{},"stock":{"item_id":1356,"product_id":1356,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xs-orange-1356.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1372","_score":1,"_source":{"id":1372,"sku":"WJ06-XS-Purple","name":"Juno Jacket-XS-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                \n

                • Adjustable hood.
                • Fleece-lined, zippered hand pockets.
                • Thumbhole cuffs.
                • Full zip.
                • Mock-neck collar.
                • Machine wash/dry.

                ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juno-jacket-xs-purple-1372","links":{},"stock":{"item_id":1372,"product_id":1372,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xs-purple-1372.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1380","_score":1,"_source":{"id":1380,"sku":"WJ06-L-Green","name":"Juno Jacket-L-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                \n

                • Adjustable hood.
                • Fleece-lined, zippered hand pockets.
                • Thumbhole cuffs.
                • Full zip.
                • Mock-neck collar.
                • Machine wash/dry.

                ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juno-jacket-l-green-1380","links":{},"stock":{"item_id":1380,"product_id":1380,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-l-green-1380.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1358","_score":1,"_source":{"id":1358,"sku":"WJ11-S-Blue","name":"Neve Studio Dance Jacket-S-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                \n

                • Bright blue 1/4 zip pullover.
                • CoolTech™ liner is sweat-wicking.
                • Sleeve thumbholes.
                • Zipper garage to protect your chin.
                • Stretchy collar drawcords.

                ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"neve-studio-dance-jacket-s-blue-1358","links":{},"stock":{"item_id":1358,"product_id":1358,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-s-blue-1358.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1364","_score":1,"_source":{"id":1364,"sku":"WJ11-L-Blue","name":"Neve Studio Dance Jacket-L-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                \n

                • Bright blue 1/4 zip pullover.
                • CoolTech™ liner is sweat-wicking.
                • Sleeve thumbholes.
                • Zipper garage to protect your chin.
                • Stretchy collar drawcords.

                ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"neve-studio-dance-jacket-l-blue-1364","links":{},"stock":{"item_id":1364,"product_id":1364,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-l-blue-1364.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1361","_score":1,"_source":{"id":1361,"sku":"WJ11-M-Blue","name":"Neve Studio Dance Jacket-M-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                \n

                • Bright blue 1/4 zip pullover.
                • CoolTech™ liner is sweat-wicking.
                • Sleeve thumbholes.
                • Zipper garage to protect your chin.
                • Stretchy collar drawcords.

                ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"neve-studio-dance-jacket-m-blue-1361","links":{},"stock":{"item_id":1361,"product_id":1361,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-m-blue-1361.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1360","_score":1,"_source":{"id":1360,"sku":"WJ11-M-Black","name":"Neve Studio Dance Jacket-M-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                \n

                • Bright blue 1/4 zip pullover.
                • CoolTech™ liner is sweat-wicking.
                • Sleeve thumbholes.
                • Zipper garage to protect your chin.
                • Stretchy collar drawcords.

                ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"neve-studio-dance-jacket-m-black-1360","links":{},"stock":{"item_id":1360,"product_id":1360,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-m-black-1360.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1382","_score":1,"_source":{"id":1382,"sku":"WJ06-XL-Blue","name":"Juno Jacket-XL-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                \n

                • Adjustable hood.
                • Fleece-lined, zippered hand pockets.
                • Thumbhole cuffs.
                • Full zip.
                • Mock-neck collar.
                • Machine wash/dry.

                ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juno-jacket-xl-blue-1382","links":{},"stock":{"item_id":1382,"product_id":1382,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xl-blue-1382.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1357","_score":1,"_source":{"id":1357,"sku":"WJ11-S-Black","name":"Neve Studio Dance Jacket-S-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                \n

                • Bright blue 1/4 zip pullover.
                • CoolTech™ liner is sweat-wicking.
                • Sleeve thumbholes.
                • Zipper garage to protect your chin.
                • Stretchy collar drawcords.

                ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"neve-studio-dance-jacket-s-black-1357","links":{},"stock":{"item_id":1357,"product_id":1357,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-s-black-1357.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1376","_score":1,"_source":{"id":1376,"sku":"WJ06-M-Blue","name":"Juno Jacket-M-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                \n

                • Adjustable hood.
                • Fleece-lined, zippered hand pockets.
                • Thumbhole cuffs.
                • Full zip.
                • Mock-neck collar.
                • Machine wash/dry.

                ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juno-jacket-m-blue-1376","links":{},"stock":{"item_id":1376,"product_id":1376,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-m-blue-1376.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1354","_score":1,"_source":{"id":1354,"sku":"WJ11-XS-Black","name":"Neve Studio Dance Jacket-XS-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                \n

                • Bright blue 1/4 zip pullover.
                • CoolTech™ liner is sweat-wicking.
                • Sleeve thumbholes.
                • Zipper garage to protect your chin.
                • Stretchy collar drawcords.

                ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"neve-studio-dance-jacket-xs-black-1354","links":{},"stock":{"item_id":1354,"product_id":1354,"stock_id":1,"qty":45,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xs-black-1354.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1352","_score":1,"_source":{"id":1352,"sku":"WJ10-XL-Yellow","name":"Nadia Elements Shell-XL-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                \n

                • Zippered front.
                • Zippered side pockets.
                • Drawstring-adjustable waist and hood.
                • Machine wash/line dry.
                • Light blue 1/4 zip pullover.

                ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nadia-elements-shell-xl-yellow-1352","links":{},"stock":{"item_id":1352,"product_id":1352,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xl-yellow-1352.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1370","_score":1,"_source":{"id":1370,"sku":"WJ06-XS-Blue","name":"Juno Jacket-XS-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                \n

                • Adjustable hood.
                • Fleece-lined, zippered hand pockets.
                • Thumbhole cuffs.
                • Full zip.
                • Mock-neck collar.
                • Machine wash/dry.

                ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juno-jacket-xs-blue-1370","links":{},"stock":{"item_id":1370,"product_id":1370,"stock_id":1,"qty":10,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xs-blue-1370.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1363","_score":1,"_source":{"id":1363,"sku":"WJ11-L-Black","name":"Neve Studio Dance Jacket-L-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                \n

                • Bright blue 1/4 zip pullover.
                • CoolTech™ liner is sweat-wicking.
                • Sleeve thumbholes.
                • Zipper garage to protect your chin.
                • Stretchy collar drawcords.

                ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"neve-studio-dance-jacket-l-black-1363","links":{},"stock":{"item_id":1363,"product_id":1363,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-l-black-1363.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1362","_score":1,"_source":{"id":1362,"sku":"WJ11-M-Orange","name":"Neve Studio Dance Jacket-M-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                \n

                • Bright blue 1/4 zip pullover.
                • CoolTech™ liner is sweat-wicking.
                • Sleeve thumbholes.
                • Zipper garage to protect your chin.
                • Stretchy collar drawcords.

                ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"neve-studio-dance-jacket-m-orange-1362","links":{},"stock":{"item_id":1362,"product_id":1362,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-m-orange-1362.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1365","_score":1,"_source":{"id":1365,"sku":"WJ11-L-Orange","name":"Neve Studio Dance Jacket-L-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                \n

                • Bright blue 1/4 zip pullover.
                • CoolTech™ liner is sweat-wicking.
                • Sleeve thumbholes.
                • Zipper garage to protect your chin.
                • Stretchy collar drawcords.

                ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"neve-studio-dance-jacket-l-orange-1365","links":{},"stock":{"item_id":1365,"product_id":1365,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-l-orange-1365.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1377","_score":1,"_source":{"id":1377,"sku":"WJ06-M-Green","name":"Juno Jacket-M-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                \n

                • Adjustable hood.
                • Fleece-lined, zippered hand pockets.
                • Thumbhole cuffs.
                • Full zip.
                • Mock-neck collar.
                • Machine wash/dry.

                ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juno-jacket-m-green-1377","links":{},"stock":{"item_id":1377,"product_id":1377,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-m-green-1377.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1375","_score":1,"_source":{"id":1375,"sku":"WJ06-S-Purple","name":"Juno Jacket-S-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                \n

                • Adjustable hood.
                • Fleece-lined, zippered hand pockets.
                • Thumbhole cuffs.
                • Full zip.
                • Mock-neck collar.
                • Machine wash/dry.

                ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juno-jacket-s-purple-1375","links":{},"stock":{"item_id":1375,"product_id":1375,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-s-purple-1375.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1371","_score":1,"_source":{"id":1371,"sku":"WJ06-XS-Green","name":"Juno Jacket-XS-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                \n

                • Adjustable hood.
                • Fleece-lined, zippered hand pockets.
                • Thumbhole cuffs.
                • Full zip.
                • Mock-neck collar.
                • Machine wash/dry.

                ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juno-jacket-xs-green-1371","links":{},"stock":{"item_id":1371,"product_id":1371,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xs-green-1371.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1378","_score":1,"_source":{"id":1378,"sku":"WJ06-M-Purple","name":"Juno Jacket-M-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                \n

                • Adjustable hood.
                • Fleece-lined, zippered hand pockets.
                • Thumbhole cuffs.
                • Full zip.
                • Mock-neck collar.
                • Machine wash/dry.

                ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juno-jacket-m-purple-1378","links":{},"stock":{"item_id":1378,"product_id":1378,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-m-purple-1378.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1367","_score":1,"_source":{"id":1367,"sku":"WJ11-XL-Blue","name":"Neve Studio Dance Jacket-XL-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                \n

                • Bright blue 1/4 zip pullover.
                • CoolTech™ liner is sweat-wicking.
                • Sleeve thumbholes.
                • Zipper garage to protect your chin.
                • Stretchy collar drawcords.

                ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"neve-studio-dance-jacket-xl-blue-1367","links":{},"stock":{"item_id":1367,"product_id":1367,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xl-blue-1367.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1386","_score":1,"_source":{"id":1386,"sku":"WJ12-XS-Black","name":"Olivia 1/4 Zip Light Jacket-XS-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.

                ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"olivia-14-zip-light-jacket-xs-black-1386","links":{},"stock":{"item_id":1386,"product_id":1386,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-05-10 04:47:58","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xs-black-1386.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1383","_score":1,"_source":{"id":1383,"sku":"WJ06-XL-Green","name":"Juno Jacket-XL-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                \n

                • Adjustable hood.
                • Fleece-lined, zippered hand pockets.
                • Thumbhole cuffs.
                • Full zip.
                • Mock-neck collar.
                • Machine wash/dry.

                ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juno-jacket-xl-green-1383","links":{},"stock":{"item_id":1383,"product_id":1383,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xl-green-1383.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1387","_score":1,"_source":{"id":1387,"sku":"WJ12-XS-Blue","name":"Olivia 1/4 Zip Light Jacket-XS-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.

                ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"olivia-14-zip-light-jacket-xs-blue-1387","links":{},"stock":{"item_id":1387,"product_id":1387,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xs-blue-1387.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1337","_score":1,"_source":{"id":1337,"sku":"WJ09","name":"Jade Yoga Jacket","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                \n

                • Seafoam 1/4 zip pullover with purple stitching.
                • Lightweight, quick-drying, water-resistant construction.
                • Shirred details at front and back for a feminine look.
                • Hood collapses into collar.
                • Mesh liner for breathability.
                • Front zip pockets.
                • Hem cinches at sideseam.
                • 100% Polyester.

                ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"jade-yoga-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[118,120,121,125,128],"pattern":"197","climate":[204,206,208,210],"slug":"jade-yoga-jacket-1337","links":{},"stock":{"item_id":1337,"product_id":1337,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ09-XS-Blue","id":1322,"status":1,"name":"Jade Yoga Jacket-XS-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"167","color":"50","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","url_key":"jade-yoga-jacket-xs-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-XS-Gray","id":1323,"status":1,"name":"Jade Yoga Jacket-XS-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"167","color":"52","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","url_key":"jade-yoga-jacket-xs-gray","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-XS-Green","id":1324,"status":1,"name":"Jade Yoga Jacket-XS-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"167","color":"53","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","url_key":"jade-yoga-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-S-Blue","id":1325,"status":1,"name":"Jade Yoga Jacket-S-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"168","color":"50","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","url_key":"jade-yoga-jacket-s-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-S-Gray","id":1326,"status":1,"name":"Jade Yoga Jacket-S-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"168","color":"52","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","url_key":"jade-yoga-jacket-s-gray","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-S-Green","id":1327,"status":1,"name":"Jade Yoga Jacket-S-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"168","color":"53","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","url_key":"jade-yoga-jacket-s-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-M-Blue","id":1328,"status":1,"name":"Jade Yoga Jacket-M-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"169","color":"50","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","url_key":"jade-yoga-jacket-m-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-M-Gray","id":1329,"status":1,"name":"Jade Yoga Jacket-M-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"169","color":"52","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","url_key":"jade-yoga-jacket-m-gray","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-M-Green","id":1330,"status":1,"name":"Jade Yoga Jacket-M-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"169","color":"53","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","url_key":"jade-yoga-jacket-m-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-L-Blue","id":1331,"status":1,"name":"Jade Yoga Jacket-L-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"170","color":"50","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","url_key":"jade-yoga-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-L-Gray","id":1332,"status":1,"name":"Jade Yoga Jacket-L-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"170","color":"52","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","url_key":"jade-yoga-jacket-l-gray","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-L-Green","id":1333,"status":1,"name":"Jade Yoga Jacket-L-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"170","color":"53","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","url_key":"jade-yoga-jacket-l-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-XL-Blue","id":1334,"status":1,"name":"Jade Yoga Jacket-XL-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"171","color":"50","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","url_key":"jade-yoga-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-XL-Gray","id":1335,"status":1,"name":"Jade Yoga Jacket-XL-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"171","color":"52","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","url_key":"jade-yoga-jacket-xl-gray","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-XL-Green","id":1336,"status":1,"name":"Jade Yoga Jacket-XL-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"171","color":"53","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","url_key":"jade-yoga-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32}],"configurable_options":[{"id":185,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":1337,"attribute_code":"color"},{"id":184,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1337,"attribute_code":"size"}],"color_options":[50,52,53],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-1337.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1321","_score":1,"_source":{"id":1321,"sku":"WJ08","name":"Adrienne Trek Jacket","attribute_set_id":9,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                \n

                • gray 1/4 zip pullover.
                • Comfortable, relaxed fit.
                • Front zip for venting.
                • Spacious, kangaroo pockets.
                • 27\" body length.
                • 95% Organic Cotton / 5% Spandex.

                ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"adrienne-trek-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,151],"eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"1","style_general":[118,120,123,124,126,128],"pattern":"197","climate":[202,204,206,208,211],"slug":"adrienne-trek-jacket-1321","links":{},"stock":{"item_id":1321,"product_id":1321,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ08-XS-Gray","id":1306,"status":1,"name":"Adrienne Trek Jacket-XS-Gray","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"167","color":"52","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","url_key":"adrienne-trek-jacket-xs-gray","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-XS-Orange","id":1307,"status":1,"name":"Adrienne Trek Jacket-XS-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"167","color":"56","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","url_key":"adrienne-trek-jacket-xs-orange","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-XS-Purple","id":1308,"status":1,"name":"Adrienne Trek Jacket-XS-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"167","color":"57","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","url_key":"adrienne-trek-jacket-xs-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-S-Gray","id":1309,"status":1,"name":"Adrienne Trek Jacket-S-Gray","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"168","color":"52","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","url_key":"adrienne-trek-jacket-s-gray","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-S-Orange","id":1310,"status":1,"name":"Adrienne Trek Jacket-S-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"168","color":"56","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","url_key":"adrienne-trek-jacket-s-orange","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-S-Purple","id":1311,"status":1,"name":"Adrienne Trek Jacket-S-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"168","color":"57","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","url_key":"adrienne-trek-jacket-s-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-M-Gray","id":1312,"status":1,"name":"Adrienne Trek Jacket-M-Gray","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"169","color":"52","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","url_key":"adrienne-trek-jacket-m-gray","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-M-Orange","id":1313,"status":1,"name":"Adrienne Trek Jacket-M-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"169","color":"56","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","url_key":"adrienne-trek-jacket-m-orange","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-M-Purple","id":1314,"status":1,"name":"Adrienne Trek Jacket-M-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"169","color":"57","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","url_key":"adrienne-trek-jacket-m-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-L-Gray","id":1315,"status":1,"name":"Adrienne Trek Jacket-L-Gray","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"170","color":"52","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","url_key":"adrienne-trek-jacket-l-gray","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-L-Orange","id":1316,"status":1,"name":"Adrienne Trek Jacket-L-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"170","color":"56","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","url_key":"adrienne-trek-jacket-l-orange","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-L-Purple","id":1317,"status":1,"name":"Adrienne Trek Jacket-L-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"170","color":"57","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","url_key":"adrienne-trek-jacket-l-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-XL-Gray","id":1318,"status":1,"name":"Adrienne Trek Jacket-XL-Gray","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"171","color":"52","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","url_key":"adrienne-trek-jacket-xl-gray","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-XL-Orange","id":1319,"status":1,"name":"Adrienne Trek Jacket-XL-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"171","color":"56","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","url_key":"adrienne-trek-jacket-xl-orange","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-XL-Purple","id":1320,"status":1,"name":"Adrienne Trek Jacket-XL-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"171","color":"57","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","url_key":"adrienne-trek-jacket-xl-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57}],"configurable_options":[{"id":183,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1321,"attribute_code":"color"},{"id":182,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1321,"attribute_code":"size"}],"color_options":[52,56,57],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-1321.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1274","_score":1,"_source":{"id":1274,"sku":"WJ05-XS-Brown","name":"Riona Full Zip Jacket-XS-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                \n

                • Brown heather full zip rouched jacket.
                • Side hand pockets for extra storage.
                • High collar.
                • Thick cuffs for extra coverage.
                • Durable, shape retention material to longer wear.

                ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xs-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"riona-full-zip-jacket-xs-brown-1274","links":{},"stock":{"item_id":1274,"product_id":1274,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xs-brown-1274.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1256","_score":1,"_source":{"id":1256,"sku":"WJ03-XL-Red","name":"Augusta Pullover Jacket-XL-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                \n

                • Pink half-zip pullover.
                • Front pouch pockets.
                • Fold-down collar.

                ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"augusta-pullover-jacket-xl-red-1256","links":{},"stock":{"item_id":1256,"product_id":1256,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xl-red-1256.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1260","_score":1,"_source":{"id":1260,"sku":"WJ04-XS-White","name":"Ingrid Running Jacket-XS-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                • Slim fit.
                • Moisture-wicking fabric.
                • Two side pockets.
                • Zippered pocket at back waist.
                • Machine wash/dry.
                • Ivory specked full zip

                ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ingrid-running-jacket-xs-white-1260","links":{},"stock":{"item_id":1260,"product_id":1260,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xs-white-1260.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1267","_score":1,"_source":{"id":1267,"sku":"WJ04-L-Orange","name":"Ingrid Running Jacket-L-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                • Slim fit.
                • Moisture-wicking fabric.
                • Two side pockets.
                • Zippered pocket at back waist.
                • Machine wash/dry.
                • Ivory specked full zip

                ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ingrid-running-jacket-l-orange-1267","links":{},"stock":{"item_id":1267,"product_id":1267,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-l-orange-1267.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1252","_score":1,"_source":{"id":1252,"sku":"WJ03-L-Orange","name":"Augusta Pullover Jacket-L-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                \n

                • Pink half-zip pullover.
                • Front pouch pockets.
                • Fold-down collar.

                ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"augusta-pullover-jacket-l-orange-1252","links":{},"stock":{"item_id":1252,"product_id":1252,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-l-orange-1252.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1266","_score":1,"_source":{"id":1266,"sku":"WJ04-M-White","name":"Ingrid Running Jacket-M-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                • Slim fit.
                • Moisture-wicking fabric.
                • Two side pockets.
                • Zippered pocket at back waist.
                • Machine wash/dry.
                • Ivory specked full zip

                ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ingrid-running-jacket-m-white-1266","links":{},"stock":{"item_id":1266,"product_id":1266,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-m-white-1266.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1264","_score":1,"_source":{"id":1264,"sku":"WJ04-M-Orange","name":"Ingrid Running Jacket-M-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                • Slim fit.
                • Moisture-wicking fabric.
                • Two side pockets.
                • Zippered pocket at back waist.
                • Machine wash/dry.
                • Ivory specked full zip

                ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ingrid-running-jacket-m-orange-1264","links":{},"stock":{"item_id":1264,"product_id":1264,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-m-orange-1264.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1292","_score":1,"_source":{"id":1292,"sku":"WJ07-XS-Red","name":"Inez Full Zip Jacket-XS-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                \n

                • Purple heather inset full zip jacket.
                • Full zip hoodie.
                • Contrast binding along the zipper, hood and sleeves.
                • Inseam pockets for storage.
                • Thumbholes for comfortable fit.

                ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"inez-full-zip-jacket-xs-red-1292","links":{},"stock":{"item_id":1292,"product_id":1292,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xs-red-1292.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1277","_score":1,"_source":{"id":1277,"sku":"WJ05-S-Brown","name":"Riona Full Zip Jacket-S-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                \n

                • Brown heather full zip rouched jacket.
                • Side hand pockets for extra storage.
                • High collar.
                • Thick cuffs for extra coverage.
                • Durable, shape retention material to longer wear.

                ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-s-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"riona-full-zip-jacket-s-brown-1277","links":{},"stock":{"item_id":1277,"product_id":1277,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-s-brown-1277.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1272","_score":1,"_source":{"id":1272,"sku":"WJ04-XL-White","name":"Ingrid Running Jacket-XL-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                • Slim fit.
                • Moisture-wicking fabric.
                • Two side pockets.
                • Zippered pocket at back waist.
                • Machine wash/dry.
                • Ivory specked full zip

                ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ingrid-running-jacket-xl-white-1272","links":{},"stock":{"item_id":1272,"product_id":1272,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xl-white-1272.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1300","_score":1,"_source":{"id":1300,"sku":"WJ07-L-Purple","name":"Inez Full Zip Jacket-L-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                \n

                • Purple heather inset full zip jacket.
                • Full zip hoodie.
                • Contrast binding along the zipper, hood and sleeves.
                • Inseam pockets for storage.
                • Thumbholes for comfortable fit.

                ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"inez-full-zip-jacket-l-purple-1300","links":{},"stock":{"item_id":1300,"product_id":1300,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-l-purple-1300.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1278","_score":1,"_source":{"id":1278,"sku":"WJ05-S-Green","name":"Riona Full Zip Jacket-S-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                \n

                • Brown heather full zip rouched jacket.
                • Side hand pockets for extra storage.
                • High collar.
                • Thick cuffs for extra coverage.
                • Durable, shape retention material to longer wear.

                ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"riona-full-zip-jacket-s-green-1278","links":{},"stock":{"item_id":1278,"product_id":1278,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-s-green-1278.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1253","_score":1,"_source":{"id":1253,"sku":"WJ03-L-Red","name":"Augusta Pullover Jacket-L-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                \n

                • Pink half-zip pullover.
                • Front pouch pockets.
                • Fold-down collar.

                ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"augusta-pullover-jacket-l-red-1253","links":{},"stock":{"item_id":1253,"product_id":1253,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-l-red-1253.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1282","_score":1,"_source":{"id":1282,"sku":"WJ05-M-Red","name":"Riona Full Zip Jacket-M-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                \n

                • Brown heather full zip rouched jacket.
                • Side hand pockets for extra storage.
                • High collar.
                • Thick cuffs for extra coverage.
                • Durable, shape retention material to longer wear.

                ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"riona-full-zip-jacket-m-red-1282","links":{},"stock":{"item_id":1282,"product_id":1282,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-m-red-1282.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1288","_score":1,"_source":{"id":1288,"sku":"WJ05-XL-Red","name":"Riona Full Zip Jacket-XL-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                \n

                • Brown heather full zip rouched jacket.
                • Side hand pockets for extra storage.
                • High collar.
                • Thick cuffs for extra coverage.
                • Durable, shape retention material to longer wear.

                ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"riona-full-zip-jacket-xl-red-1288","links":{},"stock":{"item_id":1288,"product_id":1288,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xl-red-1288.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1287","_score":1,"_source":{"id":1287,"sku":"WJ05-XL-Green","name":"Riona Full Zip Jacket-XL-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                \n

                • Brown heather full zip rouched jacket.
                • Side hand pockets for extra storage.
                • High collar.
                • Thick cuffs for extra coverage.
                • Durable, shape retention material to longer wear.

                ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"riona-full-zip-jacket-xl-green-1287","links":{},"stock":{"item_id":1287,"product_id":1287,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xl-green-1287.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1284","_score":1,"_source":{"id":1284,"sku":"WJ05-L-Green","name":"Riona Full Zip Jacket-L-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                \n

                • Brown heather full zip rouched jacket.
                • Side hand pockets for extra storage.
                • High collar.
                • Thick cuffs for extra coverage.
                • Durable, shape retention material to longer wear.

                ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"riona-full-zip-jacket-l-green-1284","links":{},"stock":{"item_id":1284,"product_id":1284,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-l-green-1284.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1280","_score":1,"_source":{"id":1280,"sku":"WJ05-M-Brown","name":"Riona Full Zip Jacket-M-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                \n

                • Brown heather full zip rouched jacket.
                • Side hand pockets for extra storage.
                • High collar.
                • Thick cuffs for extra coverage.
                • Durable, shape retention material to longer wear.

                ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-m-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"riona-full-zip-jacket-m-brown-1280","links":{},"stock":{"item_id":1280,"product_id":1280,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-m-brown-1280.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1270","_score":1,"_source":{"id":1270,"sku":"WJ04-XL-Orange","name":"Ingrid Running Jacket-XL-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                • Slim fit.
                • Moisture-wicking fabric.
                • Two side pockets.
                • Zippered pocket at back waist.
                • Machine wash/dry.
                • Ivory specked full zip

                ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ingrid-running-jacket-xl-orange-1270","links":{},"stock":{"item_id":1270,"product_id":1270,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xl-orange-1270.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1283","_score":1,"_source":{"id":1283,"sku":"WJ05-L-Brown","name":"Riona Full Zip Jacket-L-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                \n

                • Brown heather full zip rouched jacket.
                • Side hand pockets for extra storage.
                • High collar.
                • Thick cuffs for extra coverage.
                • Durable, shape retention material to longer wear.

                ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-l-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"riona-full-zip-jacket-l-brown-1283","links":{},"stock":{"item_id":1283,"product_id":1283,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-l-brown-1283.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1254","_score":1,"_source":{"id":1254,"sku":"WJ03-XL-Blue","name":"Augusta Pullover Jacket-XL-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                \n

                • Pink half-zip pullover.
                • Front pouch pockets.
                • Fold-down collar.

                ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"augusta-pullover-jacket-xl-blue-1254","links":{},"stock":{"item_id":1254,"product_id":1254,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xl-blue-1254.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1268","_score":1,"_source":{"id":1268,"sku":"WJ04-L-Red","name":"Ingrid Running Jacket-L-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                • Slim fit.
                • Moisture-wicking fabric.
                • Two side pockets.
                • Zippered pocket at back waist.
                • Machine wash/dry.
                • Ivory specked full zip

                ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ingrid-running-jacket-l-red-1268","links":{},"stock":{"item_id":1268,"product_id":1268,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-l-red-1268.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1251","_score":1,"_source":{"id":1251,"sku":"WJ03-L-Blue","name":"Augusta Pullover Jacket-L-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                \n

                • Pink half-zip pullover.
                • Front pouch pockets.
                • Fold-down collar.

                ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"augusta-pullover-jacket-l-blue-1251","links":{},"stock":{"item_id":1251,"product_id":1251,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-l-blue-1251.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1262","_score":1,"_source":{"id":1262,"sku":"WJ04-S-Red","name":"Ingrid Running Jacket-S-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                • Slim fit.
                • Moisture-wicking fabric.
                • Two side pockets.
                • Zippered pocket at back waist.
                • Machine wash/dry.
                • Ivory specked full zip

                ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ingrid-running-jacket-s-red-1262","links":{},"stock":{"item_id":1262,"product_id":1262,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-s-red-1262.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1276","_score":1,"_source":{"id":1276,"sku":"WJ05-XS-Red","name":"Riona Full Zip Jacket-XS-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                \n

                • Brown heather full zip rouched jacket.
                • Side hand pockets for extra storage.
                • High collar.
                • Thick cuffs for extra coverage.
                • Durable, shape retention material to longer wear.

                ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"riona-full-zip-jacket-xs-red-1276","links":{},"stock":{"item_id":1276,"product_id":1276,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xs-red-1276.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1258","_score":1,"_source":{"id":1258,"sku":"WJ04-XS-Orange","name":"Ingrid Running Jacket-XS-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                • Slim fit.
                • Moisture-wicking fabric.
                • Two side pockets.
                • Zippered pocket at back waist.
                • Machine wash/dry.
                • Ivory specked full zip

                ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ingrid-running-jacket-xs-orange-1258","links":{},"stock":{"item_id":1258,"product_id":1258,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xs-orange-1258.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1263","_score":1,"_source":{"id":1263,"sku":"WJ04-S-White","name":"Ingrid Running Jacket-S-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                • Slim fit.
                • Moisture-wicking fabric.
                • Two side pockets.
                • Zippered pocket at back waist.
                • Machine wash/dry.
                • Ivory specked full zip

                ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ingrid-running-jacket-s-white-1263","links":{},"stock":{"item_id":1263,"product_id":1263,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-s-white-1263.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1265","_score":1,"_source":{"id":1265,"sku":"WJ04-M-Red","name":"Ingrid Running Jacket-M-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                • Slim fit.
                • Moisture-wicking fabric.
                • Two side pockets.
                • Zippered pocket at back waist.
                • Machine wash/dry.
                • Ivory specked full zip

                ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ingrid-running-jacket-m-red-1265","links":{},"stock":{"item_id":1265,"product_id":1265,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-m-red-1265.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1261","_score":1,"_source":{"id":1261,"sku":"WJ04-S-Orange","name":"Ingrid Running Jacket-S-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                • Slim fit.
                • Moisture-wicking fabric.
                • Two side pockets.
                • Zippered pocket at back waist.
                • Machine wash/dry.
                • Ivory specked full zip

                ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ingrid-running-jacket-s-orange-1261","links":{},"stock":{"item_id":1261,"product_id":1261,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-s-orange-1261.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1255","_score":1,"_source":{"id":1255,"sku":"WJ03-XL-Orange","name":"Augusta Pullover Jacket-XL-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                \n

                • Pink half-zip pullover.
                • Front pouch pockets.
                • Fold-down collar.

                ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"augusta-pullover-jacket-xl-orange-1255","links":{},"stock":{"item_id":1255,"product_id":1255,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xl-orange-1255.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1271","_score":1,"_source":{"id":1271,"sku":"WJ04-XL-Red","name":"Ingrid Running Jacket-XL-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                • Slim fit.
                • Moisture-wicking fabric.
                • Two side pockets.
                • Zippered pocket at back waist.
                • Machine wash/dry.
                • Ivory specked full zip

                ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ingrid-running-jacket-xl-red-1271","links":{},"stock":{"item_id":1271,"product_id":1271,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xl-red-1271.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1269","_score":1,"_source":{"id":1269,"sku":"WJ04-L-White","name":"Ingrid Running Jacket-L-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                • Slim fit.
                • Moisture-wicking fabric.
                • Two side pockets.
                • Zippered pocket at back waist.
                • Machine wash/dry.
                • Ivory specked full zip

                ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ingrid-running-jacket-l-white-1269","links":{},"stock":{"item_id":1269,"product_id":1269,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-l-white-1269.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1286","_score":1,"_source":{"id":1286,"sku":"WJ05-XL-Brown","name":"Riona Full Zip Jacket-XL-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                \n

                • Brown heather full zip rouched jacket.
                • Side hand pockets for extra storage.
                • High collar.
                • Thick cuffs for extra coverage.
                • Durable, shape retention material to longer wear.

                ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xl-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"riona-full-zip-jacket-xl-brown-1286","links":{},"stock":{"item_id":1286,"product_id":1286,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xl-brown-1286.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1259","_score":1,"_source":{"id":1259,"sku":"WJ04-XS-Red","name":"Ingrid Running Jacket-XS-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                • Slim fit.
                • Moisture-wicking fabric.
                • Two side pockets.
                • Zippered pocket at back waist.
                • Machine wash/dry.
                • Ivory specked full zip

                ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ingrid-running-jacket-xs-red-1259","links":{},"stock":{"item_id":1259,"product_id":1259,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xs-red-1259.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1285","_score":1,"_source":{"id":1285,"sku":"WJ05-L-Red","name":"Riona Full Zip Jacket-L-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2019-04-12 06:18:41","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                \r\n

                • Brown heather full zip rouched jacket.
                • Side hand pockets for extra storage.
                • High collar.
                • Thick cuffs for extra coverage.
                • Durable, shape retention material to longer wear.

                ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-l-red","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"170","eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","slug":"riona-full-zip-jacket-l-red-1285","links":{},"stock":{"item_id":1285,"product_id":1285,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-l-red-1285.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1279","_score":1,"_source":{"id":1279,"sku":"WJ05-S-Red","name":"Riona Full Zip Jacket-S-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                \n

                • Brown heather full zip rouched jacket.
                • Side hand pockets for extra storage.
                • High collar.
                • Thick cuffs for extra coverage.
                • Durable, shape retention material to longer wear.

                ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"riona-full-zip-jacket-s-red-1279","links":{},"stock":{"item_id":1279,"product_id":1279,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-s-red-1279.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1323","_score":1,"_source":{"id":1323,"sku":"WJ09-XS-Gray","name":"Jade Yoga Jacket-XS-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                \n

                • Seafoam 1/4 zip pullover with purple stitching.
                • Lightweight, quick-drying, water-resistant construction.
                • Shirred details at front and back for a feminine look.
                • Hood collapses into collar.
                • Mesh liner for breathability.
                • Front zip pockets.
                • Hem cinches at sideseam.
                • 100% Polyester.

                ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jade-yoga-jacket-xs-gray-1323","links":{},"stock":{"item_id":1323,"product_id":1323,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xs-gray-1323.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1332","_score":1,"_source":{"id":1332,"sku":"WJ09-L-Gray","name":"Jade Yoga Jacket-L-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                \n

                • Seafoam 1/4 zip pullover with purple stitching.
                • Lightweight, quick-drying, water-resistant construction.
                • Shirred details at front and back for a feminine look.
                • Hood collapses into collar.
                • Mesh liner for breathability.
                • Front zip pockets.
                • Hem cinches at sideseam.
                • 100% Polyester.

                ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jade-yoga-jacket-l-gray-1332","links":{},"stock":{"item_id":1332,"product_id":1332,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-l-gray-1332.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1317","_score":1,"_source":{"id":1317,"sku":"WJ08-L-Purple","name":"Adrienne Trek Jacket-L-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                \n

                • gray 1/4 zip pullover.
                • Comfortable, relaxed fit.
                • Front zip for venting.
                • Spacious, kangaroo pockets.
                • 27\" body length.
                • 95% Organic Cotton / 5% Spandex.

                ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"adrienne-trek-jacket-l-purple-1317","links":{},"stock":{"item_id":1317,"product_id":1317,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-l-purple-1317.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1336","_score":1,"_source":{"id":1336,"sku":"WJ09-XL-Green","name":"Jade Yoga Jacket-XL-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                \n

                • Seafoam 1/4 zip pullover with purple stitching.
                • Lightweight, quick-drying, water-resistant construction.
                • Shirred details at front and back for a feminine look.
                • Hood collapses into collar.
                • Mesh liner for breathability.
                • Front zip pockets.
                • Hem cinches at sideseam.
                • 100% Polyester.

                ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jade-yoga-jacket-xl-green-1336","links":{},"stock":{"item_id":1336,"product_id":1336,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xl-green-1336.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1325","_score":1,"_source":{"id":1325,"sku":"WJ09-S-Blue","name":"Jade Yoga Jacket-S-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                \n

                • Seafoam 1/4 zip pullover with purple stitching.
                • Lightweight, quick-drying, water-resistant construction.
                • Shirred details at front and back for a feminine look.
                • Hood collapses into collar.
                • Mesh liner for breathability.
                • Front zip pockets.
                • Hem cinches at sideseam.
                • 100% Polyester.

                ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jade-yoga-jacket-s-blue-1325","links":{},"stock":{"item_id":1325,"product_id":1325,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-s-blue-1325.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1344","_score":1,"_source":{"id":1344,"sku":"WJ10-M-Black","name":"Nadia Elements Shell-M-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                \n

                • Zippered front.
                • Zippered side pockets.
                • Drawstring-adjustable waist and hood.
                • Machine wash/line dry.
                • Light blue 1/4 zip pullover.

                ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nadia-elements-shell-m-black-1344","links":{},"stock":{"item_id":1344,"product_id":1344,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-m-black-1344.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1335","_score":1,"_source":{"id":1335,"sku":"WJ09-XL-Gray","name":"Jade Yoga Jacket-XL-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                \n

                • Seafoam 1/4 zip pullover with purple stitching.
                • Lightweight, quick-drying, water-resistant construction.
                • Shirred details at front and back for a feminine look.
                • Hood collapses into collar.
                • Mesh liner for breathability.
                • Front zip pockets.
                • Hem cinches at sideseam.
                • 100% Polyester.

                ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jade-yoga-jacket-xl-gray-1335","links":{},"stock":{"item_id":1335,"product_id":1335,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xl-gray-1335.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1347","_score":1,"_source":{"id":1347,"sku":"WJ10-L-Black","name":"Nadia Elements Shell-L-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                \n

                • Zippered front.
                • Zippered side pockets.
                • Drawstring-adjustable waist and hood.
                • Machine wash/line dry.
                • Light blue 1/4 zip pullover.

                ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nadia-elements-shell-l-black-1347","links":{},"stock":{"item_id":1347,"product_id":1347,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-l-black-1347.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1334","_score":1,"_source":{"id":1334,"sku":"WJ09-XL-Blue","name":"Jade Yoga Jacket-XL-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                \n

                • Seafoam 1/4 zip pullover with purple stitching.
                • Lightweight, quick-drying, water-resistant construction.
                • Shirred details at front and back for a feminine look.
                • Hood collapses into collar.
                • Mesh liner for breathability.
                • Front zip pockets.
                • Hem cinches at sideseam.
                • 100% Polyester.

                ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jade-yoga-jacket-xl-blue-1334","links":{},"stock":{"item_id":1334,"product_id":1334,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xl-blue-1334.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1309","_score":1,"_source":{"id":1309,"sku":"WJ08-S-Gray","name":"Adrienne Trek Jacket-S-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                \n

                • gray 1/4 zip pullover.
                • Comfortable, relaxed fit.
                • Front zip for venting.
                • Spacious, kangaroo pockets.
                • 27\" body length.
                • 95% Organic Cotton / 5% Spandex.

                ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"adrienne-trek-jacket-s-gray-1309","links":{},"stock":{"item_id":1309,"product_id":1309,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-s-gray-1309.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1348","_score":1,"_source":{"id":1348,"sku":"WJ10-L-Orange","name":"Nadia Elements Shell-L-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                \n

                • Zippered front.
                • Zippered side pockets.
                • Drawstring-adjustable waist and hood.
                • Machine wash/line dry.
                • Light blue 1/4 zip pullover.

                ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nadia-elements-shell-l-orange-1348","links":{},"stock":{"item_id":1348,"product_id":1348,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-l-orange-1348.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1330","_score":1,"_source":{"id":1330,"sku":"WJ09-M-Green","name":"Jade Yoga Jacket-M-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                \n

                • Seafoam 1/4 zip pullover with purple stitching.
                • Lightweight, quick-drying, water-resistant construction.
                • Shirred details at front and back for a feminine look.
                • Hood collapses into collar.
                • Mesh liner for breathability.
                • Front zip pockets.
                • Hem cinches at sideseam.
                • 100% Polyester.

                ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jade-yoga-jacket-m-green-1330","links":{},"stock":{"item_id":1330,"product_id":1330,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-m-green-1330.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1350","_score":1,"_source":{"id":1350,"sku":"WJ10-XL-Black","name":"Nadia Elements Shell-XL-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                \n

                • Zippered front.
                • Zippered side pockets.
                • Drawstring-adjustable waist and hood.
                • Machine wash/line dry.
                • Light blue 1/4 zip pullover.

                ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nadia-elements-shell-xl-black-1350","links":{},"stock":{"item_id":1350,"product_id":1350,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xl-black-1350.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1342","_score":1,"_source":{"id":1342,"sku":"WJ10-S-Orange","name":"Nadia Elements Shell-S-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                \n

                • Zippered front.
                • Zippered side pockets.
                • Drawstring-adjustable waist and hood.
                • Machine wash/line dry.
                • Light blue 1/4 zip pullover.

                ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nadia-elements-shell-s-orange-1342","links":{},"stock":{"item_id":1342,"product_id":1342,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-s-orange-1342.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1333","_score":1,"_source":{"id":1333,"sku":"WJ09-L-Green","name":"Jade Yoga Jacket-L-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                \n

                • Seafoam 1/4 zip pullover with purple stitching.
                • Lightweight, quick-drying, water-resistant construction.
                • Shirred details at front and back for a feminine look.
                • Hood collapses into collar.
                • Mesh liner for breathability.
                • Front zip pockets.
                • Hem cinches at sideseam.
                • 100% Polyester.

                ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jade-yoga-jacket-l-green-1333","links":{},"stock":{"item_id":1333,"product_id":1333,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-l-green-1333.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1339","_score":1,"_source":{"id":1339,"sku":"WJ10-XS-Orange","name":"Nadia Elements Shell-XS-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                \n

                • Zippered front.
                • Zippered side pockets.
                • Drawstring-adjustable waist and hood.
                • Machine wash/line dry.
                • Light blue 1/4 zip pullover.

                ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nadia-elements-shell-xs-orange-1339","links":{},"stock":{"item_id":1339,"product_id":1339,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xs-orange-1339.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1305","_score":1,"_source":{"id":1305,"sku":"WJ07","name":"Inez Full Zip Jacket","attribute_set_id":9,"price":59,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                \n

                • Purple heather inset full zip jacket.
                • Full zip hoodie.
                • Contrast binding along the zipper, hood and sleeves.
                • Inseam pockets for storage.
                • Thumbholes for comfortable fit.

                ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"inez-full-zip-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38,151,156],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[117,118,121,125,129],"pattern":"195","climate":[204,206,207,208,210],"slug":"inez-full-zip-jacket-1305","links":{},"stock":{"item_id":1305,"product_id":1305,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ07-XS-Orange","id":1290,"status":1,"name":"Inez Full Zip Jacket-XS-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"56","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","url_key":"inez-full-zip-jacket-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ07-XS-Purple","id":1291,"status":1,"name":"Inez Full Zip Jacket-XS-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"57","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","url_key":"inez-full-zip-jacket-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ07-XS-Red","id":1292,"status":1,"name":"Inez Full Zip Jacket-XS-Red","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"58","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","url_key":"inez-full-zip-jacket-xs-red","msrp_display_actual_price_type":"0"},{"sku":"WJ07-S-Orange","id":1293,"status":1,"name":"Inez Full Zip Jacket-S-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"56","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","url_key":"inez-full-zip-jacket-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ07-S-Purple","id":1294,"status":1,"name":"Inez Full Zip Jacket-S-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"57","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","url_key":"inez-full-zip-jacket-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ07-S-Red","id":1295,"status":1,"name":"Inez Full Zip Jacket-S-Red","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"58","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","url_key":"inez-full-zip-jacket-s-red","msrp_display_actual_price_type":"0"},{"sku":"WJ07-M-Orange","id":1296,"status":1,"name":"Inez Full Zip Jacket-M-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"56","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","url_key":"inez-full-zip-jacket-m-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ07-M-Purple","id":1297,"status":1,"name":"Inez Full Zip Jacket-M-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"57","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","url_key":"inez-full-zip-jacket-m-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ07-M-Red","id":1298,"status":1,"name":"Inez Full Zip Jacket-M-Red","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"58","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","url_key":"inez-full-zip-jacket-m-red","msrp_display_actual_price_type":"0"},{"sku":"WJ07-L-Orange","id":1299,"status":1,"name":"Inez Full Zip Jacket-L-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"56","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","url_key":"inez-full-zip-jacket-l-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ07-L-Purple","id":1300,"status":1,"name":"Inez Full Zip Jacket-L-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"57","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","url_key":"inez-full-zip-jacket-l-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ07-L-Red","id":1301,"status":1,"name":"Inez Full Zip Jacket-L-Red","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"58","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","url_key":"inez-full-zip-jacket-l-red","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WJ07-XL-Orange","id":1302,"status":1,"name":"Inez Full Zip Jacket-XL-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"56","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","url_key":"inez-full-zip-jacket-xl-orange","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WJ07-XL-Purple","id":1303,"status":1,"name":"Inez Full Zip Jacket-XL-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"57","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","url_key":"inez-full-zip-jacket-xl-purple","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WJ07-XL-Red","id":1304,"status":1,"name":"Inez Full Zip Jacket-XL-Red","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"58","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","url_key":"inez-full-zip-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59}],"configurable_options":[{"id":181,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1305,"attribute_code":"color"},{"id":180,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1305,"attribute_code":"size"}],"color_options":[56,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-1305.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1343","_score":1,"_source":{"id":1343,"sku":"WJ10-S-Yellow","name":"Nadia Elements Shell-S-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                \n

                • Zippered front.
                • Zippered side pockets.
                • Drawstring-adjustable waist and hood.
                • Machine wash/line dry.
                • Light blue 1/4 zip pullover.

                ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nadia-elements-shell-s-yellow-1343","links":{},"stock":{"item_id":1343,"product_id":1343,"stock_id":1,"qty":78,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-s-yellow-1343.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1340","_score":1,"_source":{"id":1340,"sku":"WJ10-XS-Yellow","name":"Nadia Elements Shell-XS-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                \n

                • Zippered front.
                • Zippered side pockets.
                • Drawstring-adjustable waist and hood.
                • Machine wash/line dry.
                • Light blue 1/4 zip pullover.

                ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nadia-elements-shell-xs-yellow-1340","links":{},"stock":{"item_id":1340,"product_id":1340,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xs-yellow-1340.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1346","_score":1,"_source":{"id":1346,"sku":"WJ10-M-Yellow","name":"Nadia Elements Shell-M-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                \n

                • Zippered front.
                • Zippered side pockets.
                • Drawstring-adjustable waist and hood.
                • Machine wash/line dry.
                • Light blue 1/4 zip pullover.

                ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nadia-elements-shell-m-yellow-1346","links":{},"stock":{"item_id":1346,"product_id":1346,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-m-yellow-1346.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1349","_score":1,"_source":{"id":1349,"sku":"WJ10-L-Yellow","name":"Nadia Elements Shell-L-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                \n

                • Zippered front.
                • Zippered side pockets.
                • Drawstring-adjustable waist and hood.
                • Machine wash/line dry.
                • Light blue 1/4 zip pullover.

                ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nadia-elements-shell-l-yellow-1349","links":{},"stock":{"item_id":1349,"product_id":1349,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-l-yellow-1349.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1341","_score":1,"_source":{"id":1341,"sku":"WJ10-S-Black","name":"Nadia Elements Shell-S-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                \n

                • Zippered front.
                • Zippered side pockets.
                • Drawstring-adjustable waist and hood.
                • Machine wash/line dry.
                • Light blue 1/4 zip pullover.

                ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nadia-elements-shell-s-black-1341","links":{},"stock":{"item_id":1341,"product_id":1341,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-s-black-1341.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1466","_score":1,"_source":{"id":1466,"sku":"WS07-XS-Black","name":"Juliana Short-Sleeve Tee-XS-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                \n

                • Black scoop neck tee.
                • Side rouching.
                • Relaxed fit.

                ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juliana-short-sleeve-tee-xs-black-1466","links":{},"stock":{"item_id":1466,"product_id":1466,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xs-black-1466.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1461","_score":1,"_source":{"id":1461,"sku":"WS06-L-Red","name":"Elisa EverCool™ Tee-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                \n

                • Purple heather v-neck tee.
                • Short-Sleeves.
                • Luma EverCool™ fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"elisa-evercool-and-trade-tee-l-red-1461","links":{},"stock":{"item_id":1461,"product_id":1461,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-l-red-1461.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1478","_score":1,"_source":{"id":1478,"sku":"WS07-XL-Black","name":"Juliana Short-Sleeve Tee-XL-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                \n

                • Black scoop neck tee.
                • Side rouching.
                • Relaxed fit.

                ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juliana-short-sleeve-tee-xl-black-1478","links":{},"stock":{"item_id":1478,"product_id":1478,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xl-black-1478.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1479","_score":1,"_source":{"id":1479,"sku":"WS07-XL-White","name":"Juliana Short-Sleeve Tee-XL-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                \n

                • Black scoop neck tee.
                • Side rouching.
                • Relaxed fit.

                ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juliana-short-sleeve-tee-xl-white-1479","links":{},"stock":{"item_id":1479,"product_id":1479,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xl-white-1479.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1477","_score":1,"_source":{"id":1477,"sku":"WS07-L-Yellow","name":"Juliana Short-Sleeve Tee-L-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                \n

                • Black scoop neck tee.
                • Side rouching.
                • Relaxed fit.

                ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juliana-short-sleeve-tee-l-yellow-1477","links":{},"stock":{"item_id":1477,"product_id":1477,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-l-yellow-1477.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1493","_score":1,"_source":{"id":1493,"sku":"WS08-L-Red","name":"Minerva LumaTech™ V-Tee-L-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                \n

                • Navy blue heather soft v-neck tee.
                • Flatlock seams for chafe-free comfort.
                • Relaxed cut.
                • Ultra-lightweight fabric.
                • Machine wash/dry.

                ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"minerva-lumatech-and-trade-v-tee-l-red-1493","links":{},"stock":{"item_id":1493,"product_id":1493,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-l-red-1493.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1485","_score":1,"_source":{"id":1485,"sku":"WS08-S-Black","name":"Minerva LumaTech™ V-Tee-S-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                \n

                • Navy blue heather soft v-neck tee.
                • Flatlock seams for chafe-free comfort.
                • Relaxed cut.
                • Ultra-lightweight fabric.
                • Machine wash/dry.

                ","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"minerva-lumatech-and-trade-v-tee-s-black-1485","links":{},"stock":{"item_id":1485,"product_id":1485,"stock_id":1,"qty":4,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-s-black-1485.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1495","_score":1,"_source":{"id":1495,"sku":"WS08-XL-Blue","name":"Minerva LumaTech™ V-Tee-XL-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                \n

                • Navy blue heather soft v-neck tee.
                • Flatlock seams for chafe-free comfort.
                • Relaxed cut.
                • Ultra-lightweight fabric.
                • Machine wash/dry.

                ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"minerva-lumatech-and-trade-v-tee-xl-blue-1495","links":{},"stock":{"item_id":1495,"product_id":1495,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xl-blue-1495.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1459","_score":1,"_source":{"id":1459,"sku":"WS06-L-Gray","name":"Elisa EverCool™ Tee-L-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                \n

                • Purple heather v-neck tee.
                • Short-Sleeves.
                • Luma EverCool™ fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"elisa-evercool-and-trade-tee-l-gray-1459","links":{},"stock":{"item_id":1459,"product_id":1459,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-l-gray-1459.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1486","_score":1,"_source":{"id":1486,"sku":"WS08-S-Blue","name":"Minerva LumaTech™ V-Tee-S-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2019-04-11 12:22:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                \r\n

                • Navy blue heather soft v-neck tee.
                • Flatlock seams for chafe-free comfort.
                • Relaxed cut.
                • Ultra-lightweight fabric.
                • Machine wash/dry.

                ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-s-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"168","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"minerva-lumatech-and-trade-v-tee-s-blue-1486","links":{},"stock":{"item_id":1486,"product_id":1486,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-04-11 12:22:55","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-s-blue-1486.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1484","_score":1,"_source":{"id":1484,"sku":"WS08-XS-Red","name":"Minerva LumaTech™ V-Tee-XS-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                \n

                • Navy blue heather soft v-neck tee.
                • Flatlock seams for chafe-free comfort.
                • Relaxed cut.
                • Ultra-lightweight fabric.
                • Machine wash/dry.

                ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"minerva-lumatech-and-trade-v-tee-xs-red-1484","links":{},"stock":{"item_id":1484,"product_id":1484,"stock_id":1,"qty":62,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xs-red-1484.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1473","_score":1,"_source":{"id":1473,"sku":"WS07-M-White","name":"Juliana Short-Sleeve Tee-M-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                \n

                • Black scoop neck tee.
                • Side rouching.
                • Relaxed fit.

                ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juliana-short-sleeve-tee-m-white-1473","links":{},"stock":{"item_id":1473,"product_id":1473,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-m-white-1473.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1491","_score":1,"_source":{"id":1491,"sku":"WS08-L-Black","name":"Minerva LumaTech™ V-Tee-L-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                \n

                • Navy blue heather soft v-neck tee.
                • Flatlock seams for chafe-free comfort.
                • Relaxed cut.
                • Ultra-lightweight fabric.
                • Machine wash/dry.

                ","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"minerva-lumatech-and-trade-v-tee-l-black-1491","links":{},"stock":{"item_id":1491,"product_id":1491,"stock_id":1,"qty":14,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-l-black-1491.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1483","_score":1,"_source":{"id":1483,"sku":"WS08-XS-Blue","name":"Minerva LumaTech™ V-Tee-XS-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                \n

                • Navy blue heather soft v-neck tee.
                • Flatlock seams for chafe-free comfort.
                • Relaxed cut.
                • Ultra-lightweight fabric.
                • Machine wash/dry.

                ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"minerva-lumatech-and-trade-v-tee-xs-blue-1483","links":{},"stock":{"item_id":1483,"product_id":1483,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-08-20 08:21:00","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xs-blue-1483.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1487","_score":1,"_source":{"id":1487,"sku":"WS08-S-Red","name":"Minerva LumaTech™ V-Tee-S-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                \n

                • Navy blue heather soft v-neck tee.
                • Flatlock seams for chafe-free comfort.
                • Relaxed cut.
                • Ultra-lightweight fabric.
                • Machine wash/dry.

                ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"minerva-lumatech-and-trade-v-tee-s-red-1487","links":{},"stock":{"item_id":1487,"product_id":1487,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-s-red-1487.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1480","_score":1,"_source":{"id":1480,"sku":"WS07-XL-Yellow","name":"Juliana Short-Sleeve Tee-XL-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                \n

                • Black scoop neck tee.
                • Side rouching.
                • Relaxed fit.

                ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juliana-short-sleeve-tee-xl-yellow-1480","links":{},"stock":{"item_id":1480,"product_id":1480,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xl-yellow-1480.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1468","_score":1,"_source":{"id":1468,"sku":"WS07-XS-Yellow","name":"Juliana Short-Sleeve Tee-XS-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                \n

                • Black scoop neck tee.
                • Side rouching.
                • Relaxed fit.

                ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juliana-short-sleeve-tee-xs-yellow-1468","links":{},"stock":{"item_id":1468,"product_id":1468,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xs-yellow-1468.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1462","_score":1,"_source":{"id":1462,"sku":"WS06-XL-Gray","name":"Elisa EverCool™ Tee-XL-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                \n

                • Purple heather v-neck tee.
                • Short-Sleeves.
                • Luma EverCool™ fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"elisa-evercool-and-trade-tee-xl-gray-1462","links":{},"stock":{"item_id":1462,"product_id":1462,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xl-gray-1462.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1492","_score":1,"_source":{"id":1492,"sku":"WS08-L-Blue","name":"Minerva LumaTech™ V-Tee-L-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                \n

                • Navy blue heather soft v-neck tee.
                • Flatlock seams for chafe-free comfort.
                • Relaxed cut.
                • Ultra-lightweight fabric.
                • Machine wash/dry.

                ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"minerva-lumatech-and-trade-v-tee-l-blue-1492","links":{},"stock":{"item_id":1492,"product_id":1492,"stock_id":1,"qty":16,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-l-blue-1492.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1499","_score":1,"_source":{"id":1499,"sku":"WS09-XS-Red","name":"Tiffany Fitness Tee-XS-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                \n

                • Teal soft scoop neck tee.
                • Contrast stitching pattern.
                • Machine wash/dry.

                ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tiffany-fitness-tee-xs-red-1499","links":{},"stock":{"item_id":1499,"product_id":1499,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xs-red-1499.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1476","_score":1,"_source":{"id":1476,"sku":"WS07-L-White","name":"Juliana Short-Sleeve Tee-L-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                \n

                • Black scoop neck tee.
                • Side rouching.
                • Relaxed fit.

                ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juliana-short-sleeve-tee-l-white-1476","links":{},"stock":{"item_id":1476,"product_id":1476,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-l-white-1476.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1482","_score":1,"_source":{"id":1482,"sku":"WS08-XS-Black","name":"Minerva LumaTech™ V-Tee-XS-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2019-06-28 09:49:11","weight":1,"product_links":[{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WS08","linked_product_type":"configurable","position":1},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WH02","linked_product_type":"configurable","position":2},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WS09","linked_product_type":"configurable","position":3},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WJ03","linked_product_type":"configurable","position":4},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WP10","linked_product_type":"configurable","position":5},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WT03","linked_product_type":"configurable","position":6},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WH10","linked_product_type":"configurable","position":7},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WJ12","linked_product_type":"configurable","position":8}],"tier_prices":[],"custom_attributes":null,"description":"

                Don't be fooled by the simple design of our Minerva LumaTechâ„¢ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup. Beatufiul style.

                \r\n

                • Navy blue heather soft v-neck tee.
                • Flatlock seams for chafe-free comfort.
                • Relaxed cut.
                • Ultra-lightweight fabric.
                • Machine wash/dry. Beatufiull drying features

                ","special_price":"20.0000","special_from_date":"2019-04-30 00:00:00","cost":"22.0000","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xs-black","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"167","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"1","style_general":"126","slug":"minerva-lumatech-and-trade-v-tee-xs-black-1482","links":{"related":[{"sku":"WS08","pos":1},{"sku":"WH02","pos":2},{"sku":"WS09","pos":3},{"sku":"WJ03","pos":4},{"sku":"WP10","pos":5},{"sku":"WT03","pos":6},{"sku":"WH10","pos":7},{"sku":"WJ12","pos":8}]},"stock":{"item_id":1482,"product_id":1482,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-07-10 05:07:21","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xs-black-1482.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1498","_score":1,"_source":{"id":1498,"sku":"WS09-XS-Blue","name":"Tiffany Fitness Tee-XS-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                \n

                • Teal soft scoop neck tee.
                • Contrast stitching pattern.
                • Machine wash/dry.

                ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tiffany-fitness-tee-xs-blue-1498","links":{},"stock":{"item_id":1498,"product_id":1498,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-03-08 08:34:51","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xs-blue-1498.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1472","_score":1,"_source":{"id":1472,"sku":"WS07-M-Black","name":"Juliana Short-Sleeve Tee-M-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                \n

                • Black scoop neck tee.
                • Side rouching.
                • Relaxed fit.

                ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juliana-short-sleeve-tee-m-black-1472","links":{},"stock":{"item_id":1472,"product_id":1472,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-m-black-1472.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1494","_score":1,"_source":{"id":1494,"sku":"WS08-XL-Black","name":"Minerva LumaTech™ V-Tee-XL-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                \n

                • Navy blue heather soft v-neck tee.
                • Flatlock seams for chafe-free comfort.
                • Relaxed cut.
                • Ultra-lightweight fabric.
                • Machine wash/dry.

                ","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"minerva-lumatech-and-trade-v-tee-xl-black-1494","links":{},"stock":{"item_id":1494,"product_id":1494,"stock_id":1,"qty":51,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xl-black-1494.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1469","_score":1,"_source":{"id":1469,"sku":"WS07-S-Black","name":"Juliana Short-Sleeve Tee-S-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                \n

                • Black scoop neck tee.
                • Side rouching.
                • Relaxed fit.

                ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juliana-short-sleeve-tee-s-black-1469","links":{},"stock":{"item_id":1469,"product_id":1469,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-s-black-1469.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1500","_score":1,"_source":{"id":1500,"sku":"WS09-XS-White","name":"Tiffany Fitness Tee-XS-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                \n

                • Teal soft scoop neck tee.
                • Contrast stitching pattern.
                • Machine wash/dry.

                ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tiffany-fitness-tee-xs-white-1500","links":{},"stock":{"item_id":1500,"product_id":1500,"stock_id":1,"qty":66,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xs-white-1500.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1463","_score":1,"_source":{"id":1463,"sku":"WS06-XL-Purple","name":"Elisa EverCool™ Tee-XL-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                \n

                • Purple heather v-neck tee.
                • Short-Sleeves.
                • Luma EverCool™ fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"elisa-evercool-and-trade-tee-xl-purple-1463","links":{},"stock":{"item_id":1463,"product_id":1463,"stock_id":1,"qty":79,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xl-purple-1463.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1481","_score":1,"_source":{"id":1481,"sku":"WS07","name":"Juliana Short-Sleeve Tee","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                \n

                • Black scoop neck tee.
                • Side rouching.
                • Relaxed fit.

                ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"juliana-short-sleeve-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"juliana-short-sleeve-tee-1481","links":{},"stock":{"item_id":1481,"product_id":1481,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS07-XS-Black","id":1466,"status":1,"name":"Juliana Short-Sleeve Tee-XS-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"167","color":"49","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","url_key":"juliana-short-sleeve-tee-xs-black","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-XS-White","id":1467,"status":1,"name":"Juliana Short-Sleeve Tee-XS-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"167","color":"59","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","url_key":"juliana-short-sleeve-tee-xs-white","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-XS-Yellow","id":1468,"status":1,"name":"Juliana Short-Sleeve Tee-XS-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"167","color":"60","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","url_key":"juliana-short-sleeve-tee-xs-yellow","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-S-Black","id":1469,"status":1,"name":"Juliana Short-Sleeve Tee-S-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"168","color":"49","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","url_key":"juliana-short-sleeve-tee-s-black","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-S-White","id":1470,"status":1,"name":"Juliana Short-Sleeve Tee-S-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"168","color":"59","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","url_key":"juliana-short-sleeve-tee-s-white","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-S-Yellow","id":1471,"status":1,"name":"Juliana Short-Sleeve Tee-S-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"168","color":"60","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","url_key":"juliana-short-sleeve-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-M-Black","id":1472,"status":1,"name":"Juliana Short-Sleeve Tee-M-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"169","color":"49","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","url_key":"juliana-short-sleeve-tee-m-black","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-M-White","id":1473,"status":1,"name":"Juliana Short-Sleeve Tee-M-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"169","color":"59","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","url_key":"juliana-short-sleeve-tee-m-white","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-M-Yellow","id":1474,"status":1,"name":"Juliana Short-Sleeve Tee-M-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"169","color":"60","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","url_key":"juliana-short-sleeve-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-L-Black","id":1475,"status":1,"name":"Juliana Short-Sleeve Tee-L-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"170","color":"49","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","url_key":"juliana-short-sleeve-tee-l-black","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-L-White","id":1476,"status":1,"name":"Juliana Short-Sleeve Tee-L-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"170","color":"59","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","url_key":"juliana-short-sleeve-tee-l-white","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-L-Yellow","id":1477,"status":1,"name":"Juliana Short-Sleeve Tee-L-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"170","color":"60","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","url_key":"juliana-short-sleeve-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-XL-Black","id":1478,"status":1,"name":"Juliana Short-Sleeve Tee-XL-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"171","color":"49","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","url_key":"juliana-short-sleeve-tee-xl-black","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-XL-White","id":1479,"status":1,"name":"Juliana Short-Sleeve Tee-XL-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"171","color":"59","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","url_key":"juliana-short-sleeve-tee-xl-white","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-XL-Yellow","id":1480,"status":1,"name":"Juliana Short-Sleeve Tee-XL-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"171","color":"60","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","url_key":"juliana-short-sleeve-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42}],"configurable_options":[{"id":203,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":1481,"attribute_code":"color"},{"id":202,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1481,"attribute_code":"size"}],"color_options":[49,59,60],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-1481.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1355","_score":1,"_source":{"id":1355,"sku":"WJ11-XS-Blue","name":"Neve Studio Dance Jacket-XS-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                \n

                • Bright blue 1/4 zip pullover.
                • CoolTech™ liner is sweat-wicking.
                • Sleeve thumbholes.
                • Zipper garage to protect your chin.
                • Stretchy collar drawcords.

                ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"neve-studio-dance-jacket-xs-blue-1355","links":{},"stock":{"item_id":1355,"product_id":1355,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xs-blue-1355.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1366","_score":1,"_source":{"id":1366,"sku":"WJ11-XL-Black","name":"Neve Studio Dance Jacket-XL-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                \n

                • Bright blue 1/4 zip pullover.
                • CoolTech™ liner is sweat-wicking.
                • Sleeve thumbholes.
                • Zipper garage to protect your chin.
                • Stretchy collar drawcords.

                ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"neve-studio-dance-jacket-xl-black-1366","links":{},"stock":{"item_id":1366,"product_id":1366,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xl-black-1366.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1374","_score":1,"_source":{"id":1374,"sku":"WJ06-S-Green","name":"Juno Jacket-S-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                \n

                • Adjustable hood.
                • Fleece-lined, zippered hand pockets.
                • Thumbhole cuffs.
                • Full zip.
                • Mock-neck collar.
                • Machine wash/dry.

                ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juno-jacket-s-green-1374","links":{},"stock":{"item_id":1374,"product_id":1374,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-s-green-1374.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1392","_score":1,"_source":{"id":1392,"sku":"WJ12-M-Black","name":"Olivia 1/4 Zip Light Jacket-M-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.

                ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"olivia-14-zip-light-jacket-m-black-1392","links":{},"stock":{"item_id":1392,"product_id":1392,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-m-black-1392.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1390","_score":1,"_source":{"id":1390,"sku":"WJ12-S-Blue","name":"Olivia 1/4 Zip Light Jacket-S-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.

                ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"olivia-14-zip-light-jacket-s-blue-1390","links":{},"stock":{"item_id":1390,"product_id":1390,"stock_id":1,"qty":74,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-s-blue-1390.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1381","_score":1,"_source":{"id":1381,"sku":"WJ06-L-Purple","name":"Juno Jacket-L-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                \n

                • Adjustable hood.
                • Fleece-lined, zippered hand pockets.
                • Thumbhole cuffs.
                • Full zip.
                • Mock-neck collar.
                • Machine wash/dry.

                ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juno-jacket-l-purple-1381","links":{},"stock":{"item_id":1381,"product_id":1381,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-l-purple-1381.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1398","_score":1,"_source":{"id":1398,"sku":"WJ12-XL-Black","name":"Olivia 1/4 Zip Light Jacket-XL-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.

                ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"olivia-14-zip-light-jacket-xl-black-1398","links":{},"stock":{"item_id":1398,"product_id":1398,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xl-black-1398.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1396","_score":1,"_source":{"id":1396,"sku":"WJ12-L-Blue","name":"Olivia 1/4 Zip Light Jacket-L-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.

                ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"olivia-14-zip-light-jacket-l-blue-1396","links":{},"stock":{"item_id":1396,"product_id":1396,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-l-blue-1396.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1359","_score":1,"_source":{"id":1359,"sku":"WJ11-S-Orange","name":"Neve Studio Dance Jacket-S-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                \n

                • Bright blue 1/4 zip pullover.
                • CoolTech™ liner is sweat-wicking.
                • Sleeve thumbholes.
                • Zipper garage to protect your chin.
                • Stretchy collar drawcords.

                ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"neve-studio-dance-jacket-s-orange-1359","links":{},"stock":{"item_id":1359,"product_id":1359,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-s-orange-1359.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1379","_score":1,"_source":{"id":1379,"sku":"WJ06-L-Blue","name":"Juno Jacket-L-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                \n

                • Adjustable hood.
                • Fleece-lined, zippered hand pockets.
                • Thumbhole cuffs.
                • Full zip.
                • Mock-neck collar.
                • Machine wash/dry.

                ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juno-jacket-l-blue-1379","links":{},"stock":{"item_id":1379,"product_id":1379,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-l-blue-1379.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1395","_score":1,"_source":{"id":1395,"sku":"WJ12-L-Black","name":"Olivia 1/4 Zip Light Jacket-L-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.

                ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"olivia-14-zip-light-jacket-l-black-1395","links":{},"stock":{"item_id":1395,"product_id":1395,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-l-black-1395.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1397","_score":1,"_source":{"id":1397,"sku":"WJ12-L-Purple","name":"Olivia 1/4 Zip Light Jacket-L-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.

                ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"olivia-14-zip-light-jacket-l-purple-1397","links":{},"stock":{"item_id":1397,"product_id":1397,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-l-purple-1397.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1351","_score":1,"_source":{"id":1351,"sku":"WJ10-XL-Orange","name":"Nadia Elements Shell-XL-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                \n

                • Zippered front.
                • Zippered side pockets.
                • Drawstring-adjustable waist and hood.
                • Machine wash/line dry.
                • Light blue 1/4 zip pullover.

                ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nadia-elements-shell-xl-orange-1351","links":{},"stock":{"item_id":1351,"product_id":1351,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xl-orange-1351.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1400","_score":1,"_source":{"id":1400,"sku":"WJ12-XL-Purple","name":"Olivia 1/4 Zip Light Jacket-XL-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.

                ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"olivia-14-zip-light-jacket-xl-purple-1400","links":{},"stock":{"item_id":1400,"product_id":1400,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xl-purple-1400.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1394","_score":1,"_source":{"id":1394,"sku":"WJ12-M-Purple","name":"Olivia 1/4 Zip Light Jacket-M-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.

                ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"olivia-14-zip-light-jacket-m-purple-1394","links":{},"stock":{"item_id":1394,"product_id":1394,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-m-purple-1394.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1388","_score":1,"_source":{"id":1388,"sku":"WJ12-XS-Purple","name":"Olivia 1/4 Zip Light Jacket-XS-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.

                ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"olivia-14-zip-light-jacket-xs-purple-1388","links":{},"stock":{"item_id":1388,"product_id":1388,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xs-purple-1388.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1373","_score":1,"_source":{"id":1373,"sku":"WJ06-S-Blue","name":"Juno Jacket-S-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                \n

                • Adjustable hood.
                • Fleece-lined, zippered hand pockets.
                • Thumbhole cuffs.
                • Full zip.
                • Mock-neck collar.
                • Machine wash/dry.

                ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juno-jacket-s-blue-1373","links":{},"stock":{"item_id":1373,"product_id":1373,"stock_id":1,"qty":77,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-s-blue-1373.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1389","_score":1,"_source":{"id":1389,"sku":"WJ12-S-Black","name":"Olivia 1/4 Zip Light Jacket-S-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.

                ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"olivia-14-zip-light-jacket-s-black-1389","links":{},"stock":{"item_id":1389,"product_id":1389,"stock_id":1,"qty":60,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-s-black-1389.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1391","_score":1,"_source":{"id":1391,"sku":"WJ12-S-Purple","name":"Olivia 1/4 Zip Light Jacket-S-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.

                ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"olivia-14-zip-light-jacket-s-purple-1391","links":{},"stock":{"item_id":1391,"product_id":1391,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-s-purple-1391.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1368","_score":1,"_source":{"id":1368,"sku":"WJ11-XL-Orange","name":"Neve Studio Dance Jacket-XL-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                \n

                • Bright blue 1/4 zip pullover.
                • CoolTech™ liner is sweat-wicking.
                • Sleeve thumbholes.
                • Zipper garage to protect your chin.
                • Stretchy collar drawcords.

                ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"neve-studio-dance-jacket-xl-orange-1368","links":{},"stock":{"item_id":1368,"product_id":1368,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xl-orange-1368.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1393","_score":1,"_source":{"id":1393,"sku":"WJ12-M-Blue","name":"Olivia 1/4 Zip Light Jacket-M-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.

                ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"olivia-14-zip-light-jacket-m-blue-1393","links":{},"stock":{"item_id":1393,"product_id":1393,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-m-blue-1393.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1399","_score":1,"_source":{"id":1399,"sku":"WJ12-XL-Blue","name":"Olivia 1/4 Zip Light Jacket-XL-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.

                ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"olivia-14-zip-light-jacket-xl-blue-1399","links":{},"stock":{"item_id":1399,"product_id":1399,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xl-blue-1399.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1384","_score":1,"_source":{"id":1384,"sku":"WJ06-XL-Purple","name":"Juno Jacket-XL-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                \n

                • Adjustable hood.
                • Fleece-lined, zippered hand pockets.
                • Thumbhole cuffs.
                • Full zip.
                • Mock-neck collar.
                • Machine wash/dry.

                ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juno-jacket-xl-purple-1384","links":{},"stock":{"item_id":1384,"product_id":1384,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xl-purple-1384.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1353","_score":1,"_source":{"id":1353,"sku":"WJ10","name":"Nadia Elements Shell","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                \n

                • Zippered front.
                • Zippered side pockets.
                • Drawstring-adjustable waist and hood.
                • Machine wash/line dry.
                • Light blue 1/4 zip pullover.

                ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"nadia-elements-shell","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38,156],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_general":[117,118,123,124,126,129],"pattern":"197","climate":[204,206,207,208,210],"slug":"nadia-elements-shell-1353","links":{},"stock":{"item_id":1353,"product_id":1353,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ10-XS-Black","id":1338,"status":1,"name":"Nadia Elements Shell-XS-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"167","color":"49","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","url_key":"nadia-elements-shell-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WJ10-XS-Orange","id":1339,"status":1,"name":"Nadia Elements Shell-XS-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"167","color":"56","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","url_key":"nadia-elements-shell-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ10-XS-Yellow","id":1340,"status":1,"name":"Nadia Elements Shell-XS-Yellow","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"167","color":"60","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","url_key":"nadia-elements-shell-xs-yellow","msrp_display_actual_price_type":"0"},{"sku":"WJ10-S-Black","id":1341,"status":1,"name":"Nadia Elements Shell-S-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"168","color":"49","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","url_key":"nadia-elements-shell-s-black","msrp_display_actual_price_type":"0"},{"sku":"WJ10-S-Orange","id":1342,"status":1,"name":"Nadia Elements Shell-S-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"168","color":"56","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","url_key":"nadia-elements-shell-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ10-S-Yellow","id":1343,"status":1,"name":"Nadia Elements Shell-S-Yellow","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"168","color":"60","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","url_key":"nadia-elements-shell-s-yellow","msrp_display_actual_price_type":"0"},{"sku":"WJ10-M-Black","id":1344,"status":1,"name":"Nadia Elements Shell-M-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"169","color":"49","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","url_key":"nadia-elements-shell-m-black","msrp_display_actual_price_type":"0"},{"sku":"WJ10-M-Orange","id":1345,"status":1,"name":"Nadia Elements Shell-M-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"169","color":"56","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","url_key":"nadia-elements-shell-m-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ10-M-Yellow","id":1346,"status":1,"name":"Nadia Elements Shell-M-Yellow","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"169","color":"60","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","url_key":"nadia-elements-shell-m-yellow","msrp_display_actual_price_type":"0"},{"sku":"WJ10-L-Black","id":1347,"status":1,"name":"Nadia Elements Shell-L-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"170","color":"49","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","url_key":"nadia-elements-shell-l-black","msrp_display_actual_price_type":"0"},{"sku":"WJ10-L-Orange","id":1348,"status":1,"name":"Nadia Elements Shell-L-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"170","color":"56","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","url_key":"nadia-elements-shell-l-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ10-L-Yellow","id":1349,"status":1,"name":"Nadia Elements Shell-L-Yellow","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"170","color":"60","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","url_key":"nadia-elements-shell-l-yellow","msrp_display_actual_price_type":"0"},{"sku":"WJ10-XL-Black","id":1350,"status":1,"name":"Nadia Elements Shell-XL-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"171","color":"49","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","url_key":"nadia-elements-shell-xl-black","msrp_display_actual_price_type":"0"},{"sku":"WJ10-XL-Orange","id":1351,"status":1,"name":"Nadia Elements Shell-XL-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"171","color":"56","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","url_key":"nadia-elements-shell-xl-orange","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ10-XL-Yellow","id":1352,"status":1,"name":"Nadia Elements Shell-XL-Yellow","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"171","color":"60","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","url_key":"nadia-elements-shell-xl-yellow","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69}],"configurable_options":[{"id":187,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1353,"attribute_code":"color"},{"id":186,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1353,"attribute_code":"size"}],"color_options":[49,56,60],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-1353.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1385","_score":1,"_source":{"id":1385,"sku":"WJ06","name":"Juno Jacket","attribute_set_id":9,"price":77,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                \n

                • Adjustable hood.
                • Fleece-lined, zippered hand pockets.
                • Thumbhole cuffs.
                • Full zip.
                • Mock-neck collar.
                • Machine wash/dry.

                ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"juno-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,145],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[117,118,122,124,129,130],"pattern":"197","climate":[203,204,208,210,211],"slug":"juno-jacket-1385","links":{},"stock":{"item_id":1385,"product_id":1385,"stock_id":1,"qty":5,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ06-XS-Blue","id":1370,"status":1,"name":"Juno Jacket-XS-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"167","color":"50","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","url_key":"juno-jacket-xs-blue","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-XS-Green","id":1371,"status":1,"name":"Juno Jacket-XS-Green","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"167","color":"53","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","url_key":"juno-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-XS-Purple","id":1372,"status":1,"name":"Juno Jacket-XS-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"167","color":"57","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","url_key":"juno-jacket-xs-purple","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-S-Blue","id":1373,"status":1,"name":"Juno Jacket-S-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"168","color":"50","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","url_key":"juno-jacket-s-blue","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-S-Green","id":1374,"status":1,"name":"Juno Jacket-S-Green","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"168","color":"53","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","url_key":"juno-jacket-s-green","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-S-Purple","id":1375,"status":1,"name":"Juno Jacket-S-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"168","color":"57","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","url_key":"juno-jacket-s-purple","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-M-Blue","id":1376,"status":1,"name":"Juno Jacket-M-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"169","color":"50","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","url_key":"juno-jacket-m-blue","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-M-Green","id":1377,"status":1,"name":"Juno Jacket-M-Green","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"169","color":"53","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","url_key":"juno-jacket-m-green","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-M-Purple","id":1378,"status":1,"name":"Juno Jacket-M-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"169","color":"57","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","url_key":"juno-jacket-m-purple","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-L-Blue","id":1379,"status":1,"name":"Juno Jacket-L-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"170","color":"50","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","url_key":"juno-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-L-Green","id":1380,"status":1,"name":"Juno Jacket-L-Green","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"170","color":"53","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","url_key":"juno-jacket-l-green","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-L-Purple","id":1381,"status":1,"name":"Juno Jacket-L-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"170","color":"57","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","url_key":"juno-jacket-l-purple","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-XL-Blue","id":1382,"status":1,"name":"Juno Jacket-XL-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"171","color":"50","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","url_key":"juno-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-XL-Green","id":1383,"status":1,"name":"Juno Jacket-XL-Green","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"171","color":"53","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","url_key":"juno-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-XL-Purple","id":1384,"status":1,"name":"Juno Jacket-XL-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"171","color":"57","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","url_key":"juno-jacket-xl-purple","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77}],"configurable_options":[{"id":191,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"}],"product_id":1385,"attribute_code":"color"},{"id":190,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1385,"attribute_code":"size"}],"color_options":[50,53,57],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-1385.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1369","_score":1,"_source":{"id":1369,"sku":"WJ11","name":"Neve Studio Dance Jacket","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                \n

                • Bright blue 1/4 zip pullover.
                • CoolTech™ liner is sweat-wicking.
                • Sleeve thumbholes.
                • Zipper garage to protect your chin.
                • Stretchy collar drawcords.

                ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"neve-studio-dance-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,36,37,156],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":[118,137,121,120,125,128,130],"pattern":"197","climate":[205,206,208],"slug":"neve-studio-dance-jacket-1369","links":{},"stock":{"item_id":1369,"product_id":1369,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ11-XS-Black","id":1354,"status":1,"name":"Neve Studio Dance Jacket-XS-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"167","color":"49","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","url_key":"neve-studio-dance-jacket-xs-black","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-XS-Blue","id":1355,"status":1,"name":"Neve Studio Dance Jacket-XS-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"167","color":"50","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","url_key":"neve-studio-dance-jacket-xs-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-XS-Orange","id":1356,"status":1,"name":"Neve Studio Dance Jacket-XS-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"167","color":"56","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","url_key":"neve-studio-dance-jacket-xs-orange","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-S-Black","id":1357,"status":1,"name":"Neve Studio Dance Jacket-S-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"168","color":"49","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","url_key":"neve-studio-dance-jacket-s-black","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-S-Blue","id":1358,"status":1,"name":"Neve Studio Dance Jacket-S-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"168","color":"50","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","url_key":"neve-studio-dance-jacket-s-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-S-Orange","id":1359,"status":1,"name":"Neve Studio Dance Jacket-S-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"168","color":"56","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","url_key":"neve-studio-dance-jacket-s-orange","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-M-Black","id":1360,"status":1,"name":"Neve Studio Dance Jacket-M-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"169","color":"49","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","url_key":"neve-studio-dance-jacket-m-black","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-M-Blue","id":1361,"status":1,"name":"Neve Studio Dance Jacket-M-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"169","color":"50","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","url_key":"neve-studio-dance-jacket-m-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-M-Orange","id":1362,"status":1,"name":"Neve Studio Dance Jacket-M-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"169","color":"56","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","url_key":"neve-studio-dance-jacket-m-orange","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-L-Black","id":1363,"status":1,"name":"Neve Studio Dance Jacket-L-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"170","color":"49","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","url_key":"neve-studio-dance-jacket-l-black","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-L-Blue","id":1364,"status":1,"name":"Neve Studio Dance Jacket-L-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"170","color":"50","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","url_key":"neve-studio-dance-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-L-Orange","id":1365,"status":1,"name":"Neve Studio Dance Jacket-L-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"170","color":"56","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","url_key":"neve-studio-dance-jacket-l-orange","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-XL-Black","id":1366,"status":1,"name":"Neve Studio Dance Jacket-XL-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"171","color":"49","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","url_key":"neve-studio-dance-jacket-xl-black","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-XL-Blue","id":1367,"status":1,"name":"Neve Studio Dance Jacket-XL-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"171","color":"50","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","url_key":"neve-studio-dance-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-XL-Orange","id":1368,"status":1,"name":"Neve Studio Dance Jacket-XL-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"171","color":"56","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","url_key":"neve-studio-dance-jacket-xl-orange","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69}],"configurable_options":[{"id":189,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":1369,"attribute_code":"color"},{"id":188,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1369,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-1369.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1434","_score":1,"_source":{"id":1434,"sku":"WS04-XS-Blue","name":"Layla Tee-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                \n

                • Teal tee.
                • Long back hem.
                • Dropped shoulders.

                ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"layla-tee-xs-blue-1434","links":{},"stock":{"item_id":1434,"product_id":1434,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xs-blue-1434.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1444","_score":1,"_source":{"id":1444,"sku":"WS04-L-Green","name":"Layla Tee-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                \n

                • Teal tee.
                • Long back hem.
                • Dropped shoulders.

                ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"layla-tee-l-green-1444","links":{},"stock":{"item_id":1444,"product_id":1444,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-l-green-1444.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1450","_score":1,"_source":{"id":1450,"sku":"WS06-XS-Gray","name":"Elisa EverCool™ Tee-XS-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                \n

                • Purple heather v-neck tee.
                • Short-Sleeves.
                • Luma EverCool™ fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"elisa-evercool-and-trade-tee-xs-gray-1450","links":{},"stock":{"item_id":1450,"product_id":1450,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-01-09 15:01:40","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xs-gray-1450.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1442","_score":1,"_source":{"id":1442,"sku":"WS04-M-Red","name":"Layla Tee-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                \n

                • Teal tee.
                • Long back hem.
                • Dropped shoulders.

                ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"layla-tee-m-red-1442","links":{},"stock":{"item_id":1442,"product_id":1442,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-m-red-1442.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1436","_score":1,"_source":{"id":1436,"sku":"WS04-XS-Red","name":"Layla Tee-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                \n

                • Teal tee.
                • Long back hem.
                • Dropped shoulders.

                ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"layla-tee-xs-red-1436","links":{},"stock":{"item_id":1436,"product_id":1436,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xs-red-1436.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1445","_score":1,"_source":{"id":1445,"sku":"WS04-L-Red","name":"Layla Tee-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                \n

                • Teal tee.
                • Long back hem.
                • Dropped shoulders.

                ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"layla-tee-l-red-1445","links":{},"stock":{"item_id":1445,"product_id":1445,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-l-red-1445.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1440","_score":1,"_source":{"id":1440,"sku":"WS04-M-Blue","name":"Layla Tee-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                \n

                • Teal tee.
                • Long back hem.
                • Dropped shoulders.

                ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"layla-tee-m-blue-1440","links":{},"stock":{"item_id":1440,"product_id":1440,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-m-blue-1440.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1441","_score":1,"_source":{"id":1441,"sku":"WS04-M-Green","name":"Layla Tee-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                \n

                • Teal tee.
                • Long back hem.
                • Dropped shoulders.

                ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"layla-tee-m-green-1441","links":{},"stock":{"item_id":1441,"product_id":1441,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-m-green-1441.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1448","_score":1,"_source":{"id":1448,"sku":"WS04-XL-Red","name":"Layla Tee-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                \n

                • Teal tee.
                • Long back hem.
                • Dropped shoulders.

                ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"layla-tee-xl-red-1448","links":{},"stock":{"item_id":1448,"product_id":1448,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xl-red-1448.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1447","_score":1,"_source":{"id":1447,"sku":"WS04-XL-Green","name":"Layla Tee-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                \n

                • Teal tee.
                • Long back hem.
                • Dropped shoulders.

                ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"layla-tee-xl-green-1447","links":{},"stock":{"item_id":1447,"product_id":1447,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xl-green-1447.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1401","_score":1,"_source":{"id":1401,"sku":"WJ12","name":"Olivia 1/4 Zip Light Jacket","attribute_set_id":9,"price":77,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                \n

                • Loose fit.
                • Reflectivity.
                • Flat seams.
                • Machine wash/dry.

                ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"olivia-1-4-zip-light-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,37,33],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[118,137,120,125,128],"pattern":"197","climate":[208,209,210],"slug":"olivia-14-zip-light-jacket-1401","links":{},"stock":{"item_id":1401,"product_id":1401,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ12-XS-Black","id":1386,"status":1,"name":"Olivia 1/4 Zip Light Jacket-XS-Black","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"167","color":"49","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","url_key":"olivia-1-4-zip-light-jacket-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WJ12-XS-Blue","id":1387,"status":1,"name":"Olivia 1/4 Zip Light Jacket-XS-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"167","color":"50","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","url_key":"olivia-1-4-zip-light-jacket-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ12-XS-Purple","id":1388,"status":1,"name":"Olivia 1/4 Zip Light Jacket-XS-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"167","color":"57","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","url_key":"olivia-1-4-zip-light-jacket-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ12-S-Black","id":1389,"status":1,"name":"Olivia 1/4 Zip Light Jacket-S-Black","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"168","color":"49","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","url_key":"olivia-1-4-zip-light-jacket-s-black","msrp_display_actual_price_type":"0"},{"sku":"WJ12-S-Blue","id":1390,"status":1,"name":"Olivia 1/4 Zip Light Jacket-S-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"168","color":"50","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","url_key":"olivia-1-4-zip-light-jacket-s-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ12-S-Purple","id":1391,"status":1,"name":"Olivia 1/4 Zip Light Jacket-S-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"168","color":"57","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","url_key":"olivia-1-4-zip-light-jacket-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ12-M-Black","id":1392,"status":1,"name":"Olivia 1/4 Zip Light Jacket-M-Black","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"169","color":"49","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","url_key":"olivia-1-4-zip-light-jacket-m-black","msrp_display_actual_price_type":"0"},{"sku":"WJ12-M-Blue","id":1393,"status":1,"name":"Olivia 1/4 Zip Light Jacket-M-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"169","color":"50","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","url_key":"olivia-1-4-zip-light-jacket-m-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ12-M-Purple","id":1394,"status":1,"name":"Olivia 1/4 Zip Light Jacket-M-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"169","color":"57","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","url_key":"olivia-1-4-zip-light-jacket-m-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ12-L-Black","id":1395,"status":1,"name":"Olivia 1/4 Zip Light Jacket-L-Black","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"170","color":"49","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","url_key":"olivia-1-4-zip-light-jacket-l-black","msrp_display_actual_price_type":"0"},{"sku":"WJ12-L-Blue","id":1396,"status":1,"name":"Olivia 1/4 Zip Light Jacket-L-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"170","color":"50","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","url_key":"olivia-1-4-zip-light-jacket-l-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ12-L-Purple","id":1397,"status":1,"name":"Olivia 1/4 Zip Light Jacket-L-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"170","color":"57","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","url_key":"olivia-1-4-zip-light-jacket-l-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ12-XL-Black","id":1398,"status":1,"name":"Olivia 1/4 Zip Light Jacket-XL-Black","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"171","color":"49","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","url_key":"olivia-1-4-zip-light-jacket-xl-black","msrp_display_actual_price_type":"0"},{"sku":"WJ12-XL-Blue","id":1399,"status":1,"name":"Olivia 1/4 Zip Light Jacket-XL-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"171","color":"50","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","url_key":"olivia-1-4-zip-light-jacket-xl-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ12-XL-Purple","id":1400,"status":1,"name":"Olivia 1/4 Zip Light Jacket-XL-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"171","color":"57","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","url_key":"olivia-1-4-zip-light-jacket-xl-purple","msrp_display_actual_price_type":"0"}],"configurable_options":[{"id":193,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":1401,"attribute_code":"color"},{"id":192,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1401,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-1401.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1449","_score":1,"_source":{"id":1449,"sku":"WS04","name":"Layla Tee","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                \n

                • Teal tee.
                • Long back hem.
                • Dropped shoulders.

                ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"layla-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"33","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"layla-tee-1449","links":{},"stock":{"item_id":1449,"product_id":1449,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS04-XS-Blue","id":1434,"status":1,"name":"Layla Tee-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"167","color":"50","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","url_key":"layla-tee-xs-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-XS-Green","id":1435,"status":1,"name":"Layla Tee-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"167","color":"53","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","url_key":"layla-tee-xs-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-XS-Red","id":1436,"status":1,"name":"Layla Tee-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"167","color":"58","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","url_key":"layla-tee-xs-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-S-Blue","id":1437,"status":1,"name":"Layla Tee-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"168","color":"50","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","url_key":"layla-tee-s-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-S-Green","id":1438,"status":1,"name":"Layla Tee-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"168","color":"53","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","url_key":"layla-tee-s-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-S-Red","id":1439,"status":1,"name":"Layla Tee-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"168","color":"58","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","url_key":"layla-tee-s-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-M-Blue","id":1440,"status":1,"name":"Layla Tee-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"169","color":"50","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","url_key":"layla-tee-m-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-M-Green","id":1441,"status":1,"name":"Layla Tee-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"169","color":"53","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","url_key":"layla-tee-m-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-M-Red","id":1442,"status":1,"name":"Layla Tee-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"169","color":"58","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","url_key":"layla-tee-m-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-L-Blue","id":1443,"status":1,"name":"Layla Tee-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"170","color":"50","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","url_key":"layla-tee-l-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-L-Green","id":1444,"status":1,"name":"Layla Tee-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"170","color":"53","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","url_key":"layla-tee-l-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-L-Red","id":1445,"status":1,"name":"Layla Tee-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"170","color":"58","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","url_key":"layla-tee-l-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-XL-Blue","id":1446,"status":1,"name":"Layla Tee-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"171","color":"50","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","url_key":"layla-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-XL-Green","id":1447,"status":1,"name":"Layla Tee-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"171","color":"53","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","url_key":"layla-tee-xl-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-XL-Red","id":1448,"status":1,"name":"Layla Tee-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"171","color":"58","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","url_key":"layla-tee-xl-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":199,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1449,"attribute_code":"color"},{"id":198,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1449,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-1449.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1433","_score":1,"_source":{"id":1433,"sku":"WS03","name":"Iris Workout Top","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                \n

                • Pink heather rouched v-neck.
                • Scoop neckline.
                • Angled flat seams.
                • Moisture wicking.
                • Body skimming.
                • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"iris-workout-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,38,151,155],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"iris-workout-top-1433","links":{},"stock":{"item_id":1433,"product_id":1433,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS03-XS-Blue","id":1418,"status":1,"name":"Iris Workout Top-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"50","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","url_key":"iris-workout-top-xs-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-XS-Green","id":1419,"status":1,"name":"Iris Workout Top-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"53","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","url_key":"iris-workout-top-xs-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-XS-Red","id":1420,"status":1,"name":"Iris Workout Top-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"58","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","url_key":"iris-workout-top-xs-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-S-Blue","id":1421,"status":1,"name":"Iris Workout Top-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"50","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","url_key":"iris-workout-top-s-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-S-Green","id":1422,"status":1,"name":"Iris Workout Top-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"53","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","url_key":"iris-workout-top-s-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-S-Red","id":1423,"status":1,"name":"Iris Workout Top-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"58","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","url_key":"iris-workout-top-s-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-M-Blue","id":1424,"status":1,"name":"Iris Workout Top-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"50","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","url_key":"iris-workout-top-m-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-M-Green","id":1425,"status":1,"name":"Iris Workout Top-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"53","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","url_key":"iris-workout-top-m-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-M-Red","id":1426,"status":1,"name":"Iris Workout Top-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"58","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","url_key":"iris-workout-top-m-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-L-Blue","id":1427,"status":1,"name":"Iris Workout Top-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"50","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","url_key":"iris-workout-top-l-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-L-Green","id":1428,"status":1,"name":"Iris Workout Top-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"53","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","url_key":"iris-workout-top-l-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-L-Red","id":1429,"status":1,"name":"Iris Workout Top-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"58","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","url_key":"iris-workout-top-l-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-XL-Blue","id":1430,"status":1,"name":"Iris Workout Top-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"50","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","url_key":"iris-workout-top-xl-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-XL-Green","id":1431,"status":1,"name":"Iris Workout Top-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"53","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","url_key":"iris-workout-top-xl-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-XL-Red","id":1432,"status":1,"name":"Iris Workout Top-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"58","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","url_key":"iris-workout-top-xl-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":197,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1433,"attribute_code":"color"},{"id":196,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1433,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-1433.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1417","_score":1,"_source":{"id":1417,"sku":"WS02","name":"Gabrielle Micro Sleeve Top","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                \n

                • Lime green v-neck tee.
                • Slimming, flattering fit.
                • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                • Longer curved hem provides additional coverage.
                • 55% Hemp / 45% Organic Cotton.

                ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"gabrielle-micro-sleeve-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,146],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"gabrielle-micro-sleeve-top-1417","links":{},"stock":{"item_id":1417,"product_id":1417,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS02-XS-Blue","id":1402,"status":1,"name":"Gabrielle Micro Sleeve Top-XS-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"167","color":"50","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","url_key":"gabrielle-micro-sleeve-top-xs-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-XS-Green","id":1403,"status":1,"name":"Gabrielle Micro Sleeve Top-XS-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"167","color":"53","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","url_key":"gabrielle-micro-sleeve-top-xs-green","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-XS-Red","id":1404,"status":1,"name":"Gabrielle Micro Sleeve Top-XS-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"167","color":"58","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","url_key":"gabrielle-micro-sleeve-top-xs-red","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-S-Blue","id":1405,"status":1,"name":"Gabrielle Micro Sleeve Top-S-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"168","color":"50","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","url_key":"gabrielle-micro-sleeve-top-s-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-S-Green","id":1406,"status":1,"name":"Gabrielle Micro Sleeve Top-S-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"168","color":"53","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","url_key":"gabrielle-micro-sleeve-top-s-green","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-S-Red","id":1407,"status":1,"name":"Gabrielle Micro Sleeve Top-S-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"168","color":"58","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","url_key":"gabrielle-micro-sleeve-top-s-red","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-M-Blue","id":1408,"status":1,"name":"Gabrielle Micro Sleeve Top-M-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"169","color":"50","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","url_key":"gabrielle-micro-sleeve-top-m-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-M-Green","id":1409,"status":1,"name":"Gabrielle Micro Sleeve Top-M-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"169","color":"53","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","url_key":"gabrielle-micro-sleeve-top-m-green","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-M-Red","id":1410,"status":1,"name":"Gabrielle Micro Sleeve Top-M-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"169","color":"58","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","url_key":"gabrielle-micro-sleeve-top-m-red","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-L-Blue","id":1411,"status":1,"name":"Gabrielle Micro Sleeve Top-L-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"170","color":"50","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","url_key":"gabrielle-micro-sleeve-top-l-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-L-Green","id":1412,"status":1,"name":"Gabrielle Micro Sleeve Top-L-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"170","color":"53","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","url_key":"gabrielle-micro-sleeve-top-l-green","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-L-Red","id":1413,"status":1,"name":"Gabrielle Micro Sleeve Top-L-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"170","color":"58","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","url_key":"gabrielle-micro-sleeve-top-l-red","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-XL-Blue","id":1414,"status":1,"name":"Gabrielle Micro Sleeve Top-XL-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"171","color":"50","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","url_key":"gabrielle-micro-sleeve-top-xl-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-XL-Green","id":1415,"status":1,"name":"Gabrielle Micro Sleeve Top-XL-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"171","color":"53","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","url_key":"gabrielle-micro-sleeve-top-xl-green","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-XL-Red","id":1416,"status":1,"name":"Gabrielle Micro Sleeve Top-XL-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"171","color":"58","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","url_key":"gabrielle-micro-sleeve-top-xl-red","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28}],"configurable_options":[{"id":195,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1417,"attribute_code":"color"},{"id":194,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1417,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-1417.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1465","_score":1,"_source":{"id":1465,"sku":"WS06","name":"Elisa EverCool™ Tee","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                \n

                • Purple heather v-neck tee.
                • Short-Sleeves.
                • Luma EverCool™ fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"elisa-evercool-trade-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,154],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"elisa-evercool-and-trade-tee-1465","links":{},"stock":{"item_id":1465,"product_id":1465,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS06-XS-Gray","id":1450,"status":1,"name":"Elisa EverCool™ Tee-XS-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"167","color":"52","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","url_key":"elisa-evercool-trade-tee-xs-gray","msrp_display_actual_price_type":"0"},{"sku":"WS06-XS-Purple","id":1451,"status":1,"name":"Elisa EverCool™ Tee-XS-Purple","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"167","color":"57","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","url_key":"elisa-evercool-trade-tee-xs-purple","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-XS-Red","id":1452,"status":1,"name":"Elisa EverCool™ Tee-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"167","color":"58","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","url_key":"elisa-evercool-trade-tee-xs-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-S-Gray","id":1453,"status":1,"name":"Elisa EverCool™ Tee-S-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"168","color":"52","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","url_key":"elisa-evercool-trade-tee-s-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-S-Purple","id":1454,"status":1,"name":"Elisa EverCool™ Tee-S-Purple","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"168","color":"57","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","url_key":"elisa-evercool-trade-tee-s-purple","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-S-Red","id":1455,"status":1,"name":"Elisa EverCool™ Tee-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"168","color":"58","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","url_key":"elisa-evercool-trade-tee-s-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-M-Gray","id":1456,"status":1,"name":"Elisa EverCool™ Tee-M-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"169","color":"52","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","url_key":"elisa-evercool-trade-tee-m-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-M-Purple","id":1457,"status":1,"name":"Elisa EverCool™ Tee-M-Purple","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"169","color":"57","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","url_key":"elisa-evercool-trade-tee-m-purple","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-M-Red","id":1458,"status":1,"name":"Elisa EverCool™ Tee-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"169","color":"58","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","url_key":"elisa-evercool-trade-tee-m-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-L-Gray","id":1459,"status":1,"name":"Elisa EverCool™ Tee-L-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"170","color":"52","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","url_key":"elisa-evercool-trade-tee-l-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-L-Purple","id":1460,"status":1,"name":"Elisa EverCool™ Tee-L-Purple","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"170","color":"57","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","url_key":"elisa-evercool-trade-tee-l-purple","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-L-Red","id":1461,"status":1,"name":"Elisa EverCool™ Tee-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"170","color":"58","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","url_key":"elisa-evercool-trade-tee-l-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-XL-Gray","id":1462,"status":1,"name":"Elisa EverCool™ Tee-XL-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"171","color":"52","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","url_key":"elisa-evercool-trade-tee-xl-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-XL-Purple","id":1463,"status":1,"name":"Elisa EverCool™ Tee-XL-Purple","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"171","color":"57","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","url_key":"elisa-evercool-trade-tee-xl-purple","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-XL-Red","id":1464,"status":1,"name":"Elisa EverCool™ Tee-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"171","color":"58","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","url_key":"elisa-evercool-trade-tee-xl-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":201,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1465,"attribute_code":"color"},{"id":200,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1465,"attribute_code":"size"}],"color_options":[52,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-1465.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1497","_score":1,"_source":{"id":1497,"sku":"WS08","name":"Minerva LumaTech™ V-Tee","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:18","updated_at":"2019-04-15 08:24:50","product_links":[{"sku":"WS08","link_type":"related","linked_product_sku":"WS09","linked_product_type":"configurable","position":1},{"sku":"WS08","link_type":"related","linked_product_sku":"WP10","linked_product_type":"configurable","position":2},{"sku":"WS08","link_type":"related","linked_product_sku":"WJ03","linked_product_type":"configurable","position":3},{"sku":"WS08","link_type":"related","linked_product_sku":"WS10","linked_product_type":"configurable","position":4},{"sku":"WS08","link_type":"related","linked_product_sku":"WP11","linked_product_type":"configurable","position":5},{"sku":"WS08","link_type":"related","linked_product_sku":"WH03","linked_product_type":"configurable","position":6},{"sku":"WS08","link_type":"related","linked_product_sku":"WH09","linked_product_type":"configurable","position":7},{"sku":"WS08","link_type":"related","linked_product_sku":"WJ06","linked_product_type":"configurable","position":8}],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":32,"description":"

                Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                \r\n

                • Navy blue heather soft v-neck tee.
                • Flatlock seams for chafe-free comfort.
                • Relaxed cut.
                • Ultra-lightweight fabric.
                • Machine wash/dry.

                ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","category_ids":[25,33,30,2],"options_container":"container2","required_options":"1","has_options":"1","url_key":"minerva-lumatech-trade-v-tee","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":[33,149],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"minerva-lumatech-and-trade-v-tee-1497","links":{"related":[{"sku":"WS09","pos":1},{"sku":"WP10","pos":2},{"sku":"WJ03","pos":3},{"sku":"WS10","pos":4},{"sku":"WP11","pos":5},{"sku":"WH03","pos":6},{"sku":"WH09","pos":7},{"sku":"WJ06","pos":8}]},"stock":{"item_id":1497,"product_id":1497,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"configurable_children":[{"sku":"WS08-XS-Black","id":1482,"status":1,"name":"Minerva LumaTech™ V-Tee-XS-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"167","color":"49","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","url_key":"minerva-lumatech-trade-v-tee-xs-black","special_price":"20.0000","special_from_date":"2019-04-30 00:00:00","msrp_display_actual_price_type":"0"},{"sku":"WS08-XS-Blue","id":1483,"status":1,"name":"Minerva LumaTech™ V-Tee-XS-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"167","color":"50","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","url_key":"minerva-lumatech-trade-v-tee-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WS08-XS-Red","id":1484,"status":1,"name":"Minerva LumaTech™ V-Tee-XS-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"167","color":"58","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","url_key":"minerva-lumatech-trade-v-tee-xs-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS08-S-Black","id":1485,"status":1,"name":"Minerva LumaTech™ V-Tee-S-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"168","color":"49","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","url_key":"minerva-lumatech-trade-v-tee-s-black","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS08-S-Blue","id":1486,"status":1,"name":"Minerva LumaTech™ V-Tee-S-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"168","color":"50","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","url_key":"minerva-lumatech-trade-v-tee-s-blue","msrp_display_actual_price_type":"0"},{"sku":"WS08-S-Red","id":1487,"status":1,"name":"Minerva LumaTech™ V-Tee-S-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"168","color":"58","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","url_key":"minerva-lumatech-trade-v-tee-s-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS08-M-Black","id":1488,"status":1,"name":"Minerva LumaTech™ V-Tee-M-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"169","color":"49","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","url_key":"minerva-lumatech-trade-v-tee-m-black","msrp_display_actual_price_type":"0"},{"sku":"WS08-M-Blue","id":1489,"status":1,"name":"Minerva LumaTech™ V-Tee-M-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"169","color":"50","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","url_key":"minerva-lumatech-trade-v-tee-m-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS08-M-Red","id":1490,"status":1,"name":"Minerva LumaTech™ V-Tee-M-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"169","color":"58","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","url_key":"minerva-lumatech-trade-v-tee-m-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS08-L-Black","id":1491,"status":1,"name":"Minerva LumaTech™ V-Tee-L-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"170","color":"49","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","url_key":"minerva-lumatech-trade-v-tee-l-black","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS08-L-Blue","id":1492,"status":1,"name":"Minerva LumaTech™ V-Tee-L-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"170","color":"50","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","url_key":"minerva-lumatech-trade-v-tee-l-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS08-L-Red","id":1493,"status":1,"name":"Minerva LumaTech™ V-Tee-L-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"170","color":"58","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","url_key":"minerva-lumatech-trade-v-tee-l-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS08-XL-Black","id":1494,"status":1,"name":"Minerva LumaTech™ V-Tee-XL-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"171","color":"49","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","url_key":"minerva-lumatech-trade-v-tee-xl-black","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS08-XL-Blue","id":1495,"status":1,"name":"Minerva LumaTech™ V-Tee-XL-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"171","color":"50","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","url_key":"minerva-lumatech-trade-v-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS08-XL-Red","id":1496,"status":1,"name":"Minerva LumaTech™ V-Tee-XL-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"171","color":"58","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","url_key":"minerva-lumatech-trade-v-tee-xl-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32}],"configurable_options":[{"id":306,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":1497,"attribute_code":"color"},{"id":307,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1497,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-1497.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1411","_score":1,"_source":{"id":1411,"sku":"WS02-L-Blue","name":"Gabrielle Micro Sleeve Top-L-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                \n

                • Lime green v-neck tee.
                • Slimming, flattering fit.
                • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                • Longer curved hem provides additional coverage.
                • 55% Hemp / 45% Organic Cotton.

                ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gabrielle-micro-sleeve-top-l-blue-1411","links":{},"stock":{"item_id":1411,"product_id":1411,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-l-blue-1411.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1407","_score":1,"_source":{"id":1407,"sku":"WS02-S-Red","name":"Gabrielle Micro Sleeve Top-S-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                \n

                • Lime green v-neck tee.
                • Slimming, flattering fit.
                • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                • Longer curved hem provides additional coverage.
                • 55% Hemp / 45% Organic Cotton.

                ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gabrielle-micro-sleeve-top-s-red-1407","links":{},"stock":{"item_id":1407,"product_id":1407,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-s-red-1407.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1416","_score":1,"_source":{"id":1416,"sku":"WS02-XL-Red","name":"Gabrielle Micro Sleeve Top-XL-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                \n

                • Lime green v-neck tee.
                • Slimming, flattering fit.
                • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                • Longer curved hem provides additional coverage.
                • 55% Hemp / 45% Organic Cotton.

                ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gabrielle-micro-sleeve-top-xl-red-1416","links":{},"stock":{"item_id":1416,"product_id":1416,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xl-red-1416.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1413","_score":1,"_source":{"id":1413,"sku":"WS02-L-Red","name":"Gabrielle Micro Sleeve Top-L-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                \n

                • Lime green v-neck tee.
                • Slimming, flattering fit.
                • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                • Longer curved hem provides additional coverage.
                • 55% Hemp / 45% Organic Cotton.

                ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gabrielle-micro-sleeve-top-l-red-1413","links":{},"stock":{"item_id":1413,"product_id":1413,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-l-red-1413.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1405","_score":1,"_source":{"id":1405,"sku":"WS02-S-Blue","name":"Gabrielle Micro Sleeve Top-S-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                \n

                • Lime green v-neck tee.
                • Slimming, flattering fit.
                • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                • Longer curved hem provides additional coverage.
                • 55% Hemp / 45% Organic Cotton.

                ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gabrielle-micro-sleeve-top-s-blue-1405","links":{},"stock":{"item_id":1405,"product_id":1405,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-s-blue-1405.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1421","_score":1,"_source":{"id":1421,"sku":"WS03-S-Blue","name":"Iris Workout Top-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                \n

                • Pink heather rouched v-neck.
                • Scoop neckline.
                • Angled flat seams.
                • Moisture wicking.
                • Body skimming.
                • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"iris-workout-top-s-blue-1421","links":{},"stock":{"item_id":1421,"product_id":1421,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-s-blue-1421.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1406","_score":1,"_source":{"id":1406,"sku":"WS02-S-Green","name":"Gabrielle Micro Sleeve Top-S-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                \n

                • Lime green v-neck tee.
                • Slimming, flattering fit.
                • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                • Longer curved hem provides additional coverage.
                • 55% Hemp / 45% Organic Cotton.

                ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gabrielle-micro-sleeve-top-s-green-1406","links":{},"stock":{"item_id":1406,"product_id":1406,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-s-green-1406.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1420","_score":1,"_source":{"id":1420,"sku":"WS03-XS-Red","name":"Iris Workout Top-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                \n

                • Pink heather rouched v-neck.
                • Scoop neckline.
                • Angled flat seams.
                • Moisture wicking.
                • Body skimming.
                • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"iris-workout-top-xs-red-1420","links":{},"stock":{"item_id":1420,"product_id":1420,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xs-red-1420.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1415","_score":1,"_source":{"id":1415,"sku":"WS02-XL-Green","name":"Gabrielle Micro Sleeve Top-XL-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                \n

                • Lime green v-neck tee.
                • Slimming, flattering fit.
                • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                • Longer curved hem provides additional coverage.
                • 55% Hemp / 45% Organic Cotton.

                ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gabrielle-micro-sleeve-top-xl-green-1415","links":{},"stock":{"item_id":1415,"product_id":1415,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xl-green-1415.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1429","_score":1,"_source":{"id":1429,"sku":"WS03-L-Red","name":"Iris Workout Top-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                \n

                • Pink heather rouched v-neck.
                • Scoop neckline.
                • Angled flat seams.
                • Moisture wicking.
                • Body skimming.
                • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"iris-workout-top-l-red-1429","links":{},"stock":{"item_id":1429,"product_id":1429,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-l-red-1429.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1409","_score":1,"_source":{"id":1409,"sku":"WS02-M-Green","name":"Gabrielle Micro Sleeve Top-M-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                \n

                • Lime green v-neck tee.
                • Slimming, flattering fit.
                • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                • Longer curved hem provides additional coverage.
                • 55% Hemp / 45% Organic Cotton.

                ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gabrielle-micro-sleeve-top-m-green-1409","links":{},"stock":{"item_id":1409,"product_id":1409,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-m-green-1409.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1446","_score":1,"_source":{"id":1446,"sku":"WS04-XL-Blue","name":"Layla Tee-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                \n

                • Teal tee.
                • Long back hem.
                • Dropped shoulders.

                ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"layla-tee-xl-blue-1446","links":{},"stock":{"item_id":1446,"product_id":1446,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xl-blue-1446.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1403","_score":1,"_source":{"id":1403,"sku":"WS02-XS-Green","name":"Gabrielle Micro Sleeve Top-XS-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                \n

                • Lime green v-neck tee.
                • Slimming, flattering fit.
                • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                • Longer curved hem provides additional coverage.
                • 55% Hemp / 45% Organic Cotton.

                ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gabrielle-micro-sleeve-top-xs-green-1403","links":{},"stock":{"item_id":1403,"product_id":1403,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xs-green-1403.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1426","_score":1,"_source":{"id":1426,"sku":"WS03-M-Red","name":"Iris Workout Top-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                \n

                • Pink heather rouched v-neck.
                • Scoop neckline.
                • Angled flat seams.
                • Moisture wicking.
                • Body skimming.
                • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"iris-workout-top-m-red-1426","links":{},"stock":{"item_id":1426,"product_id":1426,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-m-red-1426.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1428","_score":1,"_source":{"id":1428,"sku":"WS03-L-Green","name":"Iris Workout Top-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                \n

                • Pink heather rouched v-neck.
                • Scoop neckline.
                • Angled flat seams.
                • Moisture wicking.
                • Body skimming.
                • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"iris-workout-top-l-green-1428","links":{},"stock":{"item_id":1428,"product_id":1428,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-l-green-1428.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1443","_score":1,"_source":{"id":1443,"sku":"WS04-L-Blue","name":"Layla Tee-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                \n

                • Teal tee.
                • Long back hem.
                • Dropped shoulders.

                ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"layla-tee-l-blue-1443","links":{},"stock":{"item_id":1443,"product_id":1443,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-l-blue-1443.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1423","_score":1,"_source":{"id":1423,"sku":"WS03-S-Red","name":"Iris Workout Top-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                \n

                • Pink heather rouched v-neck.
                • Scoop neckline.
                • Angled flat seams.
                • Moisture wicking.
                • Body skimming.
                • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"iris-workout-top-s-red-1423","links":{},"stock":{"item_id":1423,"product_id":1423,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-s-red-1423.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1432","_score":1,"_source":{"id":1432,"sku":"WS03-XL-Red","name":"Iris Workout Top-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                \n

                • Pink heather rouched v-neck.
                • Scoop neckline.
                • Angled flat seams.
                • Moisture wicking.
                • Body skimming.
                • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"iris-workout-top-xl-red-1432","links":{},"stock":{"item_id":1432,"product_id":1432,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xl-red-1432.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1424","_score":1,"_source":{"id":1424,"sku":"WS03-M-Blue","name":"Iris Workout Top-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                \n

                • Pink heather rouched v-neck.
                • Scoop neckline.
                • Angled flat seams.
                • Moisture wicking.
                • Body skimming.
                • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"iris-workout-top-m-blue-1424","links":{},"stock":{"item_id":1424,"product_id":1424,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-m-blue-1424.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1408","_score":1,"_source":{"id":1408,"sku":"WS02-M-Blue","name":"Gabrielle Micro Sleeve Top-M-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                \n

                • Lime green v-neck tee.
                • Slimming, flattering fit.
                • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                • Longer curved hem provides additional coverage.
                • 55% Hemp / 45% Organic Cotton.

                ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gabrielle-micro-sleeve-top-m-blue-1408","links":{},"stock":{"item_id":1408,"product_id":1408,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-m-blue-1408.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1425","_score":1,"_source":{"id":1425,"sku":"WS03-M-Green","name":"Iris Workout Top-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                \n

                • Pink heather rouched v-neck.
                • Scoop neckline.
                • Angled flat seams.
                • Moisture wicking.
                • Body skimming.
                • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"iris-workout-top-m-green-1425","links":{},"stock":{"item_id":1425,"product_id":1425,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-m-green-1425.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1435","_score":1,"_source":{"id":1435,"sku":"WS04-XS-Green","name":"Layla Tee-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                \n

                • Teal tee.
                • Long back hem.
                • Dropped shoulders.

                ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"layla-tee-xs-green-1435","links":{},"stock":{"item_id":1435,"product_id":1435,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xs-green-1435.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1431","_score":1,"_source":{"id":1431,"sku":"WS03-XL-Green","name":"Iris Workout Top-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                \n

                • Pink heather rouched v-neck.
                • Scoop neckline.
                • Angled flat seams.
                • Moisture wicking.
                • Body skimming.
                • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"iris-workout-top-xl-green-1431","links":{},"stock":{"item_id":1431,"product_id":1431,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xl-green-1431.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1427","_score":1,"_source":{"id":1427,"sku":"WS03-L-Blue","name":"Iris Workout Top-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                \n

                • Pink heather rouched v-neck.
                • Scoop neckline.
                • Angled flat seams.
                • Moisture wicking.
                • Body skimming.
                • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"iris-workout-top-l-blue-1427","links":{},"stock":{"item_id":1427,"product_id":1427,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-l-blue-1427.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1439","_score":1,"_source":{"id":1439,"sku":"WS04-S-Red","name":"Layla Tee-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                \n

                • Teal tee.
                • Long back hem.
                • Dropped shoulders.

                ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"layla-tee-s-red-1439","links":{},"stock":{"item_id":1439,"product_id":1439,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-s-red-1439.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1422","_score":1,"_source":{"id":1422,"sku":"WS03-S-Green","name":"Iris Workout Top-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                \n

                • Pink heather rouched v-neck.
                • Scoop neckline.
                • Angled flat seams.
                • Moisture wicking.
                • Body skimming.
                • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"iris-workout-top-s-green-1422","links":{},"stock":{"item_id":1422,"product_id":1422,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-s-green-1422.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1430","_score":1,"_source":{"id":1430,"sku":"WS03-XL-Blue","name":"Iris Workout Top-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                \n

                • Pink heather rouched v-neck.
                • Scoop neckline.
                • Angled flat seams.
                • Moisture wicking.
                • Body skimming.
                • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"iris-workout-top-xl-blue-1430","links":{},"stock":{"item_id":1430,"product_id":1430,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xl-blue-1430.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1438","_score":1,"_source":{"id":1438,"sku":"WS04-S-Green","name":"Layla Tee-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                \n

                • Teal tee.
                • Long back hem.
                • Dropped shoulders.

                ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"layla-tee-s-green-1438","links":{},"stock":{"item_id":1438,"product_id":1438,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-s-green-1438.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1437","_score":1,"_source":{"id":1437,"sku":"WS04-S-Blue","name":"Layla Tee-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                \n

                • Teal tee.
                • Long back hem.
                • Dropped shoulders.

                ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"layla-tee-s-blue-1437","links":{},"stock":{"item_id":1437,"product_id":1437,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-s-blue-1437.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1464","_score":1,"_source":{"id":1464,"sku":"WS06-XL-Red","name":"Elisa EverCool™ Tee-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                \n

                • Purple heather v-neck tee.
                • Short-Sleeves.
                • Luma EverCool™ fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"elisa-evercool-and-trade-tee-xl-red-1464","links":{},"stock":{"item_id":1464,"product_id":1464,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xl-red-1464.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1458","_score":1,"_source":{"id":1458,"sku":"WS06-M-Red","name":"Elisa EverCool™ Tee-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                \n

                • Purple heather v-neck tee.
                • Short-Sleeves.
                • Luma EverCool™ fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"elisa-evercool-and-trade-tee-m-red-1458","links":{},"stock":{"item_id":1458,"product_id":1458,"stock_id":1,"qty":49,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-m-red-1458.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1455","_score":1,"_source":{"id":1455,"sku":"WS06-S-Red","name":"Elisa EverCool™ Tee-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                \n

                • Purple heather v-neck tee.
                • Short-Sleeves.
                • Luma EverCool™ fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"elisa-evercool-and-trade-tee-s-red-1455","links":{},"stock":{"item_id":1455,"product_id":1455,"stock_id":1,"qty":80,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-s-red-1455.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1456","_score":1,"_source":{"id":1456,"sku":"WS06-M-Gray","name":"Elisa EverCool™ Tee-M-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                \n

                • Purple heather v-neck tee.
                • Short-Sleeves.
                • Luma EverCool™ fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"elisa-evercool-and-trade-tee-m-gray-1456","links":{},"stock":{"item_id":1456,"product_id":1456,"stock_id":1,"qty":60,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-m-gray-1456.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1471","_score":1,"_source":{"id":1471,"sku":"WS07-S-Yellow","name":"Juliana Short-Sleeve Tee-S-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                \n

                • Black scoop neck tee.
                • Side rouching.
                • Relaxed fit.

                ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juliana-short-sleeve-tee-s-yellow-1471","links":{},"stock":{"item_id":1471,"product_id":1471,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-s-yellow-1471.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1451","_score":1,"_source":{"id":1451,"sku":"WS06-XS-Purple","name":"Elisa EverCool™ Tee-XS-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                \n

                • Purple heather v-neck tee.
                • Short-Sleeves.
                • Luma EverCool™ fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"elisa-evercool-and-trade-tee-xs-purple-1451","links":{},"stock":{"item_id":1451,"product_id":1451,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xs-purple-1451.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1488","_score":1,"_source":{"id":1488,"sku":"WS08-M-Black","name":"Minerva LumaTech™ V-Tee-M-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                \n

                • Navy blue heather soft v-neck tee.
                • Flatlock seams for chafe-free comfort.
                • Relaxed cut.
                • Ultra-lightweight fabric.
                • Machine wash/dry.

                ","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"minerva-lumatech-and-trade-v-tee-m-black-1488","links":{},"stock":{"item_id":1488,"product_id":1488,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-07-16 06:34:06","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-m-black-1488.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1454","_score":1,"_source":{"id":1454,"sku":"WS06-S-Purple","name":"Elisa EverCool™ Tee-S-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                \n

                • Purple heather v-neck tee.
                • Short-Sleeves.
                • Luma EverCool™ fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"elisa-evercool-and-trade-tee-s-purple-1454","links":{},"stock":{"item_id":1454,"product_id":1454,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-s-purple-1454.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1467","_score":1,"_source":{"id":1467,"sku":"WS07-XS-White","name":"Juliana Short-Sleeve Tee-XS-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                \n

                • Black scoop neck tee.
                • Side rouching.
                • Relaxed fit.

                ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juliana-short-sleeve-tee-xs-white-1467","links":{},"stock":{"item_id":1467,"product_id":1467,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xs-white-1467.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1452","_score":1,"_source":{"id":1452,"sku":"WS06-XS-Red","name":"Elisa EverCool™ Tee-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                \n

                • Purple heather v-neck tee.
                • Short-Sleeves.
                • Luma EverCool™ fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"elisa-evercool-and-trade-tee-xs-red-1452","links":{},"stock":{"item_id":1452,"product_id":1452,"stock_id":1,"qty":74,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xs-red-1452.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1489","_score":1,"_source":{"id":1489,"sku":"WS08-M-Blue","name":"Minerva LumaTech™ V-Tee-M-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                \n

                • Navy blue heather soft v-neck tee.
                • Flatlock seams for chafe-free comfort.
                • Relaxed cut.
                • Ultra-lightweight fabric.
                • Machine wash/dry.

                ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"minerva-lumatech-and-trade-v-tee-m-blue-1489","links":{},"stock":{"item_id":1489,"product_id":1489,"stock_id":1,"qty":62,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-m-blue-1489.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1460","_score":1,"_source":{"id":1460,"sku":"WS06-L-Purple","name":"Elisa EverCool™ Tee-L-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                \n

                • Purple heather v-neck tee.
                • Short-Sleeves.
                • Luma EverCool™ fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"elisa-evercool-and-trade-tee-l-purple-1460","links":{},"stock":{"item_id":1460,"product_id":1460,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-l-purple-1460.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1475","_score":1,"_source":{"id":1475,"sku":"WS07-L-Black","name":"Juliana Short-Sleeve Tee-L-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                \n

                • Black scoop neck tee.
                • Side rouching.
                • Relaxed fit.

                ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juliana-short-sleeve-tee-l-black-1475","links":{},"stock":{"item_id":1475,"product_id":1475,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-l-black-1475.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1457","_score":1,"_source":{"id":1457,"sku":"WS06-M-Purple","name":"Elisa EverCool™ Tee-M-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                \n

                • Purple heather v-neck tee.
                • Short-Sleeves.
                • Luma EverCool™ fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"elisa-evercool-and-trade-tee-m-purple-1457","links":{},"stock":{"item_id":1457,"product_id":1457,"stock_id":1,"qty":55,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-m-purple-1457.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1496","_score":1,"_source":{"id":1496,"sku":"WS08-XL-Red","name":"Minerva LumaTech™ V-Tee-XL-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                \n

                • Navy blue heather soft v-neck tee.
                • Flatlock seams for chafe-free comfort.
                • Relaxed cut.
                • Ultra-lightweight fabric.
                • Machine wash/dry.

                ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"minerva-lumatech-and-trade-v-tee-xl-red-1496","links":{},"stock":{"item_id":1496,"product_id":1496,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xl-red-1496.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1470","_score":1,"_source":{"id":1470,"sku":"WS07-S-White","name":"Juliana Short-Sleeve Tee-S-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                \n

                • Black scoop neck tee.
                • Side rouching.
                • Relaxed fit.

                ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juliana-short-sleeve-tee-s-white-1470","links":{},"stock":{"item_id":1470,"product_id":1470,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-s-white-1470.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1453","_score":1,"_source":{"id":1453,"sku":"WS06-S-Gray","name":"Elisa EverCool™ Tee-S-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                \n

                • Purple heather v-neck tee.
                • Short-Sleeves.
                • Luma EverCool™ fabric.
                • Machine wash/line dry.

                ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"elisa-evercool-and-trade-tee-s-gray-1453","links":{},"stock":{"item_id":1453,"product_id":1453,"stock_id":1,"qty":78,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-s-gray-1453.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1490","_score":1,"_source":{"id":1490,"sku":"WS08-M-Red","name":"Minerva LumaTech™ V-Tee-M-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                \n

                • Navy blue heather soft v-neck tee.
                • Flatlock seams for chafe-free comfort.
                • Relaxed cut.
                • Ultra-lightweight fabric.
                • Machine wash/dry.

                ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"minerva-lumatech-and-trade-v-tee-m-red-1490","links":{},"stock":{"item_id":1490,"product_id":1490,"stock_id":1,"qty":70,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-m-red-1490.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1474","_score":1,"_source":{"id":1474,"sku":"WS07-M-Yellow","name":"Juliana Short-Sleeve Tee-M-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                \n

                • Black scoop neck tee.
                • Side rouching.
                • Relaxed fit.

                ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juliana-short-sleeve-tee-m-yellow-1474","links":{},"stock":{"item_id":1474,"product_id":1474,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-m-yellow-1474.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1419","_score":1,"_source":{"id":1419,"sku":"WS03-XS-Green","name":"Iris Workout Top-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                \n

                • Pink heather rouched v-neck.
                • Scoop neckline.
                • Angled flat seams.
                • Moisture wicking.
                • Body skimming.
                • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"iris-workout-top-xs-green-1419","links":{},"stock":{"item_id":1419,"product_id":1419,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xs-green-1419.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1410","_score":1,"_source":{"id":1410,"sku":"WS02-M-Red","name":"Gabrielle Micro Sleeve Top-M-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                \n

                • Lime green v-neck tee.
                • Slimming, flattering fit.
                • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                • Longer curved hem provides additional coverage.
                • 55% Hemp / 45% Organic Cotton.

                ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gabrielle-micro-sleeve-top-m-red-1410","links":{},"stock":{"item_id":1410,"product_id":1410,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-m-red-1410.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1404","_score":1,"_source":{"id":1404,"sku":"WS02-XS-Red","name":"Gabrielle Micro Sleeve Top-XS-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                \n

                • Lime green v-neck tee.
                • Slimming, flattering fit.
                • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                • Longer curved hem provides additional coverage.
                • 55% Hemp / 45% Organic Cotton.

                ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gabrielle-micro-sleeve-top-xs-red-1404","links":{},"stock":{"item_id":1404,"product_id":1404,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xs-red-1404.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1418","_score":1,"_source":{"id":1418,"sku":"WS03-XS-Blue","name":"Iris Workout Top-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                \n

                • Pink heather rouched v-neck.
                • Scoop neckline.
                • Angled flat seams.
                • Moisture wicking.
                • Body skimming.
                • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"iris-workout-top-xs-blue-1418","links":{},"stock":{"item_id":1418,"product_id":1418,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xs-blue-1418.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1414","_score":1,"_source":{"id":1414,"sku":"WS02-XL-Blue","name":"Gabrielle Micro Sleeve Top-XL-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                \n

                • Lime green v-neck tee.
                • Slimming, flattering fit.
                • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                • Longer curved hem provides additional coverage.
                • 55% Hemp / 45% Organic Cotton.

                ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gabrielle-micro-sleeve-top-xl-blue-1414","links":{},"stock":{"item_id":1414,"product_id":1414,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xl-blue-1414.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1412","_score":1,"_source":{"id":1412,"sku":"WS02-L-Green","name":"Gabrielle Micro Sleeve Top-L-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                \n

                • Lime green v-neck tee.
                • Slimming, flattering fit.
                • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                • Longer curved hem provides additional coverage.
                • 55% Hemp / 45% Organic Cotton.

                ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gabrielle-micro-sleeve-top-l-green-1412","links":{},"stock":{"item_id":1412,"product_id":1412,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-l-green-1412.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1402","_score":1,"_source":{"id":1402,"sku":"WS02-XS-Blue","name":"Gabrielle Micro Sleeve Top-XS-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                \n

                • Lime green v-neck tee.
                • Slimming, flattering fit.
                • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                • Longer curved hem provides additional coverage.
                • 55% Hemp / 45% Organic Cotton.

                ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gabrielle-micro-sleeve-top-xs-blue-1402","links":{},"stock":{"item_id":1402,"product_id":1402,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xs-blue-1402.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1650","_score":1,"_source":{"id":1650,"sku":"WB04-M-Yellow","name":"Prima Compete Bra Top-M-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                `
                • Colorblocked details.
                • Machine wash/line dry.

                ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"prima-compete-bra-top-m-yellow-1650","links":{},"stock":{"item_id":1650,"product_id":1650,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-m-yellow-1650.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1638","_score":1,"_source":{"id":1638,"sku":"WB03-XL-Green","name":"Celeste Sports Bra-XL-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                \n

                • Mint bra top.
                • Seam-free interior molded cups
                • Odor control.
                • UV protection.
                • Machine wash/dry.

                ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"celeste-sports-bra-xl-green-1638","links":{},"stock":{"item_id":1638,"product_id":1638,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xl-green-1638.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1640","_score":1,"_source":{"id":1640,"sku":"WB03-XL-Yellow","name":"Celeste Sports Bra-XL-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                \n

                • Mint bra top.
                • Seam-free interior molded cups
                • Odor control.
                • UV protection.
                • Machine wash/dry.

                ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"celeste-sports-bra-xl-yellow-1640","links":{},"stock":{"item_id":1640,"product_id":1640,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xl-yellow-1640.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1644","_score":1,"_source":{"id":1644,"sku":"WB04-XS-Yellow","name":"Prima Compete Bra Top-XS-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                `
                • Colorblocked details.
                • Machine wash/line dry.

                ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"prima-compete-bra-top-xs-yellow-1644","links":{},"stock":{"item_id":1644,"product_id":1644,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xs-yellow-1644.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1619","_score":1,"_source":{"id":1619,"sku":"WB02-L-Blue","name":"Erica Evercool Sports Bra-L-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                \n

                • Honeycomb light blue bra top.
                • Elastic hem.
                • Reinforced binding.
                • Machine wash/dry.

                ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erica-evercool-sports-bra-l-blue-1619","links":{},"stock":{"item_id":1619,"product_id":1619,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-l-blue-1619.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1612","_score":1,"_source":{"id":1612,"sku":"WB02-XS-Yellow","name":"Erica Evercool Sports Bra-XS-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                \n

                • Honeycomb light blue bra top.
                • Elastic hem.
                • Reinforced binding.
                • Machine wash/dry.

                ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erica-evercool-sports-bra-xs-yellow-1612","links":{},"stock":{"item_id":1612,"product_id":1612,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xs-yellow-1612.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1631","_score":1,"_source":{"id":1631,"sku":"WB03-S-Yellow","name":"Celeste Sports Bra-S-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                \n

                • Mint bra top.
                • Seam-free interior molded cups
                • Odor control.
                • UV protection.
                • Machine wash/dry.

                ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"celeste-sports-bra-s-yellow-1631","links":{},"stock":{"item_id":1631,"product_id":1631,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-s-yellow-1631.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1622","_score":1,"_source":{"id":1622,"sku":"WB02-XL-Blue","name":"Erica Evercool Sports Bra-XL-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                \n

                • Honeycomb light blue bra top.
                • Elastic hem.
                • Reinforced binding.
                • Machine wash/dry.

                ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erica-evercool-sports-bra-xl-blue-1622","links":{},"stock":{"item_id":1622,"product_id":1622,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xl-blue-1622.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1614","_score":1,"_source":{"id":1614,"sku":"WB02-S-Orange","name":"Erica Evercool Sports Bra-S-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                \n

                • Honeycomb light blue bra top.
                • Elastic hem.
                • Reinforced binding.
                • Machine wash/dry.

                ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erica-evercool-sports-bra-s-orange-1614","links":{},"stock":{"item_id":1614,"product_id":1614,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-s-orange-1614.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1626","_score":1,"_source":{"id":1626,"sku":"WB03-XS-Green","name":"Celeste Sports Bra-XS-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                \n

                • Mint bra top.
                • Seam-free interior molded cups
                • Odor control.
                • UV protection.
                • Machine wash/dry.

                ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"celeste-sports-bra-xs-green-1626","links":{},"stock":{"item_id":1626,"product_id":1626,"stock_id":1,"qty":73,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xs-green-1626.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1647","_score":1,"_source":{"id":1647,"sku":"WB04-S-Yellow","name":"Prima Compete Bra Top-S-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                `
                • Colorblocked details.
                • Machine wash/line dry.

                ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"prima-compete-bra-top-s-yellow-1647","links":{},"stock":{"item_id":1647,"product_id":1647,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-s-yellow-1647.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1630","_score":1,"_source":{"id":1630,"sku":"WB03-S-Red","name":"Celeste Sports Bra-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                \n

                • Mint bra top.
                • Seam-free interior molded cups
                • Odor control.
                • UV protection.
                • Machine wash/dry.

                ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"celeste-sports-bra-s-red-1630","links":{},"stock":{"item_id":1630,"product_id":1630,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-s-red-1630.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1628","_score":1,"_source":{"id":1628,"sku":"WB03-XS-Yellow","name":"Celeste Sports Bra-XS-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                \n

                • Mint bra top.
                • Seam-free interior molded cups
                • Odor control.
                • UV protection.
                • Machine wash/dry.

                ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"celeste-sports-bra-xs-yellow-1628","links":{},"stock":{"item_id":1628,"product_id":1628,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xs-yellow-1628.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1645","_score":1,"_source":{"id":1645,"sku":"WB04-S-Blue","name":"Prima Compete Bra Top-S-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                `
                • Colorblocked details.
                • Machine wash/line dry.

                ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"prima-compete-bra-top-s-blue-1645","links":{},"stock":{"item_id":1645,"product_id":1645,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-s-blue-1645.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1648","_score":1,"_source":{"id":1648,"sku":"WB04-M-Blue","name":"Prima Compete Bra Top-M-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                `
                • Colorblocked details.
                • Machine wash/line dry.

                ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"prima-compete-bra-top-m-blue-1648","links":{},"stock":{"item_id":1648,"product_id":1648,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-m-blue-1648.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1642","_score":1,"_source":{"id":1642,"sku":"WB04-XS-Blue","name":"Prima Compete Bra Top-XS-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                `
                • Colorblocked details.
                • Machine wash/line dry.

                ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"prima-compete-bra-top-xs-blue-1642","links":{},"stock":{"item_id":1642,"product_id":1642,"stock_id":1,"qty":80,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xs-blue-1642.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1646","_score":1,"_source":{"id":1646,"sku":"WB04-S-Purple","name":"Prima Compete Bra Top-S-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                `
                • Colorblocked details.
                • Machine wash/line dry.

                ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"prima-compete-bra-top-s-purple-1646","links":{},"stock":{"item_id":1646,"product_id":1646,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-s-purple-1646.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1637","_score":1,"_source":{"id":1637,"sku":"WB03-L-Yellow","name":"Celeste Sports Bra-L-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2019-04-15 12:13:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                \r\n

                • Mint bra top.
                • Seam-free interior molded cups
                • Odor control.
                • UV protection.
                • Machine wash/dry.

                ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-l-yellow","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"170","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"celeste-sports-bra-l-yellow-1637","links":{},"stock":{"item_id":1637,"product_id":1637,"stock_id":1,"qty":7,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-l-yellow-1637.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1609","_score":1,"_source":{"id":1609,"sku":"WB01","name":"Electra Bra Top","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                \n

                • Gray rouched bra top.
                • Attractive back straps feature contrasting motif fabric.
                • Interior bra top is lined with breathable mesh.
                • Elastic underband for superior support.
                • Removable cup inserts.
                • Chafe-free flat lock seams provide added comfort.

                ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"electra-bra-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,154,38],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"131","pattern":"197","climate":[205,209],"slug":"electra-bra-top-1609","links":{},"stock":{"item_id":1609,"product_id":1609,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WB01-XS-Black","id":1594,"status":1,"name":"Electra Bra Top-XS-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"167","color":"49","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","url_key":"electra-bra-top-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WB01-XS-Gray","id":1595,"status":1,"name":"Electra Bra Top-XS-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"167","color":"52","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","url_key":"electra-bra-top-xs-gray","msrp_display_actual_price_type":"0"},{"sku":"WB01-XS-Purple","id":1596,"status":1,"name":"Electra Bra Top-XS-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"167","color":"57","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","url_key":"electra-bra-top-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WB01-S-Black","id":1597,"status":1,"name":"Electra Bra Top-S-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"168","color":"49","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","url_key":"electra-bra-top-s-black","msrp_display_actual_price_type":"0"},{"sku":"WB01-S-Gray","id":1598,"status":1,"name":"Electra Bra Top-S-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"168","color":"52","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","url_key":"electra-bra-top-s-gray","msrp_display_actual_price_type":"0"},{"sku":"WB01-S-Purple","id":1599,"status":1,"name":"Electra Bra Top-S-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"168","color":"57","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","url_key":"electra-bra-top-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WB01-M-Black","id":1600,"status":1,"name":"Electra Bra Top-M-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"169","color":"49","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","url_key":"electra-bra-top-m-black","msrp_display_actual_price_type":"0"},{"sku":"WB01-M-Gray","id":1601,"status":1,"name":"Electra Bra Top-M-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"169","color":"52","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","url_key":"electra-bra-top-m-gray","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB01-M-Purple","id":1602,"status":1,"name":"Electra Bra Top-M-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"169","color":"57","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","url_key":"electra-bra-top-m-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB01-L-Black","id":1603,"status":1,"name":"Electra Bra Top-L-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"170","color":"49","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","url_key":"electra-bra-top-l-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB01-L-Gray","id":1604,"status":1,"name":"Electra Bra Top-L-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"170","color":"52","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","url_key":"electra-bra-top-l-gray","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB01-L-Purple","id":1605,"status":1,"name":"Electra Bra Top-L-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"170","color":"57","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","url_key":"electra-bra-top-l-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB01-XL-Black","id":1606,"status":1,"name":"Electra Bra Top-XL-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"171","color":"49","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","url_key":"electra-bra-top-xl-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB01-XL-Gray","id":1607,"status":1,"name":"Electra Bra Top-XL-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"171","color":"52","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","url_key":"electra-bra-top-xl-gray","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB01-XL-Purple","id":1608,"status":1,"name":"Electra Bra Top-XL-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"171","color":"57","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","url_key":"electra-bra-top-xl-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39}],"configurable_options":[{"id":219,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"}],"product_id":1609,"attribute_code":"color"},{"id":218,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1609,"attribute_code":"size"}],"color_options":[49,52,57],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-1609.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1625","_score":1,"_source":{"id":1625,"sku":"WB02","name":"Erica Evercool Sports Bra","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                \n

                • Honeycomb light blue bra top.
                • Elastic hem.
                • Reinforced binding.
                • Machine wash/dry.

                ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"erica-evercool-sports-bra","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,149],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"131","pattern":"197","climate":[205,209],"slug":"erica-evercool-sports-bra-1625","links":{},"stock":{"item_id":1625,"product_id":1625,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WB02-XS-Blue","id":1610,"status":1,"name":"Erica Evercool Sports Bra-XS-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"50","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","url_key":"erica-evercool-sports-bra-xs-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-XS-Orange","id":1611,"status":1,"name":"Erica Evercool Sports Bra-XS-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"56","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","url_key":"erica-evercool-sports-bra-xs-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-XS-Yellow","id":1612,"status":1,"name":"Erica Evercool Sports Bra-XS-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"60","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","url_key":"erica-evercool-sports-bra-xs-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-S-Blue","id":1613,"status":1,"name":"Erica Evercool Sports Bra-S-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"50","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","url_key":"erica-evercool-sports-bra-s-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-S-Orange","id":1614,"status":1,"name":"Erica Evercool Sports Bra-S-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"56","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","url_key":"erica-evercool-sports-bra-s-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-S-Yellow","id":1615,"status":1,"name":"Erica Evercool Sports Bra-S-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"60","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","url_key":"erica-evercool-sports-bra-s-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-M-Blue","id":1616,"status":1,"name":"Erica Evercool Sports Bra-M-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"50","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","url_key":"erica-evercool-sports-bra-m-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-M-Orange","id":1617,"status":1,"name":"Erica Evercool Sports Bra-M-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"56","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","url_key":"erica-evercool-sports-bra-m-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-M-Yellow","id":1618,"status":1,"name":"Erica Evercool Sports Bra-M-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"60","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","url_key":"erica-evercool-sports-bra-m-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-L-Blue","id":1619,"status":1,"name":"Erica Evercool Sports Bra-L-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"50","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","url_key":"erica-evercool-sports-bra-l-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-L-Orange","id":1620,"status":1,"name":"Erica Evercool Sports Bra-L-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"56","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","url_key":"erica-evercool-sports-bra-l-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-L-Yellow","id":1621,"status":1,"name":"Erica Evercool Sports Bra-L-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"60","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","url_key":"erica-evercool-sports-bra-l-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-XL-Blue","id":1622,"status":1,"name":"Erica Evercool Sports Bra-XL-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"50","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","url_key":"erica-evercool-sports-bra-xl-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-XL-Orange","id":1623,"status":1,"name":"Erica Evercool Sports Bra-XL-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"56","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","url_key":"erica-evercool-sports-bra-xl-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-XL-Yellow","id":1624,"status":1,"name":"Erica Evercool Sports Bra-XL-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"60","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","url_key":"erica-evercool-sports-bra-xl-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39}],"configurable_options":[{"id":221,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1625,"attribute_code":"color"},{"id":220,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1625,"attribute_code":"size"}],"color_options":[50,56,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-1625.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1641","_score":1,"_source":{"id":1641,"sku":"WB03","name":"Celeste Sports Bra","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:21","updated_at":"2019-04-16 07:59:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":9.99,"max_price":9.99,"max_regular_price":9.99,"minimal_regular_price":9.99,"special_price":null,"minimal_price":9.99,"regular_price":39,"description":"

                Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                \r\n

                • Mint bra top.
                • Seam-free interior molded cups
                • Odor control.
                • UV protection.
                • Machine wash/dry.

                ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","category_ids":[26,8,35,2],"options_container":"container2","required_options":"1","has_options":"1","url_key":"celeste-sports-bra","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":[143,154],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":"131","pattern":"197","climate":[205,209],"slug":"celeste-sports-bra-1641","links":{},"stock":{"item_id":1641,"product_id":1641,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":null,"vid":null},{"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":null,"vid":null}],"configurable_children":[{"sku":"WB03-XS-Green","id":1626,"status":1,"name":"Celeste Sports Bra-XS-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"167","color":"53","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","url_key":"celeste-sports-bra-xs-green","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-XS-Red","id":1627,"status":1,"name":"Celeste Sports Bra-XS-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"167","color":"58","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","url_key":"celeste-sports-bra-xs-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-XS-Yellow","id":1628,"status":1,"name":"Celeste Sports Bra-XS-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"167","color":"60","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","url_key":"celeste-sports-bra-xs-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-S-Green","id":1629,"status":1,"name":"Celeste Sports Bra-S-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"168","color":"53","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","url_key":"celeste-sports-bra-s-green","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-S-Red","id":1630,"status":1,"name":"Celeste Sports Bra-S-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"168","color":"58","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","url_key":"celeste-sports-bra-s-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-S-Yellow","id":1631,"status":1,"name":"Celeste Sports Bra-S-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"168","color":"60","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","url_key":"celeste-sports-bra-s-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-M-Green","id":1632,"status":1,"name":"Celeste Sports Bra-M-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"169","color":"53","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","url_key":"celeste-sports-bra-m-green","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-M-Red","id":1633,"status":1,"name":"Celeste Sports Bra-M-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"169","color":"58","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","url_key":"celeste-sports-bra-m-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-M-Yellow","id":1634,"status":1,"name":"Celeste Sports Bra-M-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"169","color":"60","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","url_key":"celeste-sports-bra-m-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-L-Green","id":1635,"status":1,"name":"Celeste Sports Bra-L-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"0","category_ids":["26","8","35","2"],"size":"170","color":"53","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","url_key":"celeste-sports-bra-l-green","special_price":9.99,"special_from_date":"2019-04-18 00:00:00","msrp_display_actual_price_type":"0","final_price":9.99,"max_price":9.99,"max_regular_price":9.99,"minimal_regular_price":9.99,"minimal_price":9.99,"regular_price":39},{"sku":"WB03-L-Red","id":1636,"status":1,"name":"Celeste Sports Bra-L-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"170","color":"58","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","url_key":"celeste-sports-bra-l-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-L-Yellow","id":1637,"status":1,"name":"Celeste Sports Bra-L-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"170","color":"60","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","url_key":"celeste-sports-bra-l-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-XL-Green","id":1638,"status":1,"name":"Celeste Sports Bra-XL-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"171","color":"53","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","url_key":"celeste-sports-bra-xl-green","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-XL-Red","id":1639,"status":1,"name":"Celeste Sports Bra-XL-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"171","color":"58","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","url_key":"celeste-sports-bra-xl-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-XL-Yellow","id":1640,"status":1,"name":"Celeste Sports Bra-XL-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"171","color":"60","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","url_key":"celeste-sports-bra-xl-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39}],"configurable_options":[{"id":314,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":1641,"attribute_code":"color"},{"id":315,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1641,"attribute_code":"size"}],"color_options":[53,58,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-1641.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1713","_score":1,"_source":{"id":1713,"sku":"WT03-M-Purple","name":"Nora Practice Tank-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                \n

                • Pink stripped tank with side rouching.
                • Pre-shrunk.
                • Garment dyed.
                • 92% Organic Cotton/8% Lycra.

                ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nora-practice-tank-m-purple-1713","links":{},"stock":{"item_id":1713,"product_id":1713,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-m-purple-1713.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1720","_score":1,"_source":{"id":1720,"sku":"WT03-XL-Red","name":"Nora Practice Tank-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                \n

                • Pink stripped tank with side rouching.
                • Pre-shrunk.
                • Garment dyed.
                • 92% Organic Cotton/8% Lycra.

                ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nora-practice-tank-xl-red-1720","links":{},"stock":{"item_id":1720,"product_id":1720,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xl-red-1720.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1726","_score":1,"_source":{"id":1726,"sku":"WT04-S-Purple","name":"Nona Fitness Tank-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                \n

                • Blue/white striped mesh tank.
                • Relaxed fit.
                • Chafe-resistant trim around armholes and collar.
                • Machine wash/dry.

                ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nona-fitness-tank-s-purple-1726","links":{},"stock":{"item_id":1726,"product_id":1726,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-s-purple-1726.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1745","_score":1,"_source":{"id":1745,"sku":"WT05-M-Purple","name":"Leah Yoga Top-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                \n

                • Blue heather rouched tank top.
                • Camisole tank top.
                • Banding and shirring details.
                • Body hugging fit.
                • Contrast topstitch.
                • Interior shelf bra with shapewear technology.
                • 65% Polyester 35% Cotton.

                ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"leah-yoga-top-m-purple-1745","links":{},"stock":{"item_id":1745,"product_id":1745,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-m-purple-1745.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1716","_score":1,"_source":{"id":1716,"sku":"WT03-L-Purple","name":"Nora Practice Tank-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                \n

                • Pink stripped tank with side rouching.
                • Pre-shrunk.
                • Garment dyed.
                • 92% Organic Cotton/8% Lycra.

                ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nora-practice-tank-l-purple-1716","links":{},"stock":{"item_id":1716,"product_id":1716,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-l-purple-1716.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1739","_score":1,"_source":{"id":1739,"sku":"WT05-XS-Purple","name":"Leah Yoga Top-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                \n

                • Blue heather rouched tank top.
                • Camisole tank top.
                • Banding and shirring details.
                • Body hugging fit.
                • Contrast topstitch.
                • Interior shelf bra with shapewear technology.
                • 65% Polyester 35% Cotton.

                ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"leah-yoga-top-xs-purple-1739","links":{},"stock":{"item_id":1739,"product_id":1739,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xs-purple-1739.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1750","_score":1,"_source":{"id":1750,"sku":"WT05-XL-Orange","name":"Leah Yoga Top-XL-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                \n

                • Blue heather rouched tank top.
                • Camisole tank top.
                • Banding and shirring details.
                • Body hugging fit.
                • Contrast topstitch.
                • Interior shelf bra with shapewear technology.
                • 65% Polyester 35% Cotton.

                ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"leah-yoga-top-xl-orange-1750","links":{},"stock":{"item_id":1750,"product_id":1750,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xl-orange-1750.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1734","_score":1,"_source":{"id":1734,"sku":"WT04-XL-Blue","name":"Nona Fitness Tank-XL-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                \n

                • Blue/white striped mesh tank.
                • Relaxed fit.
                • Chafe-resistant trim around armholes and collar.
                • Machine wash/dry.

                ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nona-fitness-tank-xl-blue-1734","links":{},"stock":{"item_id":1734,"product_id":1734,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xl-blue-1734.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1749","_score":1,"_source":{"id":1749,"sku":"WT05-L-White","name":"Leah Yoga Top-L-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                \n

                • Blue heather rouched tank top.
                • Camisole tank top.
                • Banding and shirring details.
                • Body hugging fit.
                • Contrast topstitch.
                • Interior shelf bra with shapewear technology.
                • 65% Polyester 35% Cotton.

                ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"leah-yoga-top-l-white-1749","links":{},"stock":{"item_id":1749,"product_id":1749,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-l-white-1749.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1725","_score":1,"_source":{"id":1725,"sku":"WT04-S-Blue","name":"Nona Fitness Tank-S-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                \n

                • Blue/white striped mesh tank.
                • Relaxed fit.
                • Chafe-resistant trim around armholes and collar.
                • Machine wash/dry.

                ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nona-fitness-tank-s-blue-1725","links":{},"stock":{"item_id":1725,"product_id":1725,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-s-blue-1725.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1736","_score":1,"_source":{"id":1736,"sku":"WT04-XL-Red","name":"Nona Fitness Tank-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                \n

                • Blue/white striped mesh tank.
                • Relaxed fit.
                • Chafe-resistant trim around armholes and collar.
                • Machine wash/dry.

                ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nona-fitness-tank-xl-red-1736","links":{},"stock":{"item_id":1736,"product_id":1736,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xl-red-1736.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1731","_score":1,"_source":{"id":1731,"sku":"WT04-L-Blue","name":"Nona Fitness Tank-L-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                \n

                • Blue/white striped mesh tank.
                • Relaxed fit.
                • Chafe-resistant trim around armholes and collar.
                • Machine wash/dry.

                ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nona-fitness-tank-l-blue-1731","links":{},"stock":{"item_id":1731,"product_id":1731,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-l-blue-1731.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1746","_score":1,"_source":{"id":1746,"sku":"WT05-M-White","name":"Leah Yoga Top-M-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                \n

                • Blue heather rouched tank top.
                • Camisole tank top.
                • Banding and shirring details.
                • Body hugging fit.
                • Contrast topstitch.
                • Interior shelf bra with shapewear technology.
                • 65% Polyester 35% Cotton.

                ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"leah-yoga-top-m-white-1746","links":{},"stock":{"item_id":1746,"product_id":1746,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-m-white-1746.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1743","_score":1,"_source":{"id":1743,"sku":"WT05-S-White","name":"Leah Yoga Top-S-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                \n

                • Blue heather rouched tank top.
                • Camisole tank top.
                • Banding and shirring details.
                • Body hugging fit.
                • Contrast topstitch.
                • Interior shelf bra with shapewear technology.
                • 65% Polyester 35% Cotton.

                ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"leah-yoga-top-s-white-1743","links":{},"stock":{"item_id":1743,"product_id":1743,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-s-white-1743.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1729","_score":1,"_source":{"id":1729,"sku":"WT04-M-Purple","name":"Nona Fitness Tank-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                \n

                • Blue/white striped mesh tank.
                • Relaxed fit.
                • Chafe-resistant trim around armholes and collar.
                • Machine wash/dry.

                ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nona-fitness-tank-m-purple-1729","links":{},"stock":{"item_id":1729,"product_id":1729,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-m-purple-1729.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1741","_score":1,"_source":{"id":1741,"sku":"WT05-S-Orange","name":"Leah Yoga Top-S-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                \n

                • Blue heather rouched tank top.
                • Camisole tank top.
                • Banding and shirring details.
                • Body hugging fit.
                • Contrast topstitch.
                • Interior shelf bra with shapewear technology.
                • 65% Polyester 35% Cotton.

                ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"leah-yoga-top-s-orange-1741","links":{},"stock":{"item_id":1741,"product_id":1741,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-s-orange-1741.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1740","_score":1,"_source":{"id":1740,"sku":"WT05-XS-White","name":"Leah Yoga Top-XS-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                \n

                • Blue heather rouched tank top.
                • Camisole tank top.
                • Banding and shirring details.
                • Body hugging fit.
                • Contrast topstitch.
                • Interior shelf bra with shapewear technology.
                • 65% Polyester 35% Cotton.

                ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"leah-yoga-top-xs-white-1740","links":{},"stock":{"item_id":1740,"product_id":1740,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xs-white-1740.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1744","_score":1,"_source":{"id":1744,"sku":"WT05-M-Orange","name":"Leah Yoga Top-M-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                \n

                • Blue heather rouched tank top.
                • Camisole tank top.
                • Banding and shirring details.
                • Body hugging fit.
                • Contrast topstitch.
                • Interior shelf bra with shapewear technology.
                • 65% Polyester 35% Cotton.

                ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"leah-yoga-top-m-orange-1744","links":{},"stock":{"item_id":1744,"product_id":1744,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-m-orange-1744.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1747","_score":1,"_source":{"id":1747,"sku":"WT05-L-Orange","name":"Leah Yoga Top-L-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                \n

                • Blue heather rouched tank top.
                • Camisole tank top.
                • Banding and shirring details.
                • Body hugging fit.
                • Contrast topstitch.
                • Interior shelf bra with shapewear technology.
                • 65% Polyester 35% Cotton.

                ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"leah-yoga-top-l-orange-1747","links":{},"stock":{"item_id":1747,"product_id":1747,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-l-orange-1747.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1738","_score":1,"_source":{"id":1738,"sku":"WT05-XS-Orange","name":"Leah Yoga Top-XS-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                \n

                • Blue heather rouched tank top.
                • Camisole tank top.
                • Banding and shirring details.
                • Body hugging fit.
                • Contrast topstitch.
                • Interior shelf bra with shapewear technology.
                • 65% Polyester 35% Cotton.

                ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"leah-yoga-top-xs-orange-1738","links":{},"stock":{"item_id":1738,"product_id":1738,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xs-orange-1738.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1748","_score":1,"_source":{"id":1748,"sku":"WT05-L-Purple","name":"Leah Yoga Top-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                \n

                • Blue heather rouched tank top.
                • Camisole tank top.
                • Banding and shirring details.
                • Body hugging fit.
                • Contrast topstitch.
                • Interior shelf bra with shapewear technology.
                • 65% Polyester 35% Cotton.

                ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"leah-yoga-top-l-purple-1748","links":{},"stock":{"item_id":1748,"product_id":1748,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-l-purple-1748.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1737","_score":1,"_source":{"id":1737,"sku":"WT04","name":"Nona Fitness Tank","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                \n

                • Blue/white striped mesh tank.
                • Relaxed fit.
                • Chafe-resistant trim around armholes and collar.
                • Machine wash/dry.

                ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"nona-fitness-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,151],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"199","climate":[205,209],"slug":"nona-fitness-tank-1737","links":{},"stock":{"item_id":1737,"product_id":1737,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT04-XS-Blue","id":1722,"status":1,"name":"Nona Fitness Tank-XS-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"167","color":"50","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","url_key":"nona-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-XS-Purple","id":1723,"status":1,"name":"Nona Fitness Tank-XS-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"167","color":"57","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","url_key":"nona-fitness-tank-xs-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-XS-Red","id":1724,"status":1,"name":"Nona Fitness Tank-XS-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"167","color":"58","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","url_key":"nona-fitness-tank-xs-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-S-Blue","id":1725,"status":1,"name":"Nona Fitness Tank-S-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"168","color":"50","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","url_key":"nona-fitness-tank-s-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-S-Purple","id":1726,"status":1,"name":"Nona Fitness Tank-S-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"168","color":"57","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","url_key":"nona-fitness-tank-s-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-S-Red","id":1727,"status":1,"name":"Nona Fitness Tank-S-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"168","color":"58","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","url_key":"nona-fitness-tank-s-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-M-Blue","id":1728,"status":1,"name":"Nona Fitness Tank-M-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"169","color":"50","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","url_key":"nona-fitness-tank-m-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-M-Purple","id":1729,"status":1,"name":"Nona Fitness Tank-M-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"169","color":"57","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","url_key":"nona-fitness-tank-m-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-M-Red","id":1730,"status":1,"name":"Nona Fitness Tank-M-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"169","color":"58","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","url_key":"nona-fitness-tank-m-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-L-Blue","id":1731,"status":1,"name":"Nona Fitness Tank-L-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"170","color":"50","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","url_key":"nona-fitness-tank-l-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-L-Purple","id":1732,"status":1,"name":"Nona Fitness Tank-L-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"170","color":"57","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","url_key":"nona-fitness-tank-l-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-L-Red","id":1733,"status":1,"name":"Nona Fitness Tank-L-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"170","color":"58","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","url_key":"nona-fitness-tank-l-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-XL-Blue","id":1734,"status":1,"name":"Nona Fitness Tank-XL-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"171","color":"50","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","url_key":"nona-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-XL-Purple","id":1735,"status":1,"name":"Nona Fitness Tank-XL-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"171","color":"57","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","url_key":"nona-fitness-tank-xl-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-XL-Red","id":1736,"status":1,"name":"Nona Fitness Tank-XL-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"171","color":"58","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","url_key":"nona-fitness-tank-xl-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39}],"configurable_options":[{"id":235,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1737,"attribute_code":"color"},{"id":234,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1737,"attribute_code":"size"}],"color_options":[50,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-1737.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1705","_score":1,"_source":{"id":1705,"sku":"WT02","name":"Zoe Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                \n

                • Salmon heather tank top.
                • 1\" elastic band on inner bra.
                • Mesh lining on shelf bra for support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"zoe-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,33],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"zoe-tank-1705","links":{},"stock":{"item_id":1705,"product_id":1705,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT02-XS-Green","id":1690,"status":1,"name":"Zoe Tank-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"53","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","url_key":"zoe-tank-xs-green","msrp_display_actual_price_type":"0"},{"sku":"WT02-XS-Orange","id":1691,"status":1,"name":"Zoe Tank-XS-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"56","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","url_key":"zoe-tank-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WT02-XS-Yellow","id":1692,"status":1,"name":"Zoe Tank-XS-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"60","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","url_key":"zoe-tank-xs-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT02-S-Green","id":1693,"status":1,"name":"Zoe Tank-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"53","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","url_key":"zoe-tank-s-green","msrp_display_actual_price_type":"0"},{"sku":"WT02-S-Orange","id":1694,"status":1,"name":"Zoe Tank-S-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"56","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","url_key":"zoe-tank-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WT02-S-Yellow","id":1695,"status":1,"name":"Zoe Tank-S-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"60","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","url_key":"zoe-tank-s-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT02-M-Green","id":1696,"status":1,"name":"Zoe Tank-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"53","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","url_key":"zoe-tank-m-green","msrp_display_actual_price_type":"0"},{"sku":"WT02-M-Orange","id":1697,"status":1,"name":"Zoe Tank-M-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"56","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","url_key":"zoe-tank-m-orange","msrp_display_actual_price_type":"0"},{"sku":"WT02-M-Yellow","id":1698,"status":1,"name":"Zoe Tank-M-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"60","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","url_key":"zoe-tank-m-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT02-L-Green","id":1699,"status":1,"name":"Zoe Tank-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"53","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","url_key":"zoe-tank-l-green","msrp_display_actual_price_type":"0"},{"sku":"WT02-L-Orange","id":1700,"status":1,"name":"Zoe Tank-L-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"56","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","url_key":"zoe-tank-l-orange","msrp_display_actual_price_type":"0"},{"sku":"WT02-L-Yellow","id":1701,"status":1,"name":"Zoe Tank-L-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"60","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","url_key":"zoe-tank-l-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT02-XL-Green","id":1702,"status":1,"name":"Zoe Tank-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"53","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","url_key":"zoe-tank-xl-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT02-XL-Orange","id":1703,"status":1,"name":"Zoe Tank-XL-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"56","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","url_key":"zoe-tank-xl-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT02-XL-Yellow","id":1704,"status":1,"name":"Zoe Tank-XL-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"60","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","url_key":"zoe-tank-xl-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":231,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1705,"attribute_code":"color"},{"id":230,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1705,"attribute_code":"size"}],"color_options":[53,56,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-1705.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1721","_score":1,"_source":{"id":1721,"sku":"WT03","name":"Nora Practice Tank","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                \n

                • Pink stripped tank with side rouching.
                • Pre-shrunk.
                • Garment dyed.
                • 92% Organic Cotton/8% Lycra.

                ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"nora-practice-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"nora-practice-tank-1721","links":{},"stock":{"item_id":1721,"product_id":1721,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT03-XS-Orange","id":1706,"status":1,"name":"Nora Practice Tank-XS-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"167","color":"56","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","url_key":"nora-practice-tank-xs-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-XS-Purple","id":1707,"status":1,"name":"Nora Practice Tank-XS-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"167","color":"57","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","url_key":"nora-practice-tank-xs-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-XS-Red","id":1708,"status":1,"name":"Nora Practice Tank-XS-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"167","color":"58","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","url_key":"nora-practice-tank-xs-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-S-Orange","id":1709,"status":1,"name":"Nora Practice Tank-S-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"168","color":"56","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","url_key":"nora-practice-tank-s-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-S-Purple","id":1710,"status":1,"name":"Nora Practice Tank-S-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"168","color":"57","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","url_key":"nora-practice-tank-s-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-S-Red","id":1711,"status":1,"name":"Nora Practice Tank-S-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"168","color":"58","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","url_key":"nora-practice-tank-s-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-M-Orange","id":1712,"status":1,"name":"Nora Practice Tank-M-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"169","color":"56","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","url_key":"nora-practice-tank-m-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-M-Purple","id":1713,"status":1,"name":"Nora Practice Tank-M-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"169","color":"57","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","url_key":"nora-practice-tank-m-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-M-Red","id":1714,"status":1,"name":"Nora Practice Tank-M-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"169","color":"58","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","url_key":"nora-practice-tank-m-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-L-Orange","id":1715,"status":1,"name":"Nora Practice Tank-L-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"170","color":"56","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","url_key":"nora-practice-tank-l-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-L-Purple","id":1716,"status":1,"name":"Nora Practice Tank-L-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"170","color":"57","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","url_key":"nora-practice-tank-l-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-L-Red","id":1717,"status":1,"name":"Nora Practice Tank-L-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"170","color":"58","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","url_key":"nora-practice-tank-l-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-XL-Orange","id":1718,"status":1,"name":"Nora Practice Tank-XL-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"171","color":"56","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","url_key":"nora-practice-tank-xl-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-XL-Purple","id":1719,"status":1,"name":"Nora Practice Tank-XL-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"171","color":"57","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","url_key":"nora-practice-tank-xl-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-XL-Red","id":1720,"status":1,"name":"Nora Practice Tank-XL-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"171","color":"58","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","url_key":"nora-practice-tank-xl-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39}],"configurable_options":[{"id":233,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1721,"attribute_code":"color"},{"id":232,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1721,"attribute_code":"size"}],"color_options":[56,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-1721.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1698","_score":1,"_source":{"id":1698,"sku":"WT02-M-Yellow","name":"Zoe Tank-M-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                \n

                • Salmon heather tank top.
                • 1\" elastic band on inner bra.
                • Mesh lining on shelf bra for support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoe-tank-m-yellow-1698","links":{},"stock":{"item_id":1698,"product_id":1698,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-m-yellow-1698.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1692","_score":1,"_source":{"id":1692,"sku":"WT02-XS-Yellow","name":"Zoe Tank-XS-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                \n

                • Salmon heather tank top.
                • 1\" elastic band on inner bra.
                • Mesh lining on shelf bra for support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoe-tank-xs-yellow-1692","links":{},"stock":{"item_id":1692,"product_id":1692,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xs-yellow-1692.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1699","_score":1,"_source":{"id":1699,"sku":"WT02-L-Green","name":"Zoe Tank-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                \n

                • Salmon heather tank top.
                • 1\" elastic band on inner bra.
                • Mesh lining on shelf bra for support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoe-tank-l-green-1699","links":{},"stock":{"item_id":1699,"product_id":1699,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-l-green-1699.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1694","_score":1,"_source":{"id":1694,"sku":"WT02-S-Orange","name":"Zoe Tank-S-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                \n

                • Salmon heather tank top.
                • 1\" elastic band on inner bra.
                • Mesh lining on shelf bra for support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoe-tank-s-orange-1694","links":{},"stock":{"item_id":1694,"product_id":1694,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-s-orange-1694.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1673","_score":1,"_source":{"id":1673,"sku":"WB05","name":"Lucia Cross-Fit Bra ","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                \n

                • Black/white bra top.
                • Criss-cross back design.
                • Machine wash/dry.

                ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"lucia-cross-fit-bra","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[150,37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"131","pattern":"194","climate":[205,209],"slug":"lucia-cross-fit-bra-1673","links":{},"stock":{"item_id":1673,"product_id":1673,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WB05-XS-Black","id":1658,"status":1,"name":"Lucia Cross-Fit Bra -XS-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"49","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","url_key":"lucia-cross-fit-bra-xs-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-XS-Orange","id":1659,"status":1,"name":"Lucia Cross-Fit Bra -XS-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"56","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","url_key":"lucia-cross-fit-bra-xs-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-XS-Purple","id":1660,"status":1,"name":"Lucia Cross-Fit Bra -XS-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"57","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","url_key":"lucia-cross-fit-bra-xs-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-S-Black","id":1661,"status":1,"name":"Lucia Cross-Fit Bra -S-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"49","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","url_key":"lucia-cross-fit-bra-s-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-S-Orange","id":1662,"status":1,"name":"Lucia Cross-Fit Bra -S-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"56","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","url_key":"lucia-cross-fit-bra-s-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-S-Purple","id":1663,"status":1,"name":"Lucia Cross-Fit Bra -S-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"57","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","url_key":"lucia-cross-fit-bra-s-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-M-Black","id":1664,"status":1,"name":"Lucia Cross-Fit Bra -M-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"49","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","url_key":"lucia-cross-fit-bra-m-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-M-Orange","id":1665,"status":1,"name":"Lucia Cross-Fit Bra -M-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"56","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","url_key":"lucia-cross-fit-bra-m-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-M-Purple","id":1666,"status":1,"name":"Lucia Cross-Fit Bra -M-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"57","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","url_key":"lucia-cross-fit-bra-m-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-L-Black","id":1667,"status":1,"name":"Lucia Cross-Fit Bra -L-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"49","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","url_key":"lucia-cross-fit-bra-l-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-L-Orange","id":1668,"status":1,"name":"Lucia Cross-Fit Bra -L-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"56","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","url_key":"lucia-cross-fit-bra-l-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-L-Purple","id":1669,"status":1,"name":"Lucia Cross-Fit Bra -L-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"57","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","url_key":"lucia-cross-fit-bra-l-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-XL-Black","id":1670,"status":1,"name":"Lucia Cross-Fit Bra -XL-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"49","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","url_key":"lucia-cross-fit-bra-xl-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-XL-Orange","id":1671,"status":1,"name":"Lucia Cross-Fit Bra -XL-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"56","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","url_key":"lucia-cross-fit-bra-xl-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-XL-Purple","id":1672,"status":1,"name":"Lucia Cross-Fit Bra -XL-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"57","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","url_key":"lucia-cross-fit-bra-xl-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39}],"configurable_options":[{"id":227,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1673,"attribute_code":"color"},{"id":226,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1673,"attribute_code":"size"}],"color_options":[49,56,57],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-1673.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1657","_score":1,"_source":{"id":1657,"sku":"WB04","name":"Prima Compete Bra Top","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                `
                • Colorblocked details.
                • Machine wash/line dry.

                ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"prima-compete-bra-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,154,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"131","pattern":"197","climate":[205,209],"slug":"prima-compete-bra-top-1657","links":{},"stock":{"item_id":1657,"product_id":1657,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WB04-XS-Blue","id":1642,"status":1,"name":"Prima Compete Bra Top-XS-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"50","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","url_key":"prima-compete-bra-top-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WB04-XS-Purple","id":1643,"status":1,"name":"Prima Compete Bra Top-XS-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"57","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","url_key":"prima-compete-bra-top-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WB04-XS-Yellow","id":1644,"status":1,"name":"Prima Compete Bra Top-XS-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"60","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","url_key":"prima-compete-bra-top-xs-yellow","msrp_display_actual_price_type":"0"},{"sku":"WB04-S-Blue","id":1645,"status":1,"name":"Prima Compete Bra Top-S-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"50","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","url_key":"prima-compete-bra-top-s-blue","msrp_display_actual_price_type":"0"},{"sku":"WB04-S-Purple","id":1646,"status":1,"name":"Prima Compete Bra Top-S-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"57","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","url_key":"prima-compete-bra-top-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WB04-S-Yellow","id":1647,"status":1,"name":"Prima Compete Bra Top-S-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"60","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","url_key":"prima-compete-bra-top-s-yellow","msrp_display_actual_price_type":"0"},{"sku":"WB04-M-Blue","id":1648,"status":1,"name":"Prima Compete Bra Top-M-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"50","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","url_key":"prima-compete-bra-top-m-blue","msrp_display_actual_price_type":"0"},{"sku":"WB04-M-Purple","id":1649,"status":1,"name":"Prima Compete Bra Top-M-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"57","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","url_key":"prima-compete-bra-top-m-purple","msrp_display_actual_price_type":"0"},{"sku":"WB04-M-Yellow","id":1650,"status":1,"name":"Prima Compete Bra Top-M-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"60","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","url_key":"prima-compete-bra-top-m-yellow","msrp_display_actual_price_type":"0"},{"sku":"WB04-L-Blue","id":1651,"status":1,"name":"Prima Compete Bra Top-L-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"50","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","url_key":"prima-compete-bra-top-l-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WB04-L-Purple","id":1652,"status":1,"name":"Prima Compete Bra Top-L-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"57","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","url_key":"prima-compete-bra-top-l-purple","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WB04-L-Yellow","id":1653,"status":1,"name":"Prima Compete Bra Top-L-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"60","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","url_key":"prima-compete-bra-top-l-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WB04-XL-Blue","id":1654,"status":1,"name":"Prima Compete Bra Top-XL-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"50","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","url_key":"prima-compete-bra-top-xl-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WB04-XL-Purple","id":1655,"status":1,"name":"Prima Compete Bra Top-XL-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"57","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","url_key":"prima-compete-bra-top-xl-purple","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WB04-XL-Yellow","id":1656,"status":1,"name":"Prima Compete Bra Top-XL-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"60","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","url_key":"prima-compete-bra-top-xl-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24}],"configurable_options":[{"id":225,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"},{"value_index":60,"label":"Yellow"}],"product_id":1657,"attribute_code":"color"},{"id":224,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1657,"attribute_code":"size"}],"color_options":[50,57,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-1657.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1689","_score":1,"_source":{"id":1689,"sku":"WT01","name":"Bella Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                \n

                • Navy blue tank top - cotton.
                • Feminine scoop neckline.
                • Power mesh lining in shelf bra for superior support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"bella-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"bella-tank-1689","links":{},"stock":{"item_id":1689,"product_id":1689,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT01-XS-Black","id":1674,"status":1,"name":"Bella Tank-XS-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"167","color":"49","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","url_key":"bella-tank-xs-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-XS-Blue","id":1675,"status":1,"name":"Bella Tank-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"167","color":"50","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","url_key":"bella-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-XS-Orange","id":1676,"status":1,"name":"Bella Tank-XS-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"167","color":"56","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","url_key":"bella-tank-xs-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-S-Black","id":1677,"status":1,"name":"Bella Tank-S-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"168","color":"49","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","url_key":"bella-tank-s-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-S-Blue","id":1678,"status":1,"name":"Bella Tank-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"168","color":"50","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","url_key":"bella-tank-s-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-S-Orange","id":1679,"status":1,"name":"Bella Tank-S-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"168","color":"56","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","url_key":"bella-tank-s-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-M-Black","id":1680,"status":1,"name":"Bella Tank-M-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"169","color":"49","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","url_key":"bella-tank-m-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-M-Blue","id":1681,"status":1,"name":"Bella Tank-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"169","color":"50","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","url_key":"bella-tank-m-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-M-Orange","id":1682,"status":1,"name":"Bella Tank-M-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"169","color":"56","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","url_key":"bella-tank-m-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-L-Black","id":1683,"status":1,"name":"Bella Tank-L-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"170","color":"49","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","url_key":"bella-tank-l-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-L-Blue","id":1684,"status":1,"name":"Bella Tank-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"170","color":"50","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","url_key":"bella-tank-l-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-L-Orange","id":1685,"status":1,"name":"Bella Tank-L-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"170","color":"56","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","url_key":"bella-tank-l-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-XL-Black","id":1686,"status":1,"name":"Bella Tank-XL-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"171","color":"49","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","url_key":"bella-tank-xl-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-XL-Blue","id":1687,"status":1,"name":"Bella Tank-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"171","color":"50","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","url_key":"bella-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-XL-Orange","id":1688,"status":1,"name":"Bella Tank-XL-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"171","color":"56","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","url_key":"bella-tank-xl-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":229,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":1689,"attribute_code":"color"},{"id":228,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1689,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-1689.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1667","_score":1,"_source":{"id":1667,"sku":"WB05-L-Black","name":"Lucia Cross-Fit Bra -L-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                \n

                • Black/white bra top.
                • Criss-cross back design.
                • Machine wash/dry.

                ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lucia-cross-fit-bra-l-black-1667","links":{},"stock":{"item_id":1667,"product_id":1667,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-l-black-1667.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1651","_score":1,"_source":{"id":1651,"sku":"WB04-L-Blue","name":"Prima Compete Bra Top-L-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                `
                • Colorblocked details.
                • Machine wash/line dry.

                ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"prima-compete-bra-top-l-blue-1651","links":{},"stock":{"item_id":1651,"product_id":1651,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-l-blue-1651.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1658","_score":1,"_source":{"id":1658,"sku":"WB05-XS-Black","name":"Lucia Cross-Fit Bra -XS-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                \n

                • Black/white bra top.
                • Criss-cross back design.
                • Machine wash/dry.

                ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lucia-cross-fit-bra-xs-black-1658","links":{},"stock":{"item_id":1658,"product_id":1658,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xs-black-1658.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1664","_score":1,"_source":{"id":1664,"sku":"WB05-M-Black","name":"Lucia Cross-Fit Bra -M-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                \n

                • Black/white bra top.
                • Criss-cross back design.
                • Machine wash/dry.

                ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lucia-cross-fit-bra-m-black-1664","links":{},"stock":{"item_id":1664,"product_id":1664,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-m-black-1664.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1688","_score":1,"_source":{"id":1688,"sku":"WT01-XL-Orange","name":"Bella Tank-XL-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                \n

                • Navy blue tank top - cotton.
                • Feminine scoop neckline.
                • Power mesh lining in shelf bra for superior support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bella-tank-xl-orange-1688","links":{},"stock":{"item_id":1688,"product_id":1688,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xl-orange-1688.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1661","_score":1,"_source":{"id":1661,"sku":"WB05-S-Black","name":"Lucia Cross-Fit Bra -S-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                \n

                • Black/white bra top.
                • Criss-cross back design.
                • Machine wash/dry.

                ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lucia-cross-fit-bra-s-black-1661","links":{},"stock":{"item_id":1661,"product_id":1661,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-s-black-1661.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1672","_score":1,"_source":{"id":1672,"sku":"WB05-XL-Purple","name":"Lucia Cross-Fit Bra -XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                \n

                • Black/white bra top.
                • Criss-cross back design.
                • Machine wash/dry.

                ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lucia-cross-fit-bra-xl-purple-1672","links":{},"stock":{"item_id":1672,"product_id":1672,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xl-purple-1672.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1674","_score":1,"_source":{"id":1674,"sku":"WT01-XS-Black","name":"Bella Tank-XS-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                \n

                • Navy blue tank top - cotton.
                • Feminine scoop neckline.
                • Power mesh lining in shelf bra for superior support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bella-tank-xs-black-1674","links":{},"stock":{"item_id":1674,"product_id":1674,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xs-black-1674.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1654","_score":1,"_source":{"id":1654,"sku":"WB04-XL-Blue","name":"Prima Compete Bra Top-XL-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                `
                • Colorblocked details.
                • Machine wash/line dry.

                ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"prima-compete-bra-top-xl-blue-1654","links":{},"stock":{"item_id":1654,"product_id":1654,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xl-blue-1654.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1671","_score":1,"_source":{"id":1671,"sku":"WB05-XL-Orange","name":"Lucia Cross-Fit Bra -XL-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                \n

                • Black/white bra top.
                • Criss-cross back design.
                • Machine wash/dry.

                ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lucia-cross-fit-bra-xl-orange-1671","links":{},"stock":{"item_id":1671,"product_id":1671,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xl-orange-1671.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1681","_score":1,"_source":{"id":1681,"sku":"WT01-M-Blue","name":"Bella Tank-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                \n

                • Navy blue tank top - cotton.
                • Feminine scoop neckline.
                • Power mesh lining in shelf bra for superior support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bella-tank-m-blue-1681","links":{},"stock":{"item_id":1681,"product_id":1681,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-m-blue-1681.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1652","_score":1,"_source":{"id":1652,"sku":"WB04-L-Purple","name":"Prima Compete Bra Top-L-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                `
                • Colorblocked details.
                • Machine wash/line dry.

                ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"prima-compete-bra-top-l-purple-1652","links":{},"stock":{"item_id":1652,"product_id":1652,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-l-purple-1652.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1666","_score":1,"_source":{"id":1666,"sku":"WB05-M-Purple","name":"Lucia Cross-Fit Bra -M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                \n

                • Black/white bra top.
                • Criss-cross back design.
                • Machine wash/dry.

                ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lucia-cross-fit-bra-m-purple-1666","links":{},"stock":{"item_id":1666,"product_id":1666,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-m-purple-1666.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1691","_score":1,"_source":{"id":1691,"sku":"WT02-XS-Orange","name":"Zoe Tank-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                \n

                • Salmon heather tank top.
                • 1\" elastic band on inner bra.
                • Mesh lining on shelf bra for support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoe-tank-xs-orange-1691","links":{},"stock":{"item_id":1691,"product_id":1691,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xs-orange-1691.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1685","_score":1,"_source":{"id":1685,"sku":"WT01-L-Orange","name":"Bella Tank-L-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                \n

                • Navy blue tank top - cotton.
                • Feminine scoop neckline.
                • Power mesh lining in shelf bra for superior support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bella-tank-l-orange-1685","links":{},"stock":{"item_id":1685,"product_id":1685,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-l-orange-1685.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1670","_score":1,"_source":{"id":1670,"sku":"WB05-XL-Black","name":"Lucia Cross-Fit Bra -XL-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                \n

                • Black/white bra top.
                • Criss-cross back design.
                • Machine wash/dry.

                ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lucia-cross-fit-bra-xl-black-1670","links":{},"stock":{"item_id":1670,"product_id":1670,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xl-black-1670.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1682","_score":1,"_source":{"id":1682,"sku":"WT01-M-Orange","name":"Bella Tank-M-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                \n

                • Navy blue tank top - cotton.
                • Feminine scoop neckline.
                • Power mesh lining in shelf bra for superior support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bella-tank-m-orange-1682","links":{},"stock":{"item_id":1682,"product_id":1682,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-m-orange-1682.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1676","_score":1,"_source":{"id":1676,"sku":"WT01-XS-Orange","name":"Bella Tank-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                \n

                • Navy blue tank top - cotton.
                • Feminine scoop neckline.
                • Power mesh lining in shelf bra for superior support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bella-tank-xs-orange-1676","links":{},"stock":{"item_id":1676,"product_id":1676,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xs-orange-1676.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1668","_score":1,"_source":{"id":1668,"sku":"WB05-L-Orange","name":"Lucia Cross-Fit Bra -L-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                \n

                • Black/white bra top.
                • Criss-cross back design.
                • Machine wash/dry.

                ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lucia-cross-fit-bra-l-orange-1668","links":{},"stock":{"item_id":1668,"product_id":1668,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-l-orange-1668.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1660","_score":1,"_source":{"id":1660,"sku":"WB05-XS-Purple","name":"Lucia Cross-Fit Bra -XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                \n

                • Black/white bra top.
                • Criss-cross back design.
                • Machine wash/dry.

                ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lucia-cross-fit-bra-xs-purple-1660","links":{},"stock":{"item_id":1660,"product_id":1660,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xs-purple-1660.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1659","_score":1,"_source":{"id":1659,"sku":"WB05-XS-Orange","name":"Lucia Cross-Fit Bra -XS-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                \n

                • Black/white bra top.
                • Criss-cross back design.
                • Machine wash/dry.

                ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lucia-cross-fit-bra-xs-orange-1659","links":{},"stock":{"item_id":1659,"product_id":1659,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xs-orange-1659.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1675","_score":1,"_source":{"id":1675,"sku":"WT01-XS-Blue","name":"Bella Tank-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                \n

                • Navy blue tank top - cotton.
                • Feminine scoop neckline.
                • Power mesh lining in shelf bra for superior support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bella-tank-xs-blue-1675","links":{},"stock":{"item_id":1675,"product_id":1675,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xs-blue-1675.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1678","_score":1,"_source":{"id":1678,"sku":"WT01-S-Blue","name":"Bella Tank-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                \n

                • Navy blue tank top - cotton.
                • Feminine scoop neckline.
                • Power mesh lining in shelf bra for superior support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bella-tank-s-blue-1678","links":{},"stock":{"item_id":1678,"product_id":1678,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-s-blue-1678.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1690","_score":1,"_source":{"id":1690,"sku":"WT02-XS-Green","name":"Zoe Tank-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                \n

                • Salmon heather tank top.
                • 1\" elastic band on inner bra.
                • Mesh lining on shelf bra for support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoe-tank-xs-green-1690","links":{},"stock":{"item_id":1690,"product_id":1690,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xs-green-1690.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1683","_score":1,"_source":{"id":1683,"sku":"WT01-L-Black","name":"Bella Tank-L-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                \n

                • Navy blue tank top - cotton.
                • Feminine scoop neckline.
                • Power mesh lining in shelf bra for superior support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bella-tank-l-black-1683","links":{},"stock":{"item_id":1683,"product_id":1683,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-l-black-1683.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1697","_score":1,"_source":{"id":1697,"sku":"WT02-M-Orange","name":"Zoe Tank-M-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                \n

                • Salmon heather tank top.
                • 1\" elastic band on inner bra.
                • Mesh lining on shelf bra for support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoe-tank-m-orange-1697","links":{},"stock":{"item_id":1697,"product_id":1697,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-m-orange-1697.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1679","_score":1,"_source":{"id":1679,"sku":"WT01-S-Orange","name":"Bella Tank-S-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                \n

                • Navy blue tank top - cotton.
                • Feminine scoop neckline.
                • Power mesh lining in shelf bra for superior support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bella-tank-s-orange-1679","links":{},"stock":{"item_id":1679,"product_id":1679,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-s-orange-1679.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1686","_score":1,"_source":{"id":1686,"sku":"WT01-XL-Black","name":"Bella Tank-XL-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                \n

                • Navy blue tank top - cotton.
                • Feminine scoop neckline.
                • Power mesh lining in shelf bra for superior support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bella-tank-xl-black-1686","links":{},"stock":{"item_id":1686,"product_id":1686,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xl-black-1686.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1687","_score":1,"_source":{"id":1687,"sku":"WT01-XL-Blue","name":"Bella Tank-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                \n

                • Navy blue tank top - cotton.
                • Feminine scoop neckline.
                • Power mesh lining in shelf bra for superior support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bella-tank-xl-blue-1687","links":{},"stock":{"item_id":1687,"product_id":1687,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xl-blue-1687.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1680","_score":1,"_source":{"id":1680,"sku":"WT01-M-Black","name":"Bella Tank-M-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                \n

                • Navy blue tank top - cotton.
                • Feminine scoop neckline.
                • Power mesh lining in shelf bra for superior support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bella-tank-m-black-1680","links":{},"stock":{"item_id":1680,"product_id":1680,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-m-black-1680.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1696","_score":1,"_source":{"id":1696,"sku":"WT02-M-Green","name":"Zoe Tank-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                \n

                • Salmon heather tank top.
                • 1\" elastic band on inner bra.
                • Mesh lining on shelf bra for support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoe-tank-m-green-1696","links":{},"stock":{"item_id":1696,"product_id":1696,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-m-green-1696.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1695","_score":1,"_source":{"id":1695,"sku":"WT02-S-Yellow","name":"Zoe Tank-S-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                \n

                • Salmon heather tank top.
                • 1\" elastic band on inner bra.
                • Mesh lining on shelf bra for support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoe-tank-s-yellow-1695","links":{},"stock":{"item_id":1695,"product_id":1695,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-s-yellow-1695.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1677","_score":1,"_source":{"id":1677,"sku":"WT01-S-Black","name":"Bella Tank-S-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                \n

                • Navy blue tank top - cotton.
                • Feminine scoop neckline.
                • Power mesh lining in shelf bra for superior support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bella-tank-s-black-1677","links":{},"stock":{"item_id":1677,"product_id":1677,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-s-black-1677.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1684","_score":1,"_source":{"id":1684,"sku":"WT01-L-Blue","name":"Bella Tank-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                \n

                • Navy blue tank top - cotton.
                • Feminine scoop neckline.
                • Power mesh lining in shelf bra for superior support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bella-tank-l-blue-1684","links":{},"stock":{"item_id":1684,"product_id":1684,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-l-blue-1684.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1693","_score":1,"_source":{"id":1693,"sku":"WT02-S-Green","name":"Zoe Tank-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                \n

                • Salmon heather tank top.
                • 1\" elastic band on inner bra.
                • Mesh lining on shelf bra for support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoe-tank-s-green-1693","links":{},"stock":{"item_id":1693,"product_id":1693,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-s-green-1693.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1700","_score":1,"_source":{"id":1700,"sku":"WT02-L-Orange","name":"Zoe Tank-L-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                \n

                • Salmon heather tank top.
                • 1\" elastic band on inner bra.
                • Mesh lining on shelf bra for support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoe-tank-l-orange-1700","links":{},"stock":{"item_id":1700,"product_id":1700,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-l-orange-1700.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1603","_score":1,"_source":{"id":1603,"sku":"WB01-L-Black","name":"Electra Bra Top-L-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                \n

                • Gray rouched bra top.
                • Attractive back straps feature contrasting motif fabric.
                • Interior bra top is lined with breathable mesh.
                • Elastic underband for superior support.
                • Removable cup inserts.
                • Chafe-free flat lock seams provide added comfort.

                ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"electra-bra-top-l-black-1603","links":{},"stock":{"item_id":1603,"product_id":1603,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-l-black-1603.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1601","_score":1,"_source":{"id":1601,"sku":"WB01-M-Gray","name":"Electra Bra Top-M-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                \n

                • Gray rouched bra top.
                • Attractive back straps feature contrasting motif fabric.
                • Interior bra top is lined with breathable mesh.
                • Elastic underband for superior support.
                • Removable cup inserts.
                • Chafe-free flat lock seams provide added comfort.

                ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"electra-bra-top-m-gray-1601","links":{},"stock":{"item_id":1601,"product_id":1601,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-m-gray-1601.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1602","_score":1,"_source":{"id":1602,"sku":"WB01-M-Purple","name":"Electra Bra Top-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                \n

                • Gray rouched bra top.
                • Attractive back straps feature contrasting motif fabric.
                • Interior bra top is lined with breathable mesh.
                • Elastic underband for superior support.
                • Removable cup inserts.
                • Chafe-free flat lock seams provide added comfort.

                ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"electra-bra-top-m-purple-1602","links":{},"stock":{"item_id":1602,"product_id":1602,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-m-purple-1602.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1616","_score":1,"_source":{"id":1616,"sku":"WB02-M-Blue","name":"Erica Evercool Sports Bra-M-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                \n

                • Honeycomb light blue bra top.
                • Elastic hem.
                • Reinforced binding.
                • Machine wash/dry.

                ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erica-evercool-sports-bra-m-blue-1616","links":{},"stock":{"item_id":1616,"product_id":1616,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-m-blue-1616.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1611","_score":1,"_source":{"id":1611,"sku":"WB02-XS-Orange","name":"Erica Evercool Sports Bra-XS-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                \n

                • Honeycomb light blue bra top.
                • Elastic hem.
                • Reinforced binding.
                • Machine wash/dry.

                ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erica-evercool-sports-bra-xs-orange-1611","links":{},"stock":{"item_id":1611,"product_id":1611,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xs-orange-1611.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1607","_score":1,"_source":{"id":1607,"sku":"WB01-XL-Gray","name":"Electra Bra Top-XL-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                \n

                • Gray rouched bra top.
                • Attractive back straps feature contrasting motif fabric.
                • Interior bra top is lined with breathable mesh.
                • Elastic underband for superior support.
                • Removable cup inserts.
                • Chafe-free flat lock seams provide added comfort.

                ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"electra-bra-top-xl-gray-1607","links":{},"stock":{"item_id":1607,"product_id":1607,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xl-gray-1607.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1620","_score":1,"_source":{"id":1620,"sku":"WB02-L-Orange","name":"Erica Evercool Sports Bra-L-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                \n

                • Honeycomb light blue bra top.
                • Elastic hem.
                • Reinforced binding.
                • Machine wash/dry.

                ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erica-evercool-sports-bra-l-orange-1620","links":{},"stock":{"item_id":1620,"product_id":1620,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-l-orange-1620.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1613","_score":1,"_source":{"id":1613,"sku":"WB02-S-Blue","name":"Erica Evercool Sports Bra-S-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                \n

                • Honeycomb light blue bra top.
                • Elastic hem.
                • Reinforced binding.
                • Machine wash/dry.

                ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erica-evercool-sports-bra-s-blue-1613","links":{},"stock":{"item_id":1613,"product_id":1613,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-s-blue-1613.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1604","_score":1,"_source":{"id":1604,"sku":"WB01-L-Gray","name":"Electra Bra Top-L-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                \n

                • Gray rouched bra top.
                • Attractive back straps feature contrasting motif fabric.
                • Interior bra top is lined with breathable mesh.
                • Elastic underband for superior support.
                • Removable cup inserts.
                • Chafe-free flat lock seams provide added comfort.

                ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"electra-bra-top-l-gray-1604","links":{},"stock":{"item_id":1604,"product_id":1604,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-l-gray-1604.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1615","_score":1,"_source":{"id":1615,"sku":"WB02-S-Yellow","name":"Erica Evercool Sports Bra-S-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                \n

                • Honeycomb light blue bra top.
                • Elastic hem.
                • Reinforced binding.
                • Machine wash/dry.

                ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erica-evercool-sports-bra-s-yellow-1615","links":{},"stock":{"item_id":1615,"product_id":1615,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-s-yellow-1615.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1605","_score":1,"_source":{"id":1605,"sku":"WB01-L-Purple","name":"Electra Bra Top-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                \n

                • Gray rouched bra top.
                • Attractive back straps feature contrasting motif fabric.
                • Interior bra top is lined with breathable mesh.
                • Elastic underband for superior support.
                • Removable cup inserts.
                • Chafe-free flat lock seams provide added comfort.

                ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"electra-bra-top-l-purple-1605","links":{},"stock":{"item_id":1605,"product_id":1605,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-l-purple-1605.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1618","_score":1,"_source":{"id":1618,"sku":"WB02-M-Yellow","name":"Erica Evercool Sports Bra-M-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                \n

                • Honeycomb light blue bra top.
                • Elastic hem.
                • Reinforced binding.
                • Machine wash/dry.

                ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erica-evercool-sports-bra-m-yellow-1618","links":{},"stock":{"item_id":1618,"product_id":1618,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-m-yellow-1618.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1610","_score":1,"_source":{"id":1610,"sku":"WB02-XS-Blue","name":"Erica Evercool Sports Bra-XS-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                \n

                • Honeycomb light blue bra top.
                • Elastic hem.
                • Reinforced binding.
                • Machine wash/dry.

                ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erica-evercool-sports-bra-xs-blue-1610","links":{},"stock":{"item_id":1610,"product_id":1610,"stock_id":1,"qty":77,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xs-blue-1610.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1606","_score":1,"_source":{"id":1606,"sku":"WB01-XL-Black","name":"Electra Bra Top-XL-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                \n

                • Gray rouched bra top.
                • Attractive back straps feature contrasting motif fabric.
                • Interior bra top is lined with breathable mesh.
                • Elastic underband for superior support.
                • Removable cup inserts.
                • Chafe-free flat lock seams provide added comfort.

                ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"electra-bra-top-xl-black-1606","links":{},"stock":{"item_id":1606,"product_id":1606,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xl-black-1606.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1608","_score":1,"_source":{"id":1608,"sku":"WB01-XL-Purple","name":"Electra Bra Top-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                \n

                • Gray rouched bra top.
                • Attractive back straps feature contrasting motif fabric.
                • Interior bra top is lined with breathable mesh.
                • Elastic underband for superior support.
                • Removable cup inserts.
                • Chafe-free flat lock seams provide added comfort.

                ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"electra-bra-top-xl-purple-1608","links":{},"stock":{"item_id":1608,"product_id":1608,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xl-purple-1608.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1624","_score":1,"_source":{"id":1624,"sku":"WB02-XL-Yellow","name":"Erica Evercool Sports Bra-XL-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                \n

                • Honeycomb light blue bra top.
                • Elastic hem.
                • Reinforced binding.
                • Machine wash/dry.

                ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erica-evercool-sports-bra-xl-yellow-1624","links":{},"stock":{"item_id":1624,"product_id":1624,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xl-yellow-1624.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1617","_score":1,"_source":{"id":1617,"sku":"WB02-M-Orange","name":"Erica Evercool Sports Bra-M-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                \n

                • Honeycomb light blue bra top.
                • Elastic hem.
                • Reinforced binding.
                • Machine wash/dry.

                ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erica-evercool-sports-bra-m-orange-1617","links":{},"stock":{"item_id":1617,"product_id":1617,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-m-orange-1617.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1636","_score":1,"_source":{"id":1636,"sku":"WB03-L-Red","name":"Celeste Sports Bra-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                \n

                • Mint bra top.
                • Seam-free interior molded cups
                • Odor control.
                • UV protection.
                • Machine wash/dry.

                ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"celeste-sports-bra-l-red-1636","links":{},"stock":{"item_id":1636,"product_id":1636,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-l-red-1636.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1623","_score":1,"_source":{"id":1623,"sku":"WB02-XL-Orange","name":"Erica Evercool Sports Bra-XL-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                \n

                • Honeycomb light blue bra top.
                • Elastic hem.
                • Reinforced binding.
                • Machine wash/dry.

                ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erica-evercool-sports-bra-xl-orange-1623","links":{},"stock":{"item_id":1623,"product_id":1623,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xl-orange-1623.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1629","_score":1,"_source":{"id":1629,"sku":"WB03-S-Green","name":"Celeste Sports Bra-S-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                \n

                • Mint bra top.
                • Seam-free interior molded cups
                • Odor control.
                • UV protection.
                • Machine wash/dry.

                ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"celeste-sports-bra-s-green-1629","links":{},"stock":{"item_id":1629,"product_id":1629,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-s-green-1629.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1634","_score":1,"_source":{"id":1634,"sku":"WB03-M-Yellow","name":"Celeste Sports Bra-M-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                \n

                • Mint bra top.
                • Seam-free interior molded cups
                • Odor control.
                • UV protection.
                • Machine wash/dry.

                ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"celeste-sports-bra-m-yellow-1634","links":{},"stock":{"item_id":1634,"product_id":1634,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-m-yellow-1634.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1643","_score":1,"_source":{"id":1643,"sku":"WB04-XS-Purple","name":"Prima Compete Bra Top-XS-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                `
                • Colorblocked details.
                • Machine wash/line dry.

                ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"prima-compete-bra-top-xs-purple-1643","links":{},"stock":{"item_id":1643,"product_id":1643,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xs-purple-1643.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1621","_score":1,"_source":{"id":1621,"sku":"WB02-L-Yellow","name":"Erica Evercool Sports Bra-L-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                \n

                • Honeycomb light blue bra top.
                • Elastic hem.
                • Reinforced binding.
                • Machine wash/dry.

                ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erica-evercool-sports-bra-l-yellow-1621","links":{},"stock":{"item_id":1621,"product_id":1621,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-l-yellow-1621.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1639","_score":1,"_source":{"id":1639,"sku":"WB03-XL-Red","name":"Celeste Sports Bra-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                \n

                • Mint bra top.
                • Seam-free interior molded cups
                • Odor control.
                • UV protection.
                • Machine wash/dry.

                ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"celeste-sports-bra-xl-red-1639","links":{},"stock":{"item_id":1639,"product_id":1639,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xl-red-1639.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1708","_score":1,"_source":{"id":1708,"sku":"WT03-XS-Red","name":"Nora Practice Tank-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                \n

                • Pink stripped tank with side rouching.
                • Pre-shrunk.
                • Garment dyed.
                • 92% Organic Cotton/8% Lycra.

                ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nora-practice-tank-xs-red-1708","links":{},"stock":{"item_id":1708,"product_id":1708,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xs-red-1708.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1710","_score":1,"_source":{"id":1710,"sku":"WT03-S-Purple","name":"Nora Practice Tank-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                \n

                • Pink stripped tank with side rouching.
                • Pre-shrunk.
                • Garment dyed.
                • 92% Organic Cotton/8% Lycra.

                ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nora-practice-tank-s-purple-1710","links":{},"stock":{"item_id":1710,"product_id":1710,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-s-purple-1710.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1712","_score":1,"_source":{"id":1712,"sku":"WT03-M-Orange","name":"Nora Practice Tank-M-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                \n

                • Pink stripped tank with side rouching.
                • Pre-shrunk.
                • Garment dyed.
                • 92% Organic Cotton/8% Lycra.

                ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nora-practice-tank-m-orange-1712","links":{},"stock":{"item_id":1712,"product_id":1712,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-m-orange-1712.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1706","_score":1,"_source":{"id":1706,"sku":"WT03-XS-Orange","name":"Nora Practice Tank-XS-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                \n

                • Pink stripped tank with side rouching.
                • Pre-shrunk.
                • Garment dyed.
                • 92% Organic Cotton/8% Lycra.

                ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nora-practice-tank-xs-orange-1706","links":{},"stock":{"item_id":1706,"product_id":1706,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xs-orange-1706.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1723","_score":1,"_source":{"id":1723,"sku":"WT04-XS-Purple","name":"Nona Fitness Tank-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                \n

                • Blue/white striped mesh tank.
                • Relaxed fit.
                • Chafe-resistant trim around armholes and collar.
                • Machine wash/dry.

                ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nona-fitness-tank-xs-purple-1723","links":{},"stock":{"item_id":1723,"product_id":1723,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xs-purple-1723.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1707","_score":1,"_source":{"id":1707,"sku":"WT03-XS-Purple","name":"Nora Practice Tank-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                \n

                • Pink stripped tank with side rouching.
                • Pre-shrunk.
                • Garment dyed.
                • 92% Organic Cotton/8% Lycra.

                ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nora-practice-tank-xs-purple-1707","links":{},"stock":{"item_id":1707,"product_id":1707,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xs-purple-1707.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1714","_score":1,"_source":{"id":1714,"sku":"WT03-M-Red","name":"Nora Practice Tank-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                \n

                • Pink stripped tank with side rouching.
                • Pre-shrunk.
                • Garment dyed.
                • 92% Organic Cotton/8% Lycra.

                ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nora-practice-tank-m-red-1714","links":{},"stock":{"item_id":1714,"product_id":1714,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-m-red-1714.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1704","_score":1,"_source":{"id":1704,"sku":"WT02-XL-Yellow","name":"Zoe Tank-XL-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                \n

                • Salmon heather tank top.
                • 1\" elastic band on inner bra.
                • Mesh lining on shelf bra for support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoe-tank-xl-yellow-1704","links":{},"stock":{"item_id":1704,"product_id":1704,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xl-yellow-1704.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1728","_score":1,"_source":{"id":1728,"sku":"WT04-M-Blue","name":"Nona Fitness Tank-M-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                \n

                • Blue/white striped mesh tank.
                • Relaxed fit.
                • Chafe-resistant trim around armholes and collar.
                • Machine wash/dry.

                ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nona-fitness-tank-m-blue-1728","links":{},"stock":{"item_id":1728,"product_id":1728,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-m-blue-1728.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1701","_score":1,"_source":{"id":1701,"sku":"WT02-L-Yellow","name":"Zoe Tank-L-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                \n

                • Salmon heather tank top.
                • 1\" elastic band on inner bra.
                • Mesh lining on shelf bra for support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoe-tank-l-yellow-1701","links":{},"stock":{"item_id":1701,"product_id":1701,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-l-yellow-1701.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1718","_score":1,"_source":{"id":1718,"sku":"WT03-XL-Orange","name":"Nora Practice Tank-XL-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                \n

                • Pink stripped tank with side rouching.
                • Pre-shrunk.
                • Garment dyed.
                • 92% Organic Cotton/8% Lycra.

                ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nora-practice-tank-xl-orange-1718","links":{},"stock":{"item_id":1718,"product_id":1718,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xl-orange-1718.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1719","_score":1,"_source":{"id":1719,"sku":"WT03-XL-Purple","name":"Nora Practice Tank-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                \n

                • Pink stripped tank with side rouching.
                • Pre-shrunk.
                • Garment dyed.
                • 92% Organic Cotton/8% Lycra.

                ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nora-practice-tank-xl-purple-1719","links":{},"stock":{"item_id":1719,"product_id":1719,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xl-purple-1719.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1730","_score":1,"_source":{"id":1730,"sku":"WT04-M-Red","name":"Nona Fitness Tank-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                \n

                • Blue/white striped mesh tank.
                • Relaxed fit.
                • Chafe-resistant trim around armholes and collar.
                • Machine wash/dry.

                ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nona-fitness-tank-m-red-1730","links":{},"stock":{"item_id":1730,"product_id":1730,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-m-red-1730.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1703","_score":1,"_source":{"id":1703,"sku":"WT02-XL-Orange","name":"Zoe Tank-XL-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                \n

                • Salmon heather tank top.
                • 1\" elastic band on inner bra.
                • Mesh lining on shelf bra for support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoe-tank-xl-orange-1703","links":{},"stock":{"item_id":1703,"product_id":1703,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xl-orange-1703.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1724","_score":1,"_source":{"id":1724,"sku":"WT04-XS-Red","name":"Nona Fitness Tank-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                \n

                • Blue/white striped mesh tank.
                • Relaxed fit.
                • Chafe-resistant trim around armholes and collar.
                • Machine wash/dry.

                ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nona-fitness-tank-xs-red-1724","links":{},"stock":{"item_id":1724,"product_id":1724,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xs-red-1724.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1722","_score":1,"_source":{"id":1722,"sku":"WT04-XS-Blue","name":"Nona Fitness Tank-XS-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                \n

                • Blue/white striped mesh tank.
                • Relaxed fit.
                • Chafe-resistant trim around armholes and collar.
                • Machine wash/dry.

                ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nona-fitness-tank-xs-blue-1722","links":{},"stock":{"item_id":1722,"product_id":1722,"stock_id":1,"qty":73,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xs-blue-1722.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1702","_score":1,"_source":{"id":1702,"sku":"WT02-XL-Green","name":"Zoe Tank-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                \n

                • Salmon heather tank top.
                • 1\" elastic band on inner bra.
                • Mesh lining on shelf bra for support.
                • Soft, breathable fabric.
                • Dry wick fabric to stay cool and dry.

                ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoe-tank-xl-green-1702","links":{},"stock":{"item_id":1702,"product_id":1702,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xl-green-1702.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1715","_score":1,"_source":{"id":1715,"sku":"WT03-L-Orange","name":"Nora Practice Tank-L-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                \n

                • Pink stripped tank with side rouching.
                • Pre-shrunk.
                • Garment dyed.
                • 92% Organic Cotton/8% Lycra.

                ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nora-practice-tank-l-orange-1715","links":{},"stock":{"item_id":1715,"product_id":1715,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-l-orange-1715.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1709","_score":1,"_source":{"id":1709,"sku":"WT03-S-Orange","name":"Nora Practice Tank-S-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                \n

                • Pink stripped tank with side rouching.
                • Pre-shrunk.
                • Garment dyed.
                • 92% Organic Cotton/8% Lycra.

                ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nora-practice-tank-s-orange-1709","links":{},"stock":{"item_id":1709,"product_id":1709,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-s-orange-1709.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1711","_score":1,"_source":{"id":1711,"sku":"WT03-S-Red","name":"Nora Practice Tank-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                \n

                • Pink stripped tank with side rouching.
                • Pre-shrunk.
                • Garment dyed.
                • 92% Organic Cotton/8% Lycra.

                ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nora-practice-tank-s-red-1711","links":{},"stock":{"item_id":1711,"product_id":1711,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-s-red-1711.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1733","_score":1,"_source":{"id":1733,"sku":"WT04-L-Red","name":"Nona Fitness Tank-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                \n

                • Blue/white striped mesh tank.
                • Relaxed fit.
                • Chafe-resistant trim around armholes and collar.
                • Machine wash/dry.

                ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nona-fitness-tank-l-red-1733","links":{},"stock":{"item_id":1733,"product_id":1733,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-l-red-1733.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1735","_score":1,"_source":{"id":1735,"sku":"WT04-XL-Purple","name":"Nona Fitness Tank-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                \n

                • Blue/white striped mesh tank.
                • Relaxed fit.
                • Chafe-resistant trim around armholes and collar.
                • Machine wash/dry.

                ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nona-fitness-tank-xl-purple-1735","links":{},"stock":{"item_id":1735,"product_id":1735,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xl-purple-1735.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1732","_score":1,"_source":{"id":1732,"sku":"WT04-L-Purple","name":"Nona Fitness Tank-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                \n

                • Blue/white striped mesh tank.
                • Relaxed fit.
                • Chafe-resistant trim around armholes and collar.
                • Machine wash/dry.

                ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nona-fitness-tank-l-purple-1732","links":{},"stock":{"item_id":1732,"product_id":1732,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-l-purple-1732.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1727","_score":1,"_source":{"id":1727,"sku":"WT04-S-Red","name":"Nona Fitness Tank-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                \n

                • Blue/white striped mesh tank.
                • Relaxed fit.
                • Chafe-resistant trim around armholes and collar.
                • Machine wash/dry.

                ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nona-fitness-tank-s-red-1727","links":{},"stock":{"item_id":1727,"product_id":1727,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-s-red-1727.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1635","_score":1,"_source":{"id":1635,"sku":"WB03-L-Green","name":"Celeste Sports Bra-L-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2019-04-18 09:54:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":9.99,"max_price":9.99,"max_regular_price":9.99,"minimal_regular_price":9.99,"special_price":"9.9900","minimal_price":9.99,"regular_price":39,"description":"

                Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                \r\n

                • Mint bra top.
                • Seam-free interior molded cups
                • Odor control.
                • UV protection.
                • Machine wash/dry.

                ","special_from_date":"2019-04-18 00:00:00","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-l-green","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"0","size":"170","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"celeste-sports-bra-l-green-1635","links":{},"stock":{"item_id":1635,"product_id":1635,"stock_id":1,"qty":9,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":null,"vid":null},{"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-l-green-1635.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1632","_score":1,"_source":{"id":1632,"sku":"WB03-M-Green","name":"Celeste Sports Bra-M-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                \n

                • Mint bra top.
                • Seam-free interior molded cups
                • Odor control.
                • UV protection.
                • Machine wash/dry.

                ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"celeste-sports-bra-m-green-1632","links":{},"stock":{"item_id":1632,"product_id":1632,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-m-green-1632.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1649","_score":1,"_source":{"id":1649,"sku":"WB04-M-Purple","name":"Prima Compete Bra Top-M-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                `
                • Colorblocked details.
                • Machine wash/line dry.

                ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"prima-compete-bra-top-m-purple-1649","links":{},"stock":{"item_id":1649,"product_id":1649,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-m-purple-1649.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1633","_score":1,"_source":{"id":1633,"sku":"WB03-M-Red","name":"Celeste Sports Bra-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                \n

                • Mint bra top.
                • Seam-free interior molded cups
                • Odor control.
                • UV protection.
                • Machine wash/dry.

                ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"celeste-sports-bra-m-red-1633","links":{},"stock":{"item_id":1633,"product_id":1633,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-m-red-1633.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1627","_score":1,"_source":{"id":1627,"sku":"WB03-XS-Red","name":"Celeste Sports Bra-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                \n

                • Mint bra top.
                • Seam-free interior molded cups
                • Odor control.
                • UV protection.
                • Machine wash/dry.

                ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"celeste-sports-bra-xs-red-1627","links":{},"stock":{"item_id":1627,"product_id":1627,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xs-red-1627.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1656","_score":1,"_source":{"id":1656,"sku":"WB04-XL-Yellow","name":"Prima Compete Bra Top-XL-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                `
                • Colorblocked details.
                • Machine wash/line dry.

                ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"prima-compete-bra-top-xl-yellow-1656","links":{},"stock":{"item_id":1656,"product_id":1656,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xl-yellow-1656.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1655","_score":1,"_source":{"id":1655,"sku":"WB04-XL-Purple","name":"Prima Compete Bra Top-XL-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                `
                • Colorblocked details.
                • Machine wash/line dry.

                ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"prima-compete-bra-top-xl-purple-1655","links":{},"stock":{"item_id":1655,"product_id":1655,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xl-purple-1655.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1665","_score":1,"_source":{"id":1665,"sku":"WB05-M-Orange","name":"Lucia Cross-Fit Bra -M-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                \n

                • Black/white bra top.
                • Criss-cross back design.
                • Machine wash/dry.

                ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lucia-cross-fit-bra-m-orange-1665","links":{},"stock":{"item_id":1665,"product_id":1665,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-m-orange-1665.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1662","_score":1,"_source":{"id":1662,"sku":"WB05-S-Orange","name":"Lucia Cross-Fit Bra -S-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                \n

                • Black/white bra top.
                • Criss-cross back design.
                • Machine wash/dry.

                ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lucia-cross-fit-bra-s-orange-1662","links":{},"stock":{"item_id":1662,"product_id":1662,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-s-orange-1662.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1653","_score":1,"_source":{"id":1653,"sku":"WB04-L-Yellow","name":"Prima Compete Bra Top-L-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                `
                • Colorblocked details.
                • Machine wash/line dry.

                ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"prima-compete-bra-top-l-yellow-1653","links":{},"stock":{"item_id":1653,"product_id":1653,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-l-yellow-1653.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1717","_score":1,"_source":{"id":1717,"sku":"WT03-L-Red","name":"Nora Practice Tank-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                \n

                • Pink stripped tank with side rouching.
                • Pre-shrunk.
                • Garment dyed.
                • 92% Organic Cotton/8% Lycra.

                ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nora-practice-tank-l-red-1717","links":{},"stock":{"item_id":1717,"product_id":1717,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-l-red-1717.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1742","_score":1,"_source":{"id":1742,"sku":"WT05-S-Purple","name":"Leah Yoga Top-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                \n

                • Blue heather rouched tank top.
                • Camisole tank top.
                • Banding and shirring details.
                • Body hugging fit.
                • Contrast topstitch.
                • Interior shelf bra with shapewear technology.
                • 65% Polyester 35% Cotton.

                ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"leah-yoga-top-s-purple-1742","links":{},"stock":{"item_id":1742,"product_id":1742,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-s-purple-1742.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1663","_score":1,"_source":{"id":1663,"sku":"WB05-S-Purple","name":"Lucia Cross-Fit Bra -S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                \n

                • Black/white bra top.
                • Criss-cross back design.
                • Machine wash/dry.

                ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lucia-cross-fit-bra-s-purple-1663","links":{},"stock":{"item_id":1663,"product_id":1663,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-s-purple-1663.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1669","_score":1,"_source":{"id":1669,"sku":"WB05-L-Purple","name":"Lucia Cross-Fit Bra -L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                \n

                • Black/white bra top.
                • Criss-cross back design.
                • Machine wash/dry.

                ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lucia-cross-fit-bra-l-purple-1669","links":{},"stock":{"item_id":1669,"product_id":1669,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-l-purple-1669.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1782","_score":1,"_source":{"id":1782,"sku":"WT07-XL-Green","name":"Maya Tunic-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                \n

                • Mint green heather tunic-style tank.
                • Wrapped back with cut out detail.
                • Drawcord detail at end.
                • Abutted seams.

                ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"maya-tunic-xl-green-1782","links":{},"stock":{"item_id":1782,"product_id":1782,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xl-green-1782.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1779","_score":1,"_source":{"id":1779,"sku":"WT07-L-Green","name":"Maya Tunic-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                \n

                • Mint green heather tunic-style tank.
                • Wrapped back with cut out detail.
                • Drawcord detail at end.
                • Abutted seams.

                ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"maya-tunic-l-green-1779","links":{},"stock":{"item_id":1779,"product_id":1779,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-l-green-1779.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1790","_score":1,"_source":{"id":1790,"sku":"WT08-S-Purple","name":"Antonia Racer Tank-S-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                \n

                • Machine wash.
                • Line dry.

                ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"antonia-racer-tank-s-purple-1790","links":{},"stock":{"item_id":1790,"product_id":1790,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-s-purple-1790.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1777","_score":1,"_source":{"id":1777,"sku":"WT07-M-White","name":"Maya Tunic-M-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                \n

                • Mint green heather tunic-style tank.
                • Wrapped back with cut out detail.
                • Drawcord detail at end.
                • Abutted seams.

                ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"maya-tunic-m-white-1777","links":{},"stock":{"item_id":1777,"product_id":1777,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-m-white-1777.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1780","_score":1,"_source":{"id":1780,"sku":"WT07-L-White","name":"Maya Tunic-L-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                \n

                • Mint green heather tunic-style tank.
                • Wrapped back with cut out detail.
                • Drawcord detail at end.
                • Abutted seams.

                ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"maya-tunic-l-white-1780","links":{},"stock":{"item_id":1780,"product_id":1780,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-l-white-1780.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1799","_score":1,"_source":{"id":1799,"sku":"WT08-XL-Purple","name":"Antonia Racer Tank-XL-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                \n

                • Machine wash.
                • Line dry.

                ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"antonia-racer-tank-xl-purple-1799","links":{},"stock":{"item_id":1799,"product_id":1799,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xl-purple-1799.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1776","_score":1,"_source":{"id":1776,"sku":"WT07-M-Green","name":"Maya Tunic-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                \n

                • Mint green heather tunic-style tank.
                • Wrapped back with cut out detail.
                • Drawcord detail at end.
                • Abutted seams.

                ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"maya-tunic-m-green-1776","links":{},"stock":{"item_id":1776,"product_id":1776,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-m-green-1776.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1796","_score":1,"_source":{"id":1796,"sku":"WT08-L-Purple","name":"Antonia Racer Tank-L-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                \n

                • Machine wash.
                • Line dry.

                ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"antonia-racer-tank-l-purple-1796","links":{},"stock":{"item_id":1796,"product_id":1796,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-l-purple-1796.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1792","_score":1,"_source":{"id":1792,"sku":"WT08-M-Black","name":"Antonia Racer Tank-M-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                \n

                • Machine wash.
                • Line dry.

                ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"antonia-racer-tank-m-black-1792","links":{},"stock":{"item_id":1792,"product_id":1792,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-m-black-1792.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1773","_score":1,"_source":{"id":1773,"sku":"WT07-S-Green","name":"Maya Tunic-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                \n

                • Mint green heather tunic-style tank.
                • Wrapped back with cut out detail.
                • Drawcord detail at end.
                • Abutted seams.

                ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"maya-tunic-s-green-1773","links":{},"stock":{"item_id":1773,"product_id":1773,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-s-green-1773.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1795","_score":1,"_source":{"id":1795,"sku":"WT08-L-Black","name":"Antonia Racer Tank-L-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                \n

                • Machine wash.
                • Line dry.

                ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"antonia-racer-tank-l-black-1795","links":{},"stock":{"item_id":1795,"product_id":1795,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-l-black-1795.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1786","_score":1,"_source":{"id":1786,"sku":"WT08-XS-Black","name":"Antonia Racer Tank-XS-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                \n

                • Machine wash.
                • Line dry.

                ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"antonia-racer-tank-xs-black-1786","links":{},"stock":{"item_id":1786,"product_id":1786,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-03-30 21:09:00","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xs-black-1786.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1789","_score":1,"_source":{"id":1789,"sku":"WT08-S-Black","name":"Antonia Racer Tank-S-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                \n

                • Machine wash.
                • Line dry.

                ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"antonia-racer-tank-s-black-1789","links":{},"stock":{"item_id":1789,"product_id":1789,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-s-black-1789.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1797","_score":1,"_source":{"id":1797,"sku":"WT08-L-Yellow","name":"Antonia Racer Tank-L-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                \n

                • Machine wash.
                • Line dry.

                ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"antonia-racer-tank-l-yellow-1797","links":{},"stock":{"item_id":1797,"product_id":1797,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-l-yellow-1797.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1791","_score":1,"_source":{"id":1791,"sku":"WT08-S-Yellow","name":"Antonia Racer Tank-S-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                \n

                • Machine wash.
                • Line dry.

                ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"antonia-racer-tank-s-yellow-1791","links":{},"stock":{"item_id":1791,"product_id":1791,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-s-yellow-1791.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1798","_score":1,"_source":{"id":1798,"sku":"WT08-XL-Black","name":"Antonia Racer Tank-XL-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                \n

                • Machine wash.
                • Line dry.

                ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"antonia-racer-tank-xl-black-1798","links":{},"stock":{"item_id":1798,"product_id":1798,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xl-black-1798.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1793","_score":1,"_source":{"id":1793,"sku":"WT08-M-Purple","name":"Antonia Racer Tank-M-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                \n

                • Machine wash.
                • Line dry.

                ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"antonia-racer-tank-m-purple-1793","links":{},"stock":{"item_id":1793,"product_id":1793,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-m-purple-1793.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1794","_score":1,"_source":{"id":1794,"sku":"WT08-M-Yellow","name":"Antonia Racer Tank-M-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                \n

                • Machine wash.
                • Line dry.

                ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"antonia-racer-tank-m-yellow-1794","links":{},"stock":{"item_id":1794,"product_id":1794,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-m-yellow-1794.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1769","_score":1,"_source":{"id":1769,"sku":"WT06","name":"Chloe Compete Tank","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:24","updated_at":"2018-08-22 10:34:49","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                \r\n

                • Royal blue tank top - nylon/spandex.
                • Flatlock stitching.
                • Moisture-wicking fabric.
                • Ergonomic seaming.
                • Machine wash/dry.

                ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"1","has_options":"1","url_key":"chloe-compete-tank","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":[36,37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"chloe-compete-tank-1769","links":{},"stock":{"item_id":1769,"product_id":1769,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"configurable_children":[{"sku":"WT06-XS-Blue","id":1754,"status":1,"name":"Chloe Compete Tank-XS-Blue - tier price","price":39,"tier_prices":[{"customer_group_id":1,"qty":1,"value":30,"extension_attributes":{"website_id":0}}],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"50","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","url_key":"chloe-compete-tank-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WT06-XS-Red","id":1755,"status":1,"name":"Chloe Compete Tank-XS-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"58","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","url_key":"chloe-compete-tank-xs-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-XS-Yellow","id":1756,"status":1,"name":"Chloe Compete Tank-XS-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"60","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","url_key":"chloe-compete-tank-xs-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-S-Blue","id":1757,"status":1,"name":"Chloe Compete Tank-S-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"50","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","url_key":"chloe-compete-tank-s-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-S-Red","id":1758,"status":1,"name":"Chloe Compete Tank-S-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"58","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","url_key":"chloe-compete-tank-s-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-S-Yellow","id":1759,"status":1,"name":"Chloe Compete Tank-S-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"60","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","url_key":"chloe-compete-tank-s-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-M-Blue","id":1760,"status":1,"name":"Chloe Compete Tank-M-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"50","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","url_key":"chloe-compete-tank-m-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-M-Red","id":1761,"status":1,"name":"Chloe Compete Tank-M-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"58","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","url_key":"chloe-compete-tank-m-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-M-Yellow","id":1762,"status":1,"name":"Chloe Compete Tank-M-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"60","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","url_key":"chloe-compete-tank-m-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-L-Blue","id":1763,"status":1,"name":"Chloe Compete Tank-L-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"50","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","url_key":"chloe-compete-tank-l-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-L-Red","id":1764,"status":1,"name":"Chloe Compete Tank-L-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"58","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","url_key":"chloe-compete-tank-l-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-L-Yellow","id":1765,"status":1,"name":"Chloe Compete Tank-L-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"60","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","url_key":"chloe-compete-tank-l-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-XL-Blue","id":1766,"status":1,"name":"Chloe Compete Tank-XL-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"50","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","url_key":"chloe-compete-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-XL-Red","id":1767,"status":1,"name":"Chloe Compete Tank-XL-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"58","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","url_key":"chloe-compete-tank-xl-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-XL-Yellow","id":1768,"status":1,"name":"Chloe Compete Tank-XL-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"60","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","url_key":"chloe-compete-tank-xl-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39}],"configurable_options":[{"id":300,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":1769,"attribute_code":"color"},{"id":301,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1769,"attribute_code":"size"}],"color_options":[50,58,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-1769.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1785","_score":1,"_source":{"id":1785,"sku":"WT07","name":"Maya Tunic","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                \n

                • Mint green heather tunic-style tank.
                • Wrapped back with cut out detail.
                • Drawcord detail at end.
                • Abutted seams.

                ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"maya-tunic","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"maya-tunic-1785","links":{},"stock":{"item_id":1785,"product_id":1785,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT07-XS-Green","id":1770,"status":1,"name":"Maya Tunic-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"167","color":"53","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","url_key":"maya-tunic-xs-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-XS-White","id":1771,"status":1,"name":"Maya Tunic-XS-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"167","color":"59","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","url_key":"maya-tunic-xs-white","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-XS-Yellow","id":1772,"status":1,"name":"Maya Tunic-XS-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"167","color":"60","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","url_key":"maya-tunic-xs-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-S-Green","id":1773,"status":1,"name":"Maya Tunic-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"168","color":"53","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","url_key":"maya-tunic-s-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-S-White","id":1774,"status":1,"name":"Maya Tunic-S-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"168","color":"59","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","url_key":"maya-tunic-s-white","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-S-Yellow","id":1775,"status":1,"name":"Maya Tunic-S-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"168","color":"60","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","url_key":"maya-tunic-s-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-M-Green","id":1776,"status":1,"name":"Maya Tunic-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"169","color":"53","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","url_key":"maya-tunic-m-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-M-White","id":1777,"status":1,"name":"Maya Tunic-M-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"169","color":"59","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","url_key":"maya-tunic-m-white","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-M-Yellow","id":1778,"status":1,"name":"Maya Tunic-M-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"169","color":"60","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","url_key":"maya-tunic-m-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-L-Green","id":1779,"status":1,"name":"Maya Tunic-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"170","color":"53","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","url_key":"maya-tunic-l-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-L-White","id":1780,"status":1,"name":"Maya Tunic-L-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"170","color":"59","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","url_key":"maya-tunic-l-white","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-L-Yellow","id":1781,"status":1,"name":"Maya Tunic-L-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"170","color":"60","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","url_key":"maya-tunic-l-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-XL-Green","id":1782,"status":1,"name":"Maya Tunic-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"171","color":"53","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","url_key":"maya-tunic-xl-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-XL-White","id":1783,"status":1,"name":"Maya Tunic-XL-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"171","color":"59","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","url_key":"maya-tunic-xl-white","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-XL-Yellow","id":1784,"status":1,"name":"Maya Tunic-XL-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"171","color":"60","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","url_key":"maya-tunic-xl-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":241,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":1785,"attribute_code":"color"},{"id":240,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1785,"attribute_code":"size"}],"color_options":[53,59,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-1785.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1753","_score":1,"_source":{"id":1753,"sku":"WT05","name":"Leah Yoga Top","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                \n

                • Blue heather rouched tank top.
                • Camisole tank top.
                • Banding and shirring details.
                • Body hugging fit.
                • Contrast topstitch.
                • Interior shelf bra with shapewear technology.
                • 65% Polyester 35% Cotton.

                ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"leah-yoga-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[135,142],"pattern":"197","climate":[205,209],"slug":"leah-yoga-top-1753","links":{},"stock":{"item_id":1753,"product_id":1753,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT05-XS-Orange","id":1738,"status":1,"name":"Leah Yoga Top-XS-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"167","color":"56","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","url_key":"leah-yoga-top-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WT05-XS-Purple","id":1739,"status":1,"name":"Leah Yoga Top-XS-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"167","color":"57","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","url_key":"leah-yoga-top-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WT05-XS-White","id":1740,"status":1,"name":"Leah Yoga Top-XS-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"167","color":"59","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","url_key":"leah-yoga-top-xs-white","msrp_display_actual_price_type":"0"},{"sku":"WT05-S-Orange","id":1741,"status":1,"name":"Leah Yoga Top-S-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"168","color":"56","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","url_key":"leah-yoga-top-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WT05-S-Purple","id":1742,"status":1,"name":"Leah Yoga Top-S-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"168","color":"57","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","url_key":"leah-yoga-top-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WT05-S-White","id":1743,"status":1,"name":"Leah Yoga Top-S-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"168","color":"59","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","url_key":"leah-yoga-top-s-white","msrp_display_actual_price_type":"0"},{"sku":"WT05-M-Orange","id":1744,"status":1,"name":"Leah Yoga Top-M-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"169","color":"56","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","url_key":"leah-yoga-top-m-orange","msrp_display_actual_price_type":"0"},{"sku":"WT05-M-Purple","id":1745,"status":1,"name":"Leah Yoga Top-M-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"169","color":"57","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","url_key":"leah-yoga-top-m-purple","msrp_display_actual_price_type":"0"},{"sku":"WT05-M-White","id":1746,"status":1,"name":"Leah Yoga Top-M-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"169","color":"59","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","url_key":"leah-yoga-top-m-white","msrp_display_actual_price_type":"0"},{"sku":"WT05-L-Orange","id":1747,"status":1,"name":"Leah Yoga Top-L-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"170","color":"56","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","url_key":"leah-yoga-top-l-orange","msrp_display_actual_price_type":"0"},{"sku":"WT05-L-Purple","id":1748,"status":1,"name":"Leah Yoga Top-L-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"170","color":"57","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","url_key":"leah-yoga-top-l-purple","msrp_display_actual_price_type":"0"},{"sku":"WT05-L-White","id":1749,"status":1,"name":"Leah Yoga Top-L-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"170","color":"59","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","url_key":"leah-yoga-top-l-white","msrp_display_actual_price_type":"0"},{"sku":"WT05-XL-Orange","id":1750,"status":1,"name":"Leah Yoga Top-XL-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"171","color":"56","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","url_key":"leah-yoga-top-xl-orange","msrp_display_actual_price_type":"0"},{"sku":"WT05-XL-Purple","id":1751,"status":1,"name":"Leah Yoga Top-XL-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"171","color":"57","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","url_key":"leah-yoga-top-xl-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT05-XL-White","id":1752,"status":1,"name":"Leah Yoga Top-XL-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"171","color":"59","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","url_key":"leah-yoga-top-xl-white","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39}],"configurable_options":[{"id":237,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"}],"product_id":1753,"attribute_code":"color"},{"id":236,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1753,"attribute_code":"size"}],"color_options":[56,57,59],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-1753.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1831","_score":1,"_source":{"id":1831,"sku":"WP02","name":"Emma Leggings","attribute_set_id":10,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                \n

                • Light blue heather yoga pants.
                • Body hugging fit.
                • Low rise fit.

                ","image":"/w/p/wp02-blue_main.jpg","small_image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"emma-leggings","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"113","pattern":"197","climate":[204,205,206,208],"slug":"emma-leggings-1831","links":{},"stock":{"item_id":1831,"product_id":1831,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp02-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP02-28-Blue","id":1825,"status":1,"name":"Emma Leggings-28-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"50","image":"/w/p/wp02-blue_main.jpg","small_image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","url_key":"emma-leggings-28-blue","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WP02-28-Purple","id":1826,"status":1,"name":"Emma Leggings-28-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"57","image":"/w/p/wp02-purple_main.jpg","small_image":"/w/p/wp02-purple_main.jpg","thumbnail":"/w/p/wp02-purple_main.jpg","url_key":"emma-leggings-28-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WP02-28-Red","id":1827,"status":1,"name":"Emma Leggings-28-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"58","image":"/w/p/wp02-red_main.jpg","small_image":"/w/p/wp02-red_main.jpg","thumbnail":"/w/p/wp02-red_main.jpg","url_key":"emma-leggings-28-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WP02-29-Blue","id":1828,"status":1,"name":"Emma Leggings-29-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"50","image":"/w/p/wp02-blue_main.jpg","small_image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","url_key":"emma-leggings-29-blue","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WP02-29-Purple","id":1829,"status":1,"name":"Emma Leggings-29-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"57","image":"/w/p/wp02-purple_main.jpg","small_image":"/w/p/wp02-purple_main.jpg","thumbnail":"/w/p/wp02-purple_main.jpg","url_key":"emma-leggings-29-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WP02-29-Red","id":1830,"status":1,"name":"Emma Leggings-29-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"58","image":"/w/p/wp02-red_main.jpg","small_image":"/w/p/wp02-red_main.jpg","thumbnail":"/w/p/wp02-red_main.jpg","url_key":"emma-leggings-29-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42}],"configurable_options":[{"id":249,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1831,"attribute_code":"color"},{"id":248,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1831,"attribute_code":"size"}],"color_options":[50,57,58],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-1831.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1845","_score":1,"_source":{"id":1845,"sku":"WP04","name":"Cora Parachute Pant","attribute_set_id":10,"price":75,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                \n

                • Light blue parachute pants.
                • Power mesh internal waistband for support.
                • Internal waistband pocket.
                • Antimicrobial finish.

                ","image":"/w/p/wp04-blue_main.jpg","small_image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cora-parachute-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,37,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[110,115],"pattern":"197","climate":[205,212,206,208,209],"slug":"cora-parachute-pant-1845","links":{},"stock":{"item_id":1845,"product_id":1845,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP04-28-Black","id":1839,"status":1,"name":"Cora Parachute Pant-28-Black","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"49","image":"/w/p/wp04-black_main.jpg","small_image":"/w/p/wp04-black_main.jpg","thumbnail":"/w/p/wp04-black_main.jpg","url_key":"cora-parachute-pant-28-black","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WP04-28-Blue","id":1840,"status":1,"name":"Cora Parachute Pant-28-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"50","image":"/w/p/wp04-blue_main.jpg","small_image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","url_key":"cora-parachute-pant-28-blue","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WP04-28-White","id":1841,"status":1,"name":"Cora Parachute Pant-28-White","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"59","image":"/w/p/wp04-white_main.jpg","small_image":"/w/p/wp04-white_main.jpg","thumbnail":"/w/p/wp04-white_main.jpg","url_key":"cora-parachute-pant-28-white","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WP04-29-Black","id":1842,"status":1,"name":"Cora Parachute Pant-29-Black","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"49","image":"/w/p/wp04-black_main.jpg","small_image":"/w/p/wp04-black_main.jpg","thumbnail":"/w/p/wp04-black_main.jpg","url_key":"cora-parachute-pant-29-black","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WP04-29-Blue","id":1843,"status":1,"name":"Cora Parachute Pant-29-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"50","image":"/w/p/wp04-blue_main.jpg","small_image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","url_key":"cora-parachute-pant-29-blue","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WP04-29-White","id":1844,"status":1,"name":"Cora Parachute Pant-29-White","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"59","image":"/w/p/wp04-white_main.jpg","small_image":"/w/p/wp04-white_main.jpg","thumbnail":"/w/p/wp04-white_main.jpg","url_key":"cora-parachute-pant-29-white","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75}],"configurable_options":[{"id":253,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":59,"label":"White"}],"product_id":1845,"attribute_code":"color"},{"id":252,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1845,"attribute_code":"size"}],"color_options":[49,50,59],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-1845.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1824","_score":1,"_source":{"id":1824,"sku":"WP01","name":"Karmen Yoga Pant","attribute_set_id":10,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                \n

                • Light blue parachute pants.
                • Power mesh internal waistband for support.
                • Internal waistband pocket.
                • Antimicrobial finish.

                ","image":"/w/p/wp01-gray_main.jpg","small_image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"karmen-yoga-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,154],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"113","pattern":"197","climate":[205,206],"slug":"karmen-yoga-pant-1824","links":{},"stock":{"item_id":1824,"product_id":1824,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp01-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP01-28-Black","id":1818,"status":1,"name":"Karmen Yoga Pant-28-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"49","image":"/w/p/wp01-black_main.jpg","small_image":"/w/p/wp01-black_main.jpg","thumbnail":"/w/p/wp01-black_main.jpg","url_key":"karmen-yoga-pant-28-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WP01-28-Gray","id":1819,"status":1,"name":"Karmen Yoga Pant-28-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"52","image":"/w/p/wp01-gray_main.jpg","small_image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","url_key":"karmen-yoga-pant-28-gray","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WP01-28-White","id":1820,"status":1,"name":"Karmen Yoga Pant-28-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"59","image":"/w/p/wp01-white_main.jpg","small_image":"/w/p/wp01-white_main.jpg","thumbnail":"/w/p/wp01-white_main.jpg","url_key":"karmen-yoga-pant-28-white","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WP01-29-Black","id":1821,"status":1,"name":"Karmen Yoga Pant-29-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"49","image":"/w/p/wp01-black_main.jpg","small_image":"/w/p/wp01-black_main.jpg","thumbnail":"/w/p/wp01-black_main.jpg","url_key":"karmen-yoga-pant-29-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WP01-29-Gray","id":1822,"status":1,"name":"Karmen Yoga Pant-29-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"52","image":"/w/p/wp01-gray_main.jpg","small_image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","url_key":"karmen-yoga-pant-29-gray","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WP01-29-White","id":1823,"status":1,"name":"Karmen Yoga Pant-29-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"59","image":"/w/p/wp01-white_main.jpg","small_image":"/w/p/wp01-white_main.jpg","thumbnail":"/w/p/wp01-white_main.jpg","url_key":"karmen-yoga-pant-29-white","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39}],"configurable_options":[{"id":247,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":59,"label":"White"}],"product_id":1824,"attribute_code":"color"},{"id":246,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1824,"attribute_code":"size"}],"color_options":[49,52,59],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-1824.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1838","_score":1,"_source":{"id":1838,"sku":"WP03","name":"Ida Workout Parachute Pant","attribute_set_id":10,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                \n

                • Royal blue parachute pants.
                • Contrast stripe.
                • Relaxed fit.
                • Drawstring closure.
                • Machine wash/dry.

                ","image":"/w/p/wp03-blue_main.jpg","small_image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ida-workout-parachute-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,37,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[110,115],"pattern":"195","climate":[205,212,206,208,209],"slug":"ida-workout-parachute-pant-1838","links":{},"stock":{"item_id":1838,"product_id":1838,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP03-28-Black","id":1832,"status":1,"name":"Ida Workout Parachute Pant-28-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","8","2"],"size":"172","color":"49","image":"/w/p/wp03-black_main.jpg","small_image":"/w/p/wp03-black_main.jpg","thumbnail":"/w/p/wp03-black_main.jpg","url_key":"ida-workout-parachute-pant-28-black","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP03-28-Blue","id":1833,"status":1,"name":"Ida Workout Parachute Pant-28-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","8","2"],"size":"172","color":"50","image":"/w/p/wp03-blue_main.jpg","small_image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","url_key":"ida-workout-parachute-pant-28-blue","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP03-28-Purple","id":1834,"status":1,"name":"Ida Workout Parachute Pant-28-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","8","2"],"size":"172","color":"57","image":"/w/p/wp03-purple_main.jpg","small_image":"/w/p/wp03-purple_main.jpg","thumbnail":"/w/p/wp03-purple_main.jpg","url_key":"ida-workout-parachute-pant-28-purple","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP03-29-Black","id":1835,"status":1,"name":"Ida Workout Parachute Pant-29-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","8","2"],"size":"173","color":"49","image":"/w/p/wp03-black_main.jpg","small_image":"/w/p/wp03-black_main.jpg","thumbnail":"/w/p/wp03-black_main.jpg","url_key":"ida-workout-parachute-pant-29-black","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP03-29-Blue","id":1836,"status":1,"name":"Ida Workout Parachute Pant-29-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","8","2"],"size":"173","color":"50","image":"/w/p/wp03-blue_main.jpg","small_image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","url_key":"ida-workout-parachute-pant-29-blue","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP03-29-Purple","id":1837,"status":1,"name":"Ida Workout Parachute Pant-29-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","8","2"],"size":"173","color":"57","image":"/w/p/wp03-purple_main.jpg","small_image":"/w/p/wp03-purple_main.jpg","thumbnail":"/w/p/wp03-purple_main.jpg","url_key":"ida-workout-parachute-pant-29-purple","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48}],"configurable_options":[{"id":251,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":1838,"attribute_code":"color"},{"id":250,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1838,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-1838.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1817","_score":1,"_source":{"id":1817,"sku":"WT09","name":"Breathe-Easy Tank","attribute_set_id":9,"price":34,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                \n

                • Machine wash/dry.
                • Cocona® fabric.

                ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"breathe-easy-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,33],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[205,209],"slug":"breathe-easy-tank-1817","links":{},"stock":{"item_id":1817,"product_id":1817,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT09-XS-Purple","id":1802,"status":1,"name":"Breathe-Easy Tank-XS-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"167","color":"57","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","url_key":"breathe-easy-tank-xs-purple","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-XS-White","id":1803,"status":1,"name":"Breathe-Easy Tank-XS-White","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"167","color":"59","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","url_key":"breathe-easy-tank-xs-white","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-XS-Yellow","id":1804,"status":1,"name":"Breathe-Easy Tank-XS-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"167","color":"60","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","url_key":"breathe-easy-tank-xs-yellow","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-S-Purple","id":1805,"status":1,"name":"Breathe-Easy Tank-S-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"168","color":"57","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","url_key":"breathe-easy-tank-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WT09-S-White","id":1806,"status":1,"name":"Breathe-Easy Tank-S-White","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"168","color":"59","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","url_key":"breathe-easy-tank-s-white","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-S-Yellow","id":1807,"status":1,"name":"Breathe-Easy Tank-S-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"168","color":"60","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","url_key":"breathe-easy-tank-s-yellow","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-M-Purple","id":1808,"status":1,"name":"Breathe-Easy Tank-M-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"169","color":"57","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","url_key":"breathe-easy-tank-m-purple","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-M-White","id":1809,"status":1,"name":"Breathe-Easy Tank-M-White","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"169","color":"59","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","url_key":"breathe-easy-tank-m-white","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-M-Yellow","id":1810,"status":1,"name":"Breathe-Easy Tank-M-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"169","color":"60","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","url_key":"breathe-easy-tank-m-yellow","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-L-Purple","id":1811,"status":1,"name":"Breathe-Easy Tank-L-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"170","color":"57","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","url_key":"breathe-easy-tank-l-purple","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-L-White","id":1812,"status":1,"name":"Breathe-Easy Tank-L-White","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"170","color":"59","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","url_key":"breathe-easy-tank-l-white","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-L-Yellow","id":1813,"status":1,"name":"Breathe-Easy Tank-L-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"170","color":"60","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","url_key":"breathe-easy-tank-l-yellow","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-XL-Purple","id":1814,"status":1,"name":"Breathe-Easy Tank-XL-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"171","color":"57","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","url_key":"breathe-easy-tank-xl-purple","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-XL-White","id":1815,"status":1,"name":"Breathe-Easy Tank-XL-White","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"171","color":"59","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","url_key":"breathe-easy-tank-xl-white","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-XL-Yellow","id":1816,"status":1,"name":"Breathe-Easy Tank-XL-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"171","color":"60","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","url_key":"breathe-easy-tank-xl-yellow","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34}],"configurable_options":[{"id":245,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":1817,"attribute_code":"color"},{"id":244,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1817,"attribute_code":"size"}],"color_options":[57,59,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-1817.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1801","_score":1,"_source":{"id":1801,"sku":"WT08","name":"Antonia Racer Tank","attribute_set_id":9,"price":34,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                \n

                • Machine wash.
                • Line dry.

                ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"antonia-racer-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[152,37,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[205,209],"slug":"antonia-racer-tank-1801","links":{},"stock":{"item_id":1801,"product_id":1801,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT08-XS-Black","id":1786,"status":1,"name":"Antonia Racer Tank-XS-Black","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"167","color":"49","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","url_key":"antonia-racer-tank-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WT08-XS-Purple","id":1787,"status":1,"name":"Antonia Racer Tank-XS-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"167","color":"57","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","url_key":"antonia-racer-tank-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WT08-XS-Yellow","id":1788,"status":1,"name":"Antonia Racer Tank-XS-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"167","color":"60","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","url_key":"antonia-racer-tank-xs-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT08-S-Black","id":1789,"status":1,"name":"Antonia Racer Tank-S-Black","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"168","color":"49","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","url_key":"antonia-racer-tank-s-black","msrp_display_actual_price_type":"0"},{"sku":"WT08-S-Purple","id":1790,"status":1,"name":"Antonia Racer Tank-S-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"168","color":"57","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","url_key":"antonia-racer-tank-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WT08-S-Yellow","id":1791,"status":1,"name":"Antonia Racer Tank-S-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"168","color":"60","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","url_key":"antonia-racer-tank-s-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT08-M-Black","id":1792,"status":1,"name":"Antonia Racer Tank-M-Black","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"169","color":"49","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","url_key":"antonia-racer-tank-m-black","msrp_display_actual_price_type":"0"},{"sku":"WT08-M-Purple","id":1793,"status":1,"name":"Antonia Racer Tank-M-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"169","color":"57","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","url_key":"antonia-racer-tank-m-purple","msrp_display_actual_price_type":"0"},{"sku":"WT08-M-Yellow","id":1794,"status":1,"name":"Antonia Racer Tank-M-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"169","color":"60","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","url_key":"antonia-racer-tank-m-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT08-L-Black","id":1795,"status":1,"name":"Antonia Racer Tank-L-Black","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"170","color":"49","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","url_key":"antonia-racer-tank-l-black","msrp_display_actual_price_type":"0"},{"sku":"WT08-L-Purple","id":1796,"status":1,"name":"Antonia Racer Tank-L-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"170","color":"57","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","url_key":"antonia-racer-tank-l-purple","msrp_display_actual_price_type":"0"},{"sku":"WT08-L-Yellow","id":1797,"status":1,"name":"Antonia Racer Tank-L-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"170","color":"60","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","url_key":"antonia-racer-tank-l-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT08-XL-Black","id":1798,"status":1,"name":"Antonia Racer Tank-XL-Black","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"171","color":"49","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","url_key":"antonia-racer-tank-xl-black","msrp_display_actual_price_type":"0"},{"sku":"WT08-XL-Purple","id":1799,"status":1,"name":"Antonia Racer Tank-XL-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"171","color":"57","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","url_key":"antonia-racer-tank-xl-purple","msrp_display_actual_price_type":"0"},{"sku":"WT08-XL-Yellow","id":1800,"status":1,"name":"Antonia Racer Tank-XL-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"171","color":"60","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","url_key":"antonia-racer-tank-xl-yellow","msrp_display_actual_price_type":"0"}],"configurable_options":[{"id":243,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":57,"label":"Purple"},{"value_index":60,"label":"Yellow"}],"product_id":1801,"attribute_code":"color"},{"id":242,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1801,"attribute_code":"size"}],"color_options":[49,57,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-1801.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1837","_score":1,"_source":{"id":1837,"sku":"WP03-29-Purple","name":"Ida Workout Parachute Pant-29-Purple","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                \n

                • Royal blue parachute pants.
                • Contrast stripe.
                • Relaxed fit.
                • Drawstring closure.
                • Machine wash/dry.

                ","image":"/w/p/wp03-purple_main.jpg","small_image":"/w/p/wp03-purple_main.jpg","thumbnail":"/w/p/wp03-purple_main.jpg","color":"57","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ida-workout-parachute-pant-29-purple-1837","links":{},"stock":{"item_id":1837,"product_id":1837,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-29-purple-1837.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1827","_score":1,"_source":{"id":1827,"sku":"WP02-28-Red","name":"Emma Leggings-28-Red","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                \n

                • Light blue heather yoga pants.
                • Body hugging fit.
                • Low rise fit.

                ","image":"/w/p/wp02-red_main.jpg","small_image":"/w/p/wp02-red_main.jpg","thumbnail":"/w/p/wp02-red_main.jpg","color":"58","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"emma-leggings-28-red-1827","links":{},"stock":{"item_id":1827,"product_id":1827,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-28-red-1827.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1840","_score":1,"_source":{"id":1840,"sku":"WP04-28-Blue","name":"Cora Parachute Pant-28-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                \n

                • Light blue parachute pants.
                • Power mesh internal waistband for support.
                • Internal waistband pocket.
                • Antimicrobial finish.

                ","image":"/w/p/wp04-blue_main.jpg","small_image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"cora-parachute-pant-28-blue-1840","links":{},"stock":{"item_id":1840,"product_id":1840,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-28-blue-1840.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1832","_score":1,"_source":{"id":1832,"sku":"WP03-28-Black","name":"Ida Workout Parachute Pant-28-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                \n

                • Royal blue parachute pants.
                • Contrast stripe.
                • Relaxed fit.
                • Drawstring closure.
                • Machine wash/dry.

                ","image":"/w/p/wp03-black_main.jpg","small_image":"/w/p/wp03-black_main.jpg","thumbnail":"/w/p/wp03-black_main.jpg","color":"49","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ida-workout-parachute-pant-28-black-1832","links":{},"stock":{"item_id":1832,"product_id":1832,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-28-black-1832.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1806","_score":1,"_source":{"id":1806,"sku":"WT09-S-White","name":"Breathe-Easy Tank-S-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                \n

                • Machine wash/dry.
                • Cocona® fabric.

                ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"breathe-easy-tank-s-white-1806","links":{},"stock":{"item_id":1806,"product_id":1806,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-s-white-1806.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1811","_score":1,"_source":{"id":1811,"sku":"WT09-L-Purple","name":"Breathe-Easy Tank-L-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                \n

                • Machine wash/dry.
                • Cocona® fabric.

                ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"breathe-easy-tank-l-purple-1811","links":{},"stock":{"item_id":1811,"product_id":1811,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-l-purple-1811.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1844","_score":1,"_source":{"id":1844,"sku":"WP04-29-White","name":"Cora Parachute Pant-29-White","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                \n

                • Light blue parachute pants.
                • Power mesh internal waistband for support.
                • Internal waistband pocket.
                • Antimicrobial finish.

                ","image":"/w/p/wp04-white_main.jpg","small_image":"/w/p/wp04-white_main.jpg","thumbnail":"/w/p/wp04-white_main.jpg","color":"59","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"cora-parachute-pant-29-white-1844","links":{},"stock":{"item_id":1844,"product_id":1844,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-29-white-1844.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1812","_score":1,"_source":{"id":1812,"sku":"WT09-L-White","name":"Breathe-Easy Tank-L-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                \n

                • Machine wash/dry.
                • Cocona® fabric.

                ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"breathe-easy-tank-l-white-1812","links":{},"stock":{"item_id":1812,"product_id":1812,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-l-white-1812.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1846","_score":1,"_source":{"id":1846,"sku":"WP05-28-Blue","name":"Sahara Leggings-28-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                \n

                • Pinstripe legging with rouched ankles.
                • Secret pocket at waistband.
                • Flat seams for comfort.
                • Shaped fit with low rise.
                • 4-way stretch, moisture-wicking material.

                ","image":"/w/p/wp05-blue_main.jpg","small_image":"/w/p/wp05-blue_main.jpg","thumbnail":"/w/p/wp05-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sahara-leggings-28-blue-1846","links":{},"stock":{"item_id":1846,"product_id":1846,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-28-blue-1846.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1843","_score":1,"_source":{"id":1843,"sku":"WP04-29-Blue","name":"Cora Parachute Pant-29-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                \n

                • Light blue parachute pants.
                • Power mesh internal waistband for support.
                • Internal waistband pocket.
                • Antimicrobial finish.

                ","image":"/w/p/wp04-blue_main.jpg","small_image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"cora-parachute-pant-29-blue-1843","links":{},"stock":{"item_id":1843,"product_id":1843,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-29-blue-1843.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1823","_score":1,"_source":{"id":1823,"sku":"WP01-29-White","name":"Karmen Yoga Pant-29-White","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                \n

                • Light blue parachute pants.
                • Power mesh internal waistband for support.
                • Internal waistband pocket.
                • Antimicrobial finish.

                ","image":"/w/p/wp01-white_main.jpg","small_image":"/w/p/wp01-white_main.jpg","thumbnail":"/w/p/wp01-white_main.jpg","color":"59","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"karmen-yoga-pant-29-white-1823","links":{},"stock":{"item_id":1823,"product_id":1823,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-29-white-1823.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1841","_score":1,"_source":{"id":1841,"sku":"WP04-28-White","name":"Cora Parachute Pant-28-White","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                \n

                • Light blue parachute pants.
                • Power mesh internal waistband for support.
                • Internal waistband pocket.
                • Antimicrobial finish.

                ","image":"/w/p/wp04-white_main.jpg","small_image":"/w/p/wp04-white_main.jpg","thumbnail":"/w/p/wp04-white_main.jpg","color":"59","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"cora-parachute-pant-28-white-1841","links":{},"stock":{"item_id":1841,"product_id":1841,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-28-white-1841.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1850","_score":1,"_source":{"id":1850,"sku":"WP05-29-Gray","name":"Sahara Leggings-29-Gray","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                \n

                • Pinstripe legging with rouched ankles.
                • Secret pocket at waistband.
                • Flat seams for comfort.
                • Shaped fit with low rise.
                • 4-way stretch, moisture-wicking material.

                ","image":"/w/p/wp05-gray_main.jpg","small_image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","color":"52","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sahara-leggings-29-gray-1850","links":{},"stock":{"item_id":1850,"product_id":1850,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-29-gray-1850.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1848","_score":1,"_source":{"id":1848,"sku":"WP05-28-Red","name":"Sahara Leggings-28-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                \n

                • Pinstripe legging with rouched ankles.
                • Secret pocket at waistband.
                • Flat seams for comfort.
                • Shaped fit with low rise.
                • 4-way stretch, moisture-wicking material.

                ","image":"/w/p/wp05-red_main.jpg","small_image":"/w/p/wp05-red_main.jpg","thumbnail":"/w/p/wp05-red_main.jpg","color":"58","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sahara-leggings-28-red-1848","links":{},"stock":{"item_id":1848,"product_id":1848,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-28-red-1848.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1836","_score":1,"_source":{"id":1836,"sku":"WP03-29-Blue","name":"Ida Workout Parachute Pant-29-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                \n

                • Royal blue parachute pants.
                • Contrast stripe.
                • Relaxed fit.
                • Drawstring closure.
                • Machine wash/dry.

                ","image":"/w/p/wp03-blue_main.jpg","small_image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","color":"50","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ida-workout-parachute-pant-29-blue-1836","links":{},"stock":{"item_id":1836,"product_id":1836,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-29-blue-1836.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1830","_score":1,"_source":{"id":1830,"sku":"WP02-29-Red","name":"Emma Leggings-29-Red","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                \n

                • Light blue heather yoga pants.
                • Body hugging fit.
                • Low rise fit.

                ","image":"/w/p/wp02-red_main.jpg","small_image":"/w/p/wp02-red_main.jpg","thumbnail":"/w/p/wp02-red_main.jpg","color":"58","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"emma-leggings-29-red-1830","links":{},"stock":{"item_id":1830,"product_id":1830,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-29-red-1830.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1847","_score":1,"_source":{"id":1847,"sku":"WP05-28-Gray","name":"Sahara Leggings-28-Gray","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                \n

                • Pinstripe legging with rouched ankles.
                • Secret pocket at waistband.
                • Flat seams for comfort.
                • Shaped fit with low rise.
                • 4-way stretch, moisture-wicking material.

                ","image":"/w/p/wp05-gray_main.jpg","small_image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","color":"52","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sahara-leggings-28-gray-1847","links":{},"stock":{"item_id":1847,"product_id":1847,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-28-gray-1847.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1849","_score":1,"_source":{"id":1849,"sku":"WP05-29-Blue","name":"Sahara Leggings-29-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                \n

                • Pinstripe legging with rouched ankles.
                • Secret pocket at waistband.
                • Flat seams for comfort.
                • Shaped fit with low rise.
                • 4-way stretch, moisture-wicking material.

                ","image":"/w/p/wp05-blue_main.jpg","small_image":"/w/p/wp05-blue_main.jpg","thumbnail":"/w/p/wp05-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sahara-leggings-29-blue-1849","links":{},"stock":{"item_id":1849,"product_id":1849,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-29-blue-1849.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1842","_score":1,"_source":{"id":1842,"sku":"WP04-29-Black","name":"Cora Parachute Pant-29-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                \n

                • Light blue parachute pants.
                • Power mesh internal waistband for support.
                • Internal waistband pocket.
                • Antimicrobial finish.

                ","image":"/w/p/wp04-black_main.jpg","small_image":"/w/p/wp04-black_main.jpg","thumbnail":"/w/p/wp04-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"cora-parachute-pant-29-black-1842","links":{},"stock":{"item_id":1842,"product_id":1842,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-29-black-1842.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1818","_score":1,"_source":{"id":1818,"sku":"WP01-28-Black","name":"Karmen Yoga Pant-28-Black","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                \n

                • Light blue parachute pants.
                • Power mesh internal waistband for support.
                • Internal waistband pocket.
                • Antimicrobial finish.

                ","image":"/w/p/wp01-black_main.jpg","small_image":"/w/p/wp01-black_main.jpg","thumbnail":"/w/p/wp01-black_main.jpg","color":"49","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"karmen-yoga-pant-28-black-1818","links":{},"stock":{"item_id":1818,"product_id":1818,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-28-black-1818.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1805","_score":1,"_source":{"id":1805,"sku":"WT09-S-Purple","name":"Breathe-Easy Tank-S-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                \n

                • Machine wash/dry.
                • Cocona® fabric.

                ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"breathe-easy-tank-s-purple-1805","links":{},"stock":{"item_id":1805,"product_id":1805,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-03-06 13:46:27","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-s-purple-1805.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1804","_score":1,"_source":{"id":1804,"sku":"WT09-XS-Yellow","name":"Breathe-Easy Tank-XS-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                \n

                • Machine wash/dry.
                • Cocona® fabric.

                ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"breathe-easy-tank-xs-yellow-1804","links":{},"stock":{"item_id":1804,"product_id":1804,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xs-yellow-1804.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1813","_score":1,"_source":{"id":1813,"sku":"WT09-L-Yellow","name":"Breathe-Easy Tank-L-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                \n

                • Machine wash/dry.
                • Cocona® fabric.

                ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"breathe-easy-tank-l-yellow-1813","links":{},"stock":{"item_id":1813,"product_id":1813,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-l-yellow-1813.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1807","_score":1,"_source":{"id":1807,"sku":"WT09-S-Yellow","name":"Breathe-Easy Tank-S-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                \n

                • Machine wash/dry.
                • Cocona® fabric.

                ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"breathe-easy-tank-s-yellow-1807","links":{},"stock":{"item_id":1807,"product_id":1807,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-s-yellow-1807.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1829","_score":1,"_source":{"id":1829,"sku":"WP02-29-Purple","name":"Emma Leggings-29-Purple","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                \n

                • Light blue heather yoga pants.
                • Body hugging fit.
                • Low rise fit.

                ","image":"/w/p/wp02-purple_main.jpg","small_image":"/w/p/wp02-purple_main.jpg","thumbnail":"/w/p/wp02-purple_main.jpg","color":"57","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"emma-leggings-29-purple-1829","links":{},"stock":{"item_id":1829,"product_id":1829,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-29-purple-1829.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1820","_score":1,"_source":{"id":1820,"sku":"WP01-28-White","name":"Karmen Yoga Pant-28-White","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                \n

                • Light blue parachute pants.
                • Power mesh internal waistband for support.
                • Internal waistband pocket.
                • Antimicrobial finish.

                ","image":"/w/p/wp01-white_main.jpg","small_image":"/w/p/wp01-white_main.jpg","thumbnail":"/w/p/wp01-white_main.jpg","color":"59","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"karmen-yoga-pant-28-white-1820","links":{},"stock":{"item_id":1820,"product_id":1820,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-28-white-1820.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1834","_score":1,"_source":{"id":1834,"sku":"WP03-28-Purple","name":"Ida Workout Parachute Pant-28-Purple","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                \n

                • Royal blue parachute pants.
                • Contrast stripe.
                • Relaxed fit.
                • Drawstring closure.
                • Machine wash/dry.

                ","image":"/w/p/wp03-purple_main.jpg","small_image":"/w/p/wp03-purple_main.jpg","thumbnail":"/w/p/wp03-purple_main.jpg","color":"57","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ida-workout-parachute-pant-28-purple-1834","links":{},"stock":{"item_id":1834,"product_id":1834,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-28-purple-1834.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1808","_score":1,"_source":{"id":1808,"sku":"WT09-M-Purple","name":"Breathe-Easy Tank-M-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                \n

                • Machine wash/dry.
                • Cocona® fabric.

                ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"breathe-easy-tank-m-purple-1808","links":{},"stock":{"item_id":1808,"product_id":1808,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-m-purple-1808.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1815","_score":1,"_source":{"id":1815,"sku":"WT09-XL-White","name":"Breathe-Easy Tank-XL-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                \n

                • Machine wash/dry.
                • Cocona® fabric.

                ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"breathe-easy-tank-xl-white-1815","links":{},"stock":{"item_id":1815,"product_id":1815,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xl-white-1815.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1822","_score":1,"_source":{"id":1822,"sku":"WP01-29-Gray","name":"Karmen Yoga Pant-29-Gray","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                \n

                • Light blue parachute pants.
                • Power mesh internal waistband for support.
                • Internal waistband pocket.
                • Antimicrobial finish.

                ","image":"/w/p/wp01-gray_main.jpg","small_image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","color":"52","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"karmen-yoga-pant-29-gray-1822","links":{},"stock":{"item_id":1822,"product_id":1822,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp01-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-29-gray-1822.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1835","_score":1,"_source":{"id":1835,"sku":"WP03-29-Black","name":"Ida Workout Parachute Pant-29-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                \n

                • Royal blue parachute pants.
                • Contrast stripe.
                • Relaxed fit.
                • Drawstring closure.
                • Machine wash/dry.

                ","image":"/w/p/wp03-black_main.jpg","small_image":"/w/p/wp03-black_main.jpg","thumbnail":"/w/p/wp03-black_main.jpg","color":"49","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ida-workout-parachute-pant-29-black-1835","links":{},"stock":{"item_id":1835,"product_id":1835,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-29-black-1835.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1826","_score":1,"_source":{"id":1826,"sku":"WP02-28-Purple","name":"Emma Leggings-28-Purple","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                \n

                • Light blue heather yoga pants.
                • Body hugging fit.
                • Low rise fit.

                ","image":"/w/p/wp02-purple_main.jpg","small_image":"/w/p/wp02-purple_main.jpg","thumbnail":"/w/p/wp02-purple_main.jpg","color":"57","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"emma-leggings-28-purple-1826","links":{},"stock":{"item_id":1826,"product_id":1826,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-28-purple-1826.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1833","_score":1,"_source":{"id":1833,"sku":"WP03-28-Blue","name":"Ida Workout Parachute Pant-28-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                \n

                • Royal blue parachute pants.
                • Contrast stripe.
                • Relaxed fit.
                • Drawstring closure.
                • Machine wash/dry.

                ","image":"/w/p/wp03-blue_main.jpg","small_image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","color":"50","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ida-workout-parachute-pant-28-blue-1833","links":{},"stock":{"item_id":1833,"product_id":1833,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-28-blue-1833.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1821","_score":1,"_source":{"id":1821,"sku":"WP01-29-Black","name":"Karmen Yoga Pant-29-Black","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                \n

                • Light blue parachute pants.
                • Power mesh internal waistband for support.
                • Internal waistband pocket.
                • Antimicrobial finish.

                ","image":"/w/p/wp01-black_main.jpg","small_image":"/w/p/wp01-black_main.jpg","thumbnail":"/w/p/wp01-black_main.jpg","color":"49","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"karmen-yoga-pant-29-black-1821","links":{},"stock":{"item_id":1821,"product_id":1821,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-29-black-1821.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1825","_score":1,"_source":{"id":1825,"sku":"WP02-28-Blue","name":"Emma Leggings-28-Blue","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                \n

                • Light blue heather yoga pants.
                • Body hugging fit.
                • Low rise fit.

                ","image":"/w/p/wp02-blue_main.jpg","small_image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"emma-leggings-28-blue-1825","links":{},"stock":{"item_id":1825,"product_id":1825,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp02-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-28-blue-1825.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1839","_score":1,"_source":{"id":1839,"sku":"WP04-28-Black","name":"Cora Parachute Pant-28-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                \n

                • Light blue parachute pants.
                • Power mesh internal waistband for support.
                • Internal waistband pocket.
                • Antimicrobial finish.

                ","image":"/w/p/wp04-black_main.jpg","small_image":"/w/p/wp04-black_main.jpg","thumbnail":"/w/p/wp04-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"cora-parachute-pant-28-black-1839","links":{},"stock":{"item_id":1839,"product_id":1839,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-28-black-1839.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1766","_score":1,"_source":{"id":1766,"sku":"WT06-XL-Blue","name":"Chloe Compete Tank-XL-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                \n

                • Royal blue tank top - nylon/spandex.
                • Flatlock stitching.
                • Moisture-wicking fabric.
                • Ergonomic seaming.
                • Machine wash/dry.

                ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chloe-compete-tank-xl-blue-1766","links":{},"stock":{"item_id":1766,"product_id":1766,"stock_id":1,"qty":70,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xl-blue-1766.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1756","_score":1,"_source":{"id":1756,"sku":"WT06-XS-Yellow","name":"Chloe Compete Tank-XS-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                \n

                • Royal blue tank top - nylon/spandex.
                • Flatlock stitching.
                • Moisture-wicking fabric.
                • Ergonomic seaming.
                • Machine wash/dry.

                ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chloe-compete-tank-xs-yellow-1756","links":{},"stock":{"item_id":1756,"product_id":1756,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xs-yellow-1756.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1758","_score":1,"_source":{"id":1758,"sku":"WT06-S-Red","name":"Chloe Compete Tank-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                \n

                • Royal blue tank top - nylon/spandex.
                • Flatlock stitching.
                • Moisture-wicking fabric.
                • Ergonomic seaming.
                • Machine wash/dry.

                ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chloe-compete-tank-s-red-1758","links":{},"stock":{"item_id":1758,"product_id":1758,"stock_id":1,"qty":32,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-s-red-1758.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1778","_score":1,"_source":{"id":1778,"sku":"WT07-M-Yellow","name":"Maya Tunic-M-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                \n

                • Mint green heather tunic-style tank.
                • Wrapped back with cut out detail.
                • Drawcord detail at end.
                • Abutted seams.

                ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"maya-tunic-m-yellow-1778","links":{},"stock":{"item_id":1778,"product_id":1778,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-m-yellow-1778.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1783","_score":1,"_source":{"id":1783,"sku":"WT07-XL-White","name":"Maya Tunic-XL-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                \n

                • Mint green heather tunic-style tank.
                • Wrapped back with cut out detail.
                • Drawcord detail at end.
                • Abutted seams.

                ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"maya-tunic-xl-white-1783","links":{},"stock":{"item_id":1783,"product_id":1783,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xl-white-1783.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1781","_score":1,"_source":{"id":1781,"sku":"WT07-L-Yellow","name":"Maya Tunic-L-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                \n

                • Mint green heather tunic-style tank.
                • Wrapped back with cut out detail.
                • Drawcord detail at end.
                • Abutted seams.

                ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"maya-tunic-l-yellow-1781","links":{},"stock":{"item_id":1781,"product_id":1781,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-l-yellow-1781.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1761","_score":1,"_source":{"id":1761,"sku":"WT06-M-Red","name":"Chloe Compete Tank-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                \n

                • Royal blue tank top - nylon/spandex.
                • Flatlock stitching.
                • Moisture-wicking fabric.
                • Ergonomic seaming.
                • Machine wash/dry.

                ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chloe-compete-tank-m-red-1761","links":{},"stock":{"item_id":1761,"product_id":1761,"stock_id":1,"qty":71,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-m-red-1761.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1787","_score":1,"_source":{"id":1787,"sku":"WT08-XS-Purple","name":"Antonia Racer Tank-XS-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                \n

                • Machine wash.
                • Line dry.

                ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"antonia-racer-tank-xs-purple-1787","links":{},"stock":{"item_id":1787,"product_id":1787,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xs-purple-1787.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1772","_score":1,"_source":{"id":1772,"sku":"WT07-XS-Yellow","name":"Maya Tunic-XS-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                \n

                • Mint green heather tunic-style tank.
                • Wrapped back with cut out detail.
                • Drawcord detail at end.
                • Abutted seams.

                ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"maya-tunic-xs-yellow-1772","links":{},"stock":{"item_id":1772,"product_id":1772,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xs-yellow-1772.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1774","_score":1,"_source":{"id":1774,"sku":"WT07-S-White","name":"Maya Tunic-S-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                \n

                • Mint green heather tunic-style tank.
                • Wrapped back with cut out detail.
                • Drawcord detail at end.
                • Abutted seams.

                ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"maya-tunic-s-white-1774","links":{},"stock":{"item_id":1774,"product_id":1774,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-s-white-1774.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1770","_score":1,"_source":{"id":1770,"sku":"WT07-XS-Green","name":"Maya Tunic-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                \n

                • Mint green heather tunic-style tank.
                • Wrapped back with cut out detail.
                • Drawcord detail at end.
                • Abutted seams.

                ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"maya-tunic-xs-green-1770","links":{},"stock":{"item_id":1770,"product_id":1770,"stock_id":1,"qty":71,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xs-green-1770.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1788","_score":1,"_source":{"id":1788,"sku":"WT08-XS-Yellow","name":"Antonia Racer Tank-XS-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                \n

                • Machine wash.
                • Line dry.

                ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"antonia-racer-tank-xs-yellow-1788","links":{},"stock":{"item_id":1788,"product_id":1788,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xs-yellow-1788.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1784","_score":1,"_source":{"id":1784,"sku":"WT07-XL-Yellow","name":"Maya Tunic-XL-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                \n

                • Mint green heather tunic-style tank.
                • Wrapped back with cut out detail.
                • Drawcord detail at end.
                • Abutted seams.

                ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"maya-tunic-xl-yellow-1784","links":{},"stock":{"item_id":1784,"product_id":1784,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xl-yellow-1784.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1800","_score":1,"_source":{"id":1800,"sku":"WT08-XL-Yellow","name":"Antonia Racer Tank-XL-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                \n

                • Machine wash.
                • Line dry.

                ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"antonia-racer-tank-xl-yellow-1800","links":{},"stock":{"item_id":1800,"product_id":1800,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xl-yellow-1800.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1768","_score":1,"_source":{"id":1768,"sku":"WT06-XL-Yellow","name":"Chloe Compete Tank-XL-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                \n

                • Royal blue tank top - nylon/spandex.
                • Flatlock stitching.
                • Moisture-wicking fabric.
                • Ergonomic seaming.
                • Machine wash/dry.

                ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chloe-compete-tank-xl-yellow-1768","links":{},"stock":{"item_id":1768,"product_id":1768,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xl-yellow-1768.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1759","_score":1,"_source":{"id":1759,"sku":"WT06-S-Yellow","name":"Chloe Compete Tank-S-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                \n

                • Royal blue tank top - nylon/spandex.
                • Flatlock stitching.
                • Moisture-wicking fabric.
                • Ergonomic seaming.
                • Machine wash/dry.

                ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chloe-compete-tank-s-yellow-1759","links":{},"stock":{"item_id":1759,"product_id":1759,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-s-yellow-1759.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1751","_score":1,"_source":{"id":1751,"sku":"WT05-XL-Purple","name":"Leah Yoga Top-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                \n

                • Blue heather rouched tank top.
                • Camisole tank top.
                • Banding and shirring details.
                • Body hugging fit.
                • Contrast topstitch.
                • Interior shelf bra with shapewear technology.
                • 65% Polyester 35% Cotton.

                ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"leah-yoga-top-xl-purple-1751","links":{},"stock":{"item_id":1751,"product_id":1751,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xl-purple-1751.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1752","_score":1,"_source":{"id":1752,"sku":"WT05-XL-White","name":"Leah Yoga Top-XL-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                \n

                • Blue heather rouched tank top.
                • Camisole tank top.
                • Banding and shirring details.
                • Body hugging fit.
                • Contrast topstitch.
                • Interior shelf bra with shapewear technology.
                • 65% Polyester 35% Cotton.

                ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"leah-yoga-top-xl-white-1752","links":{},"stock":{"item_id":1752,"product_id":1752,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xl-white-1752.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1754","_score":1,"_source":{"id":1754,"sku":"WT06-XS-Blue","name":"Chloe Compete Tank-XS-Blue - tier price","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2018-08-22 09:33:22","weight":1,"product_links":[],"tier_prices":[{"customer_group_id":1,"qty":1,"value":30,"extension_attributes":{"website_id":0}}],"custom_attributes":null,"description":"

                You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                \r\n

                • Royal blue tank top - nylon/spandex.
                • Flatlock stitching.
                • Moisture-wicking fabric.
                • Ergonomic seaming.
                • Machine wash/dry.

                ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xs-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"167","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"chloe-compete-tank-xs-blue-tier-price-1754","links":{},"stock":{"item_id":1754,"product_id":1754,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-12-11 12:02:37","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xs-blue-tier-price-1754.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1757","_score":1,"_source":{"id":1757,"sku":"WT06-S-Blue","name":"Chloe Compete Tank-S-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                \n

                • Royal blue tank top - nylon/spandex.
                • Flatlock stitching.
                • Moisture-wicking fabric.
                • Ergonomic seaming.
                • Machine wash/dry.

                ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chloe-compete-tank-s-blue-1757","links":{},"stock":{"item_id":1757,"product_id":1757,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-s-blue-1757.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1771","_score":1,"_source":{"id":1771,"sku":"WT07-XS-White","name":"Maya Tunic-XS-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                \n

                • Mint green heather tunic-style tank.
                • Wrapped back with cut out detail.
                • Drawcord detail at end.
                • Abutted seams.

                ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"maya-tunic-xs-white-1771","links":{},"stock":{"item_id":1771,"product_id":1771,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xs-white-1771.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1828","_score":1,"_source":{"id":1828,"sku":"WP02-29-Blue","name":"Emma Leggings-29-Blue","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                \n

                • Light blue heather yoga pants.
                • Body hugging fit.
                • Low rise fit.

                ","image":"/w/p/wp02-blue_main.jpg","small_image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"emma-leggings-29-blue-1828","links":{},"stock":{"item_id":1828,"product_id":1828,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp02-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-29-blue-1828.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1809","_score":1,"_source":{"id":1809,"sku":"WT09-M-White","name":"Breathe-Easy Tank-M-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                \n

                • Machine wash/dry.
                • Cocona® fabric.

                ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"breathe-easy-tank-m-white-1809","links":{},"stock":{"item_id":1809,"product_id":1809,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-m-white-1809.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1810","_score":1,"_source":{"id":1810,"sku":"WT09-M-Yellow","name":"Breathe-Easy Tank-M-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                \n

                • Machine wash/dry.
                • Cocona® fabric.

                ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"breathe-easy-tank-m-yellow-1810","links":{},"stock":{"item_id":1810,"product_id":1810,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-m-yellow-1810.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1802","_score":1,"_source":{"id":1802,"sku":"WT09-XS-Purple","name":"Breathe-Easy Tank-XS-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                \n

                • Machine wash/dry.
                • Cocona® fabric.

                ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"breathe-easy-tank-xs-purple-1802","links":{},"stock":{"item_id":1802,"product_id":1802,"stock_id":1,"qty":41,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xs-purple-1802.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1816","_score":1,"_source":{"id":1816,"sku":"WT09-XL-Yellow","name":"Breathe-Easy Tank-XL-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                \n

                • Machine wash/dry.
                • Cocona® fabric.

                ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"breathe-easy-tank-xl-yellow-1816","links":{},"stock":{"item_id":1816,"product_id":1816,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xl-yellow-1816.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1814","_score":1,"_source":{"id":1814,"sku":"WT09-XL-Purple","name":"Breathe-Easy Tank-XL-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                \n

                • Machine wash/dry.
                • Cocona® fabric.

                ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"breathe-easy-tank-xl-purple-1814","links":{},"stock":{"item_id":1814,"product_id":1814,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xl-purple-1814.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1819","_score":1,"_source":{"id":1819,"sku":"WP01-28-Gray","name":"Karmen Yoga Pant-28-Gray","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                \n

                • Light blue parachute pants.
                • Power mesh internal waistband for support.
                • Internal waistband pocket.
                • Antimicrobial finish.

                ","image":"/w/p/wp01-gray_main.jpg","small_image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","color":"52","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"karmen-yoga-pant-28-gray-1819","links":{},"stock":{"item_id":1819,"product_id":1819,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp01-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-28-gray-1819.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1803","_score":1,"_source":{"id":1803,"sku":"WT09-XS-White","name":"Breathe-Easy Tank-XS-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                \n

                • Machine wash/dry.
                • Cocona® fabric.

                ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"breathe-easy-tank-xs-white-1803","links":{},"stock":{"item_id":1803,"product_id":1803,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xs-white-1803.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1765","_score":1,"_source":{"id":1765,"sku":"WT06-L-Yellow","name":"Chloe Compete Tank-L-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                \n

                • Royal blue tank top - nylon/spandex.
                • Flatlock stitching.
                • Moisture-wicking fabric.
                • Ergonomic seaming.
                • Machine wash/dry.

                ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chloe-compete-tank-l-yellow-1765","links":{},"stock":{"item_id":1765,"product_id":1765,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-l-yellow-1765.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1764","_score":1,"_source":{"id":1764,"sku":"WT06-L-Red","name":"Chloe Compete Tank-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                \n

                • Royal blue tank top - nylon/spandex.
                • Flatlock stitching.
                • Moisture-wicking fabric.
                • Ergonomic seaming.
                • Machine wash/dry.

                ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chloe-compete-tank-l-red-1764","links":{},"stock":{"item_id":1764,"product_id":1764,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-l-red-1764.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1760","_score":1,"_source":{"id":1760,"sku":"WT06-M-Blue","name":"Chloe Compete Tank-M-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                \n

                • Royal blue tank top - nylon/spandex.
                • Flatlock stitching.
                • Moisture-wicking fabric.
                • Ergonomic seaming.
                • Machine wash/dry.

                ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chloe-compete-tank-m-blue-1760","links":{},"stock":{"item_id":1760,"product_id":1760,"stock_id":1,"qty":3,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-m-blue-1760.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1767","_score":1,"_source":{"id":1767,"sku":"WT06-XL-Red","name":"Chloe Compete Tank-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                \n

                • Royal blue tank top - nylon/spandex.
                • Flatlock stitching.
                • Moisture-wicking fabric.
                • Ergonomic seaming.
                • Machine wash/dry.

                ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chloe-compete-tank-xl-red-1767","links":{},"stock":{"item_id":1767,"product_id":1767,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xl-red-1767.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1775","_score":1,"_source":{"id":1775,"sku":"WT07-S-Yellow","name":"Maya Tunic-S-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                \n

                • Mint green heather tunic-style tank.
                • Wrapped back with cut out detail.
                • Drawcord detail at end.
                • Abutted seams.

                ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"maya-tunic-s-yellow-1775","links":{},"stock":{"item_id":1775,"product_id":1775,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Hauptkategorie","slug":"hauptkategorie-2","path":"hauptkategorie-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-s-yellow-1775.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1763","_score":1,"_source":{"id":1763,"sku":"WT06-L-Blue","name":"Chloe Compete Tank-L-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                \n

                • Royal blue tank top - nylon/spandex.
                • Flatlock stitching.
                • Moisture-wicking fabric.
                • Ergonomic seaming.
                • Machine wash/dry.

                ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chloe-compete-tank-l-blue-1763","links":{},"stock":{"item_id":1763,"product_id":1763,"stock_id":1,"qty":61,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-l-blue-1763.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1755","_score":1,"_source":{"id":1755,"sku":"WT06-XS-Red","name":"Chloe Compete Tank-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                \n

                • Royal blue tank top - nylon/spandex.
                • Flatlock stitching.
                • Moisture-wicking fabric.
                • Ergonomic seaming.
                • Machine wash/dry.

                ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chloe-compete-tank-xs-red-1755","links":{},"stock":{"item_id":1755,"product_id":1755,"stock_id":1,"qty":30,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xs-red-1755.html","tsk":1568837439138}} +{"_index":"vue_storefront_catalog_de_product","_type":"_doc","_id":"1762","_score":1,"_source":{"id":1762,"sku":"WT06-M-Yellow","name":"Chloe Compete Tank-M-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                \n

                • Royal blue tank top - nylon/spandex.
                • Flatlock stitching.
                • Moisture-wicking fabric.
                • Ergonomic seaming.
                • Machine wash/dry.

                ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chloe-compete-tank-m-yellow-1762","links":{},"stock":{"item_id":1762,"product_id":1762,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-m-yellow-1762.html","tsk":1568837439138}} diff --git a/var/catalog_de_review.json b/var/catalog_de_review.json new file mode 100644 index 00000000..205b9f27 --- /dev/null +++ b/var/catalog_de_review.json @@ -0,0 +1 @@ +{"_index":"vue_storefront_catalog_de_review","_type":"_doc","_id":"639","_score":1,"_source":{"id":639,"title":"test","detail":"test","nickname":"Ali","customer_id":9126,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-09-18 09:57:28","store_id":3,"stores":[0,3],"product_id":898,"tsk":1568837420043}} diff --git a/var/catalog_de_taxrule.json b/var/catalog_de_taxrule.json new file mode 100644 index 00000000..82d43710 --- /dev/null +++ b/var/catalog_de_taxrule.json @@ -0,0 +1 @@ +{"_index":"vue_storefront_catalog_de_taxrule","_type":"_doc","_id":"2","_score":1,"_source":{"id":2,"code":"General Taxes","priority":0,"position":0,"customer_tax_class_ids":[3],"product_tax_class_ids":[2],"tax_rate_ids":[6,5,7,4],"calculate_subtotal":false,"rates":[{"id":4,"tax_country_id":"US","tax_region_id":0,"tax_postcode":"*","rate":23,"code":"VAT23","titles":[]},{"id":5,"tax_country_id":"IT","tax_region_id":0,"tax_postcode":"*","rate":23,"code":"VAT23-IT","titles":[]},{"id":6,"tax_country_id":"DE","tax_region_id":0,"tax_postcode":"*","rate":23,"code":"VAT23-DE","titles":[]},{"id":7,"tax_country_id":"PL","tax_region_id":0,"tax_postcode":"*","rate":23,"code":"VAT23-PL","titles":[]}],"tsk":1568837436161}} diff --git a/var/catalog_it.json b/var/catalog_it.json deleted file mode 100644 index ef4dcf56..00000000 --- a/var/catalog_it.json +++ /dev/null @@ -1,2190 +0,0 @@ -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"29","_score":1,"_source":{"id":29,"sku":"24-WG082-blue","name":"Sprite Stasis Ball 65 cm","attribute_set_id":12,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

                The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                \n
                  \n
                • 65 cm plastic shell.
                • \n
                • Durable, burst-resistant design.
                • \n
                • Hand pump included.
                • \n
                ","image":"/l/u/luma-stability-ball.jpg","small_image":"/l/u/luma-stability-ball.jpg","thumbnail":"/l/u/luma-stability-ball.jpg","color":"50","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-65-cm-blue","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"92","slug":"sprite-stasis-ball-65-cm-29","links":{},"stock":{"item_id":29,"product_id":29,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-stasis-ball-65-cm-29.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"26","_score":1,"_source":{"id":26,"sku":"24-WG081-blue","name":"Sprite Stasis Ball 55 cm - tier price","attribute_set_id":12,"price":23,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2018-08-22 09:27:13","product_links":[],"tier_prices":[{"customer_group_id":1,"qty":1,"value":15,"extension_attributes":{"website_id":0}}],"custom_attributes":null,"final_price":28.290001,"max_price":28.290001,"max_regular_price":28.290001,"minimal_regular_price":28.290001,"special_price":null,"minimal_price":28.290001,"regular_price":28.290001,"description":"

                The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                \r\n
                  \r\n
                • Durable, burst-resistant design.
                • \r\n
                • Hand pump included.
                • \r\n
                ","image":"/l/u/luma-stability-ball.jpg","small_image":"/l/u/luma-stability-ball.jpg","thumbnail":"/l/u/luma-stability-ball.jpg","color":"50","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-55-cm-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"91","slug":"sprite-stasis-ball-55-cm-tier-price-26","links":{},"stock":{"item_id":26,"product_id":26,"stock_id":1,"qty":48,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-stasis-ball-55-cm-tier-price-26.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"14","_score":1,"_source":{"id":14,"sku":"24-WB04","name":"Push It Messenger Bag - tier price","attribute_set_id":15,"price":45,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:26","updated_at":"2018-08-22 09:27:59","product_links":[],"tier_prices":[{"customer_group_id":1,"qty":1,"value":35,"extension_attributes":{"website_id":0}}],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                The name says so, but the Push It Messenger Bag is much more than a busy commuter's tote. It's a closet away from home when you're pedaling from class or work to gym and back or home again. It's the perfect size and shape for laptop, folded clothes, even extra shoes.

                \r\n
                  \r\n
                • Adjustable crossbody strap.
                • \r\n
                • Top handle.
                • \r\n
                • Zippered interior pocket.
                • \r\n
                • Secure clip closures.
                • \r\n
                • Durable fabric construction.
                • \r\n
                ","image":"/w/b/wb04-blue-0.jpg","small_image":"/w/b/wb04-blue-0.jpg","thumbnail":"/w/b/wb04-blue-0.jpg","color":"49","category_ids":[3,7,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"push-it-messenger-bag","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[20,23,8],"style_bags":[27,28],"material":[37,38],"strap_bags":[61,62,63,65,66,67],"features_bags":[74,75,78,79],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","slug":"push-it-messenger-bag-tier-price-14","links":{},"stock":{"item_id":14,"product_id":14,"stock_id":1,"qty":40,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/equipaggiamento-3/push-it-messenger-bag-tier-price-14.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"24","_score":1,"_source":{"id":24,"sku":"24-WG081-gray","name":"Sprite Stasis Ball 55 cm","attribute_set_id":12,"price":23,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28.290001,"max_price":28.290001,"max_regular_price":28.290001,"minimal_regular_price":28.290001,"special_price":null,"minimal_price":28.290001,"regular_price":28.290001,"description":"

                The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                \n
                  \n
                • Durable, burst-resistant design.
                • \n
                • Hand pump included.
                • \n
                ","image":"/l/u/luma-stability-ball-gray.jpg","small_image":"/l/u/luma-stability-ball-gray.jpg","thumbnail":"/l/u/luma-stability-ball-gray.jpg","color":"52","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-55-cm-gray","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"91","slug":"sprite-stasis-ball-55-cm-24","links":{},"stock":{"item_id":24,"product_id":24,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball-gray.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-stasis-ball-55-cm-24.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"25","_score":1,"_source":{"id":25,"sku":"24-WG081-pink","name":"Sprite Stasis Ball 55 cm","attribute_set_id":12,"price":23,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28.290001,"max_price":28.290001,"max_regular_price":28.290001,"minimal_regular_price":28.290001,"special_price":null,"minimal_price":28.290001,"regular_price":28.290001,"description":"

                The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                \n
                  \n
                • Durable, burst-resistant design.
                • \n
                • Hand pump included.
                • \n
                ","image":"/l/u/luma-stability-ball-pink.jpg","small_image":"/l/u/luma-stability-ball-pink.jpg","thumbnail":"/l/u/luma-stability-ball-pink.jpg","color":"58","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-55-cm-pink","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"91","slug":"sprite-stasis-ball-55-cm-25","links":{},"stock":{"item_id":25,"product_id":25,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball-pink.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-stasis-ball-55-cm-25.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"48","_score":1,"_source":{"id":48,"sku":"240-LV06","name":"Yoga Adventure","attribute_set_id":14,"price":22,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:33","updated_at":"2019-03-22 09:14:31","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18.450001,"max_price":18.450001,"max_regular_price":18.450001,"minimal_regular_price":18.450001,"special_price":"15.0000","minimal_price":18.450001,"regular_price":27.060001,"description":"

                Luma presents an innovative power vinyasa yoga class for intermediate and advanced practitioners. The video allows you to pace yourself, but more intense work yields longer rest. This class is great for more advanced students looking to learn proper alignment in their yoga practice.

                \r\n
                  \r\n
                • Includes a breakdown of 12 different postures.
                • \r\n
                • Chataranga Dandasana and prayer twist.
                • \r\n
                • Challenging posture (side crow).
                • \r\n
                • 55 minutes of movement.
                • \r\n
                ","short_description":"

                \r\nThe practices on this downloadable training video are recommended only for experienced to advanced students. Those with the fundamental skills needed won't want to miss the insight and advice from world-renowned trainer Erin Renny in these exclusive Luma guided yoga sessions. Complete body, arm balance and leg strength workouts engage, strengthen and increase mobility.\r\n

                ","special_from_date":"2019-03-22 00:00:00","image":"/l/t/lt03.jpg","small_image":"/l/t/lt03.jpg","thumbnail":"/l/t/lt03.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"yoga-adventure","msrp_display_actual_price_type":"0","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","gift_message_available":"0","tax_class_id":"2","activity":[8,16],"format":"102","slug":"yoga-adventure-48","links":{},"stock":{"item_id":48,"product_id":48,"stock_id":1,"qty":2,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/t/lt03.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":9,"name":"Training","slug":"training-9","path":"training/training-9"},{"category_id":10,"name":"Video Download","slug":"video-download-10","path":"training/training-video/video-download-10"}],"url_path":"training/training-9/yoga-adventure-48.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"19","_score":1,"_source":{"id":19,"sku":"24-UG05","name":"Go-Get'r Pushup Grips","attribute_set_id":11,"price":19,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2017-11-06 12:16:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":23.370001,"max_price":23.370001,"max_regular_price":23.370001,"minimal_regular_price":23.370001,"special_price":null,"minimal_price":23.370001,"regular_price":23.370001,"description":"

                The Go-Get'r Pushup Grips safely provide the extra range of motion you need for a deep-dip routine targeting core, shoulder, chest and arm strength. Do fewer pushups using more energy, getting better results faster than the standard floor-level technique yield.

                \n
                  \n
                • Durable foam grips.
                • \n
                • Supportive base.
                • \n
                ","image":"/u/g/ug05-gr-0.jpg","small_image":"/u/g/ug05-gr-0.jpg","thumbnail":"/u/g/ug05-gr-0.jpg","category_ids":[3,7,5,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"go-get-r-pushup-grips","tax_class_id":"2","activity":[16,11],"material":[44,45],"gender":[80,81,84],"category_gear":"87","erin_recommends":"1","new":"1","slug":"go-getr-pushup-grips-19","links":{},"stock":{"item_id":19,"product_id":19,"stock_id":1,"qty":80,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/u/g/ug05-gr-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/equipaggiamento-3/go-getr-pushup-grips-19.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"40","_score":1,"_source":{"id":40,"sku":"24-MG02","name":"Dash Digital Watch","attribute_set_id":11,"price":92,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":113.160001,"max_price":113.160001,"max_regular_price":113.160001,"minimal_regular_price":113.160001,"special_price":null,"minimal_price":113.160001,"regular_price":113.160001,"description":"

                The Dash Digital Watch will challenge you to push harder and longer. Log workouts by date, average, and segment times, and recharge by setting hydration and nutrition alarms. This watch is styled with a sleek, square face and durable rubber strap for a long life.

                \n
                  \n
                • Digital display.
                • \n
                • LED backlight.
                • \n
                • Rubber strap with buckle clasp.
                • \n
                • 1-year limited warranty.
                • ","image":"/m/g/mg02-bk-0.jpg","small_image":"/m/g/mg02-bk-0.jpg","thumbnail":"/m/g/mg02-bk-0.jpg","category_ids":[3,7,6,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"dash-digital-watch","tax_class_id":"2","activity":[16,17,5,11],"material":"45","gender":"80","category_gear":[86,87,90],"new":"1","slug":"dash-digital-watch-40","links":{},"stock":{"item_id":40,"product_id":40,"stock_id":1,"qty":49,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/g/mg02-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/equipaggiamento-3/dash-digital-watch-40.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"52","_score":1,"_source":{"id":52,"sku":"MH01-XS-Black","name":"Chaz Kangeroo Hoodie-XS-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                  Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                  \n

                  • Two-tone gray heather hoodie.
                  • Drawstring-adjustable hood.
                  • Machine wash/dry.

                  ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chaz-kangeroo-hoodie-xs-black-52","links":{},"stock":{"item_id":52,"product_id":52,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xs-black-52.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"92","_score":1,"_source":{"id":92,"sku":"MH03-M-Green","name":"Bruno Compete Hoodie-M-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

                  Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                  \n

                  • Full zip black hoodie pullover.
                  • Adjustable drawstring hood.
                  • Ribbed cuffs/waistband.
                  • Kangaroo pocket.
                  • Machine wash/dry.

                  ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bruno-compete-hoodie-m-green-92","links":{},"stock":{"item_id":92,"product_id":92,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-m-green-92.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"84","_score":1,"_source":{"id":84,"sku":"MH03-XS-Black","name":"Bruno Compete Hoodie-XS-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

                  Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                  \n

                  • Full zip black hoodie pullover.
                  • Adjustable drawstring hood.
                  • Ribbed cuffs/waistband.
                  • Kangaroo pocket.
                  • Machine wash/dry.

                  ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bruno-compete-hoodie-xs-black-84","links":{},"stock":{"item_id":84,"product_id":84,"stock_id":1,"qty":69,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xs-black-84.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"60","_score":1,"_source":{"id":60,"sku":"MH01-M-Orange","name":"Chaz Kangeroo Hoodie-M-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                  Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                  \n

                  • Two-tone gray heather hoodie.
                  • Drawstring-adjustable hood.
                  • Machine wash/dry.

                  ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chaz-kangeroo-hoodie-m-orange-60","links":{},"stock":{"item_id":60,"product_id":60,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-m-orange-60.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"89","_score":1,"_source":{"id":89,"sku":"MH03-S-Green","name":"Bruno Compete Hoodie-S-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

                  Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                  \n

                  • Full zip black hoodie pullover.
                  • Adjustable drawstring hood.
                  • Ribbed cuffs/waistband.
                  • Kangaroo pocket.
                  • Machine wash/dry.

                  ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bruno-compete-hoodie-s-green-89","links":{},"stock":{"item_id":89,"product_id":89,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-s-green-89.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"98","_score":1,"_source":{"id":98,"sku":"MH03-XL-Green","name":"Bruno Compete Hoodie-XL-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

                  Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                  \n

                  • Full zip black hoodie pullover.
                  • Adjustable drawstring hood.
                  • Ribbed cuffs/waistband.
                  • Kangaroo pocket.
                  • Machine wash/dry.

                  ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bruno-compete-hoodie-xl-green-98","links":{},"stock":{"item_id":98,"product_id":98,"stock_id":1,"qty":49,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xl-green-98.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"41","_score":1,"_source":{"id":41,"sku":"24-WG09","name":"Luma Analog Watch","attribute_set_id":11,"price":43,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52.890001,"max_price":52.890001,"max_regular_price":52.890001,"minimal_regular_price":52.890001,"special_price":"43.0000","minimal_price":52.890001,"regular_price":52.890001,"description":"

                  Designed to stand up to your active lifestyle, this women's Luma Analog Watch features a tasteful brushed chrome finish and a stainless steel, water-resistant construction for lasting durability.

                  \n
                    \n
                  • Precision Miyota® three-hand movement.
                  • \n
                  ","special_from_date":"2017-11-06 12:16:30","image":"/w/g/wg09-gr-0.jpg","small_image":"/w/g/wg09-gr-0.jpg","thumbnail":"/w/g/wg09-gr-0.jpg","category_ids":[3,6],"options_container":"container2","required_options":"0","has_options":"0","url_key":"luma-analog-watch","tax_class_id":"2","activity":"9","material":"47","gender":"81","category_gear":[86,88,90],"sale":"1","slug":"luma-analog-watch-41","links":{},"stock":{"item_id":41,"product_id":41,"stock_id":1,"qty":15,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/g/wg09-gr-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"}],"url_path":"gear/equipaggiamento-3/luma-analog-watch-41.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"44","_score":1,"_source":{"id":44,"sku":"24-WG02","name":"Didi Sport Watch","attribute_set_id":11,"price":92,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                  The Didi Sport Watch helps you keep your workout plan down to the second. The vertical, digital face looks sleek and futuristic. This watch is programmed with tons of helpful features such as a timer, an alarm clock, a pedometer, and more to help make your excercise more productive.

                  \n
                    \n
                  • Digital display.
                  • \n
                  • LED backlight.
                  • \n
                  • Rubber strap with buckle clasp.
                  • \n
                  • 1-year limited warranty.
                  • \n
                  ","image":"/w/g/wg02-bk-0.jpg","small_image":"/w/g/wg02-bk-0.jpg","thumbnail":"/w/g/wg02-bk-0.jpg","category_ids":[3,7,6,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"didi-sport-watch","tax_class_id":"2","activity":[16,11],"material":[43,45,48],"gender":"81","category_gear":[86,87,90],"new":"1","slug":"didi-sport-watch-44","links":{},"stock":{"item_id":44,"product_id":44,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-02-07 19:23:59","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/g/wg02-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/equipaggiamento-3/didi-sport-watch-44.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"79","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":79,"attribute_code":"special_from_date","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Special Price From Date","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate","is_unique":"0","validation_rules":[],"id":79,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"73","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":true,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":73,"attribute_code":"name","frontend_input":"text","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Product Name","frontend_labels":null,"backend_type":"varchar","is_unique":"0","frontend_class":"validate-length maximum-length-255","validation_rules":[],"id":73,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"84","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":84,"attribute_code":"meta_title","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Meta Title","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":84,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"89","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":89,"attribute_code":"thumbnail","frontend_input":"media_image","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Thumbnail","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":89,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"92","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"website","attribute_id":92,"attribute_code":"tier_price","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Tier Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Tierprice","is_unique":"0","validation_rules":[],"id":92,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"98","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":98,"attribute_code":"minimal_price","frontend_input":"price","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Minimal Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":98,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"99","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":99,"attribute_code":"visibility","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Not Visible Individually","value":"1"},{"label":"Catalog","value":"2"},{"label":"Search","value":"3"},{"label":"Catalog, Search","value":"4"}],"is_user_defined":false,"default_frontend_label":"Visibility","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Catalog\\Model\\Product\\Visibility","default_value":"4","is_unique":"0","validation_rules":[],"id":99,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"105","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":105,"attribute_code":"category_ids","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Categories","frontend_labels":null,"backend_type":"static","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Category","is_unique":"0","validation_rules":[],"id":105,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"108","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":108,"attribute_code":"has_options","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":108,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"110","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"store","attribute_id":110,"attribute_code":"small_image_label","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Small Image Label","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":110,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"116","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":116,"attribute_code":"custom_layout","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"No layout updates","value":""},{"label":"Empty","value":"empty"},{"label":"1 column","value":"1column"},{"label":"2 columns with left bar","value":"2columns-left"},{"label":"2 columns with right bar","value":"2columns-right"},{"label":"3 columns","value":"3columns"}],"is_user_defined":false,"default_frontend_label":"New Layout","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Layout","is_unique":"0","validation_rules":[],"id":116,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"119","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":119,"attribute_code":"url_key","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"URL Key","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":119,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"120","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"store","attribute_id":120,"attribute_code":"url_path","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":120,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"123","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":123,"attribute_code":"price_type","frontend_input":"boolean","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Dynamic Price","frontend_labels":null,"backend_type":"int","default_value":"0","is_unique":"0","validation_rules":[],"id":123,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"126","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":126,"attribute_code":"price_view","frontend_input":"select","entity_type_id":"4","is_required":true,"options":[{"label":"Price Range","value":"0"},{"label":"As Low as","value":"1"}],"is_user_defined":false,"default_frontend_label":"Price View","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Bundle\\Model\\Product\\Attribute\\Source\\Price\\View","is_unique":"0","validation_rules":[],"id":126,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"129","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"store","attribute_id":129,"attribute_code":"samples_title","frontend_input":null,"entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Samples title","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":129,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"130","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"store","attribute_id":130,"attribute_code":"links_title","frontend_input":null,"entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Links title","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":130,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"132","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":132,"attribute_code":"gift_message_available","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"},{"label":"Use config","value":"2"}],"is_user_defined":false,"default_frontend_label":"Allow Gift Message","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Boolean","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Boolean","is_unique":"0","validation_rules":[],"id":132,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"143","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":143,"attribute_code":"eco_collection","frontend_input":"boolean","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"}],"is_user_defined":true,"default_frontend_label":"Eco Collection","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean","default_value":"","is_unique":"0","validation_rules":[],"id":143,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"144","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":144,"attribute_code":"performance_fabric","frontend_input":"boolean","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"}],"is_user_defined":true,"default_frontend_label":"Performance Fabric","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean","default_value":"","is_unique":"0","validation_rules":[],"id":144,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"145","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":145,"attribute_code":"erin_recommends","frontend_input":"boolean","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"}],"is_user_defined":true,"default_frontend_label":"Erin Recommends","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean","default_value":"","is_unique":"0","validation_rules":[],"id":145,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"149","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":149,"attribute_code":"style_bottom","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Base Layer","value":"105"},{"label":"Basic","value":"106"},{"label":"Capri","value":"107"},{"label":"Compression","value":"108"},{"label":"Leggings","value":"109"},{"label":"Parachute","value":"110"},{"label":"Skort","value":"111"},{"label":"Snug","value":"112"},{"label":"Sweatpants","value":"113"},{"label":"Tights","value":"114"},{"label":"Track Pants","value":"115"},{"label":"Workout Pants","value":"116"}],"is_user_defined":true,"default_frontend_label":"Style Bottom","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":149,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"22","_score":1,"_source":{"id":22,"sku":"24-WG088","name":"Sprite Foam Roller","attribute_set_id":11,"price":19,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2018-07-23 08:05:45","product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                  It hurts so good to use the Sprite Foam Roller on achy, tired muscles for myofascial massage therapy. Or you can add this fundamental piece to your Pilates and yoga accouterment, or apply towards core stability, strengthening and balance exercise.

                  \r\n
                    \r\n
                  • 6'' wide by 12'' long.
                  • \r\n
                  • Safe for myofascial release.
                  • \r\n
                  • EPP or PE foam options.
                  • \r\n
                  • Solid, dense, closed-cell foam.
                  • \r\n
                  ","image":"/l/u/luma-foam-roller.jpg","small_image":"/l/u/luma-foam-roller.jpg","thumbnail":"/l/u/luma-foam-roller.jpg","color":"50","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-foam-roller","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[8,11],"material":"42","gender":[80,81,84],"category_gear":"87","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"sprite-foam-roller-22","links":{},"stock":{"item_id":22,"product_id":22,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-04-16 10:43:08","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/l/u/luma-foam-roller.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-foam-roller-22.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"73","_score":1,"_source":{"id":73,"sku":"MH02-S-Red","name":"Teton Pullover Hoodie-S-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

                  This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                  \n

                  • Black pullover hoodie.
                  • Soft, brushed interior.
                  • Front hand pockets.
                  • Machine wash/dry.

                  ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"teton-pullover-hoodie-s-red-73","links":{},"stock":{"item_id":73,"product_id":73,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-s-red-73.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"79","_score":1,"_source":{"id":79,"sku":"MH02-L-Red","name":"Teton Pullover Hoodie-L-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

                  This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                  \n

                  • Black pullover hoodie.
                  • Soft, brushed interior.
                  • Front hand pockets.
                  • Machine wash/dry.

                  ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"teton-pullover-hoodie-l-red-79","links":{},"stock":{"item_id":79,"product_id":79,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-l-red-79.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"22","_score":1,"_source":{"id":22,"parent_id":20,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"id":27,"parent_id":22,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":91,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/27","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-27","url_path":"women/bottoms-women/pants-women/pants-27","slug":"pants-27"},{"id":28,"parent_id":22,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":137,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/28","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-28","url_path":"women/bottoms-women/shorts-women/shorts-28","slug":"shorts-28"}],"children":"27,28","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-22","url_path":"women/bottoms-women/bottoms-22","slug":"bottoms-22","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"25","_score":1,"_source":{"id":25,"parent_id":21,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/25","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-25","url_path":"women/tops-women/tees-women/tees-25","slug":"tees-25","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"24","_score":1,"_source":{"id":24,"parent_id":21,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":182,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/24","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-24","url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","slug":"hoodies-and-sweatshirts-24","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"26","_score":1,"_source":{"id":26,"parent_id":21,"name":"Bras & Tanks","is_active":true,"position":4,"level":4,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/26","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bras-and-tanks-26","url_path":"women/tops-women/tanks-women/bras-and-tanks-26","slug":"bras-and-tanks-26","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"14","_score":1,"_source":{"id":14,"parent_id":12,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":176,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:10:23","path":"1/2/11/12/14","available_sort_by":[],"include_in_menu":true,"description":"

                  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum dui sapien, bibendum ac luctus sed, lobortis id lacus. Nulla nisi augue, accumsan id sapien maximus, hendrerit vehicula elit.

                  ","display_mode":"PRODUCTS","is_anchor":"1","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"jackets-14","url_path":"men/tops-men/jackets-men/jackets-14","slug":"jackets-14","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"19","_score":1,"_source":{"id":19,"parent_id":13,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":148,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/19","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-19","url_path":"men/bottoms-men/shorts-men/shorts-19","slug":"shorts-19","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"29","_score":1,"_source":{"id":29,"parent_id":2,"name":"Promotions","is_active":false,"position":6,"level":2,"product_count":0,"children_data":[{"id":30,"parent_id":29,"name":"Women Sale","is_active":true,"position":1,"level":3,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/30","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"women-sale-30","url_path":"promotions/women-sale/women-sale-30","slug":"women-sale-30"},{"id":31,"parent_id":29,"name":"Men Sale","is_active":true,"position":2,"level":3,"product_count":39,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/31","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"men-sale-31","url_path":"promotions/men-sale/men-sale-31","slug":"men-sale-31"},{"id":32,"parent_id":29,"name":"Pants","is_active":true,"position":3,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/32","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"pants-32","url_path":"promotions/pants-all/pants-32","slug":"pants-32"},{"id":33,"parent_id":29,"name":"Tees","is_active":true,"position":4,"level":3,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/33","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"tees-33","url_path":"promotions/tees-all/tees-33","slug":"tees-33"}],"children":"30,31,32,33","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:42","path":"1/2/29","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","children_count":"4","url_key":"promotions-29","url_path":"promotions/promotions-29","slug":"promotions-29","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"40","_score":1,"_source":{"id":40,"parent_id":7,"name":"Eco Collection New","is_active":true,"position":6,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/40","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"eco-collection-new-40","url_path":"collections/eco-new/eco-collection-new-40","slug":"eco-collection-new-40","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"cms_block","_id":"14","_score":1,"_source":{"store_id":[0],"id":14,"identifier":"home-page-block","title":"Home Page Block","content":"\n
                  \n

                  Hot Sellers

                  \n

                  Here is what`s trending on Luma right now

                  \n
                  \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556377179572}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"99","_score":1,"_source":{"id":99,"sku":"MH03","name":"Bruno Compete Hoodie","attribute_set_id":9,"price":63,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":63,"description":"

                  Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                  \n

                  • Full zip black hoodie pullover.
                  • Adjustable drawstring hood.
                  • Ribbed cuffs/waistband.
                  • Kangaroo pocket.
                  • Machine wash/dry.

                  ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"bruno-compete-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","pattern":"197","climate":[202,204,205,208,210],"slug":"bruno-compete-hoodie-99","links":{},"stock":{"item_id":99,"product_id":99,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH03-XS-Black","id":84,"status":1,"name":"Bruno Compete Hoodie-XS-Black","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"49","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","url_key":"bruno-compete-hoodie-xs-black","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-XS-Blue","id":85,"status":1,"name":"Bruno Compete Hoodie-XS-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"50","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","url_key":"bruno-compete-hoodie-xs-blue","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-XS-Green","id":86,"status":1,"name":"Bruno Compete Hoodie-XS-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"53","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","url_key":"bruno-compete-hoodie-xs-green","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-S-Black","id":87,"status":1,"name":"Bruno Compete Hoodie-S-Black","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"49","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","url_key":"bruno-compete-hoodie-s-black","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-S-Blue","id":88,"status":1,"name":"Bruno Compete Hoodie-S-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"50","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","url_key":"bruno-compete-hoodie-s-blue","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-S-Green","id":89,"status":1,"name":"Bruno Compete Hoodie-S-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"53","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","url_key":"bruno-compete-hoodie-s-green","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-M-Black","id":90,"status":1,"name":"Bruno Compete Hoodie-M-Black","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"49","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","url_key":"bruno-compete-hoodie-m-black","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-M-Blue","id":91,"status":1,"name":"Bruno Compete Hoodie-M-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"50","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","url_key":"bruno-compete-hoodie-m-blue","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-M-Green","id":92,"status":1,"name":"Bruno Compete Hoodie-M-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"53","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","url_key":"bruno-compete-hoodie-m-green","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-L-Black","id":93,"status":1,"name":"Bruno Compete Hoodie-L-Black","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"49","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","url_key":"bruno-compete-hoodie-l-black","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-L-Blue","id":94,"status":1,"name":"Bruno Compete Hoodie-L-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"50","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","url_key":"bruno-compete-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-L-Green","id":95,"status":1,"name":"Bruno Compete Hoodie-L-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"53","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","url_key":"bruno-compete-hoodie-l-green","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-XL-Black","id":96,"status":1,"name":"Bruno Compete Hoodie-XL-Black","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"49","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","url_key":"bruno-compete-hoodie-xl-black","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-XL-Blue","id":97,"status":1,"name":"Bruno Compete Hoodie-XL-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"50","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","url_key":"bruno-compete-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001},{"sku":"MH03-XL-Green","id":98,"status":1,"name":"Bruno Compete Hoodie-XL-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"53","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","url_key":"bruno-compete-hoodie-xl-green","msrp_display_actual_price_type":"0","final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001}],"configurable_options":[{"id":7,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":99,"attribute_code":"color"},{"id":6,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":99,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-99.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"227","_score":1,"_source":{"id":227,"sku":"MH11","name":"Grayson Crewneck Sweatshirt ","attribute_set_id":9,"price":64,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":64,"description":"

                  The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                  \n

                  • Cream crewneck sweatshirt with black accents.
                  • 80% cotton/20% polyester fleece.
                  • Patterned knit hood lining.
                  • Knit cuffs and waist.
                  • Pouch pocket.
                  • Curl edged seam detail

                  ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"grayson-crewneck-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"195","climate":[202,204,205,208,210],"slug":"grayson-crewneck-sweatshirt-227","links":{},"stock":{"item_id":227,"product_id":227,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH11-XS-Orange","id":212,"status":1,"name":"Grayson Crewneck Sweatshirt -XS-Orange","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"56","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","url_key":"grayson-crewneck-sweatshirt-xs-orange","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-XS-Red","id":213,"status":1,"name":"Grayson Crewneck Sweatshirt -XS-Red","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","url_key":"grayson-crewneck-sweatshirt-xs-red","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-XS-White","id":214,"status":1,"name":"Grayson Crewneck Sweatshirt -XS-White","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"59","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","url_key":"grayson-crewneck-sweatshirt-xs-white","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-S-Orange","id":215,"status":1,"name":"Grayson Crewneck Sweatshirt -S-Orange","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"56","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","url_key":"grayson-crewneck-sweatshirt-s-orange","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-S-Red","id":216,"status":1,"name":"Grayson Crewneck Sweatshirt -S-Red","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","url_key":"grayson-crewneck-sweatshirt-s-red","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-S-White","id":217,"status":1,"name":"Grayson Crewneck Sweatshirt -S-White","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"59","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","url_key":"grayson-crewneck-sweatshirt-s-white","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-M-Orange","id":218,"status":1,"name":"Grayson Crewneck Sweatshirt -M-Orange","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"56","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","url_key":"grayson-crewneck-sweatshirt-m-orange","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-M-Red","id":219,"status":1,"name":"Grayson Crewneck Sweatshirt -M-Red","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","url_key":"grayson-crewneck-sweatshirt-m-red","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-M-White","id":220,"status":1,"name":"Grayson Crewneck Sweatshirt -M-White","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"59","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","url_key":"grayson-crewneck-sweatshirt-m-white","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-L-Orange","id":221,"status":1,"name":"Grayson Crewneck Sweatshirt -L-Orange","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"56","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","url_key":"grayson-crewneck-sweatshirt-l-orange","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-L-Red","id":222,"status":1,"name":"Grayson Crewneck Sweatshirt -L-Red","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","url_key":"grayson-crewneck-sweatshirt-l-red","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-L-White","id":223,"status":1,"name":"Grayson Crewneck Sweatshirt -L-White","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"59","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","url_key":"grayson-crewneck-sweatshirt-l-white","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-XL-Orange","id":224,"status":1,"name":"Grayson Crewneck Sweatshirt -XL-Orange","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"56","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","url_key":"grayson-crewneck-sweatshirt-xl-orange","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-XL-Red","id":225,"status":1,"name":"Grayson Crewneck Sweatshirt -XL-Red","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","url_key":"grayson-crewneck-sweatshirt-xl-red","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001},{"sku":"MH11-XL-White","id":226,"status":1,"name":"Grayson Crewneck Sweatshirt -XL-White","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"59","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","url_key":"grayson-crewneck-sweatshirt-xl-white","msrp_display_actual_price_type":"0","final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001}],"configurable_options":[{"id":23,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":227,"attribute_code":"color"},{"id":22,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":227,"attribute_code":"size"}],"color_options":[56,58,59],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-227.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"123","_score":1,"_source":{"id":123,"sku":"MH05-M-Red","name":"Hollister Backyard Sweatshirt-M-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                  Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                  \n

                  • Cream crewneck sweatshirt with navy sleeves/trim.
                  • Relaxed fit.
                  • Ribbed cuffs and hem.
                  • Machine wash/dry.

                  ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hollister-backyard-sweatshirt-m-red-123","links":{},"stock":{"item_id":123,"product_id":123,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-m-red-123.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"132","_score":1,"_source":{"id":132,"sku":"MH06-XS-Black","name":"Stark Fundamental Hoodie-XS-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                  \n

                  • Navy specked full zip hoodie.
                  • Ribbed cuffs, banded waist.
                  • Side pockets.
                  • Machine wash/dry.

                  ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"stark-fundamental-hoodie-xs-black-132","links":{},"stock":{"item_id":132,"product_id":132,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xs-black-132.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"126","_score":1,"_source":{"id":126,"sku":"MH05-L-Red","name":"Hollister Backyard Sweatshirt-L-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                  Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                  \n

                  • Cream crewneck sweatshirt with navy sleeves/trim.
                  • Relaxed fit.
                  • Ribbed cuffs and hem.
                  • Machine wash/dry.

                  ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hollister-backyard-sweatshirt-l-red-126","links":{},"stock":{"item_id":126,"product_id":126,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-l-red-126.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"149","_score":1,"_source":{"id":149,"sku":"MH07-XS-Gray","name":"Hero Hoodie-XS-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                  Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                  \n

                  • Full-zip gray and black hoodie.
                  • Ribbed hem.
                  • Standard fit.
                  • Drawcord hood cinch.
                  • Water-resistant coating.

                  ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hero-hoodie-xs-gray-149","links":{},"stock":{"item_id":149,"product_id":149,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xs-gray-149.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"130","_score":1,"_source":{"id":130,"sku":"MH05-XL-White","name":"Hollister Backyard Sweatshirt-XL-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                  Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                  \n

                  • Cream crewneck sweatshirt with navy sleeves/trim.
                  • Relaxed fit.
                  • Ribbed cuffs and hem.
                  • Machine wash/dry.

                  ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hollister-backyard-sweatshirt-xl-white-130","links":{},"stock":{"item_id":130,"product_id":130,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xl-white-130.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"129","_score":1,"_source":{"id":129,"sku":"MH05-XL-Red","name":"Hollister Backyard Sweatshirt-XL-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                  Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                  \n

                  • Cream crewneck sweatshirt with navy sleeves/trim.
                  • Relaxed fit.
                  • Ribbed cuffs and hem.
                  • Machine wash/dry.

                  ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hollister-backyard-sweatshirt-xl-red-129","links":{},"stock":{"item_id":129,"product_id":129,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xl-red-129.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"145","_score":1,"_source":{"id":145,"sku":"MH06-XL-Blue","name":"Stark Fundamental Hoodie-XL-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                  \n

                  • Navy specked full zip hoodie.
                  • Ribbed cuffs, banded waist.
                  • Side pockets.
                  • Machine wash/dry.

                  ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"stark-fundamental-hoodie-xl-blue-145","links":{},"stock":{"item_id":145,"product_id":145,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xl-blue-145.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"144","_score":1,"_source":{"id":144,"sku":"MH06-XL-Black","name":"Stark Fundamental Hoodie-XL-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                  \n

                  • Navy specked full zip hoodie.
                  • Ribbed cuffs, banded waist.
                  • Side pockets.
                  • Machine wash/dry.

                  ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"stark-fundamental-hoodie-xl-black-144","links":{},"stock":{"item_id":144,"product_id":144,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xl-black-144.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"108","_score":1,"_source":{"id":108,"sku":"MH04-M-Yellow","name":"Frankie Sweatshirt-M-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                  \n

                  • Light green crewneck sweatshirt.
                  • Hand pockets.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"frankie-sweatshirt-m-yellow-108","links":{},"stock":{"item_id":108,"product_id":108,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-m-yellow-108.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"120","_score":1,"_source":{"id":120,"sku":"MH05-S-Red","name":"Hollister Backyard Sweatshirt-S-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                  Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                  \n

                  • Cream crewneck sweatshirt with navy sleeves/trim.
                  • Relaxed fit.
                  • Ribbed cuffs and hem.
                  • Machine wash/dry.

                  ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hollister-backyard-sweatshirt-s-red-120","links":{},"stock":{"item_id":120,"product_id":120,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-s-red-120.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"105","_score":1,"_source":{"id":105,"sku":"MH04-S-Yellow","name":"Frankie Sweatshirt-S-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                  \n

                  • Light green crewneck sweatshirt.
                  • Hand pockets.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"frankie-sweatshirt-s-yellow-105","links":{},"stock":{"item_id":105,"product_id":105,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-s-yellow-105.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"116","_score":1,"_source":{"id":116,"sku":"MH05-XS-Green","name":"Hollister Backyard Sweatshirt-XS-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                  Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                  \n

                  • Cream crewneck sweatshirt with navy sleeves/trim.
                  • Relaxed fit.
                  • Ribbed cuffs and hem.
                  • Machine wash/dry.

                  ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hollister-backyard-sweatshirt-xs-green-116","links":{},"stock":{"item_id":116,"product_id":116,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xs-green-116.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"119","_score":1,"_source":{"id":119,"sku":"MH05-S-Green","name":"Hollister Backyard Sweatshirt-S-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                  Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                  \n

                  • Cream crewneck sweatshirt with navy sleeves/trim.
                  • Relaxed fit.
                  • Ribbed cuffs and hem.
                  • Machine wash/dry.

                  ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hollister-backyard-sweatshirt-s-green-119","links":{},"stock":{"item_id":119,"product_id":119,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-s-green-119.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"110","_score":1,"_source":{"id":110,"sku":"MH04-L-White","name":"Frankie Sweatshirt-L-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                  \n

                  • Light green crewneck sweatshirt.
                  • Hand pockets.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"frankie-sweatshirt-l-white-110","links":{},"stock":{"item_id":110,"product_id":110,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-l-white-110.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"143","_score":1,"_source":{"id":143,"sku":"MH06-L-Purple","name":"Stark Fundamental Hoodie-L-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                  \n

                  • Navy specked full zip hoodie.
                  • Ribbed cuffs, banded waist.
                  • Side pockets.
                  • Machine wash/dry.

                  ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stark-fundamental-hoodie-l-purple-143","links":{},"stock":{"item_id":143,"product_id":143,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-l-purple-143.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"206","_score":1,"_source":{"id":206,"sku":"MH10-L-Blue","name":"Mach Street Sweatshirt -L-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

                  From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                  \n

                  • Navy heather crewneck sweatshirt.
                  • LumaTech™ moisture-wicking fabric.
                  • Antimicrobial, odor-resistant.
                  • Zip hand pockets.
                  • Chafe-resistant flatlock seams.
                  • Rib-knit cuffs and hem.

                  ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mach-street-sweatshirt-l-blue-206","links":{},"stock":{"item_id":206,"product_id":206,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-l-blue-206.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"208","_score":1,"_source":{"id":208,"sku":"MH10-XL-Black","name":"Mach Street Sweatshirt -XL-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

                  From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                  \n

                  • Navy heather crewneck sweatshirt.
                  • LumaTech™ moisture-wicking fabric.
                  • Antimicrobial, odor-resistant.
                  • Zip hand pockets.
                  • Chafe-resistant flatlock seams.
                  • Rib-knit cuffs and hem.

                  ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mach-street-sweatshirt-xl-black-208","links":{},"stock":{"item_id":208,"product_id":208,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xl-black-208.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"222","_score":1,"_source":{"id":222,"sku":"MH11-L-Red","name":"Grayson Crewneck Sweatshirt -L-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

                  The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                  \n

                  • Cream crewneck sweatshirt with black accents.
                  • 80% cotton/20% polyester fleece.
                  • Patterned knit hood lining.
                  • Knit cuffs and waist.
                  • Pouch pocket.
                  • Curl edged seam detail

                  ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"grayson-crewneck-sweatshirt-l-red-222","links":{},"stock":{"item_id":222,"product_id":222,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-l-red-222.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"240","_score":1,"_source":{"id":240,"sku":"MH12-XL-Blue","name":"Ajax Full-Zip Sweatshirt -XL-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                  \n

                  • Mint striped full zip hoodie.
                  • 100% bonded polyester fleece.
                  • Pouch pocket.
                  • Rib cuffs and hem.
                  • Machine washable.

                  ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ajax-full-zip-sweatshirt-xl-blue-240","links":{},"stock":{"item_id":240,"product_id":240,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xl-blue-240.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"229","_score":1,"_source":{"id":229,"sku":"MH12-XS-Green","name":"Ajax Full-Zip Sweatshirt -XS-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                  \n

                  • Mint striped full zip hoodie.
                  • 100% bonded polyester fleece.
                  • Pouch pocket.
                  • Rib cuffs and hem.
                  • Machine washable.

                  ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ajax-full-zip-sweatshirt-xs-green-229","links":{},"stock":{"item_id":229,"product_id":229,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xs-green-229.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"166","_score":1,"_source":{"id":166,"sku":"MH08-XS-Red","name":"Oslo Trek Hoodie-XS-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                  \n

                  • Brown hoodie with black detail.
                  • Pullover.
                  • Adjustable drawstring hood.
                  • Ribbed cuffs/waistband.
                  • Machine wash/dry.

                  ","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"oslo-trek-hoodie-xs-red-166","links":{},"stock":{"item_id":166,"product_id":166,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xs-red-166.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"172","_score":1,"_source":{"id":172,"sku":"MH08-M-Red","name":"Oslo Trek Hoodie-M-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2019-03-22 08:35:33","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":36.900001,"max_price":36.900001,"max_regular_price":36.900001,"minimal_regular_price":36.900001,"special_price":"30.0000","minimal_price":36.900001,"regular_price":51.660001,"description":"

                  Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                  \r\n

                  • Brown hoodie with black detail.
                  • Pullover.
                  • Adjustable drawstring hood.
                  • Ribbed cuffs/waistband.
                  • Machine wash/dry.

                  ","special_from_date":"2019-03-22 08:35:33","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-m-red","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"169","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"oslo-trek-hoodie-m-red-172","links":{},"stock":{"item_id":172,"product_id":172,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-m-red-172.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"183","_score":1,"_source":{"id":183,"sku":"MH09-S-Blue","name":"Abominable Hoodie-S-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                  \n

                  • Blue heather hoodie.
                  • Relaxed fit.
                  • Moisture-wicking.
                  • Machine wash/dry.

                  ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"abominable-hoodie-s-blue-183","links":{},"stock":{"item_id":183,"product_id":183,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-s-blue-183.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"256","_score":1,"_source":{"id":256,"sku":"MH13-XL-Blue","name":"Marco Lightweight Active Hoodie-XL-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                  For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                  \n

                  • Light blue heather full zip hoodie.
                  • Fitted flatlock seams.
                  • Matching lining and drawstring.
                  • Machine wash/dry.

                  ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"marco-lightweight-active-hoodie-xl-blue-256","links":{},"stock":{"item_id":256,"product_id":256,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xl-blue-256.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"204","_score":1,"_source":{"id":204,"sku":"MH10-M-Red","name":"Mach Street Sweatshirt -M-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

                  From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                  \n

                  • Navy heather crewneck sweatshirt.
                  • LumaTech™ moisture-wicking fabric.
                  • Antimicrobial, odor-resistant.
                  • Zip hand pockets.
                  • Chafe-resistant flatlock seams.
                  • Rib-knit cuffs and hem.

                  ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mach-street-sweatshirt-m-red-204","links":{},"stock":{"item_id":204,"product_id":204,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-m-red-204.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"190","_score":1,"_source":{"id":190,"sku":"MH09-L-Green","name":"Abominable Hoodie-L-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                  \n

                  • Blue heather hoodie.
                  • Relaxed fit.
                  • Moisture-wicking.
                  • Machine wash/dry.

                  ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"abominable-hoodie-l-green-190","links":{},"stock":{"item_id":190,"product_id":190,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-l-green-190.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"295","_score":1,"_source":{"id":295,"sku":"MJ04-S-Black","name":"Kenobi Trail Jacket-S-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

                  Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                  \n

                  • Black 1/4 zip pullover with royal zipper.
                  • Adjustable hood and sleeve cuffs.
                  • Machine wash/air dry.

                  ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"kenobi-trail-jacket-s-black-295","links":{},"stock":{"item_id":295,"product_id":295,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-s-black-295.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"259","_score":1,"_source":{"id":259,"sku":"MH13","name":"Marco Lightweight Active Hoodie","attribute_set_id":9,"price":74,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":74,"description":"

                  For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                  \n

                  • Light blue heather full zip hoodie.
                  • Fitted flatlock seams.
                  • Matching lining and drawstring.
                  • Machine wash/dry.

                  ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"marco-lightweight-active-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,145],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"0","pattern":"197","climate":[202,204,205,208,210],"slug":"marco-lightweight-active-hoodie-259","links":{},"stock":{"item_id":259,"product_id":259,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH13-XS-Blue","id":244,"status":1,"name":"Marco Lightweight Active Hoodie-XS-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"50","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","url_key":"marco-lightweight-active-hoodie-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"MH13-XS-Green","id":245,"status":1,"name":"Marco Lightweight Active Hoodie-XS-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"53","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","url_key":"marco-lightweight-active-hoodie-xs-green","msrp_display_actual_price_type":"0"},{"sku":"MH13-XS-Lavender","id":246,"status":1,"name":"Marco Lightweight Active Hoodie-XS-Lavender","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"54","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","url_key":"marco-lightweight-active-hoodie-xs-lavender","msrp_display_actual_price_type":"0"},{"sku":"MH13-S-Blue","id":247,"status":1,"name":"Marco Lightweight Active Hoodie-S-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"50","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","url_key":"marco-lightweight-active-hoodie-s-blue","msrp_display_actual_price_type":"0"},{"sku":"MH13-S-Green","id":248,"status":1,"name":"Marco Lightweight Active Hoodie-S-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"53","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","url_key":"marco-lightweight-active-hoodie-s-green","msrp_display_actual_price_type":"0"},{"sku":"MH13-S-Lavender","id":249,"status":1,"name":"Marco Lightweight Active Hoodie-S-Lavender","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"54","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","url_key":"marco-lightweight-active-hoodie-s-lavender","msrp_display_actual_price_type":"0"},{"sku":"MH13-M-Blue","id":250,"status":1,"name":"Marco Lightweight Active Hoodie-M-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"50","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","url_key":"marco-lightweight-active-hoodie-m-blue","msrp_display_actual_price_type":"0"},{"sku":"MH13-M-Green","id":251,"status":1,"name":"Marco Lightweight Active Hoodie-M-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"53","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","url_key":"marco-lightweight-active-hoodie-m-green","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MH13-M-Lavender","id":252,"status":1,"name":"Marco Lightweight Active Hoodie-M-Lavender","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"54","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","url_key":"marco-lightweight-active-hoodie-m-lavender","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MH13-L-Blue","id":253,"status":1,"name":"Marco Lightweight Active Hoodie-L-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"50","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","url_key":"marco-lightweight-active-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MH13-L-Green","id":254,"status":1,"name":"Marco Lightweight Active Hoodie-L-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"53","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","url_key":"marco-lightweight-active-hoodie-l-green","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MH13-L-Lavender","id":255,"status":1,"name":"Marco Lightweight Active Hoodie-L-Lavender","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"54","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","url_key":"marco-lightweight-active-hoodie-l-lavender","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MH13-XL-Blue","id":256,"status":1,"name":"Marco Lightweight Active Hoodie-XL-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"50","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","url_key":"marco-lightweight-active-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MH13-XL-Green","id":257,"status":1,"name":"Marco Lightweight Active Hoodie-XL-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"53","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","url_key":"marco-lightweight-active-hoodie-xl-green","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MH13-XL-Lavender","id":258,"status":1,"name":"Marco Lightweight Active Hoodie-XL-Lavender","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"54","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","url_key":"marco-lightweight-active-hoodie-xl-lavender","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001}],"configurable_options":[{"id":27,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":54,"label":"Lavender"}],"product_id":259,"attribute_code":"color"},{"id":26,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":259,"attribute_code":"size"}],"color_options":[50,53,54],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-259.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"387","_score":1,"_source":{"id":387,"sku":"MJ11","name":"Typhon Performance Fleece-lined Jacket","attribute_set_id":9,"price":60,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":60,"description":"

                  Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                  \n

                  • Black full-zip flight jacket.
                  • Cocona® wicking fiber.
                  • Machine wash/dry.

                  ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"typhon-performance-fleece-lined-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,37,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[117,122,124,126,129],"pattern":"197","climate":[202,208,210,211],"slug":"typhon-performance-fleece-lined-jacket-387","links":{},"stock":{"item_id":387,"product_id":387,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ11-XS-Black","id":372,"status":1,"name":"Typhon Performance Fleece-lined Jacket-XS-Black","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"49","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-xs-black","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-XS-Green","id":373,"status":1,"name":"Typhon Performance Fleece-lined Jacket-XS-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"53","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-XS-Red","id":374,"status":1,"name":"Typhon Performance Fleece-lined Jacket-XS-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"58","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-xs-red","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-S-Black","id":375,"status":1,"name":"Typhon Performance Fleece-lined Jacket-S-Black","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"49","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-s-black","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-S-Green","id":376,"status":1,"name":"Typhon Performance Fleece-lined Jacket-S-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"53","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-s-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-S-Red","id":377,"status":1,"name":"Typhon Performance Fleece-lined Jacket-S-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"58","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-s-red","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-M-Black","id":378,"status":1,"name":"Typhon Performance Fleece-lined Jacket-M-Black","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"49","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-m-black","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-M-Green","id":379,"status":1,"name":"Typhon Performance Fleece-lined Jacket-M-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"53","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-m-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-M-Red","id":380,"status":1,"name":"Typhon Performance Fleece-lined Jacket-M-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"58","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-m-red","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-L-Black","id":381,"status":1,"name":"Typhon Performance Fleece-lined Jacket-L-Black","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"49","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-l-black","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-L-Green","id":382,"status":1,"name":"Typhon Performance Fleece-lined Jacket-L-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"53","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-l-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-L-Red","id":383,"status":1,"name":"Typhon Performance Fleece-lined Jacket-L-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"58","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-l-red","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-XL-Black","id":384,"status":1,"name":"Typhon Performance Fleece-lined Jacket-XL-Black","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"49","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-xl-black","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-XL-Green","id":385,"status":1,"name":"Typhon Performance Fleece-lined Jacket-XL-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"53","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MJ11-XL-Red","id":386,"status":1,"name":"Typhon Performance Fleece-lined Jacket-XL-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"58","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001}],"configurable_options":[{"id":43,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":387,"attribute_code":"color"},{"id":42,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":387,"attribute_code":"size"}],"color_options":[49,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-387.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"253","_score":1,"_source":{"id":253,"sku":"MH13-L-Blue","name":"Marco Lightweight Active Hoodie-L-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                  For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                  \n

                  • Light blue heather full zip hoodie.
                  • Fitted flatlock seams.
                  • Matching lining and drawstring.
                  • Machine wash/dry.

                  ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"marco-lightweight-active-hoodie-l-blue-253","links":{},"stock":{"item_id":253,"product_id":253,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-l-blue-253.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"254","_score":1,"_source":{"id":254,"sku":"MH13-L-Green","name":"Marco Lightweight Active Hoodie-L-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                  For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                  \n

                  • Light blue heather full zip hoodie.
                  • Fitted flatlock seams.
                  • Matching lining and drawstring.
                  • Machine wash/dry.

                  ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"marco-lightweight-active-hoodie-l-green-254","links":{},"stock":{"item_id":254,"product_id":254,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-l-green-254.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"260","_score":1,"_source":{"id":260,"sku":"MJ01-XS-Orange","name":"Beaumont Summit Kit-XS-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                  \n

                  • Yellow full zip rain jacket.
                  • Full-zip front.
                  • Stand-up collar.
                  • Elasticized cuffs.
                  • Machine wash/dry.

                  ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"beaumont-summit-kit-xs-orange-260","links":{},"stock":{"item_id":260,"product_id":260,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xs-orange-260.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"270","_score":1,"_source":{"id":270,"sku":"MJ01-L-Red","name":"Beaumont Summit Kit-L-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                  \n

                  • Yellow full zip rain jacket.
                  • Full-zip front.
                  • Stand-up collar.
                  • Elasticized cuffs.
                  • Machine wash/dry.

                  ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"beaumont-summit-kit-l-red-270","links":{},"stock":{"item_id":270,"product_id":270,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-l-red-270.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"264","_score":1,"_source":{"id":264,"sku":"MJ01-S-Red","name":"Beaumont Summit Kit-S-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                  \n

                  • Yellow full zip rain jacket.
                  • Full-zip front.
                  • Stand-up collar.
                  • Elasticized cuffs.
                  • Machine wash/dry.

                  ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"beaumont-summit-kit-s-red-264","links":{},"stock":{"item_id":264,"product_id":264,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-s-red-264.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"265","_score":1,"_source":{"id":265,"sku":"MJ01-S-Yellow","name":"Beaumont Summit Kit-S-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                  \n

                  • Yellow full zip rain jacket.
                  • Full-zip front.
                  • Stand-up collar.
                  • Elasticized cuffs.
                  • Machine wash/dry.

                  ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"beaumont-summit-kit-s-yellow-265","links":{},"stock":{"item_id":265,"product_id":265,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-s-yellow-265.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"300","_score":1,"_source":{"id":300,"sku":"MJ04-M-Purple","name":"Kenobi Trail Jacket-M-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

                  Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                  \n

                  • Black 1/4 zip pullover with royal zipper.
                  • Adjustable hood and sleeve cuffs.
                  • Machine wash/air dry.

                  ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"kenobi-trail-jacket-m-purple-300","links":{},"stock":{"item_id":300,"product_id":300,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-m-purple-300.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"302","_score":1,"_source":{"id":302,"sku":"MJ04-L-Blue","name":"Kenobi Trail Jacket-L-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

                  Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                  \n

                  • Black 1/4 zip pullover with royal zipper.
                  • Adjustable hood and sleeve cuffs.
                  • Machine wash/air dry.

                  ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"kenobi-trail-jacket-l-blue-302","links":{},"stock":{"item_id":302,"product_id":302,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-l-blue-302.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"313","_score":1,"_source":{"id":313,"sku":"MJ07-S-Yellow","name":"Orion Two-Tone Fitted Jacket-S-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

                  While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                  \n

                  • Red full zip fleece with gray insets.
                  • Double-knit construction.
                  • Full athletic cut.
                  • Set in sleeves.
                  • Front pouch pocket.

                  ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"orion-two-tone-fitted-jacket-s-yellow-313","links":{},"stock":{"item_id":313,"product_id":313,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-s-yellow-313.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"314","_score":1,"_source":{"id":314,"sku":"MJ07-M-Black","name":"Orion Two-Tone Fitted Jacket-M-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

                  While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                  \n

                  • Red full zip fleece with gray insets.
                  • Double-knit construction.
                  • Full athletic cut.
                  • Set in sleeves.
                  • Front pouch pocket.

                  ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"orion-two-tone-fitted-jacket-m-black-314","links":{},"stock":{"item_id":314,"product_id":314,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-m-black-314.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"322","_score":1,"_source":{"id":322,"sku":"MJ07-XL-Yellow","name":"Orion Two-Tone Fitted Jacket-XL-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

                  While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                  \n

                  • Red full zip fleece with gray insets.
                  • Double-knit construction.
                  • Full athletic cut.
                  • Set in sleeves.
                  • Front pouch pocket.

                  ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"orion-two-tone-fitted-jacket-xl-yellow-322","links":{},"stock":{"item_id":322,"product_id":322,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xl-yellow-322.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"343","_score":1,"_source":{"id":343,"sku":"MJ09-S-Blue","name":"Taurus Elements Shell-S-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

                  What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                  \n

                  • Yellow 1/4 zip pullover.
                  • Two chest pockets.
                  • Standard fit.
                  • Waterproof, breathable, seam sealed.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"taurus-elements-shell-s-blue-343","links":{},"stock":{"item_id":343,"product_id":343,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-s-blue-343.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"338","_score":1,"_source":{"id":338,"sku":"MJ08-XL-Green","name":"Lando Gym Jacket-XL-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

                  The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                  \n

                  • Gray polyester/spandex full zip jacket with orange lining.
                  • Right pocket device storage.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lando-gym-jacket-xl-green-338","links":{},"stock":{"item_id":338,"product_id":338,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xl-green-338.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"369","_score":1,"_source":{"id":369,"sku":"MJ10-XL-Orange","name":"Mars HeatTech™ Pullover-XL-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                  The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                  \n

                  • Red 1/4 zip pullover.
                  • Adjustable VELCRO® sleeve cuffs.
                  • Two hand pockets.
                  • Napoleon pocket.
                  • Machine wash/dry

                  ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mars-heattech-and-trade-pullover-xl-orange-369","links":{},"stock":{"item_id":369,"product_id":369,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xl-orange-369.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"385","_score":1,"_source":{"id":385,"sku":"MJ11-XL-Green","name":"Typhon Performance Fleece-lined Jacket-XL-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                  \n

                  • Black full-zip flight jacket.
                  • Cocona® wicking fiber.
                  • Machine wash/dry.

                  ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"typhon-performance-fleece-lined-jacket-xl-green-385","links":{},"stock":{"item_id":385,"product_id":385,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xl-green-385.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"386","_score":1,"_source":{"id":386,"sku":"MJ11-XL-Red","name":"Typhon Performance Fleece-lined Jacket-XL-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                  \n

                  • Black full-zip flight jacket.
                  • Cocona® wicking fiber.
                  • Machine wash/dry.

                  ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"typhon-performance-fleece-lined-jacket-xl-red-386","links":{},"stock":{"item_id":386,"product_id":386,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xl-red-386.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"397","_score":1,"_source":{"id":397,"sku":"MJ06-L-Blue","name":"Jupiter All-Weather Trainer -L-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

                  Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                  \n

                  • Relaxed fit.
                  • Hand pockets.
                  • Machine wash/dry.
                  • Reflective safety trim.

                  ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jupiter-all-weather-trainer-l-blue-397","links":{},"stock":{"item_id":397,"product_id":397,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-l-blue-397.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"400","_score":1,"_source":{"id":400,"sku":"MJ06-XL-Blue","name":"Jupiter All-Weather Trainer -XL-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

                  Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                  \n

                  • Relaxed fit.
                  • Hand pockets.
                  • Machine wash/dry.
                  • Reflective safety trim.

                  ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jupiter-all-weather-trainer-xl-blue-400","links":{},"stock":{"item_id":400,"product_id":400,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xl-blue-400.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"383","_score":1,"_source":{"id":383,"sku":"MJ11-L-Red","name":"Typhon Performance Fleece-lined Jacket-L-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                  \n

                  • Black full-zip flight jacket.
                  • Cocona® wicking fiber.
                  • Machine wash/dry.

                  ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"typhon-performance-fleece-lined-jacket-l-red-383","links":{},"stock":{"item_id":383,"product_id":383,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-l-red-383.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"365","_score":1,"_source":{"id":365,"sku":"MJ10-L-Black","name":"Mars HeatTech™ Pullover-L-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                  The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                  \n

                  • Red 1/4 zip pullover.
                  • Adjustable VELCRO® sleeve cuffs.
                  • Two hand pockets.
                  • Napoleon pocket.
                  • Machine wash/dry

                  ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mars-heattech-and-trade-pullover-l-black-365","links":{},"stock":{"item_id":365,"product_id":365,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-l-black-365.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"374","_score":1,"_source":{"id":374,"sku":"MJ11-XS-Red","name":"Typhon Performance Fleece-lined Jacket-XS-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                  \n

                  • Black full-zip flight jacket.
                  • Cocona® wicking fiber.
                  • Machine wash/dry.

                  ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"typhon-performance-fleece-lined-jacket-xs-red-374","links":{},"stock":{"item_id":374,"product_id":374,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xs-red-374.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"366","_score":1,"_source":{"id":366,"sku":"MJ10-L-Orange","name":"Mars HeatTech™ Pullover-L-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                  The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                  \n

                  • Red 1/4 zip pullover.
                  • Adjustable VELCRO® sleeve cuffs.
                  • Two hand pockets.
                  • Napoleon pocket.
                  • Machine wash/dry

                  ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mars-heattech-and-trade-pullover-l-orange-366","links":{},"stock":{"item_id":366,"product_id":366,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-l-orange-366.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"356","_score":1,"_source":{"id":356,"sku":"MJ10-XS-Black","name":"Mars HeatTech™ Pullover-XS-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                  The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                  \n

                  • Red 1/4 zip pullover.
                  • Adjustable VELCRO® sleeve cuffs.
                  • Two hand pockets.
                  • Napoleon pocket.
                  • Machine wash/dry

                  ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mars-heattech-and-trade-pullover-xs-black-356","links":{},"stock":{"item_id":356,"product_id":356,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xs-black-356.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"372","_score":1,"_source":{"id":372,"sku":"MJ11-XS-Black","name":"Typhon Performance Fleece-lined Jacket-XS-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                  \n

                  • Black full-zip flight jacket.
                  • Cocona® wicking fiber.
                  • Machine wash/dry.

                  ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"typhon-performance-fleece-lined-jacket-xs-black-372","links":{},"stock":{"item_id":372,"product_id":372,"stock_id":1,"qty":48,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xs-black-372.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"351","_score":1,"_source":{"id":351,"sku":"MJ09-L-Yellow","name":"Taurus Elements Shell-L-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

                  What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                  \n

                  • Yellow 1/4 zip pullover.
                  • Two chest pockets.
                  • Standard fit.
                  • Waterproof, breathable, seam sealed.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"taurus-elements-shell-l-yellow-351","links":{},"stock":{"item_id":351,"product_id":351,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-l-yellow-351.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"423","_score":1,"_source":{"id":423,"sku":"MJ12-S-Black","name":"Proteus Fitness Jackshirt-S-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                  \n

                  • 1/4 zip. Stand-up collar.
                  • Machine wash/dry.
                  • Quilted inner layer.

                  ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"proteus-fitness-jackshirt-s-black-423","links":{},"stock":{"item_id":423,"product_id":423,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-s-black-423.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"450","_score":1,"_source":{"id":450,"sku":"MS04-XL-Red","name":"Gobi HeatTec® Tee-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                  \n

                  • Orange micropolyester shirt.
                  • HeatTec® wicking fabric.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gobi-heattec-and-reg-tee-xl-red-450","links":{},"stock":{"item_id":450,"product_id":450,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xl-red-450.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"449","_score":1,"_source":{"id":449,"sku":"MS04-XL-Orange","name":"Gobi HeatTec® Tee-XL-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                  \n

                  • Orange micropolyester shirt.
                  • HeatTec® wicking fabric.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gobi-heattec-and-reg-tee-xl-orange-449","links":{},"stock":{"item_id":449,"product_id":449,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xl-orange-449.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"340","_score":1,"_source":{"id":340,"sku":"MJ09-XS-Blue","name":"Taurus Elements Shell-XS-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

                  What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                  \n

                  • Yellow 1/4 zip pullover.
                  • Two chest pockets.
                  • Standard fit.
                  • Waterproof, breathable, seam sealed.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"taurus-elements-shell-xs-blue-340","links":{},"stock":{"item_id":340,"product_id":340,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xs-blue-340.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"335","_score":1,"_source":{"id":335,"sku":"MJ08-L-Green","name":"Lando Gym Jacket-L-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

                  The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                  \n

                  • Gray polyester/spandex full zip jacket with orange lining.
                  • Right pocket device storage.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lando-gym-jacket-l-green-335","links":{},"stock":{"item_id":335,"product_id":335,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-l-green-335.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"332","_score":1,"_source":{"id":332,"sku":"MJ08-M-Green","name":"Lando Gym Jacket-M-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

                  The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                  \n

                  • Gray polyester/spandex full zip jacket with orange lining.
                  • Right pocket device storage.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lando-gym-jacket-m-green-332","links":{},"stock":{"item_id":332,"product_id":332,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-m-green-332.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"349","_score":1,"_source":{"id":349,"sku":"MJ09-L-Blue","name":"Taurus Elements Shell-L-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

                  What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                  \n

                  • Yellow 1/4 zip pullover.
                  • Two chest pockets.
                  • Standard fit.
                  • Waterproof, breathable, seam sealed.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"taurus-elements-shell-l-blue-349","links":{},"stock":{"item_id":349,"product_id":349,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-l-blue-349.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"415","_score":1,"_source":{"id":415,"sku":"MJ03-L-Red","name":"Montana Wind Jacket-L-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                  Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                  \n

                  Adjustable hood.
                  Split pocket.
                  Thumb holes.
                  Machine wash/hang to dry.

                  ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"montana-wind-jacket-l-red-415","links":{},"stock":{"item_id":415,"product_id":415,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-l-red-415.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"408","_score":1,"_source":{"id":408,"sku":"MJ03-S-Green","name":"Montana Wind Jacket-S-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                  Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                  \n

                  Adjustable hood.
                  Split pocket.
                  Thumb holes.
                  Machine wash/hang to dry.

                  ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"montana-wind-jacket-s-green-408","links":{},"stock":{"item_id":408,"product_id":408,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-s-green-408.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"407","_score":1,"_source":{"id":407,"sku":"MJ03-S-Black","name":"Montana Wind Jacket-S-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                  Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                  \n

                  Adjustable hood.
                  Split pocket.
                  Thumb holes.
                  Machine wash/hang to dry.

                  ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"montana-wind-jacket-s-black-407","links":{},"stock":{"item_id":407,"product_id":407,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-s-black-407.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"526","_score":1,"_source":{"id":526,"sku":"MS03-L-Green","name":"Balboa Persistence Tee-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                  \n

                  • Crew neckline.
                  • Semi-fitted.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"balboa-persistence-tee-l-green-526","links":{},"stock":{"item_id":526,"product_id":526,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-l-green-526.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"533","_score":1,"_source":{"id":533,"sku":"MS06-XS-Green","name":"Zoltan Gym Tee-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                  \n

                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoltan-gym-tee-xs-green-533","links":{},"stock":{"item_id":533,"product_id":533,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xs-green-533.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"531","_score":1,"_source":{"id":531,"sku":"MS03","name":"Balboa Persistence Tee","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

                  The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                  \n

                  • Crew neckline.
                  • Semi-fitted.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms03-black_main.jpg","small_image":"/m/s/ms03-black_main.jpg","thumbnail":"/m/s/ms03-black_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"balboa-persistence-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"balboa-persistence-tee-531","links":{},"stock":{"item_id":531,"product_id":531,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS03-XS-Gray","id":516,"status":1,"name":"Balboa Persistence Tee-XS-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"52","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","url_key":"balboa-persistence-tee-xs-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-XS-Green","id":517,"status":1,"name":"Balboa Persistence Tee-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"53","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","url_key":"balboa-persistence-tee-xs-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-XS-Orange","id":518,"status":1,"name":"Balboa Persistence Tee-XS-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"56","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","url_key":"balboa-persistence-tee-xs-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-S-Gray","id":519,"status":1,"name":"Balboa Persistence Tee-S-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"52","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","url_key":"balboa-persistence-tee-s-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-S-Green","id":520,"status":1,"name":"Balboa Persistence Tee-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"53","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","url_key":"balboa-persistence-tee-s-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-S-Orange","id":521,"status":1,"name":"Balboa Persistence Tee-S-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"56","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","url_key":"balboa-persistence-tee-s-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-M-Gray","id":522,"status":1,"name":"Balboa Persistence Tee-M-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"52","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","url_key":"balboa-persistence-tee-m-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-M-Green","id":523,"status":1,"name":"Balboa Persistence Tee-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"53","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","url_key":"balboa-persistence-tee-m-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-M-Orange","id":524,"status":1,"name":"Balboa Persistence Tee-M-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"56","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","url_key":"balboa-persistence-tee-m-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-L-Gray","id":525,"status":1,"name":"Balboa Persistence Tee-L-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"52","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","url_key":"balboa-persistence-tee-l-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-L-Green","id":526,"status":1,"name":"Balboa Persistence Tee-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"53","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","url_key":"balboa-persistence-tee-l-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-L-Orange","id":527,"status":1,"name":"Balboa Persistence Tee-L-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"56","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","url_key":"balboa-persistence-tee-l-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-XL-Gray","id":528,"status":1,"name":"Balboa Persistence Tee-XL-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"52","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","url_key":"balboa-persistence-tee-xl-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-XL-Green","id":529,"status":1,"name":"Balboa Persistence Tee-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"53","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","url_key":"balboa-persistence-tee-xl-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS03-XL-Orange","id":530,"status":1,"name":"Balboa Persistence Tee-XL-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"56","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","url_key":"balboa-persistence-tee-xl-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":61,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":531,"attribute_code":"color"},{"id":60,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":531,"attribute_code":"size"}],"color_options":[52,53,56],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-531.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"591","_score":1,"_source":{"id":591,"sku":"MS10-L-Red","name":"Logan HeatTec® Tee-L-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                  \n

                  • Semi-fitted.
                  • Crew neckline.
                  • Machine wash/tumble dry.

                  ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"logan-heattec-and-reg-tee-l-red-591","links":{},"stock":{"item_id":591,"product_id":591,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-l-red-591.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"595","_score":1,"_source":{"id":595,"sku":"MS10","name":"Logan HeatTec® Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":24,"description":"

                  Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                  \n

                  • Semi-fitted.
                  • Crew neckline.
                  • Machine wash/tumble dry.

                  ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"logan-heattec-reg-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,152],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"logan-heattec-and-reg-tee-595","links":{},"stock":{"item_id":595,"product_id":595,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS10-XS-Black","id":580,"status":1,"name":"Logan HeatTec® Tee-XS-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","url_key":"logan-heattec-reg-tee-xs-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-XS-Blue","id":581,"status":1,"name":"Logan HeatTec® Tee-XS-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","url_key":"logan-heattec-reg-tee-xs-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-XS-Red","id":582,"status":1,"name":"Logan HeatTec® Tee-XS-Red","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"58","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","url_key":"logan-heattec-reg-tee-xs-red","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-S-Black","id":583,"status":1,"name":"Logan HeatTec® Tee-S-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","url_key":"logan-heattec-reg-tee-s-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-S-Blue","id":584,"status":1,"name":"Logan HeatTec® Tee-S-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","url_key":"logan-heattec-reg-tee-s-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-S-Red","id":585,"status":1,"name":"Logan HeatTec® Tee-S-Red","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"58","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","url_key":"logan-heattec-reg-tee-s-red","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-M-Black","id":586,"status":1,"name":"Logan HeatTec® Tee-M-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","url_key":"logan-heattec-reg-tee-m-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-M-Blue","id":587,"status":1,"name":"Logan HeatTec® Tee-M-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","url_key":"logan-heattec-reg-tee-m-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-M-Red","id":588,"status":1,"name":"Logan HeatTec® Tee-M-Red","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"58","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","url_key":"logan-heattec-reg-tee-m-red","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-L-Black","id":589,"status":1,"name":"Logan HeatTec® Tee-L-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","url_key":"logan-heattec-reg-tee-l-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-L-Blue","id":590,"status":1,"name":"Logan HeatTec® Tee-L-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","url_key":"logan-heattec-reg-tee-l-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-L-Red","id":591,"status":1,"name":"Logan HeatTec® Tee-L-Red","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"58","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","url_key":"logan-heattec-reg-tee-l-red","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-XL-Black","id":592,"status":1,"name":"Logan HeatTec® Tee-XL-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","url_key":"logan-heattec-reg-tee-xl-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-XL-Blue","id":593,"status":1,"name":"Logan HeatTec® Tee-XL-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","url_key":"logan-heattec-reg-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS10-XL-Red","id":594,"status":1,"name":"Logan HeatTec® Tee-XL-Red","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"58","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","url_key":"logan-heattec-reg-tee-xl-red","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001}],"configurable_options":[{"id":69,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":595,"attribute_code":"color"},{"id":68,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":595,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-595.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"499","_score":1,"_source":{"id":499,"sku":"MS11","name":"Atomic Endurance Running Tee (V-neck)","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":28,"description":"

                  Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                  \n

                  • Lime heathered v-neck tee.
                  • Ultra-lightweight.
                  • Moisture-wicking Cocona® fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"atomic-endurance-running-tee-v-neck","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"atomic-endurance-running-tee-v-neck-499","links":{},"stock":{"item_id":499,"product_id":499,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS11-XS-Blue","id":484,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-XS-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-xs-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-XS-Green","id":485,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-XS-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"53","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-xs-green","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-XS-Yellow","id":486,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-XS-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"60","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-xs-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-S-Blue","id":487,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-S-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-s-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-S-Green","id":488,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-S-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"53","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-s-green","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-S-Yellow","id":489,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-S-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"60","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-s-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-M-Blue","id":490,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-M-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-m-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-M-Green","id":491,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-M-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"53","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-m-green","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-M-Yellow","id":492,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-M-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"60","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-m-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-L-Blue","id":493,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-L-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-l-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-L-Green","id":494,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-L-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"53","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-l-green","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-L-Yellow","id":495,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-L-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"60","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-l-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-XL-Blue","id":496,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-XL-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-xl-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-XL-Green","id":497,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-XL-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"53","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-xl-green","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS11-XL-Yellow","id":498,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-XL-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"60","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-xl-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001}],"configurable_options":[{"id":57,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":60,"label":"Yellow"}],"product_id":499,"attribute_code":"color"},{"id":56,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":499,"attribute_code":"size"}],"color_options":[50,53,60],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-499.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"452","_score":1,"_source":{"id":452,"sku":"MS05-XS-Black","name":"Helios EverCool™ Tee-XS-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                  \n

                  • Teal quick dry tee.
                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helios-evercool-and-trade-tee-xs-black-452","links":{},"stock":{"item_id":452,"product_id":452,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xs-black-452.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"458","_score":1,"_source":{"id":458,"sku":"MS05-M-Black","name":"Helios EverCool™ Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                  \n

                  • Teal quick dry tee.
                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helios-evercool-and-trade-tee-m-black-458","links":{},"stock":{"item_id":458,"product_id":458,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-m-black-458.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"478","_score":1,"_source":{"id":478,"sku":"MS09-L-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-L-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                  \n

                  • Royal polyester tee with black accents.
                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-crew-neck-l-blue-478","links":{},"stock":{"item_id":478,"product_id":478,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-l-blue-478.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"469","_score":1,"_source":{"id":469,"sku":"MS09-XS-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                  \n

                  • Royal polyester tee with black accents.
                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-crew-neck-xs-blue-469","links":{},"stock":{"item_id":469,"product_id":469,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xs-blue-469.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"470","_score":1,"_source":{"id":470,"sku":"MS09-XS-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                  \n

                  • Royal polyester tee with black accents.
                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-crew-neck-xs-red-470","links":{},"stock":{"item_id":470,"product_id":470,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xs-red-470.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"486","_score":1,"_source":{"id":486,"sku":"MS11-XS-Yellow","name":"Atomic Endurance Running Tee (V-neck)-XS-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                  \n

                  • Lime heathered v-neck tee.
                  • Ultra-lightweight.
                  • Moisture-wicking Cocona® fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-v-neck-xs-yellow-486","links":{},"stock":{"item_id":486,"product_id":486,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xs-yellow-486.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"468","_score":1,"_source":{"id":468,"sku":"MS09-XS-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                  \n

                  • Royal polyester tee with black accents.
                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-crew-neck-xs-black-468","links":{},"stock":{"item_id":468,"product_id":468,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xs-black-468.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"460","_score":1,"_source":{"id":460,"sku":"MS05-M-Purple","name":"Helios EverCool™ Tee-M-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                  \n

                  • Teal quick dry tee.
                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helios-evercool-and-trade-tee-m-purple-460","links":{},"stock":{"item_id":460,"product_id":460,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-m-purple-460.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"487","_score":1,"_source":{"id":487,"sku":"MS11-S-Blue","name":"Atomic Endurance Running Tee (V-neck)-S-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                  \n

                  • Lime heathered v-neck tee.
                  • Ultra-lightweight.
                  • Moisture-wicking Cocona® fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-v-neck-s-blue-487","links":{},"stock":{"item_id":487,"product_id":487,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-s-blue-487.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"555","_score":1,"_source":{"id":555,"sku":"MS01-M-Brown","name":"Aero Daily Fitness Tee-M-Brown","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                  \n

                  Relaxed fit.
                  Short-Sleeve.
                  Machine wash/dry.

                  ","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-m-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"aero-daily-fitness-tee-m-brown-555","links":{},"stock":{"item_id":555,"product_id":555,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms01-brown_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-m-brown-555.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"559","_score":1,"_source":{"id":559,"sku":"MS01-L-Yellow","name":"Aero Daily Fitness Tee-L-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                  \n

                  Relaxed fit.
                  Short-Sleeve.
                  Machine wash/dry.

                  ","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"aero-daily-fitness-tee-l-yellow-559","links":{},"stock":{"item_id":559,"product_id":559,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-l-yellow-559.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"575","_score":1,"_source":{"id":575,"sku":"MS02-L-Gray","name":"Ryker LumaTech™ Tee (V-neck)-L-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                  \n

                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-v-neck-l-gray-575","links":{},"stock":{"item_id":575,"product_id":575,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-l-gray-575.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"571","_score":1,"_source":{"id":571,"sku":"MS02-M-Blue","name":"Ryker LumaTech™ Tee (V-neck)-M-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                  \n

                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-v-neck-m-blue-571","links":{},"stock":{"item_id":571,"product_id":571,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-m-blue-571.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"572","_score":1,"_source":{"id":572,"sku":"MS02-M-Gray","name":"Ryker LumaTech™ Tee (V-neck)-M-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                  \n

                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-v-neck-m-gray-572","links":{},"stock":{"item_id":572,"product_id":572,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-m-gray-572.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"588","_score":1,"_source":{"id":588,"sku":"MS10-M-Red","name":"Logan HeatTec® Tee-M-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                  \n

                  • Semi-fitted.
                  • Crew neckline.
                  • Machine wash/tumble dry.

                  ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"logan-heattec-and-reg-tee-m-red-588","links":{},"stock":{"item_id":588,"product_id":588,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-m-red-588.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"582","_score":1,"_source":{"id":582,"sku":"MS10-XS-Red","name":"Logan HeatTec® Tee-XS-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                  \n

                  • Semi-fitted.
                  • Crew neckline.
                  • Machine wash/tumble dry.

                  ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"logan-heattec-and-reg-tee-xs-red-582","links":{},"stock":{"item_id":582,"product_id":582,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xs-red-582.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"512","_score":1,"_source":{"id":512,"sku":"MS12-XL-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                  \n

                  • Red polyester tee.
                  • Crew neckline.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-crew-neck-xl-black-512","links":{},"stock":{"item_id":512,"product_id":512,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xl-black-512.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"520","_score":1,"_source":{"id":520,"sku":"MS03-S-Green","name":"Balboa Persistence Tee-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                  \n

                  • Crew neckline.
                  • Semi-fitted.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"balboa-persistence-tee-s-green-520","links":{},"stock":{"item_id":520,"product_id":520,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-s-green-520.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"535","_score":1,"_source":{"id":535,"sku":"MS06-S-Blue","name":"Zoltan Gym Tee-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                  \n

                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoltan-gym-tee-s-blue-535","links":{},"stock":{"item_id":535,"product_id":535,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-s-blue-535.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"610","_score":1,"_source":{"id":610,"sku":"MS07-XL-White","name":"Deion Long-Sleeve EverCool™ Tee-XL-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                  \n

                  • Fitted.
                  • Contrast inner neck tape.
                  • Machine wash/dry.

                  ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"deion-long-sleeve-evercool-and-trade-tee-xl-white-610","links":{},"stock":{"item_id":610,"product_id":610,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xl-white-610.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"618","_score":1,"_source":{"id":618,"sku":"MS08-M-Black","name":"Strike Endurance Tee-M-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                  \n

                  • Loose fit.
                  • Ribbed cuffs/collar.
                  • Machine wash/dry.

                  ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"strike-endurance-tee-m-black-618","links":{},"stock":{"item_id":618,"product_id":618,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-m-black-618.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"491","_score":1,"_source":{"id":491,"sku":"MS11-M-Green","name":"Atomic Endurance Running Tee (V-neck)-M-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                  \n

                  • Lime heathered v-neck tee.
                  • Ultra-lightweight.
                  • Moisture-wicking Cocona® fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-v-neck-m-green-491","links":{},"stock":{"item_id":491,"product_id":491,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-m-green-491.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"485","_score":1,"_source":{"id":485,"sku":"MS11-XS-Green","name":"Atomic Endurance Running Tee (V-neck)-XS-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                  \n

                  • Lime heathered v-neck tee.
                  • Ultra-lightweight.
                  • Moisture-wicking Cocona® fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-v-neck-xs-green-485","links":{},"stock":{"item_id":485,"product_id":485,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xs-green-485.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"613","_score":1,"_source":{"id":613,"sku":"MS08-XS-Blue","name":"Strike Endurance Tee-XS-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                  \n

                  • Loose fit.
                  • Ribbed cuffs/collar.
                  • Machine wash/dry.

                  ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"strike-endurance-tee-xs-blue-613","links":{},"stock":{"item_id":613,"product_id":613,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xs-blue-613.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"789","_score":1,"_source":{"id":789,"sku":"MP05-34-Blue","name":"Kratos Gym Pant-34-Blue","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                  \n

                  • Navy cotton straight leg pants.
                  • Relaxed fit.
                  • 2 side-seam pockets.
                  • Internal zip pocket.
                  • Drawstring waist.
                  • Machine wash/dry.

                  ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"kratos-gym-pant-34-blue-789","links":{},"stock":{"item_id":789,"product_id":789,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-34-blue-789.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"787","_score":1,"_source":{"id":787,"sku":"MP05-33-Green","name":"Kratos Gym Pant-33-Green","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                  \n

                  • Navy cotton straight leg pants.
                  • Relaxed fit.
                  • 2 side-seam pockets.
                  • Internal zip pocket.
                  • Drawstring waist.
                  • Machine wash/dry.

                  ","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"kratos-gym-pant-33-green-787","links":{},"stock":{"item_id":787,"product_id":787,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-33-green-787.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"785","_score":1,"_source":{"id":785,"sku":"MP05-33-Black","name":"Kratos Gym Pant-33-Black","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                  \n

                  • Navy cotton straight leg pants.
                  • Relaxed fit.
                  • 2 side-seam pockets.
                  • Internal zip pocket.
                  • Drawstring waist.
                  • Machine wash/dry.

                  ","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"kratos-gym-pant-33-black-785","links":{},"stock":{"item_id":785,"product_id":785,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-33-black-785.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"792","_score":1,"_source":{"id":792,"sku":"MP05-36-Blue","name":"Kratos Gym Pant-36-Blue","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                  \n

                  • Navy cotton straight leg pants.
                  • Relaxed fit.
                  • 2 side-seam pockets.
                  • Internal zip pocket.
                  • Drawstring waist.
                  • Machine wash/dry.

                  ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"kratos-gym-pant-36-blue-792","links":{},"stock":{"item_id":792,"product_id":792,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-36-blue-792.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"786","_score":1,"_source":{"id":786,"sku":"MP05-33-Blue","name":"Kratos Gym Pant-33-Blue","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                  \n

                  • Navy cotton straight leg pants.
                  • Relaxed fit.
                  • 2 side-seam pockets.
                  • Internal zip pocket.
                  • Drawstring waist.
                  • Machine wash/dry.

                  ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"kratos-gym-pant-33-blue-786","links":{},"stock":{"item_id":786,"product_id":786,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-33-blue-786.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"784","_score":1,"_source":{"id":784,"sku":"MP05-32-Green","name":"Kratos Gym Pant-32-Green","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                  \n

                  • Navy cotton straight leg pants.
                  • Relaxed fit.
                  • 2 side-seam pockets.
                  • Internal zip pocket.
                  • Drawstring waist.
                  • Machine wash/dry.

                  ","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"kratos-gym-pant-32-green-784","links":{},"stock":{"item_id":784,"product_id":784,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-32-green-784.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"755","_score":1,"_source":{"id":755,"sku":"MP02","name":"Viktor LumaTech™ Pant","attribute_set_id":10,"price":46,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":46,"description":"

                  You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                  \n

                  • Dark gray polyester/spandex straight leg pants.
                  • Elastic waistband and internal drawstring.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"viktor-lumatech-trade-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38,151],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,115],"pattern":"197","climate":[203,204,211],"slug":"viktor-lumatech-and-trade-pant-755","links":{},"stock":{"item_id":755,"product_id":755,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP02-32-Blue","id":743,"status":1,"name":"Viktor LumaTech™ Pant-32-Blue","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"176","color":"50","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","url_key":"viktor-lumatech-trade-pant-32-blue","msrp_display_actual_price_type":"0"},{"sku":"MP02-32-Gray","id":744,"status":1,"name":"Viktor LumaTech™ Pant-32-Gray","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"176","color":"52","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","url_key":"viktor-lumatech-trade-pant-32-gray","msrp_display_actual_price_type":"0"},{"sku":"MP02-32-Red","id":745,"status":1,"name":"Viktor LumaTech™ Pant-32-Red","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"176","color":"58","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","url_key":"viktor-lumatech-trade-pant-32-red","msrp_display_actual_price_type":"0"},{"sku":"MP02-33-Blue","id":746,"status":1,"name":"Viktor LumaTech™ Pant-33-Blue","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"177","color":"50","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","url_key":"viktor-lumatech-trade-pant-33-blue","msrp_display_actual_price_type":"0"},{"sku":"MP02-33-Gray","id":747,"status":1,"name":"Viktor LumaTech™ Pant-33-Gray","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"177","color":"52","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","url_key":"viktor-lumatech-trade-pant-33-gray","msrp_display_actual_price_type":"0"},{"sku":"MP02-33-Red","id":748,"status":1,"name":"Viktor LumaTech™ Pant-33-Red","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"177","color":"58","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","url_key":"viktor-lumatech-trade-pant-33-red","msrp_display_actual_price_type":"0"},{"sku":"MP02-34-Blue","id":749,"status":1,"name":"Viktor LumaTech™ Pant-34-Blue","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"178","color":"50","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","url_key":"viktor-lumatech-trade-pant-34-blue","msrp_display_actual_price_type":"0"},{"sku":"MP02-34-Gray","id":750,"status":1,"name":"Viktor LumaTech™ Pant-34-Gray","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"178","color":"52","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","url_key":"viktor-lumatech-trade-pant-34-gray","msrp_display_actual_price_type":"0"},{"sku":"MP02-34-Red","id":751,"status":1,"name":"Viktor LumaTech™ Pant-34-Red","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"178","color":"58","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","url_key":"viktor-lumatech-trade-pant-34-red","msrp_display_actual_price_type":"0","final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001},{"sku":"MP02-36-Blue","id":752,"status":1,"name":"Viktor LumaTech™ Pant-36-Blue","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"179","color":"50","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","url_key":"viktor-lumatech-trade-pant-36-blue","msrp_display_actual_price_type":"0","final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001},{"sku":"MP02-36-Gray","id":753,"status":1,"name":"Viktor LumaTech™ Pant-36-Gray","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"179","color":"52","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","url_key":"viktor-lumatech-trade-pant-36-gray","msrp_display_actual_price_type":"0","final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001},{"sku":"MP02-36-Red","id":754,"status":1,"name":"Viktor LumaTech™ Pant-36-Red","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"179","color":"58","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","url_key":"viktor-lumatech-trade-pant-36-red","msrp_display_actual_price_type":"0","final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001}],"configurable_options":[{"id":101,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"}],"product_id":755,"attribute_code":"color"},{"id":100,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":755,"attribute_code":"size"}],"color_options":[50,52,58],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-755.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"705","_score":1,"_source":{"id":705,"sku":"MT08","name":"Sparta Gym Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

                  The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

                  \n

                  • Green polyester tank.
                  • Ultra lightweight.
                  • Naturally odor-resistant.
                  • Close-to-body athletic fit.
                  • Chafe-resistant flatlock seams.

                  ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sparta-gym-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"sparta-gym-tank-705","links":{},"stock":{"item_id":705,"product_id":705,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT08-XS-Green","id":700,"status":1,"name":"Sparta Gym Tank-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"53","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","url_key":"sparta-gym-tank-xs-green","msrp_display_actual_price_type":"0"},{"sku":"MT08-S-Green","id":701,"status":1,"name":"Sparta Gym Tank-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"53","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","url_key":"sparta-gym-tank-s-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT08-M-Green","id":702,"status":1,"name":"Sparta Gym Tank-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"53","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","url_key":"sparta-gym-tank-m-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT08-L-Green","id":703,"status":1,"name":"Sparta Gym Tank-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"53","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","url_key":"sparta-gym-tank-l-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT08-XL-Green","id":704,"status":1,"name":"Sparta Gym Tank-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"53","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","url_key":"sparta-gym-tank-xl-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":89,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"}],"product_id":705,"attribute_code":"color"},{"id":88,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":705,"attribute_code":"size"}],"color_options":[53],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-705.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"742","_score":1,"_source":{"id":742,"sku":"MP01","name":"Caesar Warm-Up Pant","attribute_set_id":10,"price":35,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2018-02-11 12:01:51","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28.290001,"max_price":28.290001,"max_regular_price":28.290001,"minimal_regular_price":28.290001,"special_price":null,"minimal_price":28.290001,"regular_price":35,"description":"

                  Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                  \r\n

                  • Light gray heather knit straight leg pants.
                  • Relaxed fit.
                  • Inseam: 32\".
                  • Machine wash/dry.
                  • CoolTech™ wicking fabric.

                  ","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","category_ids":[18,32,2],"options_container":"container2","required_options":"1","has_options":"1","url_key":"caesar-warm-up-pant","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":[156,145,146,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[204,208],"slug":"caesar-warm-up-pant-742","links":{},"stock":{"item_id":742,"product_id":742,"stock_id":1,"qty":1,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"configurable_children":[{"sku":"MP01-32-Black","id":730,"status":1,"name":"Caesar Warm-Up Pant-32-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"49","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","url_key":"caesar-warm-up-pant-32-black","msrp_display_actual_price_type":"0"},{"sku":"MP01-32-Gray","id":731,"status":1,"name":"Caesar Warm-Up Pant-32-Gray","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"52","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","url_key":"caesar-warm-up-pant-32-gray","special_price":28.290001,"special_from_date":"2018-02-11 12:06:30","msrp_display_actual_price_type":"0","final_price":28.290001,"max_price":28.290001,"max_regular_price":28.290001,"minimal_regular_price":28.290001,"minimal_price":28.290001,"regular_price":43.050001},{"sku":"MP01-32-Purple","id":732,"status":1,"name":"Caesar Warm-Up Pant-32-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"57","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","url_key":"caesar-warm-up-pant-32-purple","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MP01-33-Black","id":733,"status":1,"name":"Caesar Warm-Up Pant-33-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"49","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","url_key":"caesar-warm-up-pant-33-black","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MP01-33-Gray","id":734,"status":1,"name":"Caesar Warm-Up Pant-33-Gray","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"52","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","url_key":"caesar-warm-up-pant-33-gray","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MP01-33-Purple","id":735,"status":1,"name":"Caesar Warm-Up Pant-33-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"57","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","url_key":"caesar-warm-up-pant-33-purple","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MP01-34-Black","id":736,"status":1,"name":"Caesar Warm-Up Pant-34-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"49","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","url_key":"caesar-warm-up-pant-34-black","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MP01-34-Gray","id":737,"status":1,"name":"Caesar Warm-Up Pant-34-Gray","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"52","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","url_key":"caesar-warm-up-pant-34-gray","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MP01-34-Purple","id":738,"status":1,"name":"Caesar Warm-Up Pant-34-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"57","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","url_key":"caesar-warm-up-pant-34-purple","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MP01-36-Black","id":739,"status":1,"name":"Caesar Warm-Up Pant-36-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"49","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","url_key":"caesar-warm-up-pant-36-black","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MP01-36-Gray","id":740,"status":1,"name":"Caesar Warm-Up Pant-36-Gray","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"52","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","url_key":"caesar-warm-up-pant-36-gray","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MP01-36-Purple","id":741,"status":1,"name":"Caesar Warm-Up Pant-36-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"57","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","url_key":"caesar-warm-up-pant-36-purple","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001}],"configurable_options":[{"id":296,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"}],"product_id":742,"attribute_code":"color"},{"id":297,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":742,"attribute_code":"size"}],"color_options":[49,52,57],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-742.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"698","_score":1,"_source":{"id":698,"sku":"MT07-XL-Gray","name":"Argus All-Weather Tank-XL-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

                  The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

                  \n

                  • Dark gray polyester spandex tank.
                  • Reflective details for nighttime visibility.
                  • Stash pocket.
                  • Anti-chafe flatlock seams.

                  ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"argus-all-weather-tank-xl-gray-698","links":{},"stock":{"item_id":698,"product_id":698,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-xl-gray-698.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"696","_score":1,"_source":{"id":696,"sku":"MT07-M-Gray","name":"Argus All-Weather Tank-M-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

                  The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

                  \n

                  • Dark gray polyester spandex tank.
                  • Reflective details for nighttime visibility.
                  • Stash pocket.
                  • Anti-chafe flatlock seams.

                  ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"argus-all-weather-tank-m-gray-696","links":{},"stock":{"item_id":696,"product_id":696,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-m-gray-696.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"684","_score":1,"_source":{"id":684,"sku":"MT05-M-Blue","name":"Rocco Gym Tank-M-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

                  \n

                  • Light blue heather gray tank.
                  • Quick-drying, moisture-wicking.
                  • 4-way stretch construction.
                  • Flatlock seams prevent chafing.
                  • Mesh at back for breathability.
                  • 100% Polyester.
                  • UPF 50 protection.

                  ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"rocco-gym-tank-m-blue-684","links":{},"stock":{"item_id":684,"product_id":684,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-m-blue-684.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"687","_score":1,"_source":{"id":687,"sku":"MT05","name":"Rocco Gym Tank","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":24,"description":"

                  Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

                  \n

                  • Light blue heather gray tank.
                  • Quick-drying, moisture-wicking.
                  • 4-way stretch construction.
                  • Flatlock seams prevent chafing.
                  • Mesh at back for breathability.
                  • 100% Polyester.
                  • UPF 50 protection.

                  ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"rocco-gym-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"rocco-gym-tank-687","links":{},"stock":{"item_id":687,"product_id":687,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT05-XS-Blue","id":682,"status":1,"name":"Rocco Gym Tank-XS-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"50","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","url_key":"rocco-gym-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MT05-S-Blue","id":683,"status":1,"name":"Rocco Gym Tank-S-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"50","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","url_key":"rocco-gym-tank-s-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MT05-M-Blue","id":684,"status":1,"name":"Rocco Gym Tank-M-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"50","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","url_key":"rocco-gym-tank-m-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MT05-L-Blue","id":685,"status":1,"name":"Rocco Gym Tank-L-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"50","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","url_key":"rocco-gym-tank-l-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MT05-XL-Blue","id":686,"status":1,"name":"Rocco Gym Tank-XL-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"50","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","url_key":"rocco-gym-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001}],"configurable_options":[{"id":83,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"}],"product_id":687,"attribute_code":"color"},{"id":82,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":687,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-687.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"693","_score":1,"_source":{"id":693,"sku":"MT06","name":"Vulcan Weightlifting Tank","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":28,"description":"

                  The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

                  \n

                  • Black polyester spandex tank.
                  • 100% polyester.
                  • Freedom of movement.
                  • No-chafe seams.

                  ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"vulcan-weightlifting-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"vulcan-weightlifting-tank-693","links":{},"stock":{"item_id":693,"product_id":693,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT06-XS-Black","id":688,"status":1,"name":"Vulcan Weightlifting Tank-XS-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"49","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","url_key":"vulcan-weightlifting-tank-xs-black","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MT06-S-Black","id":689,"status":1,"name":"Vulcan Weightlifting Tank-S-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"49","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","url_key":"vulcan-weightlifting-tank-s-black","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MT06-M-Black","id":690,"status":1,"name":"Vulcan Weightlifting Tank-M-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"49","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","url_key":"vulcan-weightlifting-tank-m-black","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MT06-L-Black","id":691,"status":1,"name":"Vulcan Weightlifting Tank-L-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"49","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","url_key":"vulcan-weightlifting-tank-l-black","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MT06-XL-Black","id":692,"status":1,"name":"Vulcan Weightlifting Tank-XL-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"49","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","url_key":"vulcan-weightlifting-tank-xl-black","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001}],"configurable_options":[{"id":85,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"}],"product_id":693,"attribute_code":"color"},{"id":84,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":693,"attribute_code":"size"}],"color_options":[49],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-693.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"681","_score":1,"_source":{"id":681,"sku":"MT04","name":"Helios Endurance Tank","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":32,"description":"

                  When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

                  \n

                  • Blue heather tank with gray pocket.
                  • Contrast sides and back inserts.
                  • Self-fabric binding at neck and armholes.
                  • Machine wash/dry.

                  ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"helios-endurance-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"1","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"helios-endurance-tank-681","links":{},"stock":{"item_id":681,"product_id":681,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT04-XS-Blue","id":676,"status":1,"name":"Helios Endurance Tank-XS-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"50","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","url_key":"helios-endurance-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MT04-S-Blue","id":677,"status":1,"name":"Helios Endurance Tank-S-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"50","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","url_key":"helios-endurance-tank-s-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MT04-M-Blue","id":678,"status":1,"name":"Helios Endurance Tank-M-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"50","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","url_key":"helios-endurance-tank-m-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MT04-L-Blue","id":679,"status":1,"name":"Helios Endurance Tank-L-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"50","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","url_key":"helios-endurance-tank-l-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MT04-XL-Blue","id":680,"status":1,"name":"Helios Endurance Tank-XL-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"50","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","url_key":"helios-endurance-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001}],"configurable_options":[{"id":81,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"}],"product_id":681,"attribute_code":"color"},{"id":80,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":681,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-681.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"767","_score":1,"_source":{"id":767,"sku":"MP03-36-Red","name":"Geo Insulated Jogging Pant-36-Red","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                  \n

                  • Black polyester spandex pants with zipper pockets.
                  • Reflective safety accents.
                  • Loose fit.
                  • On-seam pockets.
                  • 8\" leg zips. 32\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"geo-insulated-jogging-pant-36-red-767","links":{},"stock":{"item_id":767,"product_id":767,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-36-red-767.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"752","_score":1,"_source":{"id":752,"sku":"MP02-36-Blue","name":"Viktor LumaTech™ Pant-36-Blue","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001,"description":"

                  You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                  \n

                  • Dark gray polyester/spandex straight leg pants.
                  • Elastic waistband and internal drawstring.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","color":"50","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"viktor-lumatech-and-trade-pant-36-blue-752","links":{},"stock":{"item_id":752,"product_id":752,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-36-blue-752.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"782","_score":1,"_source":{"id":782,"sku":"MP05-32-Black","name":"Kratos Gym Pant-32-Black","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                  \n

                  • Navy cotton straight leg pants.
                  • Relaxed fit.
                  • 2 side-seam pockets.
                  • Internal zip pocket.
                  • Drawstring waist.
                  • Machine wash/dry.

                  ","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"kratos-gym-pant-32-black-782","links":{},"stock":{"item_id":782,"product_id":782,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-32-black-782.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"754","_score":1,"_source":{"id":754,"sku":"MP02-36-Red","name":"Viktor LumaTech™ Pant-36-Red","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001,"description":"

                  You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                  \n

                  • Dark gray polyester/spandex straight leg pants.
                  • Elastic waistband and internal drawstring.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","color":"58","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"viktor-lumatech-and-trade-pant-36-red-754","links":{},"stock":{"item_id":754,"product_id":754,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-36-red-754.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"759","_score":1,"_source":{"id":759,"sku":"MP03-33-Blue","name":"Geo Insulated Jogging Pant-33-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                  \n

                  • Black polyester spandex pants with zipper pockets.
                  • Reflective safety accents.
                  • Loose fit.
                  • On-seam pockets.
                  • 8\" leg zips. 32\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"geo-insulated-jogging-pant-33-blue-759","links":{},"stock":{"item_id":759,"product_id":759,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-33-blue-759.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"778","_score":1,"_source":{"id":778,"sku":"MP04-36-Black","name":"Supernova Sport Pant-36-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                  \n

                  • Dark heather gray straight leg cotton pants.
                  • Relaxed fit.
                  • Internal drawstring.
                  • Machine wash/dry.

                  ","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"supernova-sport-pant-36-black-778","links":{},"stock":{"item_id":778,"product_id":778,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-36-black-778.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"773","_score":1,"_source":{"id":773,"sku":"MP04-33-Gray","name":"Supernova Sport Pant-33-Gray","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                  \n

                  • Dark heather gray straight leg cotton pants.
                  • Relaxed fit.
                  • Internal drawstring.
                  • Machine wash/dry.

                  ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"supernova-sport-pant-33-gray-773","links":{},"stock":{"item_id":773,"product_id":773,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-33-gray-773.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"713","_score":1,"_source":{"id":713,"sku":"MT10-S-Yellow","name":"Tiberius Gym Tank-S-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

                  Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

                  \n

                  • Yellow scoop neck cotton tank.
                  • Comfortable, relaxed fit.
                  • 55% Hemp / 45% Organic Cotton.
                  • Pesticide- and herbicide-free hemp.

                  ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tiberius-gym-tank-s-yellow-713","links":{},"stock":{"item_id":713,"product_id":713,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-s-yellow-713.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"701","_score":1,"_source":{"id":701,"sku":"MT08-S-Green","name":"Sparta Gym Tank-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

                  \n

                  • Green polyester tank.
                  • Ultra lightweight.
                  • Naturally odor-resistant.
                  • Close-to-body athletic fit.
                  • Chafe-resistant flatlock seams.

                  ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"sparta-gym-tank-s-green-701","links":{},"stock":{"item_id":701,"product_id":701,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-s-green-701.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"708","_score":1,"_source":{"id":708,"sku":"MT09-M-Blue","name":"Sinbad Fitness Tank-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

                  \n

                  • Teal polyester tank.
                  • Premium fit tank top.
                  • Ultra lightweight.
                  • Naturally odor-resistant.

                  ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"sinbad-fitness-tank-m-blue-708","links":{},"stock":{"item_id":708,"product_id":708,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-m-blue-708.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"731","_score":1,"_source":{"id":731,"sku":"MP01-32-Gray","name":"Caesar Warm-Up Pant-32-Gray","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2018-02-11 12:06:30","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28.290001,"max_price":28.290001,"max_regular_price":28.290001,"minimal_regular_price":28.290001,"special_price":"23.0000","minimal_price":28.290001,"regular_price":43.050001,"description":"

                  Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                  \r\n

                  • Light gray heather knit straight leg pants.
                  • Relaxed fit.
                  • Inseam: 32\".
                  • Machine wash/dry.
                  • CoolTech™ wicking fabric.

                  ","special_from_date":"2018-02-11 12:06:30","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-32-gray","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"176","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"caesar-warm-up-pant-32-gray-731","links":{},"stock":{"item_id":731,"product_id":731,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-32-gray-731.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"712","_score":1,"_source":{"id":712,"sku":"MT10-XS-Yellow","name":"Tiberius Gym Tank-XS-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

                  Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

                  \n

                  • Yellow scoop neck cotton tank.
                  • Comfortable, relaxed fit.
                  • 55% Hemp / 45% Organic Cotton.
                  • Pesticide- and herbicide-free hemp.

                  ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tiberius-gym-tank-xs-yellow-712","links":{},"stock":{"item_id":712,"product_id":712,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-xs-yellow-712.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"646","_score":1,"_source":{"id":646,"sku":"MT02-XS-White","name":"Tristan Endurance Tank-XS-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                  \n

                  • White performance tank.
                  • Stylish contrast stitching.
                  • Relaxed fit.
                  • Ribbed crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tristan-endurance-tank-xs-white-646","links":{},"stock":{"item_id":646,"product_id":646,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xs-white-646.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"617","_score":1,"_source":{"id":617,"sku":"MS08-S-Red","name":"Strike Endurance Tee-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                  \n

                  • Loose fit.
                  • Ribbed cuffs/collar.
                  • Machine wash/dry.

                  ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"strike-endurance-tee-s-red-617","links":{},"stock":{"item_id":617,"product_id":617,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-s-red-617.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"645","_score":1,"_source":{"id":645,"sku":"MT02-XS-Red","name":"Tristan Endurance Tank-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                  \n

                  • White performance tank.
                  • Stylish contrast stitching.
                  • Relaxed fit.
                  • Ribbed crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tristan-endurance-tank-xs-red-645","links":{},"stock":{"item_id":645,"product_id":645,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xs-red-645.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"644","_score":1,"_source":{"id":644,"sku":"MT02-XS-Gray","name":"Tristan Endurance Tank-XS-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                  \n

                  • White performance tank.
                  • Stylish contrast stitching.
                  • Relaxed fit.
                  • Ribbed crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tristan-endurance-tank-xs-gray-644","links":{},"stock":{"item_id":644,"product_id":644,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xs-gray-644.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"630","_score":1,"_source":{"id":630,"sku":"MT01-XS-Red","name":"Erikssen CoolTech™ Fitness Tank-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                  \n

                  • Red performance tank.
                  • Slight scoop neckline.
                  • Reflectivity.
                  • Machine wash/dry.

                  ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erikssen-cooltech-and-trade-fitness-tank-xs-red-630","links":{},"stock":{"item_id":630,"product_id":630,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xs-red-630.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"635","_score":1,"_source":{"id":635,"sku":"MT01-M-Orange","name":"Erikssen CoolTech™ Fitness Tank-M-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                  \n

                  • Red performance tank.
                  • Slight scoop neckline.
                  • Reflectivity.
                  • Machine wash/dry.

                  ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erikssen-cooltech-and-trade-fitness-tank-m-orange-635","links":{},"stock":{"item_id":635,"product_id":635,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-m-orange-635.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"651","_score":1,"_source":{"id":651,"sku":"MT02-M-Red","name":"Tristan Endurance Tank-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                  \n

                  • White performance tank.
                  • Stylish contrast stitching.
                  • Relaxed fit.
                  • Ribbed crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tristan-endurance-tank-m-red-651","links":{},"stock":{"item_id":651,"product_id":651,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-m-red-651.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"672","_score":1,"_source":{"id":672,"sku":"MT03-XL-Blue","name":"Primo Endurance Tank-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                  \n

                  • Red heather tank with gray pocket.
                  • Chafe-resistant flatlock seams.
                  • Relaxed fit.
                  • Contrast topstitching.
                  • Machine wash/dry.

                  ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"primo-endurance-tank-xl-blue-672","links":{},"stock":{"item_id":672,"product_id":672,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xl-blue-672.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"665","_score":1,"_source":{"id":665,"sku":"MT03-S-Yellow","name":"Primo Endurance Tank-S-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                  \n

                  • Red heather tank with gray pocket.
                  • Chafe-resistant flatlock seams.
                  • Relaxed fit.
                  • Contrast topstitching.
                  • Machine wash/dry.

                  ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"primo-endurance-tank-s-yellow-665","links":{},"stock":{"item_id":665,"product_id":665,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-s-yellow-665.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"656","_score":1,"_source":{"id":656,"sku":"MT02-XL-Gray","name":"Tristan Endurance Tank-XL-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                  \n

                  • White performance tank.
                  • Stylish contrast stitching.
                  • Relaxed fit.
                  • Ribbed crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tristan-endurance-tank-xl-gray-656","links":{},"stock":{"item_id":656,"product_id":656,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xl-gray-656.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"666","_score":1,"_source":{"id":666,"sku":"MT03-M-Blue","name":"Primo Endurance Tank-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                  \n

                  • Red heather tank with gray pocket.
                  • Chafe-resistant flatlock seams.
                  • Relaxed fit.
                  • Contrast topstitching.
                  • Machine wash/dry.

                  ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"primo-endurance-tank-m-blue-666","links":{},"stock":{"item_id":666,"product_id":666,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-m-blue-666.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"688","_score":1,"_source":{"id":688,"sku":"MT06-XS-Black","name":"Vulcan Weightlifting Tank-XS-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

                  \n

                  • Black polyester spandex tank.
                  • 100% polyester.
                  • Freedom of movement.
                  • No-chafe seams.

                  ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"vulcan-weightlifting-tank-xs-black-688","links":{},"stock":{"item_id":688,"product_id":688,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-xs-black-688.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"734","_score":1,"_source":{"id":734,"sku":"MP01-33-Gray","name":"Caesar Warm-Up Pant-33-Gray","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                  \n

                  • Light gray heather knit straight leg pants.
                  • Relaxed fit.
                  • Inseam: 32\".
                  • Machine wash/dry.
                  • CoolTech™ wicking fabric.

                  ","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"caesar-warm-up-pant-33-gray-734","links":{},"stock":{"item_id":734,"product_id":734,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-33-gray-734.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"728","_score":1,"_source":{"id":728,"sku":"MT12-XL-Blue","name":"Cassius Sparring Tank-XL-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

                  Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

                  \n

                  • Royal crewneck cotton tank.
                  • Contrast stitching.
                  • Self fabric binding at neckline.
                  • Slim fit.
                  • 96% Merino / 4% LYCRA®.

                  ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"cassius-sparring-tank-xl-blue-728","links":{},"stock":{"item_id":728,"product_id":728,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-xl-blue-728.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"741","_score":1,"_source":{"id":741,"sku":"MP01-36-Purple","name":"Caesar Warm-Up Pant-36-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                  \n

                  • Light gray heather knit straight leg pants.
                  • Relaxed fit.
                  • Inseam: 32\".
                  • Machine wash/dry.
                  • CoolTech™ wicking fabric.

                  ","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","color":"57","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"caesar-warm-up-pant-36-purple-741","links":{},"stock":{"item_id":741,"product_id":741,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-36-purple-741.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"898","_score":1,"_source":{"id":898,"sku":"MSH01","name":"Cobalt CoolTech™ Fitness Short","attribute_set_id":10,"price":44,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":44,"description":"

                  It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                  \n

                  • Light blue nylon shorts.
                  • Relaxed fit.
                  • 5\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cobalt-cooltech-trade-fitness-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,37,38,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[202,205,212],"slug":"cobalt-cooltech-and-trade-fitness-short-898","links":{},"stock":{"item_id":898,"product_id":898,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH01-32-Black","id":886,"status":1,"name":"Cobalt CoolTech™ Fitness Short-32-Black","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"176","color":"49","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-32-black","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"MSH01-32-Blue","id":887,"status":1,"name":"Cobalt CoolTech™ Fitness Short-32-Blue","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"176","color":"50","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-32-blue","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"MSH01-32-Red","id":888,"status":1,"name":"Cobalt CoolTech™ Fitness Short-32-Red","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"176","color":"58","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-32-red","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"MSH01-33-Black","id":889,"status":1,"name":"Cobalt CoolTech™ Fitness Short-33-Black","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"177","color":"49","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-33-black","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"MSH01-33-Blue","id":890,"status":1,"name":"Cobalt CoolTech™ Fitness Short-33-Blue","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"177","color":"50","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-33-blue","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"MSH01-33-Red","id":891,"status":1,"name":"Cobalt CoolTech™ Fitness Short-33-Red","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"177","color":"58","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-33-red","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"MSH01-34-Black","id":892,"status":1,"name":"Cobalt CoolTech™ Fitness Short-34-Black","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"178","color":"49","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-34-black","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"MSH01-34-Blue","id":893,"status":1,"name":"Cobalt CoolTech™ Fitness Short-34-Blue","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"178","color":"50","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-34-blue","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"MSH01-34-Red","id":894,"status":1,"name":"Cobalt CoolTech™ Fitness Short-34-Red","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"178","color":"58","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-34-red","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"MSH01-36-Black","id":895,"status":1,"name":"Cobalt CoolTech™ Fitness Short-36-Black","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"179","color":"49","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-36-black","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"MSH01-36-Blue","id":896,"status":1,"name":"Cobalt CoolTech™ Fitness Short-36-Blue","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"179","color":"50","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-36-blue","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"MSH01-36-Red","id":897,"status":1,"name":"Cobalt CoolTech™ Fitness Short-36-Red","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"179","color":"58","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-36-red","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001}],"configurable_options":[{"id":123,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":898,"attribute_code":"color"},{"id":122,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":898,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-898.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"803","_score":1,"_source":{"id":803,"sku":"MP06-34-Orange","name":"Mithra Warmup Pant-34-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                  \n

                  • Ankle zips.
                  • Elasticized waistband with draw cord.
                  • Dual hand pockets.
                  • Reflective elements for low-light safety.

                  ","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","color":"56","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-34-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"mithra-warmup-pant-34-orange-803","links":{},"stock":{"item_id":803,"product_id":803,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-34-orange-803.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"805","_score":1,"_source":{"id":805,"sku":"MP06-36-Green","name":"Mithra Warmup Pant-36-Green","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                  \n

                  • Ankle zips.
                  • Elasticized waistband with draw cord.
                  • Dual hand pockets.
                  • Reflective elements for low-light safety.

                  ","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","color":"53","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"mithra-warmup-pant-36-green-805","links":{},"stock":{"item_id":805,"product_id":805,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-36-green-805.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"827","_score":1,"_source":{"id":827,"sku":"MP08-34-Blue","name":"Zeppelin Yoga Pant-34-Blue","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001,"description":"

                  Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                  \n

                  • Smooth exterior for easy over-layering.
                  • Brushed fleece interior insulates and wicks.
                  • No-roll elastic waistband with inner drawstring.
                  • Chafe-resistant flatlock seams.

                  ","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"zeppelin-yoga-pant-34-blue-827","links":{},"stock":{"item_id":827,"product_id":827,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-34-blue-827.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"830","_score":1,"_source":{"id":830,"sku":"MP08-36-Blue","name":"Zeppelin Yoga Pant-36-Blue","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001,"description":"

                  Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                  \n

                  • Smooth exterior for easy over-layering.
                  • Brushed fleece interior insulates and wicks.
                  • No-roll elastic waistband with inner drawstring.
                  • Chafe-resistant flatlock seams.

                  ","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"zeppelin-yoga-pant-36-blue-830","links":{},"stock":{"item_id":830,"product_id":830,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-36-blue-830.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"829","_score":1,"_source":{"id":829,"sku":"MP08-34-Red","name":"Zeppelin Yoga Pant-34-Red","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001,"description":"

                  Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                  \n

                  • Smooth exterior for easy over-layering.
                  • Brushed fleece interior insulates and wicks.
                  • No-roll elastic waistband with inner drawstring.
                  • Chafe-resistant flatlock seams.

                  ","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"zeppelin-yoga-pant-34-red-829","links":{},"stock":{"item_id":829,"product_id":829,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-34-red-829.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"828","_score":1,"_source":{"id":828,"sku":"MP08-34-Green","name":"Zeppelin Yoga Pant-34-Green","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001,"description":"

                  Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                  \n

                  • Smooth exterior for easy over-layering.
                  • Brushed fleece interior insulates and wicks.
                  • No-roll elastic waistband with inner drawstring.
                  • Chafe-resistant flatlock seams.

                  ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"zeppelin-yoga-pant-34-green-828","links":{},"stock":{"item_id":828,"product_id":828,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-34-green-828.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"915","_score":1,"_source":{"id":915,"sku":"MSH03-36-Green","name":"Meteor Workout Short-36-Green","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                  Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                  \n

                  • Royal blue shorts with light blue accents.
                  • Interior drawstring waistband.
                  • 7\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"meteor-workout-short-36-green-915","links":{},"stock":{"item_id":915,"product_id":915,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-36-green-915.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"922","_score":1,"_source":{"id":922,"sku":"MSH04-33-Yellow","name":"Torque Power Short-33-Yellow","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                  Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                  \n

                  • Light gray shorts.
                  • Fitted design.
                  • Elastic waistband.
                  • Flat-seam construction.
                  • 7\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","color":"60","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-33-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"torque-power-short-33-yellow-922","links":{},"stock":{"item_id":922,"product_id":922,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-33-yellow-922.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"930","_score":1,"_source":{"id":930,"sku":"MSH05-32-Black","name":"Hawkeye Yoga Short-32-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                  \n

                  • Dark gray shorts with red accents.
                  • 92% Organic Cotton 8% Spandex.
                  • Breathable stretch organic cotton.
                  • Medium=8.0\" (21.0cm) inseam.

                  ","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"hawkeye-yoga-short-32-black-930","links":{},"stock":{"item_id":930,"product_id":930,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-32-black-930.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"933","_score":1,"_source":{"id":933,"sku":"MSH05-33-Black","name":"Hawkeye Yoga Short-33-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                  \n

                  • Dark gray shorts with red accents.
                  • 92% Organic Cotton 8% Spandex.
                  • Breathable stretch organic cotton.
                  • Medium=8.0\" (21.0cm) inseam.

                  ","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"hawkeye-yoga-short-33-black-933","links":{},"stock":{"item_id":933,"product_id":933,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-33-black-933.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"935","_score":1,"_source":{"id":935,"sku":"MSH05-33-Gray","name":"Hawkeye Yoga Short-33-Gray","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                  \n

                  • Dark gray shorts with red accents.
                  • 92% Organic Cotton 8% Spandex.
                  • Breathable stretch organic cotton.
                  • Medium=8.0\" (21.0cm) inseam.

                  ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","color":"52","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"hawkeye-yoga-short-33-gray-935","links":{},"stock":{"item_id":935,"product_id":935,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-33-gray-935.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"836","_score":1,"_source":{"id":836,"sku":"MP09-32-Red","name":"Livingston All-Purpose Tight-32-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                  It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                  \n

                  • Breathable stretch organic cotton/spandex.
                  • Compression fit
                  • Hidden key pocket
                  • Elastic waist with internal drawcord.

                  ","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","color":"58","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"livingston-all-purpose-tight-32-red-836","links":{},"stock":{"item_id":836,"product_id":836,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-32-red-836.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"844","_score":1,"_source":{"id":844,"sku":"MP09-36-Blue","name":"Livingston All-Purpose Tight-36-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                  It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                  \n

                  • Breathable stretch organic cotton/spandex.
                  • Compression fit
                  • Hidden key pocket
                  • Elastic waist with internal drawcord.

                  ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","color":"50","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"livingston-all-purpose-tight-36-blue-844","links":{},"stock":{"item_id":844,"product_id":844,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-36-blue-844.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"847","_score":1,"_source":{"id":847,"sku":"MP10-32-Black","name":"Orestes Yoga Pant -32-Black","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                  The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                  \n

                  • A yoga essential.
                  • Breathable stretch organic cotton/spandex.
                  • Standard Fit.

                  ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","color":"49","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-yoga-pant-32-black-847","links":{},"stock":{"item_id":847,"product_id":847,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-32-black-847.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"840","_score":1,"_source":{"id":840,"sku":"MP09-34-Black","name":"Livingston All-Purpose Tight-34-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                  It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                  \n

                  • Breathable stretch organic cotton/spandex.
                  • Compression fit
                  • Hidden key pocket
                  • Elastic waist with internal drawcord.

                  ","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","color":"49","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"livingston-all-purpose-tight-34-black-840","links":{},"stock":{"item_id":840,"product_id":840,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-34-black-840.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"895","_score":1,"_source":{"id":895,"sku":"MSH01-36-Black","name":"Cobalt CoolTech™ Fitness Short-36-Black","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

                  It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                  \n

                  • Light blue nylon shorts.
                  • Relaxed fit.
                  • 5\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","color":"49","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cobalt-cooltech-and-trade-fitness-short-36-black-895","links":{},"stock":{"item_id":895,"product_id":895,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-36-black-895.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"880","_score":1,"_source":{"id":880,"sku":"MP12-34-Blue","name":"Cronus Yoga Pant -34-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                  \n

                  • Drawstring waist.
                  • Loose, straight-leg fit.
                  • Lightweight cotton-recycled blend.
                  • Front pockets with stitching detail.
                  • Elastic ankle.

                  ","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","color":"50","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cronus-yoga-pant-34-blue-880","links":{},"stock":{"item_id":880,"product_id":880,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-34-blue-880.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"886","_score":1,"_source":{"id":886,"sku":"MSH01-32-Black","name":"Cobalt CoolTech™ Fitness Short-32-Black","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

                  It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                  \n

                  • Light blue nylon shorts.
                  • Relaxed fit.
                  • 5\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","color":"49","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cobalt-cooltech-and-trade-fitness-short-32-black-886","links":{},"stock":{"item_id":886,"product_id":886,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-32-black-886.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"860","_score":1,"_source":{"id":860,"sku":"MP11-32-Blue","name":"Aether Gym Pant -32-Blue","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                  The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                  \n

                  • Pants/shorts convertible.
                  • Lightweight moisture wicking.
                  • Water repellent.
                  • Belted waist.

                  ","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"aether-gym-pant-32-blue-860","links":{},"stock":{"item_id":860,"product_id":860,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-32-blue-860.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"865","_score":1,"_source":{"id":865,"sku":"MP11-33-Green","name":"Aether Gym Pant -33-Green","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                  The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                  \n

                  • Pants/shorts convertible.
                  • Lightweight moisture wicking.
                  • Water repellent.
                  • Belted waist.

                  ","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"aether-gym-pant-33-green-865","links":{},"stock":{"item_id":865,"product_id":865,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-33-green-865.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"879","_score":1,"_source":{"id":879,"sku":"MP12-34-Black","name":"Cronus Yoga Pant -34-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                  \n

                  • Drawstring waist.
                  • Loose, straight-leg fit.
                  • Lightweight cotton-recycled blend.
                  • Front pockets with stitching detail.
                  • Elastic ankle.

                  ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cronus-yoga-pant-34-black-879","links":{},"stock":{"item_id":879,"product_id":879,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-34-black-879.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"806","_score":1,"_source":{"id":806,"sku":"MP06-36-Orange","name":"Mithra Warmup Pant-36-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                  \n

                  • Ankle zips.
                  • Elasticized waistband with draw cord.
                  • Dual hand pockets.
                  • Reflective elements for low-light safety.

                  ","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","color":"56","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-36-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"mithra-warmup-pant-36-orange-806","links":{},"stock":{"item_id":806,"product_id":806,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-36-orange-806.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"808","_score":1,"_source":{"id":808,"sku":"MP07-32-Black","name":"Thorpe Track Pant-32-Black","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                  Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                  \n

                  • Moisture transfer properties.
                  • 7% stretch.
                  • Reflective safety trim.
                  • Elastic drawcord waist.

                  ","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"thorpe-track-pant-32-black-808","links":{},"stock":{"item_id":808,"product_id":808,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-32-black-808.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"855","_score":1,"_source":{"id":855,"sku":"MP10-34-Green","name":"Orestes Yoga Pant -34-Green","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                  The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                  \n

                  • A yoga essential.
                  • Breathable stretch organic cotton/spandex.
                  • Standard Fit.

                  ","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-yoga-pant-34-green-855","links":{},"stock":{"item_id":855,"product_id":855,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-34-green-855.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"852","_score":1,"_source":{"id":852,"sku":"MP10-33-Green","name":"Orestes Yoga Pant -33-Green","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                  The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                  \n

                  • A yoga essential.
                  • Breathable stretch organic cotton/spandex.
                  • Standard Fit.

                  ","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-yoga-pant-33-green-852","links":{},"stock":{"item_id":852,"product_id":852,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-33-green-852.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"900","_score":1,"_source":{"id":900,"sku":"MSH02-33-Black","name":"Apollo Running Short-33-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                  Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

                  \n

                  • Black shorts with green accents.
                  • Side pockets.
                  • 4\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"apollo-running-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"apollo-running-short-33-black-900","links":{},"stock":{"item_id":900,"product_id":900,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-33-black-900.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1033","_score":1,"_source":{"id":1033,"sku":"MSH12","name":"Pierce Gym Short","attribute_set_id":10,"price":27,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":27,"description":"

                  The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                  \n

                  • Dark red cotton shorts.
                  • 87% Supplex, 13% Lycra.
                  • Adjustable drawstring waistband.
                  • Built-in mesh brief.
                  • Machine wash cold, tumble dry low.

                  ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"pierce-gym-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,36,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_bottom":[116,105,108,114],"pattern":"197","climate":[205,212,209],"slug":"pierce-gym-short-1033","links":{},"stock":{"item_id":1033,"product_id":1033,"stock_id":1,"qty":7,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH12-32-Black","id":1021,"status":1,"name":"Pierce Gym Short-32-Black","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"176","color":"49","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","url_key":"pierce-gym-short-32-black","msrp_display_actual_price_type":"0","final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001},{"sku":"MSH12-32-Gray","id":1022,"status":1,"name":"Pierce Gym Short-32-Gray","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"176","color":"52","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","url_key":"pierce-gym-short-32-gray","msrp_display_actual_price_type":"0","final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001},{"sku":"MSH12-32-Red","id":1023,"status":1,"name":"Pierce Gym Short-32-Red","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"176","color":"58","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","url_key":"pierce-gym-short-32-red","msrp_display_actual_price_type":"0","final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001},{"sku":"MSH12-33-Black","id":1024,"status":1,"name":"Pierce Gym Short-33-Black","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"177","color":"49","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","url_key":"pierce-gym-short-33-black","msrp_display_actual_price_type":"0","final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001},{"sku":"MSH12-33-Gray","id":1025,"status":1,"name":"Pierce Gym Short-33-Gray","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"177","color":"52","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","url_key":"pierce-gym-short-33-gray","msrp_display_actual_price_type":"0","final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001},{"sku":"MSH12-33-Red","id":1026,"status":1,"name":"Pierce Gym Short-33-Red","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"177","color":"58","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","url_key":"pierce-gym-short-33-red","msrp_display_actual_price_type":"0","final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001},{"sku":"MSH12-34-Black","id":1027,"status":1,"name":"Pierce Gym Short-34-Black","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"178","color":"49","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","url_key":"pierce-gym-short-34-black","msrp_display_actual_price_type":"0","final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001},{"sku":"MSH12-34-Gray","id":1028,"status":1,"name":"Pierce Gym Short-34-Gray","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"178","color":"52","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","url_key":"pierce-gym-short-34-gray","msrp_display_actual_price_type":"0","final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001},{"sku":"MSH12-34-Red","id":1029,"status":1,"name":"Pierce Gym Short-34-Red","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"178","color":"58","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","url_key":"pierce-gym-short-34-red","msrp_display_actual_price_type":"0","final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001},{"sku":"MSH12-36-Black","id":1030,"status":1,"name":"Pierce Gym Short-36-Black","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"179","color":"49","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","url_key":"pierce-gym-short-36-black","msrp_display_actual_price_type":"0","final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001},{"sku":"MSH12-36-Gray","id":1031,"status":1,"name":"Pierce Gym Short-36-Gray","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"179","color":"52","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","url_key":"pierce-gym-short-36-gray","msrp_display_actual_price_type":"0","final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001},{"sku":"MSH12-36-Red","id":1032,"status":1,"name":"Pierce Gym Short-36-Red","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"179","color":"58","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","url_key":"pierce-gym-short-36-red","msrp_display_actual_price_type":"0","final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001}],"configurable_options":[{"id":145,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"}],"product_id":1033,"attribute_code":"color"},{"id":144,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":1033,"attribute_code":"size"}],"color_options":[49,52,58],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-1033.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1007","_score":1,"_source":{"id":1007,"sku":"MSH10","name":"Sol Active Short","attribute_set_id":10,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":32,"description":"

                  You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                  \n

                  • Light blue jersey shorts with mesh detail.
                  • 87% Spandex 13% Lycra.
                  • Machine wash cold, tumble dry low.
                  • Superior performance fabric.
                  • Flat-lock seams.

                  ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sol-active-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[205,212,209],"slug":"sol-active-short-1007","links":{},"stock":{"item_id":1007,"product_id":1007,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH10-32-Blue","id":995,"status":1,"name":"Sol Active Short-32-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"176","color":"50","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","url_key":"sol-active-short-32-blue","msrp_display_actual_price_type":"0"},{"sku":"MSH10-32-Green","id":996,"status":1,"name":"Sol Active Short-32-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"176","color":"53","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","url_key":"sol-active-short-32-green","msrp_display_actual_price_type":"0"},{"sku":"MSH10-32-Purple","id":997,"status":1,"name":"Sol Active Short-32-Purple","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"176","color":"57","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","url_key":"sol-active-short-32-purple","msrp_display_actual_price_type":"0"},{"sku":"MSH10-33-Blue","id":998,"status":1,"name":"Sol Active Short-33-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"177","color":"50","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","url_key":"sol-active-short-33-blue","msrp_display_actual_price_type":"0"},{"sku":"MSH10-33-Green","id":999,"status":1,"name":"Sol Active Short-33-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"177","color":"53","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","url_key":"sol-active-short-33-green","msrp_display_actual_price_type":"0"},{"sku":"MSH10-33-Purple","id":1000,"status":1,"name":"Sol Active Short-33-Purple","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"177","color":"57","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","url_key":"sol-active-short-33-purple","msrp_display_actual_price_type":"0"},{"sku":"MSH10-34-Blue","id":1001,"status":1,"name":"Sol Active Short-34-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"178","color":"50","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","url_key":"sol-active-short-34-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MSH10-34-Green","id":1002,"status":1,"name":"Sol Active Short-34-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"178","color":"53","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","url_key":"sol-active-short-34-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MSH10-34-Purple","id":1003,"status":1,"name":"Sol Active Short-34-Purple","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"178","color":"57","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","url_key":"sol-active-short-34-purple","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MSH10-36-Blue","id":1004,"status":1,"name":"Sol Active Short-36-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"179","color":"50","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","url_key":"sol-active-short-36-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MSH10-36-Green","id":1005,"status":1,"name":"Sol Active Short-36-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"179","color":"53","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","url_key":"sol-active-short-36-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MSH10-36-Purple","id":1006,"status":1,"name":"Sol Active Short-36-Purple","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"179","color":"57","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","url_key":"sol-active-short-36-purple","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001}],"configurable_options":[{"id":141,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"}],"product_id":1007,"attribute_code":"color"},{"id":140,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":1007,"attribute_code":"size"}],"color_options":[50,53,57],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-1007.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"944","_score":1,"_source":{"id":944,"sku":"MSH06-32-Gray","name":"Lono Yoga Short-32-Gray","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                  \n

                  • Dark gray shorts with mesh accents.
                  • Ultra flexible four-way stretch.
                  • Flatlock seams and waistband.
                  • Two pockets, phony fly.
                  • Nylon/Lycra outer, Polyester/Lycra inner.

                  ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","color":"52","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"lono-yoga-short-32-gray-944","links":{},"stock":{"item_id":944,"product_id":944,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-32-gray-944.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"948","_score":1,"_source":{"id":948,"sku":"MSH06-33-Red","name":"Lono Yoga Short-33-Red","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                  \n

                  • Dark gray shorts with mesh accents.
                  • Ultra flexible four-way stretch.
                  • Flatlock seams and waistband.
                  • Two pockets, phony fly.
                  • Nylon/Lycra outer, Polyester/Lycra inner.

                  ","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","color":"58","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"lono-yoga-short-33-red-948","links":{},"stock":{"item_id":948,"product_id":948,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-33-red-948.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"942","_score":1,"_source":{"id":942,"sku":"MSH05","name":"Hawkeye Yoga Short","attribute_set_id":10,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

                  What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                  \n

                  • Dark gray shorts with red accents.
                  • 92% Organic Cotton 8% Spandex.
                  • Breathable stretch organic cotton.
                  • Medium=8.0\" (21.0cm) inseam.

                  ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hawkeye-yoga-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,158,38,39,159],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":[197,199],"climate":[205,208,209],"slug":"hawkeye-yoga-short-942","links":{},"stock":{"item_id":942,"product_id":942,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH05-32-Black","id":930,"status":1,"name":"Hawkeye Yoga Short-32-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"49","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","url_key":"hawkeye-yoga-short-32-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MSH05-32-Blue","id":931,"status":1,"name":"Hawkeye Yoga Short-32-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"50","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","url_key":"hawkeye-yoga-short-32-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MSH05-32-Gray","id":932,"status":1,"name":"Hawkeye Yoga Short-32-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"52","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","url_key":"hawkeye-yoga-short-32-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MSH05-33-Black","id":933,"status":1,"name":"Hawkeye Yoga Short-33-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"49","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","url_key":"hawkeye-yoga-short-33-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MSH05-33-Blue","id":934,"status":1,"name":"Hawkeye Yoga Short-33-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"50","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","url_key":"hawkeye-yoga-short-33-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MSH05-33-Gray","id":935,"status":1,"name":"Hawkeye Yoga Short-33-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"52","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","url_key":"hawkeye-yoga-short-33-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MSH05-34-Black","id":936,"status":1,"name":"Hawkeye Yoga Short-34-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"49","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","url_key":"hawkeye-yoga-short-34-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MSH05-34-Blue","id":937,"status":1,"name":"Hawkeye Yoga Short-34-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"50","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","url_key":"hawkeye-yoga-short-34-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MSH05-34-Gray","id":938,"status":1,"name":"Hawkeye Yoga Short-34-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"52","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","url_key":"hawkeye-yoga-short-34-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MSH05-36-Black","id":939,"status":1,"name":"Hawkeye Yoga Short-36-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"49","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","url_key":"hawkeye-yoga-short-36-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MSH05-36-Blue","id":940,"status":1,"name":"Hawkeye Yoga Short-36-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"50","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","url_key":"hawkeye-yoga-short-36-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MSH05-36-Gray","id":941,"status":1,"name":"Hawkeye Yoga Short-36-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"52","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","url_key":"hawkeye-yoga-short-36-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":131,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"}],"product_id":942,"attribute_code":"color"},{"id":130,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":942,"attribute_code":"size"}],"color_options":[49,50,52],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-942.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"994","_score":1,"_source":{"id":994,"sku":"MSH09","name":"Troy Yoga Short","attribute_set_id":10,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":24,"description":"

                  The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                  \n

                  • Navy polyester pinstripe shorts.
                  • Woven fabric with moderate stretch.
                  • 62% cotton/34% nylon/4% spandex.
                  • LumaTech™ lining.

                  ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"troy-yoga-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,37,148,151],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[205,212,209],"slug":"troy-yoga-short-994","links":{},"stock":{"item_id":994,"product_id":994,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH09-32-Black","id":982,"status":1,"name":"Troy Yoga Short-32-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"49","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","url_key":"troy-yoga-short-32-black","msrp_display_actual_price_type":"0"},{"sku":"MSH09-32-Blue","id":983,"status":1,"name":"Troy Yoga Short-32-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"50","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","url_key":"troy-yoga-short-32-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MSH09-32-Green","id":984,"status":1,"name":"Troy Yoga Short-32-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"53","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","url_key":"troy-yoga-short-32-green","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MSH09-33-Black","id":985,"status":1,"name":"Troy Yoga Short-33-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"49","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","url_key":"troy-yoga-short-33-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MSH09-33-Blue","id":986,"status":1,"name":"Troy Yoga Short-33-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"50","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","url_key":"troy-yoga-short-33-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MSH09-33-Green","id":987,"status":1,"name":"Troy Yoga Short-33-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"53","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","url_key":"troy-yoga-short-33-green","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MSH09-34-Black","id":988,"status":1,"name":"Troy Yoga Short-34-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"49","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","url_key":"troy-yoga-short-34-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MSH09-34-Blue","id":989,"status":1,"name":"Troy Yoga Short-34-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"50","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","url_key":"troy-yoga-short-34-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MSH09-34-Green","id":990,"status":1,"name":"Troy Yoga Short-34-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"53","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","url_key":"troy-yoga-short-34-green","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MSH09-36-Black","id":991,"status":1,"name":"Troy Yoga Short-36-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"49","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","url_key":"troy-yoga-short-36-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MSH09-36-Blue","id":992,"status":1,"name":"Troy Yoga Short-36-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"50","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","url_key":"troy-yoga-short-36-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MSH09-36-Green","id":993,"status":1,"name":"Troy Yoga Short-36-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"53","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","url_key":"troy-yoga-short-36-green","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001}],"configurable_options":[{"id":139,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":994,"attribute_code":"color"},{"id":138,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":994,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-994.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1055","_score":1,"_source":{"id":1055,"sku":"WH02-S-Orange","name":"Hera Pullover Hoodie-S-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                  \n

                  • Teal with purple stiching.
                  • Hoodie pullover.
                  • Snug fit.

                  ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hera-pullover-hoodie-s-orange-1055","links":{},"stock":{"item_id":1055,"product_id":1055,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-s-orange-1055.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1052","_score":1,"_source":{"id":1052,"sku":"WH02-XS-Orange","name":"Hera Pullover Hoodie-XS-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                  \n

                  • Teal with purple stiching.
                  • Hoodie pullover.
                  • Snug fit.

                  ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hera-pullover-hoodie-xs-orange-1052","links":{},"stock":{"item_id":1052,"product_id":1052,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xs-orange-1052.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1061","_score":1,"_source":{"id":1061,"sku":"WH02-L-Orange","name":"Hera Pullover Hoodie-L-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                  \n

                  • Teal with purple stiching.
                  • Hoodie pullover.
                  • Snug fit.

                  ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hera-pullover-hoodie-l-orange-1061","links":{},"stock":{"item_id":1061,"product_id":1061,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-l-orange-1061.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1069","_score":1,"_source":{"id":1069,"sku":"WH03-S-Green","name":"Autumn Pullie-S-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                  \n

                  • Cayenne Short-Sleeve roll neck sweatshirt.
                  • Relaxed fit.
                  • Short-Sleeves.
                  • Machine wash/dry.

                  ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"autumn-pullie-s-green-1069","links":{},"stock":{"item_id":1069,"product_id":1069,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-s-green-1069.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1064","_score":1,"_source":{"id":1064,"sku":"WH02-XL-Orange","name":"Hera Pullover Hoodie-XL-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                  \n

                  • Teal with purple stiching.
                  • Hoodie pullover.
                  • Snug fit.

                  ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hera-pullover-hoodie-xl-orange-1064","links":{},"stock":{"item_id":1064,"product_id":1064,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xl-orange-1064.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1075","_score":1,"_source":{"id":1075,"sku":"WH03-L-Green","name":"Autumn Pullie-L-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                  \n

                  • Cayenne Short-Sleeve roll neck sweatshirt.
                  • Relaxed fit.
                  • Short-Sleeves.
                  • Machine wash/dry.

                  ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"autumn-pullie-l-green-1075","links":{},"stock":{"item_id":1075,"product_id":1075,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-l-green-1075.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1054","_score":1,"_source":{"id":1054,"sku":"WH02-S-Green","name":"Hera Pullover Hoodie-S-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                  \n

                  • Teal with purple stiching.
                  • Hoodie pullover.
                  • Snug fit.

                  ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hera-pullover-hoodie-s-green-1054","links":{},"stock":{"item_id":1054,"product_id":1054,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-s-green-1054.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1087","_score":1,"_source":{"id":1087,"sku":"WH04-S-Purple","name":"Miko Pullover Hoodie-S-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                  \n

                  • Teal two-tone hoodie.
                  • Low scoop neckline.
                  • Adjustable hood drawstrings.
                  • Longer rounded hemline for extra back coverage.
                  • Long-Sleeve style.

                  ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"miko-pullover-hoodie-s-purple-1087","links":{},"stock":{"item_id":1087,"product_id":1087,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-s-purple-1087.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1073","_score":1,"_source":{"id":1073,"sku":"WH03-M-Purple","name":"Autumn Pullie-M-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                  \n

                  • Cayenne Short-Sleeve roll neck sweatshirt.
                  • Relaxed fit.
                  • Short-Sleeves.
                  • Machine wash/dry.

                  ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"autumn-pullie-m-purple-1073","links":{},"stock":{"item_id":1073,"product_id":1073,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-m-purple-1073.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1082","_score":1,"_source":{"id":1082,"sku":"WH04-XS-Blue","name":"Miko Pullover Hoodie-XS-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                  \n

                  • Teal two-tone hoodie.
                  • Low scoop neckline.
                  • Adjustable hood drawstrings.
                  • Longer rounded hemline for extra back coverage.
                  • Long-Sleeve style.

                  ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"miko-pullover-hoodie-xs-blue-1082","links":{},"stock":{"item_id":1082,"product_id":1082,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xs-blue-1082.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1084","_score":1,"_source":{"id":1084,"sku":"WH04-XS-Purple","name":"Miko Pullover Hoodie-XS-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                  \n

                  • Teal two-tone hoodie.
                  • Low scoop neckline.
                  • Adjustable hood drawstrings.
                  • Longer rounded hemline for extra back coverage.
                  • Long-Sleeve style.

                  ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"miko-pullover-hoodie-xs-purple-1084","links":{},"stock":{"item_id":1084,"product_id":1084,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xs-purple-1084.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1006","_score":1,"_source":{"id":1006,"sku":"MSH10-36-Purple","name":"Sol Active Short-36-Purple","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                  \n

                  • Light blue jersey shorts with mesh detail.
                  • 87% Spandex 13% Lycra.
                  • Machine wash cold, tumble dry low.
                  • Superior performance fabric.
                  • Flat-lock seams.

                  ","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","color":"57","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"sol-active-short-36-purple-1006","links":{},"stock":{"item_id":1006,"product_id":1006,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-36-purple-1006.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1035","_score":1,"_source":{"id":1035,"sku":"WH01-XS-Orange","name":"Mona Pullover Hoodlie-XS-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                  • Light green heathered hoodie.
                  • Long-Sleeve, pullover.
                  • Long elliptical hem for extra coverage.
                  • Deep button placket for layering.
                  • Double rib design.
                  • Mid layer, mid weight.
                  • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mona-pullover-hoodlie-xs-orange-1035","links":{},"stock":{"item_id":1035,"product_id":1035,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xs-orange-1035.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1013","_score":1,"_source":{"id":1013,"sku":"MSH11-33-Red","name":"Arcadio Gym Short-33-Red","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001,"description":"

                  The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                  \n

                  • Royal blue cotton shorts.
                  • Built-in mesh brief.
                  • 87% Spandex 13% Lycra.
                  • Adjustable drawstring.

                  ","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","color":"58","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"arcadio-gym-short-33-red-1013","links":{},"stock":{"item_id":1013,"product_id":1013,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-33-red-1013.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1044","_score":1,"_source":{"id":1044,"sku":"WH01-L-Orange","name":"Mona Pullover Hoodlie-L-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                  • Light green heathered hoodie.
                  • Long-Sleeve, pullover.
                  • Long elliptical hem for extra coverage.
                  • Deep button placket for layering.
                  • Double rib design.
                  • Mid layer, mid weight.
                  • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mona-pullover-hoodlie-l-orange-1044","links":{},"stock":{"item_id":1044,"product_id":1044,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-l-orange-1044.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1036","_score":1,"_source":{"id":1036,"sku":"WH01-XS-Purple","name":"Mona Pullover Hoodlie-XS-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                  • Light green heathered hoodie.
                  • Long-Sleeve, pullover.
                  • Long elliptical hem for extra coverage.
                  • Deep button placket for layering.
                  • Double rib design.
                  • Mid layer, mid weight.
                  • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mona-pullover-hoodlie-xs-purple-1036","links":{},"stock":{"item_id":1036,"product_id":1036,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xs-purple-1036.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1045","_score":1,"_source":{"id":1045,"sku":"WH01-L-Purple","name":"Mona Pullover Hoodlie-L-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                  • Light green heathered hoodie.
                  • Long-Sleeve, pullover.
                  • Long elliptical hem for extra coverage.
                  • Deep button placket for layering.
                  • Double rib design.
                  • Mid layer, mid weight.
                  • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mona-pullover-hoodlie-l-purple-1045","links":{},"stock":{"item_id":1045,"product_id":1045,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-l-purple-1045.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"982","_score":1,"_source":{"id":982,"sku":"MSH09-32-Black","name":"Troy Yoga Short-32-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                  The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                  \n

                  • Navy polyester pinstripe shorts.
                  • Woven fabric with moderate stretch.
                  • 62% cotton/34% nylon/4% spandex.
                  • LumaTech™ lining.

                  ","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"troy-yoga-short-32-black-982","links":{},"stock":{"item_id":982,"product_id":982,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-03-21 13:14:03","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/m/s/msh09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-32-black-982.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"995","_score":1,"_source":{"id":995,"sku":"MSH10-32-Blue","name":"Sol Active Short-32-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                  \n

                  • Light blue jersey shorts with mesh detail.
                  • 87% Spandex 13% Lycra.
                  • Machine wash cold, tumble dry low.
                  • Superior performance fabric.
                  • Flat-lock seams.

                  ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"sol-active-short-32-blue-995","links":{},"stock":{"item_id":995,"product_id":995,"stock_id":1,"qty":56,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-32-blue-995.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"980","_score":1,"_source":{"id":980,"sku":"MSH08-36-Green","name":"Orestes Fitness Short-36-Green","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                  \n

                  • Black shorts with dark gray accents.
                  • Elasticized waistband with interior drawstring.
                  • Ventilating mesh detailing.
                  • 100% polyester and recycled polyester.
                  • Machine wash cold, tumble dry low.

                  ","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","color":"53","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-fitness-short-36-green-980","links":{},"stock":{"item_id":980,"product_id":980,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-36-green-980.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"984","_score":1,"_source":{"id":984,"sku":"MSH09-32-Green","name":"Troy Yoga Short-32-Green","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                  \n

                  • Navy polyester pinstripe shorts.
                  • Woven fabric with moderate stretch.
                  • 62% cotton/34% nylon/4% spandex.
                  • LumaTech™ lining.

                  ","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"troy-yoga-short-32-green-984","links":{},"stock":{"item_id":984,"product_id":984,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-32-green-984.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"985","_score":1,"_source":{"id":985,"sku":"MSH09-33-Black","name":"Troy Yoga Short-33-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                  \n

                  • Navy polyester pinstripe shorts.
                  • Woven fabric with moderate stretch.
                  • 62% cotton/34% nylon/4% spandex.
                  • LumaTech™ lining.

                  ","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"troy-yoga-short-33-black-985","links":{},"stock":{"item_id":985,"product_id":985,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-33-black-985.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"953","_score":1,"_source":{"id":953,"sku":"MSH06-36-Gray","name":"Lono Yoga Short-36-Gray","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                  \n

                  • Dark gray shorts with mesh accents.
                  • Ultra flexible four-way stretch.
                  • Flatlock seams and waistband.
                  • Two pockets, phony fly.
                  • Nylon/Lycra outer, Polyester/Lycra inner.

                  ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","color":"52","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"lono-yoga-short-36-gray-953","links":{},"stock":{"item_id":953,"product_id":953,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-36-gray-953.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"963","_score":1,"_source":{"id":963,"sku":"MSH07-34-Blue","name":"Rapha Sports Short-34-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                  \n

                  • Black shorts with royal accents.
                  • Compression liner.
                  • Inseam: 8\".
                  • Machine wash/dry.

                  ","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","color":"50","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"rapha-sports-short-34-blue-963","links":{},"stock":{"item_id":963,"product_id":963,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-34-blue-963.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"977","_score":1,"_source":{"id":977,"sku":"MSH08-34-Green","name":"Orestes Fitness Short-34-Green","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                  \n

                  • Black shorts with dark gray accents.
                  • Elasticized waistband with interior drawstring.
                  • Ventilating mesh detailing.
                  • 100% polyester and recycled polyester.
                  • Machine wash cold, tumble dry low.

                  ","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","color":"53","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-fitness-short-34-green-977","links":{},"stock":{"item_id":977,"product_id":977,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-34-green-977.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1001","_score":1,"_source":{"id":1001,"sku":"MSH10-34-Blue","name":"Sol Active Short-34-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                  \n

                  • Light blue jersey shorts with mesh detail.
                  • 87% Spandex 13% Lycra.
                  • Machine wash cold, tumble dry low.
                  • Superior performance fabric.
                  • Flat-lock seams.

                  ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"sol-active-short-34-blue-1001","links":{},"stock":{"item_id":1001,"product_id":1001,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-34-blue-1001.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1004","_score":1,"_source":{"id":1004,"sku":"MSH10-36-Blue","name":"Sol Active Short-36-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                  \n

                  • Light blue jersey shorts with mesh detail.
                  • 87% Spandex 13% Lycra.
                  • Machine wash cold, tumble dry low.
                  • Superior performance fabric.
                  • Flat-lock seams.

                  ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"sol-active-short-36-blue-1004","links":{},"stock":{"item_id":1004,"product_id":1004,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-36-blue-1004.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1032","_score":1,"_source":{"id":1032,"sku":"MSH12-36-Red","name":"Pierce Gym Short-36-Red","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

                  The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                  \n

                  • Dark red cotton shorts.
                  • 87% Supplex, 13% Lycra.
                  • Adjustable drawstring waistband.
                  • Built-in mesh brief.
                  • Machine wash cold, tumble dry low.

                  ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","color":"58","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"pierce-gym-short-36-red-1032","links":{},"stock":{"item_id":1032,"product_id":1032,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-36-red-1032.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1089","_score":1,"_source":{"id":1089,"sku":"WH04-M-Orange","name":"Miko Pullover Hoodie-M-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                  \n

                  • Teal two-tone hoodie.
                  • Low scoop neckline.
                  • Adjustable hood drawstrings.
                  • Longer rounded hemline for extra back coverage.
                  • Long-Sleeve style.

                  ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"miko-pullover-hoodie-m-orange-1089","links":{},"stock":{"item_id":1089,"product_id":1089,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-m-orange-1089.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1099","_score":1,"_source":{"id":1099,"sku":"WH05-XS-Purple","name":"Selene Yoga Hoodie-XS-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                  \n

                  • Ivory heather full zip 3/4 sleeve hoodie.
                  • Zip pocket at arm for convenient storage.
                  • 24.0\" body length.
                  • 89% Polyester / 11% Spandex.

                  ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"selene-yoga-hoodie-xs-purple-1099","links":{},"stock":{"item_id":1099,"product_id":1099,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xs-purple-1099.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1167","_score":1,"_source":{"id":1167,"sku":"WH09","name":"Ariel Roll Sleeve Sweatshirt","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:12","updated_at":"2019-04-11 09:24:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":39,"description":"

                  Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                  \r\n

                  • Purple two-tone lightweight hoodie.
                  • 100% cotton.
                  • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                  • Casual, comfy piece for running errands or weekend activities.

                  ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","category_ids":[24,36,2],"options_container":"container2","required_options":"1","has_options":"1","url_key":"ariel-roll-sleeve-sweatshirt","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":"33","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[138,137],"pattern":"195","climate":[205,206,208,209],"slug":"ariel-roll-sleeve-sweatshirt-1167","links":{},"stock":{"item_id":1167,"product_id":1167,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":null,"vid":null},{"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":null,"vid":null}],"configurable_children":[{"sku":"WH09-XS-Green","id":1152,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-XS-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"167","color":"53","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-xs-green","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-XS-Purple","id":1153,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-XS-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"167","color":"57","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-xs-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-XS-Red","id":1154,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-XS-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"167","color":"58","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-xs-red","msrp_display_actual_price_type":"0"},{"sku":"WH09-S-Green","id":1155,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-S-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"168","color":"53","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-s-green","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-S-Purple","id":1156,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-S-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"168","color":"57","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-s-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-S-Red","id":1157,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-S-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"168","color":"58","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-s-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-M-Green","id":1158,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-M-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"169","color":"53","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-m-green","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-M-Purple","id":1159,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-M-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"169","color":"57","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-m-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-M-Red","id":1160,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-M-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"169","color":"58","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-m-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-L-Green","id":1161,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-L-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"170","color":"53","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-l-green","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-L-Purple","id":1162,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-L-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"170","color":"57","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-l-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-L-Red","id":1163,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-L-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"170","color":"58","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-l-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-XL-Green","id":1164,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-XL-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"171","color":"53","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-xl-green","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-XL-Purple","id":1165,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-XL-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"171","color":"57","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-xl-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WH09-XL-Red","id":1166,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-XL-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"171","color":"58","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-xl-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001}],"configurable_options":[{"id":304,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1167,"attribute_code":"color"},{"id":305,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1167,"attribute_code":"size"}],"color_options":[53,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-1167.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1254","_score":1,"_source":{"id":1254,"sku":"WJ03-XL-Blue","name":"Augusta Pullover Jacket-XL-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                  \n

                  • Pink half-zip pullover.
                  • Front pouch pockets.
                  • Fold-down collar.

                  ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"augusta-pullover-jacket-xl-blue-1254","links":{},"stock":{"item_id":1254,"product_id":1254,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xl-blue-1254.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1255","_score":1,"_source":{"id":1255,"sku":"WJ03-XL-Orange","name":"Augusta Pullover Jacket-XL-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                  \n

                  • Pink half-zip pullover.
                  • Front pouch pockets.
                  • Fold-down collar.

                  ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"augusta-pullover-jacket-xl-orange-1255","links":{},"stock":{"item_id":1255,"product_id":1255,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xl-orange-1255.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1251","_score":1,"_source":{"id":1251,"sku":"WJ03-L-Blue","name":"Augusta Pullover Jacket-L-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                  \n

                  • Pink half-zip pullover.
                  • Front pouch pockets.
                  • Fold-down collar.

                  ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"augusta-pullover-jacket-l-blue-1251","links":{},"stock":{"item_id":1251,"product_id":1251,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-l-blue-1251.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1275","_score":1,"_source":{"id":1275,"sku":"WJ05-XS-Green","name":"Riona Full Zip Jacket-XS-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                  \n

                  • Brown heather full zip rouched jacket.
                  • Side hand pockets for extra storage.
                  • High collar.
                  • Thick cuffs for extra coverage.
                  • Durable, shape retention material to longer wear.

                  ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"riona-full-zip-jacket-xs-green-1275","links":{},"stock":{"item_id":1275,"product_id":1275,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xs-green-1275.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1267","_score":1,"_source":{"id":1267,"sku":"WJ04-L-Orange","name":"Ingrid Running Jacket-L-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

                  The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                  • Slim fit.
                  • Moisture-wicking fabric.
                  • Two side pockets.
                  • Zippered pocket at back waist.
                  • Machine wash/dry.
                  • Ivory specked full zip

                  ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ingrid-running-jacket-l-orange-1267","links":{},"stock":{"item_id":1267,"product_id":1267,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-l-orange-1267.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1262","_score":1,"_source":{"id":1262,"sku":"WJ04-S-Red","name":"Ingrid Running Jacket-S-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

                  The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                  • Slim fit.
                  • Moisture-wicking fabric.
                  • Two side pockets.
                  • Zippered pocket at back waist.
                  • Machine wash/dry.
                  • Ivory specked full zip

                  ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ingrid-running-jacket-s-red-1262","links":{},"stock":{"item_id":1262,"product_id":1262,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-s-red-1262.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1274","_score":1,"_source":{"id":1274,"sku":"WJ05-XS-Brown","name":"Riona Full Zip Jacket-XS-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                  \n

                  • Brown heather full zip rouched jacket.
                  • Side hand pockets for extra storage.
                  • High collar.
                  • Thick cuffs for extra coverage.
                  • Durable, shape retention material to longer wear.

                  ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xs-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"riona-full-zip-jacket-xs-brown-1274","links":{},"stock":{"item_id":1274,"product_id":1274,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xs-brown-1274.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1102","_score":1,"_source":{"id":1102,"sku":"WH05-S-Purple","name":"Selene Yoga Hoodie-S-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                  \n

                  • Ivory heather full zip 3/4 sleeve hoodie.
                  • Zip pocket at arm for convenient storage.
                  • 24.0\" body length.
                  • 89% Polyester / 11% Spandex.

                  ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"selene-yoga-hoodie-s-purple-1102","links":{},"stock":{"item_id":1102,"product_id":1102,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-s-purple-1102.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1131","_score":1,"_source":{"id":1131,"sku":"WH07-L-White","name":"Phoebe Zipper Sweatshirt-L-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                  \n

                  • Gray full zip hoodie with yellow detail.
                  • Hand-warmer pockets.
                  • Zip MP3 pocket with outlet for earphones wire.
                  • Polyester/cotton.
                  • Washable.

                  ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"phoebe-zipper-sweatshirt-l-white-1131","links":{},"stock":{"item_id":1131,"product_id":1131,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-l-white-1131.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1128","_score":1,"_source":{"id":1128,"sku":"WH07-M-White","name":"Phoebe Zipper Sweatshirt-M-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                  \n

                  • Gray full zip hoodie with yellow detail.
                  • Hand-warmer pockets.
                  • Zip MP3 pocket with outlet for earphones wire.
                  • Polyester/cotton.
                  • Washable.

                  ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"phoebe-zipper-sweatshirt-m-white-1128","links":{},"stock":{"item_id":1128,"product_id":1128,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-m-white-1128.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1110","_score":1,"_source":{"id":1110,"sku":"WH05-XL-Orange","name":"Selene Yoga Hoodie-XL-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                  \n

                  • Ivory heather full zip 3/4 sleeve hoodie.
                  • Zip pocket at arm for convenient storage.
                  • 24.0\" body length.
                  • 89% Polyester / 11% Spandex.

                  ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"selene-yoga-hoodie-xl-orange-1110","links":{},"stock":{"item_id":1110,"product_id":1110,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xl-orange-1110.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1124","_score":1,"_source":{"id":1124,"sku":"WH07-S-Purple","name":"Phoebe Zipper Sweatshirt-S-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                  \n

                  • Gray full zip hoodie with yellow detail.
                  • Hand-warmer pockets.
                  • Zip MP3 pocket with outlet for earphones wire.
                  • Polyester/cotton.
                  • Washable.

                  ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"phoebe-zipper-sweatshirt-s-purple-1124","links":{},"stock":{"item_id":1124,"product_id":1124,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-s-purple-1124.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1115","_score":1,"_source":{"id":1115,"sku":"WH06-S-Purple","name":"Daphne Full-Zip Hoodie-S-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

                  \n

                  • Purple full zip hoodie with pink accents.
                  • Heather texture.
                  • 4-way stretch.
                  • Pre-shrunk.
                  • Hood lined in vegan Sherpa for added warmth.
                  • Ribbed hem on hood and front pouch pocket.
                  • 60% Cotton / 40% Polyester.

                  ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"daphne-full-zip-hoodie-s-purple-1115","links":{},"stock":{"item_id":1115,"product_id":1115,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-s-purple-1115.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1123","_score":1,"_source":{"id":1123,"sku":"WH07-S-Gray","name":"Phoebe Zipper Sweatshirt-S-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                  \n

                  • Gray full zip hoodie with yellow detail.
                  • Hand-warmer pockets.
                  • Zip MP3 pocket with outlet for earphones wire.
                  • Polyester/cotton.
                  • Washable.

                  ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"phoebe-zipper-sweatshirt-s-gray-1123","links":{},"stock":{"item_id":1123,"product_id":1123,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-s-gray-1123.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1147","_score":1,"_source":{"id":1147,"sku":"WH08-L-White","name":"Cassia Funnel Sweatshirt-L-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                  \n

                  • White full zip hoodie with gray detail.
                  • 65% Cotton/28% Nylon/7% Spandex.
                  • Front slash pockets.
                  • Tagless label at back neck.

                  ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"cassia-funnel-sweatshirt-l-white-1147","links":{},"stock":{"item_id":1147,"product_id":1147,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-l-white-1147.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1145","_score":1,"_source":{"id":1145,"sku":"WH08-L-Orange","name":"Cassia Funnel Sweatshirt-L-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                  \n

                  • White full zip hoodie with gray detail.
                  • 65% Cotton/28% Nylon/7% Spandex.
                  • Front slash pockets.
                  • Tagless label at back neck.

                  ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"cassia-funnel-sweatshirt-l-orange-1145","links":{},"stock":{"item_id":1145,"product_id":1145,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-l-orange-1145.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1136","_score":1,"_source":{"id":1136,"sku":"WH08-XS-Orange","name":"Cassia Funnel Sweatshirt-XS-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                  \n

                  • White full zip hoodie with gray detail.
                  • 65% Cotton/28% Nylon/7% Spandex.
                  • Front slash pockets.
                  • Tagless label at back neck.

                  ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"cassia-funnel-sweatshirt-xs-orange-1136","links":{},"stock":{"item_id":1136,"product_id":1136,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xs-orange-1136.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1146","_score":1,"_source":{"id":1146,"sku":"WH08-L-Purple","name":"Cassia Funnel Sweatshirt-L-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                  \n

                  • White full zip hoodie with gray detail.
                  • 65% Cotton/28% Nylon/7% Spandex.
                  • Front slash pockets.
                  • Tagless label at back neck.

                  ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"cassia-funnel-sweatshirt-l-purple-1146","links":{},"stock":{"item_id":1146,"product_id":1146,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-l-purple-1146.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1219","_score":1,"_source":{"id":1219,"sku":"WJ01-M-Blue","name":"Stellar Solar Jacket-M-Blue","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                  Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                  \n

                  • Loose fit.
                  • Reflectivity.
                  • Flat seams.
                  • Machine wash/dry.
                  • Deep pink jacket with front panel rouching

                  ","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","color":"50","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stellar-solar-jacket-m-blue-1219","links":{},"stock":{"item_id":1219,"product_id":1219,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-m-blue-1219.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1212","_score":1,"_source":{"id":1212,"sku":"WH12-XL-Gray","name":"Circe Hooded Ice Fleece-XL-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                  Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                  \n

                  Full-zip front.
                  Three-panel hood.
                  Flatlock seams throughout.
                  Welt hand pockets.
                  Machine wash/dry.

                  ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"circe-hooded-ice-fleece-xl-gray-1212","links":{},"stock":{"item_id":1212,"product_id":1212,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xl-gray-1212.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1210","_score":1,"_source":{"id":1210,"sku":"WH12-L-Green","name":"Circe Hooded Ice Fleece-L-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                  Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                  \n

                  Full-zip front.
                  Three-panel hood.
                  Flatlock seams throughout.
                  Welt hand pockets.
                  Machine wash/dry.

                  ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"circe-hooded-ice-fleece-l-green-1210","links":{},"stock":{"item_id":1210,"product_id":1210,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-l-green-1210.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1231","_score":1,"_source":{"id":1231,"sku":"WJ02-S-Gray","name":"Josie Yoga Jacket-S-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

                  When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                  \n

                  • Slate rouched neck pullover.
                  • Moisture-wicking fabric.
                  • Hidden zipper.
                  • Mesh armpit venting.
                  • Dropped rear hem.

                  ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"josie-yoga-jacket-s-gray-1231","links":{},"stock":{"item_id":1231,"product_id":1231,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-s-gray-1231.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1161","_score":1,"_source":{"id":1161,"sku":"WH09-L-Green","name":"Ariel Roll Sleeve Sweatshirt-L-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                  \n

                  • Purple two-tone lightweight hoodie.
                  • 100% cotton.
                  • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                  • Casual, comfy piece for running errands or weekend activities.

                  ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ariel-roll-sleeve-sweatshirt-l-green-1161","links":{},"stock":{"item_id":1161,"product_id":1161,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-l-green-1161.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1156","_score":1,"_source":{"id":1156,"sku":"WH09-S-Purple","name":"Ariel Roll Sleeve Sweatshirt-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                  \n

                  • Purple two-tone lightweight hoodie.
                  • 100% cotton.
                  • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                  • Casual, comfy piece for running errands or weekend activities.

                  ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ariel-roll-sleeve-sweatshirt-s-purple-1156","links":{},"stock":{"item_id":1156,"product_id":1156,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-s-purple-1156.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1159","_score":1,"_source":{"id":1159,"sku":"WH09-M-Purple","name":"Ariel Roll Sleeve Sweatshirt-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                  \n

                  • Purple two-tone lightweight hoodie.
                  • 100% cotton.
                  • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                  • Casual, comfy piece for running errands or weekend activities.

                  ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ariel-roll-sleeve-sweatshirt-m-purple-1159","links":{},"stock":{"item_id":1159,"product_id":1159,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-m-purple-1159.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1172","_score":1,"_source":{"id":1172,"sku":"WH10-S-Gray","name":"Helena Hooded Fleece-S-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

                  Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                  \n

                  Full zip.
                  Banded cuffs and waist.
                  Front pockets.
                  Machine wash/dry.

                  ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helena-hooded-fleece-s-gray-1172","links":{},"stock":{"item_id":1172,"product_id":1172,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-s-gray-1172.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1174","_score":1,"_source":{"id":1174,"sku":"WH10-M-Blue","name":"Helena Hooded Fleece-M-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

                  Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                  \n

                  Full zip.
                  Banded cuffs and waist.
                  Front pockets.
                  Machine wash/dry.

                  ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helena-hooded-fleece-m-blue-1174","links":{},"stock":{"item_id":1174,"product_id":1174,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-m-blue-1174.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1164","_score":1,"_source":{"id":1164,"sku":"WH09-XL-Green","name":"Ariel Roll Sleeve Sweatshirt-XL-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                  \n

                  • Purple two-tone lightweight hoodie.
                  • 100% cotton.
                  • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                  • Casual, comfy piece for running errands or weekend activities.

                  ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ariel-roll-sleeve-sweatshirt-xl-green-1164","links":{},"stock":{"item_id":1164,"product_id":1164,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xl-green-1164.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1160","_score":1,"_source":{"id":1160,"sku":"WH09-M-Red","name":"Ariel Roll Sleeve Sweatshirt-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                  \n

                  • Purple two-tone lightweight hoodie.
                  • 100% cotton.
                  • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                  • Casual, comfy piece for running errands or weekend activities.

                  ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ariel-roll-sleeve-sweatshirt-m-red-1160","links":{},"stock":{"item_id":1160,"product_id":1160,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-m-red-1160.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1169","_score":1,"_source":{"id":1169,"sku":"WH10-XS-Gray","name":"Helena Hooded Fleece-XS-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

                  Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                  \n

                  Full zip.
                  Banded cuffs and waist.
                  Front pockets.
                  Machine wash/dry.

                  ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helena-hooded-fleece-xs-gray-1169","links":{},"stock":{"item_id":1169,"product_id":1169,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xs-gray-1169.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1185","_score":1,"_source":{"id":1185,"sku":"WH11-XS-Green","name":"Eos V-Neck Hoodie-XS-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                  Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                  \n

                  Semi-fitted.
                  Long-Sleeve.
                  Machine wash/line dry.

                  ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"eos-v-neck-hoodie-xs-green-1185","links":{},"stock":{"item_id":1185,"product_id":1185,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xs-green-1185.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1246","_score":1,"_source":{"id":1246,"sku":"WJ03-S-Orange","name":"Augusta Pullover Jacket-S-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                  \n

                  • Pink half-zip pullover.
                  • Front pouch pockets.
                  • Fold-down collar.

                  ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"augusta-pullover-jacket-s-orange-1246","links":{},"stock":{"item_id":1246,"product_id":1246,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-s-orange-1246.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1230","_score":1,"_source":{"id":1230,"sku":"WJ02-S-Blue","name":"Josie Yoga Jacket-S-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

                  When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                  \n

                  • Slate rouched neck pullover.
                  • Moisture-wicking fabric.
                  • Hidden zipper.
                  • Mesh armpit venting.
                  • Dropped rear hem.

                  ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"josie-yoga-jacket-s-blue-1230","links":{},"stock":{"item_id":1230,"product_id":1230,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-s-blue-1230.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1249","_score":1,"_source":{"id":1249,"sku":"WJ03-M-Orange","name":"Augusta Pullover Jacket-M-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                  \n

                  • Pink half-zip pullover.
                  • Front pouch pockets.
                  • Fold-down collar.

                  ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"augusta-pullover-jacket-m-orange-1249","links":{},"stock":{"item_id":1249,"product_id":1249,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-m-orange-1249.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1283","_score":1,"_source":{"id":1283,"sku":"WJ05-L-Brown","name":"Riona Full Zip Jacket-L-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                  \n

                  • Brown heather full zip rouched jacket.
                  • Side hand pockets for extra storage.
                  • High collar.
                  • Thick cuffs for extra coverage.
                  • Durable, shape retention material to longer wear.

                  ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-l-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"riona-full-zip-jacket-l-brown-1283","links":{},"stock":{"item_id":1283,"product_id":1283,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-l-brown-1283.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1369","_score":1,"_source":{"id":1369,"sku":"WJ11","name":"Neve Studio Dance Jacket","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":69,"description":"

                  If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                  \n

                  • Bright blue 1/4 zip pullover.
                  • CoolTech™ liner is sweat-wicking.
                  • Sleeve thumbholes.
                  • Zipper garage to protect your chin.
                  • Stretchy collar drawcords.

                  ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"neve-studio-dance-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,36,37,156],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":[118,137,121,120,125,128,130],"pattern":"197","climate":[205,206,208],"slug":"neve-studio-dance-jacket-1369","links":{},"stock":{"item_id":1369,"product_id":1369,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ11-XS-Black","id":1354,"status":1,"name":"Neve Studio Dance Jacket-XS-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"167","color":"49","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","url_key":"neve-studio-dance-jacket-xs-black","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-XS-Blue","id":1355,"status":1,"name":"Neve Studio Dance Jacket-XS-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"167","color":"50","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","url_key":"neve-studio-dance-jacket-xs-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-XS-Orange","id":1356,"status":1,"name":"Neve Studio Dance Jacket-XS-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"167","color":"56","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","url_key":"neve-studio-dance-jacket-xs-orange","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-S-Black","id":1357,"status":1,"name":"Neve Studio Dance Jacket-S-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"168","color":"49","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","url_key":"neve-studio-dance-jacket-s-black","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-S-Blue","id":1358,"status":1,"name":"Neve Studio Dance Jacket-S-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"168","color":"50","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","url_key":"neve-studio-dance-jacket-s-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-S-Orange","id":1359,"status":1,"name":"Neve Studio Dance Jacket-S-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"168","color":"56","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","url_key":"neve-studio-dance-jacket-s-orange","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-M-Black","id":1360,"status":1,"name":"Neve Studio Dance Jacket-M-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"169","color":"49","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","url_key":"neve-studio-dance-jacket-m-black","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-M-Blue","id":1361,"status":1,"name":"Neve Studio Dance Jacket-M-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"169","color":"50","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","url_key":"neve-studio-dance-jacket-m-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-M-Orange","id":1362,"status":1,"name":"Neve Studio Dance Jacket-M-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"169","color":"56","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","url_key":"neve-studio-dance-jacket-m-orange","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-L-Black","id":1363,"status":1,"name":"Neve Studio Dance Jacket-L-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"170","color":"49","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","url_key":"neve-studio-dance-jacket-l-black","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-L-Blue","id":1364,"status":1,"name":"Neve Studio Dance Jacket-L-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"170","color":"50","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","url_key":"neve-studio-dance-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-L-Orange","id":1365,"status":1,"name":"Neve Studio Dance Jacket-L-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"170","color":"56","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","url_key":"neve-studio-dance-jacket-l-orange","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-XL-Black","id":1366,"status":1,"name":"Neve Studio Dance Jacket-XL-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"171","color":"49","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","url_key":"neve-studio-dance-jacket-xl-black","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-XL-Blue","id":1367,"status":1,"name":"Neve Studio Dance Jacket-XL-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"171","color":"50","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","url_key":"neve-studio-dance-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ11-XL-Orange","id":1368,"status":1,"name":"Neve Studio Dance Jacket-XL-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"171","color":"56","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","url_key":"neve-studio-dance-jacket-xl-orange","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001}],"configurable_options":[{"id":189,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":1369,"attribute_code":"color"},{"id":188,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1369,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-1369.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1385","_score":1,"_source":{"id":1385,"sku":"WJ06","name":"Juno Jacket","attribute_set_id":9,"price":77,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":77,"description":"

                  On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                  \n

                  • Adjustable hood.
                  • Fleece-lined, zippered hand pockets.
                  • Thumbhole cuffs.
                  • Full zip.
                  • Mock-neck collar.
                  • Machine wash/dry.

                  ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"juno-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,145],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[117,118,122,124,129,130],"pattern":"197","climate":[203,204,208,210,211],"slug":"juno-jacket-1385","links":{},"stock":{"item_id":1385,"product_id":1385,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ06-XS-Blue","id":1370,"status":1,"name":"Juno Jacket-XS-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"167","color":"50","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","url_key":"juno-jacket-xs-blue","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-XS-Green","id":1371,"status":1,"name":"Juno Jacket-XS-Green","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"167","color":"53","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","url_key":"juno-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-XS-Purple","id":1372,"status":1,"name":"Juno Jacket-XS-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"167","color":"57","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","url_key":"juno-jacket-xs-purple","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-S-Blue","id":1373,"status":1,"name":"Juno Jacket-S-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"168","color":"50","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","url_key":"juno-jacket-s-blue","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-S-Green","id":1374,"status":1,"name":"Juno Jacket-S-Green","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"168","color":"53","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","url_key":"juno-jacket-s-green","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-S-Purple","id":1375,"status":1,"name":"Juno Jacket-S-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"168","color":"57","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","url_key":"juno-jacket-s-purple","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-M-Blue","id":1376,"status":1,"name":"Juno Jacket-M-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"169","color":"50","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","url_key":"juno-jacket-m-blue","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-M-Green","id":1377,"status":1,"name":"Juno Jacket-M-Green","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"169","color":"53","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","url_key":"juno-jacket-m-green","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-M-Purple","id":1378,"status":1,"name":"Juno Jacket-M-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"169","color":"57","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","url_key":"juno-jacket-m-purple","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-L-Blue","id":1379,"status":1,"name":"Juno Jacket-L-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"170","color":"50","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","url_key":"juno-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-L-Green","id":1380,"status":1,"name":"Juno Jacket-L-Green","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"170","color":"53","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","url_key":"juno-jacket-l-green","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-L-Purple","id":1381,"status":1,"name":"Juno Jacket-L-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"170","color":"57","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","url_key":"juno-jacket-l-purple","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-XL-Blue","id":1382,"status":1,"name":"Juno Jacket-XL-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"171","color":"50","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","url_key":"juno-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-XL-Green","id":1383,"status":1,"name":"Juno Jacket-XL-Green","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"171","color":"53","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","url_key":"juno-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001},{"sku":"WJ06-XL-Purple","id":1384,"status":1,"name":"Juno Jacket-XL-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"171","color":"57","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","url_key":"juno-jacket-xl-purple","msrp_display_actual_price_type":"0","final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001}],"configurable_options":[{"id":191,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"}],"product_id":1385,"attribute_code":"color"},{"id":190,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1385,"attribute_code":"size"}],"color_options":[50,53,57],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-1385.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1353","_score":1,"_source":{"id":1353,"sku":"WJ10","name":"Nadia Elements Shell","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":69,"description":"

                  Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                  \n

                  • Zippered front.
                  • Zippered side pockets.
                  • Drawstring-adjustable waist and hood.
                  • Machine wash/line dry.
                  • Light blue 1/4 zip pullover.

                  ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"nadia-elements-shell","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38,156],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_general":[117,118,123,124,126,129],"pattern":"197","climate":[204,206,207,208,210],"slug":"nadia-elements-shell-1353","links":{},"stock":{"item_id":1353,"product_id":1353,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ10-XS-Black","id":1338,"status":1,"name":"Nadia Elements Shell-XS-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"167","color":"49","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","url_key":"nadia-elements-shell-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WJ10-XS-Orange","id":1339,"status":1,"name":"Nadia Elements Shell-XS-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"167","color":"56","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","url_key":"nadia-elements-shell-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ10-XS-Yellow","id":1340,"status":1,"name":"Nadia Elements Shell-XS-Yellow","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"167","color":"60","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","url_key":"nadia-elements-shell-xs-yellow","msrp_display_actual_price_type":"0"},{"sku":"WJ10-S-Black","id":1341,"status":1,"name":"Nadia Elements Shell-S-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"168","color":"49","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","url_key":"nadia-elements-shell-s-black","msrp_display_actual_price_type":"0"},{"sku":"WJ10-S-Orange","id":1342,"status":1,"name":"Nadia Elements Shell-S-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"168","color":"56","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","url_key":"nadia-elements-shell-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ10-S-Yellow","id":1343,"status":1,"name":"Nadia Elements Shell-S-Yellow","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"168","color":"60","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","url_key":"nadia-elements-shell-s-yellow","msrp_display_actual_price_type":"0"},{"sku":"WJ10-M-Black","id":1344,"status":1,"name":"Nadia Elements Shell-M-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"169","color":"49","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","url_key":"nadia-elements-shell-m-black","msrp_display_actual_price_type":"0"},{"sku":"WJ10-M-Orange","id":1345,"status":1,"name":"Nadia Elements Shell-M-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"169","color":"56","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","url_key":"nadia-elements-shell-m-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ10-M-Yellow","id":1346,"status":1,"name":"Nadia Elements Shell-M-Yellow","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"169","color":"60","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","url_key":"nadia-elements-shell-m-yellow","msrp_display_actual_price_type":"0"},{"sku":"WJ10-L-Black","id":1347,"status":1,"name":"Nadia Elements Shell-L-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"170","color":"49","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","url_key":"nadia-elements-shell-l-black","msrp_display_actual_price_type":"0"},{"sku":"WJ10-L-Orange","id":1348,"status":1,"name":"Nadia Elements Shell-L-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"170","color":"56","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","url_key":"nadia-elements-shell-l-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ10-L-Yellow","id":1349,"status":1,"name":"Nadia Elements Shell-L-Yellow","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"170","color":"60","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","url_key":"nadia-elements-shell-l-yellow","msrp_display_actual_price_type":"0"},{"sku":"WJ10-XL-Black","id":1350,"status":1,"name":"Nadia Elements Shell-XL-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"171","color":"49","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","url_key":"nadia-elements-shell-xl-black","msrp_display_actual_price_type":"0"},{"sku":"WJ10-XL-Orange","id":1351,"status":1,"name":"Nadia Elements Shell-XL-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"171","color":"56","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","url_key":"nadia-elements-shell-xl-orange","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WJ10-XL-Yellow","id":1352,"status":1,"name":"Nadia Elements Shell-XL-Yellow","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"171","color":"60","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","url_key":"nadia-elements-shell-xl-yellow","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001}],"configurable_options":[{"id":187,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1353,"attribute_code":"color"},{"id":186,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1353,"attribute_code":"size"}],"color_options":[49,56,60],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-1353.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1305","_score":1,"_source":{"id":1305,"sku":"WJ07","name":"Inez Full Zip Jacket","attribute_set_id":9,"price":59,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":59,"description":"

                  The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                  \n

                  • Purple heather inset full zip jacket.
                  • Full zip hoodie.
                  • Contrast binding along the zipper, hood and sleeves.
                  • Inseam pockets for storage.
                  • Thumbholes for comfortable fit.

                  ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"inez-full-zip-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38,151,156],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[117,118,121,125,129],"pattern":"195","climate":[204,206,207,208,210],"slug":"inez-full-zip-jacket-1305","links":{},"stock":{"item_id":1305,"product_id":1305,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ07-XS-Orange","id":1290,"status":1,"name":"Inez Full Zip Jacket-XS-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"56","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","url_key":"inez-full-zip-jacket-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ07-XS-Purple","id":1291,"status":1,"name":"Inez Full Zip Jacket-XS-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"57","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","url_key":"inez-full-zip-jacket-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ07-XS-Red","id":1292,"status":1,"name":"Inez Full Zip Jacket-XS-Red","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"58","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","url_key":"inez-full-zip-jacket-xs-red","msrp_display_actual_price_type":"0"},{"sku":"WJ07-S-Orange","id":1293,"status":1,"name":"Inez Full Zip Jacket-S-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"56","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","url_key":"inez-full-zip-jacket-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ07-S-Purple","id":1294,"status":1,"name":"Inez Full Zip Jacket-S-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"57","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","url_key":"inez-full-zip-jacket-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ07-S-Red","id":1295,"status":1,"name":"Inez Full Zip Jacket-S-Red","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"58","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","url_key":"inez-full-zip-jacket-s-red","msrp_display_actual_price_type":"0"},{"sku":"WJ07-M-Orange","id":1296,"status":1,"name":"Inez Full Zip Jacket-M-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"56","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","url_key":"inez-full-zip-jacket-m-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ07-M-Purple","id":1297,"status":1,"name":"Inez Full Zip Jacket-M-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"57","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","url_key":"inez-full-zip-jacket-m-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ07-M-Red","id":1298,"status":1,"name":"Inez Full Zip Jacket-M-Red","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"58","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","url_key":"inez-full-zip-jacket-m-red","msrp_display_actual_price_type":"0"},{"sku":"WJ07-L-Orange","id":1299,"status":1,"name":"Inez Full Zip Jacket-L-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"56","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","url_key":"inez-full-zip-jacket-l-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ07-L-Purple","id":1300,"status":1,"name":"Inez Full Zip Jacket-L-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"57","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","url_key":"inez-full-zip-jacket-l-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ07-L-Red","id":1301,"status":1,"name":"Inez Full Zip Jacket-L-Red","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"58","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","url_key":"inez-full-zip-jacket-l-red","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WJ07-XL-Orange","id":1302,"status":1,"name":"Inez Full Zip Jacket-XL-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"56","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","url_key":"inez-full-zip-jacket-xl-orange","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WJ07-XL-Purple","id":1303,"status":1,"name":"Inez Full Zip Jacket-XL-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"57","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","url_key":"inez-full-zip-jacket-xl-purple","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WJ07-XL-Red","id":1304,"status":1,"name":"Inez Full Zip Jacket-XL-Red","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"58","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","url_key":"inez-full-zip-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001}],"configurable_options":[{"id":181,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1305,"attribute_code":"color"},{"id":180,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1305,"attribute_code":"size"}],"color_options":[56,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-1305.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1314","_score":1,"_source":{"id":1314,"sku":"WJ08-M-Purple","name":"Adrienne Trek Jacket-M-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                  \n

                  • gray 1/4 zip pullover.
                  • Comfortable, relaxed fit.
                  • Front zip for venting.
                  • Spacious, kangaroo pockets.
                  • 27\" body length.
                  • 95% Organic Cotton / 5% Spandex.

                  ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"adrienne-trek-jacket-m-purple-1314","links":{},"stock":{"item_id":1314,"product_id":1314,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-m-purple-1314.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1330","_score":1,"_source":{"id":1330,"sku":"WJ09-M-Green","name":"Jade Yoga Jacket-M-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


                  If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                  \n

                  • Seafoam 1/4 zip pullover with purple stitching.
                  • Lightweight, quick-drying, water-resistant construction.
                  • Shirred details at front and back for a feminine look.
                  • Hood collapses into collar.
                  • Mesh liner for breathability.
                  • Front zip pockets.
                  • Hem cinches at sideseam.
                  • 100% Polyester.

                  ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jade-yoga-jacket-m-green-1330","links":{},"stock":{"item_id":1330,"product_id":1330,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-m-green-1330.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1307","_score":1,"_source":{"id":1307,"sku":"WJ08-XS-Orange","name":"Adrienne Trek Jacket-XS-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                  \n

                  • gray 1/4 zip pullover.
                  • Comfortable, relaxed fit.
                  • Front zip for venting.
                  • Spacious, kangaroo pockets.
                  • 27\" body length.
                  • 95% Organic Cotton / 5% Spandex.

                  ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"adrienne-trek-jacket-xs-orange-1307","links":{},"stock":{"item_id":1307,"product_id":1307,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xs-orange-1307.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1325","_score":1,"_source":{"id":1325,"sku":"WJ09-S-Blue","name":"Jade Yoga Jacket-S-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


                  If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                  \n

                  • Seafoam 1/4 zip pullover with purple stitching.
                  • Lightweight, quick-drying, water-resistant construction.
                  • Shirred details at front and back for a feminine look.
                  • Hood collapses into collar.
                  • Mesh liner for breathability.
                  • Front zip pockets.
                  • Hem cinches at sideseam.
                  • 100% Polyester.

                  ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jade-yoga-jacket-s-blue-1325","links":{},"stock":{"item_id":1325,"product_id":1325,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-s-blue-1325.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1320","_score":1,"_source":{"id":1320,"sku":"WJ08-XL-Purple","name":"Adrienne Trek Jacket-XL-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                  \n

                  • gray 1/4 zip pullover.
                  • Comfortable, relaxed fit.
                  • Front zip for venting.
                  • Spacious, kangaroo pockets.
                  • 27\" body length.
                  • 95% Organic Cotton / 5% Spandex.

                  ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"adrienne-trek-jacket-xl-purple-1320","links":{},"stock":{"item_id":1320,"product_id":1320,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xl-purple-1320.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1333","_score":1,"_source":{"id":1333,"sku":"WJ09-L-Green","name":"Jade Yoga Jacket-L-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


                  If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                  \n

                  • Seafoam 1/4 zip pullover with purple stitching.
                  • Lightweight, quick-drying, water-resistant construction.
                  • Shirred details at front and back for a feminine look.
                  • Hood collapses into collar.
                  • Mesh liner for breathability.
                  • Front zip pockets.
                  • Hem cinches at sideseam.
                  • 100% Polyester.

                  ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jade-yoga-jacket-l-green-1333","links":{},"stock":{"item_id":1333,"product_id":1333,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-l-green-1333.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1315","_score":1,"_source":{"id":1315,"sku":"WJ08-L-Gray","name":"Adrienne Trek Jacket-L-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                  \n

                  • gray 1/4 zip pullover.
                  • Comfortable, relaxed fit.
                  • Front zip for venting.
                  • Spacious, kangaroo pockets.
                  • 27\" body length.
                  • 95% Organic Cotton / 5% Spandex.

                  ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"adrienne-trek-jacket-l-gray-1315","links":{},"stock":{"item_id":1315,"product_id":1315,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-l-gray-1315.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1349","_score":1,"_source":{"id":1349,"sku":"WJ10-L-Yellow","name":"Nadia Elements Shell-L-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                  \n

                  • Zippered front.
                  • Zippered side pockets.
                  • Drawstring-adjustable waist and hood.
                  • Machine wash/line dry.
                  • Light blue 1/4 zip pullover.

                  ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nadia-elements-shell-l-yellow-1349","links":{},"stock":{"item_id":1349,"product_id":1349,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-l-yellow-1349.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1323","_score":1,"_source":{"id":1323,"sku":"WJ09-XS-Gray","name":"Jade Yoga Jacket-XS-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


                  If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                  \n

                  • Seafoam 1/4 zip pullover with purple stitching.
                  • Lightweight, quick-drying, water-resistant construction.
                  • Shirred details at front and back for a feminine look.
                  • Hood collapses into collar.
                  • Mesh liner for breathability.
                  • Front zip pockets.
                  • Hem cinches at sideseam.
                  • 100% Polyester.

                  ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jade-yoga-jacket-xs-gray-1323","links":{},"stock":{"item_id":1323,"product_id":1323,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xs-gray-1323.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1371","_score":1,"_source":{"id":1371,"sku":"WJ06-XS-Green","name":"Juno Jacket-XS-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                  On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                  \n

                  • Adjustable hood.
                  • Fleece-lined, zippered hand pockets.
                  • Thumbhole cuffs.
                  • Full zip.
                  • Mock-neck collar.
                  • Machine wash/dry.

                  ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juno-jacket-xs-green-1371","links":{},"stock":{"item_id":1371,"product_id":1371,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xs-green-1371.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1388","_score":1,"_source":{"id":1388,"sku":"WJ12-XS-Purple","name":"Olivia 1/4 Zip Light Jacket-XS-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                  Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                  \n

                  • Loose fit.
                  • Reflectivity.
                  • Flat seams.
                  • Machine wash/dry.

                  ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"olivia-14-zip-light-jacket-xs-purple-1388","links":{},"stock":{"item_id":1388,"product_id":1388,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xs-purple-1388.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1381","_score":1,"_source":{"id":1381,"sku":"WJ06-L-Purple","name":"Juno Jacket-L-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                  On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                  \n

                  • Adjustable hood.
                  • Fleece-lined, zippered hand pockets.
                  • Thumbhole cuffs.
                  • Full zip.
                  • Mock-neck collar.
                  • Machine wash/dry.

                  ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juno-jacket-l-purple-1381","links":{},"stock":{"item_id":1381,"product_id":1381,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-l-purple-1381.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1364","_score":1,"_source":{"id":1364,"sku":"WJ11-L-Blue","name":"Neve Studio Dance Jacket-L-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                  \n

                  • Bright blue 1/4 zip pullover.
                  • CoolTech™ liner is sweat-wicking.
                  • Sleeve thumbholes.
                  • Zipper garage to protect your chin.
                  • Stretchy collar drawcords.

                  ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"neve-studio-dance-jacket-l-blue-1364","links":{},"stock":{"item_id":1364,"product_id":1364,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-l-blue-1364.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1392","_score":1,"_source":{"id":1392,"sku":"WJ12-M-Black","name":"Olivia 1/4 Zip Light Jacket-M-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                  Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                  \n

                  • Loose fit.
                  • Reflectivity.
                  • Flat seams.
                  • Machine wash/dry.

                  ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"olivia-14-zip-light-jacket-m-black-1392","links":{},"stock":{"item_id":1392,"product_id":1392,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-m-black-1392.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1379","_score":1,"_source":{"id":1379,"sku":"WJ06-L-Blue","name":"Juno Jacket-L-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                  On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                  \n

                  • Adjustable hood.
                  • Fleece-lined, zippered hand pockets.
                  • Thumbhole cuffs.
                  • Full zip.
                  • Mock-neck collar.
                  • Machine wash/dry.

                  ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juno-jacket-l-blue-1379","links":{},"stock":{"item_id":1379,"product_id":1379,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-l-blue-1379.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1397","_score":1,"_source":{"id":1397,"sku":"WJ12-L-Purple","name":"Olivia 1/4 Zip Light Jacket-L-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                  Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                  \n

                  • Loose fit.
                  • Reflectivity.
                  • Flat seams.
                  • Machine wash/dry.

                  ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"olivia-14-zip-light-jacket-l-purple-1397","links":{},"stock":{"item_id":1397,"product_id":1397,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-l-purple-1397.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1400","_score":1,"_source":{"id":1400,"sku":"WJ12-XL-Purple","name":"Olivia 1/4 Zip Light Jacket-XL-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                  Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                  \n

                  • Loose fit.
                  • Reflectivity.
                  • Flat seams.
                  • Machine wash/dry.

                  ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"olivia-14-zip-light-jacket-xl-purple-1400","links":{},"stock":{"item_id":1400,"product_id":1400,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xl-purple-1400.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1422","_score":1,"_source":{"id":1422,"sku":"WS03-S-Green","name":"Iris Workout Top-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                  \n

                  • Pink heather rouched v-neck.
                  • Scoop neckline.
                  • Angled flat seams.
                  • Moisture wicking.
                  • Body skimming.
                  • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                  ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"iris-workout-top-s-green-1422","links":{},"stock":{"item_id":1422,"product_id":1422,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-s-green-1422.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1419","_score":1,"_source":{"id":1419,"sku":"WS03-XS-Green","name":"Iris Workout Top-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                  \n

                  • Pink heather rouched v-neck.
                  • Scoop neckline.
                  • Angled flat seams.
                  • Moisture wicking.
                  • Body skimming.
                  • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                  ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"iris-workout-top-xs-green-1419","links":{},"stock":{"item_id":1419,"product_id":1419,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xs-green-1419.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1430","_score":1,"_source":{"id":1430,"sku":"WS03-XL-Blue","name":"Iris Workout Top-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                  \n

                  • Pink heather rouched v-neck.
                  • Scoop neckline.
                  • Angled flat seams.
                  • Moisture wicking.
                  • Body skimming.
                  • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                  ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"iris-workout-top-xl-blue-1430","links":{},"stock":{"item_id":1430,"product_id":1430,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xl-blue-1430.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1432","_score":1,"_source":{"id":1432,"sku":"WS03-XL-Red","name":"Iris Workout Top-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                  \n

                  • Pink heather rouched v-neck.
                  • Scoop neckline.
                  • Angled flat seams.
                  • Moisture wicking.
                  • Body skimming.
                  • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                  ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"iris-workout-top-xl-red-1432","links":{},"stock":{"item_id":1432,"product_id":1432,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xl-red-1432.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1444","_score":1,"_source":{"id":1444,"sku":"WS04-L-Green","name":"Layla Tee-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                  \n

                  • Teal tee.
                  • Long back hem.
                  • Dropped shoulders.

                  ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"layla-tee-l-green-1444","links":{},"stock":{"item_id":1444,"product_id":1444,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-l-green-1444.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1450","_score":1,"_source":{"id":1450,"sku":"WS06-XS-Gray","name":"Elisa EverCool™ Tee-XS-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                  When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                  \n

                  • Purple heather v-neck tee.
                  • Short-Sleeves.
                  • Luma EverCool™ fabric.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"elisa-evercool-and-trade-tee-xs-gray-1450","links":{},"stock":{"item_id":1450,"product_id":1450,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-01-09 15:01:40","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xs-gray-1450.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1435","_score":1,"_source":{"id":1435,"sku":"WS04-XS-Green","name":"Layla Tee-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                  \n

                  • Teal tee.
                  • Long back hem.
                  • Dropped shoulders.

                  ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"layla-tee-xs-green-1435","links":{},"stock":{"item_id":1435,"product_id":1435,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xs-green-1435.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1448","_score":1,"_source":{"id":1448,"sku":"WS04-XL-Red","name":"Layla Tee-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                  \n

                  • Teal tee.
                  • Long back hem.
                  • Dropped shoulders.

                  ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"layla-tee-xl-red-1448","links":{},"stock":{"item_id":1448,"product_id":1448,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xl-red-1448.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1343","_score":1,"_source":{"id":1343,"sku":"WJ10-S-Yellow","name":"Nadia Elements Shell-S-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                  \n

                  • Zippered front.
                  • Zippered side pockets.
                  • Drawstring-adjustable waist and hood.
                  • Machine wash/line dry.
                  • Light blue 1/4 zip pullover.

                  ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nadia-elements-shell-s-yellow-1343","links":{},"stock":{"item_id":1343,"product_id":1343,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-s-yellow-1343.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1326","_score":1,"_source":{"id":1326,"sku":"WJ09-S-Gray","name":"Jade Yoga Jacket-S-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


                  If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                  \n

                  • Seafoam 1/4 zip pullover with purple stitching.
                  • Lightweight, quick-drying, water-resistant construction.
                  • Shirred details at front and back for a feminine look.
                  • Hood collapses into collar.
                  • Mesh liner for breathability.
                  • Front zip pockets.
                  • Hem cinches at sideseam.
                  • 100% Polyester.

                  ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jade-yoga-jacket-s-gray-1326","links":{},"stock":{"item_id":1326,"product_id":1326,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-s-gray-1326.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1350","_score":1,"_source":{"id":1350,"sku":"WJ10-XL-Black","name":"Nadia Elements Shell-XL-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                  \n

                  • Zippered front.
                  • Zippered side pockets.
                  • Drawstring-adjustable waist and hood.
                  • Machine wash/line dry.
                  • Light blue 1/4 zip pullover.

                  ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nadia-elements-shell-xl-black-1350","links":{},"stock":{"item_id":1350,"product_id":1350,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xl-black-1350.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1345","_score":1,"_source":{"id":1345,"sku":"WJ10-M-Orange","name":"Nadia Elements Shell-M-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                  \n

                  • Zippered front.
                  • Zippered side pockets.
                  • Drawstring-adjustable waist and hood.
                  • Machine wash/line dry.
                  • Light blue 1/4 zip pullover.

                  ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nadia-elements-shell-m-orange-1345","links":{},"stock":{"item_id":1345,"product_id":1345,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-m-orange-1345.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1309","_score":1,"_source":{"id":1309,"sku":"WJ08-S-Gray","name":"Adrienne Trek Jacket-S-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                  \n

                  • gray 1/4 zip pullover.
                  • Comfortable, relaxed fit.
                  • Front zip for venting.
                  • Spacious, kangaroo pockets.
                  • 27\" body length.
                  • 95% Organic Cotton / 5% Spandex.

                  ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"adrienne-trek-jacket-s-gray-1309","links":{},"stock":{"item_id":1309,"product_id":1309,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-s-gray-1309.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1313","_score":1,"_source":{"id":1313,"sku":"WJ08-M-Orange","name":"Adrienne Trek Jacket-M-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                  \n

                  • gray 1/4 zip pullover.
                  • Comfortable, relaxed fit.
                  • Front zip for venting.
                  • Spacious, kangaroo pockets.
                  • 27\" body length.
                  • 95% Organic Cotton / 5% Spandex.

                  ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"adrienne-trek-jacket-m-orange-1313","links":{},"stock":{"item_id":1313,"product_id":1313,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-m-orange-1313.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1316","_score":1,"_source":{"id":1316,"sku":"WJ08-L-Orange","name":"Adrienne Trek Jacket-L-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                  \n

                  • gray 1/4 zip pullover.
                  • Comfortable, relaxed fit.
                  • Front zip for venting.
                  • Spacious, kangaroo pockets.
                  • 27\" body length.
                  • 95% Organic Cotton / 5% Spandex.

                  ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"adrienne-trek-jacket-l-orange-1316","links":{},"stock":{"item_id":1316,"product_id":1316,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-l-orange-1316.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1327","_score":1,"_source":{"id":1327,"sku":"WJ09-S-Green","name":"Jade Yoga Jacket-S-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


                  If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                  \n

                  • Seafoam 1/4 zip pullover with purple stitching.
                  • Lightweight, quick-drying, water-resistant construction.
                  • Shirred details at front and back for a feminine look.
                  • Hood collapses into collar.
                  • Mesh liner for breathability.
                  • Front zip pockets.
                  • Hem cinches at sideseam.
                  • 100% Polyester.

                  ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jade-yoga-jacket-s-green-1327","links":{},"stock":{"item_id":1327,"product_id":1327,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-s-green-1327.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1351","_score":1,"_source":{"id":1351,"sku":"WJ10-XL-Orange","name":"Nadia Elements Shell-XL-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                  \n

                  • Zippered front.
                  • Zippered side pockets.
                  • Drawstring-adjustable waist and hood.
                  • Machine wash/line dry.
                  • Light blue 1/4 zip pullover.

                  ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nadia-elements-shell-xl-orange-1351","links":{},"stock":{"item_id":1351,"product_id":1351,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xl-orange-1351.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1361","_score":1,"_source":{"id":1361,"sku":"WJ11-M-Blue","name":"Neve Studio Dance Jacket-M-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                  \n

                  • Bright blue 1/4 zip pullover.
                  • CoolTech™ liner is sweat-wicking.
                  • Sleeve thumbholes.
                  • Zipper garage to protect your chin.
                  • Stretchy collar drawcords.

                  ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"neve-studio-dance-jacket-m-blue-1361","links":{},"stock":{"item_id":1361,"product_id":1361,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-m-blue-1361.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1359","_score":1,"_source":{"id":1359,"sku":"WJ11-S-Orange","name":"Neve Studio Dance Jacket-S-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                  \n

                  • Bright blue 1/4 zip pullover.
                  • CoolTech™ liner is sweat-wicking.
                  • Sleeve thumbholes.
                  • Zipper garage to protect your chin.
                  • Stretchy collar drawcords.

                  ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"neve-studio-dance-jacket-s-orange-1359","links":{},"stock":{"item_id":1359,"product_id":1359,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-s-orange-1359.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1414","_score":1,"_source":{"id":1414,"sku":"WS02-XL-Blue","name":"Gabrielle Micro Sleeve Top-XL-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                  \n

                  • Lime green v-neck tee.
                  • Slimming, flattering fit.
                  • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                  • Longer curved hem provides additional coverage.
                  • 55% Hemp / 45% Organic Cotton.

                  ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gabrielle-micro-sleeve-top-xl-blue-1414","links":{},"stock":{"item_id":1414,"product_id":1414,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xl-blue-1414.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1403","_score":1,"_source":{"id":1403,"sku":"WS02-XS-Green","name":"Gabrielle Micro Sleeve Top-XS-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                  \n

                  • Lime green v-neck tee.
                  • Slimming, flattering fit.
                  • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                  • Longer curved hem provides additional coverage.
                  • 55% Hemp / 45% Organic Cotton.

                  ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gabrielle-micro-sleeve-top-xs-green-1403","links":{},"stock":{"item_id":1403,"product_id":1403,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xs-green-1403.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1409","_score":1,"_source":{"id":1409,"sku":"WS02-M-Green","name":"Gabrielle Micro Sleeve Top-M-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                  \n

                  • Lime green v-neck tee.
                  • Slimming, flattering fit.
                  • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                  • Longer curved hem provides additional coverage.
                  • 55% Hemp / 45% Organic Cotton.

                  ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gabrielle-micro-sleeve-top-m-green-1409","links":{},"stock":{"item_id":1409,"product_id":1409,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-m-green-1409.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1561","_score":1,"_source":{"id":1561,"sku":"WS12","name":"Radiant Tee","attribute_set_id":9,"price":22,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":22,"description":"

                  So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                  \n

                  • Salmon soft scoop neck tee.
                  • Athletic, semi-form fit.
                  • Flat seams prevent chafing.
                  • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                  ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"radiant-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[146,154,151],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"radiant-tee-1561","links":{},"stock":{"item_id":1561,"product_id":1561,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS12-XS-Blue","id":1546,"status":1,"name":"Radiant Tee-XS-Blue","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"50","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","url_key":"radiant-tee-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WS12-XS-Orange","id":1547,"status":1,"name":"Radiant Tee-XS-Orange","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"56","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","url_key":"radiant-tee-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WS12-XS-Purple","id":1548,"status":1,"name":"Radiant Tee-XS-Purple","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"57","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","url_key":"radiant-tee-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WS12-S-Blue","id":1549,"status":1,"name":"Radiant Tee-S-Blue","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"50","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","url_key":"radiant-tee-s-blue","msrp_display_actual_price_type":"0"},{"sku":"WS12-S-Orange","id":1550,"status":1,"name":"Radiant Tee-S-Orange","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"56","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","url_key":"radiant-tee-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WS12-S-Purple","id":1551,"status":1,"name":"Radiant Tee-S-Purple","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"57","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","url_key":"radiant-tee-s-purple","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"WS12-M-Blue","id":1552,"status":1,"name":"Radiant Tee-M-Blue","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"50","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","url_key":"radiant-tee-m-blue","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"WS12-M-Orange","id":1553,"status":1,"name":"Radiant Tee-M-Orange","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"56","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","url_key":"radiant-tee-m-orange","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"WS12-M-Purple","id":1554,"status":1,"name":"Radiant Tee-M-Purple","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"57","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","url_key":"radiant-tee-m-purple","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"WS12-L-Blue","id":1555,"status":1,"name":"Radiant Tee-L-Blue","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"50","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","url_key":"radiant-tee-l-blue","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"WS12-L-Orange","id":1556,"status":1,"name":"Radiant Tee-L-Orange","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"56","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","url_key":"radiant-tee-l-orange","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"WS12-L-Purple","id":1557,"status":1,"name":"Radiant Tee-L-Purple","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"57","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","url_key":"radiant-tee-l-purple","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"WS12-XL-Blue","id":1558,"status":1,"name":"Radiant Tee-XL-Blue","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"50","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","url_key":"radiant-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"WS12-XL-Orange","id":1559,"status":1,"name":"Radiant Tee-XL-Orange","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"56","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","url_key":"radiant-tee-xl-orange","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"WS12-XL-Purple","id":1560,"status":1,"name":"Radiant Tee-XL-Purple","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"57","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","url_key":"radiant-tee-xl-purple","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001}],"configurable_options":[{"id":213,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1561,"attribute_code":"color"},{"id":212,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1561,"attribute_code":"size"}],"color_options":[50,56,57],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-1561.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1523","_score":1,"_source":{"id":1523,"sku":"WS10-L-Green","name":"Karissa V-Neck Tee-L-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                  \n

                  • Pink heather soft v-neck tee.
                  • Luma signature micro sleeves.
                  • Semi-fitted.
                  • Machine wash/dry.

                  ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"karissa-v-neck-tee-l-green-1523","links":{},"stock":{"item_id":1523,"product_id":1523,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-l-green-1523.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1526","_score":1,"_source":{"id":1526,"sku":"WS10-XL-Green","name":"Karissa V-Neck Tee-XL-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                  \n

                  • Pink heather soft v-neck tee.
                  • Luma signature micro sleeves.
                  • Semi-fitted.
                  • Machine wash/dry.

                  ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"karissa-v-neck-tee-xl-green-1526","links":{},"stock":{"item_id":1526,"product_id":1526,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xl-green-1526.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1517","_score":1,"_source":{"id":1517,"sku":"WS10-S-Green","name":"Karissa V-Neck Tee-S-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                  \n

                  • Pink heather soft v-neck tee.
                  • Luma signature micro sleeves.
                  • Semi-fitted.
                  • Machine wash/dry.

                  ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"karissa-v-neck-tee-s-green-1517","links":{},"stock":{"item_id":1517,"product_id":1517,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-s-green-1517.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1544","_score":1,"_source":{"id":1544,"sku":"WS11-XL-Yellow","name":"Diva Gym Tee-XL-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                  \n

                  • Bright yellow v-neck tee.
                  • Moisture-wicking fabric.
                  • Long-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"diva-gym-tee-xl-yellow-1544","links":{},"stock":{"item_id":1544,"product_id":1544,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xl-yellow-1544.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1536","_score":1,"_source":{"id":1536,"sku":"WS11-M-Green","name":"Diva Gym Tee-M-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                  \n

                  • Bright yellow v-neck tee.
                  • Moisture-wicking fabric.
                  • Long-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"diva-gym-tee-m-green-1536","links":{},"stock":{"item_id":1536,"product_id":1536,"stock_id":1,"qty":20,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-m-green-1536.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1550","_score":1,"_source":{"id":1550,"sku":"WS12-S-Orange","name":"Radiant Tee-S-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

                  So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                  \n

                  • Salmon soft scoop neck tee.
                  • Athletic, semi-form fit.
                  • Flat seams prevent chafing.
                  • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                  ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"radiant-tee-s-orange-1550","links":{},"stock":{"item_id":1550,"product_id":1550,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-s-orange-1550.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1531","_score":1,"_source":{"id":1531,"sku":"WS11-XS-Orange","name":"Diva Gym Tee-XS-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                  \n

                  • Bright yellow v-neck tee.
                  • Moisture-wicking fabric.
                  • Long-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"diva-gym-tee-xs-orange-1531","links":{},"stock":{"item_id":1531,"product_id":1531,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xs-orange-1531.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1535","_score":1,"_source":{"id":1535,"sku":"WS11-S-Yellow","name":"Diva Gym Tee-S-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                  \n

                  • Bright yellow v-neck tee.
                  • Moisture-wicking fabric.
                  • Long-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"diva-gym-tee-s-yellow-1535","links":{},"stock":{"item_id":1535,"product_id":1535,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-s-yellow-1535.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1542","_score":1,"_source":{"id":1542,"sku":"WS11-XL-Green","name":"Diva Gym Tee-XL-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                  \n

                  • Bright yellow v-neck tee.
                  • Moisture-wicking fabric.
                  • Long-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"diva-gym-tee-xl-green-1542","links":{},"stock":{"item_id":1542,"product_id":1542,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xl-green-1542.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1612","_score":1,"_source":{"id":1612,"sku":"WB02-XS-Yellow","name":"Erica Evercool Sports Bra-XS-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                  \n

                  • Honeycomb light blue bra top.
                  • Elastic hem.
                  • Reinforced binding.
                  • Machine wash/dry.

                  ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erica-evercool-sports-bra-xs-yellow-1612","links":{},"stock":{"item_id":1612,"product_id":1612,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xs-yellow-1612.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1607","_score":1,"_source":{"id":1607,"sku":"WB01-XL-Gray","name":"Electra Bra Top-XL-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                  \n

                  • Gray rouched bra top.
                  • Attractive back straps feature contrasting motif fabric.
                  • Interior bra top is lined with breathable mesh.
                  • Elastic underband for superior support.
                  • Removable cup inserts.
                  • Chafe-free flat lock seams provide added comfort.

                  ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"electra-bra-top-xl-gray-1607","links":{},"stock":{"item_id":1607,"product_id":1607,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xl-gray-1607.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1606","_score":1,"_source":{"id":1606,"sku":"WB01-XL-Black","name":"Electra Bra Top-XL-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                  \n

                  • Gray rouched bra top.
                  • Attractive back straps feature contrasting motif fabric.
                  • Interior bra top is lined with breathable mesh.
                  • Elastic underband for superior support.
                  • Removable cup inserts.
                  • Chafe-free flat lock seams provide added comfort.

                  ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"electra-bra-top-xl-black-1606","links":{},"stock":{"item_id":1606,"product_id":1606,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xl-black-1606.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1614","_score":1,"_source":{"id":1614,"sku":"WB02-S-Orange","name":"Erica Evercool Sports Bra-S-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                  \n

                  • Honeycomb light blue bra top.
                  • Elastic hem.
                  • Reinforced binding.
                  • Machine wash/dry.

                  ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erica-evercool-sports-bra-s-orange-1614","links":{},"stock":{"item_id":1614,"product_id":1614,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-s-orange-1614.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1635","_score":1,"_source":{"id":1635,"sku":"WB03-L-Green","name":"Celeste Sports Bra-L-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2019-04-18 09:54:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":9.99,"max_price":9.99,"max_regular_price":9.99,"minimal_regular_price":9.99,"special_price":"9.9900","minimal_price":9.99,"regular_price":39,"description":"

                  Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                  \r\n

                  • Mint bra top.
                  • Seam-free interior molded cups
                  • Odor control.
                  • UV protection.
                  • Machine wash/dry.

                  ","special_from_date":"2019-04-18 00:00:00","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-l-green","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"0","size":"170","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"celeste-sports-bra-l-green-1635","links":{},"stock":{"item_id":1635,"product_id":1635,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":null,"vid":null},{"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-l-green-1635.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1455","_score":1,"_source":{"id":1455,"sku":"WS06-S-Red","name":"Elisa EverCool™ Tee-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                  \n

                  • Purple heather v-neck tee.
                  • Short-Sleeves.
                  • Luma EverCool™ fabric.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"elisa-evercool-and-trade-tee-s-red-1455","links":{},"stock":{"item_id":1455,"product_id":1455,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-s-red-1455.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1479","_score":1,"_source":{"id":1479,"sku":"WS07-XL-White","name":"Juliana Short-Sleeve Tee-XL-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                  \n

                  • Black scoop neck tee.
                  • Side rouching.
                  • Relaxed fit.

                  ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juliana-short-sleeve-tee-xl-white-1479","links":{},"stock":{"item_id":1479,"product_id":1479,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xl-white-1479.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1484","_score":1,"_source":{"id":1484,"sku":"WS08-XS-Red","name":"Minerva LumaTech™ V-Tee-XS-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                  \n

                  • Navy blue heather soft v-neck tee.
                  • Flatlock seams for chafe-free comfort.
                  • Relaxed cut.
                  • Ultra-lightweight fabric.
                  • Machine wash/dry.

                  ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"minerva-lumatech-and-trade-v-tee-xs-red-1484","links":{},"stock":{"item_id":1484,"product_id":1484,"stock_id":1,"qty":79,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xs-red-1484.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1498","_score":1,"_source":{"id":1498,"sku":"WS09-XS-Blue","name":"Tiffany Fitness Tee-XS-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                  You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                  \n

                  • Teal soft scoop neck tee.
                  • Contrast stitching pattern.
                  • Machine wash/dry.

                  ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tiffany-fitness-tee-xs-blue-1498","links":{},"stock":{"item_id":1498,"product_id":1498,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-03-08 08:34:51","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xs-blue-1498.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1494","_score":1,"_source":{"id":1494,"sku":"WS08-XL-Black","name":"Minerva LumaTech™ V-Tee-XL-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                  \n

                  • Navy blue heather soft v-neck tee.
                  • Flatlock seams for chafe-free comfort.
                  • Relaxed cut.
                  • Ultra-lightweight fabric.
                  • Machine wash/dry.

                  ","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"minerva-lumatech-and-trade-v-tee-xl-black-1494","links":{},"stock":{"item_id":1494,"product_id":1494,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xl-black-1494.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1451","_score":1,"_source":{"id":1451,"sku":"WS06-XS-Purple","name":"Elisa EverCool™ Tee-XS-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                  \n

                  • Purple heather v-neck tee.
                  • Short-Sleeves.
                  • Luma EverCool™ fabric.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"elisa-evercool-and-trade-tee-xs-purple-1451","links":{},"stock":{"item_id":1451,"product_id":1451,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xs-purple-1451.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1566","_score":1,"_source":{"id":1566,"sku":"WS01-S-Green","name":"Gwyn Endurance Tee-S-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                  \n

                  • Short-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gwyn-endurance-tee-s-green-1566","links":{},"stock":{"item_id":1566,"product_id":1566,"stock_id":1,"qty":61,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-s-green-1566.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1579","_score":1,"_source":{"id":1579,"sku":"WS05-XS-Orange","name":"Desiree Fitness Tee-XS-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                  \n

                  • Short-Sleeves.
                  • Performance fabric.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"desiree-fitness-tee-xs-orange-1579","links":{},"stock":{"item_id":1579,"product_id":1579,"stock_id":1,"qty":66,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xs-orange-1579.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1592","_score":1,"_source":{"id":1592,"sku":"WS05-XL-Yellow","name":"Desiree Fitness Tee-XL-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                  \n

                  • Short-Sleeves.
                  • Performance fabric.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"desiree-fitness-tee-xl-yellow-1592","links":{},"stock":{"item_id":1592,"product_id":1592,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xl-yellow-1592.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1588","_score":1,"_source":{"id":1588,"sku":"WS05-L-Orange","name":"Desiree Fitness Tee-L-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                  \n

                  • Short-Sleeves.
                  • Performance fabric.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"desiree-fitness-tee-l-orange-1588","links":{},"stock":{"item_id":1588,"product_id":1588,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-l-orange-1588.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1594","_score":1,"_source":{"id":1594,"sku":"WB01-XS-Black","name":"Electra Bra Top-XS-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                  \n

                  • Gray rouched bra top.
                  • Attractive back straps feature contrasting motif fabric.
                  • Interior bra top is lined with breathable mesh.
                  • Elastic underband for superior support.
                  • Removable cup inserts.
                  • Chafe-free flat lock seams provide added comfort.

                  ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"electra-bra-top-xs-black-1594","links":{},"stock":{"item_id":1594,"product_id":1594,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xs-black-1594.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1590","_score":1,"_source":{"id":1590,"sku":"WS05-XL-Black","name":"Desiree Fitness Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                  \n

                  • Short-Sleeves.
                  • Performance fabric.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"desiree-fitness-tee-xl-black-1590","links":{},"stock":{"item_id":1590,"product_id":1590,"stock_id":1,"qty":61,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xl-black-1590.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1559","_score":1,"_source":{"id":1559,"sku":"WS12-XL-Orange","name":"Radiant Tee-XL-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

                  So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                  \n

                  • Salmon soft scoop neck tee.
                  • Athletic, semi-form fit.
                  • Flat seams prevent chafing.
                  • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                  ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"radiant-tee-xl-orange-1559","links":{},"stock":{"item_id":1559,"product_id":1559,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xl-orange-1559.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1564","_score":1,"_source":{"id":1564,"sku":"WS01-XS-Yellow","name":"Gwyn Endurance Tee-XS-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                  \n

                  • Short-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gwyn-endurance-tee-xs-yellow-1564","links":{},"stock":{"item_id":1564,"product_id":1564,"stock_id":1,"qty":67,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xs-yellow-1564.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1570","_score":1,"_source":{"id":1570,"sku":"WS01-M-Yellow","name":"Gwyn Endurance Tee-M-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                  \n

                  • Short-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gwyn-endurance-tee-m-yellow-1570","links":{},"stock":{"item_id":1570,"product_id":1570,"stock_id":1,"qty":60,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-m-yellow-1570.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1591","_score":1,"_source":{"id":1591,"sku":"WS05-XL-Orange","name":"Desiree Fitness Tee-XL-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                  \n

                  • Short-Sleeves.
                  • Performance fabric.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"desiree-fitness-tee-xl-orange-1591","links":{},"stock":{"item_id":1591,"product_id":1591,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xl-orange-1591.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1589","_score":1,"_source":{"id":1589,"sku":"WS05-L-Yellow","name":"Desiree Fitness Tee-L-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                  \n

                  • Short-Sleeves.
                  • Performance fabric.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"desiree-fitness-tee-l-yellow-1589","links":{},"stock":{"item_id":1589,"product_id":1589,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-l-yellow-1589.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1563","_score":1,"_source":{"id":1563,"sku":"WS01-XS-Green","name":"Gwyn Endurance Tee-XS-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                  \n

                  • Short-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gwyn-endurance-tee-xs-green-1563","links":{},"stock":{"item_id":1563,"product_id":1563,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xs-green-1563.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1633","_score":1,"_source":{"id":1633,"sku":"WB03-M-Red","name":"Celeste Sports Bra-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                  \n

                  • Mint bra top.
                  • Seam-free interior molded cups
                  • Odor control.
                  • UV protection.
                  • Machine wash/dry.

                  ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"celeste-sports-bra-m-red-1633","links":{},"stock":{"item_id":1633,"product_id":1633,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-m-red-1633.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1620","_score":1,"_source":{"id":1620,"sku":"WB02-L-Orange","name":"Erica Evercool Sports Bra-L-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                  \n

                  • Honeycomb light blue bra top.
                  • Elastic hem.
                  • Reinforced binding.
                  • Machine wash/dry.

                  ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erica-evercool-sports-bra-l-orange-1620","links":{},"stock":{"item_id":1620,"product_id":1620,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-l-orange-1620.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1647","_score":1,"_source":{"id":1647,"sku":"WB04-S-Yellow","name":"Prima Compete Bra Top-S-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                  `
                  • Colorblocked details.
                  • Machine wash/line dry.

                  ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"prima-compete-bra-top-s-yellow-1647","links":{},"stock":{"item_id":1647,"product_id":1647,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-s-yellow-1647.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1648","_score":1,"_source":{"id":1648,"sku":"WB04-M-Blue","name":"Prima Compete Bra Top-M-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                  `
                  • Colorblocked details.
                  • Machine wash/line dry.

                  ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"prima-compete-bra-top-m-blue-1648","links":{},"stock":{"item_id":1648,"product_id":1648,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-m-blue-1648.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1645","_score":1,"_source":{"id":1645,"sku":"WB04-S-Blue","name":"Prima Compete Bra Top-S-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                  `
                  • Colorblocked details.
                  • Machine wash/line dry.

                  ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"prima-compete-bra-top-s-blue-1645","links":{},"stock":{"item_id":1645,"product_id":1645,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-s-blue-1645.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1501","_score":1,"_source":{"id":1501,"sku":"WS09-S-Blue","name":"Tiffany Fitness Tee-S-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                  \n

                  • Teal soft scoop neck tee.
                  • Contrast stitching pattern.
                  • Machine wash/dry.

                  ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tiffany-fitness-tee-s-blue-1501","links":{},"stock":{"item_id":1501,"product_id":1501,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-s-blue-1501.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1502","_score":1,"_source":{"id":1502,"sku":"WS09-S-Red","name":"Tiffany Fitness Tee-S-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                  \n

                  • Teal soft scoop neck tee.
                  • Contrast stitching pattern.
                  • Machine wash/dry.

                  ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tiffany-fitness-tee-s-red-1502","links":{},"stock":{"item_id":1502,"product_id":1502,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-s-red-1502.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1509","_score":1,"_source":{"id":1509,"sku":"WS09-L-White","name":"Tiffany Fitness Tee-L-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                  \n

                  • Teal soft scoop neck tee.
                  • Contrast stitching pattern.
                  • Machine wash/dry.

                  ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tiffany-fitness-tee-l-white-1509","links":{},"stock":{"item_id":1509,"product_id":1509,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-l-white-1509.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1503","_score":1,"_source":{"id":1503,"sku":"WS09-S-White","name":"Tiffany Fitness Tee-S-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                  \n

                  • Teal soft scoop neck tee.
                  • Contrast stitching pattern.
                  • Machine wash/dry.

                  ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tiffany-fitness-tee-s-white-1503","links":{},"stock":{"item_id":1503,"product_id":1503,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-s-white-1503.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1514","_score":1,"_source":{"id":1514,"sku":"WS10-XS-Green","name":"Karissa V-Neck Tee-XS-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                  The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                  \n

                  • Pink heather soft v-neck tee.
                  • Luma signature micro sleeves.
                  • Semi-fitted.
                  • Machine wash/dry.

                  ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"karissa-v-neck-tee-xs-green-1514","links":{},"stock":{"item_id":1514,"product_id":1514,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-28 11:56:40","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xs-green-1514.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1462","_score":1,"_source":{"id":1462,"sku":"WS06-XL-Gray","name":"Elisa EverCool™ Tee-XL-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                  \n

                  • Purple heather v-neck tee.
                  • Short-Sleeves.
                  • Luma EverCool™ fabric.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"elisa-evercool-and-trade-tee-xl-gray-1462","links":{},"stock":{"item_id":1462,"product_id":1462,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xl-gray-1462.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1478","_score":1,"_source":{"id":1478,"sku":"WS07-XL-Black","name":"Juliana Short-Sleeve Tee-XL-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                  \n

                  • Black scoop neck tee.
                  • Side rouching.
                  • Relaxed fit.

                  ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juliana-short-sleeve-tee-xl-black-1478","links":{},"stock":{"item_id":1478,"product_id":1478,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xl-black-1478.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1463","_score":1,"_source":{"id":1463,"sku":"WS06-XL-Purple","name":"Elisa EverCool™ Tee-XL-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                  \n

                  • Purple heather v-neck tee.
                  • Short-Sleeves.
                  • Luma EverCool™ fabric.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"elisa-evercool-and-trade-tee-xl-purple-1463","links":{},"stock":{"item_id":1463,"product_id":1463,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xl-purple-1463.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1480","_score":1,"_source":{"id":1480,"sku":"WS07-XL-Yellow","name":"Juliana Short-Sleeve Tee-XL-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                  \n

                  • Black scoop neck tee.
                  • Side rouching.
                  • Relaxed fit.

                  ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juliana-short-sleeve-tee-xl-yellow-1480","links":{},"stock":{"item_id":1480,"product_id":1480,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xl-yellow-1480.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1734","_score":1,"_source":{"id":1734,"sku":"WT04-XL-Blue","name":"Nona Fitness Tank-XL-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                  \n

                  • Blue/white striped mesh tank.
                  • Relaxed fit.
                  • Chafe-resistant trim around armholes and collar.
                  • Machine wash/dry.

                  ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nona-fitness-tank-xl-blue-1734","links":{},"stock":{"item_id":1734,"product_id":1734,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xl-blue-1734.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1737","_score":1,"_source":{"id":1737,"sku":"WT04","name":"Nona Fitness Tank","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":39,"description":"

                  It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                  \n

                  • Blue/white striped mesh tank.
                  • Relaxed fit.
                  • Chafe-resistant trim around armholes and collar.
                  • Machine wash/dry.

                  ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"nona-fitness-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,151],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"199","climate":[205,209],"slug":"nona-fitness-tank-1737","links":{},"stock":{"item_id":1737,"product_id":1737,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT04-XS-Blue","id":1722,"status":1,"name":"Nona Fitness Tank-XS-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"167","color":"50","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","url_key":"nona-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-XS-Purple","id":1723,"status":1,"name":"Nona Fitness Tank-XS-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"167","color":"57","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","url_key":"nona-fitness-tank-xs-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-XS-Red","id":1724,"status":1,"name":"Nona Fitness Tank-XS-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"167","color":"58","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","url_key":"nona-fitness-tank-xs-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-S-Blue","id":1725,"status":1,"name":"Nona Fitness Tank-S-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"168","color":"50","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","url_key":"nona-fitness-tank-s-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-S-Purple","id":1726,"status":1,"name":"Nona Fitness Tank-S-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"168","color":"57","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","url_key":"nona-fitness-tank-s-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-S-Red","id":1727,"status":1,"name":"Nona Fitness Tank-S-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"168","color":"58","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","url_key":"nona-fitness-tank-s-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-M-Blue","id":1728,"status":1,"name":"Nona Fitness Tank-M-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"169","color":"50","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","url_key":"nona-fitness-tank-m-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-M-Purple","id":1729,"status":1,"name":"Nona Fitness Tank-M-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"169","color":"57","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","url_key":"nona-fitness-tank-m-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-M-Red","id":1730,"status":1,"name":"Nona Fitness Tank-M-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"169","color":"58","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","url_key":"nona-fitness-tank-m-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-L-Blue","id":1731,"status":1,"name":"Nona Fitness Tank-L-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"170","color":"50","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","url_key":"nona-fitness-tank-l-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-L-Purple","id":1732,"status":1,"name":"Nona Fitness Tank-L-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"170","color":"57","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","url_key":"nona-fitness-tank-l-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-L-Red","id":1733,"status":1,"name":"Nona Fitness Tank-L-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"170","color":"58","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","url_key":"nona-fitness-tank-l-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-XL-Blue","id":1734,"status":1,"name":"Nona Fitness Tank-XL-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"171","color":"50","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","url_key":"nona-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-XL-Purple","id":1735,"status":1,"name":"Nona Fitness Tank-XL-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"171","color":"57","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","url_key":"nona-fitness-tank-xl-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT04-XL-Red","id":1736,"status":1,"name":"Nona Fitness Tank-XL-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"171","color":"58","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","url_key":"nona-fitness-tank-xl-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001}],"configurable_options":[{"id":235,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1737,"attribute_code":"color"},{"id":234,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1737,"attribute_code":"size"}],"color_options":[50,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-1737.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1743","_score":1,"_source":{"id":1743,"sku":"WT05-S-White","name":"Leah Yoga Top-S-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                  \n

                  • Blue heather rouched tank top.
                  • Camisole tank top.
                  • Banding and shirring details.
                  • Body hugging fit.
                  • Contrast topstitch.
                  • Interior shelf bra with shapewear technology.
                  • 65% Polyester 35% Cotton.

                  ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"leah-yoga-top-s-white-1743","links":{},"stock":{"item_id":1743,"product_id":1743,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-s-white-1743.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1724","_score":1,"_source":{"id":1724,"sku":"WT04-XS-Red","name":"Nona Fitness Tank-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                  \n

                  • Blue/white striped mesh tank.
                  • Relaxed fit.
                  • Chafe-resistant trim around armholes and collar.
                  • Machine wash/dry.

                  ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nona-fitness-tank-xs-red-1724","links":{},"stock":{"item_id":1724,"product_id":1724,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xs-red-1724.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1719","_score":1,"_source":{"id":1719,"sku":"WT03-XL-Purple","name":"Nora Practice Tank-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                  \n

                  • Pink stripped tank with side rouching.
                  • Pre-shrunk.
                  • Garment dyed.
                  • 92% Organic Cotton/8% Lycra.

                  ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nora-practice-tank-xl-purple-1719","links":{},"stock":{"item_id":1719,"product_id":1719,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xl-purple-1719.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1725","_score":1,"_source":{"id":1725,"sku":"WT04-S-Blue","name":"Nona Fitness Tank-S-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                  \n

                  • Blue/white striped mesh tank.
                  • Relaxed fit.
                  • Chafe-resistant trim around armholes and collar.
                  • Machine wash/dry.

                  ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nona-fitness-tank-s-blue-1725","links":{},"stock":{"item_id":1725,"product_id":1725,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-s-blue-1725.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1728","_score":1,"_source":{"id":1728,"sku":"WT04-M-Blue","name":"Nona Fitness Tank-M-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                  \n

                  • Blue/white striped mesh tank.
                  • Relaxed fit.
                  • Chafe-resistant trim around armholes and collar.
                  • Machine wash/dry.

                  ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nona-fitness-tank-m-blue-1728","links":{},"stock":{"item_id":1728,"product_id":1728,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-m-blue-1728.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1740","_score":1,"_source":{"id":1740,"sku":"WT05-XS-White","name":"Leah Yoga Top-XS-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                  \n

                  • Blue heather rouched tank top.
                  • Camisole tank top.
                  • Banding and shirring details.
                  • Body hugging fit.
                  • Contrast topstitch.
                  • Interior shelf bra with shapewear technology.
                  • 65% Polyester 35% Cotton.

                  ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"leah-yoga-top-xs-white-1740","links":{},"stock":{"item_id":1740,"product_id":1740,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xs-white-1740.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1754","_score":1,"_source":{"id":1754,"sku":"WT06-XS-Blue","name":"Chloe Compete Tank-XS-Blue - tier price","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2018-08-22 09:33:22","weight":1,"product_links":[],"tier_prices":[{"customer_group_id":1,"qty":1,"value":30,"extension_attributes":{"website_id":0}}],"custom_attributes":null,"description":"

                  You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                  \r\n

                  • Royal blue tank top - nylon/spandex.
                  • Flatlock stitching.
                  • Moisture-wicking fabric.
                  • Ergonomic seaming.
                  • Machine wash/dry.

                  ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xs-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"167","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"chloe-compete-tank-xs-blue-tier-price-1754","links":{},"stock":{"item_id":1754,"product_id":1754,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-12-11 12:02:37","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xs-blue-tier-price-1754.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1760","_score":1,"_source":{"id":1760,"sku":"WT06-M-Blue","name":"Chloe Compete Tank-M-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                  \n

                  • Royal blue tank top - nylon/spandex.
                  • Flatlock stitching.
                  • Moisture-wicking fabric.
                  • Ergonomic seaming.
                  • Machine wash/dry.

                  ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chloe-compete-tank-m-blue-1760","links":{},"stock":{"item_id":1760,"product_id":1760,"stock_id":1,"qty":31,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-m-blue-1760.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1784","_score":1,"_source":{"id":1784,"sku":"WT07-XL-Yellow","name":"Maya Tunic-XL-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                  \n

                  • Mint green heather tunic-style tank.
                  • Wrapped back with cut out detail.
                  • Drawcord detail at end.
                  • Abutted seams.

                  ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"maya-tunic-xl-yellow-1784","links":{},"stock":{"item_id":1784,"product_id":1784,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xl-yellow-1784.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1687","_score":1,"_source":{"id":1687,"sku":"WT01-XL-Blue","name":"Bella Tank-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                  \n

                  • Navy blue tank top - cotton.
                  • Feminine scoop neckline.
                  • Power mesh lining in shelf bra for superior support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bella-tank-xl-blue-1687","links":{},"stock":{"item_id":1687,"product_id":1687,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xl-blue-1687.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1699","_score":1,"_source":{"id":1699,"sku":"WT02-L-Green","name":"Zoe Tank-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                  \n

                  • Salmon heather tank top.
                  • 1\" elastic band on inner bra.
                  • Mesh lining on shelf bra for support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoe-tank-l-green-1699","links":{},"stock":{"item_id":1699,"product_id":1699,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-l-green-1699.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1696","_score":1,"_source":{"id":1696,"sku":"WT02-M-Green","name":"Zoe Tank-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                  \n

                  • Salmon heather tank top.
                  • 1\" elastic band on inner bra.
                  • Mesh lining on shelf bra for support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoe-tank-m-green-1696","links":{},"stock":{"item_id":1696,"product_id":1696,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-m-green-1696.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1692","_score":1,"_source":{"id":1692,"sku":"WT02-XS-Yellow","name":"Zoe Tank-XS-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                  \n

                  • Salmon heather tank top.
                  • 1\" elastic band on inner bra.
                  • Mesh lining on shelf bra for support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoe-tank-xs-yellow-1692","links":{},"stock":{"item_id":1692,"product_id":1692,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xs-yellow-1692.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1781","_score":1,"_source":{"id":1781,"sku":"WT07-L-Yellow","name":"Maya Tunic-L-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                  \n

                  • Mint green heather tunic-style tank.
                  • Wrapped back with cut out detail.
                  • Drawcord detail at end.
                  • Abutted seams.

                  ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"maya-tunic-l-yellow-1781","links":{},"stock":{"item_id":1781,"product_id":1781,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-l-yellow-1781.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1789","_score":1,"_source":{"id":1789,"sku":"WT08-S-Black","name":"Antonia Racer Tank-S-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                  You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                  \n

                  • Machine wash.
                  • Line dry.

                  ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"antonia-racer-tank-s-black-1789","links":{},"stock":{"item_id":1789,"product_id":1789,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-s-black-1789.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1796","_score":1,"_source":{"id":1796,"sku":"WT08-L-Purple","name":"Antonia Racer Tank-L-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                  You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                  \n

                  • Machine wash.
                  • Line dry.

                  ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"antonia-racer-tank-l-purple-1796","links":{},"stock":{"item_id":1796,"product_id":1796,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-l-purple-1796.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1664","_score":1,"_source":{"id":1664,"sku":"WB05-M-Black","name":"Lucia Cross-Fit Bra -M-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                  \n

                  • Black/white bra top.
                  • Criss-cross back design.
                  • Machine wash/dry.

                  ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lucia-cross-fit-bra-m-black-1664","links":{},"stock":{"item_id":1664,"product_id":1664,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-m-black-1664.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1678","_score":1,"_source":{"id":1678,"sku":"WT01-S-Blue","name":"Bella Tank-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                  \n

                  • Navy blue tank top - cotton.
                  • Feminine scoop neckline.
                  • Power mesh lining in shelf bra for superior support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bella-tank-s-blue-1678","links":{},"stock":{"item_id":1678,"product_id":1678,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-s-blue-1678.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1756","_score":1,"_source":{"id":1756,"sku":"WT06-XS-Yellow","name":"Chloe Compete Tank-XS-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                  \n

                  • Royal blue tank top - nylon/spandex.
                  • Flatlock stitching.
                  • Moisture-wicking fabric.
                  • Ergonomic seaming.
                  • Machine wash/dry.

                  ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chloe-compete-tank-xs-yellow-1756","links":{},"stock":{"item_id":1756,"product_id":1756,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xs-yellow-1756.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1762","_score":1,"_source":{"id":1762,"sku":"WT06-M-Yellow","name":"Chloe Compete Tank-M-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                  \n

                  • Royal blue tank top - nylon/spandex.
                  • Flatlock stitching.
                  • Moisture-wicking fabric.
                  • Ergonomic seaming.
                  • Machine wash/dry.

                  ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chloe-compete-tank-m-yellow-1762","links":{},"stock":{"item_id":1762,"product_id":1762,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-m-yellow-1762.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1735","_score":1,"_source":{"id":1735,"sku":"WT04-XL-Purple","name":"Nona Fitness Tank-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                  \n

                  • Blue/white striped mesh tank.
                  • Relaxed fit.
                  • Chafe-resistant trim around armholes and collar.
                  • Machine wash/dry.

                  ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nona-fitness-tank-xl-purple-1735","links":{},"stock":{"item_id":1735,"product_id":1735,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xl-purple-1735.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1703","_score":1,"_source":{"id":1703,"sku":"WT02-XL-Orange","name":"Zoe Tank-XL-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                  \n

                  • Salmon heather tank top.
                  • 1\" elastic band on inner bra.
                  • Mesh lining on shelf bra for support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoe-tank-xl-orange-1703","links":{},"stock":{"item_id":1703,"product_id":1703,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xl-orange-1703.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1769","_score":1,"_source":{"id":1769,"sku":"WT06","name":"Chloe Compete Tank","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:24","updated_at":"2018-08-22 10:34:49","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":39,"description":"

                  You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                  \r\n

                  • Royal blue tank top - nylon/spandex.
                  • Flatlock stitching.
                  • Moisture-wicking fabric.
                  • Ergonomic seaming.
                  • Machine wash/dry.

                  ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"1","has_options":"1","url_key":"chloe-compete-tank","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":[36,37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"chloe-compete-tank-1769","links":{},"stock":{"item_id":1769,"product_id":1769,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"configurable_children":[{"sku":"WT06-XS-Blue","id":1754,"status":1,"name":"Chloe Compete Tank-XS-Blue - tier price","price":39,"tier_prices":[{"customer_group_id":1,"qty":1,"value":30,"extension_attributes":{"website_id":0}}],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"50","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","url_key":"chloe-compete-tank-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WT06-XS-Red","id":1755,"status":1,"name":"Chloe Compete Tank-XS-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"58","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","url_key":"chloe-compete-tank-xs-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-XS-Yellow","id":1756,"status":1,"name":"Chloe Compete Tank-XS-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"60","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","url_key":"chloe-compete-tank-xs-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-S-Blue","id":1757,"status":1,"name":"Chloe Compete Tank-S-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"50","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","url_key":"chloe-compete-tank-s-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-S-Red","id":1758,"status":1,"name":"Chloe Compete Tank-S-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"58","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","url_key":"chloe-compete-tank-s-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-S-Yellow","id":1759,"status":1,"name":"Chloe Compete Tank-S-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"60","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","url_key":"chloe-compete-tank-s-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-M-Blue","id":1760,"status":1,"name":"Chloe Compete Tank-M-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"50","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","url_key":"chloe-compete-tank-m-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-M-Red","id":1761,"status":1,"name":"Chloe Compete Tank-M-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"58","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","url_key":"chloe-compete-tank-m-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-M-Yellow","id":1762,"status":1,"name":"Chloe Compete Tank-M-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"60","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","url_key":"chloe-compete-tank-m-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-L-Blue","id":1763,"status":1,"name":"Chloe Compete Tank-L-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"50","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","url_key":"chloe-compete-tank-l-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-L-Red","id":1764,"status":1,"name":"Chloe Compete Tank-L-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"58","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","url_key":"chloe-compete-tank-l-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-L-Yellow","id":1765,"status":1,"name":"Chloe Compete Tank-L-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"60","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","url_key":"chloe-compete-tank-l-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-XL-Blue","id":1766,"status":1,"name":"Chloe Compete Tank-XL-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"50","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","url_key":"chloe-compete-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-XL-Red","id":1767,"status":1,"name":"Chloe Compete Tank-XL-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"58","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","url_key":"chloe-compete-tank-xl-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT06-XL-Yellow","id":1768,"status":1,"name":"Chloe Compete Tank-XL-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"60","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","url_key":"chloe-compete-tank-xl-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001}],"configurable_options":[{"id":300,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":1769,"attribute_code":"color"},{"id":301,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1769,"attribute_code":"size"}],"color_options":[50,58,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-1769.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1838","_score":1,"_source":{"id":1838,"sku":"WP03","name":"Ida Workout Parachute Pant","attribute_set_id":10,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":48,"description":"

                  The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                  \n

                  • Royal blue parachute pants.
                  • Contrast stripe.
                  • Relaxed fit.
                  • Drawstring closure.
                  • Machine wash/dry.

                  ","image":"/w/p/wp03-blue_main.jpg","small_image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ida-workout-parachute-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,37,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[110,115],"pattern":"195","climate":[205,212,206,208,209],"slug":"ida-workout-parachute-pant-1838","links":{},"stock":{"item_id":1838,"product_id":1838,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP03-28-Black","id":1832,"status":1,"name":"Ida Workout Parachute Pant-28-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","8","2"],"size":"172","color":"49","image":"/w/p/wp03-black_main.jpg","small_image":"/w/p/wp03-black_main.jpg","thumbnail":"/w/p/wp03-black_main.jpg","url_key":"ida-workout-parachute-pant-28-black","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP03-28-Blue","id":1833,"status":1,"name":"Ida Workout Parachute Pant-28-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","8","2"],"size":"172","color":"50","image":"/w/p/wp03-blue_main.jpg","small_image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","url_key":"ida-workout-parachute-pant-28-blue","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP03-28-Purple","id":1834,"status":1,"name":"Ida Workout Parachute Pant-28-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","8","2"],"size":"172","color":"57","image":"/w/p/wp03-purple_main.jpg","small_image":"/w/p/wp03-purple_main.jpg","thumbnail":"/w/p/wp03-purple_main.jpg","url_key":"ida-workout-parachute-pant-28-purple","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP03-29-Black","id":1835,"status":1,"name":"Ida Workout Parachute Pant-29-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","8","2"],"size":"173","color":"49","image":"/w/p/wp03-black_main.jpg","small_image":"/w/p/wp03-black_main.jpg","thumbnail":"/w/p/wp03-black_main.jpg","url_key":"ida-workout-parachute-pant-29-black","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP03-29-Blue","id":1836,"status":1,"name":"Ida Workout Parachute Pant-29-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","8","2"],"size":"173","color":"50","image":"/w/p/wp03-blue_main.jpg","small_image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","url_key":"ida-workout-parachute-pant-29-blue","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP03-29-Purple","id":1837,"status":1,"name":"Ida Workout Parachute Pant-29-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","8","2"],"size":"173","color":"57","image":"/w/p/wp03-purple_main.jpg","small_image":"/w/p/wp03-purple_main.jpg","thumbnail":"/w/p/wp03-purple_main.jpg","url_key":"ida-workout-parachute-pant-29-purple","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001}],"configurable_options":[{"id":251,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":1838,"attribute_code":"color"},{"id":250,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1838,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-1838.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1874","_score":1,"_source":{"id":1874,"sku":"WP09-28-Black","name":"Carina Basic Capri-28-Black","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                  \n

                  • Black capris with rouching detail.
                  • 93% cotton, 7% spandex.
                  • Elasticized waistband.
                  • Reinforced seams with exposed topstitching.
                  • Soft, medium-weight jersey with added stretch.

                  ","image":"/w/p/wp09-black_main.jpg","small_image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"carina-basic-capri-28-black-1874","links":{},"stock":{"item_id":1874,"product_id":1874,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_outfit.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-28-black-1874.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1879","_score":1,"_source":{"id":1879,"sku":"WP09-29-Purple","name":"Carina Basic Capri-29-Purple","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                  \n

                  • Black capris with rouching detail.
                  • 93% cotton, 7% spandex.
                  • Elasticized waistband.
                  • Reinforced seams with exposed topstitching.
                  • Soft, medium-weight jersey with added stretch.

                  ","image":"/w/p/wp09-purple_main.jpg","small_image":"/w/p/wp09-purple_main.jpg","thumbnail":"/w/p/wp09-purple_main.jpg","color":"57","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"carina-basic-capri-29-purple-1879","links":{},"stock":{"item_id":1879,"product_id":1879,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-29-purple-1879.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1878","_score":1,"_source":{"id":1878,"sku":"WP09-29-Blue","name":"Carina Basic Capri-29-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                  \n

                  • Black capris with rouching detail.
                  • 93% cotton, 7% spandex.
                  • Elasticized waistband.
                  • Reinforced seams with exposed topstitching.
                  • Soft, medium-weight jersey with added stretch.

                  ","image":"/w/p/wp09-blue_main.jpg","small_image":"/w/p/wp09-blue_main.jpg","thumbnail":"/w/p/wp09-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"carina-basic-capri-29-blue-1878","links":{},"stock":{"item_id":1878,"product_id":1878,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-29-blue-1878.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1877","_score":1,"_source":{"id":1877,"sku":"WP09-29-Black","name":"Carina Basic Capri-29-Black","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                  \n

                  • Black capris with rouching detail.
                  • 93% cotton, 7% spandex.
                  • Elasticized waistband.
                  • Reinforced seams with exposed topstitching.
                  • Soft, medium-weight jersey with added stretch.

                  ","image":"/w/p/wp09-black_main.jpg","small_image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"carina-basic-capri-29-black-1877","links":{},"stock":{"item_id":1877,"product_id":1877,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_outfit.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-29-black-1877.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1893","_score":1,"_source":{"id":1893,"sku":"WP11-29-Red","name":"Sylvia Capri-29-Red","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                  \n

                  • Green striped capri.
                  • Strategic side seam
                  • Comfort gusset with lining.
                  • Flat seaming.
                  • Wide waistband.
                  • Moisture wicking.

                  ","image":"/w/p/wp11-red_main.jpg","small_image":"/w/p/wp11-red_main.jpg","thumbnail":"/w/p/wp11-red_main.jpg","color":"58","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sylvia-capri-29-red-1893","links":{},"stock":{"item_id":1893,"product_id":1893,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-29-red-1893.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1802","_score":1,"_source":{"id":1802,"sku":"WT09-XS-Purple","name":"Breathe-Easy Tank-XS-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                  The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                  \n

                  • Machine wash/dry.
                  • Cocona® fabric.

                  ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"breathe-easy-tank-xs-purple-1802","links":{},"stock":{"item_id":1802,"product_id":1802,"stock_id":1,"qty":48,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xs-purple-1802.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1829","_score":1,"_source":{"id":1829,"sku":"WP02-29-Purple","name":"Emma Leggings-29-Purple","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                  \n

                  • Light blue heather yoga pants.
                  • Body hugging fit.
                  • Low rise fit.

                  ","image":"/w/p/wp02-purple_main.jpg","small_image":"/w/p/wp02-purple_main.jpg","thumbnail":"/w/p/wp02-purple_main.jpg","color":"57","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"emma-leggings-29-purple-1829","links":{},"stock":{"item_id":1829,"product_id":1829,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-29-purple-1829.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1850","_score":1,"_source":{"id":1850,"sku":"WP05-29-Gray","name":"Sahara Leggings-29-Gray","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                  Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                  \n

                  • Pinstripe legging with rouched ankles.
                  • Secret pocket at waistband.
                  • Flat seams for comfort.
                  • Shaped fit with low rise.
                  • 4-way stretch, moisture-wicking material.

                  ","image":"/w/p/wp05-gray_main.jpg","small_image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","color":"52","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sahara-leggings-29-gray-1850","links":{},"stock":{"item_id":1850,"product_id":1850,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-29-gray-1850.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1840","_score":1,"_source":{"id":1840,"sku":"WP04-28-Blue","name":"Cora Parachute Pant-28-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                  Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                  \n

                  • Light blue parachute pants.
                  • Power mesh internal waistband for support.
                  • Internal waistband pocket.
                  • Antimicrobial finish.

                  ","image":"/w/p/wp04-blue_main.jpg","small_image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"cora-parachute-pant-28-blue-1840","links":{},"stock":{"item_id":1840,"product_id":1840,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-28-blue-1840.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1876","_score":1,"_source":{"id":1876,"sku":"WP09-28-Purple","name":"Carina Basic Capri-28-Purple","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                  \n

                  • Black capris with rouching detail.
                  • 93% cotton, 7% spandex.
                  • Elasticized waistband.
                  • Reinforced seams with exposed topstitching.
                  • Soft, medium-weight jersey with added stretch.

                  ","image":"/w/p/wp09-purple_main.jpg","small_image":"/w/p/wp09-purple_main.jpg","thumbnail":"/w/p/wp09-purple_main.jpg","color":"57","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"carina-basic-capri-28-purple-1876","links":{},"stock":{"item_id":1876,"product_id":1876,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-28-purple-1876.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1868","_score":1,"_source":{"id":1868,"sku":"WP08-28-Green","name":"Bardot Capri-28-Green","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                  \n

                  • Black capris with pink waistband.
                  • Cropped leggings.
                  • Waistband drawcord.
                  • Flat, thin and flattering.
                  • Made with organic fabric.

                  ","image":"/w/p/wp08-green_main.jpg","small_image":"/w/p/wp08-green_main.jpg","thumbnail":"/w/p/wp08-green_main.jpg","color":"53","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bardot-capri-28-green-1868","links":{},"stock":{"item_id":1868,"product_id":1868,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-28-green-1868.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1844","_score":1,"_source":{"id":1844,"sku":"WP04-29-White","name":"Cora Parachute Pant-29-White","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                  Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                  \n

                  • Light blue parachute pants.
                  • Power mesh internal waistband for support.
                  • Internal waistband pocket.
                  • Antimicrobial finish.

                  ","image":"/w/p/wp04-white_main.jpg","small_image":"/w/p/wp04-white_main.jpg","thumbnail":"/w/p/wp04-white_main.jpg","color":"59","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"cora-parachute-pant-29-white-1844","links":{},"stock":{"item_id":1844,"product_id":1844,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-29-white-1844.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1843","_score":1,"_source":{"id":1843,"sku":"WP04-29-Blue","name":"Cora Parachute Pant-29-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                  Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                  \n

                  • Light blue parachute pants.
                  • Power mesh internal waistband for support.
                  • Internal waistband pocket.
                  • Antimicrobial finish.

                  ","image":"/w/p/wp04-blue_main.jpg","small_image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"cora-parachute-pant-29-blue-1843","links":{},"stock":{"item_id":1843,"product_id":1843,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-29-blue-1843.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1814","_score":1,"_source":{"id":1814,"sku":"WT09-XL-Purple","name":"Breathe-Easy Tank-XL-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                  The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                  \n

                  • Machine wash/dry.
                  • Cocona® fabric.

                  ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"breathe-easy-tank-xl-purple-1814","links":{},"stock":{"item_id":1814,"product_id":1814,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xl-purple-1814.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1810","_score":1,"_source":{"id":1810,"sku":"WT09-M-Yellow","name":"Breathe-Easy Tank-M-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                  The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                  \n

                  • Machine wash/dry.
                  • Cocona® fabric.

                  ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"breathe-easy-tank-m-yellow-1810","links":{},"stock":{"item_id":1810,"product_id":1810,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-m-yellow-1810.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1898","_score":1,"_source":{"id":1898,"sku":"WP12-29-Blue","name":"Deirdre Relaxed-Fit Capri-29-Blue","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

                  Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                  \n

                  • Heather gray capris with mint green waist & accents.
                  • Comfortable, relaxed fit with high rise.
                  • Moisture-wicking, 4-way stretch construction.
                  • Lined with mesh for better support.
                  • Hidden pocket at waistband.
                  • Flatlock seams and lined gusset for comfort.

                  ","image":"/w/p/wp12-blue_main.jpg","small_image":"/w/p/wp12-blue_main.jpg","thumbnail":"/w/p/wp12-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"deirdre-relaxed-fit-capri-29-blue-1898","links":{},"stock":{"item_id":1898,"product_id":1898,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-29-blue-1898.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1890","_score":1,"_source":{"id":1890,"sku":"WP11-28-Red","name":"Sylvia Capri-28-Red","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                  \n

                  • Green striped capri.
                  • Strategic side seam
                  • Comfort gusset with lining.
                  • Flat seaming.
                  • Wide waistband.
                  • Moisture wicking.

                  ","image":"/w/p/wp11-red_main.jpg","small_image":"/w/p/wp11-red_main.jpg","thumbnail":"/w/p/wp11-red_main.jpg","color":"58","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sylvia-capri-28-red-1890","links":{},"stock":{"item_id":1890,"product_id":1890,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-28-red-1890.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1900","_score":1,"_source":{"id":1900,"sku":"WP12-29-Green","name":"Deirdre Relaxed-Fit Capri-29-Green","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

                  Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                  \n

                  • Heather gray capris with mint green waist & accents.
                  • Comfortable, relaxed fit with high rise.
                  • Moisture-wicking, 4-way stretch construction.
                  • Lined with mesh for better support.
                  • Hidden pocket at waistband.
                  • Flatlock seams and lined gusset for comfort.

                  ","image":"/w/p/wp12-green_main.jpg","small_image":"/w/p/wp12-green_main.jpg","thumbnail":"/w/p/wp12-green_main.jpg","color":"53","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"deirdre-relaxed-fit-capri-29-green-1900","links":{},"stock":{"item_id":1900,"product_id":1900,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-29-green-1900.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1852","_score":1,"_source":{"id":1852,"sku":"WP05","name":"Sahara Leggings","attribute_set_id":10,"price":75,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":75,"description":"

                  Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                  \n

                  • Pinstripe legging with rouched ankles.
                  • Secret pocket at waistband.
                  • Flat seams for comfort.
                  • Shaped fit with low rise.
                  • 4-way stretch, moisture-wicking material.

                  ","image":"/w/p/wp05-gray_main.jpg","small_image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sahara-leggings","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[109,113,115],"pattern":"197","climate":[204,205,208],"slug":"sahara-leggings-1852","links":{},"stock":{"item_id":1852,"product_id":1852,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP05-28-Blue","id":1846,"status":1,"name":"Sahara Leggings-28-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"50","image":"/w/p/wp05-blue_main.jpg","small_image":"/w/p/wp05-blue_main.jpg","thumbnail":"/w/p/wp05-blue_main.jpg","url_key":"sahara-leggings-28-blue","msrp_display_actual_price_type":"0"},{"sku":"WP05-28-Gray","id":1847,"status":1,"name":"Sahara Leggings-28-Gray","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"52","image":"/w/p/wp05-gray_main.jpg","small_image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","url_key":"sahara-leggings-28-gray","msrp_display_actual_price_type":"0"},{"sku":"WP05-28-Red","id":1848,"status":1,"name":"Sahara Leggings-28-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"58","image":"/w/p/wp05-red_main.jpg","small_image":"/w/p/wp05-red_main.jpg","thumbnail":"/w/p/wp05-red_main.jpg","url_key":"sahara-leggings-28-red","msrp_display_actual_price_type":"0"},{"sku":"WP05-29-Blue","id":1849,"status":1,"name":"Sahara Leggings-29-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"50","image":"/w/p/wp05-blue_main.jpg","small_image":"/w/p/wp05-blue_main.jpg","thumbnail":"/w/p/wp05-blue_main.jpg","url_key":"sahara-leggings-29-blue","msrp_display_actual_price_type":"0"},{"sku":"WP05-29-Gray","id":1850,"status":1,"name":"Sahara Leggings-29-Gray","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"52","image":"/w/p/wp05-gray_main.jpg","small_image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","url_key":"sahara-leggings-29-gray","msrp_display_actual_price_type":"0"},{"sku":"WP05-29-Red","id":1851,"status":1,"name":"Sahara Leggings-29-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"58","image":"/w/p/wp05-red_main.jpg","small_image":"/w/p/wp05-red_main.jpg","thumbnail":"/w/p/wp05-red_main.jpg","url_key":"sahara-leggings-29-red","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001}],"configurable_options":[{"id":255,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"}],"product_id":1852,"attribute_code":"color"},{"id":254,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1852,"attribute_code":"size"}],"color_options":[50,52,58],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-1852.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1866","_score":1,"_source":{"id":1866,"sku":"WP07","name":"Aeon Capri","attribute_set_id":10,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":48,"description":"

                  Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                  \n

                  • Black capris with teal accents.
                  • Thick, 3\" flattering waistband.
                  • Media pocket on inner waistband.
                  • Dry wick finish for ultimate comfort and dryness.

                  ","image":"/w/p/wp07-black_main.jpg","small_image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"aeon-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,150,154],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"107","pattern":"195","climate":[205,212,206],"slug":"aeon-capri-1866","links":{},"stock":{"item_id":1866,"product_id":1866,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP07-28-Black","id":1860,"status":1,"name":"Aeon Capri-28-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"49","image":"/w/p/wp07-black_main.jpg","small_image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","url_key":"aeon-capri-28-black","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP07-28-Blue","id":1861,"status":1,"name":"Aeon Capri-28-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"50","image":"/w/p/wp07-blue_main.jpg","small_image":"/w/p/wp07-blue_main.jpg","thumbnail":"/w/p/wp07-blue_main.jpg","url_key":"aeon-capri-28-blue","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP07-28-Orange","id":1862,"status":1,"name":"Aeon Capri-28-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"56","image":"/w/p/wp07-orange_main.jpg","small_image":"/w/p/wp07-orange_main.jpg","thumbnail":"/w/p/wp07-orange_main.jpg","url_key":"aeon-capri-28-orange","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP07-29-Black","id":1863,"status":1,"name":"Aeon Capri-29-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"49","image":"/w/p/wp07-black_main.jpg","small_image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","url_key":"aeon-capri-29-black","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP07-29-Blue","id":1864,"status":1,"name":"Aeon Capri-29-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"50","image":"/w/p/wp07-blue_main.jpg","small_image":"/w/p/wp07-blue_main.jpg","thumbnail":"/w/p/wp07-blue_main.jpg","url_key":"aeon-capri-29-blue","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP07-29-Orange","id":1865,"status":1,"name":"Aeon Capri-29-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"56","image":"/w/p/wp07-orange_main.jpg","small_image":"/w/p/wp07-orange_main.jpg","thumbnail":"/w/p/wp07-orange_main.jpg","url_key":"aeon-capri-29-orange","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001}],"configurable_options":[{"id":259,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":1866,"attribute_code":"color"},{"id":258,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1866,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-1866.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1859","_score":1,"_source":{"id":1859,"sku":"WP06","name":"Diana Tights","attribute_set_id":10,"price":59,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":59,"description":"

                  Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                  \n

                  • Black legging with slate details.
                  • Flat-lock, chafe-free side seams.
                  • Vented gusset.
                  • Secret interior pocket.
                  • Sustainable and recycled fabric.

                  ","image":"/w/p/wp06-black_main.jpg","small_image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"diana-tights","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[150,38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[107,109],"pattern":"197","climate":[202,204,205,206,208,209],"slug":"diana-tights-1859","links":{},"stock":{"item_id":1859,"product_id":1859,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_outfit.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP06-28-Black","id":1853,"status":1,"name":"Diana Tights-28-Black","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"49","image":"/w/p/wp06-black_main.jpg","small_image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","url_key":"diana-tights-28-black","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WP06-28-Blue","id":1854,"status":1,"name":"Diana Tights-28-Blue","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"50","image":"/w/p/wp06-blue_main.jpg","small_image":"/w/p/wp06-blue_main.jpg","thumbnail":"/w/p/wp06-blue_main.jpg","url_key":"diana-tights-28-blue","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WP06-28-Orange","id":1855,"status":1,"name":"Diana Tights-28-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"56","image":"/w/p/wp06-orange_main.jpg","small_image":"/w/p/wp06-orange_main.jpg","thumbnail":"/w/p/wp06-orange_main.jpg","url_key":"diana-tights-28-orange","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WP06-29-Black","id":1856,"status":1,"name":"Diana Tights-29-Black","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"49","image":"/w/p/wp06-black_main.jpg","small_image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","url_key":"diana-tights-29-black","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WP06-29-Blue","id":1857,"status":1,"name":"Diana Tights-29-Blue","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"50","image":"/w/p/wp06-blue_main.jpg","small_image":"/w/p/wp06-blue_main.jpg","thumbnail":"/w/p/wp06-blue_main.jpg","url_key":"diana-tights-29-blue","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WP06-29-Orange","id":1858,"status":1,"name":"Diana Tights-29-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"56","image":"/w/p/wp06-orange_main.jpg","small_image":"/w/p/wp06-orange_main.jpg","thumbnail":"/w/p/wp06-orange_main.jpg","url_key":"diana-tights-29-orange","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001}],"configurable_options":[{"id":257,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":1859,"attribute_code":"color"},{"id":256,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1859,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-1859.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1908","_score":1,"_source":{"id":1908,"sku":"WP13","name":"Portia Capri","attribute_set_id":10,"price":49,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":49,"description":"

                  From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                  \n

                  • Salmon heather capri sweats.
                  • Relaxed fit, high waist.
                  • Inseam: 21\".
                  • Wide elastic waistband.
                  • Machine wash/dry.

                  ","image":"/w/p/wp13-orange_main.jpg","small_image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"portia-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":"107","pattern":"197","climate":[205,212,206],"slug":"portia-capri-1908","links":{},"stock":{"item_id":1908,"product_id":1908,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp13-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP13-28-Blue","id":1902,"status":1,"name":"Portia Capri-28-Blue","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"50","image":"/w/p/wp13-blue_main.jpg","small_image":"/w/p/wp13-blue_main.jpg","thumbnail":"/w/p/wp13-blue_main.jpg","url_key":"portia-capri-28-blue","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"WP13-28-Green","id":1903,"status":1,"name":"Portia Capri-28-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"53","image":"/w/p/wp13-green_main.jpg","small_image":"/w/p/wp13-green_main.jpg","thumbnail":"/w/p/wp13-green_main.jpg","url_key":"portia-capri-28-green","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"WP13-28-Orange","id":1904,"status":1,"name":"Portia Capri-28-Orange","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"56","image":"/w/p/wp13-orange_main.jpg","small_image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","url_key":"portia-capri-28-orange","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"WP13-29-Blue","id":1905,"status":1,"name":"Portia Capri-29-Blue","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"50","image":"/w/p/wp13-blue_main.jpg","small_image":"/w/p/wp13-blue_main.jpg","thumbnail":"/w/p/wp13-blue_main.jpg","url_key":"portia-capri-29-blue","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"WP13-29-Green","id":1906,"status":1,"name":"Portia Capri-29-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"53","image":"/w/p/wp13-green_main.jpg","small_image":"/w/p/wp13-green_main.jpg","thumbnail":"/w/p/wp13-green_main.jpg","url_key":"portia-capri-29-green","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"WP13-29-Orange","id":1907,"status":1,"name":"Portia Capri-29-Orange","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"56","image":"/w/p/wp13-orange_main.jpg","small_image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","url_key":"portia-capri-29-orange","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001}],"configurable_options":[{"id":271,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":1908,"attribute_code":"color"},{"id":270,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1908,"attribute_code":"size"}],"color_options":[50,53,56],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-1908.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1926","_score":1,"_source":{"id":1926,"sku":"WSH02-28-Orange","name":"Maxima Drawstring Short-28-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                  \n

                  • Light gray run shorts
                  - cotton polyester.
                  • Contrast binding.
                  • 3\" inseam.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"maxima-drawstring-short-28-orange-1926","links":{},"stock":{"item_id":1926,"product_id":1926,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-28-orange-1926.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1927","_score":1,"_source":{"id":1927,"sku":"WSH02-28-Yellow","name":"Maxima Drawstring Short-28-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                  \n

                  • Light gray run shorts
                  - cotton polyester.
                  • Contrast binding.
                  • 3\" inseam.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-28-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"maxima-drawstring-short-28-yellow-1927","links":{},"stock":{"item_id":1927,"product_id":1927,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-28-yellow-1927.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1934","_score":1,"_source":{"id":1934,"sku":"WSH02-31-Gray","name":"Maxima Drawstring Short-31-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                  \n

                  • Light gray run shorts
                  - cotton polyester.
                  • Contrast binding.
                  • 3\" inseam.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-31-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"maxima-drawstring-short-31-gray-1934","links":{},"stock":{"item_id":1934,"product_id":1934,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-31-gray-1934.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1932","_score":1,"_source":{"id":1932,"sku":"WSH02-30-Orange","name":"Maxima Drawstring Short-30-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                  \n

                  • Light gray run shorts
                  - cotton polyester.
                  • Contrast binding.
                  • 3\" inseam.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-30-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"maxima-drawstring-short-30-orange-1932","links":{},"stock":{"item_id":1932,"product_id":1932,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-30-orange-1932.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1950","_score":1,"_source":{"id":1950,"sku":"WSH03-31-Blue","name":"Gwen Drawstring Bike Short-31-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

                  For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                  \n

                  • Dark heather gray rouched bike shorts.
                  • Fitted. Inseam: 2\".
                  • Machine wash/dry.

                  ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-31-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"gwen-drawstring-bike-short-31-blue-1950","links":{},"stock":{"item_id":1950,"product_id":1950,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-31-blue-1950.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1949","_score":1,"_source":{"id":1949,"sku":"WSH03-30-Orange","name":"Gwen Drawstring Bike Short-30-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

                  For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                  \n

                  • Dark heather gray rouched bike shorts.
                  • Fitted. Inseam: 2\".
                  • Machine wash/dry.

                  ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-30-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"gwen-drawstring-bike-short-30-orange-1949","links":{},"stock":{"item_id":1949,"product_id":1949,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-30-orange-1949.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1930","_score":1,"_source":{"id":1930,"sku":"WSH02-29-Yellow","name":"Maxima Drawstring Short-29-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                  \n

                  • Light gray run shorts
                  - cotton polyester.
                  • Contrast binding.
                  • 3\" inseam.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-29-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"maxima-drawstring-short-29-yellow-1930","links":{},"stock":{"item_id":1930,"product_id":1930,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-29-yellow-1930.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1915","_score":1,"_source":{"id":1915,"sku":"WSH01-30-Black","name":"Fiona Fitness Short-30-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                  \n

                  • Black run shorts
                  - cotton/spandex.
                  • 5” inseam.
                  • Machine wash/Line dry.

                  ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-30-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"fiona-fitness-short-30-black-1915","links":{},"stock":{"item_id":1915,"product_id":1915,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-30-black-1915.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1917","_score":1,"_source":{"id":1917,"sku":"WSH01-30-Red","name":"Fiona Fitness Short-30-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                  \n

                  • Black run shorts
                  - cotton/spandex.
                  • 5” inseam.
                  • Machine wash/Line dry.

                  ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-30-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"fiona-fitness-short-30-red-1917","links":{},"stock":{"item_id":1917,"product_id":1917,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-30-red-1917.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1921","_score":1,"_source":{"id":1921,"sku":"WSH01-32-Black","name":"Fiona Fitness Short-32-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                  \n

                  • Black run shorts
                  - cotton/spandex.
                  • 5” inseam.
                  • Machine wash/Line dry.

                  ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"fiona-fitness-short-32-black-1921","links":{},"stock":{"item_id":1921,"product_id":1921,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-32-black-1921.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1961","_score":1,"_source":{"id":1961,"sku":"WSH04-29-Green","name":"Artemis Running Short-29-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                  \n

                  • Black rouched shorts with mint waist.
                  • Soft, lightweight construction.
                  • LumaTech™ wicking technology.
                  • Semi-fitted.

                  ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"artemis-running-short-29-green-1961","links":{},"stock":{"item_id":1961,"product_id":1961,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-29-green-1961.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1959","_score":1,"_source":{"id":1959,"sku":"WSH04-28-Orange","name":"Artemis Running Short-28-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                  \n

                  • Black rouched shorts with mint waist.
                  • Soft, lightweight construction.
                  • LumaTech™ wicking technology.
                  • Semi-fitted.

                  ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"artemis-running-short-28-orange-1959","links":{},"stock":{"item_id":1959,"product_id":1959,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-28-orange-1959.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1899","_score":1,"_source":{"id":1899,"sku":"WP12-29-Gray","name":"Deirdre Relaxed-Fit Capri-29-Gray","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

                  Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                  \n

                  • Heather gray capris with mint green waist & accents.
                  • Comfortable, relaxed fit with high rise.
                  • Moisture-wicking, 4-way stretch construction.
                  • Lined with mesh for better support.
                  • Hidden pocket at waistband.
                  • Flatlock seams and lined gusset for comfort.

                  ","image":"/w/p/wp12-gray_main.jpg","small_image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","color":"52","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"deirdre-relaxed-fit-capri-29-gray-1899","links":{},"stock":{"item_id":1899,"product_id":1899,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-29-gray-1899.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1955","_score":1,"_source":{"id":1955,"sku":"WSH03-32-Orange","name":"Gwen Drawstring Bike Short-32-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

                  For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                  \n

                  • Dark heather gray rouched bike shorts.
                  • Fitted. Inseam: 2\".
                  • Machine wash/dry.

                  ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-32-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"gwen-drawstring-bike-short-32-orange-1955","links":{},"stock":{"item_id":1955,"product_id":1955,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-32-orange-1955.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1987","_score":1,"_source":{"id":1987,"sku":"WSH05-32-Yellow","name":"Bess Yoga Short-32-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                  \n

                  • Navy cotton shorts with light bue waist detail.
                  • Front shirred waistband.
                  • Flat-lock, chafe-free side seams.
                  • Vented gusset.
                  • Hidden interior pocket.
                  • Sustainable and recycled fabric.

                  ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-32-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"bess-yoga-short-32-yellow-1987","links":{},"stock":{"item_id":1987,"product_id":1987,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-32-yellow-1987.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1990","_score":1,"_source":{"id":1990,"sku":"WSH06-28-Orange","name":"Angel Light Running Short-28-Orange","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                  \n

                  • Dark heather gray running shorts.
                  • Snug fit.
                  • Elastic waistband.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh06-orange_main.jpg","small_image":"/w/s/wsh06-orange_main.jpg","thumbnail":"/w/s/wsh06-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"angel-light-running-short-28-orange-1990","links":{},"stock":{"item_id":1990,"product_id":1990,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-28-orange-1990.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1993","_score":1,"_source":{"id":1993,"sku":"WSH06-29-Orange","name":"Angel Light Running Short-29-Orange","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                  \n

                  • Dark heather gray running shorts.
                  • Snug fit.
                  • Elastic waistband.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh06-orange_main.jpg","small_image":"/w/s/wsh06-orange_main.jpg","thumbnail":"/w/s/wsh06-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"angel-light-running-short-29-orange-1993","links":{},"stock":{"item_id":1993,"product_id":1993,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-29-orange-1993.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2000","_score":1,"_source":{"id":2000,"sku":"WSH07-29-Blue","name":"Echo Fit Compression Short-29-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                  \n

                  • Black compression shorts.
                  • High-waisted cut.
                  • Compression fit.
                  • Inseam: 1.0\".
                  • Machine wash/dry.

                  ","image":"/w/s/wsh07-blue_main.jpg","small_image":"/w/s/wsh07-blue_main.jpg","thumbnail":"/w/s/wsh07-blue_main.jpg","color":"50","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"echo-fit-compression-short-29-blue-2000","links":{},"stock":{"item_id":2000,"product_id":2000,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-29-blue-2000.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1972","_score":1,"_source":{"id":1972,"sku":"WSH04","name":"Artemis Running Short","attribute_set_id":10,"price":45,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":45,"description":"

                  Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                  \n

                  • Black rouched shorts with mint waist.
                  • Soft, lightweight construction.
                  • LumaTech™ wicking technology.
                  • Semi-fitted.

                  ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"artemis-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"106","pattern":"198","climate":[202,205,212,206,209],"slug":"artemis-running-short-1972","links":{},"stock":{"item_id":1972,"product_id":1972,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH04-28-Black","id":1957,"status":1,"name":"Artemis Running Short-28-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"49","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","url_key":"artemis-running-short-28-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-28-Green","id":1958,"status":1,"name":"Artemis Running Short-28-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"53","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","url_key":"artemis-running-short-28-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-28-Orange","id":1959,"status":1,"name":"Artemis Running Short-28-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"56","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","url_key":"artemis-running-short-28-orange","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-29-Black","id":1960,"status":1,"name":"Artemis Running Short-29-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"49","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","url_key":"artemis-running-short-29-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-29-Green","id":1961,"status":1,"name":"Artemis Running Short-29-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"53","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","url_key":"artemis-running-short-29-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-29-Orange","id":1962,"status":1,"name":"Artemis Running Short-29-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"56","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","url_key":"artemis-running-short-29-orange","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-30-Black","id":1963,"status":1,"name":"Artemis Running Short-30-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"174","color":"49","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","url_key":"artemis-running-short-30-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-30-Green","id":1964,"status":1,"name":"Artemis Running Short-30-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"174","color":"53","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","url_key":"artemis-running-short-30-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-30-Orange","id":1965,"status":1,"name":"Artemis Running Short-30-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"174","color":"56","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","url_key":"artemis-running-short-30-orange","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-31-Black","id":1966,"status":1,"name":"Artemis Running Short-31-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"175","color":"49","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","url_key":"artemis-running-short-31-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-31-Green","id":1967,"status":1,"name":"Artemis Running Short-31-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"175","color":"53","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","url_key":"artemis-running-short-31-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-31-Orange","id":1968,"status":1,"name":"Artemis Running Short-31-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"175","color":"56","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","url_key":"artemis-running-short-31-orange","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-32-Black","id":1969,"status":1,"name":"Artemis Running Short-32-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"176","color":"49","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","url_key":"artemis-running-short-32-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-32-Green","id":1970,"status":1,"name":"Artemis Running Short-32-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"176","color":"53","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","url_key":"artemis-running-short-32-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH04-32-Orange","id":1971,"status":1,"name":"Artemis Running Short-32-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"176","color":"56","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","url_key":"artemis-running-short-32-orange","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001}],"configurable_options":[{"id":279,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":1972,"attribute_code":"color"},{"id":278,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1972,"attribute_code":"size"}],"color_options":[49,53,56],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-1972.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2006","_score":1,"_source":{"id":2006,"sku":"WSH08-31-Purple","name":"Sybil Running Short-31-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                  Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

                  \n

                  • Blue running shorts with green waist.
                  • Drawstring-adjustable waist.
                  • 4\" inseam. Machine wash/line dry.

                  ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-31-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"sybil-running-short-31-purple-2006","links":{},"stock":{"item_id":2006,"product_id":2006,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-01-14 09:38:48","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-31-purple-2006.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2013","_score":1,"_source":{"id":2013,"sku":"WSH09-29-Green","name":"Mimi All-Purpose Short-29-Green","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

                  You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                  \n

                  • Gray/seafoam two-layer shorts.
                  • Water-resistant construction.
                  • Inner mesh brief for breathable support.
                  • 2.0\" inseam.
                  • Reflective trim for visibility.

                  ","image":"/w/s/wsh09-green_main.jpg","small_image":"/w/s/wsh09-green_main.jpg","thumbnail":"/w/s/wsh09-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"mimi-all-purpose-short-29-green-2013","links":{},"stock":{"item_id":2013,"product_id":2013,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-29-green-2013.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2027","_score":1,"_source":{"id":2027,"sku":"WSH11-29-Orange","name":"Ina Compression Short-29-Orange","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                  One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                  \n

                  • Royal blue bike shorts.
                  • Compression fit.
                  • Moisture-wicking.
                  • Anti-microbial.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh11-orange_main.jpg","small_image":"/w/s/wsh11-orange_main.jpg","thumbnail":"/w/s/wsh11-orange_main.jpg","color":"56","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ina-compression-short-29-orange-2027","links":{},"stock":{"item_id":2027,"product_id":2027,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-29-orange-2027.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2024","_score":1,"_source":{"id":2024,"sku":"WSH11-28-Orange","name":"Ina Compression Short-28-Orange","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                  One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                  \n

                  • Royal blue bike shorts.
                  • Compression fit.
                  • Moisture-wicking.
                  • Anti-microbial.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh11-orange_main.jpg","small_image":"/w/s/wsh11-orange_main.jpg","thumbnail":"/w/s/wsh11-orange_main.jpg","color":"56","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ina-compression-short-28-orange-2024","links":{},"stock":{"item_id":2024,"product_id":2024,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-28-orange-2024.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2028","_score":1,"_source":{"id":2028,"sku":"WSH11-29-Red","name":"Ina Compression Short-29-Red","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                  One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                  \n

                  • Royal blue bike shorts.
                  • Compression fit.
                  • Moisture-wicking.
                  • Anti-microbial.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh11-red_main.jpg","small_image":"/w/s/wsh11-red_main.jpg","thumbnail":"/w/s/wsh11-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ina-compression-short-29-red-2028","links":{},"stock":{"item_id":2028,"product_id":2028,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-29-red-2028.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2039","_score":1,"_source":{"id":2039,"sku":"WSH12-31-Green","name":"Erika Running Short-31-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                  \n

                  • Seafoam pattern running shorts.
                  • Elastic waistband.
                  • Snug fit.
                  • 4'' inseam.
                  • 76% premium brushed Nylon / 24% Spandex.

                  ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-31-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"erika-running-short-31-green-2039","links":{},"stock":{"item_id":2039,"product_id":2039,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-31-green-2039.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2022","_score":1,"_source":{"id":2022,"sku":"WSH10","name":"Ana Running Short","attribute_set_id":10,"price":40,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":40,"description":"

                  Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                  \n

                  • Black/pink two-layer shorts.
                  • Low-rise elastic waistband.
                  • Relaxed fit.
                  • Ultra-lightweight fabric.
                  • Internal drawstring.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh10-black_main.jpg","small_image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ana-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,154,38],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"106","pattern":"198","climate":[202,209],"slug":"ana-running-short-2022","links":{},"stock":{"item_id":2022,"product_id":2022,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH10-28-Black","id":2016,"status":1,"name":"Ana Running Short-28-Black","price":40,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","36","2"],"size":"172","color":"49","image":"/w/s/wsh10-black_main.jpg","small_image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","url_key":"ana-running-short-28-black","msrp_display_actual_price_type":"0","final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":49.200001},{"sku":"WSH10-28-Orange","id":2017,"status":1,"name":"Ana Running Short-28-Orange","price":40,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","36","2"],"size":"172","color":"56","image":"/w/s/wsh10-orange_main.jpg","small_image":"/w/s/wsh10-orange_main.jpg","thumbnail":"/w/s/wsh10-orange_main.jpg","url_key":"ana-running-short-28-orange","msrp_display_actual_price_type":"0","final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":49.200001},{"sku":"WSH10-28-White","id":2018,"status":1,"name":"Ana Running Short-28-White","price":40,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","36","2"],"size":"172","color":"59","image":"/w/s/wsh10-white_main.jpg","small_image":"/w/s/wsh10-white_main.jpg","thumbnail":"/w/s/wsh10-white_main.jpg","url_key":"ana-running-short-28-white","msrp_display_actual_price_type":"0","final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":49.200001},{"sku":"WSH10-29-Black","id":2019,"status":1,"name":"Ana Running Short-29-Black","price":40,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","36","2"],"size":"173","color":"49","image":"/w/s/wsh10-black_main.jpg","small_image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","url_key":"ana-running-short-29-black","msrp_display_actual_price_type":"0","final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":49.200001},{"sku":"WSH10-29-Orange","id":2020,"status":1,"name":"Ana Running Short-29-Orange","price":40,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","36","2"],"size":"173","color":"56","image":"/w/s/wsh10-orange_main.jpg","small_image":"/w/s/wsh10-orange_main.jpg","thumbnail":"/w/s/wsh10-orange_main.jpg","url_key":"ana-running-short-29-orange","msrp_display_actual_price_type":"0","final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":49.200001},{"sku":"WSH10-29-White","id":2021,"status":1,"name":"Ana Running Short-29-White","price":40,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","36","2"],"size":"173","color":"59","image":"/w/s/wsh10-white_main.jpg","small_image":"/w/s/wsh10-white_main.jpg","thumbnail":"/w/s/wsh10-white_main.jpg","url_key":"ana-running-short-29-white","msrp_display_actual_price_type":"0","final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":49.200001}],"configurable_options":[{"id":291,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":59,"label":"White"}],"product_id":2022,"attribute_code":"color"},{"id":290,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":2022,"attribute_code":"size"}],"color_options":[49,56,59],"size_options":[172,173],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-2022.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"9","_score":1,"_source":{"id":9,"sku":"24-WB02","name":"Compete Track Tote","attribute_set_id":15,"price":32,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:24","updated_at":"2017-11-06 12:16:24","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Compete Track Tote holds a host of exercise supplies with ease. Stash your towel, jacket and street shoes inside. Tuck water bottles in easy-access external spaces. Perfect for trips to gym or yoga studio, with dual top handles for convenience to and from.

                  \n

                    \n
                  • Two-way zippers.
                  • \n
                  • Contrast detailing.
                  • \n
                  • W 22.0\" x H 17\" x D 10\".
                  • \n
                  ","image":"/w/b/wb02-green-0.jpg","small_image":"/w/b/wb02-green-0.jpg","thumbnail":"/w/b/wb02-green-0.jpg","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"compete-track-tote","tax_class_id":"2","activity":[11,20,8],"style_bags":[29,30],"material":[37,38,39],"strap_bags":[61,64,66],"features_bags":[74,75,77],"slug":"compete-track-tote-9","links":{},"stock":{"item_id":9,"product_id":9,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-green-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/equipaggiamento-3/compete-track-tote-9.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"8","_score":1,"_source":{"id":8,"sku":"24-WB01","name":"Voyage Yoga Bag - tier price","attribute_set_id":15,"price":32,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:24","updated_at":"2018-08-22 09:32:35","product_links":[],"tier_prices":[{"customer_group_id":1,"qty":1,"value":15,"extension_attributes":{"website_id":0}}],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  Everything you need for a trip to the gym will fit inside this surprisingly spacious Voyage Yoga Bag. Stock it with a water bottle, change of clothes, pair of shoes, and even a few beauty products. Fits inside a locker and zips shut for security.

                  \r\n
                    \r\n
                  • Slip pocket on front.
                  • \r\n
                  • Contrast piping.
                  • \r\n
                  • Durable nylon construction.
                  • \r\n
                  ","image":"/w/b/wb01-black-0.jpg","small_image":"/w/b/wb01-black-0.jpg","thumbnail":"/w/b/wb01-black-0.jpg","color":"49","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"voyage-yoga-bag","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[11,8],"style_bags":[29,30],"material":[37,38],"strap_bags":[64,66],"features_bags":[74,77,79],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"voyage-yoga-bag-tier-price-8","links":{},"stock":{"item_id":8,"product_id":8,"stock_id":1,"qty":43,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-black-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/equipaggiamento-3/voyage-yoga-bag-tier-price-8.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"5","_score":1,"_source":{"id":5,"sku":"24-MB06","name":"Rival Field Messenger","attribute_set_id":15,"price":45,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:23","updated_at":"2017-11-06 12:16:23","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  The Rival Field Messenger packs all your campus, studio or trail essentials inside a unique design of soft, textured leather - with loads of character to spare. Two exterior pockets keep all your smaller items handy, and the roomy interior offers even more space.

                  \n
                    \n
                  • Leather construction.
                  • \n
                  • Adjustable fabric carry strap.
                  • \n
                  • Dimensions: 18\" x 10\" x 4\".
                  • \n
                  ","image":"/m/b/mb06-gray-0.jpg","small_image":"/m/b/mb06-gray-0.jpg","thumbnail":"/m/b/mb06-gray-0.jpg","category_ids":[3,7,4,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rival-field-messenger","tax_class_id":"2","activity":[22,23],"style_bags":[27,28,29],"material":[35,37,41],"strap_bags":[61,62,66,67],"features_bags":[73,75,78],"new":"1","slug":"rival-field-messenger-5","links":{},"stock":{"item_id":5,"product_id":5,"stock_id":1,"qty":32,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/b/mb06-gray-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/equipaggiamento-3/rival-field-messenger-5.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"30","_score":1,"_source":{"id":30,"sku":"24-WG083-gray","name":"Sprite Stasis Ball 75 cm","attribute_set_id":12,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                  \n
                    \n
                  • 75 cm plastic shell.
                  • \n
                  • Durable, burst-resistant design.
                  • \n
                  • Hand pump included.
                  • \n
                  ","image":"/l/u/luma-stability-ball-gray.jpg","small_image":"/l/u/luma-stability-ball-gray.jpg","thumbnail":"/l/u/luma-stability-ball-gray.jpg","color":"52","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-75-cm-gray","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"93","slug":"sprite-stasis-ball-75-cm-30","links":{},"stock":{"item_id":30,"product_id":30,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball-gray.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-stasis-ball-75-cm-30.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"12","_score":1,"_source":{"id":12,"sku":"24-WB03","name":"Driven Backpack","attribute_set_id":15,"price":36,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:25","updated_at":"2017-11-06 12:16:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44.280001,"max_price":44.280001,"max_regular_price":44.280001,"minimal_regular_price":44.280001,"special_price":null,"minimal_price":44.280001,"regular_price":44.280001,"description":"

                  School books, camp gear and yoga clothes get along just fine in the all-purpose Driven Backpack. Crafted with tough polyester ripstop fabric, it's outfitted with rubberized end panels and padded, adjustable shoulder straps. The roomy main compartment features molded foam pockets that host everything you need.

                  \n
                    \n
                  • Large main and small zip compartments.
                  • \n
                  • Adjustable, padded straps.
                  • \n
                  • Interior foam pockets.
                  • \n
                  • Exterior zip compartment.
                  • \n
                  • Left sport bottle pocket.
                  • \n
                  • Survival gear sold separately.
                  • \n
                  ","image":"/w/b/wb03-purple-0.jpg","small_image":"/w/b/wb03-purple-0.jpg","thumbnail":"/w/b/wb03-purple-0.jpg","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"driven-backpack","tax_class_id":"2","activity":[11,20,8],"style_bags":[24,28,29],"material":[36,37,38],"strap_bags":[61,64,65],"features_bags":[71,72,75,78],"slug":"driven-backpack-12","links":{},"stock":{"item_id":12,"product_id":12,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-purple-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/equipaggiamento-3/driven-backpack-12.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"21","_score":1,"_source":{"id":21,"sku":"24-WG084","name":"Sprite Foam Yoga Brick","attribute_set_id":11,"price":5,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2017-11-06 12:16:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":6.150001,"max_price":6.150001,"max_regular_price":6.150001,"minimal_regular_price":6.150001,"special_price":null,"minimal_price":6.150001,"regular_price":6.150001,"description":"

                  Our top-selling yoga prop, the 4-inch, high-quality Sprite Foam Yoga Brick is popular among yoga novices and studio professionals alike. An essential yoga accessory, the yoga brick is a critical tool for finding balance and alignment in many common yoga poses. Choose from 5 color options.

                  \n
                    \n
                  • Standard Large Size: 4\" x 6\" x 9\".\n
                  • Beveled edges for ideal contour grip.\n
                  • Durable and soft, scratch-proof foam.\n
                  • Individually wrapped.\n
                  • Ten color choices.\n
                  ","image":"/l/u/luma-yoga-brick.jpg","small_image":"/l/u/luma-yoga-brick.jpg","thumbnail":"/l/u/luma-yoga-brick.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-foam-yoga-brick","tax_class_id":"2","activity":[8,9,17,11],"material":"42","gender":[80,81,84],"category_gear":"87","slug":"sprite-foam-yoga-brick-21","links":{},"stock":{"item_id":21,"product_id":21,"stock_id":1,"qty":42,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-yoga-brick.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-foam-yoga-brick-21.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"42","_score":1,"_source":{"id":42,"sku":"24-WG01","name":"Bolo Sport Watch","attribute_set_id":11,"price":49,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":"49.0000","minimal_price":60.270001,"regular_price":60.270001,"description":"

                  The Bolo Sport Watch is sleek, sporty and sized just right to fit your smaller wrist. Easy to read and set up, it features a large digital face and button-activated alarm and stopwatch. The soft-touch resin band promises no-pinch comfort, while the water-resistant design lets you take your workout to the lap pool.

                  \n
                    \n
                  • Displays time, day and date.
                  • \n
                  • Two-tone design.
                  • \n
                  • 12/24 hour formats.
                  • \n
                  • Nickel-free buckle on band.
                  • \n
                  • Battery included.
                  • \n
                  ","special_from_date":"2017-11-06 12:16:30","image":"/w/g/wg01-bk-0.jpg","small_image":"/w/g/wg01-bk-0.jpg","thumbnail":"/w/g/wg01-bk-0.jpg","category_ids":[3,6],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bolo-sport-watch","tax_class_id":"2","activity":[9,17],"material":"48","gender":"81","category_gear":[86,87,90],"sale":"1","slug":"bolo-sport-watch-42","links":{},"stock":{"item_id":42,"product_id":42,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/g/wg01-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"}],"url_path":"gear/equipaggiamento-3/bolo-sport-watch-42.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"10","_score":1,"_source":{"id":10,"sku":"24-WB05","name":"Savvy Shoulder Tote","attribute_set_id":15,"price":32,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:25","updated_at":"2017-11-06 12:16:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":"24.0000","minimal_price":29.520001,"regular_price":39.360001,"description":"

                  Powerwalking to the gym or strolling to the local coffeehouse, the Savvy Shoulder Tote lets you stash your essentials in sporty style! A top-loading compartment provides quick and easy access to larger items, while zippered pockets on the front and side hold cash, credit cards and phone.

                  \n
                    \n
                  • Water-resistant shell.
                  • \n
                  • Water bottle pocket.
                  • \n
                  • Padded, articulating shoulder strap.
                  • \n
                  • Dimensions: W 21\" x H 15\" x D 10\".
                  • \n
                  ","special_from_date":"2017-11-06 12:16:25","image":"/w/b/wb05-red-0.jpg","small_image":"/w/b/wb05-red-0.jpg","thumbnail":"/w/b/wb05-red-0.jpg","category_ids":[3,7,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"savvy-shoulder-tote","tax_class_id":"2","activity":[11,8],"style_bags":[29,30],"strap_bags":[61,62,66,67],"features_bags":[72,75],"erin_recommends":"1","sale":"1","slug":"savvy-shoulder-tote-10","links":{},"stock":{"item_id":10,"product_id":10,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-red-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/equipaggiamento-3/savvy-shoulder-tote-10.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"32","_score":1,"_source":{"id":32,"sku":"24-WG083-blue","name":"Sprite Stasis Ball 75 cm","attribute_set_id":12,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                  \n
                    \n
                  • 75 cm plastic shell.
                  • \n
                  • Durable, burst-resistant design.
                  • \n
                  • Hand pump included.
                  • \n
                  ","image":"/l/u/luma-stability-ball.jpg","small_image":"/l/u/luma-stability-ball.jpg","thumbnail":"/l/u/luma-stability-ball.jpg","color":"50","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-75-cm-blue","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"93","slug":"sprite-stasis-ball-75-cm-32","links":{},"stock":{"item_id":32,"product_id":32,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-stasis-ball-75-cm-32.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"33","_score":1,"_source":{"id":33,"sku":"24-WG085","name":"Sprite Yoga Strap 6 foot - tier price","attribute_set_id":13,"price":14,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2018-08-22 09:34:15","product_links":[],"tier_prices":[{"customer_group_id":1,"qty":1,"value":10,"extension_attributes":{"website_id":0}}],"custom_attributes":null,"description":"

                  The Sprite Yoga Strap is your untiring partner in demanding stretches, holds and alignment routines. The strap's 100% organic cotton fabric is woven tightly to form a soft, textured yet non-slip surface. The plastic clasp buckle is easily adjustable, lightweight and durable under strain.

                  \r\n
                    \r\n
                  • 100% soft and durable cotton.\r\n
                  • Plastic cinch buckle is easy to use.\r\n
                  • Three natural colors made from phthalate and heavy metal free dyes.\r\n
                  ","image":"/l/u/luma-yoga-strap.jpg","small_image":"/l/u/luma-yoga-strap.jpg","thumbnail":"/l/u/luma-yoga-strap.jpg","color":"49","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-yoga-strap-6-foot","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":"8","material":[32,44],"gender":[80,81,84],"category_gear":"87","size":"94","slug":"sprite-yoga-strap-6-foot-tier-price-33","links":{},"stock":{"item_id":33,"product_id":33,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-02-06 09:20:56","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/l/u/luma-yoga-strap.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-yoga-strap-6-foot-tier-price-33.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"34","_score":1,"_source":{"id":34,"sku":"24-WG086","name":"Sprite Yoga Strap 8 foot","attribute_set_id":13,"price":17,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20.910001,"max_price":20.910001,"max_regular_price":20.910001,"minimal_regular_price":20.910001,"special_price":null,"minimal_price":20.910001,"regular_price":20.910001,"description":"

                  The Sprite Yoga Strap is your untiring partner in demanding stretches, holds and alignment routines. The strap's 100% organic cotton fabric is woven tightly to form a soft, textured yet non-slip surface. The plastic clasp buckle is easily adjustable, lightweight and durable under strain.

                  \n
                    \n
                  • 8' long x 1.0\" wide.\n
                  • 100% soft and durable cotton.\n
                  • Plastic cinch buckle is easy to use.\n
                  • Three natural colors made from phthalate and heavy metal free dyes.\n
                  ","image":"/l/u/luma-yoga-strap.jpg","small_image":"/l/u/luma-yoga-strap.jpg","thumbnail":"/l/u/luma-yoga-strap.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-yoga-strap-8-foot","tax_class_id":"2","activity":"8","material":[32,44],"gender":[80,81,84],"category_gear":"87","size":"95","slug":"sprite-yoga-strap-8-foot-34","links":{},"stock":{"item_id":34,"product_id":34,"stock_id":1,"qty":29,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-yoga-strap.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-yoga-strap-8-foot-34.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"78","_score":1,"_source":{"id":78,"sku":"MH02-L-Purple","name":"Teton Pullover Hoodie-L-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

                  This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                  \n

                  • Black pullover hoodie.
                  • Soft, brushed interior.
                  • Front hand pockets.
                  • Machine wash/dry.

                  ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"teton-pullover-hoodie-l-purple-78","links":{},"stock":{"item_id":78,"product_id":78,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-l-purple-78.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"65","_score":1,"_source":{"id":65,"sku":"MH01-XL-Gray","name":"Chaz Kangeroo Hoodie-XL-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                  Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                  \n

                  • Two-tone gray heather hoodie.
                  • Drawstring-adjustable hood.
                  • Machine wash/dry.

                  ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chaz-kangeroo-hoodie-xl-gray-65","links":{},"stock":{"item_id":65,"product_id":65,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xl-gray-65.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"88","_score":1,"_source":{"id":88,"sku":"MH03-S-Blue","name":"Bruno Compete Hoodie-S-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

                  Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                  \n

                  • Full zip black hoodie pullover.
                  • Adjustable drawstring hood.
                  • Ribbed cuffs/waistband.
                  • Kangaroo pocket.
                  • Machine wash/dry.

                  ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bruno-compete-hoodie-s-blue-88","links":{},"stock":{"item_id":88,"product_id":88,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-s-blue-88.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"96","_score":1,"_source":{"id":96,"sku":"MH03-XL-Black","name":"Bruno Compete Hoodie-XL-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

                  Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                  \n

                  • Full zip black hoodie pullover.
                  • Adjustable drawstring hood.
                  • Ribbed cuffs/waistband.
                  • Kangaroo pocket.
                  • Machine wash/dry.

                  ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bruno-compete-hoodie-xl-black-96","links":{},"stock":{"item_id":96,"product_id":96,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xl-black-96.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"82","_score":1,"_source":{"id":82,"sku":"MH02-XL-Red","name":"Teton Pullover Hoodie-XL-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

                  This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                  \n

                  • Black pullover hoodie.
                  • Soft, brushed interior.
                  • Front hand pockets.
                  • Machine wash/dry.

                  ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"teton-pullover-hoodie-xl-red-82","links":{},"stock":{"item_id":82,"product_id":82,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xl-red-82.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"87","_score":1,"_source":{"id":87,"sku":"MH03-S-Black","name":"Bruno Compete Hoodie-S-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

                  Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                  \n

                  • Full zip black hoodie pullover.
                  • Adjustable drawstring hood.
                  • Ribbed cuffs/waistband.
                  • Kangaroo pocket.
                  • Machine wash/dry.

                  ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bruno-compete-hoodie-s-black-87","links":{},"stock":{"item_id":87,"product_id":87,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-s-black-87.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"59","_score":1,"_source":{"id":59,"sku":"MH01-M-Gray","name":"Chaz Kangeroo Hoodie-M-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                  Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                  \n

                  • Two-tone gray heather hoodie.
                  • Drawstring-adjustable hood.
                  • Machine wash/dry.

                  ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chaz-kangeroo-hoodie-m-gray-59","links":{},"stock":{"item_id":59,"product_id":59,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-m-gray-59.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"62","_score":1,"_source":{"id":62,"sku":"MH01-L-Gray","name":"Chaz Kangeroo Hoodie-L-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                  Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                  \n

                  • Two-tone gray heather hoodie.
                  • Drawstring-adjustable hood.
                  • Machine wash/dry.

                  ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chaz-kangeroo-hoodie-l-gray-62","links":{},"stock":{"item_id":62,"product_id":62,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-l-gray-62.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"70","_score":1,"_source":{"id":70,"sku":"MH02-XS-Red","name":"Teton Pullover Hoodie-XS-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

                  This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                  \n

                  • Black pullover hoodie.
                  • Soft, brushed interior.
                  • Front hand pockets.
                  • Machine wash/dry.

                  ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"teton-pullover-hoodie-xs-red-70","links":{},"stock":{"item_id":70,"product_id":70,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xs-red-70.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"100","_score":1,"_source":{"id":100,"sku":"MH04-XS-Green","name":"Frankie Sweatshirt-XS-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                  \n

                  • Light green crewneck sweatshirt.
                  • Hand pockets.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"frankie-sweatshirt-xs-green-100","links":{},"stock":{"item_id":100,"product_id":100,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xs-green-100.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"94","_score":1,"_source":{"id":94,"sku":"MH03-L-Blue","name":"Bruno Compete Hoodie-L-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

                  Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                  \n

                  • Full zip black hoodie pullover.
                  • Adjustable drawstring hood.
                  • Ribbed cuffs/waistband.
                  • Kangaroo pocket.
                  • Machine wash/dry.

                  ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bruno-compete-hoodie-l-blue-94","links":{},"stock":{"item_id":94,"product_id":94,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-l-blue-94.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"33","_score":1,"_source":{"id":33,"parent_id":29,"name":"Tees","is_active":true,"position":4,"level":3,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/33","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"tees-33","url_path":"promotions/tees-all/tees-33","slug":"tees-33","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"32","_score":1,"_source":{"id":32,"parent_id":29,"name":"Pants","is_active":true,"position":3,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/32","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"pants-32","url_path":"promotions/pants-all/pants-32","slug":"pants-32","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"8","_score":1,"_source":{"id":8,"parent_id":7,"name":"New Luma Yoga Collection","is_active":true,"position":1,"level":3,"product_count":347,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/7/8","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"new-luma-yoga-collection-8","url_path":"collections/yoga-new/new-luma-yoga-collection-8","slug":"new-luma-yoga-collection-8","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"34","_score":1,"_source":{"id":34,"parent_id":7,"name":"Erin Recommends","is_active":true,"position":2,"level":3,"product_count":279,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/34","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"erin-recommends-34","url_path":"collections/erin-recommends/erin-recommends-34","slug":"erin-recommends-34","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"21","_score":1,"_source":{"id":21,"parent_id":20,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"id":23,"parent_id":21,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":186,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/23","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"jackets-23","url_path":"women/tops-women/jackets-women/jackets-23","slug":"jackets-23"},{"id":24,"parent_id":21,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":182,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/24","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-24","url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","slug":"hoodies-and-sweatshirts-24"},{"id":25,"parent_id":21,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/25","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-25","url_path":"women/tops-women/tees-women/tees-25","slug":"tees-25"},{"id":26,"parent_id":21,"name":"Bras & Tanks","is_active":true,"position":4,"level":4,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/26","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bras-and-tanks-26","url_path":"women/tops-women/tanks-women/bras-and-tanks-26","slug":"bras-and-tanks-26"}],"children":"23,24,25,26","created_at":"2017-11-06 12:16:41","updated_at":"2019-01-03 10:35:27","path":"1/2/20/21","available_sort_by":[],"include_in_menu":true,"meta_title":"Women Tops","meta_description":"Best women tops on vuestorefront.","display_mode":"PRODUCTS","is_anchor":"1","children_count":"4","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"tops-21","url_path":"women/tops-women/tops-21","slug":"tops-21","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"12","_score":1,"_source":{"id":12,"parent_id":11,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"id":14,"parent_id":12,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":176,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:10:23","path":"1/2/11/12/14","available_sort_by":[],"include_in_menu":true,"description":"

                  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum dui sapien, bibendum ac luctus sed, lobortis id lacus. Nulla nisi augue, accumsan id sapien maximus, hendrerit vehicula elit.

                  ","display_mode":"PRODUCTS","is_anchor":"1","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"jackets-14","url_path":"men/tops-men/jackets-men/jackets-14","slug":"jackets-14"},{"id":15,"parent_id":12,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":208,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/15","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-15","url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","slug":"hoodies-and-sweatshirts-15"},{"id":16,"parent_id":12,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/16","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-16","url_path":"men/tops-men/tees-men/tees-16","slug":"tees-16"},{"id":17,"parent_id":12,"name":"Tanks","is_active":true,"position":4,"level":4,"product_count":102,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/17","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tanks-17","url_path":"men/tops-men/tanks-men/tanks-17","slug":"tanks-17"}],"children":"14,15,16,17","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"4","url_key":"tops-12","url_path":"men/tops-men/tops-12","slug":"tops-12","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"104","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":104,"attribute_code":"page_layout","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"No layout updates","value":""},{"label":"Empty","value":"empty"},{"label":"1 column","value":"1column"},{"label":"2 columns with left bar","value":"2columns-left"},{"label":"2 columns with right bar","value":"2columns-right"},{"label":"3 columns","value":"3columns"}],"is_user_defined":false,"default_frontend_label":"Layout","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Layout","is_unique":"0","validation_rules":[],"id":104,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"113","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":113,"attribute_code":"updated_at","frontend_input":"date","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":113,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"127","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":127,"attribute_code":"shipment_type","frontend_input":"select","entity_type_id":"4","is_required":true,"options":[{"label":"Together","value":"0"},{"label":"Separately","value":"1"}],"is_user_defined":false,"default_frontend_label":"Ship Bundle Items","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Bundle\\Model\\Product\\Attribute\\Source\\Shipment\\Type","default_value":"0","is_unique":"0","validation_rules":[],"id":127,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"135","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"1","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":135,"attribute_code":"activity","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Hike","value":"4"},{"label":"Outdoor","value":"5"},{"label":"Running","value":"6"},{"label":"Warmup","value":"7"},{"label":"Yoga","value":"8"},{"label":"Recreation","value":"9"},{"label":"Lounge","value":"10"},{"label":"Gym","value":"11"},{"label":"Climbing","value":"12"},{"label":"Crosstraining","value":"13"},{"label":"Post-workout","value":"14"},{"label":"Cycling","value":"15"},{"label":"Athletic","value":"16"},{"label":"Sports","value":"17"},{"label":"Hiking","value":"18"},{"label":"Overnight","value":"19"},{"label":"School","value":"20"},{"label":"Trail","value":"21"},{"label":"Travel","value":"22"},{"label":"Urban","value":"23"}],"is_user_defined":true,"default_frontend_label":"Activity","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":135,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"136","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":136,"attribute_code":"style_bags","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Backpack","value":"24"},{"label":"Luggage","value":"25"},{"label":"Duffel","value":"26"},{"label":"Messenger","value":"27"},{"label":"Laptop","value":"28"},{"label":"Exercise","value":"29"},{"label":"Tote","value":"30"}],"is_user_defined":true,"default_frontend_label":"Style Bags","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":136,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"137","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":137,"attribute_code":"material","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Burlap","value":"31"},{"label":"Cocona® performance fabric","value":"143"},{"label":"Canvas","value":"32"},{"label":"Wool","value":"144"},{"label":"Cotton","value":"33"},{"label":"Fleece","value":"145"},{"label":"Faux Leather","value":"34"},{"label":"Hemp","value":"146"},{"label":"Jersey","value":"147"},{"label":"Leather","value":"35"},{"label":"LumaTech™","value":"148"},{"label":"Mesh","value":"36"},{"label":"Lycra®","value":"149"},{"label":"Nylon","value":"37"},{"label":"Microfiber","value":"150"},{"label":"Polyester","value":"38"},{"label":"Rayon","value":"39"},{"label":"Spandex","value":"151"},{"label":"HeatTec®","value":"152"},{"label":"Ripstop","value":"40"},{"label":"EverCool™","value":"153"},{"label":"Suede","value":"41"},{"label":"Foam","value":"42"},{"label":"Organic Cotton","value":"154"},{"label":"Metal","value":"43"},{"label":"TENCEL","value":"155"},{"label":"CoolTech™","value":"156"},{"label":"Plastic","value":"44"},{"label":"Khaki","value":"157"},{"label":"Rubber","value":"45"},{"label":"Linen","value":"158"},{"label":"Synthetic","value":"46"},{"label":"Stainless Steel","value":"47"},{"label":"Wool","value":"159"},{"label":"Silicone","value":"48"},{"label":"Terry","value":"160"}],"is_user_defined":true,"default_frontend_label":"Material","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":137,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"142","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":142,"attribute_code":"size","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"55 cm","value":"91"},{"label":"XS","value":"167"},{"label":"65 cm","value":"92"},{"label":"S","value":"168"},{"label":"75 cm","value":"93"},{"label":"M","value":"169"},{"label":"6 foot","value":"94"},{"label":"L","value":"170"},{"label":"8 foot","value":"95"},{"label":"XL","value":"171"},{"label":"10 foot","value":"96"},{"label":"28","value":"172"},{"label":"29","value":"173"},{"label":"30","value":"174"},{"label":"31","value":"175"},{"label":"32","value":"176"},{"label":"33","value":"177"},{"label":"34","value":"178"},{"label":"36","value":"179"},{"label":"38","value":"180"}],"is_user_defined":true,"default_frontend_label":"Size","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"91","is_unique":"0","validation_rules":[],"id":142,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"146","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":146,"attribute_code":"new","frontend_input":"boolean","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"}],"is_user_defined":true,"default_frontend_label":"New","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean","default_value":"","is_unique":"0","validation_rules":[],"id":146,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"9","_score":1,"_source":{"id":9,"parent_id":2,"name":"Training","is_active":false,"position":5,"level":2,"product_count":6,"children_data":[{"id":10,"parent_id":9,"name":"Video Download","is_active":true,"position":1,"level":3,"product_count":6,"children_data":[],"children":"","created_at":"2017-11-06 12:16:31","updated_at":"2017-11-06 12:16:31","path":"1/2/9/10","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"video-download-10","url_path":"training/training-video/video-download-10","slug":"video-download-10"}],"children":"10","created_at":"2017-11-06 12:16:31","updated_at":"2018-05-27 14:04:30","path":"1/2/9","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"1","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"training-9","url_path":"training/training-9","slug":"training-9","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"10","_score":1,"_source":{"id":10,"parent_id":9,"name":"Video Download","is_active":true,"position":1,"level":3,"product_count":6,"children_data":[],"children":"","created_at":"2017-11-06 12:16:31","updated_at":"2017-11-06 12:16:31","path":"1/2/9/10","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"video-download-10","url_path":"training/training-video/video-download-10","slug":"video-download-10","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"5","_score":1,"_source":{"id":5,"parent_id":3,"name":"Fitness Equipment","is_active":true,"position":2,"level":3,"product_count":23,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/5","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"fitness-equipment-5","url_path":"gear/fitness-equipment/fitness-equipment-5","slug":"fitness-equipment-5","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"30","_score":1,"_source":{"id":30,"parent_id":29,"name":"Women Sale","is_active":true,"position":1,"level":3,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/30","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"women-sale-30","url_path":"promotions/women-sale/women-sale-30","slug":"women-sale-30","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"78","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":78,"attribute_code":"special_price","frontend_input":"price","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Special Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":78,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"82","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":82,"attribute_code":"weight","frontend_input":"weight","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Weight","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Weight","is_unique":"0","validation_rules":[],"id":82,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"87","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":87,"attribute_code":"image","frontend_input":"media_image","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Base","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":87,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"88","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":88,"attribute_code":"small_image","frontend_input":"media_image","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Small","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":88,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"94","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":94,"attribute_code":"news_from_date","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Set Product as New from Date","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate","is_unique":"0","validation_rules":[],"id":94,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"96","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":96,"attribute_code":"gallery","frontend_input":"gallery","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Image Gallery","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":96,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"100","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":100,"attribute_code":"custom_design","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"-- Please Select --","value":""},{"label":"Magento Blank","value":"1"},{"label":"Magento Luma","value":"2"}],"is_user_defined":false,"default_frontend_label":"New Theme","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Theme\\Model\\Theme\\Source\\Theme","is_unique":"0","validation_rules":[],"id":100,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"101","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":101,"attribute_code":"custom_design_from","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Active From","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate","is_unique":"0","validation_rules":[],"id":101,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"103","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":103,"attribute_code":"custom_layout_update","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Layout Update XML","frontend_labels":null,"backend_type":"text","backend_model":"Magento\\Catalog\\Model\\Attribute\\Backend\\Customlayoutupdate","is_unique":"0","validation_rules":[],"id":103,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"cms_block","_id":"8","_score":1,"_source":{"store_id":[0],"id":8,"identifier":"women-block","title":"Women Block","content":"\n
                  \n

                  Hot Sellers

                  \n

                  Favorites from Luma shoppers

                  \n
                  \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556377179572}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"cms_block","_id":"5","_score":1,"_source":{"store_id":[0],"id":5,"identifier":"men-left-menu-block","title":"Men Left Menu Block","content":"
                  Tops\n\n\nBottoms\n\n
                  ","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556377179572}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"cms_block","_id":"9","_score":1,"_source":{"store_id":[0],"id":9,"identifier":"training-block","title":"Training Block","content":"\n
                  \n

                  Top Videos

                  \n

                  Stream free with subscription

                  \n
                  \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556377179572}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"cms_block","_id":"10","_score":1,"_source":{"store_id":[0],"id":10,"identifier":"men-block","title":"Men Block","content":"\n
                  \n

                  Hot Sellers

                  \n

                  Favorites from Luma shoppers

                  \n
                  \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556377179572}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"cms_block","_id":"12","_score":1,"_source":{"store_id":[0],"id":12,"identifier":"sale-block","title":"Sale Block","content":"","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556377179572}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"cms_page","_id":"5","_score":1,"_source":{"store_id":[0],"id":5,"identifier":"about-us","title":"About us","page_layout":"1column","meta_keywords":"","meta_description":"","content_heading":"About us","content":"
                  \n

                  With more than 230 stores spanning 43 states and growing, Luma is a nationally recognized active wear manufacturer and retailer. We’re passionate about active lifestyles – and it goes way beyond apparel.

                  \n\n

                  At Luma, wellness is a way of life. We don’t believe age, gender or past actions define you, only your ambition and desire for wholeness... today.

                  \n\n

                  We differentiate ourselves through a combination of unique designs and styles merged with unequaled standards of quality and authenticity. Our founders have deep roots in yoga and health communities and our selections serve amateur practitioners and professional athletes alike.

                  \n\n \n
                  \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","sort_order":"0","layout_update_xml":"","custom_theme":"","custom_root_template":"","custom_layout_update_xml":"","active":true,"type":"cms_page","tsk":1556377182883}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"220","_score":1,"_source":{"id":220,"sku":"MH11-M-White","name":"Grayson Crewneck Sweatshirt -M-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

                  The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                  \n

                  • Cream crewneck sweatshirt with black accents.
                  • 80% cotton/20% polyester fleece.
                  • Patterned knit hood lining.
                  • Knit cuffs and waist.
                  • Pouch pocket.
                  • Curl edged seam detail

                  ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"grayson-crewneck-sweatshirt-m-white-220","links":{},"stock":{"item_id":220,"product_id":220,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-m-white-220.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"209","_score":1,"_source":{"id":209,"sku":"MH10-XL-Blue","name":"Mach Street Sweatshirt -XL-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

                  From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                  \n

                  • Navy heather crewneck sweatshirt.
                  • LumaTech™ moisture-wicking fabric.
                  • Antimicrobial, odor-resistant.
                  • Zip hand pockets.
                  • Chafe-resistant flatlock seams.
                  • Rib-knit cuffs and hem.

                  ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mach-street-sweatshirt-xl-blue-209","links":{},"stock":{"item_id":209,"product_id":209,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xl-blue-209.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"223","_score":1,"_source":{"id":223,"sku":"MH11-L-White","name":"Grayson Crewneck Sweatshirt -L-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

                  The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                  \n

                  • Cream crewneck sweatshirt with black accents.
                  • 80% cotton/20% polyester fleece.
                  • Patterned knit hood lining.
                  • Knit cuffs and waist.
                  • Pouch pocket.
                  • Curl edged seam detail

                  ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"grayson-crewneck-sweatshirt-l-white-223","links":{},"stock":{"item_id":223,"product_id":223,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-l-white-223.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"221","_score":1,"_source":{"id":221,"sku":"MH11-L-Orange","name":"Grayson Crewneck Sweatshirt -L-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

                  The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                  \n

                  • Cream crewneck sweatshirt with black accents.
                  • 80% cotton/20% polyester fleece.
                  • Patterned knit hood lining.
                  • Knit cuffs and waist.
                  • Pouch pocket.
                  • Curl edged seam detail

                  ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"grayson-crewneck-sweatshirt-l-orange-221","links":{},"stock":{"item_id":221,"product_id":221,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-l-orange-221.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"233","_score":1,"_source":{"id":233,"sku":"MH12-S-Red","name":"Ajax Full-Zip Sweatshirt -S-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                  \n

                  • Mint striped full zip hoodie.
                  • 100% bonded polyester fleece.
                  • Pouch pocket.
                  • Rib cuffs and hem.
                  • Machine washable.

                  ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ajax-full-zip-sweatshirt-s-red-233","links":{},"stock":{"item_id":233,"product_id":233,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-s-red-233.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"238","_score":1,"_source":{"id":238,"sku":"MH12-L-Green","name":"Ajax Full-Zip Sweatshirt -L-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                  \n

                  • Mint striped full zip hoodie.
                  • 100% bonded polyester fleece.
                  • Pouch pocket.
                  • Rib cuffs and hem.
                  • Machine washable.

                  ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ajax-full-zip-sweatshirt-l-green-238","links":{},"stock":{"item_id":238,"product_id":238,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-l-green-238.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"236","_score":1,"_source":{"id":236,"sku":"MH12-M-Red","name":"Ajax Full-Zip Sweatshirt -M-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                  \n

                  • Mint striped full zip hoodie.
                  • 100% bonded polyester fleece.
                  • Pouch pocket.
                  • Rib cuffs and hem.
                  • Machine washable.

                  ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ajax-full-zip-sweatshirt-m-red-236","links":{},"stock":{"item_id":236,"product_id":236,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-m-red-236.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"244","_score":1,"_source":{"id":244,"sku":"MH13-XS-Blue","name":"Marco Lightweight Active Hoodie-XS-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                  For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                  \n

                  • Light blue heather full zip hoodie.
                  • Fitted flatlock seams.
                  • Matching lining and drawstring.
                  • Machine wash/dry.

                  ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"marco-lightweight-active-hoodie-xs-blue-244","links":{},"stock":{"item_id":244,"product_id":244,"stock_id":1,"qty":53,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xs-blue-244.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"248","_score":1,"_source":{"id":248,"sku":"MH13-S-Green","name":"Marco Lightweight Active Hoodie-S-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                  For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                  \n

                  • Light blue heather full zip hoodie.
                  • Fitted flatlock seams.
                  • Matching lining and drawstring.
                  • Machine wash/dry.

                  ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"marco-lightweight-active-hoodie-s-green-248","links":{},"stock":{"item_id":248,"product_id":248,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-s-green-248.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"226","_score":1,"_source":{"id":226,"sku":"MH11-XL-White","name":"Grayson Crewneck Sweatshirt -XL-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

                  The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                  \n

                  • Cream crewneck sweatshirt with black accents.
                  • 80% cotton/20% polyester fleece.
                  • Patterned knit hood lining.
                  • Knit cuffs and waist.
                  • Pouch pocket.
                  • Curl edged seam detail

                  ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"grayson-crewneck-sweatshirt-xl-white-226","links":{},"stock":{"item_id":226,"product_id":226,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xl-white-226.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"214","_score":1,"_source":{"id":214,"sku":"MH11-XS-White","name":"Grayson Crewneck Sweatshirt -XS-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

                  The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                  \n

                  • Cream crewneck sweatshirt with black accents.
                  • 80% cotton/20% polyester fleece.
                  • Patterned knit hood lining.
                  • Knit cuffs and waist.
                  • Pouch pocket.
                  • Curl edged seam detail

                  ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"grayson-crewneck-sweatshirt-xs-white-214","links":{},"stock":{"item_id":214,"product_id":214,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xs-white-214.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"243","_score":1,"_source":{"id":243,"sku":"MH12","name":"Ajax Full-Zip Sweatshirt ","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":69,"description":"

                  The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                  \n

                  • Mint striped full zip hoodie.
                  • 100% bonded polyester fleece.
                  • Pouch pocket.
                  • Rib cuffs and hem.
                  • Machine washable.

                  ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ajax-full-zip-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"199","climate":[202,204,205,208,210],"slug":"ajax-full-zip-sweatshirt-243","links":{},"stock":{"item_id":243,"product_id":243,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH12-XS-Blue","id":228,"status":1,"name":"Ajax Full-Zip Sweatshirt -XS-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"50","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","url_key":"ajax-full-zip-sweatshirt-xs-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-XS-Green","id":229,"status":1,"name":"Ajax Full-Zip Sweatshirt -XS-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"53","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","url_key":"ajax-full-zip-sweatshirt-xs-green","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-XS-Red","id":230,"status":1,"name":"Ajax Full-Zip Sweatshirt -XS-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","url_key":"ajax-full-zip-sweatshirt-xs-red","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-S-Blue","id":231,"status":1,"name":"Ajax Full-Zip Sweatshirt -S-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"50","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","url_key":"ajax-full-zip-sweatshirt-s-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-S-Green","id":232,"status":1,"name":"Ajax Full-Zip Sweatshirt -S-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"53","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","url_key":"ajax-full-zip-sweatshirt-s-green","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-S-Red","id":233,"status":1,"name":"Ajax Full-Zip Sweatshirt -S-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","url_key":"ajax-full-zip-sweatshirt-s-red","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-M-Blue","id":234,"status":1,"name":"Ajax Full-Zip Sweatshirt -M-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"50","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","url_key":"ajax-full-zip-sweatshirt-m-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-M-Green","id":235,"status":1,"name":"Ajax Full-Zip Sweatshirt -M-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"53","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","url_key":"ajax-full-zip-sweatshirt-m-green","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-M-Red","id":236,"status":1,"name":"Ajax Full-Zip Sweatshirt -M-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","url_key":"ajax-full-zip-sweatshirt-m-red","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-L-Blue","id":237,"status":1,"name":"Ajax Full-Zip Sweatshirt -L-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"50","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","url_key":"ajax-full-zip-sweatshirt-l-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-L-Green","id":238,"status":1,"name":"Ajax Full-Zip Sweatshirt -L-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"53","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","url_key":"ajax-full-zip-sweatshirt-l-green","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-L-Red","id":239,"status":1,"name":"Ajax Full-Zip Sweatshirt -L-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","url_key":"ajax-full-zip-sweatshirt-l-red","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-XL-Blue","id":240,"status":1,"name":"Ajax Full-Zip Sweatshirt -XL-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"50","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","url_key":"ajax-full-zip-sweatshirt-xl-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-XL-Green","id":241,"status":1,"name":"Ajax Full-Zip Sweatshirt -XL-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"53","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","url_key":"ajax-full-zip-sweatshirt-xl-green","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH12-XL-Red","id":242,"status":1,"name":"Ajax Full-Zip Sweatshirt -XL-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","url_key":"ajax-full-zip-sweatshirt-xl-red","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001}],"configurable_options":[{"id":25,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":243,"attribute_code":"color"},{"id":24,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":243,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-243.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"276","_score":1,"_source":{"id":276,"sku":"MJ02-XS-Green","name":"Hyperion Elements Jacket-XS-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                  \n

                  • Lime 1/4 zip pullover.
                  • Split pocket.
                  • Thumb holes.
                  • Machine wash/hang to dry.

                  ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hyperion-elements-jacket-xs-green-276","links":{},"stock":{"item_id":276,"product_id":276,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xs-green-276.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"278","_score":1,"_source":{"id":278,"sku":"MJ02-XS-Red","name":"Hyperion Elements Jacket-XS-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                  \n

                  • Lime 1/4 zip pullover.
                  • Split pocket.
                  • Thumb holes.
                  • Machine wash/hang to dry.

                  ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hyperion-elements-jacket-xs-red-278","links":{},"stock":{"item_id":278,"product_id":278,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xs-red-278.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"273","_score":1,"_source":{"id":273,"sku":"MJ01-XL-Red","name":"Beaumont Summit Kit-XL-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                  \n

                  • Yellow full zip rain jacket.
                  • Full-zip front.
                  • Stand-up collar.
                  • Elasticized cuffs.
                  • Machine wash/dry.

                  ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"beaumont-summit-kit-xl-red-273","links":{},"stock":{"item_id":273,"product_id":273,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xl-red-273.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"262","_score":1,"_source":{"id":262,"sku":"MJ01-XS-Yellow","name":"Beaumont Summit Kit-XS-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                  \n

                  • Yellow full zip rain jacket.
                  • Full-zip front.
                  • Stand-up collar.
                  • Elasticized cuffs.
                  • Machine wash/dry.

                  ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"beaumont-summit-kit-xs-yellow-262","links":{},"stock":{"item_id":262,"product_id":262,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xs-yellow-262.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"281","_score":1,"_source":{"id":281,"sku":"MJ02-S-Red","name":"Hyperion Elements Jacket-S-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                  \n

                  • Lime 1/4 zip pullover.
                  • Split pocket.
                  • Thumb holes.
                  • Machine wash/hang to dry.

                  ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hyperion-elements-jacket-s-red-281","links":{},"stock":{"item_id":281,"product_id":281,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-s-red-281.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"274","_score":1,"_source":{"id":274,"sku":"MJ01-XL-Yellow","name":"Beaumont Summit Kit-XL-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                  \n

                  • Yellow full zip rain jacket.
                  • Full-zip front.
                  • Stand-up collar.
                  • Elasticized cuffs.
                  • Machine wash/dry.

                  ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"beaumont-summit-kit-xl-yellow-274","links":{},"stock":{"item_id":274,"product_id":274,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xl-yellow-274.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"282","_score":1,"_source":{"id":282,"sku":"MJ02-M-Green","name":"Hyperion Elements Jacket-M-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                  \n

                  • Lime 1/4 zip pullover.
                  • Split pocket.
                  • Thumb holes.
                  • Machine wash/hang to dry.

                  ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hyperion-elements-jacket-m-green-282","links":{},"stock":{"item_id":282,"product_id":282,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-m-green-282.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"283","_score":1,"_source":{"id":283,"sku":"MJ02-M-Orange","name":"Hyperion Elements Jacket-M-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                  \n

                  • Lime 1/4 zip pullover.
                  • Split pocket.
                  • Thumb holes.
                  • Machine wash/hang to dry.

                  ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hyperion-elements-jacket-m-orange-283","links":{},"stock":{"item_id":283,"product_id":283,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-m-orange-283.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"127","_score":1,"_source":{"id":127,"sku":"MH05-L-White","name":"Hollister Backyard Sweatshirt-L-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                  Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                  \n

                  • Cream crewneck sweatshirt with navy sleeves/trim.
                  • Relaxed fit.
                  • Ribbed cuffs and hem.
                  • Machine wash/dry.

                  ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hollister-backyard-sweatshirt-l-white-127","links":{},"stock":{"item_id":127,"product_id":127,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-l-white-127.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"146","_score":1,"_source":{"id":146,"sku":"MH06-XL-Purple","name":"Stark Fundamental Hoodie-XL-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                  \n

                  • Navy specked full zip hoodie.
                  • Ribbed cuffs, banded waist.
                  • Side pockets.
                  • Machine wash/dry.

                  ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"stark-fundamental-hoodie-xl-purple-146","links":{},"stock":{"item_id":146,"product_id":146,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xl-purple-146.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"137","_score":1,"_source":{"id":137,"sku":"MH06-S-Purple","name":"Stark Fundamental Hoodie-S-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                  \n

                  • Navy specked full zip hoodie.
                  • Ribbed cuffs, banded waist.
                  • Side pockets.
                  • Machine wash/dry.

                  ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stark-fundamental-hoodie-s-purple-137","links":{},"stock":{"item_id":137,"product_id":137,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-s-purple-137.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"135","_score":1,"_source":{"id":135,"sku":"MH06-S-Black","name":"Stark Fundamental Hoodie-S-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                  \n

                  • Navy specked full zip hoodie.
                  • Ribbed cuffs, banded waist.
                  • Side pockets.
                  • Machine wash/dry.

                  ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stark-fundamental-hoodie-s-black-135","links":{},"stock":{"item_id":135,"product_id":135,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-s-black-135.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"142","_score":1,"_source":{"id":142,"sku":"MH06-L-Blue","name":"Stark Fundamental Hoodie-L-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                  \n

                  • Navy specked full zip hoodie.
                  • Ribbed cuffs, banded waist.
                  • Side pockets.
                  • Machine wash/dry.

                  ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stark-fundamental-hoodie-l-blue-142","links":{},"stock":{"item_id":142,"product_id":142,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-l-blue-142.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"136","_score":1,"_source":{"id":136,"sku":"MH06-S-Blue","name":"Stark Fundamental Hoodie-S-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                  \n

                  • Navy specked full zip hoodie.
                  • Ribbed cuffs, banded waist.
                  • Side pockets.
                  • Machine wash/dry.

                  ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stark-fundamental-hoodie-s-blue-136","links":{},"stock":{"item_id":136,"product_id":136,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-s-blue-136.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"160","_score":1,"_source":{"id":160,"sku":"MH07-XL-Black","name":"Hero Hoodie-XL-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                  Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                  \n

                  • Full-zip gray and black hoodie.
                  • Ribbed hem.
                  • Standard fit.
                  • Drawcord hood cinch.
                  • Water-resistant coating.

                  ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hero-hoodie-xl-black-160","links":{},"stock":{"item_id":160,"product_id":160,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xl-black-160.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"157","_score":1,"_source":{"id":157,"sku":"MH07-L-Black","name":"Hero Hoodie-L-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                  Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                  \n

                  • Full-zip gray and black hoodie.
                  • Ribbed hem.
                  • Standard fit.
                  • Drawcord hood cinch.
                  • Water-resistant coating.

                  ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hero-hoodie-l-black-157","links":{},"stock":{"item_id":157,"product_id":157,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-l-black-157.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"168","_score":1,"_source":{"id":168,"sku":"MH08-S-Purple","name":"Oslo Trek Hoodie-S-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                  \n

                  • Brown hoodie with black detail.
                  • Pullover.
                  • Adjustable drawstring hood.
                  • Ribbed cuffs/waistband.
                  • Machine wash/dry.

                  ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"oslo-trek-hoodie-s-purple-168","links":{},"stock":{"item_id":168,"product_id":168,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-s-purple-168.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"164","_score":1,"_source":{"id":164,"sku":"MH08-XS-Brown","name":"Oslo Trek Hoodie-XS-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                  \n

                  • Brown hoodie with black detail.
                  • Pullover.
                  • Adjustable drawstring hood.
                  • Ribbed cuffs/waistband.
                  • Machine wash/dry.

                  ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xs-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"oslo-trek-hoodie-xs-brown-164","links":{},"stock":{"item_id":164,"product_id":164,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xs-brown-164.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"200","_score":1,"_source":{"id":200,"sku":"MH10-S-Blue","name":"Mach Street Sweatshirt -S-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

                  From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                  \n

                  • Navy heather crewneck sweatshirt.
                  • LumaTech™ moisture-wicking fabric.
                  • Antimicrobial, odor-resistant.
                  • Zip hand pockets.
                  • Chafe-resistant flatlock seams.
                  • Rib-knit cuffs and hem.

                  ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mach-street-sweatshirt-s-blue-200","links":{},"stock":{"item_id":200,"product_id":200,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-s-blue-200.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"104","_score":1,"_source":{"id":104,"sku":"MH04-S-White","name":"Frankie Sweatshirt-S-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                  \n

                  • Light green crewneck sweatshirt.
                  • Hand pockets.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"frankie-sweatshirt-s-white-104","links":{},"stock":{"item_id":104,"product_id":104,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-s-white-104.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"103","_score":1,"_source":{"id":103,"sku":"MH04-S-Green","name":"Frankie Sweatshirt-S-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                  \n

                  • Light green crewneck sweatshirt.
                  • Hand pockets.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"frankie-sweatshirt-s-green-103","links":{},"stock":{"item_id":103,"product_id":103,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-s-green-103.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"101","_score":1,"_source":{"id":101,"sku":"MH04-XS-White","name":"Frankie Sweatshirt-XS-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                  \n

                  • Light green crewneck sweatshirt.
                  • Hand pockets.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"frankie-sweatshirt-xs-white-101","links":{},"stock":{"item_id":101,"product_id":101,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xs-white-101.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"117","_score":1,"_source":{"id":117,"sku":"MH05-XS-Red","name":"Hollister Backyard Sweatshirt-XS-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                  Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                  \n

                  • Cream crewneck sweatshirt with navy sleeves/trim.
                  • Relaxed fit.
                  • Ribbed cuffs and hem.
                  • Machine wash/dry.

                  ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hollister-backyard-sweatshirt-xs-red-117","links":{},"stock":{"item_id":117,"product_id":117,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xs-red-117.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"113","_score":1,"_source":{"id":113,"sku":"MH04-XL-White","name":"Frankie Sweatshirt-XL-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                  \n

                  • Light green crewneck sweatshirt.
                  • Hand pockets.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"frankie-sweatshirt-xl-white-113","links":{},"stock":{"item_id":113,"product_id":113,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xl-white-113.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"303","_score":1,"_source":{"id":303,"sku":"MJ04-L-Purple","name":"Kenobi Trail Jacket-L-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

                  Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                  \n

                  • Black 1/4 zip pullover with royal zipper.
                  • Adjustable hood and sleeve cuffs.
                  • Machine wash/air dry.

                  ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"kenobi-trail-jacket-l-purple-303","links":{},"stock":{"item_id":303,"product_id":303,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-l-purple-303.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"224","_score":1,"_source":{"id":224,"sku":"MH11-XL-Orange","name":"Grayson Crewneck Sweatshirt -XL-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

                  The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                  \n

                  • Cream crewneck sweatshirt with black accents.
                  • 80% cotton/20% polyester fleece.
                  • Patterned knit hood lining.
                  • Knit cuffs and waist.
                  • Pouch pocket.
                  • Curl edged seam detail

                  ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"grayson-crewneck-sweatshirt-xl-orange-224","links":{},"stock":{"item_id":224,"product_id":224,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xl-orange-224.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"191","_score":1,"_source":{"id":191,"sku":"MH09-L-Red","name":"Abominable Hoodie-L-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                  \n

                  • Blue heather hoodie.
                  • Relaxed fit.
                  • Moisture-wicking.
                  • Machine wash/dry.

                  ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"abominable-hoodie-l-red-191","links":{},"stock":{"item_id":191,"product_id":191,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-l-red-191.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"451","_score":1,"_source":{"id":451,"sku":"MS04","name":"Gobi HeatTec® Tee","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

                  When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                  \n

                  • Orange micropolyester shirt.
                  • HeatTec® wicking fabric.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"gobi-heattec-reg-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,152,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"gobi-heattec-and-reg-tee-451","links":{},"stock":{"item_id":451,"product_id":451,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS04-XS-Black","id":436,"status":1,"name":"Gobi HeatTec® Tee-XS-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","url_key":"gobi-heattec-reg-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MS04-XS-Orange","id":437,"status":1,"name":"Gobi HeatTec® Tee-XS-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"56","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","url_key":"gobi-heattec-reg-tee-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"MS04-XS-Red","id":438,"status":1,"name":"Gobi HeatTec® Tee-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"58","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","url_key":"gobi-heattec-reg-tee-xs-red","msrp_display_actual_price_type":"0"},{"sku":"MS04-S-Black","id":439,"status":1,"name":"Gobi HeatTec® Tee-S-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","url_key":"gobi-heattec-reg-tee-s-black","msrp_display_actual_price_type":"0"},{"sku":"MS04-S-Orange","id":440,"status":1,"name":"Gobi HeatTec® Tee-S-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"56","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","url_key":"gobi-heattec-reg-tee-s-orange","msrp_display_actual_price_type":"0"},{"sku":"MS04-S-Red","id":441,"status":1,"name":"Gobi HeatTec® Tee-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"58","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","url_key":"gobi-heattec-reg-tee-s-red","msrp_display_actual_price_type":"0"},{"sku":"MS04-M-Black","id":442,"status":1,"name":"Gobi HeatTec® Tee-M-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","url_key":"gobi-heattec-reg-tee-m-black","msrp_display_actual_price_type":"0"},{"sku":"MS04-M-Orange","id":443,"status":1,"name":"Gobi HeatTec® Tee-M-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"56","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","url_key":"gobi-heattec-reg-tee-m-orange","msrp_display_actual_price_type":"0"},{"sku":"MS04-M-Red","id":444,"status":1,"name":"Gobi HeatTec® Tee-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"58","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","url_key":"gobi-heattec-reg-tee-m-red","msrp_display_actual_price_type":"0"},{"sku":"MS04-L-Black","id":445,"status":1,"name":"Gobi HeatTec® Tee-L-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","url_key":"gobi-heattec-reg-tee-l-black","msrp_display_actual_price_type":"0"},{"sku":"MS04-L-Orange","id":446,"status":1,"name":"Gobi HeatTec® Tee-L-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"56","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","url_key":"gobi-heattec-reg-tee-l-orange","msrp_display_actual_price_type":"0"},{"sku":"MS04-L-Red","id":447,"status":1,"name":"Gobi HeatTec® Tee-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"58","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","url_key":"gobi-heattec-reg-tee-l-red","msrp_display_actual_price_type":"0"},{"sku":"MS04-XL-Black","id":448,"status":1,"name":"Gobi HeatTec® Tee-XL-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","url_key":"gobi-heattec-reg-tee-xl-black","msrp_display_actual_price_type":"0"},{"sku":"MS04-XL-Orange","id":449,"status":1,"name":"Gobi HeatTec® Tee-XL-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"56","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","url_key":"gobi-heattec-reg-tee-xl-orange","msrp_display_actual_price_type":"0"},{"sku":"MS04-XL-Red","id":450,"status":1,"name":"Gobi HeatTec® Tee-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"58","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","url_key":"gobi-heattec-reg-tee-xl-red","msrp_display_actual_price_type":"0"}],"configurable_options":[{"id":51,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":451,"attribute_code":"color"},{"id":50,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":451,"attribute_code":"size"}],"color_options":[49,56,58],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-451.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"483","_score":1,"_source":{"id":483,"sku":"MS09","name":"Ryker LumaTech™ Tee (Crew-neck)","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":32,"description":"

                  The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                  \n

                  • Royal polyester tee with black accents.
                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ryker-lumatech-trade-tee-crew-neck","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"ryker-lumatech-and-trade-tee-crew-neck-483","links":{},"stock":{"item_id":483,"product_id":483,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS09-XS-Black","id":468,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-black","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-XS-Blue","id":469,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-XS-Red","id":470,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"58","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-S-Black","id":471,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-S-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-s-black","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-S-Blue","id":472,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-S-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-s-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-S-Red","id":473,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-S-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"58","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-s-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-M-Black","id":474,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-M-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-m-black","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-M-Blue","id":475,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-M-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-m-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-M-Red","id":476,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-M-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"58","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-m-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-L-Black","id":477,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-L-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-l-black","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-L-Blue","id":478,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-L-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-l-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-L-Red","id":479,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-L-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"58","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-l-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-XL-Black","id":480,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-black","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-XL-Blue","id":481,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MS09-XL-Red","id":482,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"58","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001}],"configurable_options":[{"id":55,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":483,"attribute_code":"color"},{"id":54,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":483,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-483.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"350","_score":1,"_source":{"id":350,"sku":"MJ09-L-White","name":"Taurus Elements Shell-L-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

                  What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                  \n

                  • Yellow 1/4 zip pullover.
                  • Two chest pockets.
                  • Standard fit.
                  • Waterproof, breathable, seam sealed.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"taurus-elements-shell-l-white-350","links":{},"stock":{"item_id":350,"product_id":350,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-l-white-350.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"339","_score":1,"_source":{"id":339,"sku":"MJ08","name":"Lando Gym Jacket","attribute_set_id":9,"price":99,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":99,"description":"

                  The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                  \n

                  • Gray polyester/spandex full zip jacket with orange lining.
                  • Right pocket device storage.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"lando-gym-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[151,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[125,128,129],"pattern":"197","climate":[203,204,210,211],"slug":"lando-gym-jacket-339","links":{},"stock":{"item_id":339,"product_id":339,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ08-XS-Blue","id":324,"status":1,"name":"Lando Gym Jacket-XS-Blue","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"50","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","url_key":"lando-gym-jacket-xs-blue","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-XS-Gray","id":325,"status":1,"name":"Lando Gym Jacket-XS-Gray","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"52","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","url_key":"lando-gym-jacket-xs-gray","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-XS-Green","id":326,"status":1,"name":"Lando Gym Jacket-XS-Green","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"53","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","url_key":"lando-gym-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-S-Blue","id":327,"status":1,"name":"Lando Gym Jacket-S-Blue","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"50","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","url_key":"lando-gym-jacket-s-blue","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-S-Gray","id":328,"status":1,"name":"Lando Gym Jacket-S-Gray","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"52","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","url_key":"lando-gym-jacket-s-gray","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-S-Green","id":329,"status":1,"name":"Lando Gym Jacket-S-Green","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"53","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","url_key":"lando-gym-jacket-s-green","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-M-Blue","id":330,"status":1,"name":"Lando Gym Jacket-M-Blue","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"50","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","url_key":"lando-gym-jacket-m-blue","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-M-Gray","id":331,"status":1,"name":"Lando Gym Jacket-M-Gray","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"52","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","url_key":"lando-gym-jacket-m-gray","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-M-Green","id":332,"status":1,"name":"Lando Gym Jacket-M-Green","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"53","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","url_key":"lando-gym-jacket-m-green","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-L-Blue","id":333,"status":1,"name":"Lando Gym Jacket-L-Blue","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"50","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","url_key":"lando-gym-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-L-Gray","id":334,"status":1,"name":"Lando Gym Jacket-L-Gray","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"52","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","url_key":"lando-gym-jacket-l-gray","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-L-Green","id":335,"status":1,"name":"Lando Gym Jacket-L-Green","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"53","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","url_key":"lando-gym-jacket-l-green","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-XL-Blue","id":336,"status":1,"name":"Lando Gym Jacket-XL-Blue","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"50","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","url_key":"lando-gym-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-XL-Gray","id":337,"status":1,"name":"Lando Gym Jacket-XL-Gray","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"52","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","url_key":"lando-gym-jacket-xl-gray","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001},{"sku":"MJ08-XL-Green","id":338,"status":1,"name":"Lando Gym Jacket-XL-Green","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"53","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","url_key":"lando-gym-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001}],"configurable_options":[{"id":37,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":339,"attribute_code":"color"},{"id":36,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":339,"attribute_code":"size"}],"color_options":[50,52,53],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-339.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"331","_score":1,"_source":{"id":331,"sku":"MJ08-M-Gray","name":"Lando Gym Jacket-M-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

                  The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                  \n

                  • Gray polyester/spandex full zip jacket with orange lining.
                  • Right pocket device storage.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lando-gym-jacket-m-gray-331","links":{},"stock":{"item_id":331,"product_id":331,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-m-gray-331.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"311","_score":1,"_source":{"id":311,"sku":"MJ07-S-Black","name":"Orion Two-Tone Fitted Jacket-S-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

                  While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                  \n

                  • Red full zip fleece with gray insets.
                  • Double-knit construction.
                  • Full athletic cut.
                  • Set in sleeves.
                  • Front pouch pocket.

                  ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"orion-two-tone-fitted-jacket-s-black-311","links":{},"stock":{"item_id":311,"product_id":311,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-s-black-311.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"309","_score":1,"_source":{"id":309,"sku":"MJ07-XS-Red","name":"Orion Two-Tone Fitted Jacket-XS-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

                  While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                  \n

                  • Red full zip fleece with gray insets.
                  • Double-knit construction.
                  • Full athletic cut.
                  • Set in sleeves.
                  • Front pouch pocket.

                  ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"orion-two-tone-fitted-jacket-xs-red-309","links":{},"stock":{"item_id":309,"product_id":309,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xs-red-309.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"344","_score":1,"_source":{"id":344,"sku":"MJ09-S-White","name":"Taurus Elements Shell-S-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

                  What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                  \n

                  • Yellow 1/4 zip pullover.
                  • Two chest pockets.
                  • Standard fit.
                  • Waterproof, breathable, seam sealed.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"taurus-elements-shell-s-white-344","links":{},"stock":{"item_id":344,"product_id":344,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-s-white-344.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"317","_score":1,"_source":{"id":317,"sku":"MJ07-L-Black","name":"Orion Two-Tone Fitted Jacket-L-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

                  While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                  \n

                  • Red full zip fleece with gray insets.
                  • Double-knit construction.
                  • Full athletic cut.
                  • Set in sleeves.
                  • Front pouch pocket.

                  ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"orion-two-tone-fitted-jacket-l-black-317","links":{},"stock":{"item_id":317,"product_id":317,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-l-black-317.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"324","_score":1,"_source":{"id":324,"sku":"MJ08-XS-Blue","name":"Lando Gym Jacket-XS-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

                  The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                  \n

                  • Gray polyester/spandex full zip jacket with orange lining.
                  • Right pocket device storage.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lando-gym-jacket-xs-blue-324","links":{},"stock":{"item_id":324,"product_id":324,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xs-blue-324.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"361","_score":1,"_source":{"id":361,"sku":"MJ10-S-Red","name":"Mars HeatTech™ Pullover-S-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                  The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                  \n

                  • Red 1/4 zip pullover.
                  • Adjustable VELCRO® sleeve cuffs.
                  • Two hand pockets.
                  • Napoleon pocket.
                  • Machine wash/dry

                  ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mars-heattech-and-trade-pullover-s-red-361","links":{},"stock":{"item_id":361,"product_id":361,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-s-red-361.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"357","_score":1,"_source":{"id":357,"sku":"MJ10-XS-Orange","name":"Mars HeatTech™ Pullover-XS-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                  The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                  \n

                  • Red 1/4 zip pullover.
                  • Adjustable VELCRO® sleeve cuffs.
                  • Two hand pockets.
                  • Napoleon pocket.
                  • Machine wash/dry

                  ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mars-heattech-and-trade-pullover-xs-orange-357","links":{},"stock":{"item_id":357,"product_id":357,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xs-orange-357.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"368","_score":1,"_source":{"id":368,"sku":"MJ10-XL-Black","name":"Mars HeatTech™ Pullover-XL-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                  The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                  \n

                  • Red 1/4 zip pullover.
                  • Adjustable VELCRO® sleeve cuffs.
                  • Two hand pockets.
                  • Napoleon pocket.
                  • Machine wash/dry

                  ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mars-heattech-and-trade-pullover-xl-black-368","links":{},"stock":{"item_id":368,"product_id":368,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xl-black-368.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"367","_score":1,"_source":{"id":367,"sku":"MJ10-L-Red","name":"Mars HeatTech™ Pullover-L-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                  The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                  \n

                  • Red 1/4 zip pullover.
                  • Adjustable VELCRO® sleeve cuffs.
                  • Two hand pockets.
                  • Napoleon pocket.
                  • Machine wash/dry

                  ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mars-heattech-and-trade-pullover-l-red-367","links":{},"stock":{"item_id":367,"product_id":367,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-l-red-367.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"378","_score":1,"_source":{"id":378,"sku":"MJ11-M-Black","name":"Typhon Performance Fleece-lined Jacket-M-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                  \n

                  • Black full-zip flight jacket.
                  • Cocona® wicking fiber.
                  • Machine wash/dry.

                  ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"typhon-performance-fleece-lined-jacket-m-black-378","links":{},"stock":{"item_id":378,"product_id":378,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-m-black-378.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"362","_score":1,"_source":{"id":362,"sku":"MJ10-M-Black","name":"Mars HeatTech™ Pullover-M-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                  The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                  \n

                  • Red 1/4 zip pullover.
                  • Adjustable VELCRO® sleeve cuffs.
                  • Two hand pockets.
                  • Napoleon pocket.
                  • Machine wash/dry

                  ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mars-heattech-and-trade-pullover-m-black-362","links":{},"stock":{"item_id":362,"product_id":362,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-m-black-362.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"402","_score":1,"_source":{"id":402,"sku":"MJ06-XL-Purple","name":"Jupiter All-Weather Trainer -XL-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

                  Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                  \n

                  • Relaxed fit.
                  • Hand pockets.
                  • Machine wash/dry.
                  • Reflective safety trim.

                  ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jupiter-all-weather-trainer-xl-purple-402","links":{},"stock":{"item_id":402,"product_id":402,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xl-purple-402.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"406","_score":1,"_source":{"id":406,"sku":"MJ03-XS-Red","name":"Montana Wind Jacket-XS-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                  Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                  \n

                  Adjustable hood.
                  Split pocket.
                  Thumb holes.
                  Machine wash/hang to dry.

                  ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"montana-wind-jacket-xs-red-406","links":{},"stock":{"item_id":406,"product_id":406,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xs-red-406.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"405","_score":1,"_source":{"id":405,"sku":"MJ03-XS-Green","name":"Montana Wind Jacket-XS-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                  Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                  \n

                  Adjustable hood.
                  Split pocket.
                  Thumb holes.
                  Machine wash/hang to dry.

                  ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"montana-wind-jacket-xs-green-405","links":{},"stock":{"item_id":405,"product_id":405,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xs-green-405.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"432","_score":1,"_source":{"id":432,"sku":"MJ12-XL-Black","name":"Proteus Fitness Jackshirt-XL-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                  \n

                  • 1/4 zip. Stand-up collar.
                  • Machine wash/dry.
                  • Quilted inner layer.

                  ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"proteus-fitness-jackshirt-xl-black-432","links":{},"stock":{"item_id":432,"product_id":432,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xl-black-432.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"413","_score":1,"_source":{"id":413,"sku":"MJ03-L-Black","name":"Montana Wind Jacket-L-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                  Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                  \n

                  Adjustable hood.
                  Split pocket.
                  Thumb holes.
                  Machine wash/hang to dry.

                  ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"montana-wind-jacket-l-black-413","links":{},"stock":{"item_id":413,"product_id":413,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-l-black-413.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"453","_score":1,"_source":{"id":453,"sku":"MS05-XS-Blue","name":"Helios EverCool™ Tee-XS-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                  \n

                  • Teal quick dry tee.
                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helios-evercool-and-trade-tee-xs-blue-453","links":{},"stock":{"item_id":453,"product_id":453,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xs-blue-453.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"482","_score":1,"_source":{"id":482,"sku":"MS09-XL-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                  \n

                  • Royal polyester tee with black accents.
                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-crew-neck-xl-red-482","links":{},"stock":{"item_id":482,"product_id":482,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xl-red-482.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"480","_score":1,"_source":{"id":480,"sku":"MS09-XL-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                  \n

                  • Royal polyester tee with black accents.
                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-crew-neck-xl-black-480","links":{},"stock":{"item_id":480,"product_id":480,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xl-black-480.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"471","_score":1,"_source":{"id":471,"sku":"MS09-S-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-S-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                  \n

                  • Royal polyester tee with black accents.
                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-crew-neck-s-black-471","links":{},"stock":{"item_id":471,"product_id":471,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-s-black-471.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"463","_score":1,"_source":{"id":463,"sku":"MS05-L-Purple","name":"Helios EverCool™ Tee-L-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                  \n

                  • Teal quick dry tee.
                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helios-evercool-and-trade-tee-l-purple-463","links":{},"stock":{"item_id":463,"product_id":463,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-l-purple-463.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"445","_score":1,"_source":{"id":445,"sku":"MS04-L-Black","name":"Gobi HeatTec® Tee-L-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                  \n

                  • Orange micropolyester shirt.
                  • HeatTec® wicking fabric.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gobi-heattec-and-reg-tee-l-black-445","links":{},"stock":{"item_id":445,"product_id":445,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-l-black-445.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"438","_score":1,"_source":{"id":438,"sku":"MS04-XS-Red","name":"Gobi HeatTec® Tee-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                  \n

                  • Orange micropolyester shirt.
                  • HeatTec® wicking fabric.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gobi-heattec-and-reg-tee-xs-red-438","links":{},"stock":{"item_id":438,"product_id":438,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xs-red-438.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"427","_score":1,"_source":{"id":427,"sku":"MJ12-M-Blue","name":"Proteus Fitness Jackshirt-M-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                  \n

                  • 1/4 zip. Stand-up collar.
                  • Machine wash/dry.
                  • Quilted inner layer.

                  ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"proteus-fitness-jackshirt-m-blue-427","links":{},"stock":{"item_id":427,"product_id":427,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-m-blue-427.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"363","_score":1,"_source":{"id":363,"sku":"MJ10-M-Orange","name":"Mars HeatTech™ Pullover-M-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                  The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                  \n

                  • Red 1/4 zip pullover.
                  • Adjustable VELCRO® sleeve cuffs.
                  • Two hand pockets.
                  • Napoleon pocket.
                  • Machine wash/dry

                  ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mars-heattech-and-trade-pullover-m-orange-363","links":{},"stock":{"item_id":363,"product_id":363,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-m-orange-363.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"396","_score":1,"_source":{"id":396,"sku":"MJ06-M-Purple","name":"Jupiter All-Weather Trainer -M-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

                  Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                  \n

                  • Relaxed fit.
                  • Hand pockets.
                  • Machine wash/dry.
                  • Reflective safety trim.

                  ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jupiter-all-weather-trainer-m-purple-396","links":{},"stock":{"item_id":396,"product_id":396,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-m-purple-396.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"489","_score":1,"_source":{"id":489,"sku":"MS11-S-Yellow","name":"Atomic Endurance Running Tee (V-neck)-S-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                  \n

                  • Lime heathered v-neck tee.
                  • Ultra-lightweight.
                  • Moisture-wicking Cocona® fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-v-neck-s-yellow-489","links":{},"stock":{"item_id":489,"product_id":489,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-s-yellow-489.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"494","_score":1,"_source":{"id":494,"sku":"MS11-L-Green","name":"Atomic Endurance Running Tee (V-neck)-L-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                  \n

                  • Lime heathered v-neck tee.
                  • Ultra-lightweight.
                  • Moisture-wicking Cocona® fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-v-neck-l-green-494","links":{},"stock":{"item_id":494,"product_id":494,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-l-green-494.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"490","_score":1,"_source":{"id":490,"sku":"MS11-M-Blue","name":"Atomic Endurance Running Tee (V-neck)-M-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                  \n

                  • Lime heathered v-neck tee.
                  • Ultra-lightweight.
                  • Moisture-wicking Cocona® fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-v-neck-m-blue-490","links":{},"stock":{"item_id":490,"product_id":490,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-m-blue-490.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"683","_score":1,"_source":{"id":683,"sku":"MT05-S-Blue","name":"Rocco Gym Tank-S-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

                  \n

                  • Light blue heather gray tank.
                  • Quick-drying, moisture-wicking.
                  • 4-way stretch construction.
                  • Flatlock seams prevent chafing.
                  • Mesh at back for breathability.
                  • 100% Polyester.
                  • UPF 50 protection.

                  ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"rocco-gym-tank-s-blue-683","links":{},"stock":{"item_id":683,"product_id":683,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-s-blue-683.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"697","_score":1,"_source":{"id":697,"sku":"MT07-L-Gray","name":"Argus All-Weather Tank-L-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

                  The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

                  \n

                  • Dark gray polyester spandex tank.
                  • Reflective details for nighttime visibility.
                  • Stash pocket.
                  • Anti-chafe flatlock seams.

                  ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"argus-all-weather-tank-l-gray-697","links":{},"stock":{"item_id":697,"product_id":697,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-l-gray-697.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"659","_score":1,"_source":{"id":659,"sku":"MT02","name":"Tristan Endurance Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

                  Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                  \n

                  • White performance tank.
                  • Stylish contrast stitching.
                  • Relaxed fit.
                  • Ribbed crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"tristan-endurance-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,149,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"tristan-endurance-tank-659","links":{},"stock":{"item_id":659,"product_id":659,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT02-XS-Gray","id":644,"status":1,"name":"Tristan Endurance Tank-XS-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"52","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","url_key":"tristan-endurance-tank-xs-gray","msrp_display_actual_price_type":"0"},{"sku":"MT02-XS-Red","id":645,"status":1,"name":"Tristan Endurance Tank-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"58","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","url_key":"tristan-endurance-tank-xs-red","msrp_display_actual_price_type":"0"},{"sku":"MT02-XS-White","id":646,"status":1,"name":"Tristan Endurance Tank-XS-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"59","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","url_key":"tristan-endurance-tank-xs-white","msrp_display_actual_price_type":"0"},{"sku":"MT02-S-Gray","id":647,"status":1,"name":"Tristan Endurance Tank-S-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"52","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","url_key":"tristan-endurance-tank-s-gray","msrp_display_actual_price_type":"0"},{"sku":"MT02-S-Red","id":648,"status":1,"name":"Tristan Endurance Tank-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"58","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","url_key":"tristan-endurance-tank-s-red","msrp_display_actual_price_type":"0"},{"sku":"MT02-S-White","id":649,"status":1,"name":"Tristan Endurance Tank-S-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"59","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","url_key":"tristan-endurance-tank-s-white","msrp_display_actual_price_type":"0"},{"sku":"MT02-M-Gray","id":650,"status":1,"name":"Tristan Endurance Tank-M-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"52","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","url_key":"tristan-endurance-tank-m-gray","msrp_display_actual_price_type":"0"},{"sku":"MT02-M-Red","id":651,"status":1,"name":"Tristan Endurance Tank-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"58","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","url_key":"tristan-endurance-tank-m-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT02-M-White","id":652,"status":1,"name":"Tristan Endurance Tank-M-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"59","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","url_key":"tristan-endurance-tank-m-white","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT02-L-Gray","id":653,"status":1,"name":"Tristan Endurance Tank-L-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"52","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","url_key":"tristan-endurance-tank-l-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT02-L-Red","id":654,"status":1,"name":"Tristan Endurance Tank-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"58","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","url_key":"tristan-endurance-tank-l-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT02-L-White","id":655,"status":1,"name":"Tristan Endurance Tank-L-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"59","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","url_key":"tristan-endurance-tank-l-white","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT02-XL-Gray","id":656,"status":1,"name":"Tristan Endurance Tank-XL-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"52","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","url_key":"tristan-endurance-tank-xl-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT02-XL-Red","id":657,"status":1,"name":"Tristan Endurance Tank-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"58","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","url_key":"tristan-endurance-tank-xl-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT02-XL-White","id":658,"status":1,"name":"Tristan Endurance Tank-XL-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"59","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","url_key":"tristan-endurance-tank-xl-white","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":77,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":659,"attribute_code":"color"},{"id":76,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":659,"attribute_code":"size"}],"color_options":[52,58,59],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-659.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"615","_score":1,"_source":{"id":615,"sku":"MS08-S-Black","name":"Strike Endurance Tee-S-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                  \n

                  • Loose fit.
                  • Ribbed cuffs/collar.
                  • Machine wash/dry.

                  ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"strike-endurance-tee-s-black-615","links":{},"stock":{"item_id":615,"product_id":615,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-s-black-615.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"611","_score":1,"_source":{"id":611,"sku":"MS07","name":"Deion Long-Sleeve EverCool™ Tee","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":39,"description":"

                  When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                  \n

                  • Fitted.
                  • Contrast inner neck tape.
                  • Machine wash/dry.

                  ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"deion-long-sleeve-evercool-trade-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,153,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,204,205,209],"slug":"deion-long-sleeve-evercool-and-trade-tee-611","links":{},"stock":{"item_id":611,"product_id":611,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS07-XS-Black","id":596,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-XS-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MS07-XS-Green","id":597,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-XS-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"53","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-xs-green","msrp_display_actual_price_type":"0"},{"sku":"MS07-XS-White","id":598,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-XS-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"59","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-xs-white","msrp_display_actual_price_type":"0"},{"sku":"MS07-S-Black","id":599,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-S-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-s-black","msrp_display_actual_price_type":"0"},{"sku":"MS07-S-Green","id":600,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-S-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"53","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-s-green","msrp_display_actual_price_type":"0"},{"sku":"MS07-S-White","id":601,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-S-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"59","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-s-white","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS07-M-Black","id":602,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-M-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-m-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS07-M-Green","id":603,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-M-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"53","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-m-green","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS07-M-White","id":604,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-M-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"59","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-m-white","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS07-L-Black","id":605,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-L-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-l-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS07-L-Green","id":606,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-L-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"53","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-l-green","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS07-L-White","id":607,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-L-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"59","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-l-white","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS07-XL-Black","id":608,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-XL-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-xl-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS07-XL-Green","id":609,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-XL-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"53","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-xl-green","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS07-XL-White","id":610,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-XL-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"59","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-xl-white","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001}],"configurable_options":[{"id":71,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":59,"label":"White"}],"product_id":611,"attribute_code":"color"},{"id":70,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":611,"attribute_code":"size"}],"color_options":[49,53,59],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-611.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"643","_score":1,"_source":{"id":643,"sku":"MT01","name":"Erikssen CoolTech™ Fitness Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

                  A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                  \n

                  • Red performance tank.
                  • Slight scoop neckline.
                  • Reflectivity.
                  • Machine wash/dry.

                  ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"erikssen-cooltech-trade-fitness-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,152,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"erikssen-cooltech-and-trade-fitness-tank-643","links":{},"stock":{"item_id":643,"product_id":643,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT01-XS-Gray","id":628,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-XS-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"52","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-xs-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-XS-Orange","id":629,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-XS-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"56","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-xs-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-XS-Red","id":630,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"58","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-xs-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-S-Gray","id":631,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-S-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"52","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-s-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-S-Orange","id":632,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-S-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"56","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-s-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-S-Red","id":633,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"58","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-s-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-M-Gray","id":634,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-M-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"52","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-m-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-M-Orange","id":635,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-M-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"56","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-m-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-M-Red","id":636,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"58","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-m-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-L-Gray","id":637,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-L-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"52","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-l-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-L-Orange","id":638,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-L-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"56","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-l-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-L-Red","id":639,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"58","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-l-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-XL-Gray","id":640,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-XL-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"52","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-xl-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-XL-Orange","id":641,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-XL-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"56","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-xl-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT01-XL-Red","id":642,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"58","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-xl-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":75,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":643,"attribute_code":"color"},{"id":74,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":643,"attribute_code":"size"}],"color_options":[52,56,58],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-643.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"558","_score":1,"_source":{"id":558,"sku":"MS01-L-Brown","name":"Aero Daily Fitness Tee-L-Brown","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                  \n

                  Relaxed fit.
                  Short-Sleeve.
                  Machine wash/dry.

                  ","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-l-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"aero-daily-fitness-tee-l-brown-558","links":{},"stock":{"item_id":558,"product_id":558,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms01-brown_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-l-brown-558.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"554","_score":1,"_source":{"id":554,"sku":"MS01-M-Black","name":"Aero Daily Fitness Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                  \n

                  Relaxed fit.
                  Short-Sleeve.
                  Machine wash/dry.

                  ","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"aero-daily-fitness-tee-m-black-554","links":{},"stock":{"item_id":554,"product_id":554,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-m-black-554.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"552","_score":1,"_source":{"id":552,"sku":"MS01-S-Brown","name":"Aero Daily Fitness Tee-S-Brown","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                  \n

                  Relaxed fit.
                  Short-Sleeve.
                  Machine wash/dry.

                  ","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-s-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"aero-daily-fitness-tee-s-brown-552","links":{},"stock":{"item_id":552,"product_id":552,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms01-brown_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-s-brown-552.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"565","_score":1,"_source":{"id":565,"sku":"MS02-XS-Blue","name":"Ryker LumaTech™ Tee (V-neck)-XS-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                  \n

                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-v-neck-xs-blue-565","links":{},"stock":{"item_id":565,"product_id":565,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xs-blue-565.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"574","_score":1,"_source":{"id":574,"sku":"MS02-L-Blue","name":"Ryker LumaTech™ Tee (V-neck)-L-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                  \n

                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-v-neck-l-blue-574","links":{},"stock":{"item_id":574,"product_id":574,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-l-blue-574.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"576","_score":1,"_source":{"id":576,"sku":"MS02-XL-Black","name":"Ryker LumaTech™ Tee (V-neck)-XL-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                  \n

                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-v-neck-xl-black-576","links":{},"stock":{"item_id":576,"product_id":576,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xl-black-576.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"568","_score":1,"_source":{"id":568,"sku":"MS02-S-Blue","name":"Ryker LumaTech™ Tee (V-neck)-S-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                  \n

                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-v-neck-s-blue-568","links":{},"stock":{"item_id":568,"product_id":568,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-s-blue-568.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"566","_score":1,"_source":{"id":566,"sku":"MS02-XS-Gray","name":"Ryker LumaTech™ Tee (V-neck)-XS-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                  \n

                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-v-neck-xs-gray-566","links":{},"stock":{"item_id":566,"product_id":566,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xs-gray-566.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"580","_score":1,"_source":{"id":580,"sku":"MS10-XS-Black","name":"Logan HeatTec® Tee-XS-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                  \n

                  • Semi-fitted.
                  • Crew neckline.
                  • Machine wash/tumble dry.

                  ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"logan-heattec-and-reg-tee-xs-black-580","links":{},"stock":{"item_id":580,"product_id":580,"stock_id":1,"qty":8,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xs-black-580.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"596","_score":1,"_source":{"id":596,"sku":"MS07-XS-Black","name":"Deion Long-Sleeve EverCool™ Tee-XS-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                  \n

                  • Fitted.
                  • Contrast inner neck tape.
                  • Machine wash/dry.

                  ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"deion-long-sleeve-evercool-and-trade-tee-xs-black-596","links":{},"stock":{"item_id":596,"product_id":596,"stock_id":1,"qty":3,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xs-black-596.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"589","_score":1,"_source":{"id":589,"sku":"MS10-L-Black","name":"Logan HeatTec® Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                  \n

                  • Semi-fitted.
                  • Crew neckline.
                  • Machine wash/tumble dry.

                  ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"logan-heattec-and-reg-tee-l-black-589","links":{},"stock":{"item_id":589,"product_id":589,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-l-black-589.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"507","_score":1,"_source":{"id":507,"sku":"MS12-M-Blue","name":"Atomic Endurance Running Tee (Crew-Neck)-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                  \n

                  • Red polyester tee.
                  • Crew neckline.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-crew-neck-m-blue-507","links":{},"stock":{"item_id":507,"product_id":507,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-m-blue-507.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"514","_score":1,"_source":{"id":514,"sku":"MS12-XL-Red","name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                  \n

                  • Red polyester tee.
                  • Crew neckline.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-crew-neck-xl-red-514","links":{},"stock":{"item_id":514,"product_id":514,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xl-red-514.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"508","_score":1,"_source":{"id":508,"sku":"MS12-M-Red","name":"Atomic Endurance Running Tee (Crew-Neck)-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                  \n

                  • Red polyester tee.
                  • Crew neckline.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-crew-neck-m-red-508","links":{},"stock":{"item_id":508,"product_id":508,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-m-red-508.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"519","_score":1,"_source":{"id":519,"sku":"MS03-S-Gray","name":"Balboa Persistence Tee-S-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                  \n

                  • Crew neckline.
                  • Semi-fitted.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"balboa-persistence-tee-s-gray-519","links":{},"stock":{"item_id":519,"product_id":519,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-s-gray-519.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"523","_score":1,"_source":{"id":523,"sku":"MS03-M-Green","name":"Balboa Persistence Tee-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                  \n

                  • Crew neckline.
                  • Semi-fitted.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"balboa-persistence-tee-m-green-523","links":{},"stock":{"item_id":523,"product_id":523,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-m-green-523.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"528","_score":1,"_source":{"id":528,"sku":"MS03-XL-Gray","name":"Balboa Persistence Tee-XL-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                  \n

                  • Crew neckline.
                  • Semi-fitted.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"balboa-persistence-tee-xl-gray-528","links":{},"stock":{"item_id":528,"product_id":528,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xl-gray-528.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"524","_score":1,"_source":{"id":524,"sku":"MS03-M-Orange","name":"Balboa Persistence Tee-M-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                  \n

                  • Crew neckline.
                  • Semi-fitted.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"balboa-persistence-tee-m-orange-524","links":{},"stock":{"item_id":524,"product_id":524,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-m-orange-524.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"539","_score":1,"_source":{"id":539,"sku":"MS06-M-Green","name":"Zoltan Gym Tee-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                  \n

                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoltan-gym-tee-m-green-539","links":{},"stock":{"item_id":539,"product_id":539,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-m-green-539.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"522","_score":1,"_source":{"id":522,"sku":"MS03-M-Gray","name":"Balboa Persistence Tee-M-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                  \n

                  • Crew neckline.
                  • Semi-fitted.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"balboa-persistence-tee-m-gray-522","links":{},"stock":{"item_id":522,"product_id":522,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-m-gray-522.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"605","_score":1,"_source":{"id":605,"sku":"MS07-L-Black","name":"Deion Long-Sleeve EverCool™ Tee-L-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                  \n

                  • Fitted.
                  • Contrast inner neck tape.
                  • Machine wash/dry.

                  ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"deion-long-sleeve-evercool-and-trade-tee-l-black-605","links":{},"stock":{"item_id":605,"product_id":605,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-l-black-605.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"601","_score":1,"_source":{"id":601,"sku":"MS07-S-White","name":"Deion Long-Sleeve EverCool™ Tee-S-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                  \n

                  • Fitted.
                  • Contrast inner neck tape.
                  • Machine wash/dry.

                  ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"deion-long-sleeve-evercool-and-trade-tee-s-white-601","links":{},"stock":{"item_id":601,"product_id":601,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-s-white-601.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"631","_score":1,"_source":{"id":631,"sku":"MT01-S-Gray","name":"Erikssen CoolTech™ Fitness Tank-S-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                  \n

                  • Red performance tank.
                  • Slight scoop neckline.
                  • Reflectivity.
                  • Machine wash/dry.

                  ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erikssen-cooltech-and-trade-fitness-tank-s-gray-631","links":{},"stock":{"item_id":631,"product_id":631,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-s-gray-631.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"633","_score":1,"_source":{"id":633,"sku":"MT01-S-Red","name":"Erikssen CoolTech™ Fitness Tank-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                  \n

                  • Red performance tank.
                  • Slight scoop neckline.
                  • Reflectivity.
                  • Machine wash/dry.

                  ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erikssen-cooltech-and-trade-fitness-tank-s-red-633","links":{},"stock":{"item_id":633,"product_id":633,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-s-red-633.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"624","_score":1,"_source":{"id":624,"sku":"MS08-XL-Black","name":"Strike Endurance Tee-XL-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                  \n

                  • Loose fit.
                  • Ribbed cuffs/collar.
                  • Machine wash/dry.

                  ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"strike-endurance-tee-xl-black-624","links":{},"stock":{"item_id":624,"product_id":624,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xl-black-624.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"640","_score":1,"_source":{"id":640,"sku":"MT01-XL-Gray","name":"Erikssen CoolTech™ Fitness Tank-XL-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                  \n

                  • Red performance tank.
                  • Slight scoop neckline.
                  • Reflectivity.
                  • Machine wash/dry.

                  ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erikssen-cooltech-and-trade-fitness-tank-xl-gray-640","links":{},"stock":{"item_id":640,"product_id":640,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xl-gray-640.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"657","_score":1,"_source":{"id":657,"sku":"MT02-XL-Red","name":"Tristan Endurance Tank-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                  \n

                  • White performance tank.
                  • Stylish contrast stitching.
                  • Relaxed fit.
                  • Ribbed crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tristan-endurance-tank-xl-red-657","links":{},"stock":{"item_id":657,"product_id":657,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xl-red-657.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"694","_score":1,"_source":{"id":694,"sku":"MT07-XS-Gray","name":"Argus All-Weather Tank-XS-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

                  The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

                  \n

                  • Dark gray polyester spandex tank.
                  • Reflective details for nighttime visibility.
                  • Stash pocket.
                  • Anti-chafe flatlock seams.

                  ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"argus-all-weather-tank-xs-gray-694","links":{},"stock":{"item_id":694,"product_id":694,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-xs-gray-694.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"545","_score":1,"_source":{"id":545,"sku":"MS06-XL-Green","name":"Zoltan Gym Tee-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                  \n

                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoltan-gym-tee-xl-green-545","links":{},"stock":{"item_id":545,"product_id":545,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xl-green-545.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"534","_score":1,"_source":{"id":534,"sku":"MS06-XS-Yellow","name":"Zoltan Gym Tee-XS-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                  \n

                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoltan-gym-tee-xs-yellow-534","links":{},"stock":{"item_id":534,"product_id":534,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xs-yellow-534.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"600","_score":1,"_source":{"id":600,"sku":"MS07-S-Green","name":"Deion Long-Sleeve EverCool™ Tee-S-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                  \n

                  • Fitted.
                  • Contrast inner neck tape.
                  • Machine wash/dry.

                  ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"deion-long-sleeve-evercool-and-trade-tee-s-green-600","links":{},"stock":{"item_id":600,"product_id":600,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-s-green-600.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"820","_score":1,"_source":{"id":820,"sku":"MP07","name":"Thorpe Track Pant","attribute_set_id":10,"price":68,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":68,"description":"

                  Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                  \n

                  • Moisture transfer properties.
                  • 7% stretch.
                  • Reflective safety trim.
                  • Elastic drawcord waist.

                  ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"thorpe-track-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38,39,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[202,203,204,208,211],"slug":"thorpe-track-pant-820","links":{},"stock":{"item_id":820,"product_id":820,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP07-32-Black","id":808,"status":1,"name":"Thorpe Track Pant-32-Black","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"49","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","url_key":"thorpe-track-pant-32-black","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"MP07-32-Blue","id":809,"status":1,"name":"Thorpe Track Pant-32-Blue","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"50","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","url_key":"thorpe-track-pant-32-blue","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"MP07-32-Purple","id":810,"status":1,"name":"Thorpe Track Pant-32-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"57","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","url_key":"thorpe-track-pant-32-purple","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"MP07-33-Black","id":811,"status":1,"name":"Thorpe Track Pant-33-Black","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"49","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","url_key":"thorpe-track-pant-33-black","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"MP07-33-Blue","id":812,"status":1,"name":"Thorpe Track Pant-33-Blue","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"50","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","url_key":"thorpe-track-pant-33-blue","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"MP07-33-Purple","id":813,"status":1,"name":"Thorpe Track Pant-33-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"57","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","url_key":"thorpe-track-pant-33-purple","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"MP07-34-Black","id":814,"status":1,"name":"Thorpe Track Pant-34-Black","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"49","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","url_key":"thorpe-track-pant-34-black","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"MP07-34-Blue","id":815,"status":1,"name":"Thorpe Track Pant-34-Blue","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"50","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","url_key":"thorpe-track-pant-34-blue","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"MP07-34-Purple","id":816,"status":1,"name":"Thorpe Track Pant-34-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"57","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","url_key":"thorpe-track-pant-34-purple","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"MP07-36-Black","id":817,"status":1,"name":"Thorpe Track Pant-36-Black","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"49","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","url_key":"thorpe-track-pant-36-black","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"MP07-36-Blue","id":818,"status":1,"name":"Thorpe Track Pant-36-Blue","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"50","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","url_key":"thorpe-track-pant-36-blue","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"MP07-36-Purple","id":819,"status":1,"name":"Thorpe Track Pant-36-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"57","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","url_key":"thorpe-track-pant-36-purple","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001}],"configurable_options":[{"id":111,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":820,"attribute_code":"color"},{"id":110,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":820,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-820.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"833","_score":1,"_source":{"id":833,"sku":"MP08","name":"Zeppelin Yoga Pant","attribute_set_id":10,"price":82,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":82,"description":"

                  Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                  \n

                  • Smooth exterior for easy over-layering.
                  • Brushed fleece interior insulates and wicks.
                  • No-roll elastic waistband with inner drawstring.
                  • Chafe-resistant flatlock seams.

                  ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"zeppelin-yoga-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,148,151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,113,105,115,109],"pattern":"197","climate":[202,204,208,210,211],"slug":"zeppelin-yoga-pant-833","links":{},"stock":{"item_id":833,"product_id":833,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP08-32-Blue","id":821,"status":1,"name":"Zeppelin Yoga Pant-32-Blue","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"50","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","url_key":"zeppelin-yoga-pant-32-blue","msrp_display_actual_price_type":"0","final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001},{"sku":"MP08-32-Green","id":822,"status":1,"name":"Zeppelin Yoga Pant-32-Green","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"53","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","url_key":"zeppelin-yoga-pant-32-green","msrp_display_actual_price_type":"0","final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001},{"sku":"MP08-32-Red","id":823,"status":1,"name":"Zeppelin Yoga Pant-32-Red","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"58","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","url_key":"zeppelin-yoga-pant-32-red","msrp_display_actual_price_type":"0","final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001},{"sku":"MP08-33-Blue","id":824,"status":1,"name":"Zeppelin Yoga Pant-33-Blue","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"50","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","url_key":"zeppelin-yoga-pant-33-blue","msrp_display_actual_price_type":"0","final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001},{"sku":"MP08-33-Green","id":825,"status":1,"name":"Zeppelin Yoga Pant-33-Green","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"53","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","url_key":"zeppelin-yoga-pant-33-green","msrp_display_actual_price_type":"0","final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001},{"sku":"MP08-33-Red","id":826,"status":1,"name":"Zeppelin Yoga Pant-33-Red","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"58","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","url_key":"zeppelin-yoga-pant-33-red","msrp_display_actual_price_type":"0","final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001},{"sku":"MP08-34-Blue","id":827,"status":1,"name":"Zeppelin Yoga Pant-34-Blue","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"50","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","url_key":"zeppelin-yoga-pant-34-blue","msrp_display_actual_price_type":"0","final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001},{"sku":"MP08-34-Green","id":828,"status":1,"name":"Zeppelin Yoga Pant-34-Green","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"53","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","url_key":"zeppelin-yoga-pant-34-green","msrp_display_actual_price_type":"0","final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001},{"sku":"MP08-34-Red","id":829,"status":1,"name":"Zeppelin Yoga Pant-34-Red","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"58","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","url_key":"zeppelin-yoga-pant-34-red","msrp_display_actual_price_type":"0","final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001},{"sku":"MP08-36-Blue","id":830,"status":1,"name":"Zeppelin Yoga Pant-36-Blue","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"50","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","url_key":"zeppelin-yoga-pant-36-blue","msrp_display_actual_price_type":"0","final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001},{"sku":"MP08-36-Green","id":831,"status":1,"name":"Zeppelin Yoga Pant-36-Green","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"53","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","url_key":"zeppelin-yoga-pant-36-green","msrp_display_actual_price_type":"0","final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001},{"sku":"MP08-36-Red","id":832,"status":1,"name":"Zeppelin Yoga Pant-36-Red","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"58","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","url_key":"zeppelin-yoga-pant-36-red","msrp_display_actual_price_type":"0","final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001}],"configurable_options":[{"id":113,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":833,"attribute_code":"color"},{"id":112,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":833,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-833.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"800","_score":1,"_source":{"id":800,"sku":"MP06-33-Orange","name":"Mithra Warmup Pant-33-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                  \n

                  • Ankle zips.
                  • Elasticized waistband with draw cord.
                  • Dual hand pockets.
                  • Reflective elements for low-light safety.

                  ","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","color":"56","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-33-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"mithra-warmup-pant-33-orange-800","links":{},"stock":{"item_id":800,"product_id":800,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-33-orange-800.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"781","_score":1,"_source":{"id":781,"sku":"MP04","name":"Supernova Sport Pant","attribute_set_id":10,"price":45,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":45,"description":"

                  Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                  \n

                  • Dark heather gray straight leg cotton pants.
                  • Relaxed fit.
                  • Internal drawstring.
                  • Machine wash/dry.

                  ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"supernova-sport-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[202,203,204,208,210,211],"slug":"supernova-sport-pant-781","links":{},"stock":{"item_id":781,"product_id":781,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP04-32-Black","id":769,"status":1,"name":"Supernova Sport Pant-32-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"49","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","url_key":"supernova-sport-pant-32-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MP04-32-Gray","id":770,"status":1,"name":"Supernova Sport Pant-32-Gray","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"52","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","url_key":"supernova-sport-pant-32-gray","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MP04-32-Green","id":771,"status":1,"name":"Supernova Sport Pant-32-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"53","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","url_key":"supernova-sport-pant-32-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MP04-33-Black","id":772,"status":1,"name":"Supernova Sport Pant-33-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"49","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","url_key":"supernova-sport-pant-33-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MP04-33-Gray","id":773,"status":1,"name":"Supernova Sport Pant-33-Gray","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"52","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","url_key":"supernova-sport-pant-33-gray","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MP04-33-Green","id":774,"status":1,"name":"Supernova Sport Pant-33-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"53","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","url_key":"supernova-sport-pant-33-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MP04-34-Black","id":775,"status":1,"name":"Supernova Sport Pant-34-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"49","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","url_key":"supernova-sport-pant-34-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MP04-34-Gray","id":776,"status":1,"name":"Supernova Sport Pant-34-Gray","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"52","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","url_key":"supernova-sport-pant-34-gray","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MP04-34-Green","id":777,"status":1,"name":"Supernova Sport Pant-34-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"53","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","url_key":"supernova-sport-pant-34-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MP04-36-Black","id":778,"status":1,"name":"Supernova Sport Pant-36-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"49","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","url_key":"supernova-sport-pant-36-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MP04-36-Gray","id":779,"status":1,"name":"Supernova Sport Pant-36-Gray","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"52","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","url_key":"supernova-sport-pant-36-gray","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MP04-36-Green","id":780,"status":1,"name":"Supernova Sport Pant-36-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"53","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","url_key":"supernova-sport-pant-36-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001}],"configurable_options":[{"id":105,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":781,"attribute_code":"color"},{"id":104,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":781,"attribute_code":"size"}],"color_options":[49,52,53],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-781.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"729","_score":1,"_source":{"id":729,"sku":"MT12","name":"Cassius Sparring Tank","attribute_set_id":9,"price":18,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":18,"description":"

                  Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

                  \n

                  • Royal crewneck cotton tank.
                  • Contrast stitching.
                  • Self fabric binding at neckline.
                  • Slim fit.
                  • 96% Merino / 4% LYCRA®.

                  ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cassius-sparring-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"cassius-sparring-tank-729","links":{},"stock":{"item_id":729,"product_id":729,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT12-XS-Blue","id":724,"status":1,"name":"Cassius Sparring Tank-XS-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"50","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","url_key":"cassius-sparring-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001},{"sku":"MT12-S-Blue","id":725,"status":1,"name":"Cassius Sparring Tank-S-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"50","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","url_key":"cassius-sparring-tank-s-blue","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001},{"sku":"MT12-M-Blue","id":726,"status":1,"name":"Cassius Sparring Tank-M-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"50","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","url_key":"cassius-sparring-tank-m-blue","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001},{"sku":"MT12-L-Blue","id":727,"status":1,"name":"Cassius Sparring Tank-L-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"50","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","url_key":"cassius-sparring-tank-l-blue","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001},{"sku":"MT12-XL-Blue","id":728,"status":1,"name":"Cassius Sparring Tank-XL-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"50","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","url_key":"cassius-sparring-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001}],"configurable_options":[{"id":97,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"}],"product_id":729,"attribute_code":"color"},{"id":96,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":729,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-729.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"826","_score":1,"_source":{"id":826,"sku":"MP08-33-Red","name":"Zeppelin Yoga Pant-33-Red","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001,"description":"

                  Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                  \n

                  • Smooth exterior for easy over-layering.
                  • Brushed fleece interior insulates and wicks.
                  • No-roll elastic waistband with inner drawstring.
                  • Chafe-resistant flatlock seams.

                  ","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"zeppelin-yoga-pant-33-red-826","links":{},"stock":{"item_id":826,"product_id":826,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-33-red-826.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"813","_score":1,"_source":{"id":813,"sku":"MP07-33-Purple","name":"Thorpe Track Pant-33-Purple","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                  Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                  \n

                  • Moisture transfer properties.
                  • 7% stretch.
                  • Reflective safety trim.
                  • Elastic drawcord waist.

                  ","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","color":"57","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"thorpe-track-pant-33-purple-813","links":{},"stock":{"item_id":813,"product_id":813,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-33-purple-813.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"822","_score":1,"_source":{"id":822,"sku":"MP08-32-Green","name":"Zeppelin Yoga Pant-32-Green","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001,"description":"

                  Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                  \n

                  • Smooth exterior for easy over-layering.
                  • Brushed fleece interior insulates and wicks.
                  • No-roll elastic waistband with inner drawstring.
                  • Chafe-resistant flatlock seams.

                  ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"zeppelin-yoga-pant-32-green-822","links":{},"stock":{"item_id":822,"product_id":822,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-32-green-822.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"819","_score":1,"_source":{"id":819,"sku":"MP07-36-Purple","name":"Thorpe Track Pant-36-Purple","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                  Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                  \n

                  • Moisture transfer properties.
                  • 7% stretch.
                  • Reflective safety trim.
                  • Elastic drawcord waist.

                  ","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","color":"57","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"thorpe-track-pant-36-purple-819","links":{},"stock":{"item_id":819,"product_id":819,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-36-purple-819.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"825","_score":1,"_source":{"id":825,"sku":"MP08-33-Green","name":"Zeppelin Yoga Pant-33-Green","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001,"description":"

                  Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                  \n

                  • Smooth exterior for easy over-layering.
                  • Brushed fleece interior insulates and wicks.
                  • No-roll elastic waistband with inner drawstring.
                  • Chafe-resistant flatlock seams.

                  ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"zeppelin-yoga-pant-33-green-825","links":{},"stock":{"item_id":825,"product_id":825,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-33-green-825.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"841","_score":1,"_source":{"id":841,"sku":"MP09-34-Blue","name":"Livingston All-Purpose Tight-34-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                  It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                  \n

                  • Breathable stretch organic cotton/spandex.
                  • Compression fit
                  • Hidden key pocket
                  • Elastic waist with internal drawcord.

                  ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","color":"50","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"livingston-all-purpose-tight-34-blue-841","links":{},"stock":{"item_id":841,"product_id":841,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-34-blue-841.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"722","_score":1,"_source":{"id":722,"sku":"MT11-XL-Blue","name":"Atlas Fitness Tank-XL-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

                  From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

                  \n

                  • Teal scoop neck cotton tank.
                  • Triblend, soft fabric.
                  • Relaxed fit.

                  ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atlas-fitness-tank-xl-blue-722","links":{},"stock":{"item_id":722,"product_id":722,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-xl-blue-722.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"730","_score":1,"_source":{"id":730,"sku":"MP01-32-Black","name":"Caesar Warm-Up Pant-32-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2018-02-11 12:04:31","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                  Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                  \r\n

                  • Light gray heather knit straight leg pants.
                  • Relaxed fit.
                  • Inseam: 32\".
                  • Machine wash/dry.
                  • CoolTech™ wicking fabric.

                  ","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-32-black","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"176","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"caesar-warm-up-pant-32-black-730","links":{},"stock":{"item_id":730,"product_id":730,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-02-21 16:07:12","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/m/p/mp01-black_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-32-black-730.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"738","_score":1,"_source":{"id":738,"sku":"MP01-34-Purple","name":"Caesar Warm-Up Pant-34-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                  \n

                  • Light gray heather knit straight leg pants.
                  • Relaxed fit.
                  • Inseam: 32\".
                  • Machine wash/dry.
                  • CoolTech™ wicking fabric.

                  ","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","color":"57","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"caesar-warm-up-pant-34-purple-738","links":{},"stock":{"item_id":738,"product_id":738,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-34-purple-738.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"739","_score":1,"_source":{"id":739,"sku":"MP01-36-Black","name":"Caesar Warm-Up Pant-36-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                  \n

                  • Light gray heather knit straight leg pants.
                  • Relaxed fit.
                  • Inseam: 32\".
                  • Machine wash/dry.
                  • CoolTech™ wicking fabric.

                  ","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"caesar-warm-up-pant-36-black-739","links":{},"stock":{"item_id":739,"product_id":739,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-36-black-739.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"735","_score":1,"_source":{"id":735,"sku":"MP01-33-Purple","name":"Caesar Warm-Up Pant-33-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                  \n

                  • Light gray heather knit straight leg pants.
                  • Relaxed fit.
                  • Inseam: 32\".
                  • Machine wash/dry.
                  • CoolTech™ wicking fabric.

                  ","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","color":"57","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"caesar-warm-up-pant-33-purple-735","links":{},"stock":{"item_id":735,"product_id":735,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-33-purple-735.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"751","_score":1,"_source":{"id":751,"sku":"MP02-34-Red","name":"Viktor LumaTech™ Pant-34-Red","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001,"description":"

                  You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                  \n

                  • Dark gray polyester/spandex straight leg pants.
                  • Elastic waistband and internal drawstring.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","color":"58","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"viktor-lumatech-and-trade-pant-34-red-751","links":{},"stock":{"item_id":751,"product_id":751,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-34-red-751.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"776","_score":1,"_source":{"id":776,"sku":"MP04-34-Gray","name":"Supernova Sport Pant-34-Gray","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                  \n

                  • Dark heather gray straight leg cotton pants.
                  • Relaxed fit.
                  • Internal drawstring.
                  • Machine wash/dry.

                  ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"supernova-sport-pant-34-gray-776","links":{},"stock":{"item_id":776,"product_id":776,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-34-gray-776.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"763","_score":1,"_source":{"id":763,"sku":"MP03-34-Green","name":"Geo Insulated Jogging Pant-34-Green","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                  \n

                  • Black polyester spandex pants with zipper pockets.
                  • Reflective safety accents.
                  • Loose fit.
                  • On-seam pockets.
                  • 8\" leg zips. 32\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"geo-insulated-jogging-pant-34-green-763","links":{},"stock":{"item_id":763,"product_id":763,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-34-green-763.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"775","_score":1,"_source":{"id":775,"sku":"MP04-34-Black","name":"Supernova Sport Pant-34-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                  \n

                  • Dark heather gray straight leg cotton pants.
                  • Relaxed fit.
                  • Internal drawstring.
                  • Machine wash/dry.

                  ","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"supernova-sport-pant-34-black-775","links":{},"stock":{"item_id":775,"product_id":775,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-34-black-775.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"764","_score":1,"_source":{"id":764,"sku":"MP03-34-Red","name":"Geo Insulated Jogging Pant-34-Red","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                  \n

                  • Black polyester spandex pants with zipper pockets.
                  • Reflective safety accents.
                  • Loose fit.
                  • On-seam pockets.
                  • 8\" leg zips. 32\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"geo-insulated-jogging-pant-34-red-764","links":{},"stock":{"item_id":764,"product_id":764,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-34-red-764.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"810","_score":1,"_source":{"id":810,"sku":"MP07-32-Purple","name":"Thorpe Track Pant-32-Purple","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                  Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                  \n

                  • Moisture transfer properties.
                  • 7% stretch.
                  • Reflective safety trim.
                  • Elastic drawcord waist.

                  ","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","color":"57","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"thorpe-track-pant-32-purple-810","links":{},"stock":{"item_id":810,"product_id":810,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-32-purple-810.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"818","_score":1,"_source":{"id":818,"sku":"MP07-36-Blue","name":"Thorpe Track Pant-36-Blue","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                  Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                  \n

                  • Moisture transfer properties.
                  • 7% stretch.
                  • Reflective safety trim.
                  • Elastic drawcord waist.

                  ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"thorpe-track-pant-36-blue-818","links":{},"stock":{"item_id":818,"product_id":818,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-36-blue-818.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"832","_score":1,"_source":{"id":832,"sku":"MP08-36-Red","name":"Zeppelin Yoga Pant-36-Red","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001,"description":"

                  Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                  \n

                  • Smooth exterior for easy over-layering.
                  • Brushed fleece interior insulates and wicks.
                  • No-roll elastic waistband with inner drawstring.
                  • Chafe-resistant flatlock seams.

                  ","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"zeppelin-yoga-pant-36-red-832","links":{},"stock":{"item_id":832,"product_id":832,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-36-red-832.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"849","_score":1,"_source":{"id":849,"sku":"MP10-32-Green","name":"Orestes Yoga Pant -32-Green","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                  The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                  \n

                  • A yoga essential.
                  • Breathable stretch organic cotton/spandex.
                  • Standard Fit.

                  ","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-yoga-pant-32-green-849","links":{},"stock":{"item_id":849,"product_id":849,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-32-green-849.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"848","_score":1,"_source":{"id":848,"sku":"MP10-32-Blue","name":"Orestes Yoga Pant -32-Blue","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                  The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                  \n

                  • A yoga essential.
                  • Breathable stretch organic cotton/spandex.
                  • Standard Fit.

                  ","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-yoga-pant-32-blue-848","links":{},"stock":{"item_id":848,"product_id":848,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-32-blue-848.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"845","_score":1,"_source":{"id":845,"sku":"MP09-36-Red","name":"Livingston All-Purpose Tight-36-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                  It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                  \n

                  • Breathable stretch organic cotton/spandex.
                  • Compression fit
                  • Hidden key pocket
                  • Elastic waist with internal drawcord.

                  ","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","color":"58","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"livingston-all-purpose-tight-36-red-845","links":{},"stock":{"item_id":845,"product_id":845,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-36-red-845.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"702","_score":1,"_source":{"id":702,"sku":"MT08-M-Green","name":"Sparta Gym Tank-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

                  \n

                  • Green polyester tank.
                  • Ultra lightweight.
                  • Naturally odor-resistant.
                  • Close-to-body athletic fit.
                  • Chafe-resistant flatlock seams.

                  ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"sparta-gym-tank-m-green-702","links":{},"stock":{"item_id":702,"product_id":702,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-m-green-702.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"710","_score":1,"_source":{"id":710,"sku":"MT09-XL-Blue","name":"Sinbad Fitness Tank-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

                  \n

                  • Teal polyester tank.
                  • Premium fit tank top.
                  • Ultra lightweight.
                  • Naturally odor-resistant.

                  ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"sinbad-fitness-tank-xl-blue-710","links":{},"stock":{"item_id":710,"product_id":710,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-xl-blue-710.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"703","_score":1,"_source":{"id":703,"sku":"MT08-L-Green","name":"Sparta Gym Tank-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

                  \n

                  • Green polyester tank.
                  • Ultra lightweight.
                  • Naturally odor-resistant.
                  • Close-to-body athletic fit.
                  • Chafe-resistant flatlock seams.

                  ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"sparta-gym-tank-l-green-703","links":{},"stock":{"item_id":703,"product_id":703,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-l-green-703.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"704","_score":1,"_source":{"id":704,"sku":"MT08-XL-Green","name":"Sparta Gym Tank-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

                  \n

                  • Green polyester tank.
                  • Ultra lightweight.
                  • Naturally odor-resistant.
                  • Close-to-body athletic fit.
                  • Chafe-resistant flatlock seams.

                  ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"sparta-gym-tank-xl-green-704","links":{},"stock":{"item_id":704,"product_id":704,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-xl-green-704.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"846","_score":1,"_source":{"id":846,"sku":"MP09","name":"Livingston All-Purpose Tight","attribute_set_id":10,"price":75,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":75,"description":"

                  It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                  \n

                  • Breathable stretch organic cotton/spandex.
                  • Compression fit
                  • Hidden key pocket
                  • Elastic waist with internal drawcord.

                  ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"livingston-all-purpose-tight","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,145,38,39],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"1","sale":"0","style_bottom":[113,105,108,115,109],"pattern":"197","climate":[202,203,204,210,211],"slug":"livingston-all-purpose-tight-846","links":{},"stock":{"item_id":846,"product_id":846,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP09-32-Black","id":834,"status":1,"name":"Livingston All-Purpose Tight-32-Black","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"176","color":"49","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","url_key":"livingston-all-purpose-tight-32-black","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"MP09-32-Blue","id":835,"status":1,"name":"Livingston All-Purpose Tight-32-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"176","color":"50","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","url_key":"livingston-all-purpose-tight-32-blue","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"MP09-32-Red","id":836,"status":1,"name":"Livingston All-Purpose Tight-32-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"176","color":"58","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","url_key":"livingston-all-purpose-tight-32-red","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"MP09-33-Black","id":837,"status":1,"name":"Livingston All-Purpose Tight-33-Black","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"177","color":"49","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","url_key":"livingston-all-purpose-tight-33-black","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"MP09-33-Blue","id":838,"status":1,"name":"Livingston All-Purpose Tight-33-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"177","color":"50","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","url_key":"livingston-all-purpose-tight-33-blue","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"MP09-33-Red","id":839,"status":1,"name":"Livingston All-Purpose Tight-33-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"177","color":"58","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","url_key":"livingston-all-purpose-tight-33-red","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"MP09-34-Black","id":840,"status":1,"name":"Livingston All-Purpose Tight-34-Black","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"178","color":"49","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","url_key":"livingston-all-purpose-tight-34-black","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"MP09-34-Blue","id":841,"status":1,"name":"Livingston All-Purpose Tight-34-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"178","color":"50","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","url_key":"livingston-all-purpose-tight-34-blue","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"MP09-34-Red","id":842,"status":1,"name":"Livingston All-Purpose Tight-34-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"178","color":"58","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","url_key":"livingston-all-purpose-tight-34-red","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"MP09-36-Black","id":843,"status":1,"name":"Livingston All-Purpose Tight-36-Black","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"179","color":"49","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","url_key":"livingston-all-purpose-tight-36-black","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"MP09-36-Blue","id":844,"status":1,"name":"Livingston All-Purpose Tight-36-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"179","color":"50","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","url_key":"livingston-all-purpose-tight-36-blue","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"MP09-36-Red","id":845,"status":1,"name":"Livingston All-Purpose Tight-36-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"179","color":"58","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","url_key":"livingston-all-purpose-tight-36-red","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001}],"configurable_options":[{"id":115,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":846,"attribute_code":"color"},{"id":114,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":846,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-846.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"903","_score":1,"_source":{"id":903,"sku":"MSH02","name":"Apollo Running Short","attribute_set_id":10,"price":32.5,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":32.5,"description":"

                  Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

                  \n

                  • Black shorts with green accents.
                  • Side pockets.
                  • 4\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"apollo-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[38,39],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[202,205,209],"slug":"apollo-running-short-903","links":{},"stock":{"item_id":903,"product_id":903,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH02-32-Black","id":899,"status":1,"name":"Apollo Running Short-32-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"49","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","url_key":"apollo-running-short-32-black","msrp_display_actual_price_type":"0"},{"sku":"MSH02-33-Black","id":900,"status":1,"name":"Apollo Running Short-33-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"49","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","url_key":"apollo-running-short-33-black","msrp_display_actual_price_type":"0"},{"sku":"MSH02-34-Black","id":901,"status":1,"name":"Apollo Running Short-34-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"49","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","url_key":"apollo-running-short-34-black","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH02-36-Black","id":902,"status":1,"name":"Apollo Running Short-36-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"49","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","url_key":"apollo-running-short-36-black","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001}],"configurable_options":[{"id":125,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"}],"product_id":903,"attribute_code":"color"},{"id":124,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":903,"attribute_code":"size"}],"color_options":[49],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-903.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"961","_score":1,"_source":{"id":961,"sku":"MSH07-33-Purple","name":"Rapha Sports Short-33-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                  \n

                  • Black shorts with royal accents.
                  • Compression liner.
                  • Inseam: 8\".
                  • Machine wash/dry.

                  ","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","color":"57","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"rapha-sports-short-33-purple-961","links":{},"stock":{"item_id":961,"product_id":961,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-33-purple-961.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"952","_score":1,"_source":{"id":952,"sku":"MSH06-36-Blue","name":"Lono Yoga Short-36-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                  \n

                  • Dark gray shorts with mesh accents.
                  • Ultra flexible four-way stretch.
                  • Flatlock seams and waistband.
                  • Two pockets, phony fly.
                  • Nylon/Lycra outer, Polyester/Lycra inner.

                  ","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"lono-yoga-short-36-blue-952","links":{},"stock":{"item_id":952,"product_id":952,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-36-blue-952.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"971","_score":1,"_source":{"id":971,"sku":"MSH08-32-Green","name":"Orestes Fitness Short-32-Green","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                  \n

                  • Black shorts with dark gray accents.
                  • Elasticized waistband with interior drawstring.
                  • Ventilating mesh detailing.
                  • 100% polyester and recycled polyester.
                  • Machine wash cold, tumble dry low.

                  ","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","color":"53","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-fitness-short-32-green-971","links":{},"stock":{"item_id":971,"product_id":971,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-32-green-971.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"958","_score":1,"_source":{"id":958,"sku":"MSH07-32-Purple","name":"Rapha Sports Short-32-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                  \n

                  • Black shorts with royal accents.
                  • Compression liner.
                  • Inseam: 8\".
                  • Machine wash/dry.

                  ","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","color":"57","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"rapha-sports-short-32-purple-958","links":{},"stock":{"item_id":958,"product_id":958,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-32-purple-958.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"965","_score":1,"_source":{"id":965,"sku":"MSH07-36-Black","name":"Rapha Sports Short-36-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                  \n

                  • Black shorts with royal accents.
                  • Compression liner.
                  • Inseam: 8\".
                  • Machine wash/dry.

                  ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","color":"49","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"rapha-sports-short-36-black-965","links":{},"stock":{"item_id":965,"product_id":965,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-36-black-965.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"972","_score":1,"_source":{"id":972,"sku":"MSH08-33-Black","name":"Orestes Fitness Short-33-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                  \n

                  • Black shorts with dark gray accents.
                  • Elasticized waistband with interior drawstring.
                  • Ventilating mesh detailing.
                  • 100% polyester and recycled polyester.
                  • Machine wash cold, tumble dry low.

                  ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-fitness-short-33-black-972","links":{},"stock":{"item_id":972,"product_id":972,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-33-black-972.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"973","_score":1,"_source":{"id":973,"sku":"MSH08-33-Blue","name":"Orestes Fitness Short-33-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                  \n

                  • Black shorts with dark gray accents.
                  • Elasticized waistband with interior drawstring.
                  • Ventilating mesh detailing.
                  • 100% polyester and recycled polyester.
                  • Machine wash cold, tumble dry low.

                  ","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","color":"50","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-fitness-short-33-blue-973","links":{},"stock":{"item_id":973,"product_id":973,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-33-blue-973.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"974","_score":1,"_source":{"id":974,"sku":"MSH08-33-Green","name":"Orestes Fitness Short-33-Green","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                  \n

                  • Black shorts with dark gray accents.
                  • Elasticized waistband with interior drawstring.
                  • Ventilating mesh detailing.
                  • 100% polyester and recycled polyester.
                  • Machine wash cold, tumble dry low.

                  ","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","color":"53","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-fitness-short-33-green-974","links":{},"stock":{"item_id":974,"product_id":974,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-33-green-974.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"996","_score":1,"_source":{"id":996,"sku":"MSH10-32-Green","name":"Sol Active Short-32-Green","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                  \n

                  • Light blue jersey shorts with mesh detail.
                  • 87% Spandex 13% Lycra.
                  • Machine wash cold, tumble dry low.
                  • Superior performance fabric.
                  • Flat-lock seams.

                  ","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","color":"53","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"sol-active-short-32-green-996","links":{},"stock":{"item_id":996,"product_id":996,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-32-green-996.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"998","_score":1,"_source":{"id":998,"sku":"MSH10-33-Blue","name":"Sol Active Short-33-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                  \n

                  • Light blue jersey shorts with mesh detail.
                  • 87% Spandex 13% Lycra.
                  • Machine wash cold, tumble dry low.
                  • Superior performance fabric.
                  • Flat-lock seams.

                  ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"sol-active-short-33-blue-998","links":{},"stock":{"item_id":998,"product_id":998,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-33-blue-998.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"991","_score":1,"_source":{"id":991,"sku":"MSH09-36-Black","name":"Troy Yoga Short-36-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                  \n

                  • Navy polyester pinstripe shorts.
                  • Woven fabric with moderate stretch.
                  • 62% cotton/34% nylon/4% spandex.
                  • LumaTech™ lining.

                  ","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"troy-yoga-short-36-black-991","links":{},"stock":{"item_id":991,"product_id":991,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-36-black-991.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"999","_score":1,"_source":{"id":999,"sku":"MSH10-33-Green","name":"Sol Active Short-33-Green","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                  \n

                  • Light blue jersey shorts with mesh detail.
                  • 87% Spandex 13% Lycra.
                  • Machine wash cold, tumble dry low.
                  • Superior performance fabric.
                  • Flat-lock seams.

                  ","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","color":"53","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"sol-active-short-33-green-999","links":{},"stock":{"item_id":999,"product_id":999,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-33-green-999.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"913","_score":1,"_source":{"id":913,"sku":"MSH03-36-Black","name":"Meteor Workout Short-36-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                  Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                  \n

                  • Royal blue shorts with light blue accents.
                  • Interior drawstring waistband.
                  • 7\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"meteor-workout-short-36-black-913","links":{},"stock":{"item_id":913,"product_id":913,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-36-black-913.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"905","_score":1,"_source":{"id":905,"sku":"MSH03-32-Blue","name":"Meteor Workout Short-32-Blue","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                  Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                  \n

                  • Royal blue shorts with light blue accents.
                  • Interior drawstring waistband.
                  • 7\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"meteor-workout-short-32-blue-905","links":{},"stock":{"item_id":905,"product_id":905,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-32-blue-905.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"927","_score":1,"_source":{"id":927,"sku":"MSH04-36-Purple","name":"Torque Power Short-36-Purple","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                  Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                  \n

                  • Light gray shorts.
                  • Fitted design.
                  • Elastic waistband.
                  • Flat-seam construction.
                  • 7\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","color":"57","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"torque-power-short-36-purple-927","links":{},"stock":{"item_id":927,"product_id":927,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-36-purple-927.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"943","_score":1,"_source":{"id":943,"sku":"MSH06-32-Blue","name":"Lono Yoga Short-32-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                  \n

                  • Dark gray shorts with mesh accents.
                  • Ultra flexible four-way stretch.
                  • Flatlock seams and waistband.
                  • Two pockets, phony fly.
                  • Nylon/Lycra outer, Polyester/Lycra inner.

                  ","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"lono-yoga-short-32-blue-943","links":{},"stock":{"item_id":943,"product_id":943,"stock_id":1,"qty":44,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-32-blue-943.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"945","_score":1,"_source":{"id":945,"sku":"MSH06-32-Red","name":"Lono Yoga Short-32-Red","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                  \n

                  • Dark gray shorts with mesh accents.
                  • Ultra flexible four-way stretch.
                  • Flatlock seams and waistband.
                  • Two pockets, phony fly.
                  • Nylon/Lycra outer, Polyester/Lycra inner.

                  ","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","color":"58","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"lono-yoga-short-32-red-945","links":{},"stock":{"item_id":945,"product_id":945,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-32-red-945.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"875","_score":1,"_source":{"id":875,"sku":"MP12-32-Red","name":"Cronus Yoga Pant -32-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                  \n

                  • Drawstring waist.
                  • Loose, straight-leg fit.
                  • Lightweight cotton-recycled blend.
                  • Front pockets with stitching detail.
                  • Elastic ankle.

                  ","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","color":"58","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cronus-yoga-pant-32-red-875","links":{},"stock":{"item_id":875,"product_id":875,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-32-red-875.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"892","_score":1,"_source":{"id":892,"sku":"MSH01-34-Black","name":"Cobalt CoolTech™ Fitness Short-34-Black","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

                  It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                  \n

                  • Light blue nylon shorts.
                  • Relaxed fit.
                  • 5\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","color":"49","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cobalt-cooltech-and-trade-fitness-short-34-black-892","links":{},"stock":{"item_id":892,"product_id":892,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-34-black-892.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"899","_score":1,"_source":{"id":899,"sku":"MSH02-32-Black","name":"Apollo Running Short-32-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                  Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

                  \n

                  • Black shorts with green accents.
                  • Side pockets.
                  • 4\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"apollo-running-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"apollo-running-short-32-black-899","links":{},"stock":{"item_id":899,"product_id":899,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-32-black-899.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"897","_score":1,"_source":{"id":897,"sku":"MSH01-36-Red","name":"Cobalt CoolTech™ Fitness Short-36-Red","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

                  It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                  \n

                  • Light blue nylon shorts.
                  • Relaxed fit.
                  • 5\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","color":"58","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cobalt-cooltech-and-trade-fitness-short-36-red-897","links":{},"stock":{"item_id":897,"product_id":897,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-36-red-897.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"864","_score":1,"_source":{"id":864,"sku":"MP11-33-Brown","name":"Aether Gym Pant -33-Brown","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                  The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                  \n

                  • Pants/shorts convertible.
                  • Lightweight moisture wicking.
                  • Water repellent.
                  • Belted waist.

                  ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","color":"51","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-33-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"aether-gym-pant-33-brown-864","links":{},"stock":{"item_id":864,"product_id":864,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-33-brown-864.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"890","_score":1,"_source":{"id":890,"sku":"MSH01-33-Blue","name":"Cobalt CoolTech™ Fitness Short-33-Blue","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

                  It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                  \n

                  • Light blue nylon shorts.
                  • Relaxed fit.
                  • 5\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","color":"50","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cobalt-cooltech-and-trade-fitness-short-33-blue-890","links":{},"stock":{"item_id":890,"product_id":890,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-33-blue-890.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"911","_score":1,"_source":{"id":911,"sku":"MSH03-34-Blue","name":"Meteor Workout Short-34-Blue","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                  Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                  \n

                  • Royal blue shorts with light blue accents.
                  • Interior drawstring waistband.
                  • 7\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"meteor-workout-short-34-blue-911","links":{},"stock":{"item_id":911,"product_id":911,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-34-blue-911.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"884","_score":1,"_source":{"id":884,"sku":"MP12-36-Red","name":"Cronus Yoga Pant -36-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                  \n

                  • Drawstring waist.
                  • Loose, straight-leg fit.
                  • Lightweight cotton-recycled blend.
                  • Front pockets with stitching detail.
                  • Elastic ankle.

                  ","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","color":"58","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cronus-yoga-pant-36-red-884","links":{},"stock":{"item_id":884,"product_id":884,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-36-red-884.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1088","_score":1,"_source":{"id":1088,"sku":"WH04-M-Blue","name":"Miko Pullover Hoodie-M-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                  \n

                  • Teal two-tone hoodie.
                  • Low scoop neckline.
                  • Adjustable hood drawstrings.
                  • Longer rounded hemline for extra back coverage.
                  • Long-Sleeve style.

                  ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"miko-pullover-hoodie-m-blue-1088","links":{},"stock":{"item_id":1088,"product_id":1088,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-m-blue-1088.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1095","_score":1,"_source":{"id":1095,"sku":"WH04-XL-Orange","name":"Miko Pullover Hoodie-XL-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                  \n

                  • Teal two-tone hoodie.
                  • Low scoop neckline.
                  • Adjustable hood drawstrings.
                  • Longer rounded hemline for extra back coverage.
                  • Long-Sleeve style.

                  ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"miko-pullover-hoodie-xl-orange-1095","links":{},"stock":{"item_id":1095,"product_id":1095,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xl-orange-1095.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1081","_score":1,"_source":{"id":1081,"sku":"WH03","name":"Autumn Pullie","attribute_set_id":9,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":57,"description":"

                  With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                  \n

                  • Cayenne Short-Sleeve roll neck sweatshirt.
                  • Relaxed fit.
                  • Short-Sleeves.
                  • Machine wash/dry.

                  ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"autumn-pullie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[137,133],"pattern":"197","climate":[205,206,208],"slug":"autumn-pullie-1081","links":{},"stock":{"item_id":1081,"product_id":1081,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH03-XS-Green","id":1066,"status":1,"name":"Autumn Pullie-XS-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"53","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","url_key":"autumn-pullie-xs-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-XS-Purple","id":1067,"status":1,"name":"Autumn Pullie-XS-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"57","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","url_key":"autumn-pullie-xs-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-XS-Red","id":1068,"status":1,"name":"Autumn Pullie-XS-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"58","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","url_key":"autumn-pullie-xs-red","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-S-Green","id":1069,"status":1,"name":"Autumn Pullie-S-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"53","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","url_key":"autumn-pullie-s-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-S-Purple","id":1070,"status":1,"name":"Autumn Pullie-S-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"57","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","url_key":"autumn-pullie-s-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-S-Red","id":1071,"status":1,"name":"Autumn Pullie-S-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"58","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","url_key":"autumn-pullie-s-red","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-M-Green","id":1072,"status":1,"name":"Autumn Pullie-M-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"53","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","url_key":"autumn-pullie-m-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-M-Purple","id":1073,"status":1,"name":"Autumn Pullie-M-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"57","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","url_key":"autumn-pullie-m-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-M-Red","id":1074,"status":1,"name":"Autumn Pullie-M-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"58","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","url_key":"autumn-pullie-m-red","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-L-Green","id":1075,"status":1,"name":"Autumn Pullie-L-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"53","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","url_key":"autumn-pullie-l-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-L-Purple","id":1076,"status":1,"name":"Autumn Pullie-L-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"57","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","url_key":"autumn-pullie-l-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-L-Red","id":1077,"status":1,"name":"Autumn Pullie-L-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"58","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","url_key":"autumn-pullie-l-red","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-XL-Green","id":1078,"status":1,"name":"Autumn Pullie-XL-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"53","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","url_key":"autumn-pullie-xl-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-XL-Purple","id":1079,"status":1,"name":"Autumn Pullie-XL-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"57","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","url_key":"autumn-pullie-xl-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH03-XL-Red","id":1080,"status":1,"name":"Autumn Pullie-XL-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"58","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","url_key":"autumn-pullie-xl-red","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001}],"configurable_options":[{"id":151,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1081,"attribute_code":"color"},{"id":150,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1081,"attribute_code":"size"}],"color_options":[53,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-1081.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1097","_score":1,"_source":{"id":1097,"sku":"WH04","name":"Miko Pullover Hoodie","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":69,"description":"

                  After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                  \n

                  • Teal two-tone hoodie.
                  • Low scoop neckline.
                  • Adjustable hood drawstrings.
                  • Longer rounded hemline for extra back coverage.
                  • Long-Sleeve style.

                  ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"miko-pullover-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[147,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[137,133],"pattern":"197","climate":[202,204,208],"slug":"miko-pullover-hoodie-1097","links":{},"stock":{"item_id":1097,"product_id":1097,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH04-XS-Blue","id":1082,"status":1,"name":"Miko Pullover Hoodie-XS-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"50","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","url_key":"miko-pullover-hoodie-xs-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-XS-Orange","id":1083,"status":1,"name":"Miko Pullover Hoodie-XS-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"56","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","url_key":"miko-pullover-hoodie-xs-orange","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-XS-Purple","id":1084,"status":1,"name":"Miko Pullover Hoodie-XS-Purple","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"57","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","url_key":"miko-pullover-hoodie-xs-purple","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-S-Blue","id":1085,"status":1,"name":"Miko Pullover Hoodie-S-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"50","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","url_key":"miko-pullover-hoodie-s-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-S-Orange","id":1086,"status":1,"name":"Miko Pullover Hoodie-S-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"56","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","url_key":"miko-pullover-hoodie-s-orange","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-S-Purple","id":1087,"status":1,"name":"Miko Pullover Hoodie-S-Purple","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"57","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","url_key":"miko-pullover-hoodie-s-purple","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-M-Blue","id":1088,"status":1,"name":"Miko Pullover Hoodie-M-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"50","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","url_key":"miko-pullover-hoodie-m-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-M-Orange","id":1089,"status":1,"name":"Miko Pullover Hoodie-M-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"56","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","url_key":"miko-pullover-hoodie-m-orange","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-M-Purple","id":1090,"status":1,"name":"Miko Pullover Hoodie-M-Purple","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"57","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","url_key":"miko-pullover-hoodie-m-purple","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-L-Blue","id":1091,"status":1,"name":"Miko Pullover Hoodie-L-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"50","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","url_key":"miko-pullover-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-L-Orange","id":1092,"status":1,"name":"Miko Pullover Hoodie-L-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"56","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","url_key":"miko-pullover-hoodie-l-orange","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-L-Purple","id":1093,"status":1,"name":"Miko Pullover Hoodie-L-Purple","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"57","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","url_key":"miko-pullover-hoodie-l-purple","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-XL-Blue","id":1094,"status":1,"name":"Miko Pullover Hoodie-XL-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"50","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","url_key":"miko-pullover-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-XL-Orange","id":1095,"status":1,"name":"Miko Pullover Hoodie-XL-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"56","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","url_key":"miko-pullover-hoodie-xl-orange","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"WH04-XL-Purple","id":1096,"status":1,"name":"Miko Pullover Hoodie-XL-Purple","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"57","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","url_key":"miko-pullover-hoodie-xl-purple","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001}],"configurable_options":[{"id":153,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1097,"attribute_code":"color"},{"id":152,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1097,"attribute_code":"size"}],"color_options":[50,56,57],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-1097.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"955","_score":1,"_source":{"id":955,"sku":"MSH06","name":"Lono Yoga Short","attribute_set_id":10,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":32,"description":"

                  Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                  \n

                  • Dark gray shorts with mesh accents.
                  • Ultra flexible four-way stretch.
                  • Flatlock seams and waistband.
                  • Two pockets, phony fly.
                  • Nylon/Lycra outer, Polyester/Lycra inner.

                  ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"lono-yoga-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38,39],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,105,108],"pattern":"197","climate":[202,205,212,209],"slug":"lono-yoga-short-955","links":{},"stock":{"item_id":955,"product_id":955,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH06-32-Blue","id":943,"status":1,"name":"Lono Yoga Short-32-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"176","color":"50","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","url_key":"lono-yoga-short-32-blue","msrp_display_actual_price_type":"0"},{"sku":"MSH06-32-Gray","id":944,"status":1,"name":"Lono Yoga Short-32-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"176","color":"52","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","url_key":"lono-yoga-short-32-gray","msrp_display_actual_price_type":"0"},{"sku":"MSH06-32-Red","id":945,"status":1,"name":"Lono Yoga Short-32-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"176","color":"58","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","url_key":"lono-yoga-short-32-red","msrp_display_actual_price_type":"0"},{"sku":"MSH06-33-Blue","id":946,"status":1,"name":"Lono Yoga Short-33-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"177","color":"50","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","url_key":"lono-yoga-short-33-blue","msrp_display_actual_price_type":"0"},{"sku":"MSH06-33-Gray","id":947,"status":1,"name":"Lono Yoga Short-33-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"177","color":"52","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","url_key":"lono-yoga-short-33-gray","msrp_display_actual_price_type":"0"},{"sku":"MSH06-33-Red","id":948,"status":1,"name":"Lono Yoga Short-33-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"177","color":"58","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","url_key":"lono-yoga-short-33-red","msrp_display_actual_price_type":"0"},{"sku":"MSH06-34-Blue","id":949,"status":1,"name":"Lono Yoga Short-34-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"178","color":"50","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","url_key":"lono-yoga-short-34-blue","msrp_display_actual_price_type":"0"},{"sku":"MSH06-34-Gray","id":950,"status":1,"name":"Lono Yoga Short-34-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"178","color":"52","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","url_key":"lono-yoga-short-34-gray","msrp_display_actual_price_type":"0"},{"sku":"MSH06-34-Red","id":951,"status":1,"name":"Lono Yoga Short-34-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"178","color":"58","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","url_key":"lono-yoga-short-34-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MSH06-36-Blue","id":952,"status":1,"name":"Lono Yoga Short-36-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"179","color":"50","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","url_key":"lono-yoga-short-36-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MSH06-36-Gray","id":953,"status":1,"name":"Lono Yoga Short-36-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"179","color":"52","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","url_key":"lono-yoga-short-36-gray","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"MSH06-36-Red","id":954,"status":1,"name":"Lono Yoga Short-36-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"179","color":"58","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","url_key":"lono-yoga-short-36-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001}],"configurable_options":[{"id":133,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"}],"product_id":955,"attribute_code":"color"},{"id":132,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":955,"attribute_code":"size"}],"color_options":[50,52,58],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-955.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1060","_score":1,"_source":{"id":1060,"sku":"WH02-L-Green","name":"Hera Pullover Hoodie-L-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                  \n

                  • Teal with purple stiching.
                  • Hoodie pullover.
                  • Snug fit.

                  ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hera-pullover-hoodie-l-green-1060","links":{},"stock":{"item_id":1060,"product_id":1060,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-l-green-1060.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1053","_score":1,"_source":{"id":1053,"sku":"WH02-S-Blue","name":"Hera Pullover Hoodie-S-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                  \n

                  • Teal with purple stiching.
                  • Hoodie pullover.
                  • Snug fit.

                  ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hera-pullover-hoodie-s-blue-1053","links":{},"stock":{"item_id":1053,"product_id":1053,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-s-blue-1053.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1063","_score":1,"_source":{"id":1063,"sku":"WH02-XL-Green","name":"Hera Pullover Hoodie-XL-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                  \n

                  • Teal with purple stiching.
                  • Hoodie pullover.
                  • Snug fit.

                  ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hera-pullover-hoodie-xl-green-1063","links":{},"stock":{"item_id":1063,"product_id":1063,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xl-green-1063.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1070","_score":1,"_source":{"id":1070,"sku":"WH03-S-Purple","name":"Autumn Pullie-S-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                  \n

                  • Cayenne Short-Sleeve roll neck sweatshirt.
                  • Relaxed fit.
                  • Short-Sleeves.
                  • Machine wash/dry.

                  ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"autumn-pullie-s-purple-1070","links":{},"stock":{"item_id":1070,"product_id":1070,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-s-purple-1070.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1067","_score":1,"_source":{"id":1067,"sku":"WH03-XS-Purple","name":"Autumn Pullie-XS-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                  \n

                  • Cayenne Short-Sleeve roll neck sweatshirt.
                  • Relaxed fit.
                  • Short-Sleeves.
                  • Machine wash/dry.

                  ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"autumn-pullie-xs-purple-1067","links":{},"stock":{"item_id":1067,"product_id":1067,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xs-purple-1067.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1057","_score":1,"_source":{"id":1057,"sku":"WH02-M-Green","name":"Hera Pullover Hoodie-M-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                  \n

                  • Teal with purple stiching.
                  • Hoodie pullover.
                  • Snug fit.

                  ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hera-pullover-hoodie-m-green-1057","links":{},"stock":{"item_id":1057,"product_id":1057,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-m-green-1057.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1090","_score":1,"_source":{"id":1090,"sku":"WH04-M-Purple","name":"Miko Pullover Hoodie-M-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                  \n

                  • Teal two-tone hoodie.
                  • Low scoop neckline.
                  • Adjustable hood drawstrings.
                  • Longer rounded hemline for extra back coverage.
                  • Long-Sleeve style.

                  ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"miko-pullover-hoodie-m-purple-1090","links":{},"stock":{"item_id":1090,"product_id":1090,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-m-purple-1090.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1076","_score":1,"_source":{"id":1076,"sku":"WH03-L-Purple","name":"Autumn Pullie-L-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                  \n

                  • Cayenne Short-Sleeve roll neck sweatshirt.
                  • Relaxed fit.
                  • Short-Sleeves.
                  • Machine wash/dry.

                  ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"autumn-pullie-l-purple-1076","links":{},"stock":{"item_id":1076,"product_id":1076,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-l-purple-1076.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1100","_score":1,"_source":{"id":1100,"sku":"WH05-XS-White","name":"Selene Yoga Hoodie-XS-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                  \n

                  • Ivory heather full zip 3/4 sleeve hoodie.
                  • Zip pocket at arm for convenient storage.
                  • 24.0\" body length.
                  • 89% Polyester / 11% Spandex.

                  ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"selene-yoga-hoodie-xs-white-1100","links":{},"stock":{"item_id":1100,"product_id":1100,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xs-white-1100.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1031","_score":1,"_source":{"id":1031,"sku":"MSH12-36-Gray","name":"Pierce Gym Short-36-Gray","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

                  The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                  \n

                  • Dark red cotton shorts.
                  • 87% Supplex, 13% Lycra.
                  • Adjustable drawstring waistband.
                  • Built-in mesh brief.
                  • Machine wash cold, tumble dry low.

                  ","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","color":"52","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"pierce-gym-short-36-gray-1031","links":{},"stock":{"item_id":1031,"product_id":1031,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-36-gray-1031.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1010","_score":1,"_source":{"id":1010,"sku":"MSH11-32-Red","name":"Arcadio Gym Short-32-Red","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001,"description":"

                  The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                  \n

                  • Royal blue cotton shorts.
                  • Built-in mesh brief.
                  • 87% Spandex 13% Lycra.
                  • Adjustable drawstring.

                  ","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","color":"58","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"arcadio-gym-short-32-red-1010","links":{},"stock":{"item_id":1010,"product_id":1010,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-32-red-1010.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1025","_score":1,"_source":{"id":1025,"sku":"MSH12-33-Gray","name":"Pierce Gym Short-33-Gray","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

                  The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                  \n

                  • Dark red cotton shorts.
                  • 87% Supplex, 13% Lycra.
                  • Adjustable drawstring waistband.
                  • Built-in mesh brief.
                  • Machine wash cold, tumble dry low.

                  ","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","color":"52","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"pierce-gym-short-33-gray-1025","links":{},"stock":{"item_id":1025,"product_id":1025,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-33-gray-1025.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1039","_score":1,"_source":{"id":1039,"sku":"WH01-S-Purple","name":"Mona Pullover Hoodlie-S-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                  • Light green heathered hoodie.
                  • Long-Sleeve, pullover.
                  • Long elliptical hem for extra coverage.
                  • Deep button placket for layering.
                  • Double rib design.
                  • Mid layer, mid weight.
                  • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mona-pullover-hoodlie-s-purple-1039","links":{},"stock":{"item_id":1039,"product_id":1039,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-s-purple-1039.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1043","_score":1,"_source":{"id":1043,"sku":"WH01-L-Green","name":"Mona Pullover Hoodlie-L-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                  • Light green heathered hoodie.
                  • Long-Sleeve, pullover.
                  • Long elliptical hem for extra coverage.
                  • Deep button placket for layering.
                  • Double rib design.
                  • Mid layer, mid weight.
                  • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mona-pullover-hoodlie-l-green-1043","links":{},"stock":{"item_id":1043,"product_id":1043,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-l-green-1043.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1050","_score":1,"_source":{"id":1050,"sku":"WH02-XS-Blue","name":"Hera Pullover Hoodie-XS-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                  \n

                  • Teal with purple stiching.
                  • Hoodie pullover.
                  • Snug fit.

                  ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hera-pullover-hoodie-xs-blue-1050","links":{},"stock":{"item_id":1050,"product_id":1050,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xs-blue-1050.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1042","_score":1,"_source":{"id":1042,"sku":"WH01-M-Purple","name":"Mona Pullover Hoodlie-M-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                  • Light green heathered hoodie.
                  • Long-Sleeve, pullover.
                  • Long elliptical hem for extra coverage.
                  • Deep button placket for layering.
                  • Double rib design.
                  • Mid layer, mid weight.
                  • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mona-pullover-hoodlie-m-purple-1042","links":{},"stock":{"item_id":1042,"product_id":1042,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-m-purple-1042.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1104","_score":1,"_source":{"id":1104,"sku":"WH05-M-Orange","name":"Selene Yoga Hoodie-M-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                  \n

                  • Ivory heather full zip 3/4 sleeve hoodie.
                  • Zip pocket at arm for convenient storage.
                  • 24.0\" body length.
                  • 89% Polyester / 11% Spandex.

                  ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"selene-yoga-hoodie-m-orange-1104","links":{},"stock":{"item_id":1104,"product_id":1104,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-m-orange-1104.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1103","_score":1,"_source":{"id":1103,"sku":"WH05-S-White","name":"Selene Yoga Hoodie-S-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                  \n

                  • Ivory heather full zip 3/4 sleeve hoodie.
                  • Zip pocket at arm for convenient storage.
                  • 24.0\" body length.
                  • 89% Polyester / 11% Spandex.

                  ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"selene-yoga-hoodie-s-white-1103","links":{},"stock":{"item_id":1103,"product_id":1103,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-s-white-1103.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1117","_score":1,"_source":{"id":1117,"sku":"WH06-L-Purple","name":"Daphne Full-Zip Hoodie-L-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

                  \n

                  • Purple full zip hoodie with pink accents.
                  • Heather texture.
                  • 4-way stretch.
                  • Pre-shrunk.
                  • Hood lined in vegan Sherpa for added warmth.
                  • Ribbed hem on hood and front pouch pocket.
                  • 60% Cotton / 40% Polyester.

                  ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"daphne-full-zip-hoodie-l-purple-1117","links":{},"stock":{"item_id":1117,"product_id":1117,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-l-purple-1117.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1111","_score":1,"_source":{"id":1111,"sku":"WH05-XL-Purple","name":"Selene Yoga Hoodie-XL-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                  \n

                  • Ivory heather full zip 3/4 sleeve hoodie.
                  • Zip pocket at arm for convenient storage.
                  • 24.0\" body length.
                  • 89% Polyester / 11% Spandex.

                  ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"selene-yoga-hoodie-xl-purple-1111","links":{},"stock":{"item_id":1111,"product_id":1111,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xl-purple-1111.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1121","_score":1,"_source":{"id":1121,"sku":"WH07-XS-Purple","name":"Phoebe Zipper Sweatshirt-XS-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                  \n

                  • Gray full zip hoodie with yellow detail.
                  • Hand-warmer pockets.
                  • Zip MP3 pocket with outlet for earphones wire.
                  • Polyester/cotton.
                  • Washable.

                  ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"phoebe-zipper-sweatshirt-xs-purple-1121","links":{},"stock":{"item_id":1121,"product_id":1121,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xs-purple-1121.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1129","_score":1,"_source":{"id":1129,"sku":"WH07-L-Gray","name":"Phoebe Zipper Sweatshirt-L-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                  \n

                  • Gray full zip hoodie with yellow detail.
                  • Hand-warmer pockets.
                  • Zip MP3 pocket with outlet for earphones wire.
                  • Polyester/cotton.
                  • Washable.

                  ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"phoebe-zipper-sweatshirt-l-gray-1129","links":{},"stock":{"item_id":1129,"product_id":1129,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-l-gray-1129.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1112","_score":1,"_source":{"id":1112,"sku":"WH05-XL-White","name":"Selene Yoga Hoodie-XL-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                  \n

                  • Ivory heather full zip 3/4 sleeve hoodie.
                  • Zip pocket at arm for convenient storage.
                  • 24.0\" body length.
                  • 89% Polyester / 11% Spandex.

                  ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"selene-yoga-hoodie-xl-white-1112","links":{},"stock":{"item_id":1112,"product_id":1112,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xl-white-1112.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1158","_score":1,"_source":{"id":1158,"sku":"WH09-M-Green","name":"Ariel Roll Sleeve Sweatshirt-M-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                  \n

                  • Purple two-tone lightweight hoodie.
                  • 100% cotton.
                  • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                  • Casual, comfy piece for running errands or weekend activities.

                  ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ariel-roll-sleeve-sweatshirt-m-green-1158","links":{},"stock":{"item_id":1158,"product_id":1158,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-m-green-1158.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1200","_score":1,"_source":{"id":1200,"sku":"WH12-XS-Gray","name":"Circe Hooded Ice Fleece-XS-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                  Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                  \n

                  Full-zip front.
                  Three-panel hood.
                  Flatlock seams throughout.
                  Welt hand pockets.
                  Machine wash/dry.

                  ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"circe-hooded-ice-fleece-xs-gray-1200","links":{},"stock":{"item_id":1200,"product_id":1200,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xs-gray-1200.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1155","_score":1,"_source":{"id":1155,"sku":"WH09-S-Green","name":"Ariel Roll Sleeve Sweatshirt-S-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                  \n

                  • Purple two-tone lightweight hoodie.
                  • 100% cotton.
                  • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                  • Casual, comfy piece for running errands or weekend activities.

                  ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ariel-roll-sleeve-sweatshirt-s-green-1155","links":{},"stock":{"item_id":1155,"product_id":1155,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-s-green-1155.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1157","_score":1,"_source":{"id":1157,"sku":"WH09-S-Red","name":"Ariel Roll Sleeve Sweatshirt-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                  \n

                  • Purple two-tone lightweight hoodie.
                  • 100% cotton.
                  • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                  • Casual, comfy piece for running errands or weekend activities.

                  ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ariel-roll-sleeve-sweatshirt-s-red-1157","links":{},"stock":{"item_id":1157,"product_id":1157,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-s-red-1157.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1177","_score":1,"_source":{"id":1177,"sku":"WH10-L-Blue","name":"Helena Hooded Fleece-L-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

                  Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                  \n

                  Full zip.
                  Banded cuffs and waist.
                  Front pockets.
                  Machine wash/dry.

                  ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helena-hooded-fleece-l-blue-1177","links":{},"stock":{"item_id":1177,"product_id":1177,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-l-blue-1177.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1153","_score":1,"_source":{"id":1153,"sku":"WH09-XS-Purple","name":"Ariel Roll Sleeve Sweatshirt-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                  \n

                  • Purple two-tone lightweight hoodie.
                  • 100% cotton.
                  • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                  • Casual, comfy piece for running errands or weekend activities.

                  ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ariel-roll-sleeve-sweatshirt-xs-purple-1153","links":{},"stock":{"item_id":1153,"product_id":1153,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xs-purple-1153.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1186","_score":1,"_source":{"id":1186,"sku":"WH11-XS-Orange","name":"Eos V-Neck Hoodie-XS-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                  Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                  \n

                  Semi-fitted.
                  Long-Sleeve.
                  Machine wash/line dry.

                  ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"eos-v-neck-hoodie-xs-orange-1186","links":{},"stock":{"item_id":1186,"product_id":1186,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xs-orange-1186.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1171","_score":1,"_source":{"id":1171,"sku":"WH10-S-Blue","name":"Helena Hooded Fleece-S-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

                  Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                  \n

                  Full zip.
                  Banded cuffs and waist.
                  Front pockets.
                  Machine wash/dry.

                  ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helena-hooded-fleece-s-blue-1171","links":{},"stock":{"item_id":1171,"product_id":1171,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-s-blue-1171.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1191","_score":1,"_source":{"id":1191,"sku":"WH11-M-Green","name":"Eos V-Neck Hoodie-M-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                  Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                  \n

                  Semi-fitted.
                  Long-Sleeve.
                  Machine wash/line dry.

                  ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"eos-v-neck-hoodie-m-green-1191","links":{},"stock":{"item_id":1191,"product_id":1191,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-m-green-1191.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1189","_score":1,"_source":{"id":1189,"sku":"WH11-S-Orange","name":"Eos V-Neck Hoodie-S-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                  Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                  \n

                  Semi-fitted.
                  Long-Sleeve.
                  Machine wash/line dry.

                  ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"eos-v-neck-hoodie-s-orange-1189","links":{},"stock":{"item_id":1189,"product_id":1189,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-s-orange-1189.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1195","_score":1,"_source":{"id":1195,"sku":"WH11-L-Orange","name":"Eos V-Neck Hoodie-L-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                  Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                  \n

                  Semi-fitted.
                  Long-Sleeve.
                  Machine wash/line dry.

                  ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"eos-v-neck-hoodie-l-orange-1195","links":{},"stock":{"item_id":1195,"product_id":1195,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-l-orange-1195.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1143","_score":1,"_source":{"id":1143,"sku":"WH08-M-Purple","name":"Cassia Funnel Sweatshirt-M-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                  \n

                  • White full zip hoodie with gray detail.
                  • 65% Cotton/28% Nylon/7% Spandex.
                  • Front slash pockets.
                  • Tagless label at back neck.

                  ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"cassia-funnel-sweatshirt-m-purple-1143","links":{},"stock":{"item_id":1143,"product_id":1143,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-m-purple-1143.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1008","_score":1,"_source":{"id":1008,"sku":"MSH11-32-Black","name":"Arcadio Gym Short-32-Black","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001,"description":"

                  The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                  \n

                  • Royal blue cotton shorts.
                  • Built-in mesh brief.
                  • 87% Spandex 13% Lycra.
                  • Adjustable drawstring.

                  ","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"arcadio-gym-short-32-black-1008","links":{},"stock":{"item_id":1008,"product_id":1008,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-32-black-1008.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1289","_score":1,"_source":{"id":1289,"sku":"WJ05","name":"Riona Full Zip Jacket","attribute_set_id":9,"price":60,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":60,"description":"

                  The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                  \n

                  • Brown heather full zip rouched jacket.
                  • Side hand pockets for extra storage.
                  • High collar.
                  • Thick cuffs for extra coverage.
                  • Durable, shape retention material to longer wear.

                  ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"riona-full-zip-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,148,149],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[117,118,121,125,126,129],"pattern":"197","climate":[203,204,208,211],"slug":"riona-full-zip-jacket-1289","links":{},"stock":{"item_id":1289,"product_id":1289,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ05-XS-Brown","id":1274,"status":1,"name":"Riona Full Zip Jacket-XS-Brown","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"51","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","url_key":"riona-full-zip-jacket-xs-brown","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-XS-Green","id":1275,"status":1,"name":"Riona Full Zip Jacket-XS-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"53","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","url_key":"riona-full-zip-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-XS-Red","id":1276,"status":1,"name":"Riona Full Zip Jacket-XS-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"58","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","url_key":"riona-full-zip-jacket-xs-red","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-S-Brown","id":1277,"status":1,"name":"Riona Full Zip Jacket-S-Brown","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"51","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","url_key":"riona-full-zip-jacket-s-brown","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-S-Green","id":1278,"status":1,"name":"Riona Full Zip Jacket-S-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"53","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","url_key":"riona-full-zip-jacket-s-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-S-Red","id":1279,"status":1,"name":"Riona Full Zip Jacket-S-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"58","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","url_key":"riona-full-zip-jacket-s-red","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-M-Brown","id":1280,"status":1,"name":"Riona Full Zip Jacket-M-Brown","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"51","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","url_key":"riona-full-zip-jacket-m-brown","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-M-Green","id":1281,"status":1,"name":"Riona Full Zip Jacket-M-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"53","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","url_key":"riona-full-zip-jacket-m-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-M-Red","id":1282,"status":1,"name":"Riona Full Zip Jacket-M-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"58","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","url_key":"riona-full-zip-jacket-m-red","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-L-Brown","id":1283,"status":1,"name":"Riona Full Zip Jacket-L-Brown","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"51","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","url_key":"riona-full-zip-jacket-l-brown","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-L-Green","id":1284,"status":1,"name":"Riona Full Zip Jacket-L-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"53","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","url_key":"riona-full-zip-jacket-l-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-L-Red","id":1285,"status":1,"name":"Riona Full Zip Jacket-L-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"58","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","url_key":"riona-full-zip-jacket-l-red","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-XL-Brown","id":1286,"status":1,"name":"Riona Full Zip Jacket-XL-Brown","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"51","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","url_key":"riona-full-zip-jacket-xl-brown","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-XL-Green","id":1287,"status":1,"name":"Riona Full Zip Jacket-XL-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"53","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","url_key":"riona-full-zip-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"WJ05-XL-Red","id":1288,"status":1,"name":"Riona Full Zip Jacket-XL-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"58","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","url_key":"riona-full-zip-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001}],"configurable_options":[{"id":179,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":51,"label":"Brown"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1289,"attribute_code":"color"},{"id":178,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1289,"attribute_code":"size"}],"color_options":[51,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-1289.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1203","_score":1,"_source":{"id":1203,"sku":"WH12-S-Gray","name":"Circe Hooded Ice Fleece-S-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                  Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                  \n

                  Full-zip front.
                  Three-panel hood.
                  Flatlock seams throughout.
                  Welt hand pockets.
                  Machine wash/dry.

                  ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"circe-hooded-ice-fleece-s-gray-1203","links":{},"stock":{"item_id":1203,"product_id":1203,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-s-gray-1203.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1216","_score":1,"_source":{"id":1216,"sku":"WJ01-S-Blue","name":"Stellar Solar Jacket-S-Blue","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                  Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                  \n

                  • Loose fit.
                  • Reflectivity.
                  • Flat seams.
                  • Machine wash/dry.
                  • Deep pink jacket with front panel rouching

                  ","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","color":"50","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stellar-solar-jacket-s-blue-1216","links":{},"stock":{"item_id":1216,"product_id":1216,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-s-blue-1216.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1206","_score":1,"_source":{"id":1206,"sku":"WH12-M-Gray","name":"Circe Hooded Ice Fleece-M-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                  Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                  \n

                  Full-zip front.
                  Three-panel hood.
                  Flatlock seams throughout.
                  Welt hand pockets.
                  Machine wash/dry.

                  ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"circe-hooded-ice-fleece-m-gray-1206","links":{},"stock":{"item_id":1206,"product_id":1206,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-m-gray-1206.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1220","_score":1,"_source":{"id":1220,"sku":"WJ01-M-Red","name":"Stellar Solar Jacket-M-Red","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                  Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                  \n

                  • Loose fit.
                  • Reflectivity.
                  • Flat seams.
                  • Machine wash/dry.
                  • Deep pink jacket with front panel rouching

                  ","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","color":"58","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stellar-solar-jacket-m-red-1220","links":{},"stock":{"item_id":1220,"product_id":1220,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-m-red-1220.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1214","_score":1,"_source":{"id":1214,"sku":"WH12-XL-Purple","name":"Circe Hooded Ice Fleece-XL-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                  Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                  \n

                  Full-zip front.
                  Three-panel hood.
                  Flatlock seams throughout.
                  Welt hand pockets.
                  Machine wash/dry.

                  ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"circe-hooded-ice-fleece-xl-purple-1214","links":{},"stock":{"item_id":1214,"product_id":1214,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xl-purple-1214.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1205","_score":1,"_source":{"id":1205,"sku":"WH12-S-Purple","name":"Circe Hooded Ice Fleece-S-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                  Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                  \n

                  Full-zip front.
                  Three-panel hood.
                  Flatlock seams throughout.
                  Welt hand pockets.
                  Machine wash/dry.

                  ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"circe-hooded-ice-fleece-s-purple-1205","links":{},"stock":{"item_id":1205,"product_id":1205,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-s-purple-1205.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1258","_score":1,"_source":{"id":1258,"sku":"WJ04-XS-Orange","name":"Ingrid Running Jacket-XS-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

                  The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                  • Slim fit.
                  • Moisture-wicking fabric.
                  • Two side pockets.
                  • Zippered pocket at back waist.
                  • Machine wash/dry.
                  • Ivory specked full zip

                  ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ingrid-running-jacket-xs-orange-1258","links":{},"stock":{"item_id":1258,"product_id":1258,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xs-orange-1258.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1263","_score":1,"_source":{"id":1263,"sku":"WJ04-S-White","name":"Ingrid Running Jacket-S-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

                  The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                  • Slim fit.
                  • Moisture-wicking fabric.
                  • Two side pockets.
                  • Zippered pocket at back waist.
                  • Machine wash/dry.
                  • Ivory specked full zip

                  ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ingrid-running-jacket-s-white-1263","links":{},"stock":{"item_id":1263,"product_id":1263,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-s-white-1263.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1264","_score":1,"_source":{"id":1264,"sku":"WJ04-M-Orange","name":"Ingrid Running Jacket-M-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

                  The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                  • Slim fit.
                  • Moisture-wicking fabric.
                  • Two side pockets.
                  • Zippered pocket at back waist.
                  • Machine wash/dry.
                  • Ivory specked full zip

                  ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ingrid-running-jacket-m-orange-1264","links":{},"stock":{"item_id":1264,"product_id":1264,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-m-orange-1264.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1261","_score":1,"_source":{"id":1261,"sku":"WJ04-S-Orange","name":"Ingrid Running Jacket-S-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

                  The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                  • Slim fit.
                  • Moisture-wicking fabric.
                  • Two side pockets.
                  • Zippered pocket at back waist.
                  • Machine wash/dry.
                  • Ivory specked full zip

                  ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ingrid-running-jacket-s-orange-1261","links":{},"stock":{"item_id":1261,"product_id":1261,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-s-orange-1261.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1271","_score":1,"_source":{"id":1271,"sku":"WJ04-XL-Red","name":"Ingrid Running Jacket-XL-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

                  The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                  • Slim fit.
                  • Moisture-wicking fabric.
                  • Two side pockets.
                  • Zippered pocket at back waist.
                  • Machine wash/dry.
                  • Ivory specked full zip

                  ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ingrid-running-jacket-xl-red-1271","links":{},"stock":{"item_id":1271,"product_id":1271,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xl-red-1271.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1290","_score":1,"_source":{"id":1290,"sku":"WJ07-XS-Orange","name":"Inez Full Zip Jacket-XS-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                  \n

                  • Purple heather inset full zip jacket.
                  • Full zip hoodie.
                  • Contrast binding along the zipper, hood and sleeves.
                  • Inseam pockets for storage.
                  • Thumbholes for comfortable fit.

                  ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"inez-full-zip-jacket-xs-orange-1290","links":{},"stock":{"item_id":1290,"product_id":1290,"stock_id":1,"qty":53,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xs-orange-1290.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1268","_score":1,"_source":{"id":1268,"sku":"WJ04-L-Red","name":"Ingrid Running Jacket-L-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

                  The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                  • Slim fit.
                  • Moisture-wicking fabric.
                  • Two side pockets.
                  • Zippered pocket at back waist.
                  • Machine wash/dry.
                  • Ivory specked full zip

                  ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ingrid-running-jacket-l-red-1268","links":{},"stock":{"item_id":1268,"product_id":1268,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-l-red-1268.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1322","_score":1,"_source":{"id":1322,"sku":"WJ09-XS-Blue","name":"Jade Yoga Jacket-XS-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


                  If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                  \n

                  • Seafoam 1/4 zip pullover with purple stitching.
                  • Lightweight, quick-drying, water-resistant construction.
                  • Shirred details at front and back for a feminine look.
                  • Hood collapses into collar.
                  • Mesh liner for breathability.
                  • Front zip pockets.
                  • Hem cinches at sideseam.
                  • 100% Polyester.

                  ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jade-yoga-jacket-xs-blue-1322","links":{},"stock":{"item_id":1322,"product_id":1322,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xs-blue-1322.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1312","_score":1,"_source":{"id":1312,"sku":"WJ08-M-Gray","name":"Adrienne Trek Jacket-M-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                  \n

                  • gray 1/4 zip pullover.
                  • Comfortable, relaxed fit.
                  • Front zip for venting.
                  • Spacious, kangaroo pockets.
                  • 27\" body length.
                  • 95% Organic Cotton / 5% Spandex.

                  ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"adrienne-trek-jacket-m-gray-1312","links":{},"stock":{"item_id":1312,"product_id":1312,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-m-gray-1312.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1336","_score":1,"_source":{"id":1336,"sku":"WJ09-XL-Green","name":"Jade Yoga Jacket-XL-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


                  If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                  \n

                  • Seafoam 1/4 zip pullover with purple stitching.
                  • Lightweight, quick-drying, water-resistant construction.
                  • Shirred details at front and back for a feminine look.
                  • Hood collapses into collar.
                  • Mesh liner for breathability.
                  • Front zip pockets.
                  • Hem cinches at sideseam.
                  • 100% Polyester.

                  ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jade-yoga-jacket-xl-green-1336","links":{},"stock":{"item_id":1336,"product_id":1336,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xl-green-1336.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1332","_score":1,"_source":{"id":1332,"sku":"WJ09-L-Gray","name":"Jade Yoga Jacket-L-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


                  If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                  \n

                  • Seafoam 1/4 zip pullover with purple stitching.
                  • Lightweight, quick-drying, water-resistant construction.
                  • Shirred details at front and back for a feminine look.
                  • Hood collapses into collar.
                  • Mesh liner for breathability.
                  • Front zip pockets.
                  • Hem cinches at sideseam.
                  • 100% Polyester.

                  ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jade-yoga-jacket-l-gray-1332","links":{},"stock":{"item_id":1332,"product_id":1332,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-l-gray-1332.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1331","_score":1,"_source":{"id":1331,"sku":"WJ09-L-Blue","name":"Jade Yoga Jacket-L-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


                  If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                  \n

                  • Seafoam 1/4 zip pullover with purple stitching.
                  • Lightweight, quick-drying, water-resistant construction.
                  • Shirred details at front and back for a feminine look.
                  • Hood collapses into collar.
                  • Mesh liner for breathability.
                  • Front zip pockets.
                  • Hem cinches at sideseam.
                  • 100% Polyester.

                  ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jade-yoga-jacket-l-blue-1331","links":{},"stock":{"item_id":1331,"product_id":1331,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-l-blue-1331.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1227","_score":1,"_source":{"id":1227,"sku":"WJ02-XS-Blue","name":"Josie Yoga Jacket-XS-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

                  When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                  \n

                  • Slate rouched neck pullover.
                  • Moisture-wicking fabric.
                  • Hidden zipper.
                  • Mesh armpit venting.
                  • Dropped rear hem.

                  ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"josie-yoga-jacket-xs-blue-1227","links":{},"stock":{"item_id":1227,"product_id":1227,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xs-blue-1227.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1233","_score":1,"_source":{"id":1233,"sku":"WJ02-M-Blue","name":"Josie Yoga Jacket-M-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

                  When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                  \n

                  • Slate rouched neck pullover.
                  • Moisture-wicking fabric.
                  • Hidden zipper.
                  • Mesh armpit venting.
                  • Dropped rear hem.

                  ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"josie-yoga-jacket-m-blue-1233","links":{},"stock":{"item_id":1233,"product_id":1233,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-m-blue-1233.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1239","_score":1,"_source":{"id":1239,"sku":"WJ02-XL-Blue","name":"Josie Yoga Jacket-XL-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

                  When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                  \n

                  • Slate rouched neck pullover.
                  • Moisture-wicking fabric.
                  • Hidden zipper.
                  • Mesh armpit venting.
                  • Dropped rear hem.

                  ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"josie-yoga-jacket-xl-blue-1239","links":{},"stock":{"item_id":1239,"product_id":1239,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xl-blue-1239.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1238","_score":1,"_source":{"id":1238,"sku":"WJ02-XL-Black","name":"Josie Yoga Jacket-XL-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

                  When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                  \n

                  • Slate rouched neck pullover.
                  • Moisture-wicking fabric.
                  • Hidden zipper.
                  • Mesh armpit venting.
                  • Dropped rear hem.

                  ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"josie-yoga-jacket-xl-black-1238","links":{},"stock":{"item_id":1238,"product_id":1238,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xl-black-1238.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1247","_score":1,"_source":{"id":1247,"sku":"WJ03-S-Red","name":"Augusta Pullover Jacket-S-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                  \n

                  • Pink half-zip pullover.
                  • Front pouch pockets.
                  • Fold-down collar.

                  ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"augusta-pullover-jacket-s-red-1247","links":{},"stock":{"item_id":1247,"product_id":1247,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-s-red-1247.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1347","_score":1,"_source":{"id":1347,"sku":"WJ10-L-Black","name":"Nadia Elements Shell-L-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                  \n

                  • Zippered front.
                  • Zippered side pockets.
                  • Drawstring-adjustable waist and hood.
                  • Machine wash/line dry.
                  • Light blue 1/4 zip pullover.

                  ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nadia-elements-shell-l-black-1347","links":{},"stock":{"item_id":1347,"product_id":1347,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-l-black-1347.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1342","_score":1,"_source":{"id":1342,"sku":"WJ10-S-Orange","name":"Nadia Elements Shell-S-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                  \n

                  • Zippered front.
                  • Zippered side pockets.
                  • Drawstring-adjustable waist and hood.
                  • Machine wash/line dry.
                  • Light blue 1/4 zip pullover.

                  ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nadia-elements-shell-s-orange-1342","links":{},"stock":{"item_id":1342,"product_id":1342,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-s-orange-1342.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1256","_score":1,"_source":{"id":1256,"sku":"WJ03-XL-Red","name":"Augusta Pullover Jacket-XL-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                  \n

                  • Pink half-zip pullover.
                  • Front pouch pockets.
                  • Fold-down collar.

                  ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"augusta-pullover-jacket-xl-red-1256","links":{},"stock":{"item_id":1256,"product_id":1256,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xl-red-1256.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1287","_score":1,"_source":{"id":1287,"sku":"WJ05-XL-Green","name":"Riona Full Zip Jacket-XL-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                  \n

                  • Brown heather full zip rouched jacket.
                  • Side hand pockets for extra storage.
                  • High collar.
                  • Thick cuffs for extra coverage.
                  • Durable, shape retention material to longer wear.

                  ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"riona-full-zip-jacket-xl-green-1287","links":{},"stock":{"item_id":1287,"product_id":1287,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xl-green-1287.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1308","_score":1,"_source":{"id":1308,"sku":"WJ08-XS-Purple","name":"Adrienne Trek Jacket-XS-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                  \n

                  • gray 1/4 zip pullover.
                  • Comfortable, relaxed fit.
                  • Front zip for venting.
                  • Spacious, kangaroo pockets.
                  • 27\" body length.
                  • 95% Organic Cotton / 5% Spandex.

                  ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"adrienne-trek-jacket-xs-purple-1308","links":{},"stock":{"item_id":1308,"product_id":1308,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xs-purple-1308.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1311","_score":1,"_source":{"id":1311,"sku":"WJ08-S-Purple","name":"Adrienne Trek Jacket-S-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                  \n

                  • gray 1/4 zip pullover.
                  • Comfortable, relaxed fit.
                  • Front zip for venting.
                  • Spacious, kangaroo pockets.
                  • 27\" body length.
                  • 95% Organic Cotton / 5% Spandex.

                  ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"adrienne-trek-jacket-s-purple-1311","links":{},"stock":{"item_id":1311,"product_id":1311,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-s-purple-1311.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1213","_score":1,"_source":{"id":1213,"sku":"WH12-XL-Green","name":"Circe Hooded Ice Fleece-XL-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                  Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                  \n

                  Full-zip front.
                  Three-panel hood.
                  Flatlock seams throughout.
                  Welt hand pockets.
                  Machine wash/dry.

                  ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"circe-hooded-ice-fleece-xl-green-1213","links":{},"stock":{"item_id":1213,"product_id":1213,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xl-green-1213.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1468","_score":1,"_source":{"id":1468,"sku":"WS07-XS-Yellow","name":"Juliana Short-Sleeve Tee-XS-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                  \n

                  • Black scoop neck tee.
                  • Side rouching.
                  • Relaxed fit.

                  ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juliana-short-sleeve-tee-xs-yellow-1468","links":{},"stock":{"item_id":1468,"product_id":1468,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xs-yellow-1468.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1467","_score":1,"_source":{"id":1467,"sku":"WS07-XS-White","name":"Juliana Short-Sleeve Tee-XS-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                  \n

                  • Black scoop neck tee.
                  • Side rouching.
                  • Relaxed fit.

                  ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juliana-short-sleeve-tee-xs-white-1467","links":{},"stock":{"item_id":1467,"product_id":1467,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xs-white-1467.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1488","_score":1,"_source":{"id":1488,"sku":"WS08-M-Black","name":"Minerva LumaTech™ V-Tee-M-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                  \n

                  • Navy blue heather soft v-neck tee.
                  • Flatlock seams for chafe-free comfort.
                  • Relaxed cut.
                  • Ultra-lightweight fabric.
                  • Machine wash/dry.

                  ","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"minerva-lumatech-and-trade-v-tee-m-black-1488","links":{},"stock":{"item_id":1488,"product_id":1488,"stock_id":1,"qty":28,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-m-black-1488.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1485","_score":1,"_source":{"id":1485,"sku":"WS08-S-Black","name":"Minerva LumaTech™ V-Tee-S-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                  \n

                  • Navy blue heather soft v-neck tee.
                  • Flatlock seams for chafe-free comfort.
                  • Relaxed cut.
                  • Ultra-lightweight fabric.
                  • Machine wash/dry.

                  ","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"minerva-lumatech-and-trade-v-tee-s-black-1485","links":{},"stock":{"item_id":1485,"product_id":1485,"stock_id":1,"qty":36,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-s-black-1485.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1491","_score":1,"_source":{"id":1491,"sku":"WS08-L-Black","name":"Minerva LumaTech™ V-Tee-L-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                  \n

                  • Navy blue heather soft v-neck tee.
                  • Flatlock seams for chafe-free comfort.
                  • Relaxed cut.
                  • Ultra-lightweight fabric.
                  • Machine wash/dry.

                  ","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"minerva-lumatech-and-trade-v-tee-l-black-1491","links":{},"stock":{"item_id":1491,"product_id":1491,"stock_id":1,"qty":37,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-l-black-1491.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1475","_score":1,"_source":{"id":1475,"sku":"WS07-L-Black","name":"Juliana Short-Sleeve Tee-L-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                  \n

                  • Black scoop neck tee.
                  • Side rouching.
                  • Relaxed fit.

                  ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juliana-short-sleeve-tee-l-black-1475","links":{},"stock":{"item_id":1475,"product_id":1475,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-l-black-1475.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1495","_score":1,"_source":{"id":1495,"sku":"WS08-XL-Blue","name":"Minerva LumaTech™ V-Tee-XL-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                  \n

                  • Navy blue heather soft v-neck tee.
                  • Flatlock seams for chafe-free comfort.
                  • Relaxed cut.
                  • Ultra-lightweight fabric.
                  • Machine wash/dry.

                  ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"minerva-lumatech-and-trade-v-tee-xl-blue-1495","links":{},"stock":{"item_id":1495,"product_id":1495,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xl-blue-1495.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1482","_score":1,"_source":{"id":1482,"sku":"WS08-XS-Black","name":"Minerva LumaTech™ V-Tee-XS-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2019-04-15 08:30:18","weight":1,"product_links":[{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WS08","linked_product_type":"configurable","position":1},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WH02","linked_product_type":"configurable","position":2},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WS09","linked_product_type":"configurable","position":3},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WJ03","linked_product_type":"configurable","position":4},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WP10","linked_product_type":"configurable","position":5},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WT03","linked_product_type":"configurable","position":6},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WH10","linked_product_type":"configurable","position":7},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WJ12","linked_product_type":"configurable","position":8}],"tier_prices":[],"custom_attributes":null,"description":"

                  Don't be fooled by the simple design of our Minerva LumaTechâ„¢ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup. Beatufiul style.

                  \r\n

                  • Navy blue heather soft v-neck tee.
                  • Flatlock seams for chafe-free comfort.
                  • Relaxed cut.
                  • Ultra-lightweight fabric.
                  • Machine wash/dry. Beatufiull drying features

                  ","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xs-black","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"167","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"1","style_general":"126","slug":"minerva-lumatech-and-trade-v-tee-xs-black-1482","links":{"related":[{"sku":"WS08","pos":1},{"sku":"WH02","pos":2},{"sku":"WS09","pos":3},{"sku":"WJ03","pos":4},{"sku":"WP10","pos":5},{"sku":"WT03","pos":6},{"sku":"WH10","pos":7},{"sku":"WJ12","pos":8}]},"stock":{"item_id":1482,"product_id":1482,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-04-15 08:30:18","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xs-black-1482.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1449","_score":1,"_source":{"id":1449,"sku":"WS04","name":"Layla Tee","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

                  Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                  \n

                  • Teal tee.
                  • Long back hem.
                  • Dropped shoulders.

                  ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"layla-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"33","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"layla-tee-1449","links":{},"stock":{"item_id":1449,"product_id":1449,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS04-XS-Blue","id":1434,"status":1,"name":"Layla Tee-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"167","color":"50","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","url_key":"layla-tee-xs-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-XS-Green","id":1435,"status":1,"name":"Layla Tee-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"167","color":"53","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","url_key":"layla-tee-xs-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-XS-Red","id":1436,"status":1,"name":"Layla Tee-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"167","color":"58","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","url_key":"layla-tee-xs-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-S-Blue","id":1437,"status":1,"name":"Layla Tee-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"168","color":"50","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","url_key":"layla-tee-s-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-S-Green","id":1438,"status":1,"name":"Layla Tee-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"168","color":"53","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","url_key":"layla-tee-s-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-S-Red","id":1439,"status":1,"name":"Layla Tee-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"168","color":"58","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","url_key":"layla-tee-s-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-M-Blue","id":1440,"status":1,"name":"Layla Tee-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"169","color":"50","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","url_key":"layla-tee-m-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-M-Green","id":1441,"status":1,"name":"Layla Tee-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"169","color":"53","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","url_key":"layla-tee-m-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-M-Red","id":1442,"status":1,"name":"Layla Tee-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"169","color":"58","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","url_key":"layla-tee-m-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-L-Blue","id":1443,"status":1,"name":"Layla Tee-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"170","color":"50","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","url_key":"layla-tee-l-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-L-Green","id":1444,"status":1,"name":"Layla Tee-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"170","color":"53","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","url_key":"layla-tee-l-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-L-Red","id":1445,"status":1,"name":"Layla Tee-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"170","color":"58","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","url_key":"layla-tee-l-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-XL-Blue","id":1446,"status":1,"name":"Layla Tee-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"171","color":"50","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","url_key":"layla-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-XL-Green","id":1447,"status":1,"name":"Layla Tee-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"171","color":"53","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","url_key":"layla-tee-xl-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS04-XL-Red","id":1448,"status":1,"name":"Layla Tee-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"171","color":"58","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","url_key":"layla-tee-xl-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":199,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1449,"attribute_code":"color"},{"id":198,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1449,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-1449.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1413","_score":1,"_source":{"id":1413,"sku":"WS02-L-Red","name":"Gabrielle Micro Sleeve Top-L-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                  \n

                  • Lime green v-neck tee.
                  • Slimming, flattering fit.
                  • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                  • Longer curved hem provides additional coverage.
                  • 55% Hemp / 45% Organic Cotton.

                  ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gabrielle-micro-sleeve-top-l-red-1413","links":{},"stock":{"item_id":1413,"product_id":1413,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-l-red-1413.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1408","_score":1,"_source":{"id":1408,"sku":"WS02-M-Blue","name":"Gabrielle Micro Sleeve Top-M-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                  \n

                  • Lime green v-neck tee.
                  • Slimming, flattering fit.
                  • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                  • Longer curved hem provides additional coverage.
                  • 55% Hemp / 45% Organic Cotton.

                  ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gabrielle-micro-sleeve-top-m-blue-1408","links":{},"stock":{"item_id":1408,"product_id":1408,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-m-blue-1408.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1410","_score":1,"_source":{"id":1410,"sku":"WS02-M-Red","name":"Gabrielle Micro Sleeve Top-M-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                  \n

                  • Lime green v-neck tee.
                  • Slimming, flattering fit.
                  • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                  • Longer curved hem provides additional coverage.
                  • 55% Hemp / 45% Organic Cotton.

                  ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gabrielle-micro-sleeve-top-m-red-1410","links":{},"stock":{"item_id":1410,"product_id":1410,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-m-red-1410.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1440","_score":1,"_source":{"id":1440,"sku":"WS04-M-Blue","name":"Layla Tee-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                  \n

                  • Teal tee.
                  • Long back hem.
                  • Dropped shoulders.

                  ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"layla-tee-m-blue-1440","links":{},"stock":{"item_id":1440,"product_id":1440,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-m-blue-1440.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1446","_score":1,"_source":{"id":1446,"sku":"WS04-XL-Blue","name":"Layla Tee-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                  \n

                  • Teal tee.
                  • Long back hem.
                  • Dropped shoulders.

                  ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"layla-tee-xl-blue-1446","links":{},"stock":{"item_id":1446,"product_id":1446,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xl-blue-1446.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1437","_score":1,"_source":{"id":1437,"sku":"WS04-S-Blue","name":"Layla Tee-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                  \n

                  • Teal tee.
                  • Long back hem.
                  • Dropped shoulders.

                  ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"layla-tee-s-blue-1437","links":{},"stock":{"item_id":1437,"product_id":1437,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-s-blue-1437.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1445","_score":1,"_source":{"id":1445,"sku":"WS04-L-Red","name":"Layla Tee-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                  \n

                  • Teal tee.
                  • Long back hem.
                  • Dropped shoulders.

                  ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"layla-tee-l-red-1445","links":{},"stock":{"item_id":1445,"product_id":1445,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-l-red-1445.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1518","_score":1,"_source":{"id":1518,"sku":"WS10-S-Red","name":"Karissa V-Neck Tee-S-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                  \n

                  • Pink heather soft v-neck tee.
                  • Luma signature micro sleeves.
                  • Semi-fitted.
                  • Machine wash/dry.

                  ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"karissa-v-neck-tee-s-red-1518","links":{},"stock":{"item_id":1518,"product_id":1518,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-s-red-1518.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1538","_score":1,"_source":{"id":1538,"sku":"WS11-M-Yellow","name":"Diva Gym Tee-M-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                  \n

                  • Bright yellow v-neck tee.
                  • Moisture-wicking fabric.
                  • Long-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"diva-gym-tee-m-yellow-1538","links":{},"stock":{"item_id":1538,"product_id":1538,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-m-yellow-1538.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1520","_score":1,"_source":{"id":1520,"sku":"WS10-M-Green","name":"Karissa V-Neck Tee-M-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                  \n

                  • Pink heather soft v-neck tee.
                  • Luma signature micro sleeves.
                  • Semi-fitted.
                  • Machine wash/dry.

                  ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"karissa-v-neck-tee-m-green-1520","links":{},"stock":{"item_id":1520,"product_id":1520,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-m-green-1520.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1524","_score":1,"_source":{"id":1524,"sku":"WS10-L-Red","name":"Karissa V-Neck Tee-L-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                  \n

                  • Pink heather soft v-neck tee.
                  • Luma signature micro sleeves.
                  • Semi-fitted.
                  • Machine wash/dry.

                  ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"karissa-v-neck-tee-l-red-1524","links":{},"stock":{"item_id":1524,"product_id":1524,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-l-red-1524.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1533","_score":1,"_source":{"id":1533,"sku":"WS11-S-Green","name":"Diva Gym Tee-S-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                  \n

                  • Bright yellow v-neck tee.
                  • Moisture-wicking fabric.
                  • Long-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"diva-gym-tee-s-green-1533","links":{},"stock":{"item_id":1533,"product_id":1533,"stock_id":1,"qty":44,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-s-green-1533.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1505","_score":1,"_source":{"id":1505,"sku":"WS09-M-Red","name":"Tiffany Fitness Tee-M-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                  \n

                  • Teal soft scoop neck tee.
                  • Contrast stitching pattern.
                  • Machine wash/dry.

                  ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tiffany-fitness-tee-m-red-1505","links":{},"stock":{"item_id":1505,"product_id":1505,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-m-red-1505.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1508","_score":1,"_source":{"id":1508,"sku":"WS09-L-Red","name":"Tiffany Fitness Tee-L-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                  \n

                  • Teal soft scoop neck tee.
                  • Contrast stitching pattern.
                  • Machine wash/dry.

                  ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tiffany-fitness-tee-l-red-1508","links":{},"stock":{"item_id":1508,"product_id":1508,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-l-red-1508.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1507","_score":1,"_source":{"id":1507,"sku":"WS09-L-Blue","name":"Tiffany Fitness Tee-L-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                  \n

                  • Teal soft scoop neck tee.
                  • Contrast stitching pattern.
                  • Machine wash/dry.

                  ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tiffany-fitness-tee-l-blue-1507","links":{},"stock":{"item_id":1507,"product_id":1507,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-l-blue-1507.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1391","_score":1,"_source":{"id":1391,"sku":"WJ12-S-Purple","name":"Olivia 1/4 Zip Light Jacket-S-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                  Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                  \n

                  • Loose fit.
                  • Reflectivity.
                  • Flat seams.
                  • Machine wash/dry.

                  ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"olivia-14-zip-light-jacket-s-purple-1391","links":{},"stock":{"item_id":1391,"product_id":1391,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-s-purple-1391.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1390","_score":1,"_source":{"id":1390,"sku":"WJ12-S-Blue","name":"Olivia 1/4 Zip Light Jacket-S-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                  Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                  \n

                  • Loose fit.
                  • Reflectivity.
                  • Flat seams.
                  • Machine wash/dry.

                  ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"olivia-14-zip-light-jacket-s-blue-1390","links":{},"stock":{"item_id":1390,"product_id":1390,"stock_id":1,"qty":80,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-s-blue-1390.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1456","_score":1,"_source":{"id":1456,"sku":"WS06-M-Gray","name":"Elisa EverCool™ Tee-M-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                  \n

                  • Purple heather v-neck tee.
                  • Short-Sleeves.
                  • Luma EverCool™ fabric.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"elisa-evercool-and-trade-tee-m-gray-1456","links":{},"stock":{"item_id":1456,"product_id":1456,"stock_id":1,"qty":78,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-m-gray-1456.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1458","_score":1,"_source":{"id":1458,"sku":"WS06-M-Red","name":"Elisa EverCool™ Tee-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                  \n

                  • Purple heather v-neck tee.
                  • Short-Sleeves.
                  • Luma EverCool™ fabric.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"elisa-evercool-and-trade-tee-m-red-1458","links":{},"stock":{"item_id":1458,"product_id":1458,"stock_id":1,"qty":59,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-m-red-1458.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1412","_score":1,"_source":{"id":1412,"sku":"WS02-L-Green","name":"Gabrielle Micro Sleeve Top-L-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                  \n

                  • Lime green v-neck tee.
                  • Slimming, flattering fit.
                  • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                  • Longer curved hem provides additional coverage.
                  • 55% Hemp / 45% Organic Cotton.

                  ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gabrielle-micro-sleeve-top-l-green-1412","links":{},"stock":{"item_id":1412,"product_id":1412,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-l-green-1412.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1402","_score":1,"_source":{"id":1402,"sku":"WS02-XS-Blue","name":"Gabrielle Micro Sleeve Top-XS-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                  \n

                  • Lime green v-neck tee.
                  • Slimming, flattering fit.
                  • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                  • Longer curved hem provides additional coverage.
                  • 55% Hemp / 45% Organic Cotton.

                  ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gabrielle-micro-sleeve-top-xs-blue-1402","links":{},"stock":{"item_id":1402,"product_id":1402,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xs-blue-1402.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1373","_score":1,"_source":{"id":1373,"sku":"WJ06-S-Blue","name":"Juno Jacket-S-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                  On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                  \n

                  • Adjustable hood.
                  • Fleece-lined, zippered hand pockets.
                  • Thumbhole cuffs.
                  • Full zip.
                  • Mock-neck collar.
                  • Machine wash/dry.

                  ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juno-jacket-s-blue-1373","links":{},"stock":{"item_id":1373,"product_id":1373,"stock_id":1,"qty":78,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-s-blue-1373.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1641","_score":1,"_source":{"id":1641,"sku":"WB03","name":"Celeste Sports Bra","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:21","updated_at":"2019-04-16 07:59:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":12.287701,"max_price":12.287701,"max_regular_price":12.287701,"minimal_regular_price":12.287701,"special_price":null,"minimal_price":12.287701,"regular_price":39,"description":"

                  Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                  \r\n

                  • Mint bra top.
                  • Seam-free interior molded cups
                  • Odor control.
                  • UV protection.
                  • Machine wash/dry.

                  ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","category_ids":[26,8,35,2],"options_container":"container2","required_options":"1","has_options":"1","url_key":"celeste-sports-bra","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":[143,154],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":"131","pattern":"197","climate":[205,209],"slug":"celeste-sports-bra-1641","links":{},"stock":{"item_id":1641,"product_id":1641,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":null,"vid":null},{"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":null,"vid":null}],"configurable_children":[{"sku":"WB03-XS-Green","id":1626,"status":1,"name":"Celeste Sports Bra-XS-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"167","color":"53","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","url_key":"celeste-sports-bra-xs-green","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-XS-Red","id":1627,"status":1,"name":"Celeste Sports Bra-XS-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"167","color":"58","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","url_key":"celeste-sports-bra-xs-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-XS-Yellow","id":1628,"status":1,"name":"Celeste Sports Bra-XS-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"167","color":"60","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","url_key":"celeste-sports-bra-xs-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-S-Green","id":1629,"status":1,"name":"Celeste Sports Bra-S-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"168","color":"53","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","url_key":"celeste-sports-bra-s-green","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-S-Red","id":1630,"status":1,"name":"Celeste Sports Bra-S-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"168","color":"58","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","url_key":"celeste-sports-bra-s-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-S-Yellow","id":1631,"status":1,"name":"Celeste Sports Bra-S-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"168","color":"60","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","url_key":"celeste-sports-bra-s-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-M-Green","id":1632,"status":1,"name":"Celeste Sports Bra-M-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"169","color":"53","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","url_key":"celeste-sports-bra-m-green","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-M-Red","id":1633,"status":1,"name":"Celeste Sports Bra-M-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"169","color":"58","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","url_key":"celeste-sports-bra-m-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-M-Yellow","id":1634,"status":1,"name":"Celeste Sports Bra-M-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"169","color":"60","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","url_key":"celeste-sports-bra-m-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-L-Green","id":1635,"status":1,"name":"Celeste Sports Bra-L-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"0","category_ids":["26","8","35","2"],"size":"170","color":"53","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","url_key":"celeste-sports-bra-l-green","special_price":9.99,"special_from_date":"2019-04-18 00:00:00","msrp_display_actual_price_type":"0","final_price":9.99,"max_price":9.99,"max_regular_price":9.99,"minimal_regular_price":9.99,"minimal_price":9.99,"regular_price":39},{"sku":"WB03-L-Red","id":1636,"status":1,"name":"Celeste Sports Bra-L-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"170","color":"58","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","url_key":"celeste-sports-bra-l-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-L-Yellow","id":1637,"status":1,"name":"Celeste Sports Bra-L-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"170","color":"60","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","url_key":"celeste-sports-bra-l-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-XL-Green","id":1638,"status":1,"name":"Celeste Sports Bra-XL-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"171","color":"53","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","url_key":"celeste-sports-bra-xl-green","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-XL-Red","id":1639,"status":1,"name":"Celeste Sports Bra-XL-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"171","color":"58","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","url_key":"celeste-sports-bra-xl-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB03-XL-Yellow","id":1640,"status":1,"name":"Celeste Sports Bra-XL-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"171","color":"60","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","url_key":"celeste-sports-bra-xl-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001}],"configurable_options":[{"id":314,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":1641,"attribute_code":"color"},{"id":315,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1641,"attribute_code":"size"}],"color_options":[53,58,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-1641.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1593","_score":1,"_source":{"id":1593,"sku":"WS05","name":"Desiree Fitness Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":24,"description":"

                  When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                  \n

                  • Short-Sleeves.
                  • Performance fabric.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"desiree-fitness-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[152,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"desiree-fitness-tee-1593","links":{},"stock":{"item_id":1593,"product_id":1593,"stock_id":1,"qty":24,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS05-XS-Black","id":1578,"status":1,"name":"Desiree Fitness Tee-XS-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"167","color":"49","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","url_key":"desiree-fitness-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WS05-XS-Orange","id":1579,"status":1,"name":"Desiree Fitness Tee-XS-Orange","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"167","color":"56","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","url_key":"desiree-fitness-tee-xs-orange","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-XS-Yellow","id":1580,"status":1,"name":"Desiree Fitness Tee-XS-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"167","color":"60","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","url_key":"desiree-fitness-tee-xs-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-S-Black","id":1581,"status":1,"name":"Desiree Fitness Tee-S-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"168","color":"49","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","url_key":"desiree-fitness-tee-s-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-S-Orange","id":1582,"status":1,"name":"Desiree Fitness Tee-S-Orange","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"168","color":"56","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","url_key":"desiree-fitness-tee-s-orange","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-S-Yellow","id":1583,"status":1,"name":"Desiree Fitness Tee-S-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"168","color":"60","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","url_key":"desiree-fitness-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-M-Black","id":1584,"status":1,"name":"Desiree Fitness Tee-M-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"169","color":"49","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","url_key":"desiree-fitness-tee-m-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-M-Orange","id":1585,"status":1,"name":"Desiree Fitness Tee-M-Orange","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"169","color":"56","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","url_key":"desiree-fitness-tee-m-orange","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-M-Yellow","id":1586,"status":1,"name":"Desiree Fitness Tee-M-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"169","color":"60","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","url_key":"desiree-fitness-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-L-Black","id":1587,"status":1,"name":"Desiree Fitness Tee-L-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"170","color":"49","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","url_key":"desiree-fitness-tee-l-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-L-Orange","id":1588,"status":1,"name":"Desiree Fitness Tee-L-Orange","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"170","color":"56","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","url_key":"desiree-fitness-tee-l-orange","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-L-Yellow","id":1589,"status":1,"name":"Desiree Fitness Tee-L-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"170","color":"60","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","url_key":"desiree-fitness-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-XL-Black","id":1590,"status":1,"name":"Desiree Fitness Tee-XL-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"171","color":"49","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","url_key":"desiree-fitness-tee-xl-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-XL-Orange","id":1591,"status":1,"name":"Desiree Fitness Tee-XL-Orange","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"171","color":"56","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","url_key":"desiree-fitness-tee-xl-orange","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS05-XL-Yellow","id":1592,"status":1,"name":"Desiree Fitness Tee-XL-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"171","color":"60","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","url_key":"desiree-fitness-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001}],"configurable_options":[{"id":217,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1593,"attribute_code":"color"},{"id":216,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1593,"attribute_code":"size"}],"color_options":[49,56,60],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-1593.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1567","_score":1,"_source":{"id":1567,"sku":"WS01-S-Yellow","name":"Gwyn Endurance Tee-S-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                  \n

                  • Short-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gwyn-endurance-tee-s-yellow-1567","links":{},"stock":{"item_id":1567,"product_id":1567,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-s-yellow-1567.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1573","_score":1,"_source":{"id":1573,"sku":"WS01-L-Yellow","name":"Gwyn Endurance Tee-L-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                  \n

                  • Short-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gwyn-endurance-tee-l-yellow-1573","links":{},"stock":{"item_id":1573,"product_id":1573,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-l-yellow-1573.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1569","_score":1,"_source":{"id":1569,"sku":"WS01-M-Green","name":"Gwyn Endurance Tee-M-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                  \n

                  • Short-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gwyn-endurance-tee-m-green-1569","links":{},"stock":{"item_id":1569,"product_id":1569,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-m-green-1569.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1575","_score":1,"_source":{"id":1575,"sku":"WS01-XL-Green","name":"Gwyn Endurance Tee-XL-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                  \n

                  • Short-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gwyn-endurance-tee-xl-green-1575","links":{},"stock":{"item_id":1575,"product_id":1575,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xl-green-1575.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1580","_score":1,"_source":{"id":1580,"sku":"WS05-XS-Yellow","name":"Desiree Fitness Tee-XS-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                  \n

                  • Short-Sleeves.
                  • Performance fabric.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"desiree-fitness-tee-xs-yellow-1580","links":{},"stock":{"item_id":1580,"product_id":1580,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xs-yellow-1580.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1599","_score":1,"_source":{"id":1599,"sku":"WB01-S-Purple","name":"Electra Bra Top-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                  \n

                  • Gray rouched bra top.
                  • Attractive back straps feature contrasting motif fabric.
                  • Interior bra top is lined with breathable mesh.
                  • Elastic underband for superior support.
                  • Removable cup inserts.
                  • Chafe-free flat lock seams provide added comfort.

                  ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"electra-bra-top-s-purple-1599","links":{},"stock":{"item_id":1599,"product_id":1599,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-s-purple-1599.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1552","_score":1,"_source":{"id":1552,"sku":"WS12-M-Blue","name":"Radiant Tee-M-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

                  So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                  \n

                  • Salmon soft scoop neck tee.
                  • Athletic, semi-form fit.
                  • Flat seams prevent chafing.
                  • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                  ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"radiant-tee-m-blue-1552","links":{},"stock":{"item_id":1552,"product_id":1552,"stock_id":1,"qty":78,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-m-blue-1552.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1554","_score":1,"_source":{"id":1554,"sku":"WS12-M-Purple","name":"Radiant Tee-M-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

                  So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                  \n

                  • Salmon soft scoop neck tee.
                  • Athletic, semi-form fit.
                  • Flat seams prevent chafing.
                  • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                  ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"radiant-tee-m-purple-1554","links":{},"stock":{"item_id":1554,"product_id":1554,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-m-purple-1554.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1560","_score":1,"_source":{"id":1560,"sku":"WS12-XL-Purple","name":"Radiant Tee-XL-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

                  So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                  \n

                  • Salmon soft scoop neck tee.
                  • Athletic, semi-form fit.
                  • Flat seams prevent chafing.
                  • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                  ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"radiant-tee-xl-purple-1560","links":{},"stock":{"item_id":1560,"product_id":1560,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xl-purple-1560.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1557","_score":1,"_source":{"id":1557,"sku":"WS12-L-Purple","name":"Radiant Tee-L-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

                  So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                  \n

                  • Salmon soft scoop neck tee.
                  • Athletic, semi-form fit.
                  • Flat seams prevent chafing.
                  • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                  ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"radiant-tee-l-purple-1557","links":{},"stock":{"item_id":1557,"product_id":1557,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-l-purple-1557.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1578","_score":1,"_source":{"id":1578,"sku":"WS05-XS-Black","name":"Desiree Fitness Tee-XS-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                  When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                  \n

                  • Short-Sleeves.
                  • Performance fabric.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"desiree-fitness-tee-xs-black-1578","links":{},"stock":{"item_id":1578,"product_id":1578,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-07 12:11:20","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xs-black-1578.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1565","_score":1,"_source":{"id":1565,"sku":"WS01-S-Black","name":"Gwyn Endurance Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                  \n

                  • Short-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gwyn-endurance-tee-s-black-1565","links":{},"stock":{"item_id":1565,"product_id":1565,"stock_id":1,"qty":37,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-s-black-1565.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1631","_score":1,"_source":{"id":1631,"sku":"WB03-S-Yellow","name":"Celeste Sports Bra-S-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                  \n

                  • Mint bra top.
                  • Seam-free interior molded cups
                  • Odor control.
                  • UV protection.
                  • Machine wash/dry.

                  ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"celeste-sports-bra-s-yellow-1631","links":{},"stock":{"item_id":1631,"product_id":1631,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-s-yellow-1631.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1634","_score":1,"_source":{"id":1634,"sku":"WB03-M-Yellow","name":"Celeste Sports Bra-M-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                  \n

                  • Mint bra top.
                  • Seam-free interior molded cups
                  • Odor control.
                  • UV protection.
                  • Machine wash/dry.

                  ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"celeste-sports-bra-m-yellow-1634","links":{},"stock":{"item_id":1634,"product_id":1634,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-m-yellow-1634.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1638","_score":1,"_source":{"id":1638,"sku":"WB03-XL-Green","name":"Celeste Sports Bra-XL-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                  \n

                  • Mint bra top.
                  • Seam-free interior molded cups
                  • Odor control.
                  • UV protection.
                  • Machine wash/dry.

                  ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"celeste-sports-bra-xl-green-1638","links":{},"stock":{"item_id":1638,"product_id":1638,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xl-green-1638.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1649","_score":1,"_source":{"id":1649,"sku":"WB04-M-Purple","name":"Prima Compete Bra Top-M-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                  `
                  • Colorblocked details.
                  • Machine wash/line dry.

                  ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"prima-compete-bra-top-m-purple-1649","links":{},"stock":{"item_id":1649,"product_id":1649,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-m-purple-1649.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1650","_score":1,"_source":{"id":1650,"sku":"WB04-M-Yellow","name":"Prima Compete Bra Top-M-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                  `
                  • Colorblocked details.
                  • Machine wash/line dry.

                  ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"prima-compete-bra-top-m-yellow-1650","links":{},"stock":{"item_id":1650,"product_id":1650,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-m-yellow-1650.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1644","_score":1,"_source":{"id":1644,"sku":"WB04-XS-Yellow","name":"Prima Compete Bra Top-XS-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                  `
                  • Colorblocked details.
                  • Machine wash/line dry.

                  ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"prima-compete-bra-top-xs-yellow-1644","links":{},"stock":{"item_id":1644,"product_id":1644,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xs-yellow-1644.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1653","_score":1,"_source":{"id":1653,"sku":"WB04-L-Yellow","name":"Prima Compete Bra Top-L-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                  `
                  • Colorblocked details.
                  • Machine wash/line dry.

                  ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"prima-compete-bra-top-l-yellow-1653","links":{},"stock":{"item_id":1653,"product_id":1653,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-l-yellow-1653.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1658","_score":1,"_source":{"id":1658,"sku":"WB05-XS-Black","name":"Lucia Cross-Fit Bra -XS-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                  \n

                  • Black/white bra top.
                  • Criss-cross back design.
                  • Machine wash/dry.

                  ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lucia-cross-fit-bra-xs-black-1658","links":{},"stock":{"item_id":1658,"product_id":1658,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xs-black-1658.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1659","_score":1,"_source":{"id":1659,"sku":"WB05-XS-Orange","name":"Lucia Cross-Fit Bra -XS-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                  \n

                  • Black/white bra top.
                  • Criss-cross back design.
                  • Machine wash/dry.

                  ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lucia-cross-fit-bra-xs-orange-1659","links":{},"stock":{"item_id":1659,"product_id":1659,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xs-orange-1659.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1660","_score":1,"_source":{"id":1660,"sku":"WB05-XS-Purple","name":"Lucia Cross-Fit Bra -XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                  \n

                  • Black/white bra top.
                  • Criss-cross back design.
                  • Machine wash/dry.

                  ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lucia-cross-fit-bra-xs-purple-1660","links":{},"stock":{"item_id":1660,"product_id":1660,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xs-purple-1660.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1677","_score":1,"_source":{"id":1677,"sku":"WT01-S-Black","name":"Bella Tank-S-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                  \n

                  • Navy blue tank top - cotton.
                  • Feminine scoop neckline.
                  • Power mesh lining in shelf bra for superior support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bella-tank-s-black-1677","links":{},"stock":{"item_id":1677,"product_id":1677,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-s-black-1677.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1601","_score":1,"_source":{"id":1601,"sku":"WB01-M-Gray","name":"Electra Bra Top-M-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                  \n

                  • Gray rouched bra top.
                  • Attractive back straps feature contrasting motif fabric.
                  • Interior bra top is lined with breathable mesh.
                  • Elastic underband for superior support.
                  • Removable cup inserts.
                  • Chafe-free flat lock seams provide added comfort.

                  ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"electra-bra-top-m-gray-1601","links":{},"stock":{"item_id":1601,"product_id":1601,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-m-gray-1601.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1603","_score":1,"_source":{"id":1603,"sku":"WB01-L-Black","name":"Electra Bra Top-L-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                  \n

                  • Gray rouched bra top.
                  • Attractive back straps feature contrasting motif fabric.
                  • Interior bra top is lined with breathable mesh.
                  • Elastic underband for superior support.
                  • Removable cup inserts.
                  • Chafe-free flat lock seams provide added comfort.

                  ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"electra-bra-top-l-black-1603","links":{},"stock":{"item_id":1603,"product_id":1603,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-l-black-1603.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1611","_score":1,"_source":{"id":1611,"sku":"WB02-XS-Orange","name":"Erica Evercool Sports Bra-XS-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                  \n

                  • Honeycomb light blue bra top.
                  • Elastic hem.
                  • Reinforced binding.
                  • Machine wash/dry.

                  ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erica-evercool-sports-bra-xs-orange-1611","links":{},"stock":{"item_id":1611,"product_id":1611,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xs-orange-1611.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1553","_score":1,"_source":{"id":1553,"sku":"WS12-M-Orange","name":"Radiant Tee-M-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

                  So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                  \n

                  • Salmon soft scoop neck tee.
                  • Athletic, semi-form fit.
                  • Flat seams prevent chafing.
                  • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                  ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"radiant-tee-m-orange-1553","links":{},"stock":{"item_id":1553,"product_id":1553,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-m-orange-1553.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1652","_score":1,"_source":{"id":1652,"sku":"WB04-L-Purple","name":"Prima Compete Bra Top-L-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                  `
                  • Colorblocked details.
                  • Machine wash/line dry.

                  ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"prima-compete-bra-top-l-purple-1652","links":{},"stock":{"item_id":1652,"product_id":1652,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-l-purple-1652.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1746","_score":1,"_source":{"id":1746,"sku":"WT05-M-White","name":"Leah Yoga Top-M-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                  \n

                  • Blue heather rouched tank top.
                  • Camisole tank top.
                  • Banding and shirring details.
                  • Body hugging fit.
                  • Contrast topstitch.
                  • Interior shelf bra with shapewear technology.
                  • 65% Polyester 35% Cotton.

                  ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"leah-yoga-top-m-white-1746","links":{},"stock":{"item_id":1746,"product_id":1746,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-m-white-1746.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1738","_score":1,"_source":{"id":1738,"sku":"WT05-XS-Orange","name":"Leah Yoga Top-XS-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                  \n

                  • Blue heather rouched tank top.
                  • Camisole tank top.
                  • Banding and shirring details.
                  • Body hugging fit.
                  • Contrast topstitch.
                  • Interior shelf bra with shapewear technology.
                  • 65% Polyester 35% Cotton.

                  ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"leah-yoga-top-xs-orange-1738","links":{},"stock":{"item_id":1738,"product_id":1738,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xs-orange-1738.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1721","_score":1,"_source":{"id":1721,"sku":"WT03","name":"Nora Practice Tank","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":39,"description":"

                  A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                  \n

                  • Pink stripped tank with side rouching.
                  • Pre-shrunk.
                  • Garment dyed.
                  • 92% Organic Cotton/8% Lycra.

                  ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"nora-practice-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"nora-practice-tank-1721","links":{},"stock":{"item_id":1721,"product_id":1721,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT03-XS-Orange","id":1706,"status":1,"name":"Nora Practice Tank-XS-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"167","color":"56","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","url_key":"nora-practice-tank-xs-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-XS-Purple","id":1707,"status":1,"name":"Nora Practice Tank-XS-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"167","color":"57","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","url_key":"nora-practice-tank-xs-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-XS-Red","id":1708,"status":1,"name":"Nora Practice Tank-XS-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"167","color":"58","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","url_key":"nora-practice-tank-xs-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-S-Orange","id":1709,"status":1,"name":"Nora Practice Tank-S-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"168","color":"56","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","url_key":"nora-practice-tank-s-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-S-Purple","id":1710,"status":1,"name":"Nora Practice Tank-S-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"168","color":"57","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","url_key":"nora-practice-tank-s-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-S-Red","id":1711,"status":1,"name":"Nora Practice Tank-S-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"168","color":"58","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","url_key":"nora-practice-tank-s-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-M-Orange","id":1712,"status":1,"name":"Nora Practice Tank-M-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"169","color":"56","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","url_key":"nora-practice-tank-m-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-M-Purple","id":1713,"status":1,"name":"Nora Practice Tank-M-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"169","color":"57","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","url_key":"nora-practice-tank-m-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-M-Red","id":1714,"status":1,"name":"Nora Practice Tank-M-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"169","color":"58","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","url_key":"nora-practice-tank-m-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-L-Orange","id":1715,"status":1,"name":"Nora Practice Tank-L-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"170","color":"56","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","url_key":"nora-practice-tank-l-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-L-Purple","id":1716,"status":1,"name":"Nora Practice Tank-L-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"170","color":"57","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","url_key":"nora-practice-tank-l-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-L-Red","id":1717,"status":1,"name":"Nora Practice Tank-L-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"170","color":"58","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","url_key":"nora-practice-tank-l-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-XL-Orange","id":1718,"status":1,"name":"Nora Practice Tank-XL-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"171","color":"56","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","url_key":"nora-practice-tank-xl-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-XL-Purple","id":1719,"status":1,"name":"Nora Practice Tank-XL-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"171","color":"57","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","url_key":"nora-practice-tank-xl-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT03-XL-Red","id":1720,"status":1,"name":"Nora Practice Tank-XL-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"171","color":"58","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","url_key":"nora-practice-tank-xl-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001}],"configurable_options":[{"id":233,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1721,"attribute_code":"color"},{"id":232,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1721,"attribute_code":"size"}],"color_options":[56,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-1721.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1671","_score":1,"_source":{"id":1671,"sku":"WB05-XL-Orange","name":"Lucia Cross-Fit Bra -XL-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                  \n

                  • Black/white bra top.
                  • Criss-cross back design.
                  • Machine wash/dry.

                  ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lucia-cross-fit-bra-xl-orange-1671","links":{},"stock":{"item_id":1671,"product_id":1671,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xl-orange-1671.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1669","_score":1,"_source":{"id":1669,"sku":"WB05-L-Purple","name":"Lucia Cross-Fit Bra -L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                  \n

                  • Black/white bra top.
                  • Criss-cross back design.
                  • Machine wash/dry.

                  ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lucia-cross-fit-bra-l-purple-1669","links":{},"stock":{"item_id":1669,"product_id":1669,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-l-purple-1669.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1681","_score":1,"_source":{"id":1681,"sku":"WT01-M-Blue","name":"Bella Tank-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                  \n

                  • Navy blue tank top - cotton.
                  • Feminine scoop neckline.
                  • Power mesh lining in shelf bra for superior support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bella-tank-m-blue-1681","links":{},"stock":{"item_id":1681,"product_id":1681,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-m-blue-1681.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1682","_score":1,"_source":{"id":1682,"sku":"WT01-M-Orange","name":"Bella Tank-M-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                  \n

                  • Navy blue tank top - cotton.
                  • Feminine scoop neckline.
                  • Power mesh lining in shelf bra for superior support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bella-tank-m-orange-1682","links":{},"stock":{"item_id":1682,"product_id":1682,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-m-orange-1682.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1695","_score":1,"_source":{"id":1695,"sku":"WT02-S-Yellow","name":"Zoe Tank-S-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                  \n

                  • Salmon heather tank top.
                  • 1\" elastic band on inner bra.
                  • Mesh lining on shelf bra for support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoe-tank-s-yellow-1695","links":{},"stock":{"item_id":1695,"product_id":1695,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-s-yellow-1695.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1686","_score":1,"_source":{"id":1686,"sku":"WT01-XL-Black","name":"Bella Tank-XL-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                  \n

                  • Navy blue tank top - cotton.
                  • Feminine scoop neckline.
                  • Power mesh lining in shelf bra for superior support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bella-tank-xl-black-1686","links":{},"stock":{"item_id":1686,"product_id":1686,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xl-black-1686.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1688","_score":1,"_source":{"id":1688,"sku":"WT01-XL-Orange","name":"Bella Tank-XL-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                  \n

                  • Navy blue tank top - cotton.
                  • Feminine scoop neckline.
                  • Power mesh lining in shelf bra for superior support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bella-tank-xl-orange-1688","links":{},"stock":{"item_id":1688,"product_id":1688,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xl-orange-1688.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1680","_score":1,"_source":{"id":1680,"sku":"WT01-M-Black","name":"Bella Tank-M-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                  \n

                  • Navy blue tank top - cotton.
                  • Feminine scoop neckline.
                  • Power mesh lining in shelf bra for superior support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bella-tank-m-black-1680","links":{},"stock":{"item_id":1680,"product_id":1680,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-m-black-1680.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1710","_score":1,"_source":{"id":1710,"sku":"WT03-S-Purple","name":"Nora Practice Tank-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                  \n

                  • Pink stripped tank with side rouching.
                  • Pre-shrunk.
                  • Garment dyed.
                  • 92% Organic Cotton/8% Lycra.

                  ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nora-practice-tank-s-purple-1710","links":{},"stock":{"item_id":1710,"product_id":1710,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-s-purple-1710.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1711","_score":1,"_source":{"id":1711,"sku":"WT03-S-Red","name":"Nora Practice Tank-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                  \n

                  • Pink stripped tank with side rouching.
                  • Pre-shrunk.
                  • Garment dyed.
                  • 92% Organic Cotton/8% Lycra.

                  ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nora-practice-tank-s-red-1711","links":{},"stock":{"item_id":1711,"product_id":1711,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-s-red-1711.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1714","_score":1,"_source":{"id":1714,"sku":"WT03-M-Red","name":"Nora Practice Tank-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                  \n

                  • Pink stripped tank with side rouching.
                  • Pre-shrunk.
                  • Garment dyed.
                  • 92% Organic Cotton/8% Lycra.

                  ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nora-practice-tank-m-red-1714","links":{},"stock":{"item_id":1714,"product_id":1714,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-m-red-1714.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1720","_score":1,"_source":{"id":1720,"sku":"WT03-XL-Red","name":"Nora Practice Tank-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                  \n

                  • Pink stripped tank with side rouching.
                  • Pre-shrunk.
                  • Garment dyed.
                  • 92% Organic Cotton/8% Lycra.

                  ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nora-practice-tank-xl-red-1720","links":{},"stock":{"item_id":1720,"product_id":1720,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xl-red-1720.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1715","_score":1,"_source":{"id":1715,"sku":"WT03-L-Orange","name":"Nora Practice Tank-L-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                  \n

                  • Pink stripped tank with side rouching.
                  • Pre-shrunk.
                  • Garment dyed.
                  • 92% Organic Cotton/8% Lycra.

                  ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nora-practice-tank-l-orange-1715","links":{},"stock":{"item_id":1715,"product_id":1715,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-l-orange-1715.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1729","_score":1,"_source":{"id":1729,"sku":"WT04-M-Purple","name":"Nona Fitness Tank-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                  \n

                  • Blue/white striped mesh tank.
                  • Relaxed fit.
                  • Chafe-resistant trim around armholes and collar.
                  • Machine wash/dry.

                  ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nona-fitness-tank-m-purple-1729","links":{},"stock":{"item_id":1729,"product_id":1729,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-m-purple-1729.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1722","_score":1,"_source":{"id":1722,"sku":"WT04-XS-Blue","name":"Nona Fitness Tank-XS-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                  \n

                  • Blue/white striped mesh tank.
                  • Relaxed fit.
                  • Chafe-resistant trim around armholes and collar.
                  • Machine wash/dry.

                  ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nona-fitness-tank-xs-blue-1722","links":{},"stock":{"item_id":1722,"product_id":1722,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xs-blue-1722.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1774","_score":1,"_source":{"id":1774,"sku":"WT07-S-White","name":"Maya Tunic-S-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                  \n

                  • Mint green heather tunic-style tank.
                  • Wrapped back with cut out detail.
                  • Drawcord detail at end.
                  • Abutted seams.

                  ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"maya-tunic-s-white-1774","links":{},"stock":{"item_id":1774,"product_id":1774,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-s-white-1774.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1776","_score":1,"_source":{"id":1776,"sku":"WT07-M-Green","name":"Maya Tunic-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                  \n

                  • Mint green heather tunic-style tank.
                  • Wrapped back with cut out detail.
                  • Drawcord detail at end.
                  • Abutted seams.

                  ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"maya-tunic-m-green-1776","links":{},"stock":{"item_id":1776,"product_id":1776,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-m-green-1776.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1786","_score":1,"_source":{"id":1786,"sku":"WT08-XS-Black","name":"Antonia Racer Tank-XS-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                  You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                  \n

                  • Machine wash.
                  • Line dry.

                  ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"antonia-racer-tank-xs-black-1786","links":{},"stock":{"item_id":1786,"product_id":1786,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-03-30 21:09:00","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xs-black-1786.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1778","_score":1,"_source":{"id":1778,"sku":"WT07-M-Yellow","name":"Maya Tunic-M-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                  \n

                  • Mint green heather tunic-style tank.
                  • Wrapped back with cut out detail.
                  • Drawcord detail at end.
                  • Abutted seams.

                  ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"maya-tunic-m-yellow-1778","links":{},"stock":{"item_id":1778,"product_id":1778,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-m-yellow-1778.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1755","_score":1,"_source":{"id":1755,"sku":"WT06-XS-Red","name":"Chloe Compete Tank-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                  \n

                  • Royal blue tank top - nylon/spandex.
                  • Flatlock stitching.
                  • Moisture-wicking fabric.
                  • Ergonomic seaming.
                  • Machine wash/dry.

                  ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chloe-compete-tank-xs-red-1755","links":{},"stock":{"item_id":1755,"product_id":1755,"stock_id":1,"qty":51,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xs-red-1755.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1752","_score":1,"_source":{"id":1752,"sku":"WT05-XL-White","name":"Leah Yoga Top-XL-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                  \n

                  • Blue heather rouched tank top.
                  • Camisole tank top.
                  • Banding and shirring details.
                  • Body hugging fit.
                  • Contrast topstitch.
                  • Interior shelf bra with shapewear technology.
                  • 65% Polyester 35% Cotton.

                  ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"leah-yoga-top-xl-white-1752","links":{},"stock":{"item_id":1752,"product_id":1752,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xl-white-1752.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1761","_score":1,"_source":{"id":1761,"sku":"WT06-M-Red","name":"Chloe Compete Tank-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                  \n

                  • Royal blue tank top - nylon/spandex.
                  • Flatlock stitching.
                  • Moisture-wicking fabric.
                  • Ergonomic seaming.
                  • Machine wash/dry.

                  ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chloe-compete-tank-m-red-1761","links":{},"stock":{"item_id":1761,"product_id":1761,"stock_id":1,"qty":80,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-m-red-1761.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1713","_score":1,"_source":{"id":1713,"sku":"WT03-M-Purple","name":"Nora Practice Tank-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                  \n

                  • Pink stripped tank with side rouching.
                  • Pre-shrunk.
                  • Garment dyed.
                  • 92% Organic Cotton/8% Lycra.

                  ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nora-practice-tank-m-purple-1713","links":{},"stock":{"item_id":1713,"product_id":1713,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-m-purple-1713.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1708","_score":1,"_source":{"id":1708,"sku":"WT03-XS-Red","name":"Nora Practice Tank-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                  \n

                  • Pink stripped tank with side rouching.
                  • Pre-shrunk.
                  • Garment dyed.
                  • 92% Organic Cotton/8% Lycra.

                  ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nora-practice-tank-xs-red-1708","links":{},"stock":{"item_id":1708,"product_id":1708,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xs-red-1708.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1716","_score":1,"_source":{"id":1716,"sku":"WT03-L-Purple","name":"Nora Practice Tank-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                  \n

                  • Pink stripped tank with side rouching.
                  • Pre-shrunk.
                  • Garment dyed.
                  • 92% Organic Cotton/8% Lycra.

                  ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nora-practice-tank-l-purple-1716","links":{},"stock":{"item_id":1716,"product_id":1716,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-l-purple-1716.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1782","_score":1,"_source":{"id":1782,"sku":"WT07-XL-Green","name":"Maya Tunic-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                  \n

                  • Mint green heather tunic-style tank.
                  • Wrapped back with cut out detail.
                  • Drawcord detail at end.
                  • Abutted seams.

                  ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"maya-tunic-xl-green-1782","links":{},"stock":{"item_id":1782,"product_id":1782,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xl-green-1782.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1779","_score":1,"_source":{"id":1779,"sku":"WT07-L-Green","name":"Maya Tunic-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                  \n

                  • Mint green heather tunic-style tank.
                  • Wrapped back with cut out detail.
                  • Drawcord detail at end.
                  • Abutted seams.

                  ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"maya-tunic-l-green-1779","links":{},"stock":{"item_id":1779,"product_id":1779,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-l-green-1779.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1827","_score":1,"_source":{"id":1827,"sku":"WP02-28-Red","name":"Emma Leggings-28-Red","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                  \n

                  • Light blue heather yoga pants.
                  • Body hugging fit.
                  • Low rise fit.

                  ","image":"/w/p/wp02-red_main.jpg","small_image":"/w/p/wp02-red_main.jpg","thumbnail":"/w/p/wp02-red_main.jpg","color":"58","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"emma-leggings-28-red-1827","links":{},"stock":{"item_id":1827,"product_id":1827,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-28-red-1827.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1801","_score":1,"_source":{"id":1801,"sku":"WT08","name":"Antonia Racer Tank","attribute_set_id":9,"price":34,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":34,"description":"

                  You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                  \n

                  • Machine wash.
                  • Line dry.

                  ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"antonia-racer-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[152,37,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[205,209],"slug":"antonia-racer-tank-1801","links":{},"stock":{"item_id":1801,"product_id":1801,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT08-XS-Black","id":1786,"status":1,"name":"Antonia Racer Tank-XS-Black","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"167","color":"49","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","url_key":"antonia-racer-tank-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WT08-XS-Purple","id":1787,"status":1,"name":"Antonia Racer Tank-XS-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"167","color":"57","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","url_key":"antonia-racer-tank-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WT08-XS-Yellow","id":1788,"status":1,"name":"Antonia Racer Tank-XS-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"167","color":"60","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","url_key":"antonia-racer-tank-xs-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT08-S-Black","id":1789,"status":1,"name":"Antonia Racer Tank-S-Black","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"168","color":"49","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","url_key":"antonia-racer-tank-s-black","msrp_display_actual_price_type":"0"},{"sku":"WT08-S-Purple","id":1790,"status":1,"name":"Antonia Racer Tank-S-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"168","color":"57","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","url_key":"antonia-racer-tank-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WT08-S-Yellow","id":1791,"status":1,"name":"Antonia Racer Tank-S-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"168","color":"60","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","url_key":"antonia-racer-tank-s-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT08-M-Black","id":1792,"status":1,"name":"Antonia Racer Tank-M-Black","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"169","color":"49","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","url_key":"antonia-racer-tank-m-black","msrp_display_actual_price_type":"0"},{"sku":"WT08-M-Purple","id":1793,"status":1,"name":"Antonia Racer Tank-M-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"169","color":"57","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","url_key":"antonia-racer-tank-m-purple","msrp_display_actual_price_type":"0"},{"sku":"WT08-M-Yellow","id":1794,"status":1,"name":"Antonia Racer Tank-M-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"169","color":"60","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","url_key":"antonia-racer-tank-m-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT08-L-Black","id":1795,"status":1,"name":"Antonia Racer Tank-L-Black","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"170","color":"49","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","url_key":"antonia-racer-tank-l-black","msrp_display_actual_price_type":"0"},{"sku":"WT08-L-Purple","id":1796,"status":1,"name":"Antonia Racer Tank-L-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"170","color":"57","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","url_key":"antonia-racer-tank-l-purple","msrp_display_actual_price_type":"0"},{"sku":"WT08-L-Yellow","id":1797,"status":1,"name":"Antonia Racer Tank-L-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"170","color":"60","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","url_key":"antonia-racer-tank-l-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT08-XL-Black","id":1798,"status":1,"name":"Antonia Racer Tank-XL-Black","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"171","color":"49","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","url_key":"antonia-racer-tank-xl-black","msrp_display_actual_price_type":"0"},{"sku":"WT08-XL-Purple","id":1799,"status":1,"name":"Antonia Racer Tank-XL-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"171","color":"57","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","url_key":"antonia-racer-tank-xl-purple","msrp_display_actual_price_type":"0"},{"sku":"WT08-XL-Yellow","id":1800,"status":1,"name":"Antonia Racer Tank-XL-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"171","color":"60","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","url_key":"antonia-racer-tank-xl-yellow","msrp_display_actual_price_type":"0"}],"configurable_options":[{"id":243,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":57,"label":"Purple"},{"value_index":60,"label":"Yellow"}],"product_id":1801,"attribute_code":"color"},{"id":242,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1801,"attribute_code":"size"}],"color_options":[49,57,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-1801.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1835","_score":1,"_source":{"id":1835,"sku":"WP03-29-Black","name":"Ida Workout Parachute Pant-29-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                  \n

                  • Royal blue parachute pants.
                  • Contrast stripe.
                  • Relaxed fit.
                  • Drawstring closure.
                  • Machine wash/dry.

                  ","image":"/w/p/wp03-black_main.jpg","small_image":"/w/p/wp03-black_main.jpg","thumbnail":"/w/p/wp03-black_main.jpg","color":"49","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ida-workout-parachute-pant-29-black-1835","links":{},"stock":{"item_id":1835,"product_id":1835,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-29-black-1835.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1834","_score":1,"_source":{"id":1834,"sku":"WP03-28-Purple","name":"Ida Workout Parachute Pant-28-Purple","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                  \n

                  • Royal blue parachute pants.
                  • Contrast stripe.
                  • Relaxed fit.
                  • Drawstring closure.
                  • Machine wash/dry.

                  ","image":"/w/p/wp03-purple_main.jpg","small_image":"/w/p/wp03-purple_main.jpg","thumbnail":"/w/p/wp03-purple_main.jpg","color":"57","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ida-workout-parachute-pant-28-purple-1834","links":{},"stock":{"item_id":1834,"product_id":1834,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-28-purple-1834.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1823","_score":1,"_source":{"id":1823,"sku":"WP01-29-White","name":"Karmen Yoga Pant-29-White","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                  \n

                  • Light blue parachute pants.
                  • Power mesh internal waistband for support.
                  • Internal waistband pocket.
                  • Antimicrobial finish.

                  ","image":"/w/p/wp01-white_main.jpg","small_image":"/w/p/wp01-white_main.jpg","thumbnail":"/w/p/wp01-white_main.jpg","color":"59","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"karmen-yoga-pant-29-white-1823","links":{},"stock":{"item_id":1823,"product_id":1823,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-29-white-1823.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1845","_score":1,"_source":{"id":1845,"sku":"WP04","name":"Cora Parachute Pant","attribute_set_id":10,"price":75,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":75,"description":"

                  Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                  \n

                  • Light blue parachute pants.
                  • Power mesh internal waistband for support.
                  • Internal waistband pocket.
                  • Antimicrobial finish.

                  ","image":"/w/p/wp04-blue_main.jpg","small_image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cora-parachute-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,37,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[110,115],"pattern":"197","climate":[205,212,206,208,209],"slug":"cora-parachute-pant-1845","links":{},"stock":{"item_id":1845,"product_id":1845,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP04-28-Black","id":1839,"status":1,"name":"Cora Parachute Pant-28-Black","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"49","image":"/w/p/wp04-black_main.jpg","small_image":"/w/p/wp04-black_main.jpg","thumbnail":"/w/p/wp04-black_main.jpg","url_key":"cora-parachute-pant-28-black","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WP04-28-Blue","id":1840,"status":1,"name":"Cora Parachute Pant-28-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"50","image":"/w/p/wp04-blue_main.jpg","small_image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","url_key":"cora-parachute-pant-28-blue","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WP04-28-White","id":1841,"status":1,"name":"Cora Parachute Pant-28-White","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"59","image":"/w/p/wp04-white_main.jpg","small_image":"/w/p/wp04-white_main.jpg","thumbnail":"/w/p/wp04-white_main.jpg","url_key":"cora-parachute-pant-28-white","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WP04-29-Black","id":1842,"status":1,"name":"Cora Parachute Pant-29-Black","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"49","image":"/w/p/wp04-black_main.jpg","small_image":"/w/p/wp04-black_main.jpg","thumbnail":"/w/p/wp04-black_main.jpg","url_key":"cora-parachute-pant-29-black","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WP04-29-Blue","id":1843,"status":1,"name":"Cora Parachute Pant-29-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"50","image":"/w/p/wp04-blue_main.jpg","small_image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","url_key":"cora-parachute-pant-29-blue","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WP04-29-White","id":1844,"status":1,"name":"Cora Parachute Pant-29-White","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"59","image":"/w/p/wp04-white_main.jpg","small_image":"/w/p/wp04-white_main.jpg","thumbnail":"/w/p/wp04-white_main.jpg","url_key":"cora-parachute-pant-29-white","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001}],"configurable_options":[{"id":253,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":59,"label":"White"}],"product_id":1845,"attribute_code":"color"},{"id":252,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1845,"attribute_code":"size"}],"color_options":[49,50,59],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-1845.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1824","_score":1,"_source":{"id":1824,"sku":"WP01","name":"Karmen Yoga Pant","attribute_set_id":10,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":39,"description":"

                  Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                  \n

                  • Light blue parachute pants.
                  • Power mesh internal waistband for support.
                  • Internal waistband pocket.
                  • Antimicrobial finish.

                  ","image":"/w/p/wp01-gray_main.jpg","small_image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"karmen-yoga-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,154],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"113","pattern":"197","climate":[205,206],"slug":"karmen-yoga-pant-1824","links":{},"stock":{"item_id":1824,"product_id":1824,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp01-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP01-28-Black","id":1818,"status":1,"name":"Karmen Yoga Pant-28-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"49","image":"/w/p/wp01-black_main.jpg","small_image":"/w/p/wp01-black_main.jpg","thumbnail":"/w/p/wp01-black_main.jpg","url_key":"karmen-yoga-pant-28-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WP01-28-Gray","id":1819,"status":1,"name":"Karmen Yoga Pant-28-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"52","image":"/w/p/wp01-gray_main.jpg","small_image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","url_key":"karmen-yoga-pant-28-gray","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WP01-28-White","id":1820,"status":1,"name":"Karmen Yoga Pant-28-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"59","image":"/w/p/wp01-white_main.jpg","small_image":"/w/p/wp01-white_main.jpg","thumbnail":"/w/p/wp01-white_main.jpg","url_key":"karmen-yoga-pant-28-white","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WP01-29-Black","id":1821,"status":1,"name":"Karmen Yoga Pant-29-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"49","image":"/w/p/wp01-black_main.jpg","small_image":"/w/p/wp01-black_main.jpg","thumbnail":"/w/p/wp01-black_main.jpg","url_key":"karmen-yoga-pant-29-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WP01-29-Gray","id":1822,"status":1,"name":"Karmen Yoga Pant-29-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"52","image":"/w/p/wp01-gray_main.jpg","small_image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","url_key":"karmen-yoga-pant-29-gray","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WP01-29-White","id":1823,"status":1,"name":"Karmen Yoga Pant-29-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"59","image":"/w/p/wp01-white_main.jpg","small_image":"/w/p/wp01-white_main.jpg","thumbnail":"/w/p/wp01-white_main.jpg","url_key":"karmen-yoga-pant-29-white","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001}],"configurable_options":[{"id":247,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":59,"label":"White"}],"product_id":1824,"attribute_code":"color"},{"id":246,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1824,"attribute_code":"size"}],"color_options":[49,52,59],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-1824.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1894","_score":1,"_source":{"id":1894,"sku":"WP11","name":"Sylvia Capri","attribute_set_id":10,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":42,"description":"

                  Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                  \n

                  • Green striped capri.
                  • Strategic side seam
                  • Comfort gusset with lining.
                  • Flat seaming.
                  • Wide waistband.
                  • Moisture wicking.

                  ","image":"/w/p/wp11-green_main.jpg","small_image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sylvia-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,154,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"107","pattern":"199","climate":"205","slug":"sylvia-capri-1894","links":{},"stock":{"item_id":1894,"product_id":1894,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP11-28-Blue","id":1888,"status":1,"name":"Sylvia Capri-28-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"50","image":"/w/p/wp11-blue_main.jpg","small_image":"/w/p/wp11-blue_main.jpg","thumbnail":"/w/p/wp11-blue_main.jpg","url_key":"sylvia-capri-28-blue","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WP11-28-Green","id":1889,"status":1,"name":"Sylvia Capri-28-Green","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"53","image":"/w/p/wp11-green_main.jpg","small_image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","url_key":"sylvia-capri-28-green","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WP11-28-Red","id":1890,"status":1,"name":"Sylvia Capri-28-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"58","image":"/w/p/wp11-red_main.jpg","small_image":"/w/p/wp11-red_main.jpg","thumbnail":"/w/p/wp11-red_main.jpg","url_key":"sylvia-capri-28-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WP11-29-Blue","id":1891,"status":1,"name":"Sylvia Capri-29-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"50","image":"/w/p/wp11-blue_main.jpg","small_image":"/w/p/wp11-blue_main.jpg","thumbnail":"/w/p/wp11-blue_main.jpg","url_key":"sylvia-capri-29-blue","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WP11-29-Green","id":1892,"status":1,"name":"Sylvia Capri-29-Green","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"53","image":"/w/p/wp11-green_main.jpg","small_image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","url_key":"sylvia-capri-29-green","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WP11-29-Red","id":1893,"status":1,"name":"Sylvia Capri-29-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"58","image":"/w/p/wp11-red_main.jpg","small_image":"/w/p/wp11-red_main.jpg","thumbnail":"/w/p/wp11-red_main.jpg","url_key":"sylvia-capri-29-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001}],"configurable_options":[{"id":267,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1894,"attribute_code":"color"},{"id":266,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1894,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-1894.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1910","_score":1,"_source":{"id":1910,"sku":"WSH01-28-Green","name":"Fiona Fitness Short-28-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                  \n

                  • Black run shorts
                  - cotton/spandex.
                  • 5” inseam.
                  • Machine wash/Line dry.

                  ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"fiona-fitness-short-28-green-1910","links":{},"stock":{"item_id":1910,"product_id":1910,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-28-green-1910.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1913","_score":1,"_source":{"id":1913,"sku":"WSH01-29-Green","name":"Fiona Fitness Short-29-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                  \n

                  • Black run shorts
                  - cotton/spandex.
                  • 5” inseam.
                  • Machine wash/Line dry.

                  ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"fiona-fitness-short-29-green-1913","links":{},"stock":{"item_id":1913,"product_id":1913,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-29-green-1913.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1914","_score":1,"_source":{"id":1914,"sku":"WSH01-29-Red","name":"Fiona Fitness Short-29-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                  \n

                  • Black run shorts
                  - cotton/spandex.
                  • 5” inseam.
                  • Machine wash/Line dry.

                  ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"fiona-fitness-short-29-red-1914","links":{},"stock":{"item_id":1914,"product_id":1914,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-29-red-1914.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1919","_score":1,"_source":{"id":1919,"sku":"WSH01-31-Green","name":"Fiona Fitness Short-31-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                  \n

                  • Black run shorts
                  - cotton/spandex.
                  • 5” inseam.
                  • Machine wash/Line dry.

                  ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-31-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"fiona-fitness-short-31-green-1919","links":{},"stock":{"item_id":1919,"product_id":1919,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-31-green-1919.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1929","_score":1,"_source":{"id":1929,"sku":"WSH02-29-Orange","name":"Maxima Drawstring Short-29-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                  \n

                  • Light gray run shorts
                  - cotton polyester.
                  • Contrast binding.
                  • 3\" inseam.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"maxima-drawstring-short-29-orange-1929","links":{},"stock":{"item_id":1929,"product_id":1929,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-29-orange-1929.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1803","_score":1,"_source":{"id":1803,"sku":"WT09-XS-White","name":"Breathe-Easy Tank-XS-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                  The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                  \n

                  • Machine wash/dry.
                  • Cocona® fabric.

                  ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"breathe-easy-tank-xs-white-1803","links":{},"stock":{"item_id":1803,"product_id":1803,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xs-white-1803.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1807","_score":1,"_source":{"id":1807,"sku":"WT09-S-Yellow","name":"Breathe-Easy Tank-S-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                  The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                  \n

                  • Machine wash/dry.
                  • Cocona® fabric.

                  ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"breathe-easy-tank-s-yellow-1807","links":{},"stock":{"item_id":1807,"product_id":1807,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-s-yellow-1807.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1805","_score":1,"_source":{"id":1805,"sku":"WT09-S-Purple","name":"Breathe-Easy Tank-S-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                  The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                  \n

                  • Machine wash/dry.
                  • Cocona® fabric.

                  ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"breathe-easy-tank-s-purple-1805","links":{},"stock":{"item_id":1805,"product_id":1805,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-03-06 13:46:27","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-s-purple-1805.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1806","_score":1,"_source":{"id":1806,"sku":"WT09-S-White","name":"Breathe-Easy Tank-S-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                  The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                  \n

                  • Machine wash/dry.
                  • Cocona® fabric.

                  ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"breathe-easy-tank-s-white-1806","links":{},"stock":{"item_id":1806,"product_id":1806,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-s-white-1806.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1811","_score":1,"_source":{"id":1811,"sku":"WT09-L-Purple","name":"Breathe-Easy Tank-L-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                  The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                  \n

                  • Machine wash/dry.
                  • Cocona® fabric.

                  ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"breathe-easy-tank-l-purple-1811","links":{},"stock":{"item_id":1811,"product_id":1811,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-l-purple-1811.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1895","_score":1,"_source":{"id":1895,"sku":"WP12-28-Blue","name":"Deirdre Relaxed-Fit Capri-28-Blue","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

                  Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                  \n

                  • Heather gray capris with mint green waist & accents.
                  • Comfortable, relaxed fit with high rise.
                  • Moisture-wicking, 4-way stretch construction.
                  • Lined with mesh for better support.
                  • Hidden pocket at waistband.
                  • Flatlock seams and lined gusset for comfort.

                  ","image":"/w/p/wp12-blue_main.jpg","small_image":"/w/p/wp12-blue_main.jpg","thumbnail":"/w/p/wp12-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"deirdre-relaxed-fit-capri-28-blue-1895","links":{},"stock":{"item_id":1895,"product_id":1895,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-28-blue-1895.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1897","_score":1,"_source":{"id":1897,"sku":"WP12-28-Green","name":"Deirdre Relaxed-Fit Capri-28-Green","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

                  Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                  \n

                  • Heather gray capris with mint green waist & accents.
                  • Comfortable, relaxed fit with high rise.
                  • Moisture-wicking, 4-way stretch construction.
                  • Lined with mesh for better support.
                  • Hidden pocket at waistband.
                  • Flatlock seams and lined gusset for comfort.

                  ","image":"/w/p/wp12-green_main.jpg","small_image":"/w/p/wp12-green_main.jpg","thumbnail":"/w/p/wp12-green_main.jpg","color":"53","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"deirdre-relaxed-fit-capri-28-green-1897","links":{},"stock":{"item_id":1897,"product_id":1897,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-28-green-1897.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1886","_score":1,"_source":{"id":1886,"sku":"WP10-29-White","name":"Daria Bikram Pant-29-White","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                  \n

                  • Heather gray capris with pink striped waist.
                  • Flatlock seams.
                  • Interior pocket.

                  ","image":"/w/p/wp10-white_main.jpg","small_image":"/w/p/wp10-white_main.jpg","thumbnail":"/w/p/wp10-white_main.jpg","color":"59","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"daria-bikram-pant-29-white-1886","links":{},"stock":{"item_id":1886,"product_id":1886,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-29-white-1886.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1867","_score":1,"_source":{"id":1867,"sku":"WP08-28-Black","name":"Bardot Capri-28-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                  \n

                  • Black capris with pink waistband.
                  • Cropped leggings.
                  • Waistband drawcord.
                  • Flat, thin and flattering.
                  • Made with organic fabric.

                  ","image":"/w/p/wp08-black_main.jpg","small_image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bardot-capri-28-black-1867","links":{},"stock":{"item_id":1867,"product_id":1867,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-28-black-1867.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1863","_score":1,"_source":{"id":1863,"sku":"WP07-29-Black","name":"Aeon Capri-29-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                  \n

                  • Black capris with teal accents.
                  • Thick, 3\" flattering waistband.
                  • Media pocket on inner waistband.
                  • Dry wick finish for ultimate comfort and dryness.

                  ","image":"/w/p/wp07-black_main.jpg","small_image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","color":"49","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"aeon-capri-29-black-1863","links":{},"stock":{"item_id":1863,"product_id":1863,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-29-black-1863.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1861","_score":1,"_source":{"id":1861,"sku":"WP07-28-Blue","name":"Aeon Capri-28-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                  \n

                  • Black capris with teal accents.
                  • Thick, 3\" flattering waistband.
                  • Media pocket on inner waistband.
                  • Dry wick finish for ultimate comfort and dryness.

                  ","image":"/w/p/wp07-blue_main.jpg","small_image":"/w/p/wp07-blue_main.jpg","thumbnail":"/w/p/wp07-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"aeon-capri-28-blue-1861","links":{},"stock":{"item_id":1861,"product_id":1861,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-28-blue-1861.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1864","_score":1,"_source":{"id":1864,"sku":"WP07-29-Blue","name":"Aeon Capri-29-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                  \n

                  • Black capris with teal accents.
                  • Thick, 3\" flattering waistband.
                  • Media pocket on inner waistband.
                  • Dry wick finish for ultimate comfort and dryness.

                  ","image":"/w/p/wp07-blue_main.jpg","small_image":"/w/p/wp07-blue_main.jpg","thumbnail":"/w/p/wp07-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"aeon-capri-29-blue-1864","links":{},"stock":{"item_id":1864,"product_id":1864,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-29-blue-1864.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1881","_score":1,"_source":{"id":1881,"sku":"WP10-28-Black","name":"Daria Bikram Pant-28-Black","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                  \n

                  • Heather gray capris with pink striped waist.
                  • Flatlock seams.
                  • Interior pocket.

                  ","image":"/w/p/wp10-black_main.jpg","small_image":"/w/p/wp10-black_main.jpg","thumbnail":"/w/p/wp10-black_main.jpg","color":"49","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"daria-bikram-pant-28-black-1881","links":{},"stock":{"item_id":1881,"product_id":1881,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-28-black-1881.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1892","_score":1,"_source":{"id":1892,"sku":"WP11-29-Green","name":"Sylvia Capri-29-Green","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                  \n

                  • Green striped capri.
                  • Strategic side seam
                  • Comfort gusset with lining.
                  • Flat seaming.
                  • Wide waistband.
                  • Moisture wicking.

                  ","image":"/w/p/wp11-green_main.jpg","small_image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","color":"53","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sylvia-capri-29-green-1892","links":{},"stock":{"item_id":1892,"product_id":1892,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-29-green-1892.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1922","_score":1,"_source":{"id":1922,"sku":"WSH01-32-Green","name":"Fiona Fitness Short-32-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                  \n

                  • Black run shorts
                  - cotton/spandex.
                  • 5” inseam.
                  • Machine wash/Line dry.

                  ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"fiona-fitness-short-32-green-1922","links":{},"stock":{"item_id":1922,"product_id":1922,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-32-green-1922.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1957","_score":1,"_source":{"id":1957,"sku":"WSH04-28-Black","name":"Artemis Running Short-28-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                  \n

                  • Black rouched shorts with mint waist.
                  • Soft, lightweight construction.
                  • LumaTech™ wicking technology.
                  • Semi-fitted.

                  ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"artemis-running-short-28-black-1957","links":{},"stock":{"item_id":1957,"product_id":1957,"stock_id":1,"qty":80,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-28-black-1957.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1963","_score":1,"_source":{"id":1963,"sku":"WSH04-30-Black","name":"Artemis Running Short-30-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                  \n

                  • Black rouched shorts with mint waist.
                  • Soft, lightweight construction.
                  • LumaTech™ wicking technology.
                  • Semi-fitted.

                  ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-30-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"artemis-running-short-30-black-1963","links":{},"stock":{"item_id":1963,"product_id":1963,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-30-black-1963.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1971","_score":1,"_source":{"id":1971,"sku":"WSH04-32-Orange","name":"Artemis Running Short-32-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                  \n

                  • Black rouched shorts with mint waist.
                  • Soft, lightweight construction.
                  • LumaTech™ wicking technology.
                  • Semi-fitted.

                  ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-32-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"artemis-running-short-32-orange-1971","links":{},"stock":{"item_id":1971,"product_id":1971,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-32-orange-1971.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1976","_score":1,"_source":{"id":1976,"sku":"WSH05-29-Blue","name":"Bess Yoga Short-29-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                  \n

                  • Navy cotton shorts with light bue waist detail.
                  • Front shirred waistband.
                  • Flat-lock, chafe-free side seams.
                  • Vented gusset.
                  • Hidden interior pocket.
                  • Sustainable and recycled fabric.

                  ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bess-yoga-short-29-blue-1976","links":{},"stock":{"item_id":1976,"product_id":1976,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-29-blue-1976.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1981","_score":1,"_source":{"id":1981,"sku":"WSH05-30-Yellow","name":"Bess Yoga Short-30-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                  \n

                  • Navy cotton shorts with light bue waist detail.
                  • Front shirred waistband.
                  • Flat-lock, chafe-free side seams.
                  • Vented gusset.
                  • Hidden interior pocket.
                  • Sustainable and recycled fabric.

                  ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-30-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"bess-yoga-short-30-yellow-1981","links":{},"stock":{"item_id":1981,"product_id":1981,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-30-yellow-1981.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1975","_score":1,"_source":{"id":1975,"sku":"WSH05-28-Yellow","name":"Bess Yoga Short-28-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                  \n

                  • Navy cotton shorts with light bue waist detail.
                  • Front shirred waistband.
                  • Flat-lock, chafe-free side seams.
                  • Vented gusset.
                  • Hidden interior pocket.
                  • Sustainable and recycled fabric.

                  ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-28-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bess-yoga-short-28-yellow-1975","links":{},"stock":{"item_id":1975,"product_id":1975,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-28-yellow-1975.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1982","_score":1,"_source":{"id":1982,"sku":"WSH05-31-Blue","name":"Bess Yoga Short-31-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                  \n

                  • Navy cotton shorts with light bue waist detail.
                  • Front shirred waistband.
                  • Flat-lock, chafe-free side seams.
                  • Vented gusset.
                  • Hidden interior pocket.
                  • Sustainable and recycled fabric.

                  ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-31-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"bess-yoga-short-31-blue-1982","links":{},"stock":{"item_id":1982,"product_id":1982,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-31-blue-1982.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1992","_score":1,"_source":{"id":1992,"sku":"WSH06-29-Gray","name":"Angel Light Running Short-29-Gray","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                  \n

                  • Dark heather gray running shorts.
                  • Snug fit.
                  • Elastic waistband.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh06-gray_main.jpg","small_image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","color":"52","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"angel-light-running-short-29-gray-1992","links":{},"stock":{"item_id":1992,"product_id":1992,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-29-gray-1992.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1991","_score":1,"_source":{"id":1991,"sku":"WSH06-28-Purple","name":"Angel Light Running Short-28-Purple","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                  \n

                  • Dark heather gray running shorts.
                  • Snug fit.
                  • Elastic waistband.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh06-purple_main.jpg","small_image":"/w/s/wsh06-purple_main.jpg","thumbnail":"/w/s/wsh06-purple_main.jpg","color":"57","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"angel-light-running-short-28-purple-1991","links":{},"stock":{"item_id":1991,"product_id":1991,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-28-purple-1991.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2003","_score":1,"_source":{"id":2003,"sku":"WSH08-28-Purple","name":"Sybil Running Short-28-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

                  Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

                  \n

                  • Blue running shorts with green waist.
                  • Drawstring-adjustable waist.
                  • 4\" inseam. Machine wash/line dry.

                  ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sybil-running-short-28-purple-2003","links":{},"stock":{"item_id":2003,"product_id":2003,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-28-purple-2003.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2016","_score":1,"_source":{"id":2016,"sku":"WSH10-28-Black","name":"Ana Running Short-28-Black","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":49.200001,"description":"

                  Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                  \n

                  • Black/pink two-layer shorts.
                  • Low-rise elastic waistband.
                  • Relaxed fit.
                  • Ultra-lightweight fabric.
                  • Internal drawstring.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh10-black_main.jpg","small_image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","color":"49","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ana-running-short-28-black-2016","links":{},"stock":{"item_id":2016,"product_id":2016,"stock_id":1,"qty":55,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-28-black-2016.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2021","_score":1,"_source":{"id":2021,"sku":"WSH10-29-White","name":"Ana Running Short-29-White","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":49.200001,"description":"

                  Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                  \n

                  • Black/pink two-layer shorts.
                  • Low-rise elastic waistband.
                  • Relaxed fit.
                  • Ultra-lightweight fabric.
                  • Internal drawstring.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh10-white_main.jpg","small_image":"/w/s/wsh10-white_main.jpg","thumbnail":"/w/s/wsh10-white_main.jpg","color":"59","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ana-running-short-29-white-2021","links":{},"stock":{"item_id":2021,"product_id":2021,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-29-white-2021.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2035","_score":1,"_source":{"id":2035,"sku":"WSH12-29-Red","name":"Erika Running Short-29-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                  \n

                  • Seafoam pattern running shorts.
                  • Elastic waistband.
                  • Snug fit.
                  • 4'' inseam.
                  • 76% premium brushed Nylon / 24% Spandex.

                  ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"erika-running-short-29-red-2035","links":{},"stock":{"item_id":2035,"product_id":2035,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-29-red-2035.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2036","_score":1,"_source":{"id":2036,"sku":"WSH12-30-Green","name":"Erika Running Short-30-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                  \n

                  • Seafoam pattern running shorts.
                  • Elastic waistband.
                  • Snug fit.
                  • 4'' inseam.
                  • 76% premium brushed Nylon / 24% Spandex.

                  ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-30-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"erika-running-short-30-green-2036","links":{},"stock":{"item_id":2036,"product_id":2036,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-30-green-2036.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2002","_score":1,"_source":{"id":2002,"sku":"WSH07","name":"Echo Fit Compression Short","attribute_set_id":10,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":24,"description":"

                  Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                  \n

                  • Black compression shorts.
                  • High-waisted cut.
                  • Compression fit.
                  • Inseam: 1.0\".
                  • Machine wash/dry.

                  ","image":"/w/s/wsh07-black_main.jpg","small_image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"echo-fit-compression-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[112,105,108],"pattern":"197","climate":[202,205,212,206,209],"slug":"echo-fit-compression-short-2002","links":{},"stock":{"item_id":2002,"product_id":2002,"stock_id":1,"qty":14,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh07-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH07-28-Black","id":1996,"status":1,"name":"Echo Fit Compression Short-28-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","2"],"size":"172","color":"49","image":"/w/s/wsh07-black_main.jpg","small_image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","url_key":"echo-fit-compression-short-28-black","msrp_display_actual_price_type":"0"},{"sku":"WSH07-28-Blue","id":1997,"status":1,"name":"Echo Fit Compression Short-28-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","2"],"size":"172","color":"50","image":"/w/s/wsh07-blue_main.jpg","small_image":"/w/s/wsh07-blue_main.jpg","thumbnail":"/w/s/wsh07-blue_main.jpg","url_key":"echo-fit-compression-short-28-blue","msrp_display_actual_price_type":"0"},{"sku":"WSH07-28-Purple","id":1998,"status":1,"name":"Echo Fit Compression Short-28-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","2"],"size":"172","color":"57","image":"/w/s/wsh07-purple_main.jpg","small_image":"/w/s/wsh07-purple_main.jpg","thumbnail":"/w/s/wsh07-purple_main.jpg","url_key":"echo-fit-compression-short-28-purple","msrp_display_actual_price_type":"0"},{"sku":"WSH07-29-Black","id":1999,"status":1,"name":"Echo Fit Compression Short-29-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","2"],"size":"173","color":"49","image":"/w/s/wsh07-black_main.jpg","small_image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","url_key":"echo-fit-compression-short-29-black","msrp_display_actual_price_type":"0"},{"sku":"WSH07-29-Blue","id":2000,"status":1,"name":"Echo Fit Compression Short-29-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","2"],"size":"173","color":"50","image":"/w/s/wsh07-blue_main.jpg","small_image":"/w/s/wsh07-blue_main.jpg","thumbnail":"/w/s/wsh07-blue_main.jpg","url_key":"echo-fit-compression-short-29-blue","msrp_display_actual_price_type":"0"},{"sku":"WSH07-29-Purple","id":2001,"status":1,"name":"Echo Fit Compression Short-29-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","2"],"size":"173","color":"57","image":"/w/s/wsh07-purple_main.jpg","small_image":"/w/s/wsh07-purple_main.jpg","thumbnail":"/w/s/wsh07-purple_main.jpg","url_key":"echo-fit-compression-short-29-purple","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001}],"configurable_options":[{"id":285,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":2002,"attribute_code":"color"},{"id":284,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":2002,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[172,173],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-2002.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2037","_score":1,"_source":{"id":2037,"sku":"WSH12-30-Purple","name":"Erika Running Short-30-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                  \n

                  • Seafoam pattern running shorts.
                  • Elastic waistband.
                  • Snug fit.
                  • 4'' inseam.
                  • 76% premium brushed Nylon / 24% Spandex.

                  ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-30-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"erika-running-short-30-purple-2037","links":{},"stock":{"item_id":2037,"product_id":2037,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-30-purple-2037.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2015","_score":1,"_source":{"id":2015,"sku":"WSH09","name":"Mimi All-Purpose Short","attribute_set_id":10,"price":44,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":44,"description":"

                  You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                  \n

                  • Gray/seafoam two-layer shorts.
                  • Water-resistant construction.
                  • Inner mesh brief for breathable support.
                  • 2.0\" inseam.
                  • Reflective trim for visibility.

                  ","image":"/w/s/wsh09-gray_main.jpg","small_image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mimi-all-purpose-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,154,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"106","pattern":"198","climate":[206,209],"slug":"mimi-all-purpose-short-2015","links":{},"stock":{"item_id":2015,"product_id":2015,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh09-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh09-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH09-28-Gray","id":2009,"status":1,"name":"Mimi All-Purpose Short-28-Gray","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"52","image":"/w/s/wsh09-gray_main.jpg","small_image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","url_key":"mimi-all-purpose-short-28-gray","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"WSH09-28-Green","id":2010,"status":1,"name":"Mimi All-Purpose Short-28-Green","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"53","image":"/w/s/wsh09-green_main.jpg","small_image":"/w/s/wsh09-green_main.jpg","thumbnail":"/w/s/wsh09-green_main.jpg","url_key":"mimi-all-purpose-short-28-green","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"WSH09-28-White","id":2011,"status":1,"name":"Mimi All-Purpose Short-28-White","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"59","image":"/w/s/wsh09-white_main.jpg","small_image":"/w/s/wsh09-white_main.jpg","thumbnail":"/w/s/wsh09-white_main.jpg","url_key":"mimi-all-purpose-short-28-white","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"WSH09-29-Gray","id":2012,"status":1,"name":"Mimi All-Purpose Short-29-Gray","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"52","image":"/w/s/wsh09-gray_main.jpg","small_image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","url_key":"mimi-all-purpose-short-29-gray","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"WSH09-29-Green","id":2013,"status":1,"name":"Mimi All-Purpose Short-29-Green","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"53","image":"/w/s/wsh09-green_main.jpg","small_image":"/w/s/wsh09-green_main.jpg","thumbnail":"/w/s/wsh09-green_main.jpg","url_key":"mimi-all-purpose-short-29-green","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"WSH09-29-White","id":2014,"status":1,"name":"Mimi All-Purpose Short-29-White","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"59","image":"/w/s/wsh09-white_main.jpg","small_image":"/w/s/wsh09-white_main.jpg","thumbnail":"/w/s/wsh09-white_main.jpg","url_key":"mimi-all-purpose-short-29-white","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001}],"configurable_options":[{"id":289,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"},{"value_index":59,"label":"White"}],"product_id":2015,"attribute_code":"color"},{"id":288,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":2015,"attribute_code":"size"}],"color_options":[52,53,59],"size_options":[172,173],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-2015.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2045","_score":1,"_source":{"id":2045,"sku":"WSH12","name":"Erika Running Short","attribute_set_id":10,"price":45,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":45,"description":"

                  A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                  \n

                  • Seafoam pattern running shorts.
                  • Elastic waistband.
                  • Snug fit.
                  • 4'' inseam.
                  • 76% premium brushed Nylon / 24% Spandex.

                  ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"erika-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[106,112],"pattern":"196","climate":[212,206,209],"slug":"erika-running-short-2045","links":{},"stock":{"item_id":2045,"product_id":2045,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH12-28-Green","id":2030,"status":1,"name":"Erika Running Short-28-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"172","color":"53","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","url_key":"erika-running-short-28-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-28-Purple","id":2031,"status":1,"name":"Erika Running Short-28-Purple","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"172","color":"57","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","url_key":"erika-running-short-28-purple","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-28-Red","id":2032,"status":1,"name":"Erika Running Short-28-Red","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"172","color":"58","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","url_key":"erika-running-short-28-red","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-29-Green","id":2033,"status":1,"name":"Erika Running Short-29-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"173","color":"53","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","url_key":"erika-running-short-29-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-29-Purple","id":2034,"status":1,"name":"Erika Running Short-29-Purple","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"173","color":"57","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","url_key":"erika-running-short-29-purple","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-29-Red","id":2035,"status":1,"name":"Erika Running Short-29-Red","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"173","color":"58","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","url_key":"erika-running-short-29-red","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-30-Green","id":2036,"status":1,"name":"Erika Running Short-30-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"174","color":"53","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","url_key":"erika-running-short-30-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-30-Purple","id":2037,"status":1,"name":"Erika Running Short-30-Purple","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"174","color":"57","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","url_key":"erika-running-short-30-purple","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-30-Red","id":2038,"status":1,"name":"Erika Running Short-30-Red","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"174","color":"58","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","url_key":"erika-running-short-30-red","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-31-Green","id":2039,"status":1,"name":"Erika Running Short-31-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"175","color":"53","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","url_key":"erika-running-short-31-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-31-Purple","id":2040,"status":1,"name":"Erika Running Short-31-Purple","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"175","color":"57","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","url_key":"erika-running-short-31-purple","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-31-Red","id":2041,"status":1,"name":"Erika Running Short-31-Red","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"175","color":"58","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","url_key":"erika-running-short-31-red","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-32-Green","id":2042,"status":1,"name":"Erika Running Short-32-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"176","color":"53","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","url_key":"erika-running-short-32-green","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-32-Purple","id":2043,"status":1,"name":"Erika Running Short-32-Purple","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"176","color":"57","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","url_key":"erika-running-short-32-purple","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"WSH12-32-Red","id":2044,"status":1,"name":"Erika Running Short-32-Red","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"176","color":"58","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","url_key":"erika-running-short-32-red","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001}],"configurable_options":[{"id":295,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":2045,"attribute_code":"color"},{"id":294,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":2045,"attribute_code":"size"}],"color_options":[53,57,58],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-2045.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"2","_score":1,"_source":{"id":2,"parent_id":1,"name":"Principale","is_active":true,"position":1,"level":1,"product_count":1181,"children_data":[{"id":38,"parent_id":2,"name":"What's New","is_active":false,"position":1,"level":2,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2018-05-27 14:05:17","path":"1/2/38","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"whats-new-38","url_path":"what-is-new/whats-new-38","slug":"whats-new-38"},{"id":20,"parent_id":2,"name":"La Donne","is_active":true,"position":2,"level":2,"product_count":0,"children_data":[{"id":21,"parent_id":20,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"id":23,"parent_id":21,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":186,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/23","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"jackets-23","url_path":"women/tops-women/jackets-women/jackets-23","slug":"jackets-23"},{"id":24,"parent_id":21,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":182,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/24","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-24","url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","slug":"hoodies-and-sweatshirts-24"},{"id":25,"parent_id":21,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/25","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-25","url_path":"women/tops-women/tees-women/tees-25","slug":"tees-25"},{"id":26,"parent_id":21,"name":"Bras & Tanks","is_active":true,"position":4,"level":4,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/26","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bras-and-tanks-26","url_path":"women/tops-women/tanks-women/bras-and-tanks-26","slug":"bras-and-tanks-26"}],"children":"23,24,25,26","created_at":"2017-11-06 12:16:41","updated_at":"2019-01-03 10:35:27","path":"1/2/20/21","available_sort_by":[],"include_in_menu":true,"meta_title":"Women Tops","meta_description":"Best women tops on vuestorefront.","display_mode":"PRODUCTS","is_anchor":"1","children_count":"4","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"tops-21","url_path":"women/tops-women/tops-21","slug":"tops-21"},{"id":22,"parent_id":20,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"id":27,"parent_id":22,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":91,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/27","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-27","url_path":"women/bottoms-women/pants-women/pants-27","slug":"pants-27"},{"id":28,"parent_id":22,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":137,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/28","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-28","url_path":"women/bottoms-women/shorts-women/shorts-28","slug":"shorts-28"}],"children":"27,28","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-22","url_path":"women/bottoms-women/bottoms-22","slug":"bottoms-22"}],"children":"21,22","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:08:58","path":"1/2/20","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"8","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"la-donne-20","url_path":"women/la-donne-20","slug":"la-donne-20"},{"id":11,"parent_id":2,"name":"Signori","is_active":true,"position":3,"level":2,"product_count":0,"children_data":[{"id":12,"parent_id":11,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"id":14,"parent_id":12,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":176,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:10:23","path":"1/2/11/12/14","available_sort_by":[],"include_in_menu":true,"description":"

                  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum dui sapien, bibendum ac luctus sed, lobortis id lacus. Nulla nisi augue, accumsan id sapien maximus, hendrerit vehicula elit.

                  ","display_mode":"PRODUCTS","is_anchor":"1","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"jackets-14","url_path":"men/tops-men/jackets-men/jackets-14","slug":"jackets-14"},{"id":15,"parent_id":12,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":208,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/15","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-15","url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","slug":"hoodies-and-sweatshirts-15"},{"id":16,"parent_id":12,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/16","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-16","url_path":"men/tops-men/tees-men/tees-16","slug":"tees-16"},{"id":17,"parent_id":12,"name":"Tanks","is_active":true,"position":4,"level":4,"product_count":102,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/17","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tanks-17","url_path":"men/tops-men/tanks-men/tanks-17","slug":"tanks-17"}],"children":"14,15,16,17","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"4","url_key":"tops-12","url_path":"men/tops-men/tops-12","slug":"tops-12"},{"id":13,"parent_id":11,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"id":18,"parent_id":13,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":156,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/18","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-18","url_path":"men/bottoms-men/pants-men/pants-18","slug":"pants-18"},{"id":19,"parent_id":13,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":148,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/19","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-19","url_path":"men/bottoms-men/shorts-men/shorts-19","slug":"shorts-19"}],"children":"18,19","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-13","url_path":"men/bottoms-men/bottoms-13","slug":"bottoms-13"}],"children":"12,13","created_at":"2017-11-06 12:16:39","updated_at":"2018-05-27 14:06:07","path":"1/2/11","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"8","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"signori-11","url_path":"men/signori-11","slug":"signori-11"},{"id":3,"parent_id":2,"name":"Equipaggiamento","is_active":true,"position":4,"level":2,"product_count":46,"children_data":[{"id":4,"parent_id":3,"name":"Bags","is_active":true,"position":1,"level":3,"product_count":14,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/4","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bags-4","url_path":"gear/bags/bags-4","slug":"bags-4"},{"id":5,"parent_id":3,"name":"Fitness Equipment","is_active":true,"position":2,"level":3,"product_count":23,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/5","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"fitness-equipment-5","url_path":"gear/fitness-equipment/fitness-equipment-5","slug":"fitness-equipment-5"},{"id":6,"parent_id":3,"name":"Watches","is_active":true,"position":3,"level":3,"product_count":9,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/6","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"watches-6","url_path":"gear/watches/watches-6","slug":"watches-6"}],"children":"4,5,6","created_at":"2017-11-06 12:16:19","updated_at":"2018-05-27 14:06:53","path":"1/2/3","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"3","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"equipaggiamento-3","url_path":"gear/equipaggiamento-3","slug":"equipaggiamento-3"},{"id":7,"parent_id":2,"name":"Collections","is_active":false,"position":5,"level":2,"product_count":13,"children_data":[{"id":8,"parent_id":7,"name":"New Luma Yoga Collection","is_active":true,"position":1,"level":3,"product_count":347,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/7/8","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"new-luma-yoga-collection-8","url_path":"collections/yoga-new/new-luma-yoga-collection-8","slug":"new-luma-yoga-collection-8"},{"id":34,"parent_id":7,"name":"Erin Recommends","is_active":true,"position":2,"level":3,"product_count":279,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/34","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"erin-recommends-34","url_path":"collections/erin-recommends/erin-recommends-34","slug":"erin-recommends-34"},{"id":35,"parent_id":7,"name":"Performance Fabrics","is_active":true,"position":3,"level":3,"product_count":310,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/35","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"performance-fabrics-35","url_path":"collections/performance-fabrics/performance-fabrics-35","slug":"performance-fabrics-35"},{"id":36,"parent_id":7,"name":"Eco Friendly","is_active":true,"position":4,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/36","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"eco-friendly-36","url_path":"collections/eco-friendly/eco-friendly-36","slug":"eco-friendly-36"},{"id":39,"parent_id":7,"name":"Performance Sportswear New","is_active":true,"position":5,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/39","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"performance-sportswear-new-39","url_path":"collections/performance-new/performance-sportswear-new-39","slug":"performance-sportswear-new-39"},{"id":40,"parent_id":7,"name":"Eco Collection New","is_active":true,"position":6,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/40","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"eco-collection-new-40","url_path":"collections/eco-new/eco-collection-new-40","slug":"eco-collection-new-40"}],"children":"34,35,36,39,40,8","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:17:48","path":"1/2/7","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","children_count":"6","url_key":"collections-7","url_path":"collections/collections-7","slug":"collections-7"},{"id":9,"parent_id":2,"name":"Training","is_active":false,"position":5,"level":2,"product_count":6,"children_data":[{"id":10,"parent_id":9,"name":"Video Download","is_active":true,"position":1,"level":3,"product_count":6,"children_data":[],"children":"","created_at":"2017-11-06 12:16:31","updated_at":"2017-11-06 12:16:31","path":"1/2/9/10","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"video-download-10","url_path":"training/training-video/video-download-10","slug":"video-download-10"}],"children":"10","created_at":"2017-11-06 12:16:31","updated_at":"2018-05-27 14:04:30","path":"1/2/9","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"1","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"training-9","url_path":"training/training-9","slug":"training-9"},{"id":29,"parent_id":2,"name":"Promotions","is_active":false,"position":6,"level":2,"product_count":0,"children_data":[{"id":30,"parent_id":29,"name":"Women Sale","is_active":true,"position":1,"level":3,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/30","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"women-sale-30","url_path":"promotions/women-sale/women-sale-30","slug":"women-sale-30"},{"id":31,"parent_id":29,"name":"Men Sale","is_active":true,"position":2,"level":3,"product_count":39,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/31","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"men-sale-31","url_path":"promotions/men-sale/men-sale-31","slug":"men-sale-31"},{"id":32,"parent_id":29,"name":"Pants","is_active":true,"position":3,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/32","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"pants-32","url_path":"promotions/pants-all/pants-32","slug":"pants-32"},{"id":33,"parent_id":29,"name":"Tees","is_active":true,"position":4,"level":3,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/33","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"tees-33","url_path":"promotions/tees-all/tees-33","slug":"tees-33"}],"children":"30,31,32,33","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:42","path":"1/2/29","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","children_count":"4","url_key":"promotions-29","url_path":"promotions/promotions-29","slug":"promotions-29"},{"id":37,"parent_id":2,"name":"Sale","is_active":false,"position":6,"level":2,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2018-05-27 14:04:10","path":"1/2/37","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"sale-37","url_path":"sale/sale-37","slug":"sale-37"}],"url_key":"principale-2","slug":"principale-2","url_path":"principale-2","children":"3,11,20","created_at":"2017-11-03 08:34:39","updated_at":"2019-04-25 09:11:20","path":"1/2","available_sort_by":[],"include_in_menu":true,"display_mode":"PRODUCTS","is_anchor":"1","children_count":"38","custom_use_parent_settings":"0","custom_apply_to_products":"0","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"38","_score":1,"_source":{"id":38,"parent_id":2,"name":"What's New","is_active":false,"position":1,"level":2,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2018-05-27 14:05:17","path":"1/2/38","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"whats-new-38","url_path":"what-is-new/whats-new-38","slug":"whats-new-38","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2","_score":1,"_source":{"id":2,"sku":"24-MB04","name":"Strive Shoulder Pack","attribute_set_id":15,"price":32,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:22","updated_at":"2017-11-06 12:16:22","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":"32.0000","minimal_price":39.360001,"regular_price":39.360001,"description":"

                  Convenience is next to nothing when your day is crammed with action. So whether you're heading to class, gym, or the unbeaten path, make sure you've got your Strive Shoulder Pack stuffed with all your essentials, and extras as well.

                  \n
                    \n
                  • Zippered main compartment.
                  • \n
                  • Front zippered pocket.
                  • \n
                  • Side mesh pocket.
                  • \n
                  • Cell phone pocket on strap.
                  • \n
                  • Adjustable shoulder strap and top carry handle.
                  • \n
                  ","special_from_date":"2017-11-06 12:16:22","image":"/m/b/mb04-black-0.jpg","small_image":"/m/b/mb04-black-0.jpg","thumbnail":"/m/b/mb04-black-0.jpg","category_ids":[3,7,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strive-shoulder-pack","tax_class_id":"2","activity":[11,21,23,18],"style_bags":[27,29,30],"material":[32,33,36,38],"strap_bags":[61,62,65,66,67],"features_bags":[72,74,75,78],"erin_recommends":"1","sale":"1","slug":"strive-shoulder-pack-2","links":{},"stock":{"item_id":2,"product_id":2,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/b/mb04-black-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null},{"image":"/m/b/mb04-black-0_alt1.jpg","pos":2,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/equipaggiamento-3/strive-shoulder-pack-2.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"6","_score":1,"_source":{"id":6,"sku":"24-MB02","name":"Fusion Backpack","attribute_set_id":15,"price":59,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:23","updated_at":"2017-11-06 12:16:23","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  With the Fusion Backpack strapped on, every trek is an adventure - even a bus ride to work. That's partly because two large zippered compartments store everything you need, while a front zippered pocket and side mesh pouches are perfect for stashing those little extras, in case you change your mind and take the day off.

                  \n
                    \n
                  • Durable nylon construction.
                  • \n
                  • 2 main zippered compartments.
                  • \n
                  • 1 exterior zippered pocket.
                  • \n
                  • Mesh side pouches.
                  • \n
                  • Padded, adjustable straps.
                  • \n
                  • Top carry handle.
                  • \n
                  • Dimensions: 18\" x 10\" x 6\".
                  • \n
                  ","image":"/m/b/mb02-gray-0.jpg","small_image":"/m/b/mb02-gray-0.jpg","thumbnail":"/m/b/mb02-gray-0.jpg","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fusion-backpack","tax_class_id":"2","activity":[18,20,8],"style_bags":[24,28],"material":[31,37,38],"strap_bags":[61,64,65],"features_bags":[71,72,74,75],"slug":"fusion-backpack-6","links":{},"stock":{"item_id":6,"product_id":6,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/b/mb02-gray-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null},{"image":"/m/b/mb02-blue-0.jpg","pos":2,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/equipaggiamento-3/fusion-backpack-6.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"27","_score":1,"_source":{"id":27,"sku":"24-WG082-gray","name":"Sprite Stasis Ball 65 cm","attribute_set_id":12,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

                  The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                  \n
                    \n
                  • 65 cm plastic shell.
                  • \n
                  • Durable, burst-resistant design.
                  • \n
                  • Hand pump included.
                  • \n
                  ","image":"/l/u/luma-stability-ball-gray.jpg","small_image":"/l/u/luma-stability-ball-gray.jpg","thumbnail":"/l/u/luma-stability-ball-gray.jpg","color":"52","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-65-cm-gray","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"92","slug":"sprite-stasis-ball-65-cm-27","links":{},"stock":{"item_id":27,"product_id":27,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball-gray.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-stasis-ball-65-cm-27.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"15","_score":1,"_source":{"id":15,"sku":"24-UG06","name":"Affirm Water Bottle ","attribute_set_id":11,"price":7,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2017-11-06 12:16:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":8.610001,"max_price":8.610001,"max_regular_price":8.610001,"minimal_regular_price":8.610001,"special_price":null,"minimal_price":8.610001,"regular_price":8.610001,"description":"

                  You'll stay hydrated with ease with the Affirm Water Bottle by your side or in hand. Measurements on the outside help you keep track of how much you're drinking, while the screw-top lid prevents spills. A metal carabiner clip allows you to attach it to the outside of a backpack or bag for easy access.

                  \n
                    \n
                  • Made of plastic.
                  • \n
                  • Grooved sides for an easy grip.
                  • \n
                  ","image":"/u/g/ug06-lb-0.jpg","small_image":"/u/g/ug06-lb-0.jpg","thumbnail":"/u/g/ug06-lb-0.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"affirm-water-bottle","tax_class_id":"2","activity":[8,9,17,11],"material":"44","slug":"affirm-water-bottle-15","links":{},"stock":{"item_id":15,"product_id":15,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/u/g/ug06-lb-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/affirm-water-bottle-15.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"4","_score":1,"_source":{"id":4,"sku":"24-MB05","name":"Wayfarer Messenger Bag - custom options","attribute_set_id":15,"price":45,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:22","updated_at":"2019-04-24 08:09:51","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":74.415001,"special_price":null,"minimal_price":74.415001,"regular_price":55.350001,"description":"

                  Perfect for class, work or the gym, the Wayfarer Messenger Bag is packed with pockets. The dual-buckle flap closure reveals an organizational panel, and the roomy main compartment has spaces for your laptop and a change of clothes. An adjustable shoulder strap and easy-grip handle promise easy carrying.

                  \r\n
                    \r\n
                  • Multiple internal zip pockets.
                  • \r\n
                  • Made of durable nylon.
                  • \r\n
                  ","image":"/m/b/mb05-black-0.jpg","small_image":"/m/b/mb05-black-0.jpg","thumbnail":"/m/b/mb05-black-0.jpg","color":"49","category_ids":[3,7,4,8],"options_container":"container2","required_options":"1","has_options":"1","url_key":"wayfarer-messenger-bag","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[11,19,22],"style_bags":[27,28],"material":[37,38],"strap_bags":[61,63,64,65,66],"features_bags":[74,75,77,78,79],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","slug":"wayfarer-messenger-bag-custom-options-4","links":{},"stock":{"item_id":4,"product_id":4,"stock_id":1,"qty":73,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/b/mb05-black-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"custom_options":[{"product_sku":"24-MB05","option_id":1,"title":"Radio button ","type":"radio","sort_order":1,"is_require":true,"max_characters":0,"image_size_x":0,"image_size_y":0,"values":[{"title":"radio option 1","sort_order":1,"price":1,"price_type":"fixed","option_type_id":1},{"title":"radio option 2","sort_order":2,"price":2,"price_type":"fixed","option_type_id":2}]},{"product_sku":"24-MB05","option_id":2,"title":"Dropdown","type":"drop_down","sort_order":2,"is_require":true,"max_characters":0,"image_size_x":0,"image_size_y":0,"values":[{"title":"option 1","sort_order":1,"price":10,"price_type":"percent","option_type_id":3},{"title":"option 2","sort_order":2,"price":20,"price_type":"percent","option_type_id":4}]},{"product_sku":"24-MB05","option_id":3,"title":"Text field","type":"field","sort_order":3,"is_require":true,"price":10,"price_type":"fixed","max_characters":0,"image_size_x":0,"image_size_y":0},{"product_sku":"24-MB05","option_id":4,"title":"Checkbox options","type":"checkbox","sort_order":4,"is_require":true,"max_characters":0,"image_size_x":0,"image_size_y":0,"values":[{"title":"checkbox option 1","sort_order":1,"price":10,"price_type":"fixed","option_type_id":5},{"title":"checkbox option 2","sort_order":2,"price":20,"price_type":"fixed","option_type_id":6},{"title":"checkbox option 3","sort_order":3,"price":30,"price_type":"fixed","option_type_id":7}]}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/equipaggiamento-3/wayfarer-messenger-bag-custom-options-4.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"38","_score":1,"_source":{"id":38,"sku":"24-MG03","name":"Summit Watch","attribute_set_id":11,"price":54,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                  Trek high and low in the attractive Summit Watch, which features a digital LED display with time and date, stopwatch, lap counter, and 3-second backlight. It can also calculate the number of steps taken and calories burned.

                  \n
                    \n
                  • Brushed metal case.
                  • \n
                  • Water resistant (100 meters).
                  • \n
                  • Buckle clasp.
                  • \n
                  • Strap fits 7\" - 10\".
                  • \n
                  • 1-year limited warranty.
                  • \n
                  ","image":"/m/g/mg03-br-0.jpg","small_image":"/m/g/mg03-br-0.jpg","thumbnail":"/m/g/mg03-br-0.jpg","category_ids":[3,7,6,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"summit-watch","tax_class_id":"2","activity":[9,16,17,5,11],"material":[43,44,48],"gender":[80,81,84],"category_gear":[86,87,90],"new":"1","slug":"summit-watch-38","links":{},"stock":{"item_id":38,"product_id":38,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/g/mg03-br-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/equipaggiamento-3/summit-watch-38.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"20","_score":1,"_source":{"id":20,"sku":"24-UG01","name":"Quest Lumaflex™ Band","attribute_set_id":11,"price":19,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2017-11-06 12:16:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":23.370001,"max_price":23.370001,"max_regular_price":23.370001,"minimal_regular_price":23.370001,"special_price":null,"minimal_price":23.370001,"regular_price":23.370001,"description":"

                  From leg extensions and standing squats to a full range of floor routines, the Quest Strength Band brings your own personal gym with you everywhere you go. Designed to add extra resistance to any training session, this strength band helps you tone and define your muscles. You'll love the extra comfort of its grippy handles and adjustable design.

                  \n
                    \n
                  • Adjusts from 30\" to 55\".\n
                  • Grippy comfort handles.\n
                  • Stretchy rubber construction.\n
                  ","image":"/u/g/ug01-bk-0.jpg","small_image":"/u/g/ug01-bk-0.jpg","thumbnail":"/u/g/ug01-bk-0.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"quest-lumaflex-trade-band","tax_class_id":"2","activity":"11","material":[35,44,45],"gender":[80,81,84],"category_gear":[85,87],"slug":"quest-lumaflex-and-trade-band-20","links":{},"stock":{"item_id":20,"product_id":20,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/u/g/ug01-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/quest-lumaflex-and-trade-band-20.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"43","_score":1,"_source":{"id":43,"sku":"24-WG03","name":"Clamber Watch","attribute_set_id":11,"price":54,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                  Keep track of time on the treadmill or trail with our Clamber Watch. The flexible, rubberized strap is contoured to conform to your wrist for a comfortable fit all day. The face features an illuminated digital read-out of the current time and stopwatch functions.

                  \n
                    \n
                  • Japanese quartz movement.
                  • \n
                  • Strap fits 5\" to 6.0\".
                  • \n
                  ","image":"/w/g/wg03-gr-0.jpg","small_image":"/w/g/wg03-gr-0.jpg","thumbnail":"/w/g/wg03-gr-0.jpg","category_ids":[3,6],"options_container":"container2","required_options":"0","has_options":"0","url_key":"clamber-watch","tax_class_id":"2","activity":[9,16,5,11],"material":[44,45,48],"gender":"81","category_gear":[86,87,90],"slug":"clamber-watch-43","links":{},"stock":{"item_id":43,"product_id":43,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/g/wg03-gr-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null},{"image":"/w/g/wg03-sa-0.jpg","pos":2,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"}],"url_path":"gear/equipaggiamento-3/clamber-watch-43.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"80","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":80,"attribute_code":"special_to_date","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Special Price To Date","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime","is_unique":"0","validation_rules":[],"id":80,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"85","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":85,"attribute_code":"meta_keyword","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Meta Keywords","frontend_labels":null,"backend_type":"text","is_unique":"0","validation_rules":[],"id":85,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"93","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":93,"attribute_code":"color","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Black","value":"49"},{"label":"Blue","value":"50"},{"label":"Brown","value":"51"},{"label":"Gray","value":"52"},{"label":"Green","value":"53"},{"label":"Lavender","value":"54"},{"label":"Multi","value":"55"},{"label":"Orange","value":"56"},{"label":"Purple","value":"57"},{"label":"Red","value":"58"},{"label":"White","value":"59"},{"label":"Yellow","value":"60"}],"is_user_defined":true,"default_frontend_label":"Color","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"49","is_unique":"0","validation_rules":[],"id":93,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"106","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":106,"attribute_code":"options_container","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Product Info Column","value":"container1"},{"label":"Block after Info Column","value":"container2"}],"is_user_defined":false,"default_frontend_label":"Display Product Options In","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Catalog\\Model\\Entity\\Product\\Attribute\\Design\\Options\\Container","default_value":"container2","is_unique":"0","validation_rules":[],"id":106,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"109","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"store","attribute_id":109,"attribute_code":"image_label","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Image Label","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":109,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"114","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","bundle","grouped","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"website","attribute_id":114,"attribute_code":"country_of_manufacture","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Afghanistan","value":"AF"},{"label":"Ã…land Islands","value":"AX"},{"label":"Albania","value":"AL"},{"label":"Algeria","value":"DZ"},{"label":"American Samoa","value":"AS"},{"label":"Andorra","value":"AD"},{"label":"Angola","value":"AO"},{"label":"Anguilla","value":"AI"},{"label":"Antarctica","value":"AQ"},{"label":"Antigua & Barbuda","value":"AG"},{"label":"Argentina","value":"AR"},{"label":"Armenia","value":"AM"},{"label":"Aruba","value":"AW"},{"label":"Australia","value":"AU"},{"label":"Austria","value":"AT"},{"label":"Azerbaijan","value":"AZ"},{"label":"Bahamas","value":"BS"},{"label":"Bahrain","value":"BH"},{"label":"Bangladesh","value":"BD"},{"label":"Barbados","value":"BB"},{"label":"Belarus","value":"BY"},{"label":"Belgium","value":"BE"},{"label":"Belize","value":"BZ"},{"label":"Benin","value":"BJ"},{"label":"Bermuda","value":"BM"},{"label":"Bhutan","value":"BT"},{"label":"Bolivia","value":"BO"},{"label":"Bosnia & Herzegovina","value":"BA"},{"label":"Botswana","value":"BW"},{"label":"Bouvet Island","value":"BV"},{"label":"Brazil","value":"BR"},{"label":"British Indian Ocean Territory","value":"IO"},{"label":"British Virgin Islands","value":"VG"},{"label":"Brunei","value":"BN"},{"label":"Bulgaria","value":"BG"},{"label":"Burkina Faso","value":"BF"},{"label":"Burundi","value":"BI"},{"label":"Cambodia","value":"KH"},{"label":"Cameroon","value":"CM"},{"label":"Canada","value":"CA"},{"label":"Cape Verde","value":"CV"},{"label":"Cayman Islands","value":"KY"},{"label":"Central African Republic","value":"CF"},{"label":"Chad","value":"TD"},{"label":"Chile","value":"CL"},{"label":"China","value":"CN"},{"label":"Christmas Island","value":"CX"},{"label":"Cocos (Keeling) Islands","value":"CC"},{"label":"Colombia","value":"CO"},{"label":"Comoros","value":"KM"},{"label":"Congo - Brazzaville","value":"CG"},{"label":"Congo - Kinshasa","value":"CD"},{"label":"Cook Islands","value":"CK"},{"label":"Costa Rica","value":"CR"},{"label":"Côte d’Ivoire","value":"CI"},{"label":"Croatia","value":"HR"},{"label":"Cuba","value":"CU"},{"label":"Cyprus","value":"CY"},{"label":"Czech Republic","value":"CZ"},{"label":"Denmark","value":"DK"},{"label":"Djibouti","value":"DJ"},{"label":"Dominica","value":"DM"},{"label":"Dominican Republic","value":"DO"},{"label":"Ecuador","value":"EC"},{"label":"Egypt","value":"EG"},{"label":"El Salvador","value":"SV"},{"label":"Equatorial Guinea","value":"GQ"},{"label":"Eritrea","value":"ER"},{"label":"Estonia","value":"EE"},{"label":"Ethiopia","value":"ET"},{"label":"Falkland Islands","value":"FK"},{"label":"Faroe Islands","value":"FO"},{"label":"Fiji","value":"FJ"},{"label":"Finland","value":"FI"},{"label":"France","value":"FR"},{"label":"French Guiana","value":"GF"},{"label":"French Polynesia","value":"PF"},{"label":"French Southern Territories","value":"TF"},{"label":"Gabon","value":"GA"},{"label":"Gambia","value":"GM"},{"label":"Georgia","value":"GE"},{"label":"Germany","value":"DE"},{"label":"Ghana","value":"GH"},{"label":"Gibraltar","value":"GI"},{"label":"Greece","value":"GR"},{"label":"Greenland","value":"GL"},{"label":"Grenada","value":"GD"},{"label":"Guadeloupe","value":"GP"},{"label":"Guam","value":"GU"},{"label":"Guatemala","value":"GT"},{"label":"Guernsey","value":"GG"},{"label":"Guinea","value":"GN"},{"label":"Guinea-Bissau","value":"GW"},{"label":"Guyana","value":"GY"},{"label":"Haiti","value":"HT"},{"label":"Heard & McDonald Islands","value":"HM"},{"label":"Honduras","value":"HN"},{"label":"Hong Kong SAR China","value":"HK"},{"label":"Hungary","value":"HU"},{"label":"Iceland","value":"IS"},{"label":"India","value":"IN"},{"label":"Indonesia","value":"ID"},{"label":"Iran","value":"IR"},{"label":"Iraq","value":"IQ"},{"label":"Ireland","value":"IE"},{"label":"Isle of Man","value":"IM"},{"label":"Israel","value":"IL"},{"label":"Italy","value":"IT"},{"label":"Jamaica","value":"JM"},{"label":"Japan","value":"JP"},{"label":"Jersey","value":"JE"},{"label":"Jordan","value":"JO"},{"label":"Kazakhstan","value":"KZ"},{"label":"Kenya","value":"KE"},{"label":"Kiribati","value":"KI"},{"label":"Kuwait","value":"KW"},{"label":"Kyrgyzstan","value":"KG"},{"label":"Laos","value":"LA"},{"label":"Latvia","value":"LV"},{"label":"Lebanon","value":"LB"},{"label":"Lesotho","value":"LS"},{"label":"Liberia","value":"LR"},{"label":"Libya","value":"LY"},{"label":"Liechtenstein","value":"LI"},{"label":"Lithuania","value":"LT"},{"label":"Luxembourg","value":"LU"},{"label":"Macau SAR China","value":"MO"},{"label":"Macedonia","value":"MK"},{"label":"Madagascar","value":"MG"},{"label":"Malawi","value":"MW"},{"label":"Malaysia","value":"MY"},{"label":"Maldives","value":"MV"},{"label":"Mali","value":"ML"},{"label":"Malta","value":"MT"},{"label":"Marshall Islands","value":"MH"},{"label":"Martinique","value":"MQ"},{"label":"Mauritania","value":"MR"},{"label":"Mauritius","value":"MU"},{"label":"Mayotte","value":"YT"},{"label":"Mexico","value":"MX"},{"label":"Micronesia","value":"FM"},{"label":"Moldova","value":"MD"},{"label":"Monaco","value":"MC"},{"label":"Mongolia","value":"MN"},{"label":"Montenegro","value":"ME"},{"label":"Montserrat","value":"MS"},{"label":"Morocco","value":"MA"},{"label":"Mozambique","value":"MZ"},{"label":"Myanmar (Burma)","value":"MM"},{"label":"Namibia","value":"NA"},{"label":"Nauru","value":"NR"},{"label":"Nepal","value":"NP"},{"label":"Netherlands","value":"NL"},{"label":"New Caledonia","value":"NC"},{"label":"New Zealand","value":"NZ"},{"label":"Nicaragua","value":"NI"},{"label":"Niger","value":"NE"},{"label":"Nigeria","value":"NG"},{"label":"Niue","value":"NU"},{"label":"Norfolk Island","value":"NF"},{"label":"Northern Mariana Islands","value":"MP"},{"label":"North Korea","value":"KP"},{"label":"Norway","value":"NO"},{"label":"Oman","value":"OM"},{"label":"Pakistan","value":"PK"},{"label":"Palau","value":"PW"},{"label":"Palestinian Territories","value":"PS"},{"label":"Panama","value":"PA"},{"label":"Papua New Guinea","value":"PG"},{"label":"Paraguay","value":"PY"},{"label":"Peru","value":"PE"},{"label":"Philippines","value":"PH"},{"label":"Pitcairn Islands","value":"PN"},{"label":"Poland","value":"PL"},{"label":"Portugal","value":"PT"},{"label":"Qatar","value":"QA"},{"label":"Réunion","value":"RE"},{"label":"Romania","value":"RO"},{"label":"Russia","value":"RU"},{"label":"Rwanda","value":"RW"},{"label":"Samoa","value":"WS"},{"label":"San Marino","value":"SM"},{"label":"São Tomé & Príncipe","value":"ST"},{"label":"Saudi Arabia","value":"SA"},{"label":"Senegal","value":"SN"},{"label":"Serbia","value":"RS"},{"label":"Seychelles","value":"SC"},{"label":"Sierra Leone","value":"SL"},{"label":"Singapore","value":"SG"},{"label":"Slovakia","value":"SK"},{"label":"Slovenia","value":"SI"},{"label":"Solomon Islands","value":"SB"},{"label":"Somalia","value":"SO"},{"label":"South Africa","value":"ZA"},{"label":"South Georgia & South Sandwich Islands","value":"GS"},{"label":"South Korea","value":"KR"},{"label":"Spain","value":"ES"},{"label":"Sri Lanka","value":"LK"},{"label":"St. Barthélemy","value":"BL"},{"label":"St. Helena","value":"SH"},{"label":"St. Kitts & Nevis","value":"KN"},{"label":"St. Lucia","value":"LC"},{"label":"St. Martin","value":"MF"},{"label":"St. Pierre & Miquelon","value":"PM"},{"label":"St. Vincent & Grenadines","value":"VC"},{"label":"Sudan","value":"SD"},{"label":"Suriname","value":"SR"},{"label":"Svalbard & Jan Mayen","value":"SJ"},{"label":"Swaziland","value":"SZ"},{"label":"Sweden","value":"SE"},{"label":"Switzerland","value":"CH"},{"label":"Syria","value":"SY"},{"label":"Taiwan","value":"TW"},{"label":"Tajikistan","value":"TJ"},{"label":"Tanzania","value":"TZ"},{"label":"Thailand","value":"TH"},{"label":"Timor-Leste","value":"TL"},{"label":"Togo","value":"TG"},{"label":"Tokelau","value":"TK"},{"label":"Tonga","value":"TO"},{"label":"Trinidad & Tobago","value":"TT"},{"label":"Tunisia","value":"TN"},{"label":"Turkey","value":"TR"},{"label":"Turkmenistan","value":"TM"},{"label":"Turks & Caicos Islands","value":"TC"},{"label":"Tuvalu","value":"TV"},{"label":"Uganda","value":"UG"},{"label":"Ukraine","value":"UA"},{"label":"United Arab Emirates","value":"AE"},{"label":"United Kingdom","value":"GB"},{"label":"United States","value":"US"},{"label":"Uruguay","value":"UY"},{"label":"U.S. Outlying Islands","value":"UM"},{"label":"U.S. Virgin Islands","value":"VI"},{"label":"Uzbekistan","value":"UZ"},{"label":"Vanuatu","value":"VU"},{"label":"Vatican City","value":"VA"},{"label":"Venezuela","value":"VE"},{"label":"Vietnam","value":"VN"},{"label":"Wallis & Futuna","value":"WF"},{"label":"Western Sahara","value":"EH"},{"label":"Yemen","value":"YE"},{"label":"Zambia","value":"ZM"},{"label":"Zimbabwe","value":"ZW"}],"is_user_defined":false,"default_frontend_label":"Country of Manufacture","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Countryofmanufacture","is_unique":"0","validation_rules":[],"id":114,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"131","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"global","attribute_id":131,"attribute_code":"links_exist","frontend_input":null,"entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"int","default_value":"0","is_unique":"0","validation_rules":[],"id":131,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"134","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"1","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":134,"attribute_code":"tax_class_id","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"None","value":"0"},{"label":"Taxable Goods","value":"2"}],"is_user_defined":false,"default_frontend_label":"Tax Class","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Tax\\Model\\TaxClass\\Source\\Product","default_value":"2","is_unique":"0","validation_rules":[],"id":134,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"150","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":150,"attribute_code":"style_general","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Insulated","value":"117"},{"label":"Jacket","value":"118"},{"label":"Vest","value":"119"},{"label":"Lightweight","value":"120"},{"label":"Hooded","value":"121"},{"label":"Heavy Duty","value":"122"},{"label":"Rain Coat","value":"123"},{"label":"Hard Shell","value":"124"},{"label":"Soft Shell","value":"125"},{"label":"Windbreaker","value":"126"},{"label":"½ zip","value":"127"},{"label":"¼ zip","value":"128"},{"label":"Full Zip","value":"129"},{"label":"Reversible","value":"130"},{"label":"Bra","value":"131"},{"label":"Hoodie","value":"132"},{"label":"Sweatshirt","value":"133"},{"label":"Polo","value":"134"},{"label":"Tank","value":"135"},{"label":"Tee","value":"136"},{"label":"Pullover","value":"137"},{"label":"Hoodie","value":"138"},{"label":"Cardigan","value":"139"},{"label":"Henley","value":"140"},{"label":"Tunic","value":"141"},{"label":"Camisole","value":"142"}],"is_user_defined":true,"default_frontend_label":"Style General","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":150,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"cms_page","_id":"6","_score":1,"_source":{"store_id":[0],"id":6,"identifier":"customer-service","title":"Customer Service","page_layout":"1column","meta_keywords":"","meta_description":"","content_heading":"Customer Service","content":"
                  \n
                  \n

                  Luma Delivery and Returns

                  \n

                  We hope you love shopping with Luma. Here are our delivery and returns policies to help make sure we meet your expectations. Contact Us.

                  \n
                  \n\n

                  Shipping and Delivery

                  \n

                  Shipping and Delivery is the charge for internet order processing, item selection, packaging, transport and handling. We don’t guarantee delivery times, but we do our best to provide accurate estimates.

                  \n\n

                  Deliveries occur only on weekdays. Shipping and Delivery charges are subject to change and are determined when you order. Estimated delivery time assumes orders are placed before 12:00 noon (PST). Orders you place with Luma late on Friday or on Saturday will not be processed until Monday. Charges may be added to orders with Priority, Overnight and International shipping if we try unsuccessfully to deliver your order more than once.

                  \n\n

                  Delivery addresses in Alaska, Hawaii, Puerto Rico, and Guam should add an additional $5.00 charge for standard Shipping & Delivery. Orders arrive in 7 to 9 business days when ordered before 12:00 noon (PST).

                  \n\n
                  \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
                  Shipping and Delivery
                  Merchandise total *STANDARD
                  5—7 day shipping **
                  PRIORITY
                  2—3 day shipping **
                  OVERNIGHT
                  Next business day **
                  Up to $200$16$26$33
                  $200.01—500.00$21$31$38
                  $500.01—1000.00$29$39$46
                  Over $1000.00$34$44$51
                  \n
                  \n\n

                  \n *before tax and additional charges
                  \n **after processing if ordered by 12:00 noon PST\n

                  \n\n

                  Returns and Replacements

                  \n

                  We want you to be completely happy with your Luma order. If for any reason you are not satisfied, we will gladly accept your timely return of unworn, unwashed, or defective merchandise. Used merchandise cannot be returned unless defective. Returned merchandise should include the vendor packaging and tags and be in the same condition as when it was received. A pickup and/or restock fee may apply. Merchandise must be returned within 30 days of receipt of merchandise.

                  \n\n

                  Returning Gifts

                  \n

                  When returning a gift, a Luma Gift Card will be issued to the gift recipient for the amount of the returned merchandise. The card can be used for purchases from any Luma store, and online. In compliance with Federal law, for gifts valued at more than $2,000.00, the recipient will receive a check rather than an Luma Gift Card.

                  \n\n

                  Returning Merchandise by Mail

                  \n

                  On the back of the packing slip enclosed with your Luma order, please note the reason(s) for return and whether you wish to exchange the item(s) or receive a credit/refund (depending on the original form of payment).

                  \n

                  Enclose the return section of the packing slip with your item(s). Please use one of the return labels provided on the front of your packing slip to ensure proper return address and credit information. Restricted items must be returned using ground transportation.

                  \n

                  Please allow 10 to 14 days for Luma to process your return.

                  \n
                  \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","sort_order":"0","layout_update_xml":"","custom_theme":"","custom_root_template":"","custom_layout_update_xml":"","active":true,"type":"cms_page","tsk":1556377182883}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"cms_page","_id":"4","_score":1,"_source":{"store_id":[0],"id":4,"identifier":"privacy-policy-cookie-restriction-mode","title":"Privacy Policy","page_layout":"1column","meta_keywords":"","meta_description":"","content_heading":"Privacy Policy","content":"
                  \n
                  \n

                  This website (\"website\") is operated by Luma Inc., which includes Luma stores, and Luma Private Sales. This privacy policy only covers information collected at this website, and does not cover any information collected offline by Luma. All Luma websites are covered by this privacy policy.

                  \n\n

                  Luma Security

                  \n

                  Personal information provided on the website and online credit card transactions are transmitted through a secure server. We are committed to handling your personal information with high standards of information security. We take appropriate physical, electronic, and administrative steps to maintain the security and accuracy of personally identifiable information we collect, including limiting the number of people who have physical access to our database servers, as well as employing electronic security systems and password protections that guard against unauthorized access.

                  \n\n

                  Our website uses encryption technology, like Secure Sockets Layer (SSL), to protect your personal information during data transport. SSL encrypts ordering information such as your name, address, and credit card number. Our Customer Care center and stores also operate over a private, secure network. Please note that email is not encrypted and is not considered to be a secure means of transmitting credit card information.

                  \n\n

                  Luma Privacy Policy

                  \n

                  To help us achieve our goal of providing the highest quality products and services, we use information from our interactions with you and other customers, as well as from other parties. Because we respect your privacy, we have implemented procedures to ensure that your personal information is handled in a safe, secure, and responsible manner. We have posted this privacy policy in order to explain our information collection practices and the choices you have about the way information is collected and used.

                  \n\n

                  As we continue to develop the Luma website and take advantage of advances in technology to improve the services we offer, this privacy policy likely will change. We therefore encourage you to refer to this policy on an ongoing basis so that you understand our current privacy policy.

                  \n\n

                  The Information We Collect

                  \n

                  Generally, you may browse the Luma website without providing any personally identifiable information. However, we may ask you to provide personally identifiable information at various times and places on this website. In some cases, if you choose not to provide us with the requested information, you may not be able to access all parts of this website or participate in all of its features, pricing, and product selection.

                  \n\n

                  We may collect the following information:

                  \n
                    \n
                  • name
                  • \n
                  • contact information including email address
                  • \n
                  • demographic information such as postcode, preferences and interests
                  • \n
                  • other information relevant to customer surveys and/or offers
                  • \n
                  \n

                  For the exhaustive list of cookies we collect see the List of cookies we collect section. From your purchases and other interactions with us, we obtain information concerning the specific products or services you purchase or use. When you visit this website, our web server automatically collects anonymous information such as log data and IP addresses, and may collect general information concerning your location. We may use the automatically collected information for a number of purposes, such as improving our site design, product assortments, customer service, and special promotions.

                  \n

                  How We Use The Information We Collect

                  \n

                  We require this information to understand your needs and provide you with a better service, and in particular for the following reasons:

                  \n
                    \n
                  • Internal record keeping.
                  • \n
                  • We may use the information to improve our products and services.
                  • \n
                  • We may periodically send promotional emails about new products, special offers or other information which we think you may find interesting using the email address which you have provided.
                  • \n
                  • From time to time, we may also use your information to contact you for market research purposes. We may contact you by email, phone, fax or mail. We may use the information to customize the website according to your interests.
                  • \n
                  \n\n

                  Security

                  \n

                  We are committed to ensuring that your information is secure. In order to prevent unauthorized access or disclosure, we have put in place suitable physical, electronic and managerial procedures to safeguard and secure the information we collect online.

                  \n\n

                  Others With Whom We Share Your Information.

                  \n

                  The Luma Group: All of the above information that we collect, as described above, may be shared among all Luma entities, including Luma Venia and Luma Terra stores, website and Private Sales.

                  \n\n

                  Service Providers: We also may disclose information to outside companies that help us bring you the products and services we offer. For example, we may work with an outside company to: (a) manage a database of customer information; (b) assist us in distributing emails; (c) assist us with direct marketing and data collection; (d) provide us storage and analysis; (d) provide fraud prevention; and (e) provide other services designed to assist us in maximizing our business potential. We require that these outside companies agree to keep confidential all information we share with them and to use the information only to perform their obligations in our agreements with them.

                  \n\n

                  Other Companies: We may provide information to carefully selected outside companies when we believe their products or services may be of interest to you.

                  \n\n

                  Business Transitions: We may transfer or share a copy of personal information about you in the event that Luma or one of its properties, affiliates, or subsidiaries goes through a business transition, such as a merger, being acquired by another company, or selling a portion of its assets. You will be notified via email or prominent notice on our website prior to a change of ownership or control of your personal information, if your personal information will be used contrary to this policy. However, nothing in this Privacy Policy is intended to interfere with the ability of Luma to transfer all or part of its business and/or assets to an affiliate or independent third party at any time, for any purpose, without any limitation whatsoever.

                  \n\n

                  Luma specifically reserves the right to transfer or share a copy of personally identifiable information collected from its websites to the buyer of that portion of its business relating to that information.

                  \n\n

                  Compliance with Law: We may provide access to information when legally required to do so, to cooperate with police investigations or other legal proceedings, to protect against misuse or unauthorized use of our website, to limit our legal liability, and to protect our rights or to protect the rights, property, or safety of visitors of this website or the public.

                  \n\n

                  Luma partners with advertising companies to place our advertising on publisher websites on the Internet. These advertising companies collect anonymous information about your visits to our web site. This technology involves the use of third party cookies that allow them to develop personalized advertising so that it directly relates to offers that may be of interest to you. You may choose to opt-out of this service we have with our third-party advertising partner. We may also use Luma cookies to provide similar enhanced online marketing to you based on your interests and preferences. You may also choose to opt out of these enhanced online marketing ads.

                  \n\n

                  Your Choices Regarding Use Of The Information We Collect

                  \n\n

                  You have several choices regarding our handling of your nonpublic personally identifiable information.

                  \n\n

                  \n Direct Mail or Telephone Marketing: If you shop at the Luma or Private Sales stores and wish to be removed from the list of customers that receive direct mail or telemarketing calls, please either write to Luma Customer Care at 112 West 34th Street, 18th Flr. New York, NY 10120 or call +1 800-403-8838. If you choose to write to us, please include your name, address, and credit card account number (if you have one), and state one of the following:\n

                    \n
                  • \"NO MAIL OFFERS\" (if you don't want to receive offers by mail);
                  • \n
                  • \"NO PHONE OFFERS\" (if you don't want to receive offers by phone);
                  • \n
                  • \"NO PHONE OR MAIL OFFERS\" (if you don't want to receive either).
                  • \n
                  \n

                  \n\n

                  Because customer lists often are prepared well in advance of an offering (sometimes a few months before the offer is made), you may continue to receive some offers after you send us a request not to use your information for specified marketing purposes. We appreciate your patience and understanding in giving us time to carry out your request.

                  \n\n

                  Your California Privacy Rights

                  \n

                  Under California Civil Code sections 1798.83-1798.84, California residents are entitled to ask us for a notice describing what categories of personal customer information we share with third parties or corporate affiliates for those third parties or corporate affiliates' direct marketing purposes. That notice will identify the categories of information shared and will include a list of the third parties and affiliates with which it was shared, along with their names and addresses. If you are a California resident and would like a copy of this notice, please submit a written request to the following address: Luma Customer Care, 112 West 34th Street, 18th Floor, New York, NY 10120. Please allow 30 days for a response.

                  \n\n

                  Cookies, Web Beacons, and How We Use Them

                  \n

                  A cookie is a small file which asks permission to be placed on your computer's hard drive. Once you agree, the file is added and the cookie helps analyze web traffic or lets you know when you visit a particular site. Cookies allow web applications to respond to you as an individual. The web application can tailor its operations to your needs, likes and dislikes by gathering and remembering information about your preferences.

                  \n\n

                  We use traffic log cookies to identify which pages are being used. This helps us analyze data about web page traffic and improve our website in order to tailor it to customer needs. We only use this information for statistical analysis purposes and then the data is removed from the system.

                  \n\n

                  Overall, cookies help us provide you with a better website, by enabling us to monitor which pages you find useful and which you do not. A cookie in no way gives us access to your computer or any information about you, other than the data you choose to share with us. You can choose to accept or decline cookies. Most web browsers automatically accept cookies, but you can usually modify your browser setting to decline cookies if you prefer. This may prevent you from taking full advantage of the website.

                  \n\n

                  A \"web beacon\" or \"pixel tag\" or \"clear gif\" is typically a one-pixel image, used to pass information from your computer or mobile device to a website.

                  \n\n

                  We use cookies and web beacons to keep track of what you have in your shopping cart and to remember you when you return to the website as well as to identify the pages you click on during your visit to our site and the name of the website you visited immediately before clicking to the Luma website. We use this information to improve our site design, product assortments, customer service, and special promotions. You can, of course, disable cookies and web beacons on your computer by indicating this in the preferences or options menus in your browser. However, it is possible that some parts of our website will not operate correctly if you disable cookies. We may also use web beacons, and other technologies, to help track whether our communications are reaching you, to measure their effectiveness, or to collect certain non-personal information about your computer, device, or browser in order to allow us to better design future communications to you.

                  \n\n

                  We may contract with third parties who may use cookies and web beacons and collect information on our behalf or provide services such as credit card processing, shipping, promotional services, or data management. We call them our Customer Care Partners. These third parties are prohibited by our contract with them from sharing that information with anyone other than us or our other Customer Care Partners.

                  \n\n

                  List of cookies we collect

                  \n

                  The table below lists the cookies we collect and the information they store.

                  \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
                  COOKIE nameCOOKIE Description
                  CARTThe association with your shopping cart.
                  CATEGORY_INFOAllows pages to be displayed more quickly.
                  COMPAREThe items that you have in the Compare Products list.
                  CUSTOMERAn encrypted version of your customer id.
                  CUSTOMER_AUTHAn indicator if you are signed into the store.
                  CUSTOMER_INFOAn encrypted version of the customer group you belong to.
                  CUSTOMER_SEGMENT_IDSStores your Customer Segment ID
                  EXTERNAL_NO_CACHEA flag that, indicates whether caching is on or off.
                  FRONTENDYour session ID on the server.
                  GUEST-VIEWAllows guests to edit their orders.
                  LAST_CATEGORYThe last category you visited.
                  LAST_PRODUCTThe last product you looked at.
                  NEWMESSAGEIndicates whether a new message has been received.
                  NO_CACHEIndicates whether it is allowed to use cache.
                  PERSISTENT_SHOPPING_CARTA link to information about your cart and viewing history if you have asked the site.
                  RECENTLYCOMPAREDThe items you recently compared.
                  STFInformation on products you emailed to friends.
                  STOREThe store view or language you have selected.
                  USER_ALLOWED_SAVE_COOKIEIndicates whether a customer authorized cookies.
                  VIEWED_PRODUCT_IDSThe products that you recently looked at.
                  WISHLISTAn encrypted list of products added to your wish list.
                  WISHLIST_CNTThe number of items in your wish list.
                  \n\n

                  Online Account Registration

                  \n

                  To make online shopping faster and easier, you may register on the Luma website. As a registered customer, you only have to enter your shipping addresses and billing information once; they will be securely stored with us for your future use. Using your name and a password of your choice, you may access your account online at any time to add, delete, or change information. If you are using a public computer, we strongly encourage you to Sign Out when you finish shopping. Your information will still be stored with us but it will not be accessible to anyone else from that computer.

                  \n\n

                  Emails

                  \n

                  You will receive promotional emails from us only if you have asked to receive them. If you do not want to receive email from Luma or its affiliates you can click on the \"Unsubscribe\" link at the bottom of any email communication sent by us. Please allow us 3 business days from when the request was received to complete the removal, as some of our promotions may already have been in process before you submitted your request.

                  \n\n

                  Acceptance

                  \n

                  By using this website, you accept the policies set forth in this Privacy Policy.

                  \n\n

                  Questions for Luma?

                  \n

                  Contact Us

                  \n
                  \n \n
                  \n","creation_time":"2017-11-03 08:34:38","update_time":"2017-11-03 08:34:38","sort_order":"0","layout_update_xml":"","custom_theme":"","custom_root_template":"","custom_layout_update_xml":"","active":true,"type":"cms_page","tsk":1556377182883}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"20","_score":1,"_source":{"id":20,"parent_id":2,"name":"La Donne","is_active":true,"position":2,"level":2,"product_count":0,"children_data":[{"id":21,"parent_id":20,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"id":23,"parent_id":21,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":186,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/23","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"jackets-23","url_path":"women/tops-women/jackets-women/jackets-23","slug":"jackets-23"},{"id":24,"parent_id":21,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":182,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/24","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-24","url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","slug":"hoodies-and-sweatshirts-24"},{"id":25,"parent_id":21,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/25","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-25","url_path":"women/tops-women/tees-women/tees-25","slug":"tees-25"},{"id":26,"parent_id":21,"name":"Bras & Tanks","is_active":true,"position":4,"level":4,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/26","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bras-and-tanks-26","url_path":"women/tops-women/tanks-women/bras-and-tanks-26","slug":"bras-and-tanks-26"}],"children":"23,24,25,26","created_at":"2017-11-06 12:16:41","updated_at":"2019-01-03 10:35:27","path":"1/2/20/21","available_sort_by":[],"include_in_menu":true,"meta_title":"Women Tops","meta_description":"Best women tops on vuestorefront.","display_mode":"PRODUCTS","is_anchor":"1","children_count":"4","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"tops-21","url_path":"women/tops-women/tops-21","slug":"tops-21"},{"id":22,"parent_id":20,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"id":27,"parent_id":22,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":91,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/27","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-27","url_path":"women/bottoms-women/pants-women/pants-27","slug":"pants-27"},{"id":28,"parent_id":22,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":137,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/28","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-28","url_path":"women/bottoms-women/shorts-women/shorts-28","slug":"shorts-28"}],"children":"27,28","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-22","url_path":"women/bottoms-women/bottoms-22","slug":"bottoms-22"}],"children":"21,22","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:08:58","path":"1/2/20","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"8","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"la-donne-20","url_path":"women/la-donne-20","slug":"la-donne-20","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"4","_score":1,"_source":{"id":4,"parent_id":3,"name":"Bags","is_active":true,"position":1,"level":3,"product_count":14,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/4","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bags-4","url_path":"gear/bags/bags-4","slug":"bags-4","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"6","_score":1,"_source":{"id":6,"parent_id":3,"name":"Watches","is_active":true,"position":3,"level":3,"product_count":9,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/6","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"watches-6","url_path":"gear/watches/watches-6","slug":"watches-6","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"35","_score":1,"_source":{"id":35,"parent_id":7,"name":"Performance Fabrics","is_active":true,"position":3,"level":3,"product_count":310,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/35","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"performance-fabrics-35","url_path":"collections/performance-fabrics/performance-fabrics-35","slug":"performance-fabrics-35","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"36","_score":1,"_source":{"id":36,"parent_id":7,"name":"Eco Friendly","is_active":true,"position":4,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/36","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"eco-friendly-36","url_path":"collections/eco-friendly/eco-friendly-36","slug":"eco-friendly-36","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"36","_score":1,"_source":{"id":36,"sku":"24-MG04","name":"Aim Analog Watch","attribute_set_id":11,"price":45,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Stay light-years ahead of the competition with our Aim Analog Watch. The flexible, rubberized strap is contoured to conform to the shape of your wrist for a comfortable all-day fit. The face features three illuminated hands, a digital read-out of the current time, and stopwatch functions.

                  \n
                    \n
                  • Japanese quartz movement.
                  • \n
                  • Strap fits 7\" to 8.0\".
                  • \n
                  ","image":"/m/g/mg04-bk-0.jpg","small_image":"/m/g/mg04-bk-0.jpg","thumbnail":"/m/g/mg04-bk-0.jpg","category_ids":[3,6],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aim-analog-watch","tax_class_id":"2","activity":[9,17,5,11],"material":[44,45],"gender":"80","category_gear":[86,87,90],"slug":"aim-analog-watch-36","links":{},"stock":{"item_id":36,"product_id":36,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/g/mg04-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"}],"url_path":"gear/equipaggiamento-3/aim-analog-watch-36.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"35","_score":1,"_source":{"id":35,"sku":"24-WG087","name":"Sprite Yoga Strap 10 foot","attribute_set_id":13,"price":21,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":25.830001,"max_price":25.830001,"max_regular_price":25.830001,"minimal_regular_price":25.830001,"special_price":null,"minimal_price":25.830001,"regular_price":25.830001,"description":"

                  The Sprite Yoga Strap is your untiring partner in demanding stretches, holds and alignment routines. The strap's 100% organic cotton fabric is woven tightly to form a soft, textured yet non-slip surface. The plastic clasp buckle is easily adjustable, lightweight and durable under strain.

                  \n
                    \n
                  • 10' long x 1.0\" wide.\n
                  • 100% soft and durable cotton.\n
                  • Plastic cinch buckle is easy to use.\n
                  • Three natural colors made from phthalate and heavy metal free dyes.\n
                  ","image":"/l/u/luma-yoga-strap.jpg","small_image":"/l/u/luma-yoga-strap.jpg","thumbnail":"/l/u/luma-yoga-strap.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-yoga-strap-10-foot","tax_class_id":"2","activity":"8","material":[32,44],"gender":[80,81,84],"category_gear":"87","size":"96","slug":"sprite-yoga-strap-10-foot-35","links":{},"stock":{"item_id":35,"product_id":35,"stock_id":1,"qty":31,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-yoga-strap.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-yoga-strap-10-foot-35.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"cms_block","_id":"6","_score":1,"_source":{"store_id":[0],"id":6,"identifier":"women-left-menu-block","title":"Women Left Menu Block","content":"
                  Tops\n\n\nBottoms\n\n
                  ","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556377179572}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"cms_block","_id":"4","_score":1,"_source":{"store_id":[0],"id":4,"identifier":"gear-left-menu-block","title":"Gear Left Menu Block","content":"","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556377179572}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"cms_block","_id":"2","_score":1,"_source":{"store_id":[0],"id":2,"identifier":"contact-us-info","title":"Contact us info","content":"
                  \n

                  We love hearing from you, our Luma customers. Please contact us about anything at all. Your latest passion, unique health experience or request for a specific product. We’ll do everything we can to make your Luma experience unforgettable every time. Reach us however you like

                  \n
                  \n
                  \n Contact Us Info\n
                  \n
                  \n
                  \n \n Phone\n \n
                  \n 1-800-403-8838\n

                  Call the Luma Helpline for concerns, product questions, or anything else. We’re here for you 24 hours a day - 365 days a year.

                  \n
                  \n
                  \n
                  \n \n Apparel Design Inquiries\n \n
                  \n

                  Are you an independent clothing designer? Feature your products on the Luma website! Please direct all inquiries via email to: cs@luma.com

                  \n
                  \n
                  \n
                  \n \n Press Inquiries\n \n
                  \n

                  Please direct all media inquiries via email to: pr@luma.com

                  \n
                  \n
                  \n
                  \n
                  \n
                  \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556377179572}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"cms_block","_id":"15","_score":1,"_source":{"store_id":[0],"id":15,"identifier":"performance-fabrics-block","title":"Performance Fabrics Block","content":"
                  \n
                  \n \"\"\n \n You're the best\n Make a strong statement with Luma Performance sportswear\n \n
                  \n
                  \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556377179572}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"15","_score":1,"_source":{"id":15,"parent_id":12,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":208,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/15","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-15","url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","slug":"hoodies-and-sweatshirts-15","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"27","_score":1,"_source":{"id":27,"parent_id":22,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":91,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/27","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-27","url_path":"women/bottoms-women/pants-women/pants-27","slug":"pants-27","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"cms_page","_id":"2","_score":1,"_source":{"store_id":[0],"id":2,"identifier":"home","title":"Home Page","page_layout":"1column","meta_keywords":"","meta_description":"","content_heading":"Home Page","content":"","creation_time":"2017-11-03 08:34:38","update_time":"2017-11-03 08:34:38","sort_order":"0","layout_update_xml":"","custom_theme":"","custom_root_template":"","custom_layout_update_xml":"","active":true,"type":"cms_page","tsk":1556377182883}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"taxrule","_id":"2","_score":1,"_source":{"id":2,"code":"General Taxes","priority":0,"position":0,"customer_tax_class_ids":[3],"product_tax_class_ids":[2],"tax_rate_ids":[6,5,7,4],"calculate_subtotal":false,"rates":[{"id":5,"tax_country_id":"IT","tax_region_id":0,"tax_postcode":"*","rate":23,"code":"VAT23-IT","titles":[]},{"id":7,"tax_country_id":"PL","tax_region_id":0,"tax_postcode":"*","rate":23,"code":"VAT23-PL","titles":[]},{"id":6,"tax_country_id":"DE","tax_region_id":0,"tax_postcode":"*","rate":23,"code":"VAT23-DE","titles":[]},{"id":4,"tax_country_id":"US","tax_region_id":0,"tax_postcode":"*","rate":23,"code":"VAT23","titles":[]}],"tsk":1556377202881}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"57","_score":1,"_source":{"id":57,"sku":"MH01-S-Orange","name":"Chaz Kangeroo Hoodie-S-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                  Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                  \n

                  • Two-tone gray heather hoodie.
                  • Drawstring-adjustable hood.
                  • Machine wash/dry.

                  ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chaz-kangeroo-hoodie-s-orange-57","links":{},"stock":{"item_id":57,"product_id":57,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-s-orange-57.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"51","_score":1,"_source":{"id":51,"sku":"240-LV09","name":"Luma Yoga For Life","attribute_set_id":14,"price":0,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:34","updated_at":"2019-02-22 10:56:18","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":0,"max_price":0,"max_regular_price":0,"minimal_regular_price":11.070001,"special_price":null,"minimal_price":11.070001,"regular_price":0,"description":"
                  • Increase strength + flexibility + metabolism
                  • Burn calories + feel great
                  • Gain energy + youthfulness + mental wellness

                  Download description

                  Tone up mind and bodyPro Yoga Instructor and Master Practitioner Marie Peale helps tone and sculpt your physique with her invigorating yet gentle approach.

                  You'll learn to use yoga to relax, control stress and increase your calorie-burning capacity, all while exploring traditional and new yoga poses that lengthen and strengthen your full muscular structure.

                  • Easy download
                  • Audio options: Music and instruction or instruction only
                  • Heart rate techniques explained
                  • Breathing techniques explained
                  • Move through exercises at your own pace

                  Two 25-minute workout episodes and one 40-minute workout episode with warm-up and cool down:

                  Episode 1Creative, fun session geared toward opening your lungs. Combines stretching and breathing with a focus on hips and shoulders.

                  Episode 2Ramp up the tempo and energy with calorie-burning flows. A stimulating workout introducing the body-sculpting power of yoga.

                  Episode 3Push your fitness reach and stamina with an intense series of standing and floor exercises and poses. End this extra-length session with a meditative cool down.

                  instructor bio

                  About MarieMarie is a trained martial artist and dancer with a BS in Biological Engineering and over 10 years as a certified yoga teacher. Marie has studied yoga in England, India and, in 2009, at the Ashraqat Ashram Yoga Farm in the United States. She has been teaching full time since then. Her focus on strength and wellness combines a deep knowledge of human biology and motivation guided by unconditional love for her audience.

                  ","short_description":"

                  \r\nLuma founder Erin Renny on yoga and longevity: \"I won't promise you'll live longer with yoga. No one can promise that. But your life will be healthier, less stressful, and more physically in tune when you focus on connecting your mind and body or a regular basis. Yoga is my favorite way to express this connection. I want to share the secrets of lifelong yoga with anyone willing to breathe and learn with me.\"\r\n

                  ","meta_description":"You'll learn to use yoga to relax, control stress and increase your calorie-burning capacity, all while exploring traditional and new yoga poses that lengthen and strengthen your full muscular structure.","image":"/l/t/lt06.jpg","small_image":"/l/t/lt06.jpg","thumbnail":"/l/t/lt06.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"luma-yoga-for-life","msrp_display_actual_price_type":"0","links_purchased_separately":"1","samples_title":"Trailers","links_title":"Downloads","gift_message_available":"0","tax_class_id":"2","activity":[8,16],"format":"102","slug":"luma-yoga-for-life-51","links":{},"stock":{"item_id":51,"product_id":51,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":"2019-02-22 10:56:18","is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/t/lt06.jpg","pos":1,"typ":"image","lab":"Image","vid":null},{"image":"/6/5/654598283_640.jpg","pos":2,"typ":"external-video","lab":null,"vid":{"url":"https://vimeo.com/233305101","title":"Yoga For Life","desc":"Creative, fun session geared toward opening your lungs. Combines stretching and breathing with a focus on hips and shoulders.","meta":"","video_id":"233305101","type":"vimeo"}},{"image":"/h/q/hqdefault_1.jpg","pos":5,"typ":"external-video","lab":null,"vid":{"url":"https://youtu.be/L4K-mq9JoaQ","title":"Vue Storefront - Open Source PWA eCommerce Solution Demo","desc":"Vue Storefront is a progressive web application for eCommerce based on Vuejs.\r\n\r\nhttps://vuestorefront.io/\r\n\r\nWe created Vue Storefront to improve the shopping experience by making the storefront ultra fast, off-line ready and impervious to traffic overloads.\r\n\r\nVue Storefront is 100% open source and distributed under the MIT license. You can take the source code from GitHub, customize your template and use it for your eCommerce as a PWA.\r\n\r\nPlatforms we work with right now: Magento ( Magento2 and Magento 1 ), PrestaShop. \r\nYou can easily connect our Storefront to: hybris, spryker, shopify, demandware, sylius.\r\n\r\n--\r\nâ–º Subscribe to Divante Channel Here: \r\nhttps://www.youtube.com/channel/UCXELY-WzF41oJlM-8qt5z8g?sub_confirmation=1 \r\n\r\n--\r\nAs one of the biggest eCommerce Software Houses in Europe, headquartered in Poland and employing about 150 people, our core competencies are built around Magento. This is the leading eCommerce platform for medium to large companies. We have been operating since 2008 and we are part of the OEX Group which is listed on the Warsaw Stock Exchange. Our annual revenue has been growing at a minimum of about 30% y/y.\r\n\r\n----\r\nFollow Divante Online Here:\r\n\r\n\r\nFacebook: http://facebook.com/Divante.co\r\nWebsite: http://divante.co\r\nTwitter: http://twitter.com/DivanteLTD\r\nCEO Twitter: http://twitter.com/tomik99\r\nGitHub: https://github.com/DivanteLtd\r\nBehance: http://behance.net/behancead24\r\nLinkedIn: https://www.linkedin.com/company-beta/600853\r\n\r\n-","meta":"","video_id":"L4K-mq9JoaQ","type":"youtube"}}],"category":[{"category_id":9,"name":"Training","slug":"training-9","path":"training/training-9"},{"category_id":10,"name":"Video Download","slug":"video-download-10","path":"training/training-video/video-download-10"}],"url_path":"training/training-9/luma-yoga-for-life-51.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"93","_score":1,"_source":{"id":93,"sku":"MH03-L-Black","name":"Bruno Compete Hoodie-L-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

                  Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                  \n

                  • Full zip black hoodie pullover.
                  • Adjustable drawstring hood.
                  • Ribbed cuffs/waistband.
                  • Kangaroo pocket.
                  • Machine wash/dry.

                  ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bruno-compete-hoodie-l-black-93","links":{},"stock":{"item_id":93,"product_id":93,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-l-black-93.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"85","_score":1,"_source":{"id":85,"sku":"MH03-XS-Blue","name":"Bruno Compete Hoodie-XS-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

                  Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                  \n

                  • Full zip black hoodie pullover.
                  • Adjustable drawstring hood.
                  • Ribbed cuffs/waistband.
                  • Kangaroo pocket.
                  • Machine wash/dry.

                  ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bruno-compete-hoodie-xs-blue-85","links":{},"stock":{"item_id":85,"product_id":85,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xs-blue-85.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"80","_score":1,"_source":{"id":80,"sku":"MH02-XL-Black","name":"Teton Pullover Hoodie-XL-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

                  This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                  \n

                  • Black pullover hoodie.
                  • Soft, brushed interior.
                  • Front hand pockets.
                  • Machine wash/dry.

                  ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"teton-pullover-hoodie-xl-black-80","links":{},"stock":{"item_id":80,"product_id":80,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xl-black-80.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"188","_score":1,"_source":{"id":188,"sku":"MH09-M-Red","name":"Abominable Hoodie-M-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                  \n

                  • Blue heather hoodie.
                  • Relaxed fit.
                  • Moisture-wicking.
                  • Machine wash/dry.

                  ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"abominable-hoodie-m-red-188","links":{},"stock":{"item_id":188,"product_id":188,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-m-red-188.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"163","_score":1,"_source":{"id":163,"sku":"MH07","name":"Hero Hoodie","attribute_set_id":9,"price":54,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":54,"description":"

                  Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                  \n

                  • Full-zip gray and black hoodie.
                  • Ribbed hem.
                  • Standard fit.
                  • Drawcord hood cinch.
                  • Water-resistant coating.

                  ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hero-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,146,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","pattern":"195","climate":"208","slug":"hero-hoodie-163","links":{},"stock":{"item_id":163,"product_id":163,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH07-XS-Black","id":148,"status":1,"name":"Hero Hoodie-XS-Black","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"49","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","url_key":"hero-hoodie-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MH07-XS-Gray","id":149,"status":1,"name":"Hero Hoodie-XS-Gray","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"52","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","url_key":"hero-hoodie-xs-gray","msrp_display_actual_price_type":"0"},{"sku":"MH07-XS-Green","id":150,"status":1,"name":"Hero Hoodie-XS-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"53","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","url_key":"hero-hoodie-xs-green","msrp_display_actual_price_type":"0"},{"sku":"MH07-S-Black","id":151,"status":1,"name":"Hero Hoodie-S-Black","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"49","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","url_key":"hero-hoodie-s-black","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"MH07-S-Gray","id":152,"status":1,"name":"Hero Hoodie-S-Gray","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"52","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","url_key":"hero-hoodie-s-gray","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"MH07-S-Green","id":153,"status":1,"name":"Hero Hoodie-S-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"53","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","url_key":"hero-hoodie-s-green","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"MH07-M-Black","id":154,"status":1,"name":"Hero Hoodie-M-Black","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"49","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","url_key":"hero-hoodie-m-black","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"MH07-M-Gray","id":155,"status":1,"name":"Hero Hoodie-M-Gray","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"52","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","url_key":"hero-hoodie-m-gray","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"MH07-M-Green","id":156,"status":1,"name":"Hero Hoodie-M-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"53","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","url_key":"hero-hoodie-m-green","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"MH07-L-Black","id":157,"status":1,"name":"Hero Hoodie-L-Black","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"49","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","url_key":"hero-hoodie-l-black","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"MH07-L-Gray","id":158,"status":1,"name":"Hero Hoodie-L-Gray","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"52","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","url_key":"hero-hoodie-l-gray","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"MH07-L-Green","id":159,"status":1,"name":"Hero Hoodie-L-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"53","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","url_key":"hero-hoodie-l-green","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"MH07-XL-Black","id":160,"status":1,"name":"Hero Hoodie-XL-Black","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"49","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","url_key":"hero-hoodie-xl-black","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"MH07-XL-Gray","id":161,"status":1,"name":"Hero Hoodie-XL-Gray","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"52","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","url_key":"hero-hoodie-xl-gray","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"MH07-XL-Green","id":162,"status":1,"name":"Hero Hoodie-XL-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"53","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","url_key":"hero-hoodie-xl-green","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001}],"configurable_options":[{"id":15,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":163,"attribute_code":"color"},{"id":14,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":163,"attribute_code":"size"}],"color_options":[49,52,53],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-163.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"162","_score":1,"_source":{"id":162,"sku":"MH07-XL-Green","name":"Hero Hoodie-XL-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                  Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                  \n

                  • Full-zip gray and black hoodie.
                  • Ribbed hem.
                  • Standard fit.
                  • Drawcord hood cinch.
                  • Water-resistant coating.

                  ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hero-hoodie-xl-green-162","links":{},"stock":{"item_id":162,"product_id":162,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xl-green-162.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"161","_score":1,"_source":{"id":161,"sku":"MH07-XL-Gray","name":"Hero Hoodie-XL-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                  Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                  \n

                  • Full-zip gray and black hoodie.
                  • Ribbed hem.
                  • Standard fit.
                  • Drawcord hood cinch.
                  • Water-resistant coating.

                  ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hero-hoodie-xl-gray-161","links":{},"stock":{"item_id":161,"product_id":161,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xl-gray-161.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"170","_score":1,"_source":{"id":170,"sku":"MH08-M-Brown","name":"Oslo Trek Hoodie-M-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                  \n

                  • Brown hoodie with black detail.
                  • Pullover.
                  • Adjustable drawstring hood.
                  • Ribbed cuffs/waistband.
                  • Machine wash/dry.

                  ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-m-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"oslo-trek-hoodie-m-brown-170","links":{},"stock":{"item_id":170,"product_id":170,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-m-brown-170.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"169","_score":1,"_source":{"id":169,"sku":"MH08-S-Red","name":"Oslo Trek Hoodie-S-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                  \n

                  • Brown hoodie with black detail.
                  • Pullover.
                  • Adjustable drawstring hood.
                  • Ribbed cuffs/waistband.
                  • Machine wash/dry.

                  ","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"oslo-trek-hoodie-s-red-169","links":{},"stock":{"item_id":169,"product_id":169,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-s-red-169.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"175","_score":1,"_source":{"id":175,"sku":"MH08-L-Red","name":"Oslo Trek Hoodie-L-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                  \n

                  • Brown hoodie with black detail.
                  • Pullover.
                  • Adjustable drawstring hood.
                  • Ribbed cuffs/waistband.
                  • Machine wash/dry.

                  ","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"oslo-trek-hoodie-l-red-175","links":{},"stock":{"item_id":175,"product_id":175,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-l-red-175.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"176","_score":1,"_source":{"id":176,"sku":"MH08-XL-Brown","name":"Oslo Trek Hoodie-XL-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                  \n

                  • Brown hoodie with black detail.
                  • Pullover.
                  • Adjustable drawstring hood.
                  • Ribbed cuffs/waistband.
                  • Machine wash/dry.

                  ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xl-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"oslo-trek-hoodie-xl-brown-176","links":{},"stock":{"item_id":176,"product_id":176,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xl-brown-176.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"178","_score":1,"_source":{"id":178,"sku":"MH08-XL-Red","name":"Oslo Trek Hoodie-XL-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                  \n

                  • Brown hoodie with black detail.
                  • Pullover.
                  • Adjustable drawstring hood.
                  • Ribbed cuffs/waistband.
                  • Machine wash/dry.

                  ","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"oslo-trek-hoodie-xl-red-178","links":{},"stock":{"item_id":178,"product_id":178,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xl-red-178.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"180","_score":1,"_source":{"id":180,"sku":"MH09-XS-Blue","name":"Abominable Hoodie-XS-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-12-01 13:03:34","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":"20.0000","minimal_price":84.870001,"regular_price":84.870001,"description":"

                  It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                  \r\n

                  • Blue heather hoodie.
                  • Relaxed fit.
                  • Moisture-wicking.
                  • Machine wash/dry.

                  ","special_from_date":"2017-11-15 00:00:00","special_to_date":"2017-12-11 00:00:00","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xs-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"167","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"abominable-hoodie-xs-blue-180","links":{},"stock":{"item_id":180,"product_id":180,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":null,"vid":null},{"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xs-blue-180.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"199","_score":1,"_source":{"id":199,"sku":"MH10-S-Black","name":"Mach Street Sweatshirt -S-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

                  From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                  \n

                  • Navy heather crewneck sweatshirt.
                  • LumaTech™ moisture-wicking fabric.
                  • Antimicrobial, odor-resistant.
                  • Zip hand pockets.
                  • Chafe-resistant flatlock seams.
                  • Rib-knit cuffs and hem.

                  ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mach-street-sweatshirt-s-black-199","links":{},"stock":{"item_id":199,"product_id":199,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-s-black-199.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"198","_score":1,"_source":{"id":198,"sku":"MH10-XS-Red","name":"Mach Street Sweatshirt -XS-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

                  From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                  \n

                  • Navy heather crewneck sweatshirt.
                  • LumaTech™ moisture-wicking fabric.
                  • Antimicrobial, odor-resistant.
                  • Zip hand pockets.
                  • Chafe-resistant flatlock seams.
                  • Rib-knit cuffs and hem.

                  ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mach-street-sweatshirt-xs-red-198","links":{},"stock":{"item_id":198,"product_id":198,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xs-red-198.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"131","_score":1,"_source":{"id":131,"sku":"MH05","name":"Hollister Backyard Sweatshirt","attribute_set_id":9,"price":52,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":52,"description":"

                  Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                  \n

                  • Cream crewneck sweatshirt with navy sleeves/trim.
                  • Relaxed fit.
                  • Ribbed cuffs and hem.
                  • Machine wash/dry.

                  ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hollister-backyard-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,38,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"195","climate":"204","slug":"hollister-backyard-sweatshirt-131","links":{},"stock":{"item_id":131,"product_id":131,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH05-XS-Green","id":116,"status":1,"name":"Hollister Backyard Sweatshirt-XS-Green","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"53","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","url_key":"hollister-backyard-sweatshirt-xs-green","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-XS-Red","id":117,"status":1,"name":"Hollister Backyard Sweatshirt-XS-Red","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","url_key":"hollister-backyard-sweatshirt-xs-red","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-XS-White","id":118,"status":1,"name":"Hollister Backyard Sweatshirt-XS-White","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"59","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","url_key":"hollister-backyard-sweatshirt-xs-white","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-S-Green","id":119,"status":1,"name":"Hollister Backyard Sweatshirt-S-Green","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"53","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","url_key":"hollister-backyard-sweatshirt-s-green","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-S-Red","id":120,"status":1,"name":"Hollister Backyard Sweatshirt-S-Red","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","url_key":"hollister-backyard-sweatshirt-s-red","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-S-White","id":121,"status":1,"name":"Hollister Backyard Sweatshirt-S-White","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"59","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","url_key":"hollister-backyard-sweatshirt-s-white","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-M-Green","id":122,"status":1,"name":"Hollister Backyard Sweatshirt-M-Green","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"53","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","url_key":"hollister-backyard-sweatshirt-m-green","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-M-Red","id":123,"status":1,"name":"Hollister Backyard Sweatshirt-M-Red","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","url_key":"hollister-backyard-sweatshirt-m-red","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-M-White","id":124,"status":1,"name":"Hollister Backyard Sweatshirt-M-White","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"59","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","url_key":"hollister-backyard-sweatshirt-m-white","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-L-Green","id":125,"status":1,"name":"Hollister Backyard Sweatshirt-L-Green","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"53","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","url_key":"hollister-backyard-sweatshirt-l-green","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-L-Red","id":126,"status":1,"name":"Hollister Backyard Sweatshirt-L-Red","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","url_key":"hollister-backyard-sweatshirt-l-red","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-L-White","id":127,"status":1,"name":"Hollister Backyard Sweatshirt-L-White","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"59","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","url_key":"hollister-backyard-sweatshirt-l-white","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-XL-Green","id":128,"status":1,"name":"Hollister Backyard Sweatshirt-XL-Green","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"53","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","url_key":"hollister-backyard-sweatshirt-xl-green","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-XL-Red","id":129,"status":1,"name":"Hollister Backyard Sweatshirt-XL-Red","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","url_key":"hollister-backyard-sweatshirt-xl-red","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH05-XL-White","id":130,"status":1,"name":"Hollister Backyard Sweatshirt-XL-White","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"59","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","url_key":"hollister-backyard-sweatshirt-xl-white","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001}],"configurable_options":[{"id":11,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":131,"attribute_code":"color"},{"id":10,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":131,"attribute_code":"size"}],"color_options":[53,58,59],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-131.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"114","_score":1,"_source":{"id":114,"sku":"MH04-XL-Yellow","name":"Frankie Sweatshirt-XL-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                  \n

                  • Light green crewneck sweatshirt.
                  • Hand pockets.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"frankie-sweatshirt-xl-yellow-114","links":{},"stock":{"item_id":114,"product_id":114,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xl-yellow-114.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"150","_score":1,"_source":{"id":150,"sku":"MH07-XS-Green","name":"Hero Hoodie-XS-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                  Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                  \n

                  • Full-zip gray and black hoodie.
                  • Ribbed hem.
                  • Standard fit.
                  • Drawcord hood cinch.
                  • Water-resistant coating.

                  ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hero-hoodie-xs-green-150","links":{},"stock":{"item_id":150,"product_id":150,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xs-green-150.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"134","_score":1,"_source":{"id":134,"sku":"MH06-XS-Purple","name":"Stark Fundamental Hoodie-XS-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                  \n

                  • Navy specked full zip hoodie.
                  • Ribbed cuffs, banded waist.
                  • Side pockets.
                  • Machine wash/dry.

                  ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"stark-fundamental-hoodie-xs-purple-134","links":{},"stock":{"item_id":134,"product_id":134,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xs-purple-134.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"106","_score":1,"_source":{"id":106,"sku":"MH04-M-Green","name":"Frankie Sweatshirt-M-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                  \n

                  • Light green crewneck sweatshirt.
                  • Hand pockets.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"frankie-sweatshirt-m-green-106","links":{},"stock":{"item_id":106,"product_id":106,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-m-green-106.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"118","_score":1,"_source":{"id":118,"sku":"MH05-XS-White","name":"Hollister Backyard Sweatshirt-XS-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                  Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                  \n

                  • Cream crewneck sweatshirt with navy sleeves/trim.
                  • Relaxed fit.
                  • Ribbed cuffs and hem.
                  • Machine wash/dry.

                  ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hollister-backyard-sweatshirt-xs-white-118","links":{},"stock":{"item_id":118,"product_id":118,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xs-white-118.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"109","_score":1,"_source":{"id":109,"sku":"MH04-L-Green","name":"Frankie Sweatshirt-L-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                  \n

                  • Light green crewneck sweatshirt.
                  • Hand pockets.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"frankie-sweatshirt-l-green-109","links":{},"stock":{"item_id":109,"product_id":109,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-l-green-109.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"54","_score":1,"_source":{"id":54,"sku":"MH01-XS-Orange","name":"Chaz Kangeroo Hoodie-XS-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                  Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                  \n

                  • Two-tone gray heather hoodie.
                  • Drawstring-adjustable hood.
                  • Machine wash/dry.

                  ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chaz-kangeroo-hoodie-xs-orange-54","links":{},"stock":{"item_id":54,"product_id":54,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xs-orange-54.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"55","_score":1,"_source":{"id":55,"sku":"MH01-S-Black","name":"Chaz Kangeroo Hoodie-S-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                  Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                  \n

                  • Two-tone gray heather hoodie.
                  • Drawstring-adjustable hood.
                  • Machine wash/dry.

                  ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chaz-kangeroo-hoodie-s-black-55","links":{},"stock":{"item_id":55,"product_id":55,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-s-black-55.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"202","_score":1,"_source":{"id":202,"sku":"MH10-M-Black","name":"Mach Street Sweatshirt -M-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

                  From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                  \n

                  • Navy heather crewneck sweatshirt.
                  • LumaTech™ moisture-wicking fabric.
                  • Antimicrobial, odor-resistant.
                  • Zip hand pockets.
                  • Chafe-resistant flatlock seams.
                  • Rib-knit cuffs and hem.

                  ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mach-street-sweatshirt-m-black-202","links":{},"stock":{"item_id":202,"product_id":202,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-m-black-202.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"207","_score":1,"_source":{"id":207,"sku":"MH10-L-Red","name":"Mach Street Sweatshirt -L-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

                  From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                  \n

                  • Navy heather crewneck sweatshirt.
                  • LumaTech™ moisture-wicking fabric.
                  • Antimicrobial, odor-resistant.
                  • Zip hand pockets.
                  • Chafe-resistant flatlock seams.
                  • Rib-knit cuffs and hem.

                  ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mach-street-sweatshirt-l-red-207","links":{},"stock":{"item_id":207,"product_id":207,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-l-red-207.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"159","_score":1,"_source":{"id":159,"sku":"MH07-L-Green","name":"Hero Hoodie-L-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                  Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                  \n

                  • Full-zip gray and black hoodie.
                  • Ribbed hem.
                  • Standard fit.
                  • Drawcord hood cinch.
                  • Water-resistant coating.

                  ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hero-hoodie-l-green-159","links":{},"stock":{"item_id":159,"product_id":159,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-l-green-159.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"242","_score":1,"_source":{"id":242,"sku":"MH12-XL-Red","name":"Ajax Full-Zip Sweatshirt -XL-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                  \n

                  • Mint striped full zip hoodie.
                  • 100% bonded polyester fleece.
                  • Pouch pocket.
                  • Rib cuffs and hem.
                  • Machine washable.

                  ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ajax-full-zip-sweatshirt-xl-red-242","links":{},"stock":{"item_id":242,"product_id":242,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xl-red-242.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"211","_score":1,"_source":{"id":211,"sku":"MH10","name":"Mach Street Sweatshirt ","attribute_set_id":9,"price":62,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":62,"description":"

                  From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                  \n

                  • Navy heather crewneck sweatshirt.
                  • LumaTech™ moisture-wicking fabric.
                  • Antimicrobial, odor-resistant.
                  • Zip hand pockets.
                  • Chafe-resistant flatlock seams.
                  • Rib-knit cuffs and hem.

                  ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mach-street-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,148],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","pattern":"197","climate":[202,204,205,208],"slug":"mach-street-sweatshirt-211","links":{},"stock":{"item_id":211,"product_id":211,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH10-XS-Black","id":196,"status":1,"name":"Mach Street Sweatshirt -XS-Black","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"49","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","url_key":"mach-street-sweatshirt-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MH10-XS-Blue","id":197,"status":1,"name":"Mach Street Sweatshirt -XS-Blue","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"50","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","url_key":"mach-street-sweatshirt-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"MH10-XS-Red","id":198,"status":1,"name":"Mach Street Sweatshirt -XS-Red","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","url_key":"mach-street-sweatshirt-xs-red","msrp_display_actual_price_type":"0"},{"sku":"MH10-S-Black","id":199,"status":1,"name":"Mach Street Sweatshirt -S-Black","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"49","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","url_key":"mach-street-sweatshirt-s-black","msrp_display_actual_price_type":"0"},{"sku":"MH10-S-Blue","id":200,"status":1,"name":"Mach Street Sweatshirt -S-Blue","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"50","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","url_key":"mach-street-sweatshirt-s-blue","msrp_display_actual_price_type":"0"},{"sku":"MH10-S-Red","id":201,"status":1,"name":"Mach Street Sweatshirt -S-Red","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","url_key":"mach-street-sweatshirt-s-red","msrp_display_actual_price_type":"0","final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001},{"sku":"MH10-M-Black","id":202,"status":1,"name":"Mach Street Sweatshirt -M-Black","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"49","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","url_key":"mach-street-sweatshirt-m-black","msrp_display_actual_price_type":"0","final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001},{"sku":"MH10-M-Blue","id":203,"status":1,"name":"Mach Street Sweatshirt -M-Blue","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"50","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","url_key":"mach-street-sweatshirt-m-blue","msrp_display_actual_price_type":"0","final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001},{"sku":"MH10-M-Red","id":204,"status":1,"name":"Mach Street Sweatshirt -M-Red","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","url_key":"mach-street-sweatshirt-m-red","msrp_display_actual_price_type":"0","final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001},{"sku":"MH10-L-Black","id":205,"status":1,"name":"Mach Street Sweatshirt -L-Black","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"49","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","url_key":"mach-street-sweatshirt-l-black","msrp_display_actual_price_type":"0","final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001},{"sku":"MH10-L-Blue","id":206,"status":1,"name":"Mach Street Sweatshirt -L-Blue","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"50","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","url_key":"mach-street-sweatshirt-l-blue","msrp_display_actual_price_type":"0","final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001},{"sku":"MH10-L-Red","id":207,"status":1,"name":"Mach Street Sweatshirt -L-Red","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","url_key":"mach-street-sweatshirt-l-red","msrp_display_actual_price_type":"0","final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001},{"sku":"MH10-XL-Black","id":208,"status":1,"name":"Mach Street Sweatshirt -XL-Black","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"49","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","url_key":"mach-street-sweatshirt-xl-black","msrp_display_actual_price_type":"0","final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001},{"sku":"MH10-XL-Blue","id":209,"status":1,"name":"Mach Street Sweatshirt -XL-Blue","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"50","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","url_key":"mach-street-sweatshirt-xl-blue","msrp_display_actual_price_type":"0","final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001},{"sku":"MH10-XL-Red","id":210,"status":1,"name":"Mach Street Sweatshirt -XL-Red","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","url_key":"mach-street-sweatshirt-xl-red","msrp_display_actual_price_type":"0","final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001}],"configurable_options":[{"id":21,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":211,"attribute_code":"color"},{"id":20,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":211,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-211.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"263","_score":1,"_source":{"id":263,"sku":"MJ01-S-Orange","name":"Beaumont Summit Kit-S-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                  \n

                  • Yellow full zip rain jacket.
                  • Full-zip front.
                  • Stand-up collar.
                  • Elasticized cuffs.
                  • Machine wash/dry.

                  ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"beaumont-summit-kit-s-orange-263","links":{},"stock":{"item_id":263,"product_id":263,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-s-orange-263.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"258","_score":1,"_source":{"id":258,"sku":"MH13-XL-Lavender","name":"Marco Lightweight Active Hoodie-XL-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                  For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                  \n

                  • Light blue heather full zip hoodie.
                  • Fitted flatlock seams.
                  • Matching lining and drawstring.
                  • Machine wash/dry.

                  ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xl-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"marco-lightweight-active-hoodie-xl-lavender-258","links":{},"stock":{"item_id":258,"product_id":258,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xl-lavender-258.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"268","_score":1,"_source":{"id":268,"sku":"MJ01-M-Yellow","name":"Beaumont Summit Kit-M-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                  \n

                  • Yellow full zip rain jacket.
                  • Full-zip front.
                  • Stand-up collar.
                  • Elasticized cuffs.
                  • Machine wash/dry.

                  ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"beaumont-summit-kit-m-yellow-268","links":{},"stock":{"item_id":268,"product_id":268,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-m-yellow-268.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"277","_score":1,"_source":{"id":277,"sku":"MJ02-XS-Orange","name":"Hyperion Elements Jacket-XS-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                  \n

                  • Lime 1/4 zip pullover.
                  • Split pocket.
                  • Thumb holes.
                  • Machine wash/hang to dry.

                  ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hyperion-elements-jacket-xs-orange-277","links":{},"stock":{"item_id":277,"product_id":277,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xs-orange-277.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"293","_score":1,"_source":{"id":293,"sku":"MJ04-XS-Blue","name":"Kenobi Trail Jacket-XS-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

                  Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                  \n

                  • Black 1/4 zip pullover with royal zipper.
                  • Adjustable hood and sleeve cuffs.
                  • Machine wash/air dry.

                  ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"kenobi-trail-jacket-xs-blue-293","links":{},"stock":{"item_id":293,"product_id":293,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xs-blue-293.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"288","_score":1,"_source":{"id":288,"sku":"MJ02-XL-Green","name":"Hyperion Elements Jacket-XL-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                  \n

                  • Lime 1/4 zip pullover.
                  • Split pocket.
                  • Thumb holes.
                  • Machine wash/hang to dry.

                  ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hyperion-elements-jacket-xl-green-288","links":{},"stock":{"item_id":288,"product_id":288,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xl-green-288.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"286","_score":1,"_source":{"id":286,"sku":"MJ02-L-Orange","name":"Hyperion Elements Jacket-L-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                  \n

                  • Lime 1/4 zip pullover.
                  • Split pocket.
                  • Thumb holes.
                  • Machine wash/hang to dry.

                  ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hyperion-elements-jacket-l-orange-286","links":{},"stock":{"item_id":286,"product_id":286,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-l-orange-286.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"280","_score":1,"_source":{"id":280,"sku":"MJ02-S-Orange","name":"Hyperion Elements Jacket-S-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                  \n

                  • Lime 1/4 zip pullover.
                  • Split pocket.
                  • Thumb holes.
                  • Machine wash/hang to dry.

                  ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hyperion-elements-jacket-s-orange-280","links":{},"stock":{"item_id":280,"product_id":280,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-s-orange-280.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"213","_score":1,"_source":{"id":213,"sku":"MH11-XS-Red","name":"Grayson Crewneck Sweatshirt -XS-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

                  The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                  \n

                  • Cream crewneck sweatshirt with black accents.
                  • 80% cotton/20% polyester fleece.
                  • Patterned knit hood lining.
                  • Knit cuffs and waist.
                  • Pouch pocket.
                  • Curl edged seam detail

                  ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"grayson-crewneck-sweatshirt-xs-red-213","links":{},"stock":{"item_id":213,"product_id":213,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xs-red-213.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"210","_score":1,"_source":{"id":210,"sku":"MH10-XL-Red","name":"Mach Street Sweatshirt -XL-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

                  From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                  \n

                  • Navy heather crewneck sweatshirt.
                  • LumaTech™ moisture-wicking fabric.
                  • Antimicrobial, odor-resistant.
                  • Zip hand pockets.
                  • Chafe-resistant flatlock seams.
                  • Rib-knit cuffs and hem.

                  ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mach-street-sweatshirt-xl-red-210","links":{},"stock":{"item_id":210,"product_id":210,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xl-red-210.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"203","_score":1,"_source":{"id":203,"sku":"MH10-M-Blue","name":"Mach Street Sweatshirt -M-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

                  From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                  \n

                  • Navy heather crewneck sweatshirt.
                  • LumaTech™ moisture-wicking fabric.
                  • Antimicrobial, odor-resistant.
                  • Zip hand pockets.
                  • Chafe-resistant flatlock seams.
                  • Rib-knit cuffs and hem.

                  ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mach-street-sweatshirt-m-blue-203","links":{},"stock":{"item_id":203,"product_id":203,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-m-blue-203.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"232","_score":1,"_source":{"id":232,"sku":"MH12-S-Green","name":"Ajax Full-Zip Sweatshirt -S-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                  \n

                  • Mint striped full zip hoodie.
                  • 100% bonded polyester fleece.
                  • Pouch pocket.
                  • Rib cuffs and hem.
                  • Machine washable.

                  ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ajax-full-zip-sweatshirt-s-green-232","links":{},"stock":{"item_id":232,"product_id":232,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-s-green-232.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"225","_score":1,"_source":{"id":225,"sku":"MH11-XL-Red","name":"Grayson Crewneck Sweatshirt -XL-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

                  The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                  \n

                  • Cream crewneck sweatshirt with black accents.
                  • 80% cotton/20% polyester fleece.
                  • Patterned knit hood lining.
                  • Knit cuffs and waist.
                  • Pouch pocket.
                  • Curl edged seam detail

                  ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"grayson-crewneck-sweatshirt-xl-red-225","links":{},"stock":{"item_id":225,"product_id":225,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xl-red-225.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"219","_score":1,"_source":{"id":219,"sku":"MH11-M-Red","name":"Grayson Crewneck Sweatshirt -M-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

                  The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                  \n

                  • Cream crewneck sweatshirt with black accents.
                  • 80% cotton/20% polyester fleece.
                  • Patterned knit hood lining.
                  • Knit cuffs and waist.
                  • Pouch pocket.
                  • Curl edged seam detail

                  ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"grayson-crewneck-sweatshirt-m-red-219","links":{},"stock":{"item_id":219,"product_id":219,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-m-red-219.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"249","_score":1,"_source":{"id":249,"sku":"MH13-S-Lavender","name":"Marco Lightweight Active Hoodie-S-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                  For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                  \n

                  • Light blue heather full zip hoodie.
                  • Fitted flatlock seams.
                  • Matching lining and drawstring.
                  • Machine wash/dry.

                  ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-s-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"marco-lightweight-active-hoodie-s-lavender-249","links":{},"stock":{"item_id":249,"product_id":249,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-s-lavender-249.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"391","_score":1,"_source":{"id":391,"sku":"MJ06-S-Blue","name":"Jupiter All-Weather Trainer -S-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

                  Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                  \n

                  • Relaxed fit.
                  • Hand pockets.
                  • Machine wash/dry.
                  • Reflective safety trim.

                  ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jupiter-all-weather-trainer-s-blue-391","links":{},"stock":{"item_id":391,"product_id":391,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-s-blue-391.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"376","_score":1,"_source":{"id":376,"sku":"MJ11-S-Green","name":"Typhon Performance Fleece-lined Jacket-S-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                  \n

                  • Black full-zip flight jacket.
                  • Cocona® wicking fiber.
                  • Machine wash/dry.

                  ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"typhon-performance-fleece-lined-jacket-s-green-376","links":{},"stock":{"item_id":376,"product_id":376,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-s-green-376.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"399","_score":1,"_source":{"id":399,"sku":"MJ06-L-Purple","name":"Jupiter All-Weather Trainer -L-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

                  Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                  \n

                  • Relaxed fit.
                  • Hand pockets.
                  • Machine wash/dry.
                  • Reflective safety trim.

                  ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jupiter-all-weather-trainer-l-purple-399","links":{},"stock":{"item_id":399,"product_id":399,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-l-purple-399.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"381","_score":1,"_source":{"id":381,"sku":"MJ11-L-Black","name":"Typhon Performance Fleece-lined Jacket-L-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                  \n

                  • Black full-zip flight jacket.
                  • Cocona® wicking fiber.
                  • Machine wash/dry.

                  ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"typhon-performance-fleece-lined-jacket-l-black-381","links":{},"stock":{"item_id":381,"product_id":381,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-l-black-381.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"392","_score":1,"_source":{"id":392,"sku":"MJ06-S-Green","name":"Jupiter All-Weather Trainer -S-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

                  Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                  \n

                  • Relaxed fit.
                  • Hand pockets.
                  • Machine wash/dry.
                  • Reflective safety trim.

                  ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jupiter-all-weather-trainer-s-green-392","links":{},"stock":{"item_id":392,"product_id":392,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-s-green-392.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"393","_score":1,"_source":{"id":393,"sku":"MJ06-S-Purple","name":"Jupiter All-Weather Trainer -S-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

                  Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                  \n

                  • Relaxed fit.
                  • Hand pockets.
                  • Machine wash/dry.
                  • Reflective safety trim.

                  ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jupiter-all-weather-trainer-s-purple-393","links":{},"stock":{"item_id":393,"product_id":393,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-s-purple-393.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"398","_score":1,"_source":{"id":398,"sku":"MJ06-L-Green","name":"Jupiter All-Weather Trainer -L-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

                  Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                  \n

                  • Relaxed fit.
                  • Hand pockets.
                  • Machine wash/dry.
                  • Reflective safety trim.

                  ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jupiter-all-weather-trainer-l-green-398","links":{},"stock":{"item_id":398,"product_id":398,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-l-green-398.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"310","_score":1,"_source":{"id":310,"sku":"MJ07-XS-Yellow","name":"Orion Two-Tone Fitted Jacket-XS-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

                  While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                  \n

                  • Red full zip fleece with gray insets.
                  • Double-knit construction.
                  • Full athletic cut.
                  • Set in sleeves.
                  • Front pouch pocket.

                  ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"orion-two-tone-fitted-jacket-xs-yellow-310","links":{},"stock":{"item_id":310,"product_id":310,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xs-yellow-310.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"336","_score":1,"_source":{"id":336,"sku":"MJ08-XL-Blue","name":"Lando Gym Jacket-XL-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

                  The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                  \n

                  • Gray polyester/spandex full zip jacket with orange lining.
                  • Right pocket device storage.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lando-gym-jacket-xl-blue-336","links":{},"stock":{"item_id":336,"product_id":336,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xl-blue-336.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"321","_score":1,"_source":{"id":321,"sku":"MJ07-XL-Red","name":"Orion Two-Tone Fitted Jacket-XL-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

                  While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                  \n

                  • Red full zip fleece with gray insets.
                  • Double-knit construction.
                  • Full athletic cut.
                  • Set in sleeves.
                  • Front pouch pocket.

                  ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"orion-two-tone-fitted-jacket-xl-red-321","links":{},"stock":{"item_id":321,"product_id":321,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xl-red-321.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"301","_score":1,"_source":{"id":301,"sku":"MJ04-L-Black","name":"Kenobi Trail Jacket-L-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

                  Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                  \n

                  • Black 1/4 zip pullover with royal zipper.
                  • Adjustable hood and sleeve cuffs.
                  • Machine wash/air dry.

                  ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"kenobi-trail-jacket-l-black-301","links":{},"stock":{"item_id":301,"product_id":301,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-l-black-301.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"330","_score":1,"_source":{"id":330,"sku":"MJ08-M-Blue","name":"Lando Gym Jacket-M-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

                  The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                  \n

                  • Gray polyester/spandex full zip jacket with orange lining.
                  • Right pocket device storage.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lando-gym-jacket-m-blue-330","links":{},"stock":{"item_id":330,"product_id":330,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-m-blue-330.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"333","_score":1,"_source":{"id":333,"sku":"MJ08-L-Blue","name":"Lando Gym Jacket-L-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

                  The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                  \n

                  • Gray polyester/spandex full zip jacket with orange lining.
                  • Right pocket device storage.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lando-gym-jacket-l-blue-333","links":{},"stock":{"item_id":333,"product_id":333,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-l-blue-333.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"352","_score":1,"_source":{"id":352,"sku":"MJ09-XL-Blue","name":"Taurus Elements Shell-XL-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

                  What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                  \n

                  • Yellow 1/4 zip pullover.
                  • Two chest pockets.
                  • Standard fit.
                  • Waterproof, breathable, seam sealed.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"taurus-elements-shell-xl-blue-352","links":{},"stock":{"item_id":352,"product_id":352,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xl-blue-352.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"377","_score":1,"_source":{"id":377,"sku":"MJ11-S-Red","name":"Typhon Performance Fleece-lined Jacket-S-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                  \n

                  • Black full-zip flight jacket.
                  • Cocona® wicking fiber.
                  • Machine wash/dry.

                  ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"typhon-performance-fleece-lined-jacket-s-red-377","links":{},"stock":{"item_id":377,"product_id":377,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-s-red-377.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"375","_score":1,"_source":{"id":375,"sku":"MJ11-S-Black","name":"Typhon Performance Fleece-lined Jacket-S-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                  \n

                  • Black full-zip flight jacket.
                  • Cocona® wicking fiber.
                  • Machine wash/dry.

                  ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"typhon-performance-fleece-lined-jacket-s-black-375","links":{},"stock":{"item_id":375,"product_id":375,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-s-black-375.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"379","_score":1,"_source":{"id":379,"sku":"MJ11-M-Green","name":"Typhon Performance Fleece-lined Jacket-M-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                  \n

                  • Black full-zip flight jacket.
                  • Cocona® wicking fiber.
                  • Machine wash/dry.

                  ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"typhon-performance-fleece-lined-jacket-m-green-379","links":{},"stock":{"item_id":379,"product_id":379,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-m-green-379.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"306","_score":1,"_source":{"id":306,"sku":"MJ04-XL-Purple","name":"Kenobi Trail Jacket-XL-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

                  Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                  \n

                  • Black 1/4 zip pullover with royal zipper.
                  • Adjustable hood and sleeve cuffs.
                  • Machine wash/air dry.

                  ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"kenobi-trail-jacket-xl-purple-306","links":{},"stock":{"item_id":306,"product_id":306,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xl-purple-306.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"304","_score":1,"_source":{"id":304,"sku":"MJ04-XL-Black","name":"Kenobi Trail Jacket-XL-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

                  Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                  \n

                  • Black 1/4 zip pullover with royal zipper.
                  • Adjustable hood and sleeve cuffs.
                  • Machine wash/air dry.

                  ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"kenobi-trail-jacket-xl-black-304","links":{},"stock":{"item_id":304,"product_id":304,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xl-black-304.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"305","_score":1,"_source":{"id":305,"sku":"MJ04-XL-Blue","name":"Kenobi Trail Jacket-XL-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

                  Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                  \n

                  • Black 1/4 zip pullover with royal zipper.
                  • Adjustable hood and sleeve cuffs.
                  • Machine wash/air dry.

                  ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"kenobi-trail-jacket-xl-blue-305","links":{},"stock":{"item_id":305,"product_id":305,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xl-blue-305.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"299","_score":1,"_source":{"id":299,"sku":"MJ04-M-Blue","name":"Kenobi Trail Jacket-M-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

                  Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                  \n

                  • Black 1/4 zip pullover with royal zipper.
                  • Adjustable hood and sleeve cuffs.
                  • Machine wash/air dry.

                  ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"kenobi-trail-jacket-m-blue-299","links":{},"stock":{"item_id":299,"product_id":299,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-m-blue-299.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"342","_score":1,"_source":{"id":342,"sku":"MJ09-XS-Yellow","name":"Taurus Elements Shell-XS-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

                  What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                  \n

                  • Yellow 1/4 zip pullover.
                  • Two chest pockets.
                  • Standard fit.
                  • Waterproof, breathable, seam sealed.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"taurus-elements-shell-xs-yellow-342","links":{},"stock":{"item_id":342,"product_id":342,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xs-yellow-342.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"355","_score":1,"_source":{"id":355,"sku":"MJ09","name":"Taurus Elements Shell","attribute_set_id":9,"price":65,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":65,"description":"

                  What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                  \n

                  • Yellow 1/4 zip pullover.
                  • Two chest pockets.
                  • Standard fit.
                  • Waterproof, breathable, seam sealed.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"taurus-elements-shell","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,149,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[118,120,123,126,128],"pattern":"197","climate":[204,206,207,208,210],"slug":"taurus-elements-shell-355","links":{},"stock":{"item_id":355,"product_id":355,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ09-XS-Blue","id":340,"status":1,"name":"Taurus Elements Shell-XS-Blue","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"50","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","url_key":"taurus-elements-shell-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ09-XS-White","id":341,"status":1,"name":"Taurus Elements Shell-XS-White","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"59","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","url_key":"taurus-elements-shell-xs-white","msrp_display_actual_price_type":"0"},{"sku":"MJ09-XS-Yellow","id":342,"status":1,"name":"Taurus Elements Shell-XS-Yellow","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"60","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","url_key":"taurus-elements-shell-xs-yellow","msrp_display_actual_price_type":"0"},{"sku":"MJ09-S-Blue","id":343,"status":1,"name":"Taurus Elements Shell-S-Blue","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"50","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","url_key":"taurus-elements-shell-s-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ09-S-White","id":344,"status":1,"name":"Taurus Elements Shell-S-White","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"59","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","url_key":"taurus-elements-shell-s-white","msrp_display_actual_price_type":"0"},{"sku":"MJ09-S-Yellow","id":345,"status":1,"name":"Taurus Elements Shell-S-Yellow","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"60","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","url_key":"taurus-elements-shell-s-yellow","msrp_display_actual_price_type":"0"},{"sku":"MJ09-M-Blue","id":346,"status":1,"name":"Taurus Elements Shell-M-Blue","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"50","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","url_key":"taurus-elements-shell-m-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ09-M-White","id":347,"status":1,"name":"Taurus Elements Shell-M-White","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"59","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","url_key":"taurus-elements-shell-m-white","msrp_display_actual_price_type":"0"},{"sku":"MJ09-M-Yellow","id":348,"status":1,"name":"Taurus Elements Shell-M-Yellow","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"60","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","url_key":"taurus-elements-shell-m-yellow","msrp_display_actual_price_type":"0"},{"sku":"MJ09-L-Blue","id":349,"status":1,"name":"Taurus Elements Shell-L-Blue","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"50","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","url_key":"taurus-elements-shell-l-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ09-L-White","id":350,"status":1,"name":"Taurus Elements Shell-L-White","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"59","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","url_key":"taurus-elements-shell-l-white","msrp_display_actual_price_type":"0"},{"sku":"MJ09-L-Yellow","id":351,"status":1,"name":"Taurus Elements Shell-L-Yellow","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"60","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","url_key":"taurus-elements-shell-l-yellow","msrp_display_actual_price_type":"0","final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001},{"sku":"MJ09-XL-Blue","id":352,"status":1,"name":"Taurus Elements Shell-XL-Blue","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"50","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","url_key":"taurus-elements-shell-xl-blue","msrp_display_actual_price_type":"0","final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001},{"sku":"MJ09-XL-White","id":353,"status":1,"name":"Taurus Elements Shell-XL-White","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"59","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","url_key":"taurus-elements-shell-xl-white","msrp_display_actual_price_type":"0","final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001},{"sku":"MJ09-XL-Yellow","id":354,"status":1,"name":"Taurus Elements Shell-XL-Yellow","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"60","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","url_key":"taurus-elements-shell-xl-yellow","msrp_display_actual_price_type":"0","final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001}],"configurable_options":[{"id":39,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":355,"attribute_code":"color"},{"id":38,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":355,"attribute_code":"size"}],"color_options":[50,59,60],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-355.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"390","_score":1,"_source":{"id":390,"sku":"MJ06-XS-Purple","name":"Jupiter All-Weather Trainer -XS-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

                  Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                  \n

                  • Relaxed fit.
                  • Hand pockets.
                  • Machine wash/dry.
                  • Reflective safety trim.

                  ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jupiter-all-weather-trainer-xs-purple-390","links":{},"stock":{"item_id":390,"product_id":390,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xs-purple-390.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"435","_score":1,"_source":{"id":435,"sku":"MJ12","name":"Proteus Fitness Jackshirt","attribute_set_id":9,"price":45,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":45,"description":"

                  Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                  \n

                  • 1/4 zip. Stand-up collar.
                  • Machine wash/dry.
                  • Quilted inner layer.

                  ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"proteus-fitness-jackshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,145,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[117,122,125,128],"pattern":"197","climate":[202,204,205,208],"slug":"proteus-fitness-jackshirt-435","links":{},"stock":{"item_id":435,"product_id":435,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ12-XS-Black","id":420,"status":1,"name":"Proteus Fitness Jackshirt-XS-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"49","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","url_key":"proteus-fitness-jackshirt-xs-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-XS-Blue","id":421,"status":1,"name":"Proteus Fitness Jackshirt-XS-Blue","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"50","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","url_key":"proteus-fitness-jackshirt-xs-blue","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-XS-Orange","id":422,"status":1,"name":"Proteus Fitness Jackshirt-XS-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"56","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","url_key":"proteus-fitness-jackshirt-xs-orange","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-S-Black","id":423,"status":1,"name":"Proteus Fitness Jackshirt-S-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"49","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","url_key":"proteus-fitness-jackshirt-s-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-S-Blue","id":424,"status":1,"name":"Proteus Fitness Jackshirt-S-Blue","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"50","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","url_key":"proteus-fitness-jackshirt-s-blue","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-S-Orange","id":425,"status":1,"name":"Proteus Fitness Jackshirt-S-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"56","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","url_key":"proteus-fitness-jackshirt-s-orange","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-M-Black","id":426,"status":1,"name":"Proteus Fitness Jackshirt-M-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"49","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","url_key":"proteus-fitness-jackshirt-m-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-M-Blue","id":427,"status":1,"name":"Proteus Fitness Jackshirt-M-Blue","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"50","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","url_key":"proteus-fitness-jackshirt-m-blue","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-M-Orange","id":428,"status":1,"name":"Proteus Fitness Jackshirt-M-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"56","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","url_key":"proteus-fitness-jackshirt-m-orange","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-L-Black","id":429,"status":1,"name":"Proteus Fitness Jackshirt-L-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"49","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","url_key":"proteus-fitness-jackshirt-l-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-L-Blue","id":430,"status":1,"name":"Proteus Fitness Jackshirt-L-Blue","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"50","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","url_key":"proteus-fitness-jackshirt-l-blue","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-L-Orange","id":431,"status":1,"name":"Proteus Fitness Jackshirt-L-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"56","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","url_key":"proteus-fitness-jackshirt-l-orange","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-XL-Black","id":432,"status":1,"name":"Proteus Fitness Jackshirt-XL-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"49","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","url_key":"proteus-fitness-jackshirt-xl-black","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-XL-Blue","id":433,"status":1,"name":"Proteus Fitness Jackshirt-XL-Blue","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"50","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","url_key":"proteus-fitness-jackshirt-xl-blue","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001},{"sku":"MJ12-XL-Orange","id":434,"status":1,"name":"Proteus Fitness Jackshirt-XL-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"56","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","url_key":"proteus-fitness-jackshirt-xl-orange","msrp_display_actual_price_type":"0","final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001}],"configurable_options":[{"id":49,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":435,"attribute_code":"color"},{"id":48,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":435,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-435.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"456","_score":1,"_source":{"id":456,"sku":"MS05-S-Blue","name":"Helios EverCool™ Tee-S-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                  \n

                  • Teal quick dry tee.
                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helios-evercool-and-trade-tee-s-blue-456","links":{},"stock":{"item_id":456,"product_id":456,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-s-blue-456.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"455","_score":1,"_source":{"id":455,"sku":"MS05-S-Black","name":"Helios EverCool™ Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                  \n

                  • Teal quick dry tee.
                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helios-evercool-and-trade-tee-s-black-455","links":{},"stock":{"item_id":455,"product_id":455,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-s-black-455.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"462","_score":1,"_source":{"id":462,"sku":"MS05-L-Blue","name":"Helios EverCool™ Tee-L-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                  \n

                  • Teal quick dry tee.
                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helios-evercool-and-trade-tee-l-blue-462","links":{},"stock":{"item_id":462,"product_id":462,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-l-blue-462.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"466","_score":1,"_source":{"id":466,"sku":"MS05-XL-Purple","name":"Helios EverCool™ Tee-XL-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                  \n

                  • Teal quick dry tee.
                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helios-evercool-and-trade-tee-xl-purple-466","links":{},"stock":{"item_id":466,"product_id":466,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xl-purple-466.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"484","_score":1,"_source":{"id":484,"sku":"MS11-XS-Blue","name":"Atomic Endurance Running Tee (V-neck)-XS-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                  \n

                  • Lime heathered v-neck tee.
                  • Ultra-lightweight.
                  • Moisture-wicking Cocona® fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-v-neck-xs-blue-484","links":{},"stock":{"item_id":484,"product_id":484,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xs-blue-484.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"477","_score":1,"_source":{"id":477,"sku":"MS09-L-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-L-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                  \n

                  • Royal polyester tee with black accents.
                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-crew-neck-l-black-477","links":{},"stock":{"item_id":477,"product_id":477,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-l-black-477.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"465","_score":1,"_source":{"id":465,"sku":"MS05-XL-Blue","name":"Helios EverCool™ Tee-XL-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                  \n

                  • Teal quick dry tee.
                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helios-evercool-and-trade-tee-xl-blue-465","links":{},"stock":{"item_id":465,"product_id":465,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xl-blue-465.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"538","_score":1,"_source":{"id":538,"sku":"MS06-M-Blue","name":"Zoltan Gym Tee-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                  \n

                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoltan-gym-tee-m-blue-538","links":{},"stock":{"item_id":538,"product_id":538,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-m-blue-538.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"525","_score":1,"_source":{"id":525,"sku":"MS03-L-Gray","name":"Balboa Persistence Tee-L-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                  \n

                  • Crew neckline.
                  • Semi-fitted.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"balboa-persistence-tee-l-gray-525","links":{},"stock":{"item_id":525,"product_id":525,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-l-gray-525.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"540","_score":1,"_source":{"id":540,"sku":"MS06-M-Yellow","name":"Zoltan Gym Tee-M-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                  \n

                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoltan-gym-tee-m-yellow-540","links":{},"stock":{"item_id":540,"product_id":540,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-m-yellow-540.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"546","_score":1,"_source":{"id":546,"sku":"MS06-XL-Yellow","name":"Zoltan Gym Tee-XL-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                  \n

                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoltan-gym-tee-xl-yellow-546","links":{},"stock":{"item_id":546,"product_id":546,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xl-yellow-546.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"544","_score":1,"_source":{"id":544,"sku":"MS06-XL-Blue","name":"Zoltan Gym Tee-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                  \n

                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoltan-gym-tee-xl-blue-544","links":{},"stock":{"item_id":544,"product_id":544,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xl-blue-544.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"548","_score":1,"_source":{"id":548,"sku":"MS01-XS-Black","name":"Aero Daily Fitness Tee-XS-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                  \n

                  Relaxed fit.
                  Short-Sleeve.
                  Machine wash/dry.

                  ","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"aero-daily-fitness-tee-xs-black-548","links":{},"stock":{"item_id":548,"product_id":548,"stock_id":1,"qty":70,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xs-black-548.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"549","_score":1,"_source":{"id":549,"sku":"MS01-XS-Brown","name":"Aero Daily Fitness Tee-XS-Brown","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                  \n

                  Relaxed fit.
                  Short-Sleeve.
                  Machine wash/dry.

                  ","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xs-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"aero-daily-fitness-tee-xs-brown-549","links":{},"stock":{"item_id":549,"product_id":549,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms01-brown_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xs-brown-549.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"404","_score":1,"_source":{"id":404,"sku":"MJ03-XS-Black","name":"Montana Wind Jacket-XS-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                  Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                  \n

                  Adjustable hood.
                  Split pocket.
                  Thumb holes.
                  Machine wash/hang to dry.

                  ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"montana-wind-jacket-xs-black-404","links":{},"stock":{"item_id":404,"product_id":404,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xs-black-404.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"414","_score":1,"_source":{"id":414,"sku":"MJ03-L-Green","name":"Montana Wind Jacket-L-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                  Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                  \n

                  Adjustable hood.
                  Split pocket.
                  Thumb holes.
                  Machine wash/hang to dry.

                  ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"montana-wind-jacket-l-green-414","links":{},"stock":{"item_id":414,"product_id":414,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-l-green-414.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"424","_score":1,"_source":{"id":424,"sku":"MJ12-S-Blue","name":"Proteus Fitness Jackshirt-S-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                  \n

                  • 1/4 zip. Stand-up collar.
                  • Machine wash/dry.
                  • Quilted inner layer.

                  ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"proteus-fitness-jackshirt-s-blue-424","links":{},"stock":{"item_id":424,"product_id":424,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-s-blue-424.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"418","_score":1,"_source":{"id":418,"sku":"MJ03-XL-Red","name":"Montana Wind Jacket-XL-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                  Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                  \n

                  Adjustable hood.
                  Split pocket.
                  Thumb holes.
                  Machine wash/hang to dry.

                  ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"montana-wind-jacket-xl-red-418","links":{},"stock":{"item_id":418,"product_id":418,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xl-red-418.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"421","_score":1,"_source":{"id":421,"sku":"MJ12-XS-Blue","name":"Proteus Fitness Jackshirt-XS-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                  \n

                  • 1/4 zip. Stand-up collar.
                  • Machine wash/dry.
                  • Quilted inner layer.

                  ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"proteus-fitness-jackshirt-xs-blue-421","links":{},"stock":{"item_id":421,"product_id":421,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xs-blue-421.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"416","_score":1,"_source":{"id":416,"sku":"MJ03-XL-Black","name":"Montana Wind Jacket-XL-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                  Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                  \n

                  Adjustable hood.
                  Split pocket.
                  Thumb holes.
                  Machine wash/hang to dry.

                  ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"montana-wind-jacket-xl-black-416","links":{},"stock":{"item_id":416,"product_id":416,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xl-black-416.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"422","_score":1,"_source":{"id":422,"sku":"MJ12-XS-Orange","name":"Proteus Fitness Jackshirt-XS-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                  \n

                  • 1/4 zip. Stand-up collar.
                  • Machine wash/dry.
                  • Quilted inner layer.

                  ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"proteus-fitness-jackshirt-xs-orange-422","links":{},"stock":{"item_id":422,"product_id":422,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xs-orange-422.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"410","_score":1,"_source":{"id":410,"sku":"MJ03-M-Black","name":"Montana Wind Jacket-M-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                  Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                  \n

                  Adjustable hood.
                  Split pocket.
                  Thumb holes.
                  Machine wash/hang to dry.

                  ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"montana-wind-jacket-m-black-410","links":{},"stock":{"item_id":410,"product_id":410,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-m-black-410.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"436","_score":1,"_source":{"id":436,"sku":"MS04-XS-Black","name":"Gobi HeatTec® Tee-XS-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                  \n

                  • Orange micropolyester shirt.
                  • HeatTec® wicking fabric.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gobi-heattec-and-reg-tee-xs-black-436","links":{},"stock":{"item_id":436,"product_id":436,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xs-black-436.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"444","_score":1,"_source":{"id":444,"sku":"MS04-M-Red","name":"Gobi HeatTec® Tee-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                  \n

                  • Orange micropolyester shirt.
                  • HeatTec® wicking fabric.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gobi-heattec-and-reg-tee-m-red-444","links":{},"stock":{"item_id":444,"product_id":444,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-m-red-444.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"447","_score":1,"_source":{"id":447,"sku":"MS04-L-Red","name":"Gobi HeatTec® Tee-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                  \n

                  • Orange micropolyester shirt.
                  • HeatTec® wicking fabric.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gobi-heattec-and-reg-tee-l-red-447","links":{},"stock":{"item_id":447,"product_id":447,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-l-red-447.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"420","_score":1,"_source":{"id":420,"sku":"MJ12-XS-Black","name":"Proteus Fitness Jackshirt-XS-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                  \n

                  • 1/4 zip. Stand-up collar.
                  • Machine wash/dry.
                  • Quilted inner layer.

                  ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"proteus-fitness-jackshirt-xs-black-420","links":{},"stock":{"item_id":420,"product_id":420,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xs-black-420.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"433","_score":1,"_source":{"id":433,"sku":"MJ12-XL-Blue","name":"Proteus Fitness Jackshirt-XL-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                  \n

                  • 1/4 zip. Stand-up collar.
                  • Machine wash/dry.
                  • Quilted inner layer.

                  ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"proteus-fitness-jackshirt-xl-blue-433","links":{},"stock":{"item_id":433,"product_id":433,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xl-blue-433.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"509","_score":1,"_source":{"id":509,"sku":"MS12-L-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-L-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                  \n

                  • Red polyester tee.
                  • Crew neckline.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-crew-neck-l-black-509","links":{},"stock":{"item_id":509,"product_id":509,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-l-black-509.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"503","_score":1,"_source":{"id":503,"sku":"MS12-S-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-S-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                  \n

                  • Red polyester tee.
                  • Crew neckline.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-crew-neck-s-black-503","links":{},"stock":{"item_id":503,"product_id":503,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-s-black-503.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"516","_score":1,"_source":{"id":516,"sku":"MS03-XS-Gray","name":"Balboa Persistence Tee-XS-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                  \n

                  • Crew neckline.
                  • Semi-fitted.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"balboa-persistence-tee-xs-gray-516","links":{},"stock":{"item_id":516,"product_id":516,"stock_id":1,"qty":36,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xs-gray-516.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"511","_score":1,"_source":{"id":511,"sku":"MS12-L-Red","name":"Atomic Endurance Running Tee (Crew-Neck)-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                  \n

                  • Red polyester tee.
                  • Crew neckline.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-crew-neck-l-red-511","links":{},"stock":{"item_id":511,"product_id":511,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-l-red-511.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"532","_score":1,"_source":{"id":532,"sku":"MS06-XS-Blue","name":"Zoltan Gym Tee-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                  \n

                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoltan-gym-tee-xs-blue-532","links":{},"stock":{"item_id":532,"product_id":532,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xs-blue-532.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"527","_score":1,"_source":{"id":527,"sku":"MS03-L-Orange","name":"Balboa Persistence Tee-L-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                  \n

                  • Crew neckline.
                  • Semi-fitted.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"balboa-persistence-tee-l-orange-527","links":{},"stock":{"item_id":527,"product_id":527,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-l-orange-527.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"496","_score":1,"_source":{"id":496,"sku":"MS11-XL-Blue","name":"Atomic Endurance Running Tee (V-neck)-XL-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                  \n

                  • Lime heathered v-neck tee.
                  • Ultra-lightweight.
                  • Moisture-wicking Cocona® fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-v-neck-xl-blue-496","links":{},"stock":{"item_id":496,"product_id":496,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xl-blue-496.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"481","_score":1,"_source":{"id":481,"sku":"MS09-XL-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                  \n

                  • Royal polyester tee with black accents.
                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-crew-neck-xl-blue-481","links":{},"stock":{"item_id":481,"product_id":481,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xl-blue-481.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"454","_score":1,"_source":{"id":454,"sku":"MS05-XS-Purple","name":"Helios EverCool™ Tee-XS-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                  \n

                  • Teal quick dry tee.
                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helios-evercool-and-trade-tee-xs-purple-454","links":{},"stock":{"item_id":454,"product_id":454,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xs-purple-454.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"500","_score":1,"_source":{"id":500,"sku":"MS12-XS-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                  \n

                  • Red polyester tee.
                  • Crew neckline.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-crew-neck-xs-black-500","links":{},"stock":{"item_id":500,"product_id":500,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xs-black-500.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"553","_score":1,"_source":{"id":553,"sku":"MS01-S-Yellow","name":"Aero Daily Fitness Tee-S-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                  \n

                  Relaxed fit.
                  Short-Sleeve.
                  Machine wash/dry.

                  ","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"aero-daily-fitness-tee-s-yellow-553","links":{},"stock":{"item_id":553,"product_id":553,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-s-yellow-553.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"638","_score":1,"_source":{"id":638,"sku":"MT01-L-Orange","name":"Erikssen CoolTech™ Fitness Tank-L-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                  \n

                  • Red performance tank.
                  • Slight scoop neckline.
                  • Reflectivity.
                  • Machine wash/dry.

                  ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erikssen-cooltech-and-trade-fitness-tank-l-orange-638","links":{},"stock":{"item_id":638,"product_id":638,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-l-orange-638.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"648","_score":1,"_source":{"id":648,"sku":"MT02-S-Red","name":"Tristan Endurance Tank-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                  \n

                  • White performance tank.
                  • Stylish contrast stitching.
                  • Relaxed fit.
                  • Ribbed crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tristan-endurance-tank-s-red-648","links":{},"stock":{"item_id":648,"product_id":648,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-s-red-648.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"649","_score":1,"_source":{"id":649,"sku":"MT02-S-White","name":"Tristan Endurance Tank-S-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                  \n

                  • White performance tank.
                  • Stylish contrast stitching.
                  • Relaxed fit.
                  • Ribbed crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tristan-endurance-tank-s-white-649","links":{},"stock":{"item_id":649,"product_id":649,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-s-white-649.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"627","_score":1,"_source":{"id":627,"sku":"MS08","name":"Strike Endurance Tee","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":39,"description":"

                  While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                  \n

                  • Loose fit.
                  • Ribbed cuffs/collar.
                  • Machine wash/dry.

                  ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"strike-endurance-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[202,204,205,209],"slug":"strike-endurance-tee-627","links":{},"stock":{"item_id":627,"product_id":627,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS08-XS-Black","id":612,"status":1,"name":"Strike Endurance Tee-XS-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","url_key":"strike-endurance-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MS08-XS-Blue","id":613,"status":1,"name":"Strike Endurance Tee-XS-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","url_key":"strike-endurance-tee-xs-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-XS-Red","id":614,"status":1,"name":"Strike Endurance Tee-XS-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"58","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","url_key":"strike-endurance-tee-xs-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-S-Black","id":615,"status":1,"name":"Strike Endurance Tee-S-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","url_key":"strike-endurance-tee-s-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-S-Blue","id":616,"status":1,"name":"Strike Endurance Tee-S-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","url_key":"strike-endurance-tee-s-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-S-Red","id":617,"status":1,"name":"Strike Endurance Tee-S-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"58","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","url_key":"strike-endurance-tee-s-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-M-Black","id":618,"status":1,"name":"Strike Endurance Tee-M-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","url_key":"strike-endurance-tee-m-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-M-Blue","id":619,"status":1,"name":"Strike Endurance Tee-M-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","url_key":"strike-endurance-tee-m-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-M-Red","id":620,"status":1,"name":"Strike Endurance Tee-M-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"58","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","url_key":"strike-endurance-tee-m-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-L-Black","id":621,"status":1,"name":"Strike Endurance Tee-L-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","url_key":"strike-endurance-tee-l-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-L-Blue","id":622,"status":1,"name":"Strike Endurance Tee-L-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","url_key":"strike-endurance-tee-l-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-L-Red","id":623,"status":1,"name":"Strike Endurance Tee-L-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"58","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","url_key":"strike-endurance-tee-l-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-XL-Black","id":624,"status":1,"name":"Strike Endurance Tee-XL-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","url_key":"strike-endurance-tee-xl-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-XL-Blue","id":625,"status":1,"name":"Strike Endurance Tee-XL-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","url_key":"strike-endurance-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"MS08-XL-Red","id":626,"status":1,"name":"Strike Endurance Tee-XL-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"58","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","url_key":"strike-endurance-tee-xl-red","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001}],"configurable_options":[{"id":73,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":627,"attribute_code":"color"},{"id":72,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":627,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-627.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"598","_score":1,"_source":{"id":598,"sku":"MS07-XS-White","name":"Deion Long-Sleeve EverCool™ Tee-XS-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                  \n

                  • Fitted.
                  • Contrast inner neck tape.
                  • Machine wash/dry.

                  ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"deion-long-sleeve-evercool-and-trade-tee-xs-white-598","links":{},"stock":{"item_id":598,"product_id":598,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xs-white-598.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"563","_score":1,"_source":{"id":563,"sku":"MS01","name":"Aero Daily Fitness Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":24,"description":"

                  Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                  \n

                  Relaxed fit.
                  Short-Sleeve.
                  Machine wash/dry.

                  ","image":"/m/s/ms01-blue_main.jpg","small_image":"/m/s/ms01-blue_main.jpg","thumbnail":"/m/s/ms01-blue_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"aero-daily-fitness-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"aero-daily-fitness-tee-563","links":{},"stock":{"item_id":563,"product_id":563,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS01-XS-Black","id":548,"status":1,"name":"Aero Daily Fitness Tee-XS-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","url_key":"aero-daily-fitness-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MS01-XS-Brown","id":549,"status":1,"name":"Aero Daily Fitness Tee-XS-Brown","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"51","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","url_key":"aero-daily-fitness-tee-xs-brown","msrp_display_actual_price_type":"0"},{"sku":"MS01-XS-Yellow","id":550,"status":1,"name":"Aero Daily Fitness Tee-XS-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"60","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","url_key":"aero-daily-fitness-tee-xs-yellow","msrp_display_actual_price_type":"0"},{"sku":"MS01-S-Black","id":551,"status":1,"name":"Aero Daily Fitness Tee-S-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","url_key":"aero-daily-fitness-tee-s-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS01-S-Brown","id":552,"status":1,"name":"Aero Daily Fitness Tee-S-Brown","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"51","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","url_key":"aero-daily-fitness-tee-s-brown","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS01-S-Yellow","id":553,"status":1,"name":"Aero Daily Fitness Tee-S-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"60","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","url_key":"aero-daily-fitness-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS01-M-Black","id":554,"status":1,"name":"Aero Daily Fitness Tee-M-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","url_key":"aero-daily-fitness-tee-m-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS01-M-Brown","id":555,"status":1,"name":"Aero Daily Fitness Tee-M-Brown","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"51","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","url_key":"aero-daily-fitness-tee-m-brown","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS01-M-Yellow","id":556,"status":1,"name":"Aero Daily Fitness Tee-M-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"60","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","url_key":"aero-daily-fitness-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS01-L-Black","id":557,"status":1,"name":"Aero Daily Fitness Tee-L-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","url_key":"aero-daily-fitness-tee-l-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS01-L-Brown","id":558,"status":1,"name":"Aero Daily Fitness Tee-L-Brown","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"51","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","url_key":"aero-daily-fitness-tee-l-brown","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS01-L-Yellow","id":559,"status":1,"name":"Aero Daily Fitness Tee-L-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"60","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","url_key":"aero-daily-fitness-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS01-XL-Black","id":560,"status":1,"name":"Aero Daily Fitness Tee-XL-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","url_key":"aero-daily-fitness-tee-xl-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS01-XL-Brown","id":561,"status":1,"name":"Aero Daily Fitness Tee-XL-Brown","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"51","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","url_key":"aero-daily-fitness-tee-xl-brown","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS01-XL-Yellow","id":562,"status":1,"name":"Aero Daily Fitness Tee-XL-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"60","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","url_key":"aero-daily-fitness-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001}],"configurable_options":[{"id":65,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":51,"label":"Brown"},{"value_index":60,"label":"Yellow"}],"product_id":563,"attribute_code":"color"},{"id":64,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":563,"attribute_code":"size"}],"color_options":[49,51,60],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-563.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"663","_score":1,"_source":{"id":663,"sku":"MT03-S-Blue","name":"Primo Endurance Tank-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                  \n

                  • Red heather tank with gray pocket.
                  • Chafe-resistant flatlock seams.
                  • Relaxed fit.
                  • Contrast topstitching.
                  • Machine wash/dry.

                  ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"primo-endurance-tank-s-blue-663","links":{},"stock":{"item_id":663,"product_id":663,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-s-blue-663.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"654","_score":1,"_source":{"id":654,"sku":"MT02-L-Red","name":"Tristan Endurance Tank-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                  \n

                  • White performance tank.
                  • Stylish contrast stitching.
                  • Relaxed fit.
                  • Ribbed crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tristan-endurance-tank-l-red-654","links":{},"stock":{"item_id":654,"product_id":654,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-l-red-654.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"667","_score":1,"_source":{"id":667,"sku":"MT03-M-Red","name":"Primo Endurance Tank-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                  \n

                  • Red heather tank with gray pocket.
                  • Chafe-resistant flatlock seams.
                  • Relaxed fit.
                  • Contrast topstitching.
                  • Machine wash/dry.

                  ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"primo-endurance-tank-m-red-667","links":{},"stock":{"item_id":667,"product_id":667,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-m-red-667.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"662","_score":1,"_source":{"id":662,"sku":"MT03-XS-Yellow","name":"Primo Endurance Tank-XS-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                  \n

                  • Red heather tank with gray pocket.
                  • Chafe-resistant flatlock seams.
                  • Relaxed fit.
                  • Contrast topstitching.
                  • Machine wash/dry.

                  ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"primo-endurance-tank-xs-yellow-662","links":{},"stock":{"item_id":662,"product_id":662,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xs-yellow-662.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"674","_score":1,"_source":{"id":674,"sku":"MT03-XL-Yellow","name":"Primo Endurance Tank-XL-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                  \n

                  • Red heather tank with gray pocket.
                  • Chafe-resistant flatlock seams.
                  • Relaxed fit.
                  • Contrast topstitching.
                  • Machine wash/dry.

                  ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"primo-endurance-tank-xl-yellow-674","links":{},"stock":{"item_id":674,"product_id":674,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xl-yellow-674.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"695","_score":1,"_source":{"id":695,"sku":"MT07-S-Gray","name":"Argus All-Weather Tank-S-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

                  The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

                  \n

                  • Dark gray polyester spandex tank.
                  • Reflective details for nighttime visibility.
                  • Stash pocket.
                  • Anti-chafe flatlock seams.

                  ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"argus-all-weather-tank-s-gray-695","links":{},"stock":{"item_id":695,"product_id":695,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-s-gray-695.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"689","_score":1,"_source":{"id":689,"sku":"MT06-S-Black","name":"Vulcan Weightlifting Tank-S-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

                  \n

                  • Black polyester spandex tank.
                  • 100% polyester.
                  • Freedom of movement.
                  • No-chafe seams.

                  ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"vulcan-weightlifting-tank-s-black-689","links":{},"stock":{"item_id":689,"product_id":689,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-s-black-689.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"678","_score":1,"_source":{"id":678,"sku":"MT04-M-Blue","name":"Helios Endurance Tank-M-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

                  \n

                  • Blue heather tank with gray pocket.
                  • Contrast sides and back inserts.
                  • Self-fabric binding at neck and armholes.
                  • Machine wash/dry.

                  ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helios-endurance-tank-m-blue-678","links":{},"stock":{"item_id":678,"product_id":678,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-m-blue-678.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"668","_score":1,"_source":{"id":668,"sku":"MT03-M-Yellow","name":"Primo Endurance Tank-M-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                  \n

                  • Red heather tank with gray pocket.
                  • Chafe-resistant flatlock seams.
                  • Relaxed fit.
                  • Contrast topstitching.
                  • Machine wash/dry.

                  ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"primo-endurance-tank-m-yellow-668","links":{},"stock":{"item_id":668,"product_id":668,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-m-yellow-668.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"655","_score":1,"_source":{"id":655,"sku":"MT02-L-White","name":"Tristan Endurance Tank-L-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                  \n

                  • White performance tank.
                  • Stylish contrast stitching.
                  • Relaxed fit.
                  • Ribbed crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tristan-endurance-tank-l-white-655","links":{},"stock":{"item_id":655,"product_id":655,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-l-white-655.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"677","_score":1,"_source":{"id":677,"sku":"MT04-S-Blue","name":"Helios Endurance Tank-S-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

                  \n

                  • Blue heather tank with gray pocket.
                  • Contrast sides and back inserts.
                  • Self-fabric binding at neck and armholes.
                  • Machine wash/dry.

                  ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helios-endurance-tank-s-blue-677","links":{},"stock":{"item_id":677,"product_id":677,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-s-blue-677.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"690","_score":1,"_source":{"id":690,"sku":"MT06-M-Black","name":"Vulcan Weightlifting Tank-M-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

                  \n

                  • Black polyester spandex tank.
                  • 100% polyester.
                  • Freedom of movement.
                  • No-chafe seams.

                  ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"vulcan-weightlifting-tank-m-black-690","links":{},"stock":{"item_id":690,"product_id":690,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-m-black-690.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"718","_score":1,"_source":{"id":718,"sku":"MT11-XS-Blue","name":"Atlas Fitness Tank-XS-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

                  From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

                  \n

                  • Teal scoop neck cotton tank.
                  • Triblend, soft fabric.
                  • Relaxed fit.

                  ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atlas-fitness-tank-xs-blue-718","links":{},"stock":{"item_id":718,"product_id":718,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-xs-blue-718.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"725","_score":1,"_source":{"id":725,"sku":"MT12-S-Blue","name":"Cassius Sparring Tank-S-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

                  Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

                  \n

                  • Royal crewneck cotton tank.
                  • Contrast stitching.
                  • Self fabric binding at neckline.
                  • Slim fit.
                  • 96% Merino / 4% LYCRA®.

                  ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"cassius-sparring-tank-s-blue-725","links":{},"stock":{"item_id":725,"product_id":725,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-s-blue-725.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"744","_score":1,"_source":{"id":744,"sku":"MP02-32-Gray","name":"Viktor LumaTech™ Pant-32-Gray","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001,"description":"

                  You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                  \n

                  • Dark gray polyester/spandex straight leg pants.
                  • Elastic waistband and internal drawstring.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","color":"52","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"viktor-lumatech-and-trade-pant-32-gray-744","links":{},"stock":{"item_id":744,"product_id":744,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-32-gray-744.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"724","_score":1,"_source":{"id":724,"sku":"MT12-XS-Blue","name":"Cassius Sparring Tank-XS-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

                  Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

                  \n

                  • Royal crewneck cotton tank.
                  • Contrast stitching.
                  • Self fabric binding at neckline.
                  • Slim fit.
                  • 96% Merino / 4% LYCRA®.

                  ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"cassius-sparring-tank-xs-blue-724","links":{},"stock":{"item_id":724,"product_id":724,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-xs-blue-724.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"720","_score":1,"_source":{"id":720,"sku":"MT11-M-Blue","name":"Atlas Fitness Tank-M-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

                  From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

                  \n

                  • Teal scoop neck cotton tank.
                  • Triblend, soft fabric.
                  • Relaxed fit.

                  ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atlas-fitness-tank-m-blue-720","links":{},"stock":{"item_id":720,"product_id":720,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-m-blue-720.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"748","_score":1,"_source":{"id":748,"sku":"MP02-33-Red","name":"Viktor LumaTech™ Pant-33-Red","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001,"description":"

                  You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                  \n

                  • Dark gray polyester/spandex straight leg pants.
                  • Elastic waistband and internal drawstring.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","color":"58","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"viktor-lumatech-and-trade-pant-33-red-748","links":{},"stock":{"item_id":748,"product_id":748,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-33-red-748.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"727","_score":1,"_source":{"id":727,"sku":"MT12-L-Blue","name":"Cassius Sparring Tank-L-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

                  Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

                  \n

                  • Royal crewneck cotton tank.
                  • Contrast stitching.
                  • Self fabric binding at neckline.
                  • Slim fit.
                  • 96% Merino / 4% LYCRA®.

                  ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"cassius-sparring-tank-l-blue-727","links":{},"stock":{"item_id":727,"product_id":727,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-l-blue-727.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"750","_score":1,"_source":{"id":750,"sku":"MP02-34-Gray","name":"Viktor LumaTech™ Pant-34-Gray","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001,"description":"

                  You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                  \n

                  • Dark gray polyester/spandex straight leg pants.
                  • Elastic waistband and internal drawstring.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","color":"52","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"viktor-lumatech-and-trade-pant-34-gray-750","links":{},"stock":{"item_id":750,"product_id":750,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-34-gray-750.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"747","_score":1,"_source":{"id":747,"sku":"MP02-33-Gray","name":"Viktor LumaTech™ Pant-33-Gray","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001,"description":"

                  You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                  \n

                  • Dark gray polyester/spandex straight leg pants.
                  • Elastic waistband and internal drawstring.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","color":"52","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"viktor-lumatech-and-trade-pant-33-gray-747","links":{},"stock":{"item_id":747,"product_id":747,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-33-gray-747.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"556","_score":1,"_source":{"id":556,"sku":"MS01-M-Yellow","name":"Aero Daily Fitness Tee-M-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                  \n

                  Relaxed fit.
                  Short-Sleeve.
                  Machine wash/dry.

                  ","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"aero-daily-fitness-tee-m-yellow-556","links":{},"stock":{"item_id":556,"product_id":556,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-m-yellow-556.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"569","_score":1,"_source":{"id":569,"sku":"MS02-S-Gray","name":"Ryker LumaTech™ Tee (V-neck)-S-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                  \n

                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-v-neck-s-gray-569","links":{},"stock":{"item_id":569,"product_id":569,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-s-gray-569.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"564","_score":1,"_source":{"id":564,"sku":"MS02-XS-Black","name":"Ryker LumaTech™ Tee (V-neck)-XS-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                  \n

                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-v-neck-xs-black-564","links":{},"stock":{"item_id":564,"product_id":564,"stock_id":1,"qty":63,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xs-black-564.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"562","_score":1,"_source":{"id":562,"sku":"MS01-XL-Yellow","name":"Aero Daily Fitness Tee-XL-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                  \n

                  Relaxed fit.
                  Short-Sleeve.
                  Machine wash/dry.

                  ","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"aero-daily-fitness-tee-xl-yellow-562","links":{},"stock":{"item_id":562,"product_id":562,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xl-yellow-562.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"561","_score":1,"_source":{"id":561,"sku":"MS01-XL-Brown","name":"Aero Daily Fitness Tee-XL-Brown","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                  \n

                  Relaxed fit.
                  Short-Sleeve.
                  Machine wash/dry.

                  ","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xl-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"aero-daily-fitness-tee-xl-brown-561","links":{},"stock":{"item_id":561,"product_id":561,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms01-brown_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xl-brown-561.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"583","_score":1,"_source":{"id":583,"sku":"MS10-S-Black","name":"Logan HeatTec® Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                  \n

                  • Semi-fitted.
                  • Crew neckline.
                  • Machine wash/tumble dry.

                  ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"logan-heattec-and-reg-tee-s-black-583","links":{},"stock":{"item_id":583,"product_id":583,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-s-black-583.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"592","_score":1,"_source":{"id":592,"sku":"MS10-XL-Black","name":"Logan HeatTec® Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                  \n

                  • Semi-fitted.
                  • Crew neckline.
                  • Machine wash/tumble dry.

                  ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"logan-heattec-and-reg-tee-xl-black-592","links":{},"stock":{"item_id":592,"product_id":592,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xl-black-592.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"707","_score":1,"_source":{"id":707,"sku":"MT09-S-Blue","name":"Sinbad Fitness Tank-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

                  \n

                  • Teal polyester tank.
                  • Premium fit tank top.
                  • Ultra lightweight.
                  • Naturally odor-resistant.

                  ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"sinbad-fitness-tank-s-blue-707","links":{},"stock":{"item_id":707,"product_id":707,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-s-blue-707.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"719","_score":1,"_source":{"id":719,"sku":"MT11-S-Blue","name":"Atlas Fitness Tank-S-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

                  From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

                  \n

                  • Teal scoop neck cotton tank.
                  • Triblend, soft fabric.
                  • Relaxed fit.

                  ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atlas-fitness-tank-s-blue-719","links":{},"stock":{"item_id":719,"product_id":719,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-s-blue-719.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"714","_score":1,"_source":{"id":714,"sku":"MT10-M-Yellow","name":"Tiberius Gym Tank-M-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

                  Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

                  \n

                  • Yellow scoop neck cotton tank.
                  • Comfortable, relaxed fit.
                  • 55% Hemp / 45% Organic Cotton.
                  • Pesticide- and herbicide-free hemp.

                  ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tiberius-gym-tank-m-yellow-714","links":{},"stock":{"item_id":714,"product_id":714,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-m-yellow-714.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"740","_score":1,"_source":{"id":740,"sku":"MP01-36-Gray","name":"Caesar Warm-Up Pant-36-Gray","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                  \n

                  • Light gray heather knit straight leg pants.
                  • Relaxed fit.
                  • Inseam: 32\".
                  • Machine wash/dry.
                  • CoolTech™ wicking fabric.

                  ","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"caesar-warm-up-pant-36-gray-740","links":{},"stock":{"item_id":740,"product_id":740,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-36-gray-740.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"620","_score":1,"_source":{"id":620,"sku":"MS08-M-Red","name":"Strike Endurance Tee-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                  \n

                  • Loose fit.
                  • Ribbed cuffs/collar.
                  • Machine wash/dry.

                  ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"strike-endurance-tee-m-red-620","links":{},"stock":{"item_id":620,"product_id":620,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-m-red-620.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"625","_score":1,"_source":{"id":625,"sku":"MS08-XL-Blue","name":"Strike Endurance Tee-XL-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                  \n

                  • Loose fit.
                  • Ribbed cuffs/collar.
                  • Machine wash/dry.

                  ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"strike-endurance-tee-xl-blue-625","links":{},"stock":{"item_id":625,"product_id":625,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xl-blue-625.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"602","_score":1,"_source":{"id":602,"sku":"MS07-M-Black","name":"Deion Long-Sleeve EverCool™ Tee-M-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                  \n

                  • Fitted.
                  • Contrast inner neck tape.
                  • Machine wash/dry.

                  ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"deion-long-sleeve-evercool-and-trade-tee-m-black-602","links":{},"stock":{"item_id":602,"product_id":602,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-m-black-602.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"616","_score":1,"_source":{"id":616,"sku":"MS08-S-Blue","name":"Strike Endurance Tee-S-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                  \n

                  • Loose fit.
                  • Ribbed cuffs/collar.
                  • Machine wash/dry.

                  ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"strike-endurance-tee-s-blue-616","links":{},"stock":{"item_id":616,"product_id":616,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-s-blue-616.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"682","_score":1,"_source":{"id":682,"sku":"MT05-XS-Blue","name":"Rocco Gym Tank-XS-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

                  \n

                  • Light blue heather gray tank.
                  • Quick-drying, moisture-wicking.
                  • 4-way stretch construction.
                  • Flatlock seams prevent chafing.
                  • Mesh at back for breathability.
                  • 100% Polyester.
                  • UPF 50 protection.

                  ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"rocco-gym-tank-xs-blue-682","links":{},"stock":{"item_id":682,"product_id":682,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-xs-blue-682.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"685","_score":1,"_source":{"id":685,"sku":"MT05-L-Blue","name":"Rocco Gym Tank-L-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

                  \n

                  • Light blue heather gray tank.
                  • Quick-drying, moisture-wicking.
                  • 4-way stretch construction.
                  • Flatlock seams prevent chafing.
                  • Mesh at back for breathability.
                  • 100% Polyester.
                  • UPF 50 protection.

                  ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"rocco-gym-tank-l-blue-685","links":{},"stock":{"item_id":685,"product_id":685,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-l-blue-685.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"609","_score":1,"_source":{"id":609,"sku":"MS07-XL-Green","name":"Deion Long-Sleeve EverCool™ Tee-XL-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                  \n

                  • Fitted.
                  • Contrast inner neck tape.
                  • Machine wash/dry.

                  ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"deion-long-sleeve-evercool-and-trade-tee-xl-green-609","links":{},"stock":{"item_id":609,"product_id":609,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xl-green-609.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"711","_score":1,"_source":{"id":711,"sku":"MT09","name":"Sinbad Fitness Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

                  Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

                  \n

                  • Teal polyester tank.
                  • Premium fit tank top.
                  • Ultra lightweight.
                  • Naturally odor-resistant.

                  ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sinbad-fitness-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"sinbad-fitness-tank-711","links":{},"stock":{"item_id":711,"product_id":711,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT09-XS-Blue","id":706,"status":1,"name":"Sinbad Fitness Tank-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"50","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","url_key":"sinbad-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT09-S-Blue","id":707,"status":1,"name":"Sinbad Fitness Tank-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"50","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","url_key":"sinbad-fitness-tank-s-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT09-M-Blue","id":708,"status":1,"name":"Sinbad Fitness Tank-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"50","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","url_key":"sinbad-fitness-tank-m-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT09-L-Blue","id":709,"status":1,"name":"Sinbad Fitness Tank-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"50","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","url_key":"sinbad-fitness-tank-l-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT09-XL-Blue","id":710,"status":1,"name":"Sinbad Fitness Tank-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"50","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","url_key":"sinbad-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":91,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"}],"product_id":711,"attribute_code":"color"},{"id":90,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":711,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-711.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"723","_score":1,"_source":{"id":723,"sku":"MT11","name":"Atlas Fitness Tank","attribute_set_id":9,"price":18,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":18,"description":"

                  From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

                  \n

                  • Teal scoop neck cotton tank.
                  • Triblend, soft fabric.
                  • Relaxed fit.

                  ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"atlas-fitness-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"atlas-fitness-tank-723","links":{},"stock":{"item_id":723,"product_id":723,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT11-XS-Blue","id":718,"status":1,"name":"Atlas Fitness Tank-XS-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"167","color":"50","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","url_key":"atlas-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001},{"sku":"MT11-S-Blue","id":719,"status":1,"name":"Atlas Fitness Tank-S-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"168","color":"50","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","url_key":"atlas-fitness-tank-s-blue","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001},{"sku":"MT11-M-Blue","id":720,"status":1,"name":"Atlas Fitness Tank-M-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"169","color":"50","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","url_key":"atlas-fitness-tank-m-blue","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001},{"sku":"MT11-L-Blue","id":721,"status":1,"name":"Atlas Fitness Tank-L-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"170","color":"50","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","url_key":"atlas-fitness-tank-l-blue","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001},{"sku":"MT11-XL-Blue","id":722,"status":1,"name":"Atlas Fitness Tank-XL-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"171","color":"50","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","url_key":"atlas-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001}],"configurable_options":[{"id":95,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"}],"product_id":723,"attribute_code":"color"},{"id":94,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":723,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-723.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"768","_score":1,"_source":{"id":768,"sku":"MP03","name":"Geo Insulated Jogging Pant","attribute_set_id":10,"price":51,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":51,"description":"

                  In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                  \n

                  • Black polyester spandex pants with zipper pockets.
                  • Reflective safety accents.
                  • Loose fit.
                  • On-seam pockets.
                  • 8\" leg zips. 32\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/p/mp03-black_main.jpg","small_image":"/m/p/mp03-black_main.jpg","thumbnail":"/m/p/mp03-black_main.jpg","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"geo-insulated-jogging-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,38,39,151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[202,204,205,210,211],"slug":"geo-insulated-jogging-pant-768","links":{},"stock":{"item_id":768,"product_id":768,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP03-32-Blue","id":756,"status":1,"name":"Geo Insulated Jogging Pant-32-Blue","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"50","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","url_key":"geo-insulated-jogging-pant-32-blue","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MP03-32-Green","id":757,"status":1,"name":"Geo Insulated Jogging Pant-32-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"53","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","url_key":"geo-insulated-jogging-pant-32-green","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MP03-32-Red","id":758,"status":1,"name":"Geo Insulated Jogging Pant-32-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"58","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","url_key":"geo-insulated-jogging-pant-32-red","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MP03-33-Blue","id":759,"status":1,"name":"Geo Insulated Jogging Pant-33-Blue","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"50","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","url_key":"geo-insulated-jogging-pant-33-blue","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MP03-33-Green","id":760,"status":1,"name":"Geo Insulated Jogging Pant-33-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"53","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","url_key":"geo-insulated-jogging-pant-33-green","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MP03-33-Red","id":761,"status":1,"name":"Geo Insulated Jogging Pant-33-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"58","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","url_key":"geo-insulated-jogging-pant-33-red","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MP03-34-Blue","id":762,"status":1,"name":"Geo Insulated Jogging Pant-34-Blue","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"50","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","url_key":"geo-insulated-jogging-pant-34-blue","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MP03-34-Green","id":763,"status":1,"name":"Geo Insulated Jogging Pant-34-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"53","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","url_key":"geo-insulated-jogging-pant-34-green","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MP03-34-Red","id":764,"status":1,"name":"Geo Insulated Jogging Pant-34-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"58","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","url_key":"geo-insulated-jogging-pant-34-red","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MP03-36-Blue","id":765,"status":1,"name":"Geo Insulated Jogging Pant-36-Blue","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"50","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","url_key":"geo-insulated-jogging-pant-36-blue","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MP03-36-Green","id":766,"status":1,"name":"Geo Insulated Jogging Pant-36-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"53","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","url_key":"geo-insulated-jogging-pant-36-green","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MP03-36-Red","id":767,"status":1,"name":"Geo Insulated Jogging Pant-36-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"58","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","url_key":"geo-insulated-jogging-pant-36-red","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001}],"configurable_options":[{"id":103,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":768,"attribute_code":"color"},{"id":102,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":768,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-768.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"809","_score":1,"_source":{"id":809,"sku":"MP07-32-Blue","name":"Thorpe Track Pant-32-Blue","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                  Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                  \n

                  • Moisture transfer properties.
                  • 7% stretch.
                  • Reflective safety trim.
                  • Elastic drawcord waist.

                  ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"thorpe-track-pant-32-blue-809","links":{},"stock":{"item_id":809,"product_id":809,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-32-blue-809.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"821","_score":1,"_source":{"id":821,"sku":"MP08-32-Blue","name":"Zeppelin Yoga Pant-32-Blue","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001,"description":"

                  Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                  \n

                  • Smooth exterior for easy over-layering.
                  • Brushed fleece interior insulates and wicks.
                  • No-roll elastic waistband with inner drawstring.
                  • Chafe-resistant flatlock seams.

                  ","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"zeppelin-yoga-pant-32-blue-821","links":{},"stock":{"item_id":821,"product_id":821,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-32-blue-821.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"824","_score":1,"_source":{"id":824,"sku":"MP08-33-Blue","name":"Zeppelin Yoga Pant-33-Blue","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001,"description":"

                  Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                  \n

                  • Smooth exterior for easy over-layering.
                  • Brushed fleece interior insulates and wicks.
                  • No-roll elastic waistband with inner drawstring.
                  • Chafe-resistant flatlock seams.

                  ","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"zeppelin-yoga-pant-33-blue-824","links":{},"stock":{"item_id":824,"product_id":824,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-33-blue-824.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"834","_score":1,"_source":{"id":834,"sku":"MP09-32-Black","name":"Livingston All-Purpose Tight-32-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                  It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                  \n

                  • Breathable stretch organic cotton/spandex.
                  • Compression fit
                  • Hidden key pocket
                  • Elastic waist with internal drawcord.

                  ","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","color":"49","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"livingston-all-purpose-tight-32-black-834","links":{},"stock":{"item_id":834,"product_id":834,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-32-black-834.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"838","_score":1,"_source":{"id":838,"sku":"MP09-33-Blue","name":"Livingston All-Purpose Tight-33-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                  It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                  \n

                  • Breathable stretch organic cotton/spandex.
                  • Compression fit
                  • Hidden key pocket
                  • Elastic waist with internal drawcord.

                  ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","color":"50","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"livingston-all-purpose-tight-33-blue-838","links":{},"stock":{"item_id":838,"product_id":838,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-33-blue-838.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"831","_score":1,"_source":{"id":831,"sku":"MP08-36-Green","name":"Zeppelin Yoga Pant-36-Green","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001,"description":"

                  Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                  \n

                  • Smooth exterior for easy over-layering.
                  • Brushed fleece interior insulates and wicks.
                  • No-roll elastic waistband with inner drawstring.
                  • Chafe-resistant flatlock seams.

                  ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"zeppelin-yoga-pant-36-green-831","links":{},"stock":{"item_id":831,"product_id":831,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-36-green-831.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"756","_score":1,"_source":{"id":756,"sku":"MP03-32-Blue","name":"Geo Insulated Jogging Pant-32-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                  \n

                  • Black polyester spandex pants with zipper pockets.
                  • Reflective safety accents.
                  • Loose fit.
                  • On-seam pockets.
                  • 8\" leg zips. 32\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"geo-insulated-jogging-pant-32-blue-756","links":{},"stock":{"item_id":756,"product_id":756,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-32-blue-756.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"762","_score":1,"_source":{"id":762,"sku":"MP03-34-Blue","name":"Geo Insulated Jogging Pant-34-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                  \n

                  • Black polyester spandex pants with zipper pockets.
                  • Reflective safety accents.
                  • Loose fit.
                  • On-seam pockets.
                  • 8\" leg zips. 32\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"geo-insulated-jogging-pant-34-blue-762","links":{},"stock":{"item_id":762,"product_id":762,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-34-blue-762.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"757","_score":1,"_source":{"id":757,"sku":"MP03-32-Green","name":"Geo Insulated Jogging Pant-32-Green","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                  \n

                  • Black polyester spandex pants with zipper pockets.
                  • Reflective safety accents.
                  • Loose fit.
                  • On-seam pockets.
                  • 8\" leg zips. 32\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"geo-insulated-jogging-pant-32-green-757","links":{},"stock":{"item_id":757,"product_id":757,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-32-green-757.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"769","_score":1,"_source":{"id":769,"sku":"MP04-32-Black","name":"Supernova Sport Pant-32-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                  \n

                  • Dark heather gray straight leg cotton pants.
                  • Relaxed fit.
                  • Internal drawstring.
                  • Machine wash/dry.

                  ","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"supernova-sport-pant-32-black-769","links":{},"stock":{"item_id":769,"product_id":769,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-32-black-769.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"779","_score":1,"_source":{"id":779,"sku":"MP04-36-Gray","name":"Supernova Sport Pant-36-Gray","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                  \n

                  • Dark heather gray straight leg cotton pants.
                  • Relaxed fit.
                  • Internal drawstring.
                  • Machine wash/dry.

                  ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"supernova-sport-pant-36-gray-779","links":{},"stock":{"item_id":779,"product_id":779,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-36-gray-779.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"788","_score":1,"_source":{"id":788,"sku":"MP05-34-Black","name":"Kratos Gym Pant-34-Black","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                  \n

                  • Navy cotton straight leg pants.
                  • Relaxed fit.
                  • 2 side-seam pockets.
                  • Internal zip pocket.
                  • Drawstring waist.
                  • Machine wash/dry.

                  ","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"kratos-gym-pant-34-black-788","links":{},"stock":{"item_id":788,"product_id":788,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-34-black-788.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"858","_score":1,"_source":{"id":858,"sku":"MP10-36-Green","name":"Orestes Yoga Pant -36-Green","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                  The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                  \n

                  • A yoga essential.
                  • Breathable stretch organic cotton/spandex.
                  • Standard Fit.

                  ","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-yoga-pant-36-green-858","links":{},"stock":{"item_id":858,"product_id":858,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-36-green-858.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"874","_score":1,"_source":{"id":874,"sku":"MP12-32-Blue","name":"Cronus Yoga Pant -32-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                  \n

                  • Drawstring waist.
                  • Loose, straight-leg fit.
                  • Lightweight cotton-recycled blend.
                  • Front pockets with stitching detail.
                  • Elastic ankle.

                  ","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","color":"50","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cronus-yoga-pant-32-blue-874","links":{},"stock":{"item_id":874,"product_id":874,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-32-blue-874.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"861","_score":1,"_source":{"id":861,"sku":"MP11-32-Brown","name":"Aether Gym Pant -32-Brown","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                  The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                  \n

                  • Pants/shorts convertible.
                  • Lightweight moisture wicking.
                  • Water repellent.
                  • Belted waist.

                  ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","color":"51","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-32-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"aether-gym-pant-32-brown-861","links":{},"stock":{"item_id":861,"product_id":861,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-32-brown-861.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"888","_score":1,"_source":{"id":888,"sku":"MSH01-32-Red","name":"Cobalt CoolTech™ Fitness Short-32-Red","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

                  It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                  \n

                  • Light blue nylon shorts.
                  • Relaxed fit.
                  • 5\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","color":"58","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cobalt-cooltech-and-trade-fitness-short-32-red-888","links":{},"stock":{"item_id":888,"product_id":888,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-32-red-888.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"881","_score":1,"_source":{"id":881,"sku":"MP12-34-Red","name":"Cronus Yoga Pant -34-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                  \n

                  • Drawstring waist.
                  • Loose, straight-leg fit.
                  • Lightweight cotton-recycled blend.
                  • Front pockets with stitching detail.
                  • Elastic ankle.

                  ","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","color":"58","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cronus-yoga-pant-34-red-881","links":{},"stock":{"item_id":881,"product_id":881,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-34-red-881.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"801","_score":1,"_source":{"id":801,"sku":"MP06-34-Gray","name":"Mithra Warmup Pant-34-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                  \n

                  • Ankle zips.
                  • Elasticized waistband with draw cord.
                  • Dual hand pockets.
                  • Reflective elements for low-light safety.

                  ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","color":"52","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"mithra-warmup-pant-34-gray-801","links":{},"stock":{"item_id":801,"product_id":801,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-34-gray-801.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"811","_score":1,"_source":{"id":811,"sku":"MP07-33-Black","name":"Thorpe Track Pant-33-Black","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                  Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                  \n

                  • Moisture transfer properties.
                  • 7% stretch.
                  • Reflective safety trim.
                  • Elastic drawcord waist.

                  ","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"thorpe-track-pant-33-black-811","links":{},"stock":{"item_id":811,"product_id":811,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-33-black-811.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"817","_score":1,"_source":{"id":817,"sku":"MP07-36-Black","name":"Thorpe Track Pant-36-Black","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                  Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                  \n

                  • Moisture transfer properties.
                  • 7% stretch.
                  • Reflective safety trim.
                  • Elastic drawcord waist.

                  ","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"thorpe-track-pant-36-black-817","links":{},"stock":{"item_id":817,"product_id":817,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-36-black-817.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"839","_score":1,"_source":{"id":839,"sku":"MP09-33-Red","name":"Livingston All-Purpose Tight-33-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                  It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                  \n

                  • Breathable stretch organic cotton/spandex.
                  • Compression fit
                  • Hidden key pocket
                  • Elastic waist with internal drawcord.

                  ","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","color":"58","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"livingston-all-purpose-tight-33-red-839","links":{},"stock":{"item_id":839,"product_id":839,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-33-red-839.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"835","_score":1,"_source":{"id":835,"sku":"MP09-32-Blue","name":"Livingston All-Purpose Tight-32-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                  It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                  \n

                  • Breathable stretch organic cotton/spandex.
                  • Compression fit
                  • Hidden key pocket
                  • Elastic waist with internal drawcord.

                  ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","color":"50","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"livingston-all-purpose-tight-32-blue-835","links":{},"stock":{"item_id":835,"product_id":835,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-32-blue-835.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"869","_score":1,"_source":{"id":869,"sku":"MP11-36-Blue","name":"Aether Gym Pant -36-Blue","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                  The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                  \n

                  • Pants/shorts convertible.
                  • Lightweight moisture wicking.
                  • Water repellent.
                  • Belted waist.

                  ","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"aether-gym-pant-36-blue-869","links":{},"stock":{"item_id":869,"product_id":869,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-36-blue-869.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"854","_score":1,"_source":{"id":854,"sku":"MP10-34-Blue","name":"Orestes Yoga Pant -34-Blue","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                  The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                  \n

                  • A yoga essential.
                  • Breathable stretch organic cotton/spandex.
                  • Standard Fit.

                  ","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-yoga-pant-34-blue-854","links":{},"stock":{"item_id":854,"product_id":854,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-34-blue-854.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"791","_score":1,"_source":{"id":791,"sku":"MP05-36-Black","name":"Kratos Gym Pant-36-Black","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                  \n

                  • Navy cotton straight leg pants.
                  • Relaxed fit.
                  • 2 side-seam pockets.
                  • Internal zip pocket.
                  • Drawstring waist.
                  • Machine wash/dry.

                  ","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"kratos-gym-pant-36-black-791","links":{},"stock":{"item_id":791,"product_id":791,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-36-black-791.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"793","_score":1,"_source":{"id":793,"sku":"MP05-36-Green","name":"Kratos Gym Pant-36-Green","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                  \n

                  • Navy cotton straight leg pants.
                  • Relaxed fit.
                  • 2 side-seam pockets.
                  • Internal zip pocket.
                  • Drawstring waist.
                  • Machine wash/dry.

                  ","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"kratos-gym-pant-36-green-793","links":{},"stock":{"item_id":793,"product_id":793,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-36-green-793.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"934","_score":1,"_source":{"id":934,"sku":"MSH05-33-Blue","name":"Hawkeye Yoga Short-33-Blue","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                  \n

                  • Dark gray shorts with red accents.
                  • 92% Organic Cotton 8% Spandex.
                  • Breathable stretch organic cotton.
                  • Medium=8.0\" (21.0cm) inseam.

                  ","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"hawkeye-yoga-short-33-blue-934","links":{},"stock":{"item_id":934,"product_id":934,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-33-blue-934.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"937","_score":1,"_source":{"id":937,"sku":"MSH05-34-Blue","name":"Hawkeye Yoga Short-34-Blue","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                  \n

                  • Dark gray shorts with red accents.
                  • 92% Organic Cotton 8% Spandex.
                  • Breathable stretch organic cotton.
                  • Medium=8.0\" (21.0cm) inseam.

                  ","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"hawkeye-yoga-short-34-blue-937","links":{},"stock":{"item_id":937,"product_id":937,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-34-blue-937.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"916","_score":1,"_source":{"id":916,"sku":"MSH03","name":"Meteor Workout Short","attribute_set_id":10,"price":32.5,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":32.5,"description":"

                  Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                  \n

                  • Royal blue shorts with light blue accents.
                  • Interior drawstring waistband.
                  • 7\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"meteor-workout-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[202,208,209],"slug":"meteor-workout-short-916","links":{},"stock":{"item_id":916,"product_id":916,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH03-32-Black","id":904,"status":1,"name":"Meteor Workout Short-32-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"49","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","url_key":"meteor-workout-short-32-black","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH03-32-Blue","id":905,"status":1,"name":"Meteor Workout Short-32-Blue","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"50","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","url_key":"meteor-workout-short-32-blue","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH03-32-Green","id":906,"status":1,"name":"Meteor Workout Short-32-Green","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"53","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","url_key":"meteor-workout-short-32-green","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH03-33-Black","id":907,"status":1,"name":"Meteor Workout Short-33-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"49","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","url_key":"meteor-workout-short-33-black","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH03-33-Blue","id":908,"status":1,"name":"Meteor Workout Short-33-Blue","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"50","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","url_key":"meteor-workout-short-33-blue","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH03-33-Green","id":909,"status":1,"name":"Meteor Workout Short-33-Green","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"53","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","url_key":"meteor-workout-short-33-green","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH03-34-Black","id":910,"status":1,"name":"Meteor Workout Short-34-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"49","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","url_key":"meteor-workout-short-34-black","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH03-34-Blue","id":911,"status":1,"name":"Meteor Workout Short-34-Blue","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"50","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","url_key":"meteor-workout-short-34-blue","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH03-34-Green","id":912,"status":1,"name":"Meteor Workout Short-34-Green","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"53","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","url_key":"meteor-workout-short-34-green","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH03-36-Black","id":913,"status":1,"name":"Meteor Workout Short-36-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"49","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","url_key":"meteor-workout-short-36-black","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH03-36-Blue","id":914,"status":1,"name":"Meteor Workout Short-36-Blue","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"50","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","url_key":"meteor-workout-short-36-blue","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH03-36-Green","id":915,"status":1,"name":"Meteor Workout Short-36-Green","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"53","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","url_key":"meteor-workout-short-36-green","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001}],"configurable_options":[{"id":127,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":916,"attribute_code":"color"},{"id":126,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":916,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-916.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"981","_score":1,"_source":{"id":981,"sku":"MSH08","name":"Orestes Fitness Short","attribute_set_id":10,"price":35,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":35,"description":"

                  You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                  \n

                  • Black shorts with dark gray accents.
                  • Elasticized waistband with interior drawstring.
                  • Ventilating mesh detailing.
                  • 100% polyester and recycled polyester.
                  • Machine wash cold, tumble dry low.

                  ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"orestes-fitness-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_bottom":[116,105],"pattern":"197","climate":[202,205,212],"slug":"orestes-fitness-short-981","links":{},"stock":{"item_id":981,"product_id":981,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH08-32-Black","id":969,"status":1,"name":"Orestes Fitness Short-32-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"176","color":"49","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","url_key":"orestes-fitness-short-32-black","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH08-32-Blue","id":970,"status":1,"name":"Orestes Fitness Short-32-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"176","color":"50","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","url_key":"orestes-fitness-short-32-blue","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH08-32-Green","id":971,"status":1,"name":"Orestes Fitness Short-32-Green","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"176","color":"53","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","url_key":"orestes-fitness-short-32-green","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH08-33-Black","id":972,"status":1,"name":"Orestes Fitness Short-33-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"177","color":"49","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","url_key":"orestes-fitness-short-33-black","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH08-33-Blue","id":973,"status":1,"name":"Orestes Fitness Short-33-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"177","color":"50","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","url_key":"orestes-fitness-short-33-blue","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH08-33-Green","id":974,"status":1,"name":"Orestes Fitness Short-33-Green","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"177","color":"53","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","url_key":"orestes-fitness-short-33-green","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH08-34-Black","id":975,"status":1,"name":"Orestes Fitness Short-34-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"178","color":"49","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","url_key":"orestes-fitness-short-34-black","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH08-34-Blue","id":976,"status":1,"name":"Orestes Fitness Short-34-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"178","color":"50","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","url_key":"orestes-fitness-short-34-blue","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH08-34-Green","id":977,"status":1,"name":"Orestes Fitness Short-34-Green","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"178","color":"53","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","url_key":"orestes-fitness-short-34-green","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH08-36-Black","id":978,"status":1,"name":"Orestes Fitness Short-36-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"179","color":"49","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","url_key":"orestes-fitness-short-36-black","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH08-36-Blue","id":979,"status":1,"name":"Orestes Fitness Short-36-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"179","color":"50","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","url_key":"orestes-fitness-short-36-blue","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH08-36-Green","id":980,"status":1,"name":"Orestes Fitness Short-36-Green","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"179","color":"53","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","url_key":"orestes-fitness-short-36-green","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001}],"configurable_options":[{"id":137,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":981,"attribute_code":"color"},{"id":136,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":981,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-981.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"872","_score":1,"_source":{"id":872,"sku":"MP11","name":"Aether Gym Pant ","attribute_set_id":10,"price":74,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":74,"description":"

                  The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                  \n

                  • Pants/shorts convertible.
                  • Lightweight moisture wicking.
                  • Water repellent.
                  • Belted waist.

                  ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"aether-gym-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,151,159],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[202,203,204,205,206,207,208,210],"slug":"aether-gym-pant-872","links":{},"stock":{"item_id":872,"product_id":872,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP11-32-Blue","id":860,"status":1,"name":"Aether Gym Pant -32-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"176","color":"50","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","url_key":"aether-gym-pant-32-blue","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MP11-32-Brown","id":861,"status":1,"name":"Aether Gym Pant -32-Brown","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"176","color":"51","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","url_key":"aether-gym-pant-32-brown","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MP11-32-Green","id":862,"status":1,"name":"Aether Gym Pant -32-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"176","color":"53","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","url_key":"aether-gym-pant-32-green","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MP11-33-Blue","id":863,"status":1,"name":"Aether Gym Pant -33-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"177","color":"50","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","url_key":"aether-gym-pant-33-blue","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MP11-33-Brown","id":864,"status":1,"name":"Aether Gym Pant -33-Brown","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"177","color":"51","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","url_key":"aether-gym-pant-33-brown","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MP11-33-Green","id":865,"status":1,"name":"Aether Gym Pant -33-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"177","color":"53","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","url_key":"aether-gym-pant-33-green","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MP11-34-Blue","id":866,"status":1,"name":"Aether Gym Pant -34-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"178","color":"50","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","url_key":"aether-gym-pant-34-blue","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MP11-34-Brown","id":867,"status":1,"name":"Aether Gym Pant -34-Brown","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"178","color":"51","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","url_key":"aether-gym-pant-34-brown","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MP11-34-Green","id":868,"status":1,"name":"Aether Gym Pant -34-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"178","color":"53","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","url_key":"aether-gym-pant-34-green","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MP11-36-Blue","id":869,"status":1,"name":"Aether Gym Pant -36-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"179","color":"50","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","url_key":"aether-gym-pant-36-blue","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MP11-36-Brown","id":870,"status":1,"name":"Aether Gym Pant -36-Brown","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"179","color":"51","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","url_key":"aether-gym-pant-36-brown","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001},{"sku":"MP11-36-Green","id":871,"status":1,"name":"Aether Gym Pant -36-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"179","color":"53","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","url_key":"aether-gym-pant-36-green","msrp_display_actual_price_type":"0","final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001}],"configurable_options":[{"id":119,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":51,"label":"Brown"},{"value_index":53,"label":"Green"}],"product_id":872,"attribute_code":"color"},{"id":118,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":872,"attribute_code":"size"}],"color_options":[50,51,53],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-872.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1023","_score":1,"_source":{"id":1023,"sku":"MSH12-32-Red","name":"Pierce Gym Short-32-Red","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

                  The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                  \n

                  • Dark red cotton shorts.
                  • 87% Supplex, 13% Lycra.
                  • Adjustable drawstring waistband.
                  • Built-in mesh brief.
                  • Machine wash cold, tumble dry low.

                  ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","color":"58","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"pierce-gym-short-32-red-1023","links":{},"stock":{"item_id":1023,"product_id":1023,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-32-red-1023.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1022","_score":1,"_source":{"id":1022,"sku":"MSH12-32-Gray","name":"Pierce Gym Short-32-Gray","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

                  The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                  \n

                  • Dark red cotton shorts.
                  • 87% Supplex, 13% Lycra.
                  • Adjustable drawstring waistband.
                  • Built-in mesh brief.
                  • Machine wash cold, tumble dry low.

                  ","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","color":"52","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"pierce-gym-short-32-gray-1022","links":{},"stock":{"item_id":1022,"product_id":1022,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-32-gray-1022.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1005","_score":1,"_source":{"id":1005,"sku":"MSH10-36-Green","name":"Sol Active Short-36-Green","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                  \n

                  • Light blue jersey shorts with mesh detail.
                  • 87% Spandex 13% Lycra.
                  • Machine wash cold, tumble dry low.
                  • Superior performance fabric.
                  • Flat-lock seams.

                  ","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","color":"53","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"sol-active-short-36-green-1005","links":{},"stock":{"item_id":1005,"product_id":1005,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-36-green-1005.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1034","_score":1,"_source":{"id":1034,"sku":"WH01-XS-Green","name":"Mona Pullover Hoodlie-XS-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                  • Light green heathered hoodie.
                  • Long-Sleeve, pullover.
                  • Long elliptical hem for extra coverage.
                  • Deep button placket for layering.
                  • Double rib design.
                  • Mid layer, mid weight.
                  • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mona-pullover-hoodlie-xs-green-1034","links":{},"stock":{"item_id":1034,"product_id":1034,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xs-green-1034.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1047","_score":1,"_source":{"id":1047,"sku":"WH01-XL-Orange","name":"Mona Pullover Hoodlie-XL-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                  • Light green heathered hoodie.
                  • Long-Sleeve, pullover.
                  • Long elliptical hem for extra coverage.
                  • Deep button placket for layering.
                  • Double rib design.
                  • Mid layer, mid weight.
                  • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mona-pullover-hoodlie-xl-orange-1047","links":{},"stock":{"item_id":1047,"product_id":1047,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xl-orange-1047.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1041","_score":1,"_source":{"id":1041,"sku":"WH01-M-Orange","name":"Mona Pullover Hoodlie-M-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                  • Light green heathered hoodie.
                  • Long-Sleeve, pullover.
                  • Long elliptical hem for extra coverage.
                  • Deep button placket for layering.
                  • Double rib design.
                  • Mid layer, mid weight.
                  • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mona-pullover-hoodlie-m-orange-1041","links":{},"stock":{"item_id":1041,"product_id":1041,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-m-orange-1041.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"967","_score":1,"_source":{"id":967,"sku":"MSH07-36-Purple","name":"Rapha Sports Short-36-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                  \n

                  • Black shorts with royal accents.
                  • Compression liner.
                  • Inseam: 8\".
                  • Machine wash/dry.

                  ","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","color":"57","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"rapha-sports-short-36-purple-967","links":{},"stock":{"item_id":967,"product_id":967,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-36-purple-967.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"964","_score":1,"_source":{"id":964,"sku":"MSH07-34-Purple","name":"Rapha Sports Short-34-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                  \n

                  • Black shorts with royal accents.
                  • Compression liner.
                  • Inseam: 8\".
                  • Machine wash/dry.

                  ","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","color":"57","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"rapha-sports-short-34-purple-964","links":{},"stock":{"item_id":964,"product_id":964,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-34-purple-964.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"959","_score":1,"_source":{"id":959,"sku":"MSH07-33-Black","name":"Rapha Sports Short-33-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                  \n

                  • Black shorts with royal accents.
                  • Compression liner.
                  • Inseam: 8\".
                  • Machine wash/dry.

                  ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","color":"49","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"rapha-sports-short-33-black-959","links":{},"stock":{"item_id":959,"product_id":959,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-33-black-959.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"956","_score":1,"_source":{"id":956,"sku":"MSH07-32-Black","name":"Rapha Sports Short-32-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                  \n

                  • Black shorts with royal accents.
                  • Compression liner.
                  • Inseam: 8\".
                  • Machine wash/dry.

                  ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","color":"49","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"rapha-sports-short-32-black-956","links":{},"stock":{"item_id":956,"product_id":956,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-32-black-956.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"912","_score":1,"_source":{"id":912,"sku":"MSH03-34-Green","name":"Meteor Workout Short-34-Green","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                  Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                  \n

                  • Royal blue shorts with light blue accents.
                  • Interior drawstring waistband.
                  • 7\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"meteor-workout-short-34-green-912","links":{},"stock":{"item_id":912,"product_id":912,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-34-green-912.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"914","_score":1,"_source":{"id":914,"sku":"MSH03-36-Blue","name":"Meteor Workout Short-36-Blue","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                  Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                  \n

                  • Royal blue shorts with light blue accents.
                  • Interior drawstring waistband.
                  • 7\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"meteor-workout-short-36-blue-914","links":{},"stock":{"item_id":914,"product_id":914,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-36-blue-914.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"938","_score":1,"_source":{"id":938,"sku":"MSH05-34-Gray","name":"Hawkeye Yoga Short-34-Gray","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                  \n

                  • Dark gray shorts with red accents.
                  • 92% Organic Cotton 8% Spandex.
                  • Breathable stretch organic cotton.
                  • Medium=8.0\" (21.0cm) inseam.

                  ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","color":"52","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"hawkeye-yoga-short-34-gray-938","links":{},"stock":{"item_id":938,"product_id":938,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-34-gray-938.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"870","_score":1,"_source":{"id":870,"sku":"MP11-36-Brown","name":"Aether Gym Pant -36-Brown","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                  The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                  \n

                  • Pants/shorts convertible.
                  • Lightweight moisture wicking.
                  • Water repellent.
                  • Belted waist.

                  ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","color":"51","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-36-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"aether-gym-pant-36-brown-870","links":{},"stock":{"item_id":870,"product_id":870,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-36-brown-870.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"862","_score":1,"_source":{"id":862,"sku":"MP11-32-Green","name":"Aether Gym Pant -32-Green","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                  The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                  \n

                  • Pants/shorts convertible.
                  • Lightweight moisture wicking.
                  • Water repellent.
                  • Belted waist.

                  ","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"aether-gym-pant-32-green-862","links":{},"stock":{"item_id":862,"product_id":862,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-32-green-862.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"876","_score":1,"_source":{"id":876,"sku":"MP12-33-Black","name":"Cronus Yoga Pant -33-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                  \n

                  • Drawstring waist.
                  • Loose, straight-leg fit.
                  • Lightweight cotton-recycled blend.
                  • Front pockets with stitching detail.
                  • Elastic ankle.

                  ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cronus-yoga-pant-33-black-876","links":{},"stock":{"item_id":876,"product_id":876,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-33-black-876.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"986","_score":1,"_source":{"id":986,"sku":"MSH09-33-Blue","name":"Troy Yoga Short-33-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                  \n

                  • Navy polyester pinstripe shorts.
                  • Woven fabric with moderate stretch.
                  • 62% cotton/34% nylon/4% spandex.
                  • LumaTech™ lining.

                  ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"troy-yoga-short-33-blue-986","links":{},"stock":{"item_id":986,"product_id":986,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-33-blue-986.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"987","_score":1,"_source":{"id":987,"sku":"MSH09-33-Green","name":"Troy Yoga Short-33-Green","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                  \n

                  • Navy polyester pinstripe shorts.
                  • Woven fabric with moderate stretch.
                  • 62% cotton/34% nylon/4% spandex.
                  • LumaTech™ lining.

                  ","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"troy-yoga-short-33-green-987","links":{},"stock":{"item_id":987,"product_id":987,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-33-green-987.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"990","_score":1,"_source":{"id":990,"sku":"MSH09-34-Green","name":"Troy Yoga Short-34-Green","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                  \n

                  • Navy polyester pinstripe shorts.
                  • Woven fabric with moderate stretch.
                  • 62% cotton/34% nylon/4% spandex.
                  • LumaTech™ lining.

                  ","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"troy-yoga-short-34-green-990","links":{},"stock":{"item_id":990,"product_id":990,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-34-green-990.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1021","_score":1,"_source":{"id":1021,"sku":"MSH12-32-Black","name":"Pierce Gym Short-32-Black","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

                  The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                  \n

                  • Dark red cotton shorts.
                  • 87% Supplex, 13% Lycra.
                  • Adjustable drawstring waistband.
                  • Built-in mesh brief.
                  • Machine wash cold, tumble dry low.

                  ","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"pierce-gym-short-32-black-1021","links":{},"stock":{"item_id":1021,"product_id":1021,"stock_id":1,"qty":25,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-32-black-1021.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1132","_score":1,"_source":{"id":1132,"sku":"WH07-XL-Gray","name":"Phoebe Zipper Sweatshirt-XL-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                  \n

                  • Gray full zip hoodie with yellow detail.
                  • Hand-warmer pockets.
                  • Zip MP3 pocket with outlet for earphones wire.
                  • Polyester/cotton.
                  • Washable.

                  ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"phoebe-zipper-sweatshirt-xl-gray-1132","links":{},"stock":{"item_id":1132,"product_id":1132,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xl-gray-1132.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1119","_score":1,"_source":{"id":1119,"sku":"WH06","name":"Daphne Full-Zip Hoodie","attribute_set_id":9,"price":59,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":59,"description":"

                  The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

                  \n

                  • Purple full zip hoodie with pink accents.
                  • Heather texture.
                  • 4-way stretch.
                  • Pre-shrunk.
                  • Hood lined in vegan Sherpa for added warmth.
                  • Ribbed hem on hood and front pouch pocket.
                  • 60% Cotton / 40% Polyester.

                  ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"daphne-full-zip-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[138,129],"pattern":"197","climate":[202,203,204,208,210,211],"slug":"daphne-full-zip-hoodie-1119","links":{},"stock":{"item_id":1119,"product_id":1119,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH06-XS-Purple","id":1114,"status":1,"name":"Daphne Full-Zip Hoodie-XS-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"57","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","url_key":"daphne-full-zip-hoodie-xs-purple","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH06-S-Purple","id":1115,"status":1,"name":"Daphne Full-Zip Hoodie-S-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"57","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","url_key":"daphne-full-zip-hoodie-s-purple","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH06-M-Purple","id":1116,"status":1,"name":"Daphne Full-Zip Hoodie-M-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"57","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","url_key":"daphne-full-zip-hoodie-m-purple","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH06-L-Purple","id":1117,"status":1,"name":"Daphne Full-Zip Hoodie-L-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"57","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","url_key":"daphne-full-zip-hoodie-l-purple","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH06-XL-Purple","id":1118,"status":1,"name":"Daphne Full-Zip Hoodie-XL-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"57","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","url_key":"daphne-full-zip-hoodie-xl-purple","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001}],"configurable_options":[{"id":157,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":57,"label":"Purple"}],"product_id":1119,"attribute_code":"color"},{"id":156,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1119,"attribute_code":"size"}],"color_options":[57],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-1119.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1113","_score":1,"_source":{"id":1113,"sku":"WH05","name":"Selene Yoga Hoodie","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":42,"description":"

                  The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                  \n

                  • Ivory heather full zip 3/4 sleeve hoodie.
                  • Zip pocket at arm for convenient storage.
                  • 24.0\" body length.
                  • 89% Polyester / 11% Spandex.

                  ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"selene-yoga-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[138,129],"pattern":"197","climate":[205,206,208],"slug":"selene-yoga-hoodie-1113","links":{},"stock":{"item_id":1113,"product_id":1113,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH05-XS-Orange","id":1098,"status":1,"name":"Selene Yoga Hoodie-XS-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"56","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","url_key":"selene-yoga-hoodie-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WH05-XS-Purple","id":1099,"status":1,"name":"Selene Yoga Hoodie-XS-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"57","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","url_key":"selene-yoga-hoodie-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WH05-XS-White","id":1100,"status":1,"name":"Selene Yoga Hoodie-XS-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"59","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","url_key":"selene-yoga-hoodie-xs-white","msrp_display_actual_price_type":"0"},{"sku":"WH05-S-Orange","id":1101,"status":1,"name":"Selene Yoga Hoodie-S-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"56","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","url_key":"selene-yoga-hoodie-s-orange","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WH05-S-Purple","id":1102,"status":1,"name":"Selene Yoga Hoodie-S-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"57","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","url_key":"selene-yoga-hoodie-s-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WH05-S-White","id":1103,"status":1,"name":"Selene Yoga Hoodie-S-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"59","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","url_key":"selene-yoga-hoodie-s-white","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WH05-M-Orange","id":1104,"status":1,"name":"Selene Yoga Hoodie-M-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"56","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","url_key":"selene-yoga-hoodie-m-orange","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WH05-M-Purple","id":1105,"status":1,"name":"Selene Yoga Hoodie-M-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"57","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","url_key":"selene-yoga-hoodie-m-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WH05-M-White","id":1106,"status":1,"name":"Selene Yoga Hoodie-M-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"59","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","url_key":"selene-yoga-hoodie-m-white","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WH05-L-Orange","id":1107,"status":1,"name":"Selene Yoga Hoodie-L-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"56","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","url_key":"selene-yoga-hoodie-l-orange","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WH05-L-Purple","id":1108,"status":1,"name":"Selene Yoga Hoodie-L-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"57","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","url_key":"selene-yoga-hoodie-l-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WH05-L-White","id":1109,"status":1,"name":"Selene Yoga Hoodie-L-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"59","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","url_key":"selene-yoga-hoodie-l-white","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WH05-XL-Orange","id":1110,"status":1,"name":"Selene Yoga Hoodie-XL-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"56","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","url_key":"selene-yoga-hoodie-xl-orange","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WH05-XL-Purple","id":1111,"status":1,"name":"Selene Yoga Hoodie-XL-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"57","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","url_key":"selene-yoga-hoodie-xl-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WH05-XL-White","id":1112,"status":1,"name":"Selene Yoga Hoodie-XL-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"59","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","url_key":"selene-yoga-hoodie-xl-white","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001}],"configurable_options":[{"id":155,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"}],"product_id":1113,"attribute_code":"color"},{"id":154,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1113,"attribute_code":"size"}],"color_options":[56,57,59],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-1113.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1151","_score":1,"_source":{"id":1151,"sku":"WH08","name":"Cassia Funnel Sweatshirt","attribute_set_id":9,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":48,"description":"

                  The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                  \n

                  • White full zip hoodie with gray detail.
                  • 65% Cotton/28% Nylon/7% Spandex.
                  • Front slash pockets.
                  • Tagless label at back neck.

                  ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cassia-funnel-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,33,151],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[138,129],"pattern":"197","climate":[202,204,205,206,208],"slug":"cassia-funnel-sweatshirt-1151","links":{},"stock":{"item_id":1151,"product_id":1151,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH08-XS-Orange","id":1136,"status":1,"name":"Cassia Funnel Sweatshirt-XS-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"167","color":"56","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","url_key":"cassia-funnel-sweatshirt-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WH08-XS-Purple","id":1137,"status":1,"name":"Cassia Funnel Sweatshirt-XS-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"167","color":"57","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","url_key":"cassia-funnel-sweatshirt-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WH08-XS-White","id":1138,"status":1,"name":"Cassia Funnel Sweatshirt-XS-White","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"167","color":"59","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","url_key":"cassia-funnel-sweatshirt-xs-white","msrp_display_actual_price_type":"0"},{"sku":"WH08-S-Orange","id":1139,"status":1,"name":"Cassia Funnel Sweatshirt-S-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"168","color":"56","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","url_key":"cassia-funnel-sweatshirt-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WH08-S-Purple","id":1140,"status":1,"name":"Cassia Funnel Sweatshirt-S-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"168","color":"57","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","url_key":"cassia-funnel-sweatshirt-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WH08-S-White","id":1141,"status":1,"name":"Cassia Funnel Sweatshirt-S-White","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"168","color":"59","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","url_key":"cassia-funnel-sweatshirt-s-white","msrp_display_actual_price_type":"0"},{"sku":"WH08-M-Orange","id":1142,"status":1,"name":"Cassia Funnel Sweatshirt-M-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"169","color":"56","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","url_key":"cassia-funnel-sweatshirt-m-orange","msrp_display_actual_price_type":"0"},{"sku":"WH08-M-Purple","id":1143,"status":1,"name":"Cassia Funnel Sweatshirt-M-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"169","color":"57","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","url_key":"cassia-funnel-sweatshirt-m-purple","msrp_display_actual_price_type":"0"},{"sku":"WH08-M-White","id":1144,"status":1,"name":"Cassia Funnel Sweatshirt-M-White","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"169","color":"59","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","url_key":"cassia-funnel-sweatshirt-m-white","msrp_display_actual_price_type":"0"},{"sku":"WH08-L-Orange","id":1145,"status":1,"name":"Cassia Funnel Sweatshirt-L-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"170","color":"56","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","url_key":"cassia-funnel-sweatshirt-l-orange","msrp_display_actual_price_type":"0"},{"sku":"WH08-L-Purple","id":1146,"status":1,"name":"Cassia Funnel Sweatshirt-L-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"170","color":"57","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","url_key":"cassia-funnel-sweatshirt-l-purple","msrp_display_actual_price_type":"0"},{"sku":"WH08-L-White","id":1147,"status":1,"name":"Cassia Funnel Sweatshirt-L-White","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"170","color":"59","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","url_key":"cassia-funnel-sweatshirt-l-white","msrp_display_actual_price_type":"0"},{"sku":"WH08-XL-Orange","id":1148,"status":1,"name":"Cassia Funnel Sweatshirt-XL-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"171","color":"56","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","url_key":"cassia-funnel-sweatshirt-xl-orange","msrp_display_actual_price_type":"0"},{"sku":"WH08-XL-Purple","id":1149,"status":1,"name":"Cassia Funnel Sweatshirt-XL-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"171","color":"57","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","url_key":"cassia-funnel-sweatshirt-xl-purple","msrp_display_actual_price_type":"0"},{"sku":"WH08-XL-White","id":1150,"status":1,"name":"Cassia Funnel Sweatshirt-XL-White","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"171","color":"59","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","url_key":"cassia-funnel-sweatshirt-xl-white","msrp_display_actual_price_type":"0"}],"configurable_options":[{"id":161,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"}],"product_id":1151,"attribute_code":"color"},{"id":160,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1151,"attribute_code":"size"}],"color_options":[56,57,59],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-1151.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1020","_score":1,"_source":{"id":1020,"sku":"MSH11","name":"Arcadio Gym Short","attribute_set_id":10,"price":20,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":20,"description":"

                  The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                  \n

                  • Royal blue cotton shorts.
                  • Built-in mesh brief.
                  • 87% Spandex 13% Lycra.
                  • Adjustable drawstring.

                  ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"arcadio-gym-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105,108],"pattern":"197","climate":[202,205,212,208,209],"slug":"arcadio-gym-short-1020","links":{},"stock":{"item_id":1020,"product_id":1020,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH11-32-Black","id":1008,"status":1,"name":"Arcadio Gym Short-32-Black","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"49","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","url_key":"arcadio-gym-short-32-black","msrp_display_actual_price_type":"0","final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001},{"sku":"MSH11-32-Blue","id":1009,"status":1,"name":"Arcadio Gym Short-32-Blue","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"50","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","url_key":"arcadio-gym-short-32-blue","msrp_display_actual_price_type":"0","final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001},{"sku":"MSH11-32-Red","id":1010,"status":1,"name":"Arcadio Gym Short-32-Red","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"58","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","url_key":"arcadio-gym-short-32-red","msrp_display_actual_price_type":"0","final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001},{"sku":"MSH11-33-Black","id":1011,"status":1,"name":"Arcadio Gym Short-33-Black","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"49","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","url_key":"arcadio-gym-short-33-black","msrp_display_actual_price_type":"0","final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001},{"sku":"MSH11-33-Blue","id":1012,"status":1,"name":"Arcadio Gym Short-33-Blue","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"50","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","url_key":"arcadio-gym-short-33-blue","msrp_display_actual_price_type":"0","final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001},{"sku":"MSH11-33-Red","id":1013,"status":1,"name":"Arcadio Gym Short-33-Red","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"58","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","url_key":"arcadio-gym-short-33-red","msrp_display_actual_price_type":"0","final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001},{"sku":"MSH11-34-Black","id":1014,"status":1,"name":"Arcadio Gym Short-34-Black","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"49","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","url_key":"arcadio-gym-short-34-black","msrp_display_actual_price_type":"0","final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001},{"sku":"MSH11-34-Blue","id":1015,"status":1,"name":"Arcadio Gym Short-34-Blue","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"50","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","url_key":"arcadio-gym-short-34-blue","msrp_display_actual_price_type":"0","final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001},{"sku":"MSH11-34-Red","id":1016,"status":1,"name":"Arcadio Gym Short-34-Red","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"58","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","url_key":"arcadio-gym-short-34-red","msrp_display_actual_price_type":"0","final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001},{"sku":"MSH11-36-Black","id":1017,"status":1,"name":"Arcadio Gym Short-36-Black","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"49","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","url_key":"arcadio-gym-short-36-black","msrp_display_actual_price_type":"0","final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001},{"sku":"MSH11-36-Blue","id":1018,"status":1,"name":"Arcadio Gym Short-36-Blue","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"50","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","url_key":"arcadio-gym-short-36-blue","msrp_display_actual_price_type":"0","final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001},{"sku":"MSH11-36-Red","id":1019,"status":1,"name":"Arcadio Gym Short-36-Red","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"58","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","url_key":"arcadio-gym-short-36-red","msrp_display_actual_price_type":"0","final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001}],"configurable_options":[{"id":143,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":1020,"attribute_code":"color"},{"id":142,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":1020,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-1020.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1105","_score":1,"_source":{"id":1105,"sku":"WH05-M-Purple","name":"Selene Yoga Hoodie-M-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                  \n

                  • Ivory heather full zip 3/4 sleeve hoodie.
                  • Zip pocket at arm for convenient storage.
                  • 24.0\" body length.
                  • 89% Polyester / 11% Spandex.

                  ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"selene-yoga-hoodie-m-purple-1105","links":{},"stock":{"item_id":1105,"product_id":1105,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-m-purple-1105.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1122","_score":1,"_source":{"id":1122,"sku":"WH07-XS-White","name":"Phoebe Zipper Sweatshirt-XS-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                  \n

                  • Gray full zip hoodie with yellow detail.
                  • Hand-warmer pockets.
                  • Zip MP3 pocket with outlet for earphones wire.
                  • Polyester/cotton.
                  • Washable.

                  ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"phoebe-zipper-sweatshirt-xs-white-1122","links":{},"stock":{"item_id":1122,"product_id":1122,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xs-white-1122.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1109","_score":1,"_source":{"id":1109,"sku":"WH05-L-White","name":"Selene Yoga Hoodie-L-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                  \n

                  • Ivory heather full zip 3/4 sleeve hoodie.
                  • Zip pocket at arm for convenient storage.
                  • 24.0\" body length.
                  • 89% Polyester / 11% Spandex.

                  ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"selene-yoga-hoodie-l-white-1109","links":{},"stock":{"item_id":1109,"product_id":1109,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-l-white-1109.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1118","_score":1,"_source":{"id":1118,"sku":"WH06-XL-Purple","name":"Daphne Full-Zip Hoodie-XL-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

                  \n

                  • Purple full zip hoodie with pink accents.
                  • Heather texture.
                  • 4-way stretch.
                  • Pre-shrunk.
                  • Hood lined in vegan Sherpa for added warmth.
                  • Ribbed hem on hood and front pouch pocket.
                  • 60% Cotton / 40% Polyester.

                  ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"daphne-full-zip-hoodie-xl-purple-1118","links":{},"stock":{"item_id":1118,"product_id":1118,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-xl-purple-1118.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1127","_score":1,"_source":{"id":1127,"sku":"WH07-M-Purple","name":"Phoebe Zipper Sweatshirt-M-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                  \n

                  • Gray full zip hoodie with yellow detail.
                  • Hand-warmer pockets.
                  • Zip MP3 pocket with outlet for earphones wire.
                  • Polyester/cotton.
                  • Washable.

                  ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"phoebe-zipper-sweatshirt-m-purple-1127","links":{},"stock":{"item_id":1127,"product_id":1127,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-m-purple-1127.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1107","_score":1,"_source":{"id":1107,"sku":"WH05-L-Orange","name":"Selene Yoga Hoodie-L-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                  \n

                  • Ivory heather full zip 3/4 sleeve hoodie.
                  • Zip pocket at arm for convenient storage.
                  • 24.0\" body length.
                  • 89% Polyester / 11% Spandex.

                  ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"selene-yoga-hoodie-l-orange-1107","links":{},"stock":{"item_id":1107,"product_id":1107,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-l-orange-1107.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1168","_score":1,"_source":{"id":1168,"sku":"WH10-XS-Blue","name":"Helena Hooded Fleece-XS-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

                  Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                  \n

                  Full zip.
                  Banded cuffs and waist.
                  Front pockets.
                  Machine wash/dry.

                  ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helena-hooded-fleece-xs-blue-1168","links":{},"stock":{"item_id":1168,"product_id":1168,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xs-blue-1168.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1176","_score":1,"_source":{"id":1176,"sku":"WH10-M-Yellow","name":"Helena Hooded Fleece-M-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

                  Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                  \n

                  Full zip.
                  Banded cuffs and waist.
                  Front pockets.
                  Machine wash/dry.

                  ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helena-hooded-fleece-m-yellow-1176","links":{},"stock":{"item_id":1176,"product_id":1176,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-m-yellow-1176.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1178","_score":1,"_source":{"id":1178,"sku":"WH10-L-Gray","name":"Helena Hooded Fleece-L-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

                  Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                  \n

                  Full zip.
                  Banded cuffs and waist.
                  Front pockets.
                  Machine wash/dry.

                  ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helena-hooded-fleece-l-gray-1178","links":{},"stock":{"item_id":1178,"product_id":1178,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-l-gray-1178.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1198","_score":1,"_source":{"id":1198,"sku":"WH11-XL-Orange","name":"Eos V-Neck Hoodie-XL-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                  Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                  \n

                  Semi-fitted.
                  Long-Sleeve.
                  Machine wash/line dry.

                  ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"eos-v-neck-hoodie-xl-orange-1198","links":{},"stock":{"item_id":1198,"product_id":1198,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xl-orange-1198.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1190","_score":1,"_source":{"id":1190,"sku":"WH11-M-Blue","name":"Eos V-Neck Hoodie-M-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                  Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                  \n

                  Semi-fitted.
                  Long-Sleeve.
                  Machine wash/line dry.

                  ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"eos-v-neck-hoodie-m-blue-1190","links":{},"stock":{"item_id":1190,"product_id":1190,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-m-blue-1190.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1194","_score":1,"_source":{"id":1194,"sku":"WH11-L-Green","name":"Eos V-Neck Hoodie-L-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                  Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                  \n

                  Semi-fitted.
                  Long-Sleeve.
                  Machine wash/line dry.

                  ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"eos-v-neck-hoodie-l-green-1194","links":{},"stock":{"item_id":1194,"product_id":1194,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-l-green-1194.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1059","_score":1,"_source":{"id":1059,"sku":"WH02-L-Blue","name":"Hera Pullover Hoodie-L-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                  \n

                  • Teal with purple stiching.
                  • Hoodie pullover.
                  • Snug fit.

                  ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hera-pullover-hoodie-l-blue-1059","links":{},"stock":{"item_id":1059,"product_id":1059,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-l-blue-1059.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1078","_score":1,"_source":{"id":1078,"sku":"WH03-XL-Green","name":"Autumn Pullie-XL-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                  \n

                  • Cayenne Short-Sleeve roll neck sweatshirt.
                  • Relaxed fit.
                  • Short-Sleeves.
                  • Machine wash/dry.

                  ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"autumn-pullie-xl-green-1078","links":{},"stock":{"item_id":1078,"product_id":1078,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xl-green-1078.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1093","_score":1,"_source":{"id":1093,"sku":"WH04-L-Purple","name":"Miko Pullover Hoodie-L-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                  \n

                  • Teal two-tone hoodie.
                  • Low scoop neckline.
                  • Adjustable hood drawstrings.
                  • Longer rounded hemline for extra back coverage.
                  • Long-Sleeve style.

                  ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"miko-pullover-hoodie-l-purple-1093","links":{},"stock":{"item_id":1093,"product_id":1093,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-l-purple-1093.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1166","_score":1,"_source":{"id":1166,"sku":"WH09-XL-Red","name":"Ariel Roll Sleeve Sweatshirt-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                  \n

                  • Purple two-tone lightweight hoodie.
                  • 100% cotton.
                  • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                  • Casual, comfy piece for running errands or weekend activities.

                  ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ariel-roll-sleeve-sweatshirt-xl-red-1166","links":{},"stock":{"item_id":1166,"product_id":1166,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xl-red-1166.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1163","_score":1,"_source":{"id":1163,"sku":"WH09-L-Red","name":"Ariel Roll Sleeve Sweatshirt-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                  \n

                  • Purple two-tone lightweight hoodie.
                  • 100% cotton.
                  • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                  • Casual, comfy piece for running errands or weekend activities.

                  ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ariel-roll-sleeve-sweatshirt-l-red-1163","links":{},"stock":{"item_id":1163,"product_id":1163,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-l-red-1163.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1165","_score":1,"_source":{"id":1165,"sku":"WH09-XL-Purple","name":"Ariel Roll Sleeve Sweatshirt-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                  \n

                  • Purple two-tone lightweight hoodie.
                  • 100% cotton.
                  • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                  • Casual, comfy piece for running errands or weekend activities.

                  ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ariel-roll-sleeve-sweatshirt-xl-purple-1165","links":{},"stock":{"item_id":1165,"product_id":1165,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xl-purple-1165.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1152","_score":1,"_source":{"id":1152,"sku":"WH09-XS-Green","name":"Ariel Roll Sleeve Sweatshirt-XS-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                  \n

                  • Purple two-tone lightweight hoodie.
                  • 100% cotton.
                  • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                  • Casual, comfy piece for running errands or weekend activities.

                  ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ariel-roll-sleeve-sweatshirt-xs-green-1152","links":{},"stock":{"item_id":1152,"product_id":1152,"stock_id":1,"qty":52,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xs-green-1152.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1232","_score":1,"_source":{"id":1232,"sku":"WJ02-M-Black","name":"Josie Yoga Jacket-M-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

                  When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                  \n

                  • Slate rouched neck pullover.
                  • Moisture-wicking fabric.
                  • Hidden zipper.
                  • Mesh armpit venting.
                  • Dropped rear hem.

                  ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"josie-yoga-jacket-m-black-1232","links":{},"stock":{"item_id":1232,"product_id":1232,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-m-black-1232.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1222","_score":1,"_source":{"id":1222,"sku":"WJ01-L-Blue","name":"Stellar Solar Jacket-L-Blue","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                  Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                  \n

                  • Loose fit.
                  • Reflectivity.
                  • Flat seams.
                  • Machine wash/dry.
                  • Deep pink jacket with front panel rouching

                  ","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","color":"50","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stellar-solar-jacket-l-blue-1222","links":{},"stock":{"item_id":1222,"product_id":1222,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-l-blue-1222.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1223","_score":1,"_source":{"id":1223,"sku":"WJ01-L-Red","name":"Stellar Solar Jacket-L-Red","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                  Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                  \n

                  • Loose fit.
                  • Reflectivity.
                  • Flat seams.
                  • Machine wash/dry.
                  • Deep pink jacket with front panel rouching

                  ","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","color":"58","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stellar-solar-jacket-l-red-1223","links":{},"stock":{"item_id":1223,"product_id":1223,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-l-red-1223.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1094","_score":1,"_source":{"id":1094,"sku":"WH04-XL-Blue","name":"Miko Pullover Hoodie-XL-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                  \n

                  • Teal two-tone hoodie.
                  • Low scoop neckline.
                  • Adjustable hood drawstrings.
                  • Longer rounded hemline for extra back coverage.
                  • Long-Sleeve style.

                  ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"miko-pullover-hoodie-xl-blue-1094","links":{},"stock":{"item_id":1094,"product_id":1094,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xl-blue-1094.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1339","_score":1,"_source":{"id":1339,"sku":"WJ10-XS-Orange","name":"Nadia Elements Shell-XS-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                  \n

                  • Zippered front.
                  • Zippered side pockets.
                  • Drawstring-adjustable waist and hood.
                  • Machine wash/line dry.
                  • Light blue 1/4 zip pullover.

                  ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nadia-elements-shell-xs-orange-1339","links":{},"stock":{"item_id":1339,"product_id":1339,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xs-orange-1339.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1321","_score":1,"_source":{"id":1321,"sku":"WJ08","name":"Adrienne Trek Jacket","attribute_set_id":9,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":57,"description":"

                  You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                  \n

                  • gray 1/4 zip pullover.
                  • Comfortable, relaxed fit.
                  • Front zip for venting.
                  • Spacious, kangaroo pockets.
                  • 27\" body length.
                  • 95% Organic Cotton / 5% Spandex.

                  ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"adrienne-trek-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,151],"eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"1","style_general":[118,120,123,124,126,128],"pattern":"197","climate":[202,204,206,208,211],"slug":"adrienne-trek-jacket-1321","links":{},"stock":{"item_id":1321,"product_id":1321,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ08-XS-Gray","id":1306,"status":1,"name":"Adrienne Trek Jacket-XS-Gray","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"167","color":"52","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","url_key":"adrienne-trek-jacket-xs-gray","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-XS-Orange","id":1307,"status":1,"name":"Adrienne Trek Jacket-XS-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"167","color":"56","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","url_key":"adrienne-trek-jacket-xs-orange","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-XS-Purple","id":1308,"status":1,"name":"Adrienne Trek Jacket-XS-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"167","color":"57","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","url_key":"adrienne-trek-jacket-xs-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-S-Gray","id":1309,"status":1,"name":"Adrienne Trek Jacket-S-Gray","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"168","color":"52","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","url_key":"adrienne-trek-jacket-s-gray","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-S-Orange","id":1310,"status":1,"name":"Adrienne Trek Jacket-S-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"168","color":"56","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","url_key":"adrienne-trek-jacket-s-orange","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-S-Purple","id":1311,"status":1,"name":"Adrienne Trek Jacket-S-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"168","color":"57","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","url_key":"adrienne-trek-jacket-s-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-M-Gray","id":1312,"status":1,"name":"Adrienne Trek Jacket-M-Gray","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"169","color":"52","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","url_key":"adrienne-trek-jacket-m-gray","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-M-Orange","id":1313,"status":1,"name":"Adrienne Trek Jacket-M-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"169","color":"56","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","url_key":"adrienne-trek-jacket-m-orange","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-M-Purple","id":1314,"status":1,"name":"Adrienne Trek Jacket-M-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"169","color":"57","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","url_key":"adrienne-trek-jacket-m-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-L-Gray","id":1315,"status":1,"name":"Adrienne Trek Jacket-L-Gray","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"170","color":"52","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","url_key":"adrienne-trek-jacket-l-gray","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-L-Orange","id":1316,"status":1,"name":"Adrienne Trek Jacket-L-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"170","color":"56","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","url_key":"adrienne-trek-jacket-l-orange","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-L-Purple","id":1317,"status":1,"name":"Adrienne Trek Jacket-L-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"170","color":"57","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","url_key":"adrienne-trek-jacket-l-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-XL-Gray","id":1318,"status":1,"name":"Adrienne Trek Jacket-XL-Gray","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"171","color":"52","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","url_key":"adrienne-trek-jacket-xl-gray","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-XL-Orange","id":1319,"status":1,"name":"Adrienne Trek Jacket-XL-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"171","color":"56","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","url_key":"adrienne-trek-jacket-xl-orange","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ08-XL-Purple","id":1320,"status":1,"name":"Adrienne Trek Jacket-XL-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"171","color":"57","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","url_key":"adrienne-trek-jacket-xl-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001}],"configurable_options":[{"id":183,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1321,"attribute_code":"color"},{"id":182,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1321,"attribute_code":"size"}],"color_options":[52,56,57],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-1321.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1337","_score":1,"_source":{"id":1337,"sku":"WJ09","name":"Jade Yoga Jacket","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":32,"description":"


                  If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                  \n

                  • Seafoam 1/4 zip pullover with purple stitching.
                  • Lightweight, quick-drying, water-resistant construction.
                  • Shirred details at front and back for a feminine look.
                  • Hood collapses into collar.
                  • Mesh liner for breathability.
                  • Front zip pockets.
                  • Hem cinches at sideseam.
                  • 100% Polyester.

                  ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"jade-yoga-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[118,120,121,125,128],"pattern":"197","climate":[204,206,208,210],"slug":"jade-yoga-jacket-1337","links":{},"stock":{"item_id":1337,"product_id":1337,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ09-XS-Blue","id":1322,"status":1,"name":"Jade Yoga Jacket-XS-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"167","color":"50","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","url_key":"jade-yoga-jacket-xs-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-XS-Gray","id":1323,"status":1,"name":"Jade Yoga Jacket-XS-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"167","color":"52","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","url_key":"jade-yoga-jacket-xs-gray","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-XS-Green","id":1324,"status":1,"name":"Jade Yoga Jacket-XS-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"167","color":"53","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","url_key":"jade-yoga-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-S-Blue","id":1325,"status":1,"name":"Jade Yoga Jacket-S-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"168","color":"50","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","url_key":"jade-yoga-jacket-s-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-S-Gray","id":1326,"status":1,"name":"Jade Yoga Jacket-S-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"168","color":"52","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","url_key":"jade-yoga-jacket-s-gray","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-S-Green","id":1327,"status":1,"name":"Jade Yoga Jacket-S-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"168","color":"53","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","url_key":"jade-yoga-jacket-s-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-M-Blue","id":1328,"status":1,"name":"Jade Yoga Jacket-M-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"169","color":"50","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","url_key":"jade-yoga-jacket-m-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-M-Gray","id":1329,"status":1,"name":"Jade Yoga Jacket-M-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"169","color":"52","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","url_key":"jade-yoga-jacket-m-gray","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-M-Green","id":1330,"status":1,"name":"Jade Yoga Jacket-M-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"169","color":"53","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","url_key":"jade-yoga-jacket-m-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-L-Blue","id":1331,"status":1,"name":"Jade Yoga Jacket-L-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"170","color":"50","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","url_key":"jade-yoga-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-L-Gray","id":1332,"status":1,"name":"Jade Yoga Jacket-L-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"170","color":"52","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","url_key":"jade-yoga-jacket-l-gray","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-L-Green","id":1333,"status":1,"name":"Jade Yoga Jacket-L-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"170","color":"53","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","url_key":"jade-yoga-jacket-l-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-XL-Blue","id":1334,"status":1,"name":"Jade Yoga Jacket-XL-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"171","color":"50","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","url_key":"jade-yoga-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-XL-Gray","id":1335,"status":1,"name":"Jade Yoga Jacket-XL-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"171","color":"52","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","url_key":"jade-yoga-jacket-xl-gray","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WJ09-XL-Green","id":1336,"status":1,"name":"Jade Yoga Jacket-XL-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"171","color":"53","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","url_key":"jade-yoga-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001}],"configurable_options":[{"id":185,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":1337,"attribute_code":"color"},{"id":184,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1337,"attribute_code":"size"}],"color_options":[50,52,53],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-1337.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1241","_score":1,"_source":{"id":1241,"sku":"WJ02","name":"Josie Yoga Jacket","attribute_set_id":9,"price":56.25,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":56.25,"description":"

                  When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                  \n

                  • Slate rouched neck pullover.
                  • Moisture-wicking fabric.
                  • Hidden zipper.
                  • Mesh armpit venting.
                  • Dropped rear hem.

                  ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"josie-yoga-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[38,151,156],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":[118,137,120,125],"pattern":"197","climate":[205,206,208],"slug":"josie-yoga-jacket-1241","links":{},"stock":{"item_id":1241,"product_id":1241,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ02-XS-Black","id":1226,"status":1,"name":"Josie Yoga Jacket-XS-Black","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"167","color":"49","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","url_key":"josie-yoga-jacket-xs-black","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-XS-Blue","id":1227,"status":1,"name":"Josie Yoga Jacket-XS-Blue","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"167","color":"50","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","url_key":"josie-yoga-jacket-xs-blue","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-XS-Gray","id":1228,"status":1,"name":"Josie Yoga Jacket-XS-Gray","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"167","color":"52","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","url_key":"josie-yoga-jacket-xs-gray","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-S-Black","id":1229,"status":1,"name":"Josie Yoga Jacket-S-Black","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"168","color":"49","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","url_key":"josie-yoga-jacket-s-black","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-S-Blue","id":1230,"status":1,"name":"Josie Yoga Jacket-S-Blue","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"168","color":"50","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","url_key":"josie-yoga-jacket-s-blue","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-S-Gray","id":1231,"status":1,"name":"Josie Yoga Jacket-S-Gray","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"168","color":"52","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","url_key":"josie-yoga-jacket-s-gray","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-M-Black","id":1232,"status":1,"name":"Josie Yoga Jacket-M-Black","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"169","color":"49","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","url_key":"josie-yoga-jacket-m-black","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-M-Blue","id":1233,"status":1,"name":"Josie Yoga Jacket-M-Blue","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"169","color":"50","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","url_key":"josie-yoga-jacket-m-blue","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-M-Gray","id":1234,"status":1,"name":"Josie Yoga Jacket-M-Gray","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"169","color":"52","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","url_key":"josie-yoga-jacket-m-gray","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-L-Black","id":1235,"status":1,"name":"Josie Yoga Jacket-L-Black","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"170","color":"49","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","url_key":"josie-yoga-jacket-l-black","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-L-Blue","id":1236,"status":1,"name":"Josie Yoga Jacket-L-Blue","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"170","color":"50","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","url_key":"josie-yoga-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-L-Gray","id":1237,"status":1,"name":"Josie Yoga Jacket-L-Gray","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"170","color":"52","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","url_key":"josie-yoga-jacket-l-gray","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-XL-Black","id":1238,"status":1,"name":"Josie Yoga Jacket-XL-Black","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"171","color":"49","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","url_key":"josie-yoga-jacket-xl-black","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-XL-Blue","id":1239,"status":1,"name":"Josie Yoga Jacket-XL-Blue","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"171","color":"50","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","url_key":"josie-yoga-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501},{"sku":"WJ02-XL-Gray","id":1240,"status":1,"name":"Josie Yoga Jacket-XL-Gray","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"171","color":"52","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","url_key":"josie-yoga-jacket-xl-gray","msrp_display_actual_price_type":"0","final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501}],"configurable_options":[{"id":173,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"}],"product_id":1241,"attribute_code":"color"},{"id":172,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1241,"attribute_code":"size"}],"color_options":[49,50,52],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-1241.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1319","_score":1,"_source":{"id":1319,"sku":"WJ08-XL-Orange","name":"Adrienne Trek Jacket-XL-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                  \n

                  • gray 1/4 zip pullover.
                  • Comfortable, relaxed fit.
                  • Front zip for venting.
                  • Spacious, kangaroo pockets.
                  • 27\" body length.
                  • 95% Organic Cotton / 5% Spandex.

                  ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"adrienne-trek-jacket-xl-orange-1319","links":{},"stock":{"item_id":1319,"product_id":1319,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xl-orange-1319.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1334","_score":1,"_source":{"id":1334,"sku":"WJ09-XL-Blue","name":"Jade Yoga Jacket-XL-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


                  If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                  \n

                  • Seafoam 1/4 zip pullover with purple stitching.
                  • Lightweight, quick-drying, water-resistant construction.
                  • Shirred details at front and back for a feminine look.
                  • Hood collapses into collar.
                  • Mesh liner for breathability.
                  • Front zip pockets.
                  • Hem cinches at sideseam.
                  • 100% Polyester.

                  ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jade-yoga-jacket-xl-blue-1334","links":{},"stock":{"item_id":1334,"product_id":1334,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xl-blue-1334.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1348","_score":1,"_source":{"id":1348,"sku":"WJ10-L-Orange","name":"Nadia Elements Shell-L-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                  \n

                  • Zippered front.
                  • Zippered side pockets.
                  • Drawstring-adjustable waist and hood.
                  • Machine wash/line dry.
                  • Light blue 1/4 zip pullover.

                  ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nadia-elements-shell-l-orange-1348","links":{},"stock":{"item_id":1348,"product_id":1348,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-l-orange-1348.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1376","_score":1,"_source":{"id":1376,"sku":"WJ06-M-Blue","name":"Juno Jacket-M-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                  On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                  \n

                  • Adjustable hood.
                  • Fleece-lined, zippered hand pockets.
                  • Thumbhole cuffs.
                  • Full zip.
                  • Mock-neck collar.
                  • Machine wash/dry.

                  ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juno-jacket-m-blue-1376","links":{},"stock":{"item_id":1376,"product_id":1376,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-m-blue-1376.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1354","_score":1,"_source":{"id":1354,"sku":"WJ11-XS-Black","name":"Neve Studio Dance Jacket-XS-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                  \n

                  • Bright blue 1/4 zip pullover.
                  • CoolTech™ liner is sweat-wicking.
                  • Sleeve thumbholes.
                  • Zipper garage to protect your chin.
                  • Stretchy collar drawcords.

                  ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"neve-studio-dance-jacket-xs-black-1354","links":{},"stock":{"item_id":1354,"product_id":1354,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xs-black-1354.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1356","_score":1,"_source":{"id":1356,"sku":"WJ11-XS-Orange","name":"Neve Studio Dance Jacket-XS-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                  \n

                  • Bright blue 1/4 zip pullover.
                  • CoolTech™ liner is sweat-wicking.
                  • Sleeve thumbholes.
                  • Zipper garage to protect your chin.
                  • Stretchy collar drawcords.

                  ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"neve-studio-dance-jacket-xs-orange-1356","links":{},"stock":{"item_id":1356,"product_id":1356,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xs-orange-1356.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1265","_score":1,"_source":{"id":1265,"sku":"WJ04-M-Red","name":"Ingrid Running Jacket-M-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

                  The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                  • Slim fit.
                  • Moisture-wicking fabric.
                  • Two side pockets.
                  • Zippered pocket at back waist.
                  • Machine wash/dry.
                  • Ivory specked full zip

                  ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ingrid-running-jacket-m-red-1265","links":{},"stock":{"item_id":1265,"product_id":1265,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-m-red-1265.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1279","_score":1,"_source":{"id":1279,"sku":"WJ05-S-Red","name":"Riona Full Zip Jacket-S-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                  \n

                  • Brown heather full zip rouched jacket.
                  • Side hand pockets for extra storage.
                  • High collar.
                  • Thick cuffs for extra coverage.
                  • Durable, shape retention material to longer wear.

                  ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"riona-full-zip-jacket-s-red-1279","links":{},"stock":{"item_id":1279,"product_id":1279,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-s-red-1279.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1288","_score":1,"_source":{"id":1288,"sku":"WJ05-XL-Red","name":"Riona Full Zip Jacket-XL-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                  \n

                  • Brown heather full zip rouched jacket.
                  • Side hand pockets for extra storage.
                  • High collar.
                  • Thick cuffs for extra coverage.
                  • Durable, shape retention material to longer wear.

                  ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"riona-full-zip-jacket-xl-red-1288","links":{},"stock":{"item_id":1288,"product_id":1288,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xl-red-1288.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1276","_score":1,"_source":{"id":1276,"sku":"WJ05-XS-Red","name":"Riona Full Zip Jacket-XS-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                  \n

                  • Brown heather full zip rouched jacket.
                  • Side hand pockets for extra storage.
                  • High collar.
                  • Thick cuffs for extra coverage.
                  • Durable, shape retention material to longer wear.

                  ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"riona-full-zip-jacket-xs-red-1276","links":{},"stock":{"item_id":1276,"product_id":1276,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xs-red-1276.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1278","_score":1,"_source":{"id":1278,"sku":"WJ05-S-Green","name":"Riona Full Zip Jacket-S-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                  \n

                  • Brown heather full zip rouched jacket.
                  • Side hand pockets for extra storage.
                  • High collar.
                  • Thick cuffs for extra coverage.
                  • Durable, shape retention material to longer wear.

                  ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"riona-full-zip-jacket-s-green-1278","links":{},"stock":{"item_id":1278,"product_id":1278,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-s-green-1278.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1299","_score":1,"_source":{"id":1299,"sku":"WJ07-L-Orange","name":"Inez Full Zip Jacket-L-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                  \n

                  • Purple heather inset full zip jacket.
                  • Full zip hoodie.
                  • Contrast binding along the zipper, hood and sleeves.
                  • Inseam pockets for storage.
                  • Thumbholes for comfortable fit.

                  ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"inez-full-zip-jacket-l-orange-1299","links":{},"stock":{"item_id":1299,"product_id":1299,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-l-orange-1299.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1292","_score":1,"_source":{"id":1292,"sku":"WJ07-XS-Red","name":"Inez Full Zip Jacket-XS-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                  \n

                  • Purple heather inset full zip jacket.
                  • Full zip hoodie.
                  • Contrast binding along the zipper, hood and sleeves.
                  • Inseam pockets for storage.
                  • Thumbholes for comfortable fit.

                  ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"inez-full-zip-jacket-xs-red-1292","links":{},"stock":{"item_id":1292,"product_id":1292,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xs-red-1292.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1226","_score":1,"_source":{"id":1226,"sku":"WJ02-XS-Black","name":"Josie Yoga Jacket-XS-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

                  When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                  \n

                  • Slate rouched neck pullover.
                  • Moisture-wicking fabric.
                  • Hidden zipper.
                  • Mesh armpit venting.
                  • Dropped rear hem.

                  ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"josie-yoga-jacket-xs-black-1226","links":{},"stock":{"item_id":1226,"product_id":1226,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xs-black-1226.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1244","_score":1,"_source":{"id":1244,"sku":"WJ03-XS-Red","name":"Augusta Pullover Jacket-XS-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                  \n

                  • Pink half-zip pullover.
                  • Front pouch pockets.
                  • Fold-down collar.

                  ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"augusta-pullover-jacket-xs-red-1244","links":{},"stock":{"item_id":1244,"product_id":1244,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xs-red-1244.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1302","_score":1,"_source":{"id":1302,"sku":"WJ07-XL-Orange","name":"Inez Full Zip Jacket-XL-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                  \n

                  • Purple heather inset full zip jacket.
                  • Full zip hoodie.
                  • Contrast binding along the zipper, hood and sleeves.
                  • Inseam pockets for storage.
                  • Thumbholes for comfortable fit.

                  ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"inez-full-zip-jacket-xl-orange-1302","links":{},"stock":{"item_id":1302,"product_id":1302,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xl-orange-1302.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1303","_score":1,"_source":{"id":1303,"sku":"WJ07-XL-Purple","name":"Inez Full Zip Jacket-XL-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                  \n

                  • Purple heather inset full zip jacket.
                  • Full zip hoodie.
                  • Contrast binding along the zipper, hood and sleeves.
                  • Inseam pockets for storage.
                  • Thumbholes for comfortable fit.

                  ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"inez-full-zip-jacket-xl-purple-1303","links":{},"stock":{"item_id":1303,"product_id":1303,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xl-purple-1303.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1465","_score":1,"_source":{"id":1465,"sku":"WS06","name":"Elisa EverCool™ Tee","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

                  When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                  \n

                  • Purple heather v-neck tee.
                  • Short-Sleeves.
                  • Luma EverCool™ fabric.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"elisa-evercool-trade-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,154],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"elisa-evercool-and-trade-tee-1465","links":{},"stock":{"item_id":1465,"product_id":1465,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS06-XS-Gray","id":1450,"status":1,"name":"Elisa EverCool™ Tee-XS-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"167","color":"52","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","url_key":"elisa-evercool-trade-tee-xs-gray","msrp_display_actual_price_type":"0"},{"sku":"WS06-XS-Purple","id":1451,"status":1,"name":"Elisa EverCool™ Tee-XS-Purple","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"167","color":"57","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","url_key":"elisa-evercool-trade-tee-xs-purple","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-XS-Red","id":1452,"status":1,"name":"Elisa EverCool™ Tee-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"167","color":"58","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","url_key":"elisa-evercool-trade-tee-xs-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-S-Gray","id":1453,"status":1,"name":"Elisa EverCool™ Tee-S-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"168","color":"52","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","url_key":"elisa-evercool-trade-tee-s-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-S-Purple","id":1454,"status":1,"name":"Elisa EverCool™ Tee-S-Purple","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"168","color":"57","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","url_key":"elisa-evercool-trade-tee-s-purple","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-S-Red","id":1455,"status":1,"name":"Elisa EverCool™ Tee-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"168","color":"58","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","url_key":"elisa-evercool-trade-tee-s-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-M-Gray","id":1456,"status":1,"name":"Elisa EverCool™ Tee-M-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"169","color":"52","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","url_key":"elisa-evercool-trade-tee-m-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-M-Purple","id":1457,"status":1,"name":"Elisa EverCool™ Tee-M-Purple","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"169","color":"57","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","url_key":"elisa-evercool-trade-tee-m-purple","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-M-Red","id":1458,"status":1,"name":"Elisa EverCool™ Tee-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"169","color":"58","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","url_key":"elisa-evercool-trade-tee-m-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-L-Gray","id":1459,"status":1,"name":"Elisa EverCool™ Tee-L-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"170","color":"52","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","url_key":"elisa-evercool-trade-tee-l-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-L-Purple","id":1460,"status":1,"name":"Elisa EverCool™ Tee-L-Purple","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"170","color":"57","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","url_key":"elisa-evercool-trade-tee-l-purple","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-L-Red","id":1461,"status":1,"name":"Elisa EverCool™ Tee-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"170","color":"58","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","url_key":"elisa-evercool-trade-tee-l-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-XL-Gray","id":1462,"status":1,"name":"Elisa EverCool™ Tee-XL-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"171","color":"52","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","url_key":"elisa-evercool-trade-tee-xl-gray","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-XL-Purple","id":1463,"status":1,"name":"Elisa EverCool™ Tee-XL-Purple","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"171","color":"57","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","url_key":"elisa-evercool-trade-tee-xl-purple","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS06-XL-Red","id":1464,"status":1,"name":"Elisa EverCool™ Tee-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"171","color":"58","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","url_key":"elisa-evercool-trade-tee-xl-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":201,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1465,"attribute_code":"color"},{"id":200,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1465,"attribute_code":"size"}],"color_options":[52,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-1465.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1497","_score":1,"_source":{"id":1497,"sku":"WS08","name":"Minerva LumaTech™ V-Tee","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:18","updated_at":"2019-04-15 08:24:50","product_links":[{"sku":"WS08","link_type":"related","linked_product_sku":"WS09","linked_product_type":"configurable","position":1},{"sku":"WS08","link_type":"related","linked_product_sku":"WP10","linked_product_type":"configurable","position":2},{"sku":"WS08","link_type":"related","linked_product_sku":"WJ03","linked_product_type":"configurable","position":3},{"sku":"WS08","link_type":"related","linked_product_sku":"WS10","linked_product_type":"configurable","position":4},{"sku":"WS08","link_type":"related","linked_product_sku":"WP11","linked_product_type":"configurable","position":5},{"sku":"WS08","link_type":"related","linked_product_sku":"WH03","linked_product_type":"configurable","position":6},{"sku":"WS08","link_type":"related","linked_product_sku":"WH09","linked_product_type":"configurable","position":7},{"sku":"WS08","link_type":"related","linked_product_sku":"WJ06","linked_product_type":"configurable","position":8}],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":32,"description":"

                  Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                  \r\n

                  • Navy blue heather soft v-neck tee.
                  • Flatlock seams for chafe-free comfort.
                  • Relaxed cut.
                  • Ultra-lightweight fabric.
                  • Machine wash/dry.

                  ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","category_ids":[25,33,30,2],"options_container":"container2","required_options":"1","has_options":"1","url_key":"minerva-lumatech-trade-v-tee","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":[33,149],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"minerva-lumatech-and-trade-v-tee-1497","links":{"related":[{"sku":"WS09","pos":1},{"sku":"WP10","pos":2},{"sku":"WJ03","pos":3},{"sku":"WS10","pos":4},{"sku":"WP11","pos":5},{"sku":"WH03","pos":6},{"sku":"WH09","pos":7},{"sku":"WJ06","pos":8}]},"stock":{"item_id":1497,"product_id":1497,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"configurable_children":[{"sku":"WS08-XS-Black","id":1482,"status":1,"name":"Minerva LumaTech™ V-Tee-XS-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"167","color":"49","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","url_key":"minerva-lumatech-trade-v-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WS08-XS-Blue","id":1483,"status":1,"name":"Minerva LumaTech™ V-Tee-XS-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"167","color":"50","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","url_key":"minerva-lumatech-trade-v-tee-xs-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS08-XS-Red","id":1484,"status":1,"name":"Minerva LumaTech™ V-Tee-XS-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"167","color":"58","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","url_key":"minerva-lumatech-trade-v-tee-xs-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS08-S-Black","id":1485,"status":1,"name":"Minerva LumaTech™ V-Tee-S-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"168","color":"49","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","url_key":"minerva-lumatech-trade-v-tee-s-black","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS08-S-Blue","id":1486,"status":1,"name":"Minerva LumaTech™ V-Tee-S-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"168","color":"50","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","url_key":"minerva-lumatech-trade-v-tee-s-blue","msrp_display_actual_price_type":"0"},{"sku":"WS08-S-Red","id":1487,"status":1,"name":"Minerva LumaTech™ V-Tee-S-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"168","color":"58","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","url_key":"minerva-lumatech-trade-v-tee-s-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS08-M-Black","id":1488,"status":1,"name":"Minerva LumaTech™ V-Tee-M-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"169","color":"49","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","url_key":"minerva-lumatech-trade-v-tee-m-black","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS08-M-Blue","id":1489,"status":1,"name":"Minerva LumaTech™ V-Tee-M-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"169","color":"50","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","url_key":"minerva-lumatech-trade-v-tee-m-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS08-M-Red","id":1490,"status":1,"name":"Minerva LumaTech™ V-Tee-M-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"169","color":"58","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","url_key":"minerva-lumatech-trade-v-tee-m-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS08-L-Black","id":1491,"status":1,"name":"Minerva LumaTech™ V-Tee-L-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"170","color":"49","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","url_key":"minerva-lumatech-trade-v-tee-l-black","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS08-L-Blue","id":1492,"status":1,"name":"Minerva LumaTech™ V-Tee-L-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"170","color":"50","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","url_key":"minerva-lumatech-trade-v-tee-l-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS08-L-Red","id":1493,"status":1,"name":"Minerva LumaTech™ V-Tee-L-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"170","color":"58","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","url_key":"minerva-lumatech-trade-v-tee-l-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS08-XL-Black","id":1494,"status":1,"name":"Minerva LumaTech™ V-Tee-XL-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"171","color":"49","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","url_key":"minerva-lumatech-trade-v-tee-xl-black","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS08-XL-Blue","id":1495,"status":1,"name":"Minerva LumaTech™ V-Tee-XL-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"171","color":"50","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","url_key":"minerva-lumatech-trade-v-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS08-XL-Red","id":1496,"status":1,"name":"Minerva LumaTech™ V-Tee-XL-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"171","color":"58","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","url_key":"minerva-lumatech-trade-v-tee-xl-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001}],"configurable_options":[{"id":306,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":1497,"attribute_code":"color"},{"id":307,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1497,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-1497.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1433","_score":1,"_source":{"id":1433,"sku":"WS03","name":"Iris Workout Top","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

                  The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                  \n

                  • Pink heather rouched v-neck.
                  • Scoop neckline.
                  • Angled flat seams.
                  • Moisture wicking.
                  • Body skimming.
                  • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                  ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"iris-workout-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,38,151,155],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"iris-workout-top-1433","links":{},"stock":{"item_id":1433,"product_id":1433,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS03-XS-Blue","id":1418,"status":1,"name":"Iris Workout Top-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"50","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","url_key":"iris-workout-top-xs-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-XS-Green","id":1419,"status":1,"name":"Iris Workout Top-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"53","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","url_key":"iris-workout-top-xs-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-XS-Red","id":1420,"status":1,"name":"Iris Workout Top-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"58","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","url_key":"iris-workout-top-xs-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-S-Blue","id":1421,"status":1,"name":"Iris Workout Top-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"50","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","url_key":"iris-workout-top-s-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-S-Green","id":1422,"status":1,"name":"Iris Workout Top-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"53","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","url_key":"iris-workout-top-s-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-S-Red","id":1423,"status":1,"name":"Iris Workout Top-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"58","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","url_key":"iris-workout-top-s-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-M-Blue","id":1424,"status":1,"name":"Iris Workout Top-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"50","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","url_key":"iris-workout-top-m-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-M-Green","id":1425,"status":1,"name":"Iris Workout Top-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"53","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","url_key":"iris-workout-top-m-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-M-Red","id":1426,"status":1,"name":"Iris Workout Top-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"58","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","url_key":"iris-workout-top-m-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-L-Blue","id":1427,"status":1,"name":"Iris Workout Top-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"50","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","url_key":"iris-workout-top-l-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-L-Green","id":1428,"status":1,"name":"Iris Workout Top-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"53","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","url_key":"iris-workout-top-l-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-L-Red","id":1429,"status":1,"name":"Iris Workout Top-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"58","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","url_key":"iris-workout-top-l-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-XL-Blue","id":1430,"status":1,"name":"Iris Workout Top-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"50","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","url_key":"iris-workout-top-xl-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-XL-Green","id":1431,"status":1,"name":"Iris Workout Top-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"53","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","url_key":"iris-workout-top-xl-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WS03-XL-Red","id":1432,"status":1,"name":"Iris Workout Top-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"58","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","url_key":"iris-workout-top-xl-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":197,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1433,"attribute_code":"color"},{"id":196,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1433,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-1433.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1415","_score":1,"_source":{"id":1415,"sku":"WS02-XL-Green","name":"Gabrielle Micro Sleeve Top-XL-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                  \n

                  • Lime green v-neck tee.
                  • Slimming, flattering fit.
                  • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                  • Longer curved hem provides additional coverage.
                  • 55% Hemp / 45% Organic Cotton.

                  ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gabrielle-micro-sleeve-top-xl-green-1415","links":{},"stock":{"item_id":1415,"product_id":1415,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xl-green-1415.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1426","_score":1,"_source":{"id":1426,"sku":"WS03-M-Red","name":"Iris Workout Top-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                  \n

                  • Pink heather rouched v-neck.
                  • Scoop neckline.
                  • Angled flat seams.
                  • Moisture wicking.
                  • Body skimming.
                  • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                  ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"iris-workout-top-m-red-1426","links":{},"stock":{"item_id":1426,"product_id":1426,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-m-red-1426.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1436","_score":1,"_source":{"id":1436,"sku":"WS04-XS-Red","name":"Layla Tee-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                  \n

                  • Teal tee.
                  • Long back hem.
                  • Dropped shoulders.

                  ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"layla-tee-xs-red-1436","links":{},"stock":{"item_id":1436,"product_id":1436,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xs-red-1436.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1441","_score":1,"_source":{"id":1441,"sku":"WS04-M-Green","name":"Layla Tee-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                  \n

                  • Teal tee.
                  • Long back hem.
                  • Dropped shoulders.

                  ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"layla-tee-m-green-1441","links":{},"stock":{"item_id":1441,"product_id":1441,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-m-green-1441.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1434","_score":1,"_source":{"id":1434,"sku":"WS04-XS-Blue","name":"Layla Tee-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                  \n

                  • Teal tee.
                  • Long back hem.
                  • Dropped shoulders.

                  ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"layla-tee-xs-blue-1434","links":{},"stock":{"item_id":1434,"product_id":1434,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xs-blue-1434.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1438","_score":1,"_source":{"id":1438,"sku":"WS04-S-Green","name":"Layla Tee-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                  \n

                  • Teal tee.
                  • Long back hem.
                  • Dropped shoulders.

                  ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"layla-tee-s-green-1438","links":{},"stock":{"item_id":1438,"product_id":1438,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-s-green-1438.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1521","_score":1,"_source":{"id":1521,"sku":"WS10-M-Red","name":"Karissa V-Neck Tee-M-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                  \n

                  • Pink heather soft v-neck tee.
                  • Luma signature micro sleeves.
                  • Semi-fitted.
                  • Machine wash/dry.

                  ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"karissa-v-neck-tee-m-red-1521","links":{},"stock":{"item_id":1521,"product_id":1521,"stock_id":1,"qty":45,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-m-red-1521.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1534","_score":1,"_source":{"id":1534,"sku":"WS11-S-Orange","name":"Diva Gym Tee-S-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                  \n

                  • Bright yellow v-neck tee.
                  • Moisture-wicking fabric.
                  • Long-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"diva-gym-tee-s-orange-1534","links":{},"stock":{"item_id":1534,"product_id":1534,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-s-orange-1534.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1540","_score":1,"_source":{"id":1540,"sku":"WS11-L-Orange","name":"Diva Gym Tee-L-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                  \n

                  • Bright yellow v-neck tee.
                  • Moisture-wicking fabric.
                  • Long-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"diva-gym-tee-l-orange-1540","links":{},"stock":{"item_id":1540,"product_id":1540,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-l-orange-1540.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1547","_score":1,"_source":{"id":1547,"sku":"WS12-XS-Orange","name":"Radiant Tee-XS-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

                  So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                  \n

                  • Salmon soft scoop neck tee.
                  • Athletic, semi-form fit.
                  • Flat seams prevent chafing.
                  • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                  ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"radiant-tee-xs-orange-1547","links":{},"stock":{"item_id":1547,"product_id":1547,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xs-orange-1547.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1541","_score":1,"_source":{"id":1541,"sku":"WS11-L-Yellow","name":"Diva Gym Tee-L-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                  \n

                  • Bright yellow v-neck tee.
                  • Moisture-wicking fabric.
                  • Long-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"diva-gym-tee-l-yellow-1541","links":{},"stock":{"item_id":1541,"product_id":1541,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-l-yellow-1541.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1548","_score":1,"_source":{"id":1548,"sku":"WS12-XS-Purple","name":"Radiant Tee-XS-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

                  So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                  \n

                  • Salmon soft scoop neck tee.
                  • Athletic, semi-form fit.
                  • Flat seams prevent chafing.
                  • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                  ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"radiant-tee-xs-purple-1548","links":{},"stock":{"item_id":1548,"product_id":1548,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xs-purple-1548.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1375","_score":1,"_source":{"id":1375,"sku":"WJ06-S-Purple","name":"Juno Jacket-S-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                  On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                  \n

                  • Adjustable hood.
                  • Fleece-lined, zippered hand pockets.
                  • Thumbhole cuffs.
                  • Full zip.
                  • Mock-neck collar.
                  • Machine wash/dry.

                  ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juno-jacket-s-purple-1375","links":{},"stock":{"item_id":1375,"product_id":1375,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-s-purple-1375.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1384","_score":1,"_source":{"id":1384,"sku":"WJ06-XL-Purple","name":"Juno Jacket-XL-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                  On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                  \n

                  • Adjustable hood.
                  • Fleece-lined, zippered hand pockets.
                  • Thumbhole cuffs.
                  • Full zip.
                  • Mock-neck collar.
                  • Machine wash/dry.

                  ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juno-jacket-xl-purple-1384","links":{},"stock":{"item_id":1384,"product_id":1384,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xl-purple-1384.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1386","_score":1,"_source":{"id":1386,"sku":"WJ12-XS-Black","name":"Olivia 1/4 Zip Light Jacket-XS-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                  Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                  \n

                  • Loose fit.
                  • Reflectivity.
                  • Flat seams.
                  • Machine wash/dry.

                  ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"olivia-14-zip-light-jacket-xs-black-1386","links":{},"stock":{"item_id":1386,"product_id":1386,"stock_id":1,"qty":6,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xs-black-1386.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1387","_score":1,"_source":{"id":1387,"sku":"WJ12-XS-Blue","name":"Olivia 1/4 Zip Light Jacket-XS-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                  Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                  \n

                  • Loose fit.
                  • Reflectivity.
                  • Flat seams.
                  • Machine wash/dry.

                  ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"olivia-14-zip-light-jacket-xs-blue-1387","links":{},"stock":{"item_id":1387,"product_id":1387,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xs-blue-1387.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1377","_score":1,"_source":{"id":1377,"sku":"WJ06-M-Green","name":"Juno Jacket-M-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                  On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                  \n

                  • Adjustable hood.
                  • Fleece-lined, zippered hand pockets.
                  • Thumbhole cuffs.
                  • Full zip.
                  • Mock-neck collar.
                  • Machine wash/dry.

                  ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juno-jacket-m-green-1377","links":{},"stock":{"item_id":1377,"product_id":1377,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-m-green-1377.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1395","_score":1,"_source":{"id":1395,"sku":"WJ12-L-Black","name":"Olivia 1/4 Zip Light Jacket-L-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                  Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                  \n

                  • Loose fit.
                  • Reflectivity.
                  • Flat seams.
                  • Machine wash/dry.

                  ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"olivia-14-zip-light-jacket-l-black-1395","links":{},"stock":{"item_id":1395,"product_id":1395,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-l-black-1395.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1474","_score":1,"_source":{"id":1474,"sku":"WS07-M-Yellow","name":"Juliana Short-Sleeve Tee-M-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                  \n

                  • Black scoop neck tee.
                  • Side rouching.
                  • Relaxed fit.

                  ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juliana-short-sleeve-tee-m-yellow-1474","links":{},"stock":{"item_id":1474,"product_id":1474,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-m-yellow-1474.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1470","_score":1,"_source":{"id":1470,"sku":"WS07-S-White","name":"Juliana Short-Sleeve Tee-S-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                  \n

                  • Black scoop neck tee.
                  • Side rouching.
                  • Relaxed fit.

                  ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juliana-short-sleeve-tee-s-white-1470","links":{},"stock":{"item_id":1470,"product_id":1470,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-s-white-1470.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1471","_score":1,"_source":{"id":1471,"sku":"WS07-S-Yellow","name":"Juliana Short-Sleeve Tee-S-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                  \n

                  • Black scoop neck tee.
                  • Side rouching.
                  • Relaxed fit.

                  ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juliana-short-sleeve-tee-s-yellow-1471","links":{},"stock":{"item_id":1471,"product_id":1471,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-s-yellow-1471.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1499","_score":1,"_source":{"id":1499,"sku":"WS09-XS-Red","name":"Tiffany Fitness Tee-XS-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                  \n

                  • Teal soft scoop neck tee.
                  • Contrast stitching pattern.
                  • Machine wash/dry.

                  ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tiffany-fitness-tee-xs-red-1499","links":{},"stock":{"item_id":1499,"product_id":1499,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xs-red-1499.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1453","_score":1,"_source":{"id":1453,"sku":"WS06-S-Gray","name":"Elisa EverCool™ Tee-S-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                  \n

                  • Purple heather v-neck tee.
                  • Short-Sleeves.
                  • Luma EverCool™ fabric.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"elisa-evercool-and-trade-tee-s-gray-1453","links":{},"stock":{"item_id":1453,"product_id":1453,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-s-gray-1453.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1457","_score":1,"_source":{"id":1457,"sku":"WS06-M-Purple","name":"Elisa EverCool™ Tee-M-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                  \n

                  • Purple heather v-neck tee.
                  • Short-Sleeves.
                  • Luma EverCool™ fabric.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"elisa-evercool-and-trade-tee-m-purple-1457","links":{},"stock":{"item_id":1457,"product_id":1457,"stock_id":1,"qty":61,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-m-purple-1457.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1464","_score":1,"_source":{"id":1464,"sku":"WS06-XL-Red","name":"Elisa EverCool™ Tee-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                  \n

                  • Purple heather v-neck tee.
                  • Short-Sleeves.
                  • Luma EverCool™ fabric.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"elisa-evercool-and-trade-tee-xl-red-1464","links":{},"stock":{"item_id":1464,"product_id":1464,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xl-red-1464.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1423","_score":1,"_source":{"id":1423,"sku":"WS03-S-Red","name":"Iris Workout Top-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                  \n

                  • Pink heather rouched v-neck.
                  • Scoop neckline.
                  • Angled flat seams.
                  • Moisture wicking.
                  • Body skimming.
                  • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                  ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"iris-workout-top-s-red-1423","links":{},"stock":{"item_id":1423,"product_id":1423,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-s-red-1423.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1516","_score":1,"_source":{"id":1516,"sku":"WS10-XS-Yellow","name":"Karissa V-Neck Tee-XS-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                  \n

                  • Pink heather soft v-neck tee.
                  • Luma signature micro sleeves.
                  • Semi-fitted.
                  • Machine wash/dry.

                  ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"karissa-v-neck-tee-xs-yellow-1516","links":{},"stock":{"item_id":1516,"product_id":1516,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xs-yellow-1516.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1513","_score":1,"_source":{"id":1513,"sku":"WS09","name":"Tiffany Fitness Tee","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":28,"description":"

                  You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                  \n

                  • Teal soft scoop neck tee.
                  • Contrast stitching pattern.
                  • Machine wash/dry.

                  ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"tiffany-fitness-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"136","pattern":"197","climate":[205,209],"slug":"tiffany-fitness-tee-1513","links":{},"stock":{"item_id":1513,"product_id":1513,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS09-XS-Blue","id":1498,"status":1,"name":"Tiffany Fitness Tee-XS-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"167","color":"50","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","url_key":"tiffany-fitness-tee-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WS09-XS-Red","id":1499,"status":1,"name":"Tiffany Fitness Tee-XS-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"167","color":"58","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","url_key":"tiffany-fitness-tee-xs-red","msrp_display_actual_price_type":"0"},{"sku":"WS09-XS-White","id":1500,"status":1,"name":"Tiffany Fitness Tee-XS-White","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"167","color":"59","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","url_key":"tiffany-fitness-tee-xs-white","msrp_display_actual_price_type":"0"},{"sku":"WS09-S-Blue","id":1501,"status":1,"name":"Tiffany Fitness Tee-S-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"168","color":"50","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","url_key":"tiffany-fitness-tee-s-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS09-S-Red","id":1502,"status":1,"name":"Tiffany Fitness Tee-S-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"168","color":"58","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","url_key":"tiffany-fitness-tee-s-red","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS09-S-White","id":1503,"status":1,"name":"Tiffany Fitness Tee-S-White","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"168","color":"59","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","url_key":"tiffany-fitness-tee-s-white","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS09-M-Blue","id":1504,"status":1,"name":"Tiffany Fitness Tee-M-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"169","color":"50","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","url_key":"tiffany-fitness-tee-m-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS09-M-Red","id":1505,"status":1,"name":"Tiffany Fitness Tee-M-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"169","color":"58","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","url_key":"tiffany-fitness-tee-m-red","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS09-M-White","id":1506,"status":1,"name":"Tiffany Fitness Tee-M-White","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"169","color":"59","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","url_key":"tiffany-fitness-tee-m-white","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS09-L-Blue","id":1507,"status":1,"name":"Tiffany Fitness Tee-L-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"170","color":"50","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","url_key":"tiffany-fitness-tee-l-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS09-L-Red","id":1508,"status":1,"name":"Tiffany Fitness Tee-L-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"170","color":"58","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","url_key":"tiffany-fitness-tee-l-red","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS09-L-White","id":1509,"status":1,"name":"Tiffany Fitness Tee-L-White","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"170","color":"59","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","url_key":"tiffany-fitness-tee-l-white","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS09-XL-Blue","id":1510,"status":1,"name":"Tiffany Fitness Tee-XL-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"171","color":"50","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","url_key":"tiffany-fitness-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS09-XL-Red","id":1511,"status":1,"name":"Tiffany Fitness Tee-XL-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"171","color":"58","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","url_key":"tiffany-fitness-tee-xl-red","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS09-XL-White","id":1512,"status":1,"name":"Tiffany Fitness Tee-XL-White","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"171","color":"59","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","url_key":"tiffany-fitness-tee-xl-white","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001}],"configurable_options":[{"id":207,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":1513,"attribute_code":"color"},{"id":206,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1513,"attribute_code":"size"}],"color_options":[50,58,59],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-1513.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1529","_score":1,"_source":{"id":1529,"sku":"WS10","name":"Karissa V-Neck Tee","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":32,"description":"

                  The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                  \n

                  • Pink heather soft v-neck tee.
                  • Luma signature micro sleeves.
                  • Semi-fitted.
                  • Machine wash/dry.

                  ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"karissa-v-neck-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,153],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"karissa-v-neck-tee-1529","links":{},"stock":{"item_id":1529,"product_id":1529,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS10-XS-Green","id":1514,"status":1,"name":"Karissa V-Neck Tee-XS-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"53","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","url_key":"karissa-v-neck-tee-xs-green","msrp_display_actual_price_type":"0"},{"sku":"WS10-XS-Red","id":1515,"status":1,"name":"Karissa V-Neck Tee-XS-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"58","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","url_key":"karissa-v-neck-tee-xs-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-XS-Yellow","id":1516,"status":1,"name":"Karissa V-Neck Tee-XS-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"60","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","url_key":"karissa-v-neck-tee-xs-yellow","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-S-Green","id":1517,"status":1,"name":"Karissa V-Neck Tee-S-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"53","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","url_key":"karissa-v-neck-tee-s-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-S-Red","id":1518,"status":1,"name":"Karissa V-Neck Tee-S-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"58","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","url_key":"karissa-v-neck-tee-s-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-S-Yellow","id":1519,"status":1,"name":"Karissa V-Neck Tee-S-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"60","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","url_key":"karissa-v-neck-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-M-Green","id":1520,"status":1,"name":"Karissa V-Neck Tee-M-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"53","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","url_key":"karissa-v-neck-tee-m-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-M-Red","id":1521,"status":1,"name":"Karissa V-Neck Tee-M-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"58","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","url_key":"karissa-v-neck-tee-m-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-M-Yellow","id":1522,"status":1,"name":"Karissa V-Neck Tee-M-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"60","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","url_key":"karissa-v-neck-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-L-Green","id":1523,"status":1,"name":"Karissa V-Neck Tee-L-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"53","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","url_key":"karissa-v-neck-tee-l-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-L-Red","id":1524,"status":1,"name":"Karissa V-Neck Tee-L-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"58","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","url_key":"karissa-v-neck-tee-l-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-L-Yellow","id":1525,"status":1,"name":"Karissa V-Neck Tee-L-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"60","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","url_key":"karissa-v-neck-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-XL-Green","id":1526,"status":1,"name":"Karissa V-Neck Tee-XL-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"53","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","url_key":"karissa-v-neck-tee-xl-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-XL-Red","id":1527,"status":1,"name":"Karissa V-Neck Tee-XL-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"58","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","url_key":"karissa-v-neck-tee-xl-red","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS10-XL-Yellow","id":1528,"status":1,"name":"Karissa V-Neck Tee-XL-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"60","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","url_key":"karissa-v-neck-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001}],"configurable_options":[{"id":209,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":1529,"attribute_code":"color"},{"id":208,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1529,"attribute_code":"size"}],"color_options":[53,58,60],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-1529.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1625","_score":1,"_source":{"id":1625,"sku":"WB02","name":"Erica Evercool Sports Bra","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":39,"description":"

                  Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                  \n

                  • Honeycomb light blue bra top.
                  • Elastic hem.
                  • Reinforced binding.
                  • Machine wash/dry.

                  ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"erica-evercool-sports-bra","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,149],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"131","pattern":"197","climate":[205,209],"slug":"erica-evercool-sports-bra-1625","links":{},"stock":{"item_id":1625,"product_id":1625,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WB02-XS-Blue","id":1610,"status":1,"name":"Erica Evercool Sports Bra-XS-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"50","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","url_key":"erica-evercool-sports-bra-xs-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-XS-Orange","id":1611,"status":1,"name":"Erica Evercool Sports Bra-XS-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"56","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","url_key":"erica-evercool-sports-bra-xs-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-XS-Yellow","id":1612,"status":1,"name":"Erica Evercool Sports Bra-XS-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"60","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","url_key":"erica-evercool-sports-bra-xs-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-S-Blue","id":1613,"status":1,"name":"Erica Evercool Sports Bra-S-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"50","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","url_key":"erica-evercool-sports-bra-s-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-S-Orange","id":1614,"status":1,"name":"Erica Evercool Sports Bra-S-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"56","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","url_key":"erica-evercool-sports-bra-s-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-S-Yellow","id":1615,"status":1,"name":"Erica Evercool Sports Bra-S-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"60","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","url_key":"erica-evercool-sports-bra-s-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-M-Blue","id":1616,"status":1,"name":"Erica Evercool Sports Bra-M-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"50","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","url_key":"erica-evercool-sports-bra-m-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-M-Orange","id":1617,"status":1,"name":"Erica Evercool Sports Bra-M-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"56","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","url_key":"erica-evercool-sports-bra-m-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-M-Yellow","id":1618,"status":1,"name":"Erica Evercool Sports Bra-M-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"60","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","url_key":"erica-evercool-sports-bra-m-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-L-Blue","id":1619,"status":1,"name":"Erica Evercool Sports Bra-L-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"50","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","url_key":"erica-evercool-sports-bra-l-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-L-Orange","id":1620,"status":1,"name":"Erica Evercool Sports Bra-L-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"56","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","url_key":"erica-evercool-sports-bra-l-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-L-Yellow","id":1621,"status":1,"name":"Erica Evercool Sports Bra-L-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"60","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","url_key":"erica-evercool-sports-bra-l-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-XL-Blue","id":1622,"status":1,"name":"Erica Evercool Sports Bra-XL-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"50","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","url_key":"erica-evercool-sports-bra-xl-blue","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-XL-Orange","id":1623,"status":1,"name":"Erica Evercool Sports Bra-XL-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"56","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","url_key":"erica-evercool-sports-bra-xl-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB02-XL-Yellow","id":1624,"status":1,"name":"Erica Evercool Sports Bra-XL-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"60","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","url_key":"erica-evercool-sports-bra-xl-yellow","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001}],"configurable_options":[{"id":221,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1625,"attribute_code":"color"},{"id":220,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1625,"attribute_code":"size"}],"color_options":[50,56,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-1625.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1572","_score":1,"_source":{"id":1572,"sku":"WS01-L-Green","name":"Gwyn Endurance Tee-L-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                  \n

                  • Short-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gwyn-endurance-tee-l-green-1572","links":{},"stock":{"item_id":1572,"product_id":1572,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-l-green-1572.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1581","_score":1,"_source":{"id":1581,"sku":"WS05-S-Black","name":"Desiree Fitness Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                  \n

                  • Short-Sleeves.
                  • Performance fabric.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"desiree-fitness-tee-s-black-1581","links":{},"stock":{"item_id":1581,"product_id":1581,"stock_id":1,"qty":41,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-s-black-1581.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1574","_score":1,"_source":{"id":1574,"sku":"WS01-XL-Black","name":"Gwyn Endurance Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                  \n

                  • Short-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gwyn-endurance-tee-xl-black-1574","links":{},"stock":{"item_id":1574,"product_id":1574,"stock_id":1,"qty":64,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xl-black-1574.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1571","_score":1,"_source":{"id":1571,"sku":"WS01-L-Black","name":"Gwyn Endurance Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                  \n

                  • Short-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gwyn-endurance-tee-l-black-1571","links":{},"stock":{"item_id":1571,"product_id":1571,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-l-black-1571.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1576","_score":1,"_source":{"id":1576,"sku":"WS01-XL-Yellow","name":"Gwyn Endurance Tee-XL-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                  \n

                  • Short-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gwyn-endurance-tee-xl-yellow-1576","links":{},"stock":{"item_id":1576,"product_id":1576,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xl-yellow-1576.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1598","_score":1,"_source":{"id":1598,"sku":"WB01-S-Gray","name":"Electra Bra Top-S-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                  \n

                  • Gray rouched bra top.
                  • Attractive back straps feature contrasting motif fabric.
                  • Interior bra top is lined with breathable mesh.
                  • Elastic underband for superior support.
                  • Removable cup inserts.
                  • Chafe-free flat lock seams provide added comfort.

                  ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"electra-bra-top-s-gray-1598","links":{},"stock":{"item_id":1598,"product_id":1598,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-s-gray-1598.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1586","_score":1,"_source":{"id":1586,"sku":"WS05-M-Yellow","name":"Desiree Fitness Tee-M-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                  \n

                  • Short-Sleeves.
                  • Performance fabric.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"desiree-fitness-tee-m-yellow-1586","links":{},"stock":{"item_id":1586,"product_id":1586,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-m-yellow-1586.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1551","_score":1,"_source":{"id":1551,"sku":"WS12-S-Purple","name":"Radiant Tee-S-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

                  So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                  \n

                  • Salmon soft scoop neck tee.
                  • Athletic, semi-form fit.
                  • Flat seams prevent chafing.
                  • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                  ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"radiant-tee-s-purple-1551","links":{},"stock":{"item_id":1551,"product_id":1551,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-s-purple-1551.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1558","_score":1,"_source":{"id":1558,"sku":"WS12-XL-Blue","name":"Radiant Tee-XL-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

                  So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                  \n

                  • Salmon soft scoop neck tee.
                  • Athletic, semi-form fit.
                  • Flat seams prevent chafing.
                  • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                  ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"radiant-tee-xl-blue-1558","links":{},"stock":{"item_id":1558,"product_id":1558,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xl-blue-1558.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1555","_score":1,"_source":{"id":1555,"sku":"WS12-L-Blue","name":"Radiant Tee-L-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

                  So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                  \n

                  • Salmon soft scoop neck tee.
                  • Athletic, semi-form fit.
                  • Flat seams prevent chafing.
                  • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                  ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"radiant-tee-l-blue-1555","links":{},"stock":{"item_id":1555,"product_id":1555,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-l-blue-1555.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1595","_score":1,"_source":{"id":1595,"sku":"WB01-XS-Gray","name":"Electra Bra Top-XS-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                  \n

                  • Gray rouched bra top.
                  • Attractive back straps feature contrasting motif fabric.
                  • Interior bra top is lined with breathable mesh.
                  • Elastic underband for superior support.
                  • Removable cup inserts.
                  • Chafe-free flat lock seams provide added comfort.

                  ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"electra-bra-top-xs-gray-1595","links":{},"stock":{"item_id":1595,"product_id":1595,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xs-gray-1595.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1587","_score":1,"_source":{"id":1587,"sku":"WS05-L-Black","name":"Desiree Fitness Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                  \n

                  • Short-Sleeves.
                  • Performance fabric.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"desiree-fitness-tee-l-black-1587","links":{},"stock":{"item_id":1587,"product_id":1587,"stock_id":1,"qty":62,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-l-black-1587.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1602","_score":1,"_source":{"id":1602,"sku":"WB01-M-Purple","name":"Electra Bra Top-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                  \n

                  • Gray rouched bra top.
                  • Attractive back straps feature contrasting motif fabric.
                  • Interior bra top is lined with breathable mesh.
                  • Elastic underband for superior support.
                  • Removable cup inserts.
                  • Chafe-free flat lock seams provide added comfort.

                  ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"electra-bra-top-m-purple-1602","links":{},"stock":{"item_id":1602,"product_id":1602,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-m-purple-1602.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1618","_score":1,"_source":{"id":1618,"sku":"WB02-M-Yellow","name":"Erica Evercool Sports Bra-M-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                  \n

                  • Honeycomb light blue bra top.
                  • Elastic hem.
                  • Reinforced binding.
                  • Machine wash/dry.

                  ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erica-evercool-sports-bra-m-yellow-1618","links":{},"stock":{"item_id":1618,"product_id":1618,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-m-yellow-1618.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1605","_score":1,"_source":{"id":1605,"sku":"WB01-L-Purple","name":"Electra Bra Top-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                  \n

                  • Gray rouched bra top.
                  • Attractive back straps feature contrasting motif fabric.
                  • Interior bra top is lined with breathable mesh.
                  • Elastic underband for superior support.
                  • Removable cup inserts.
                  • Chafe-free flat lock seams provide added comfort.

                  ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"electra-bra-top-l-purple-1605","links":{},"stock":{"item_id":1605,"product_id":1605,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-l-purple-1605.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1629","_score":1,"_source":{"id":1629,"sku":"WB03-S-Green","name":"Celeste Sports Bra-S-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                  \n

                  • Mint bra top.
                  • Seam-free interior molded cups
                  • Odor control.
                  • UV protection.
                  • Machine wash/dry.

                  ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"celeste-sports-bra-s-green-1629","links":{},"stock":{"item_id":1629,"product_id":1629,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-s-green-1629.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1628","_score":1,"_source":{"id":1628,"sku":"WB03-XS-Yellow","name":"Celeste Sports Bra-XS-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                  \n

                  • Mint bra top.
                  • Seam-free interior molded cups
                  • Odor control.
                  • UV protection.
                  • Machine wash/dry.

                  ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"celeste-sports-bra-xs-yellow-1628","links":{},"stock":{"item_id":1628,"product_id":1628,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xs-yellow-1628.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1646","_score":1,"_source":{"id":1646,"sku":"WB04-S-Purple","name":"Prima Compete Bra Top-S-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                  `
                  • Colorblocked details.
                  • Machine wash/line dry.

                  ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"prima-compete-bra-top-s-purple-1646","links":{},"stock":{"item_id":1646,"product_id":1646,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-s-purple-1646.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1640","_score":1,"_source":{"id":1640,"sku":"WB03-XL-Yellow","name":"Celeste Sports Bra-XL-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                  \n

                  • Mint bra top.
                  • Seam-free interior molded cups
                  • Odor control.
                  • UV protection.
                  • Machine wash/dry.

                  ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"celeste-sports-bra-xl-yellow-1640","links":{},"stock":{"item_id":1640,"product_id":1640,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xl-yellow-1640.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1632","_score":1,"_source":{"id":1632,"sku":"WB03-M-Green","name":"Celeste Sports Bra-M-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                  \n

                  • Mint bra top.
                  • Seam-free interior molded cups
                  • Odor control.
                  • UV protection.
                  • Machine wash/dry.

                  ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"celeste-sports-bra-m-green-1632","links":{},"stock":{"item_id":1632,"product_id":1632,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-m-green-1632.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1670","_score":1,"_source":{"id":1670,"sku":"WB05-XL-Black","name":"Lucia Cross-Fit Bra -XL-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                  \n

                  • Black/white bra top.
                  • Criss-cross back design.
                  • Machine wash/dry.

                  ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lucia-cross-fit-bra-xl-black-1670","links":{},"stock":{"item_id":1670,"product_id":1670,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xl-black-1670.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1697","_score":1,"_source":{"id":1697,"sku":"WT02-M-Orange","name":"Zoe Tank-M-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                  \n

                  • Salmon heather tank top.
                  • 1\" elastic band on inner bra.
                  • Mesh lining on shelf bra for support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoe-tank-m-orange-1697","links":{},"stock":{"item_id":1697,"product_id":1697,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-m-orange-1697.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1683","_score":1,"_source":{"id":1683,"sku":"WT01-L-Black","name":"Bella Tank-L-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                  \n

                  • Navy blue tank top - cotton.
                  • Feminine scoop neckline.
                  • Power mesh lining in shelf bra for superior support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bella-tank-l-black-1683","links":{},"stock":{"item_id":1683,"product_id":1683,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-l-black-1683.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1655","_score":1,"_source":{"id":1655,"sku":"WB04-XL-Purple","name":"Prima Compete Bra Top-XL-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                  `
                  • Colorblocked details.
                  • Machine wash/line dry.

                  ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"prima-compete-bra-top-xl-purple-1655","links":{},"stock":{"item_id":1655,"product_id":1655,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xl-purple-1655.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1654","_score":1,"_source":{"id":1654,"sku":"WB04-XL-Blue","name":"Prima Compete Bra Top-XL-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                  `
                  • Colorblocked details.
                  • Machine wash/line dry.

                  ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"prima-compete-bra-top-xl-blue-1654","links":{},"stock":{"item_id":1654,"product_id":1654,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xl-blue-1654.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1656","_score":1,"_source":{"id":1656,"sku":"WB04-XL-Yellow","name":"Prima Compete Bra Top-XL-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                  `
                  • Colorblocked details.
                  • Machine wash/line dry.

                  ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"prima-compete-bra-top-xl-yellow-1656","links":{},"stock":{"item_id":1656,"product_id":1656,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xl-yellow-1656.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1661","_score":1,"_source":{"id":1661,"sku":"WB05-S-Black","name":"Lucia Cross-Fit Bra -S-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                  \n

                  • Black/white bra top.
                  • Criss-cross back design.
                  • Machine wash/dry.

                  ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lucia-cross-fit-bra-s-black-1661","links":{},"stock":{"item_id":1661,"product_id":1661,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-s-black-1661.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1701","_score":1,"_source":{"id":1701,"sku":"WT02-L-Yellow","name":"Zoe Tank-L-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                  \n

                  • Salmon heather tank top.
                  • 1\" elastic band on inner bra.
                  • Mesh lining on shelf bra for support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoe-tank-l-yellow-1701","links":{},"stock":{"item_id":1701,"product_id":1701,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-l-yellow-1701.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1709","_score":1,"_source":{"id":1709,"sku":"WT03-S-Orange","name":"Nora Practice Tank-S-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                  \n

                  • Pink stripped tank with side rouching.
                  • Pre-shrunk.
                  • Garment dyed.
                  • 92% Organic Cotton/8% Lycra.

                  ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nora-practice-tank-s-orange-1709","links":{},"stock":{"item_id":1709,"product_id":1709,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-s-orange-1709.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1785","_score":1,"_source":{"id":1785,"sku":"WT07","name":"Maya Tunic","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

                  With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                  \n

                  • Mint green heather tunic-style tank.
                  • Wrapped back with cut out detail.
                  • Drawcord detail at end.
                  • Abutted seams.

                  ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"maya-tunic","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"maya-tunic-1785","links":{},"stock":{"item_id":1785,"product_id":1785,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT07-XS-Green","id":1770,"status":1,"name":"Maya Tunic-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"167","color":"53","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","url_key":"maya-tunic-xs-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-XS-White","id":1771,"status":1,"name":"Maya Tunic-XS-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"167","color":"59","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","url_key":"maya-tunic-xs-white","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-XS-Yellow","id":1772,"status":1,"name":"Maya Tunic-XS-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"167","color":"60","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","url_key":"maya-tunic-xs-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-S-Green","id":1773,"status":1,"name":"Maya Tunic-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"168","color":"53","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","url_key":"maya-tunic-s-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-S-White","id":1774,"status":1,"name":"Maya Tunic-S-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"168","color":"59","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","url_key":"maya-tunic-s-white","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-S-Yellow","id":1775,"status":1,"name":"Maya Tunic-S-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"168","color":"60","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","url_key":"maya-tunic-s-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-M-Green","id":1776,"status":1,"name":"Maya Tunic-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"169","color":"53","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","url_key":"maya-tunic-m-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-M-White","id":1777,"status":1,"name":"Maya Tunic-M-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"169","color":"59","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","url_key":"maya-tunic-m-white","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-M-Yellow","id":1778,"status":1,"name":"Maya Tunic-M-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"169","color":"60","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","url_key":"maya-tunic-m-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-L-Green","id":1779,"status":1,"name":"Maya Tunic-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"170","color":"53","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","url_key":"maya-tunic-l-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-L-White","id":1780,"status":1,"name":"Maya Tunic-L-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"170","color":"59","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","url_key":"maya-tunic-l-white","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-L-Yellow","id":1781,"status":1,"name":"Maya Tunic-L-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"170","color":"60","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","url_key":"maya-tunic-l-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-XL-Green","id":1782,"status":1,"name":"Maya Tunic-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"171","color":"53","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","url_key":"maya-tunic-xl-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-XL-White","id":1783,"status":1,"name":"Maya Tunic-XL-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"171","color":"59","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","url_key":"maya-tunic-xl-white","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT07-XL-Yellow","id":1784,"status":1,"name":"Maya Tunic-XL-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"171","color":"60","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","url_key":"maya-tunic-xl-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":241,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":1785,"attribute_code":"color"},{"id":240,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1785,"attribute_code":"size"}],"color_options":[53,59,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-1785.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1766","_score":1,"_source":{"id":1766,"sku":"WT06-XL-Blue","name":"Chloe Compete Tank-XL-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                  \n

                  • Royal blue tank top - nylon/spandex.
                  • Flatlock stitching.
                  • Moisture-wicking fabric.
                  • Ergonomic seaming.
                  • Machine wash/dry.

                  ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chloe-compete-tank-xl-blue-1766","links":{},"stock":{"item_id":1766,"product_id":1766,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xl-blue-1766.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1771","_score":1,"_source":{"id":1771,"sku":"WT07-XS-White","name":"Maya Tunic-XS-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                  \n

                  • Mint green heather tunic-style tank.
                  • Wrapped back with cut out detail.
                  • Drawcord detail at end.
                  • Abutted seams.

                  ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"maya-tunic-xs-white-1771","links":{},"stock":{"item_id":1771,"product_id":1771,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xs-white-1771.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1772","_score":1,"_source":{"id":1772,"sku":"WT07-XS-Yellow","name":"Maya Tunic-XS-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                  \n

                  • Mint green heather tunic-style tank.
                  • Wrapped back with cut out detail.
                  • Drawcord detail at end.
                  • Abutted seams.

                  ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"maya-tunic-xs-yellow-1772","links":{},"stock":{"item_id":1772,"product_id":1772,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xs-yellow-1772.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1790","_score":1,"_source":{"id":1790,"sku":"WT08-S-Purple","name":"Antonia Racer Tank-S-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                  You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                  \n

                  • Machine wash.
                  • Line dry.

                  ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"antonia-racer-tank-s-purple-1790","links":{},"stock":{"item_id":1790,"product_id":1790,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-s-purple-1790.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1777","_score":1,"_source":{"id":1777,"sku":"WT07-M-White","name":"Maya Tunic-M-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                  \n

                  • Mint green heather tunic-style tank.
                  • Wrapped back with cut out detail.
                  • Drawcord detail at end.
                  • Abutted seams.

                  ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"maya-tunic-m-white-1777","links":{},"stock":{"item_id":1777,"product_id":1777,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-m-white-1777.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1712","_score":1,"_source":{"id":1712,"sku":"WT03-M-Orange","name":"Nora Practice Tank-M-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                  \n

                  • Pink stripped tank with side rouching.
                  • Pre-shrunk.
                  • Garment dyed.
                  • 92% Organic Cotton/8% Lycra.

                  ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nora-practice-tank-m-orange-1712","links":{},"stock":{"item_id":1712,"product_id":1712,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-m-orange-1712.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1717","_score":1,"_source":{"id":1717,"sku":"WT03-L-Red","name":"Nora Practice Tank-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                  \n

                  • Pink stripped tank with side rouching.
                  • Pre-shrunk.
                  • Garment dyed.
                  • 92% Organic Cotton/8% Lycra.

                  ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nora-practice-tank-l-red-1717","links":{},"stock":{"item_id":1717,"product_id":1717,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-l-red-1717.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1723","_score":1,"_source":{"id":1723,"sku":"WT04-XS-Purple","name":"Nona Fitness Tank-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                  \n

                  • Blue/white striped mesh tank.
                  • Relaxed fit.
                  • Chafe-resistant trim around armholes and collar.
                  • Machine wash/dry.

                  ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nona-fitness-tank-xs-purple-1723","links":{},"stock":{"item_id":1723,"product_id":1723,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xs-purple-1723.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1718","_score":1,"_source":{"id":1718,"sku":"WT03-XL-Orange","name":"Nora Practice Tank-XL-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                  \n

                  • Pink stripped tank with side rouching.
                  • Pre-shrunk.
                  • Garment dyed.
                  • 92% Organic Cotton/8% Lycra.

                  ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nora-practice-tank-xl-orange-1718","links":{},"stock":{"item_id":1718,"product_id":1718,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xl-orange-1718.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1726","_score":1,"_source":{"id":1726,"sku":"WT04-S-Purple","name":"Nona Fitness Tank-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                  \n

                  • Blue/white striped mesh tank.
                  • Relaxed fit.
                  • Chafe-resistant trim around armholes and collar.
                  • Machine wash/dry.

                  ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nona-fitness-tank-s-purple-1726","links":{},"stock":{"item_id":1726,"product_id":1726,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-s-purple-1726.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1732","_score":1,"_source":{"id":1732,"sku":"WT04-L-Purple","name":"Nona Fitness Tank-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                  \n

                  • Blue/white striped mesh tank.
                  • Relaxed fit.
                  • Chafe-resistant trim around armholes and collar.
                  • Machine wash/dry.

                  ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nona-fitness-tank-l-purple-1732","links":{},"stock":{"item_id":1732,"product_id":1732,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-l-purple-1732.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1742","_score":1,"_source":{"id":1742,"sku":"WT05-S-Purple","name":"Leah Yoga Top-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                  \n

                  • Blue heather rouched tank top.
                  • Camisole tank top.
                  • Banding and shirring details.
                  • Body hugging fit.
                  • Contrast topstitch.
                  • Interior shelf bra with shapewear technology.
                  • 65% Polyester 35% Cotton.

                  ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"leah-yoga-top-s-purple-1742","links":{},"stock":{"item_id":1742,"product_id":1742,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-s-purple-1742.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1733","_score":1,"_source":{"id":1733,"sku":"WT04-L-Red","name":"Nona Fitness Tank-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                  \n

                  • Blue/white striped mesh tank.
                  • Relaxed fit.
                  • Chafe-resistant trim around armholes and collar.
                  • Machine wash/dry.

                  ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nona-fitness-tank-l-red-1733","links":{},"stock":{"item_id":1733,"product_id":1733,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-l-red-1733.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1825","_score":1,"_source":{"id":1825,"sku":"WP02-28-Blue","name":"Emma Leggings-28-Blue","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                  \n

                  • Light blue heather yoga pants.
                  • Body hugging fit.
                  • Low rise fit.

                  ","image":"/w/p/wp02-blue_main.jpg","small_image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"emma-leggings-28-blue-1825","links":{},"stock":{"item_id":1825,"product_id":1825,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp02-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-28-blue-1825.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1837","_score":1,"_source":{"id":1837,"sku":"WP03-29-Purple","name":"Ida Workout Parachute Pant-29-Purple","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                  \n

                  • Royal blue parachute pants.
                  • Contrast stripe.
                  • Relaxed fit.
                  • Drawstring closure.
                  • Machine wash/dry.

                  ","image":"/w/p/wp03-purple_main.jpg","small_image":"/w/p/wp03-purple_main.jpg","thumbnail":"/w/p/wp03-purple_main.jpg","color":"57","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ida-workout-parachute-pant-29-purple-1837","links":{},"stock":{"item_id":1837,"product_id":1837,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-29-purple-1837.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1758","_score":1,"_source":{"id":1758,"sku":"WT06-S-Red","name":"Chloe Compete Tank-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                  \n

                  • Royal blue tank top - nylon/spandex.
                  • Flatlock stitching.
                  • Moisture-wicking fabric.
                  • Ergonomic seaming.
                  • Machine wash/dry.

                  ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chloe-compete-tank-s-red-1758","links":{},"stock":{"item_id":1758,"product_id":1758,"stock_id":1,"qty":45,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-s-red-1758.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1765","_score":1,"_source":{"id":1765,"sku":"WT06-L-Yellow","name":"Chloe Compete Tank-L-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                  \n

                  • Royal blue tank top - nylon/spandex.
                  • Flatlock stitching.
                  • Moisture-wicking fabric.
                  • Ergonomic seaming.
                  • Machine wash/dry.

                  ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chloe-compete-tank-l-yellow-1765","links":{},"stock":{"item_id":1765,"product_id":1765,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-l-yellow-1765.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1795","_score":1,"_source":{"id":1795,"sku":"WT08-L-Black","name":"Antonia Racer Tank-L-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                  You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                  \n

                  • Machine wash.
                  • Line dry.

                  ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"antonia-racer-tank-l-black-1795","links":{},"stock":{"item_id":1795,"product_id":1795,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-l-black-1795.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1804","_score":1,"_source":{"id":1804,"sku":"WT09-XS-Yellow","name":"Breathe-Easy Tank-XS-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                  The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                  \n

                  • Machine wash/dry.
                  • Cocona® fabric.

                  ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"breathe-easy-tank-xs-yellow-1804","links":{},"stock":{"item_id":1804,"product_id":1804,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xs-yellow-1804.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1849","_score":1,"_source":{"id":1849,"sku":"WP05-29-Blue","name":"Sahara Leggings-29-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                  Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                  \n

                  • Pinstripe legging with rouched ankles.
                  • Secret pocket at waistband.
                  • Flat seams for comfort.
                  • Shaped fit with low rise.
                  • 4-way stretch, moisture-wicking material.

                  ","image":"/w/p/wp05-blue_main.jpg","small_image":"/w/p/wp05-blue_main.jpg","thumbnail":"/w/p/wp05-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sahara-leggings-29-blue-1849","links":{},"stock":{"item_id":1849,"product_id":1849,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-29-blue-1849.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1831","_score":1,"_source":{"id":1831,"sku":"WP02","name":"Emma Leggings","attribute_set_id":10,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":42,"description":"

                  These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                  \n

                  • Light blue heather yoga pants.
                  • Body hugging fit.
                  • Low rise fit.

                  ","image":"/w/p/wp02-blue_main.jpg","small_image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"emma-leggings","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"113","pattern":"197","climate":[204,205,206,208],"slug":"emma-leggings-1831","links":{},"stock":{"item_id":1831,"product_id":1831,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp02-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP02-28-Blue","id":1825,"status":1,"name":"Emma Leggings-28-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"50","image":"/w/p/wp02-blue_main.jpg","small_image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","url_key":"emma-leggings-28-blue","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WP02-28-Purple","id":1826,"status":1,"name":"Emma Leggings-28-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"57","image":"/w/p/wp02-purple_main.jpg","small_image":"/w/p/wp02-purple_main.jpg","thumbnail":"/w/p/wp02-purple_main.jpg","url_key":"emma-leggings-28-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WP02-28-Red","id":1827,"status":1,"name":"Emma Leggings-28-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"58","image":"/w/p/wp02-red_main.jpg","small_image":"/w/p/wp02-red_main.jpg","thumbnail":"/w/p/wp02-red_main.jpg","url_key":"emma-leggings-28-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WP02-29-Blue","id":1828,"status":1,"name":"Emma Leggings-29-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"50","image":"/w/p/wp02-blue_main.jpg","small_image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","url_key":"emma-leggings-29-blue","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WP02-29-Purple","id":1829,"status":1,"name":"Emma Leggings-29-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"57","image":"/w/p/wp02-purple_main.jpg","small_image":"/w/p/wp02-purple_main.jpg","thumbnail":"/w/p/wp02-purple_main.jpg","url_key":"emma-leggings-29-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WP02-29-Red","id":1830,"status":1,"name":"Emma Leggings-29-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"58","image":"/w/p/wp02-red_main.jpg","small_image":"/w/p/wp02-red_main.jpg","thumbnail":"/w/p/wp02-red_main.jpg","url_key":"emma-leggings-29-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001}],"configurable_options":[{"id":249,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1831,"attribute_code":"color"},{"id":248,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1831,"attribute_code":"size"}],"color_options":[50,57,58],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-1831.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1901","_score":1,"_source":{"id":1901,"sku":"WP12","name":"Deirdre Relaxed-Fit Capri","attribute_set_id":10,"price":63,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":63,"description":"

                  Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                  \n

                  • Heather gray capris with mint green waist & accents.
                  • Comfortable, relaxed fit with high rise.
                  • Moisture-wicking, 4-way stretch construction.
                  • Lined with mesh for better support.
                  • Hidden pocket at waistband.
                  • Flatlock seams and lined gusset for comfort.

                  ","image":"/w/p/wp12-gray_main.jpg","small_image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"deirdre-relaxed-fit-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154,39],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"107","pattern":"195","climate":[205,212,206],"slug":"deirdre-relaxed-fit-capri-1901","links":{},"stock":{"item_id":1901,"product_id":1901,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP12-28-Blue","id":1895,"status":1,"name":"Deirdre Relaxed-Fit Capri-28-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"50","image":"/w/p/wp12-blue_main.jpg","small_image":"/w/p/wp12-blue_main.jpg","thumbnail":"/w/p/wp12-blue_main.jpg","url_key":"deirdre-relaxed-fit-capri-28-blue","msrp_display_actual_price_type":"0"},{"sku":"WP12-28-Gray","id":1896,"status":1,"name":"Deirdre Relaxed-Fit Capri-28-Gray","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"52","image":"/w/p/wp12-gray_main.jpg","small_image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","url_key":"deirdre-relaxed-fit-capri-28-gray","msrp_display_actual_price_type":"0"},{"sku":"WP12-28-Green","id":1897,"status":1,"name":"Deirdre Relaxed-Fit Capri-28-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"53","image":"/w/p/wp12-green_main.jpg","small_image":"/w/p/wp12-green_main.jpg","thumbnail":"/w/p/wp12-green_main.jpg","url_key":"deirdre-relaxed-fit-capri-28-green","msrp_display_actual_price_type":"0"},{"sku":"WP12-29-Blue","id":1898,"status":1,"name":"Deirdre Relaxed-Fit Capri-29-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"50","image":"/w/p/wp12-blue_main.jpg","small_image":"/w/p/wp12-blue_main.jpg","thumbnail":"/w/p/wp12-blue_main.jpg","url_key":"deirdre-relaxed-fit-capri-29-blue","msrp_display_actual_price_type":"0"},{"sku":"WP12-29-Gray","id":1899,"status":1,"name":"Deirdre Relaxed-Fit Capri-29-Gray","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"52","image":"/w/p/wp12-gray_main.jpg","small_image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","url_key":"deirdre-relaxed-fit-capri-29-gray","msrp_display_actual_price_type":"0"},{"sku":"WP12-29-Green","id":1900,"status":1,"name":"Deirdre Relaxed-Fit Capri-29-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"53","image":"/w/p/wp12-green_main.jpg","small_image":"/w/p/wp12-green_main.jpg","thumbnail":"/w/p/wp12-green_main.jpg","url_key":"deirdre-relaxed-fit-capri-29-green","msrp_display_actual_price_type":"0"}],"configurable_options":[{"id":269,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":1901,"attribute_code":"color"},{"id":268,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1901,"attribute_code":"size"}],"color_options":[50,52,53],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-1901.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1912","_score":1,"_source":{"id":1912,"sku":"WSH01-29-Black","name":"Fiona Fitness Short-29-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                  \n

                  • Black run shorts
                  - cotton/spandex.
                  • 5” inseam.
                  • Machine wash/Line dry.

                  ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"fiona-fitness-short-29-black-1912","links":{},"stock":{"item_id":1912,"product_id":1912,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-29-black-1912.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1902","_score":1,"_source":{"id":1902,"sku":"WP13-28-Blue","name":"Portia Capri-28-Blue","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                  From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                  \n

                  • Salmon heather capri sweats.
                  • Relaxed fit, high waist.
                  • Inseam: 21\".
                  • Wide elastic waistband.
                  • Machine wash/dry.

                  ","image":"/w/p/wp13-blue_main.jpg","small_image":"/w/p/wp13-blue_main.jpg","thumbnail":"/w/p/wp13-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"portia-capri-28-blue-1902","links":{},"stock":{"item_id":1902,"product_id":1902,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-28-blue-1902.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1928","_score":1,"_source":{"id":1928,"sku":"WSH02-29-Gray","name":"Maxima Drawstring Short-29-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                  \n

                  • Light gray run shorts
                  - cotton polyester.
                  • Contrast binding.
                  • 3\" inseam.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"maxima-drawstring-short-29-gray-1928","links":{},"stock":{"item_id":1928,"product_id":1928,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-29-gray-1928.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1911","_score":1,"_source":{"id":1911,"sku":"WSH01-28-Red","name":"Fiona Fitness Short-28-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                  \n

                  • Black run shorts
                  - cotton/spandex.
                  • 5” inseam.
                  • Machine wash/Line dry.

                  ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"fiona-fitness-short-28-red-1911","links":{},"stock":{"item_id":1911,"product_id":1911,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-28-red-1911.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1905","_score":1,"_source":{"id":1905,"sku":"WP13-29-Blue","name":"Portia Capri-29-Blue","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                  From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                  \n

                  • Salmon heather capri sweats.
                  • Relaxed fit, high waist.
                  • Inseam: 21\".
                  • Wide elastic waistband.
                  • Machine wash/dry.

                  ","image":"/w/p/wp13-blue_main.jpg","small_image":"/w/p/wp13-blue_main.jpg","thumbnail":"/w/p/wp13-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"portia-capri-29-blue-1905","links":{},"stock":{"item_id":1905,"product_id":1905,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-29-blue-1905.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1951","_score":1,"_source":{"id":1951,"sku":"WSH03-31-Gray","name":"Gwen Drawstring Bike Short-31-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

                  For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                  \n

                  • Dark heather gray rouched bike shorts.
                  • Fitted. Inseam: 2\".
                  • Machine wash/dry.

                  ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-31-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"gwen-drawstring-bike-short-31-gray-1951","links":{},"stock":{"item_id":1951,"product_id":1951,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-31-gray-1951.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1968","_score":1,"_source":{"id":1968,"sku":"WSH04-31-Orange","name":"Artemis Running Short-31-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                  \n

                  • Black rouched shorts with mint waist.
                  • Soft, lightweight construction.
                  • LumaTech™ wicking technology.
                  • Semi-fitted.

                  ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-31-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"artemis-running-short-31-orange-1968","links":{},"stock":{"item_id":1968,"product_id":1968,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-31-orange-1968.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1964","_score":1,"_source":{"id":1964,"sku":"WSH04-30-Green","name":"Artemis Running Short-30-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                  \n

                  • Black rouched shorts with mint waist.
                  • Soft, lightweight construction.
                  • LumaTech™ wicking technology.
                  • Semi-fitted.

                  ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-30-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"artemis-running-short-30-green-1964","links":{},"stock":{"item_id":1964,"product_id":1964,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-30-green-1964.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1977","_score":1,"_source":{"id":1977,"sku":"WSH05-29-Purple","name":"Bess Yoga Short-29-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                  \n

                  • Navy cotton shorts with light bue waist detail.
                  • Front shirred waistband.
                  • Flat-lock, chafe-free side seams.
                  • Vented gusset.
                  • Hidden interior pocket.
                  • Sustainable and recycled fabric.

                  ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bess-yoga-short-29-purple-1977","links":{},"stock":{"item_id":1977,"product_id":1977,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-29-purple-1977.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1936","_score":1,"_source":{"id":1936,"sku":"WSH02-31-Yellow","name":"Maxima Drawstring Short-31-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                  \n

                  • Light gray run shorts
                  - cotton polyester.
                  • Contrast binding.
                  • 3\" inseam.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-31-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"maxima-drawstring-short-31-yellow-1936","links":{},"stock":{"item_id":1936,"product_id":1936,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-31-yellow-1936.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1933","_score":1,"_source":{"id":1933,"sku":"WSH02-30-Yellow","name":"Maxima Drawstring Short-30-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                  \n

                  • Light gray run shorts
                  - cotton polyester.
                  • Contrast binding.
                  • 3\" inseam.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-30-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"maxima-drawstring-short-30-yellow-1933","links":{},"stock":{"item_id":1933,"product_id":1933,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-30-yellow-1933.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1935","_score":1,"_source":{"id":1935,"sku":"WSH02-31-Orange","name":"Maxima Drawstring Short-31-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                  \n

                  • Light gray run shorts
                  - cotton polyester.
                  • Contrast binding.
                  • 3\" inseam.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-31-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"maxima-drawstring-short-31-orange-1935","links":{},"stock":{"item_id":1935,"product_id":1935,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-31-orange-1935.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1948","_score":1,"_source":{"id":1948,"sku":"WSH03-30-Gray","name":"Gwen Drawstring Bike Short-30-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

                  For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                  \n

                  • Dark heather gray rouched bike shorts.
                  • Fitted. Inseam: 2\".
                  • Machine wash/dry.

                  ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-30-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"gwen-drawstring-bike-short-30-gray-1948","links":{},"stock":{"item_id":1948,"product_id":1948,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-30-gray-1948.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1870","_score":1,"_source":{"id":1870,"sku":"WP08-29-Black","name":"Bardot Capri-29-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                  \n

                  • Black capris with pink waistband.
                  • Cropped leggings.
                  • Waistband drawcord.
                  • Flat, thin and flattering.
                  • Made with organic fabric.

                  ","image":"/w/p/wp08-black_main.jpg","small_image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bardot-capri-29-black-1870","links":{},"stock":{"item_id":1870,"product_id":1870,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-29-black-1870.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1871","_score":1,"_source":{"id":1871,"sku":"WP08-29-Green","name":"Bardot Capri-29-Green","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                  \n

                  • Black capris with pink waistband.
                  • Cropped leggings.
                  • Waistband drawcord.
                  • Flat, thin and flattering.
                  • Made with organic fabric.

                  ","image":"/w/p/wp08-green_main.jpg","small_image":"/w/p/wp08-green_main.jpg","thumbnail":"/w/p/wp08-green_main.jpg","color":"53","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bardot-capri-29-green-1871","links":{},"stock":{"item_id":1871,"product_id":1871,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-29-green-1871.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1883","_score":1,"_source":{"id":1883,"sku":"WP10-28-White","name":"Daria Bikram Pant-28-White","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                  \n

                  • Heather gray capris with pink striped waist.
                  • Flatlock seams.
                  • Interior pocket.

                  ","image":"/w/p/wp10-white_main.jpg","small_image":"/w/p/wp10-white_main.jpg","thumbnail":"/w/p/wp10-white_main.jpg","color":"59","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"daria-bikram-pant-28-white-1883","links":{},"stock":{"item_id":1883,"product_id":1883,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-28-white-1883.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1941","_score":1,"_source":{"id":1941,"sku":"WSH03-28-Blue","name":"Gwen Drawstring Bike Short-28-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

                  For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                  \n

                  • Dark heather gray rouched bike shorts.
                  • Fitted. Inseam: 2\".
                  • Machine wash/dry.

                  ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"gwen-drawstring-bike-short-28-blue-1941","links":{},"stock":{"item_id":1941,"product_id":1941,"stock_id":1,"qty":41,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-28-blue-1941.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1942","_score":1,"_source":{"id":1942,"sku":"WSH03-28-Gray","name":"Gwen Drawstring Bike Short-28-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

                  For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                  \n

                  • Dark heather gray rouched bike shorts.
                  • Fitted. Inseam: 2\".
                  • Machine wash/dry.

                  ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"gwen-drawstring-bike-short-28-gray-1942","links":{},"stock":{"item_id":1942,"product_id":1942,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-28-gray-1942.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1943","_score":1,"_source":{"id":1943,"sku":"WSH03-28-Orange","name":"Gwen Drawstring Bike Short-28-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

                  For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                  \n

                  • Dark heather gray rouched bike shorts.
                  • Fitted. Inseam: 2\".
                  • Machine wash/dry.

                  ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"gwen-drawstring-bike-short-28-orange-1943","links":{},"stock":{"item_id":1943,"product_id":1943,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-28-orange-1943.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1891","_score":1,"_source":{"id":1891,"sku":"WP11-29-Blue","name":"Sylvia Capri-29-Blue","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                  \n

                  • Green striped capri.
                  • Strategic side seam
                  • Comfort gusset with lining.
                  • Flat seaming.
                  • Wide waistband.
                  • Moisture wicking.

                  ","image":"/w/p/wp11-blue_main.jpg","small_image":"/w/p/wp11-blue_main.jpg","thumbnail":"/w/p/wp11-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sylvia-capri-29-blue-1891","links":{},"stock":{"item_id":1891,"product_id":1891,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-29-blue-1891.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1885","_score":1,"_source":{"id":1885,"sku":"WP10-29-Gray","name":"Daria Bikram Pant-29-Gray","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                  \n

                  • Heather gray capris with pink striped waist.
                  • Flatlock seams.
                  • Interior pocket.

                  ","image":"/w/p/wp10-gray_main.jpg","small_image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","color":"52","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"daria-bikram-pant-29-gray-1885","links":{},"stock":{"item_id":1885,"product_id":1885,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-29-gray-1885.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1858","_score":1,"_source":{"id":1858,"sku":"WP06-29-Orange","name":"Diana Tights-29-Orange","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                  \n

                  • Black legging with slate details.
                  • Flat-lock, chafe-free side seams.
                  • Vented gusset.
                  • Secret interior pocket.
                  • Sustainable and recycled fabric.

                  ","image":"/w/p/wp06-orange_main.jpg","small_image":"/w/p/wp06-orange_main.jpg","thumbnail":"/w/p/wp06-orange_main.jpg","color":"56","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"diana-tights-29-orange-1858","links":{},"stock":{"item_id":1858,"product_id":1858,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-29-orange-1858.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1970","_score":1,"_source":{"id":1970,"sku":"WSH04-32-Green","name":"Artemis Running Short-32-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                  \n

                  • Black rouched shorts with mint waist.
                  • Soft, lightweight construction.
                  • LumaTech™ wicking technology.
                  • Semi-fitted.

                  ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"artemis-running-short-32-green-1970","links":{},"stock":{"item_id":1970,"product_id":1970,"stock_id":1,"qty":52,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-32-green-1970.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1954","_score":1,"_source":{"id":1954,"sku":"WSH03-32-Gray","name":"Gwen Drawstring Bike Short-32-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

                  For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                  \n

                  • Dark heather gray rouched bike shorts.
                  • Fitted. Inseam: 2\".
                  • Machine wash/dry.

                  ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"gwen-drawstring-bike-short-32-gray-1954","links":{},"stock":{"item_id":1954,"product_id":1954,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-32-gray-1954.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1978","_score":1,"_source":{"id":1978,"sku":"WSH05-29-Yellow","name":"Bess Yoga Short-29-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                  \n

                  • Navy cotton shorts with light bue waist detail.
                  • Front shirred waistband.
                  • Flat-lock, chafe-free side seams.
                  • Vented gusset.
                  • Hidden interior pocket.
                  • Sustainable and recycled fabric.

                  ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-29-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bess-yoga-short-29-yellow-1978","links":{},"stock":{"item_id":1978,"product_id":1978,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-29-yellow-1978.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1974","_score":1,"_source":{"id":1974,"sku":"WSH05-28-Purple","name":"Bess Yoga Short-28-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                  \n

                  • Navy cotton shorts with light bue waist detail.
                  • Front shirred waistband.
                  • Flat-lock, chafe-free side seams.
                  • Vented gusset.
                  • Hidden interior pocket.
                  • Sustainable and recycled fabric.

                  ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bess-yoga-short-28-purple-1974","links":{},"stock":{"item_id":1974,"product_id":1974,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-28-purple-1974.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1996","_score":1,"_source":{"id":1996,"sku":"WSH07-28-Black","name":"Echo Fit Compression Short-28-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                  \n

                  • Black compression shorts.
                  • High-waisted cut.
                  • Compression fit.
                  • Inseam: 1.0\".
                  • Machine wash/dry.

                  ","image":"/w/s/wsh07-black_main.jpg","small_image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","color":"49","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"echo-fit-compression-short-28-black-1996","links":{},"stock":{"item_id":1996,"product_id":1996,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh07-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-28-black-1996.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1980","_score":1,"_source":{"id":1980,"sku":"WSH05-30-Purple","name":"Bess Yoga Short-30-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                  \n

                  • Navy cotton shorts with light bue waist detail.
                  • Front shirred waistband.
                  • Flat-lock, chafe-free side seams.
                  • Vented gusset.
                  • Hidden interior pocket.
                  • Sustainable and recycled fabric.

                  ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-30-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"bess-yoga-short-30-purple-1980","links":{},"stock":{"item_id":1980,"product_id":1980,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-30-purple-1980.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1983","_score":1,"_source":{"id":1983,"sku":"WSH05-31-Purple","name":"Bess Yoga Short-31-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                  \n

                  • Navy cotton shorts with light bue waist detail.
                  • Front shirred waistband.
                  • Flat-lock, chafe-free side seams.
                  • Vented gusset.
                  • Hidden interior pocket.
                  • Sustainable and recycled fabric.

                  ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-31-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"bess-yoga-short-31-purple-1983","links":{},"stock":{"item_id":1983,"product_id":1983,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-31-purple-1983.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1988","_score":1,"_source":{"id":1988,"sku":"WSH05","name":"Bess Yoga Short","attribute_set_id":10,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":28,"description":"

                  Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                  \n

                  • Navy cotton shorts with light bue waist detail.
                  • Front shirred waistband.
                  • Flat-lock, chafe-free side seams.
                  • Vented gusset.
                  • Hidden interior pocket.
                  • Sustainable and recycled fabric.

                  ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"bess-yoga-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,156,36],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_bottom":"106","pattern":"198","climate":[202,212,209],"slug":"bess-yoga-short-1988","links":{},"stock":{"item_id":1988,"product_id":1988,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH05-28-Blue","id":1973,"status":1,"name":"Bess Yoga Short-28-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"172","color":"50","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","url_key":"bess-yoga-short-28-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-28-Purple","id":1974,"status":1,"name":"Bess Yoga Short-28-Purple","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"172","color":"57","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","url_key":"bess-yoga-short-28-purple","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-28-Yellow","id":1975,"status":1,"name":"Bess Yoga Short-28-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"172","color":"60","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","url_key":"bess-yoga-short-28-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-29-Blue","id":1976,"status":1,"name":"Bess Yoga Short-29-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"173","color":"50","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","url_key":"bess-yoga-short-29-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-29-Purple","id":1977,"status":1,"name":"Bess Yoga Short-29-Purple","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"173","color":"57","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","url_key":"bess-yoga-short-29-purple","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-29-Yellow","id":1978,"status":1,"name":"Bess Yoga Short-29-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"173","color":"60","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","url_key":"bess-yoga-short-29-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-30-Blue","id":1979,"status":1,"name":"Bess Yoga Short-30-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"174","color":"50","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","url_key":"bess-yoga-short-30-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-30-Purple","id":1980,"status":1,"name":"Bess Yoga Short-30-Purple","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"174","color":"57","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","url_key":"bess-yoga-short-30-purple","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-30-Yellow","id":1981,"status":1,"name":"Bess Yoga Short-30-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"174","color":"60","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","url_key":"bess-yoga-short-30-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-31-Blue","id":1982,"status":1,"name":"Bess Yoga Short-31-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"175","color":"50","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","url_key":"bess-yoga-short-31-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-31-Purple","id":1983,"status":1,"name":"Bess Yoga Short-31-Purple","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"175","color":"57","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","url_key":"bess-yoga-short-31-purple","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-31-Yellow","id":1984,"status":1,"name":"Bess Yoga Short-31-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"175","color":"60","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","url_key":"bess-yoga-short-31-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-32-Blue","id":1985,"status":1,"name":"Bess Yoga Short-32-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"176","color":"50","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","url_key":"bess-yoga-short-32-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-32-Purple","id":1986,"status":1,"name":"Bess Yoga Short-32-Purple","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"176","color":"57","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","url_key":"bess-yoga-short-32-purple","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH05-32-Yellow","id":1987,"status":1,"name":"Bess Yoga Short-32-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"176","color":"60","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","url_key":"bess-yoga-short-32-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001}],"configurable_options":[{"id":281,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"},{"value_index":60,"label":"Yellow"}],"product_id":1988,"attribute_code":"color"},{"id":280,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1988,"attribute_code":"size"}],"color_options":[50,57,60],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-1988.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2001","_score":1,"_source":{"id":2001,"sku":"WSH07-29-Purple","name":"Echo Fit Compression Short-29-Purple","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                  \n

                  • Black compression shorts.
                  • High-waisted cut.
                  • Compression fit.
                  • Inseam: 1.0\".
                  • Machine wash/dry.

                  ","image":"/w/s/wsh07-purple_main.jpg","small_image":"/w/s/wsh07-purple_main.jpg","thumbnail":"/w/s/wsh07-purple_main.jpg","color":"57","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"echo-fit-compression-short-29-purple-2001","links":{},"stock":{"item_id":2001,"product_id":2001,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-29-purple-2001.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2004","_score":1,"_source":{"id":2004,"sku":"WSH08-29-Purple","name":"Sybil Running Short-29-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

                  Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

                  \n

                  • Blue running shorts with green waist.
                  • Drawstring-adjustable waist.
                  • 4\" inseam. Machine wash/line dry.

                  ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sybil-running-short-29-purple-2004","links":{},"stock":{"item_id":2004,"product_id":2004,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-29-purple-2004.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2005","_score":1,"_source":{"id":2005,"sku":"WSH08-30-Purple","name":"Sybil Running Short-30-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

                  Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

                  \n

                  • Blue running shorts with green waist.
                  • Drawstring-adjustable waist.
                  • 4\" inseam. Machine wash/line dry.

                  ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-30-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"sybil-running-short-30-purple-2005","links":{},"stock":{"item_id":2005,"product_id":2005,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-30-purple-2005.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2018","_score":1,"_source":{"id":2018,"sku":"WSH10-28-White","name":"Ana Running Short-28-White","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":49.200001,"description":"

                  Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                  \n

                  • Black/pink two-layer shorts.
                  • Low-rise elastic waistband.
                  • Relaxed fit.
                  • Ultra-lightweight fabric.
                  • Internal drawstring.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh10-white_main.jpg","small_image":"/w/s/wsh10-white_main.jpg","thumbnail":"/w/s/wsh10-white_main.jpg","color":"59","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ana-running-short-28-white-2018","links":{},"stock":{"item_id":2018,"product_id":2018,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-28-white-2018.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2010","_score":1,"_source":{"id":2010,"sku":"WSH09-28-Green","name":"Mimi All-Purpose Short-28-Green","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

                  You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                  \n

                  • Gray/seafoam two-layer shorts.
                  • Water-resistant construction.
                  • Inner mesh brief for breathable support.
                  • 2.0\" inseam.
                  • Reflective trim for visibility.

                  ","image":"/w/s/wsh09-green_main.jpg","small_image":"/w/s/wsh09-green_main.jpg","thumbnail":"/w/s/wsh09-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"mimi-all-purpose-short-28-green-2010","links":{},"stock":{"item_id":2010,"product_id":2010,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-28-green-2010.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2026","_score":1,"_source":{"id":2026,"sku":"WSH11-29-Blue","name":"Ina Compression Short-29-Blue","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                  One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                  \n

                  • Royal blue bike shorts.
                  • Compression fit.
                  • Moisture-wicking.
                  • Anti-microbial.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh11-blue_main.jpg","small_image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","color":"50","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ina-compression-short-29-blue-2026","links":{},"stock":{"item_id":2026,"product_id":2026,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-29-blue-2026.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2041","_score":1,"_source":{"id":2041,"sku":"WSH12-31-Red","name":"Erika Running Short-31-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                  \n

                  • Seafoam pattern running shorts.
                  • Elastic waistband.
                  • Snug fit.
                  • 4'' inseam.
                  • 76% premium brushed Nylon / 24% Spandex.

                  ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-31-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"erika-running-short-31-red-2041","links":{},"stock":{"item_id":2041,"product_id":2041,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-31-red-2041.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2029","_score":1,"_source":{"id":2029,"sku":"WSH11","name":"Ina Compression Short","attribute_set_id":10,"price":49,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":49,"description":"

                  One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                  \n

                  • Royal blue bike shorts.
                  • Compression fit.
                  • Moisture-wicking.
                  • Anti-microbial.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh11-blue_main.jpg","small_image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ina-compression-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,151],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"0","style_bottom":[112,105,108],"pattern":"197","climate":[202,212,209],"slug":"ina-compression-short-2029","links":{},"stock":{"item_id":2029,"product_id":2029,"stock_id":1,"qty":9,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH11-28-Blue","id":2023,"status":1,"name":"Ina Compression Short-28-Blue","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"172","color":"50","image":"/w/s/wsh11-blue_main.jpg","small_image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","url_key":"ina-compression-short-28-blue","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"WSH11-28-Orange","id":2024,"status":1,"name":"Ina Compression Short-28-Orange","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"172","color":"56","image":"/w/s/wsh11-orange_main.jpg","small_image":"/w/s/wsh11-orange_main.jpg","thumbnail":"/w/s/wsh11-orange_main.jpg","url_key":"ina-compression-short-28-orange","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"WSH11-28-Red","id":2025,"status":1,"name":"Ina Compression Short-28-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"172","color":"58","image":"/w/s/wsh11-red_main.jpg","small_image":"/w/s/wsh11-red_main.jpg","thumbnail":"/w/s/wsh11-red_main.jpg","url_key":"ina-compression-short-28-red","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"WSH11-29-Blue","id":2026,"status":1,"name":"Ina Compression Short-29-Blue","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"173","color":"50","image":"/w/s/wsh11-blue_main.jpg","small_image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","url_key":"ina-compression-short-29-blue","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"WSH11-29-Orange","id":2027,"status":1,"name":"Ina Compression Short-29-Orange","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"173","color":"56","image":"/w/s/wsh11-orange_main.jpg","small_image":"/w/s/wsh11-orange_main.jpg","thumbnail":"/w/s/wsh11-orange_main.jpg","url_key":"ina-compression-short-29-orange","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"WSH11-29-Red","id":2028,"status":1,"name":"Ina Compression Short-29-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"173","color":"58","image":"/w/s/wsh11-red_main.jpg","small_image":"/w/s/wsh11-red_main.jpg","thumbnail":"/w/s/wsh11-red_main.jpg","url_key":"ina-compression-short-29-red","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001}],"configurable_options":[{"id":293,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":2029,"attribute_code":"color"},{"id":292,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":2029,"attribute_code":"size"}],"color_options":[50,56,58],"size_options":[172,173],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-2029.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"7","_score":1,"_source":{"id":7,"sku":"24-UB02","name":"Impulse Duffle","attribute_set_id":15,"price":74,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:24","updated_at":"2017-11-06 12:16:24","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                  Good for beach trips, track meets, yoga retreats and more, the Impulse Duffle is the companion you'll want at your side. A large U-shaped opening makes packing a hassle-free affair, while a zippered interior pocket keeps jewelry and other small valuables safely tucked out of sight.

                  \n
                    \n
                  • Wheeled.
                  • \n
                  • Dual carry handles.
                  • \n
                  • Retractable top handle.
                  • \n
                  • W 14\" x H 26\" x D 11\".
                  • \n
                  ","image":"/u/b/ub02-black-0.jpg","small_image":"/u/b/ub02-black-0.jpg","thumbnail":"/u/b/ub02-black-0.jpg","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"impulse-duffle","tax_class_id":"2","activity":[11,19,22],"style_bags":[25,26],"material":[37,38],"strap_bags":[61,64,68],"features_bags":[70,76,79],"slug":"impulse-duffle-7","links":{},"stock":{"item_id":7,"product_id":7,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/u/b/ub02-black-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/equipaggiamento-3/impulse-duffle-7.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"18","_score":1,"_source":{"id":18,"sku":"24-UG02","name":"Pursuit Lumaflex™ Tone Band","attribute_set_id":11,"price":16,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2017-11-06 12:16:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":19.680001,"max_price":19.680001,"max_regular_price":19.680001,"minimal_regular_price":19.680001,"special_price":null,"minimal_price":19.680001,"regular_price":19.680001,"description":"

                  Save your knees and joints while strengthening arms, legs and core with the Pursuit Lumaflex™ Tone Band. This ultra-durable training tool lets you complete a full-body workout free of bulky machines or free weights.

                  \n
                    \n
                  • Home and/or gym use.
                  • \n
                  • Ergonomic handles.
                  • \n
                  ","image":"/u/g/ug02-bk-0.jpg","small_image":"/u/g/ug02-bk-0.jpg","thumbnail":"/u/g/ug02-bk-0.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pursuit-lumaflex-trade-tone-band","tax_class_id":"2","activity":"11","material":[45,46],"gender":[80,81,84],"category_gear":[85,87],"slug":"pursuit-lumaflex-and-trade-tone-band-18","links":{},"stock":{"item_id":18,"product_id":18,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/u/g/ug02-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/pursuit-lumaflex-and-trade-tone-band-18.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1","_score":1,"_source":{"id":1,"sku":"24-MB01","name":"Joust Duffle Bag","attribute_set_id":15,"price":34,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:20","updated_at":"2019-02-07 12:20:45","product_links":[{"sku":"24-MB01","link_type":"related","linked_product_sku":"24-MB04","linked_product_type":"simple","position":1},{"sku":"24-MB01","link_type":"related","linked_product_sku":"24-MB05","linked_product_type":"simple","position":2},{"sku":"24-MB01","link_type":"related","linked_product_sku":"24-MB03","linked_product_type":"simple","position":3},{"sku":"24-MB01","link_type":"related","linked_product_sku":"24-MB02","linked_product_type":"simple","position":4},{"sku":"24-MB01","link_type":"related","linked_product_sku":"24-MB06","linked_product_type":"simple","position":5}],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":"32.0000","minimal_price":32,"regular_price":34,"description":"

                  The sporty Joust Duffle Bag can't be beat - not in the gym, not on the luggage carousel, not anywhere. Big enough to haul a basketball or soccer ball and some sneakers with plenty of room to spare, it's ideal for athletes with places to go.

                  \r\n

                    \r\n
                  • Dual top handles.
                  • \r\n
                  • Adjustable shoulder strap.
                  • \r\n
                  • Full-length zipper.
                  • \r\n
                  • L 29\" x W 13\" x H 11\".
                  • \r\n
                  ","special_from_date":"2018-06-04 00:00:00","image":"/m/b/mb01-blue-0.jpg","small_image":"/m/b/mb01-blue-0.jpg","thumbnail":"/m/b/mb01-blue-0.jpg","color":"49","category_ids":[3,4],"options_container":"container1","required_options":"0","has_options":"0","url_key":"joust-duffle-bag","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"0","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"joust-duffle-bag-1","links":{},"stock":{"item_id":1,"product_id":1,"stock_id":1,"qty":39,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/b/mb01-blue-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/equipaggiamento-3/joust-duffle-bag-1.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"16","_score":1,"_source":{"id":16,"sku":"24-UG07","name":"Dual Handle Cardio Ball","attribute_set_id":11,"price":12,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2017-11-06 12:16:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":14.760001,"max_price":14.760001,"max_regular_price":14.760001,"minimal_regular_price":14.760001,"special_price":"12.0000","minimal_price":14.760001,"regular_price":14.760001,"description":"

                  Make the most of your limited workout window with our Dual-Handle Cardio Ball. The 15-lb ball maximizes the effort-impact to your abdominal, upper arm and lower-body muscles. It features a handle on each side for a firm, secure grip.

                  \n
                    \n
                  • Durable plastic shell with sand fill.\n
                  • Two handles.\n
                  • 15 lbs.\n
                  ","special_from_date":"2017-11-06 12:16:27","image":"/u/g/ug07-bk-0.jpg","small_image":"/u/g/ug07-bk-0.jpg","thumbnail":"/u/g/ug07-bk-0.jpg","category_ids":[3,7,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"dual-handle-cardio-ball","tax_class_id":"2","activity":[16,17,11],"material":"44","gender":[80,81,84],"category_gear":[85,87],"erin_recommends":"1","sale":"1","slug":"dual-handle-cardio-ball-16","links":{},"stock":{"item_id":16,"product_id":16,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/u/g/ug07-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null},{"image":"/u/g/ug07-bk-0_alt1.jpg","pos":2,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/dual-handle-cardio-ball-16.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"13","_score":1,"_source":{"id":13,"sku":"24-WB07","name":"Overnight Duffle","attribute_set_id":15,"price":2,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:26","updated_at":"2019-02-12 07:14:23","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":2.460001,"max_price":2.460001,"max_regular_price":2.460001,"minimal_regular_price":2.460001,"special_price":null,"minimal_price":2.460001,"regular_price":2.460001,"description":"

                  For long weekends away, camping outings and business trips, the Overnight Duffle can't be beat. The dual handles make it a cinch to carry, while the durable waterproof exterior helps you worry less about the weather. With multiple organizational pockets inside and out, it's the perfect travel companion.

                  \r\n
                    \r\n
                  • Dual top handles.
                  • \r\n
                  • W 15\" x H 15\" x D 9\".
                  • \r\n
                  ","image":"/w/b/wb07-brown-0_1.jpg","small_image":"/w/b/wb07-brown-0_1.jpg","thumbnail":"/w/b/wb07-brown-0_1.jpg","color":"49","category_ids":[3,7,4,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"overnight-duffle","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[19,22],"style_bags":"26","material":[35,37,38],"strap_bags":"64","features_bags":[74,79],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","slug":"overnight-duffle-13","links":{},"stock":{"item_id":13,"product_id":13,"stock_id":1,"qty":50,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb07-brown-0_1.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/equipaggiamento-3/overnight-duffle-13.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"46","_score":1,"_source":{"id":46,"sku":"240-LV04","name":"Beginner's Yoga","attribute_set_id":14,"price":6,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:32","updated_at":"2017-11-06 12:16:32","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":7.380001,"max_price":7.380001,"max_regular_price":7.380001,"minimal_regular_price":7.380001,"special_price":null,"minimal_price":7.380001,"regular_price":7.380001,"description":"

                  Beginner's Yoga starts you down the path toward strength, balance and mental focus. With this video download, you don't have to be a great athlete or gym guru to learn the best and most basic techniques for lifelong yoga foundation.

                  \n
                    \n
                  • Video download
                  • \n
                  • Five workouts.
                  • \n
                  • Balance, strength and endurance.
                  • \n
                  • Flexibility and core strength.
                  • \n
                  • Includes modification for novices.
                  • \n
                  ","short_description":"

                  \nThe most difficult yoga poses to master are the ones learned incorrectly as a beginner. Luma's Beginner's Yoga is a fantastic way to break into your initial yoga session and begin the journey to a longer, leaner, healthier body. Confidently find your way into yoga with this effective yet gentle program. You'll learn proper alignment and how to sidestep common mistakes.\n

                  ","image":"/l/t/lt01.jpg","small_image":"/l/t/lt01.jpg","thumbnail":"/l/t/lt01.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beginner-s-yoga","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","tax_class_id":"2","activity":[8,16,17,5,11],"format":"102","slug":"beginners-yoga-46","links":{},"stock":{"item_id":46,"product_id":46,"stock_id":1,"qty":null,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/t/lt01.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":9,"name":"Training","slug":"training-9","path":"training/training-9"},{"category_id":10,"name":"Video Download","slug":"video-download-10","path":"training/training-video/video-download-10"}],"url_path":"training/training-9/beginners-yoga-46.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"39","_score":1,"_source":{"id":39,"sku":"24-MG05","name":"Cruise Dual Analog Watch","attribute_set_id":11,"price":55,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

                  Whether you're traveling or wish you were, you'll never let time zones perplex you again with the Cruise Dual Analog Watch. The thick, adjustable band promises a comfortable, personalized fit to this classy, modern time piece.

                  \n
                    \n
                  • Two dials.
                  • \n
                  • Stainless steel case.
                  • \n
                  • Adjustable leather band.
                  • \n
                  ","image":"/m/g/mg05-br-0.jpg","small_image":"/m/g/mg05-br-0.jpg","thumbnail":"/m/g/mg05-br-0.jpg","category_ids":[3,7,6,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cruise-dual-analog-watch","tax_class_id":"2","activity":"9","material":[35,44],"gender":"80","category_gear":[86,88,90],"new":"1","slug":"cruise-dual-analog-watch-39","links":{},"stock":{"item_id":39,"product_id":39,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/g/mg05-br-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/equipaggiamento-3/cruise-dual-analog-watch-39.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"28","_score":1,"_source":{"id":28,"sku":"24-WG082-pink","name":"Sprite Stasis Ball 65 cm","attribute_set_id":12,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

                  The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                  \n
                    \n
                  • 65 cm plastic shell.
                  • \n
                  • Durable, burst-resistant design.
                  • \n
                  • Hand pump included.
                  • \n
                  ","image":"/l/u/luma-stability-ball-pink.jpg","small_image":"/l/u/luma-stability-ball-pink.jpg","thumbnail":"/l/u/luma-stability-ball-pink.jpg","color":"58","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-65-cm-pink","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"92","slug":"sprite-stasis-ball-65-cm-28","links":{},"stock":{"item_id":28,"product_id":28,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball-pink.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-stasis-ball-65-cm-28.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"49","_score":1,"_source":{"id":49,"sku":"240-LV07","name":"Solo Power Circuit","attribute_set_id":14,"price":14,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:33","updated_at":"2017-11-06 12:16:33","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":17.220001,"max_price":17.220001,"max_regular_price":17.220001,"minimal_regular_price":17.220001,"special_price":null,"minimal_price":17.220001,"regular_price":17.220001,"description":"

                  Circuit training helps banish the boredom of traditional workouts. The Solo Power Circuit download lets you experience Luma's maximum efficiency circuit training in the training time you have available. Learn secrets to shed pounds, decrease body fat, sculpt amazing abs, and tone to reshape your entire body. You'll feel the difference after just one circuit.

                  \n
                    \n
                  • Targets abs, arms and legs.
                  • \n
                  • 6 fun interval training circuits.
                  • \n
                  • Easy to follow.
                  • \n
                  • No special equipment needed.
                  • \n
                  • 43 minutes.
                  • \n
                  ","short_description":"

                  \nMany contemporary exercise trends sacrifice form and precision in favor of reps and \"PR\" goals. Luma's Solo Power Circuit teaches techniques to keep you safe. But don't think you'll get off easily: when it comes to building muscle and burning fat, these routines won't disappoint. A fusion of circuit training, yoga, Pilates and running, Solo Power Circuit brings out your sweatiest best.\n

                  ","image":"/l/t/lt04.jpg","small_image":"/l/t/lt04.jpg","thumbnail":"/l/t/lt04.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"solo-power-circuit","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","tax_class_id":"2","activity":[16,17,11],"format":"102","slug":"solo-power-circuit-49","links":{},"stock":{"item_id":49,"product_id":49,"stock_id":1,"qty":null,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/t/lt04.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":9,"name":"Training","slug":"training-9","path":"training/training-9"},{"category_id":10,"name":"Video Download","slug":"video-download-10","path":"training/training-video/video-download-10"}],"url_path":"training/training-9/solo-power-circuit-49.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"71","_score":1,"_source":{"id":71,"sku":"MH02-S-Black","name":"Teton Pullover Hoodie-S-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

                  This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                  \n

                  • Black pullover hoodie.
                  • Soft, brushed interior.
                  • Front hand pockets.
                  • Machine wash/dry.

                  ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"teton-pullover-hoodie-s-black-71","links":{},"stock":{"item_id":71,"product_id":71,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-s-black-71.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"77","_score":1,"_source":{"id":77,"sku":"MH02-L-Black","name":"Teton Pullover Hoodie-L-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

                  This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                  \n

                  • Black pullover hoodie.
                  • Soft, brushed interior.
                  • Front hand pockets.
                  • Machine wash/dry.

                  ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"teton-pullover-hoodie-l-black-77","links":{},"stock":{"item_id":77,"product_id":77,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-l-black-77.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"86","_score":1,"_source":{"id":86,"sku":"MH03-XS-Green","name":"Bruno Compete Hoodie-XS-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

                  Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                  \n

                  • Full zip black hoodie pullover.
                  • Adjustable drawstring hood.
                  • Ribbed cuffs/waistband.
                  • Kangaroo pocket.
                  • Machine wash/dry.

                  ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bruno-compete-hoodie-xs-green-86","links":{},"stock":{"item_id":86,"product_id":86,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xs-green-86.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"66","_score":1,"_source":{"id":66,"sku":"MH01-XL-Orange","name":"Chaz Kangeroo Hoodie-XL-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                  Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                  \n

                  • Two-tone gray heather hoodie.
                  • Drawstring-adjustable hood.
                  • Machine wash/dry.

                  ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chaz-kangeroo-hoodie-xl-orange-66","links":{},"stock":{"item_id":66,"product_id":66,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xl-orange-66.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"72","_score":1,"_source":{"id":72,"sku":"MH02-S-Purple","name":"Teton Pullover Hoodie-S-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

                  This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                  \n

                  • Black pullover hoodie.
                  • Soft, brushed interior.
                  • Front hand pockets.
                  • Machine wash/dry.

                  ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"teton-pullover-hoodie-s-purple-72","links":{},"stock":{"item_id":72,"product_id":72,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-s-purple-72.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"7","_score":1,"_source":{"id":7,"parent_id":2,"name":"Collections","is_active":false,"position":5,"level":2,"product_count":13,"children_data":[{"id":8,"parent_id":7,"name":"New Luma Yoga Collection","is_active":true,"position":1,"level":3,"product_count":347,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/7/8","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"new-luma-yoga-collection-8","url_path":"collections/yoga-new/new-luma-yoga-collection-8","slug":"new-luma-yoga-collection-8"},{"id":34,"parent_id":7,"name":"Erin Recommends","is_active":true,"position":2,"level":3,"product_count":279,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/34","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"erin-recommends-34","url_path":"collections/erin-recommends/erin-recommends-34","slug":"erin-recommends-34"},{"id":35,"parent_id":7,"name":"Performance Fabrics","is_active":true,"position":3,"level":3,"product_count":310,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/35","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"performance-fabrics-35","url_path":"collections/performance-fabrics/performance-fabrics-35","slug":"performance-fabrics-35"},{"id":36,"parent_id":7,"name":"Eco Friendly","is_active":true,"position":4,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/36","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"eco-friendly-36","url_path":"collections/eco-friendly/eco-friendly-36","slug":"eco-friendly-36"},{"id":39,"parent_id":7,"name":"Performance Sportswear New","is_active":true,"position":5,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/39","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"performance-sportswear-new-39","url_path":"collections/performance-new/performance-sportswear-new-39","slug":"performance-sportswear-new-39"},{"id":40,"parent_id":7,"name":"Eco Collection New","is_active":true,"position":6,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/40","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"eco-collection-new-40","url_path":"collections/eco-new/eco-collection-new-40","slug":"eco-collection-new-40"}],"children":"34,35,36,39,40,8","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:17:48","path":"1/2/7","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","children_count":"6","url_key":"collections-7","url_path":"collections/collections-7","slug":"collections-7","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"39","_score":1,"_source":{"id":39,"parent_id":7,"name":"Performance Sportswear New","is_active":true,"position":5,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/39","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"performance-sportswear-new-39","url_path":"collections/performance-new/performance-sportswear-new-39","slug":"performance-sportswear-new-39","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"13","_score":1,"_source":{"id":13,"parent_id":11,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"id":18,"parent_id":13,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":156,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/18","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-18","url_path":"men/bottoms-men/pants-men/pants-18","slug":"pants-18"},{"id":19,"parent_id":13,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":148,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/19","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-19","url_path":"men/bottoms-men/shorts-men/shorts-19","slug":"shorts-19"}],"children":"18,19","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-13","url_path":"men/bottoms-men/bottoms-13","slug":"bottoms-13","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"111","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"store","attribute_id":111,"attribute_code":"thumbnail_label","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Thumbnail Label","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":111,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"115","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":115,"attribute_code":"quantity_and_stock_status","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"In Stock","value":"1"},{"label":"Out of Stock","value":"0"}],"is_user_defined":false,"default_frontend_label":"Quantity","frontend_labels":null,"backend_type":"int","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Stock","source_model":"Magento\\CatalogInventory\\Model\\Source\\Stock","default_value":"1","is_unique":"0","validation_rules":[],"id":115,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"121","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","downloadable","bundle","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":121,"attribute_code":"msrp","frontend_input":"price","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Manufacturer's Suggested Retail Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":121,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"124","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":124,"attribute_code":"sku_type","frontend_input":"boolean","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Dynamic SKU","frontend_labels":null,"backend_type":"int","default_value":"0","is_unique":"0","validation_rules":[],"id":124,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"125","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":125,"attribute_code":"weight_type","frontend_input":"boolean","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Dynamic Weight","frontend_labels":null,"backend_type":"int","default_value":"0","is_unique":"0","validation_rules":[],"id":125,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"128","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"global","attribute_id":128,"attribute_code":"links_purchased_separately","frontend_input":null,"entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Links can be purchased separately","frontend_labels":null,"backend_type":"int","is_unique":"0","validation_rules":[],"id":128,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"138","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":138,"attribute_code":"strap_bags","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Adjustable","value":"61"},{"label":"Cross Body","value":"62"},{"label":"Detachable","value":"63"},{"label":"Double","value":"64"},{"label":"Padded","value":"65"},{"label":"Shoulder","value":"66"},{"label":"Single","value":"67"},{"label":"Telescoping","value":"68"}],"is_user_defined":true,"default_frontend_label":"Strap/Handle","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":138,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"139","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":139,"attribute_code":"features_bags","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Audio Pocket","value":"69"},{"label":"Wheeled","value":"70"},{"label":"Hydration Pocket","value":"71"},{"label":"Audio Pocket","value":"72"},{"label":"Flapover","value":"73"},{"label":"Waterproof","value":"74"},{"label":"Lightweight","value":"75"},{"label":"TSA Approved","value":"76"},{"label":"Reflective","value":"77"},{"label":"Laptop Sleeve","value":"78"},{"label":"Lockable","value":"79"}],"is_user_defined":true,"default_frontend_label":"Features","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":139,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"140","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":140,"attribute_code":"gender","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Men","value":"80"},{"label":"Women","value":"81"},{"label":"Boys","value":"82"},{"label":"Girls","value":"83"},{"label":"Unisex","value":"84"}],"is_user_defined":true,"default_frontend_label":"Gender","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":140,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"147","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":147,"attribute_code":"sale","frontend_input":"boolean","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"}],"is_user_defined":true,"default_frontend_label":"Sale","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean","default_value":"","is_unique":"0","validation_rules":[],"id":147,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"77","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":true,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":77,"attribute_code":"price","frontend_input":"price","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":77,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"81","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":81,"attribute_code":"cost","frontend_input":"price","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":true,"default_frontend_label":"Cost","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":81,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"86","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":86,"attribute_code":"meta_description","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Meta Description","frontend_labels":null,"note":"Maximum 255 chars. Meta Description should optimally be between 150-160 characters","backend_type":"varchar","is_unique":"0","validation_rules":[],"id":86,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"95","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":95,"attribute_code":"news_to_date","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Set Product as New to Date","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime","is_unique":"0","validation_rules":[],"id":95,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"97","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":97,"attribute_code":"status","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Enabled","value":"1"},{"label":"Disabled","value":"2"}],"is_user_defined":false,"default_frontend_label":"Enable Product","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Status","default_value":"1","is_unique":"0","validation_rules":[],"id":97,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"107","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"global","attribute_id":107,"attribute_code":"required_options","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":107,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"112","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":112,"attribute_code":"created_at","frontend_input":"date","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":112,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"cms_block","_id":"1","_score":1,"_source":{"store_id":[0],"id":1,"identifier":"footer_links_block","title":"Footer Links Block","content":"\n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556377179572}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"cms_block","_id":"7","_score":1,"_source":{"store_id":[0],"id":7,"identifier":"new-left-menu-block","title":"New Left Menu Block","content":"
                  New in women's\n\n\nNew in men's\n\n
                  ","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556377179572}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"cms_block","_id":"13","_score":1,"_source":{"store_id":[0],"id":13,"identifier":"new-block","title":"New Block","content":"\n
                  \n

                  Luma's Latest

                  \n

                  Just in time for the new season!

                  \n
                  \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556377179572}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"cms_block","_id":"16","_score":1,"_source":{"store_id":[0],"id":16,"identifier":"eco-friendly-block","title":"Eco Friendly Block","content":"
                  \n
                  \n \"\"\n \n Eco-friendly, ego-friendly\n Recycled polyester, hemp and organic cotton apperel\n \n
                  \n
                  \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556377179572}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"cms_block","_id":"18","_score":1,"_source":{"store_id":[0],"id":18,"identifier":"login-data","title":"Login Info Block","content":"
                  \n

                  Try Demo Customer Access

                  \n

                  Email:roni_cost@example.com

                  \n

                  Password:roni_cost3@example.com

                  \n
                  ","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556377179572}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"cms_page","_id":"1","_score":1,"_source":{"store_id":[0],"id":1,"identifier":"no-route","title":"404 Not Found","page_layout":"2columns-right","meta_keywords":"Page keywords","meta_description":"Page description","content_heading":"Whoops, our bad...","content":"
                  \r\n
                  The page you requested was not found, and we have a fine guess why.
                  \r\n
                  \r\n
                    \r\n
                  • If you typed the URL directly, please make sure the spelling is correct.
                  • \r\n
                  • If you clicked on a link to get here, the link is outdated.
                  • \r\n
                  \r\n
                  \r\n
                  \r\n
                  What can you do?
                  \r\n
                  Have no fear, help is near! There are many ways you can get back on track with Magento Store.
                  \r\n
                  \r\n
                    \r\n
                  • Go back to the previous page.
                  • \r\n
                  • Use the search bar at the top of the page to search for your products.
                  • \r\n
                  • Follow these links to get you back on track!
                    Store Home | My Account
                  \r\n","creation_time":"2017-11-03 08:34:38","update_time":"2017-11-03 08:34:38","sort_order":"0","active":true,"type":"cms_page","tsk":1556377182883}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"16","_score":1,"_source":{"id":16,"parent_id":12,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/16","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-16","url_path":"men/tops-men/tees-men/tees-16","slug":"tees-16","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"28","_score":1,"_source":{"id":28,"parent_id":22,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":137,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/28","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-28","url_path":"women/bottoms-women/shorts-women/shorts-28","slug":"shorts-28","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"18","_score":1,"_source":{"id":18,"parent_id":13,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":156,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/18","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-18","url_path":"men/bottoms-men/pants-men/pants-18","slug":"pants-18","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"115","_score":1,"_source":{"id":115,"sku":"MH04","name":"Frankie Sweatshirt","attribute_set_id":9,"price":60,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":60,"description":"

                  The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                  \n

                  • Light green crewneck sweatshirt.
                  • Hand pockets.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"frankie-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","pattern":"197","climate":[202,204,205,208,210],"slug":"frankie-sweatshirt-115","links":{},"stock":{"item_id":115,"product_id":115,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH04-XS-Green","id":100,"status":1,"name":"Frankie Sweatshirt-XS-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"53","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","url_key":"frankie-sweatshirt-xs-green","msrp_display_actual_price_type":"0"},{"sku":"MH04-XS-White","id":101,"status":1,"name":"Frankie Sweatshirt-XS-White","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"59","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","url_key":"frankie-sweatshirt-xs-white","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-XS-Yellow","id":102,"status":1,"name":"Frankie Sweatshirt-XS-Yellow","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"60","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","url_key":"frankie-sweatshirt-xs-yellow","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-S-Green","id":103,"status":1,"name":"Frankie Sweatshirt-S-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"53","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","url_key":"frankie-sweatshirt-s-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-S-White","id":104,"status":1,"name":"Frankie Sweatshirt-S-White","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"59","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","url_key":"frankie-sweatshirt-s-white","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-S-Yellow","id":105,"status":1,"name":"Frankie Sweatshirt-S-Yellow","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"60","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","url_key":"frankie-sweatshirt-s-yellow","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-M-Green","id":106,"status":1,"name":"Frankie Sweatshirt-M-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"53","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","url_key":"frankie-sweatshirt-m-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-M-White","id":107,"status":1,"name":"Frankie Sweatshirt-M-White","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"59","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","url_key":"frankie-sweatshirt-m-white","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-M-Yellow","id":108,"status":1,"name":"Frankie Sweatshirt-M-Yellow","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"60","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","url_key":"frankie-sweatshirt-m-yellow","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-L-Green","id":109,"status":1,"name":"Frankie Sweatshirt-L-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"53","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","url_key":"frankie-sweatshirt-l-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-L-White","id":110,"status":1,"name":"Frankie Sweatshirt-L-White","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"59","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","url_key":"frankie-sweatshirt-l-white","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-L-Yellow","id":111,"status":1,"name":"Frankie Sweatshirt-L-Yellow","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"60","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","url_key":"frankie-sweatshirt-l-yellow","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-XL-Green","id":112,"status":1,"name":"Frankie Sweatshirt-XL-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"53","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","url_key":"frankie-sweatshirt-xl-green","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-XL-White","id":113,"status":1,"name":"Frankie Sweatshirt-XL-White","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"59","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","url_key":"frankie-sweatshirt-xl-white","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001},{"sku":"MH04-XL-Yellow","id":114,"status":1,"name":"Frankie Sweatshirt-XL-Yellow","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"60","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","url_key":"frankie-sweatshirt-xl-yellow","msrp_display_actual_price_type":"0","final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001}],"configurable_options":[{"id":9,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":115,"attribute_code":"color"},{"id":8,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":115,"attribute_code":"size"}],"color_options":[53,59,60],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-115.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"147","_score":1,"_source":{"id":147,"sku":"MH06","name":"Stark Fundamental Hoodie","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":42,"description":"

                  You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                  \n

                  • Navy specked full zip hoodie.
                  • Ribbed cuffs, banded waist.
                  • Side pockets.
                  • Machine wash/dry.

                  ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"stark-fundamental-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,38,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"197","climate":[202,204,205,208],"slug":"stark-fundamental-hoodie-147","links":{},"stock":{"item_id":147,"product_id":147,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH06-XS-Black","id":132,"status":1,"name":"Stark Fundamental Hoodie-XS-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"49","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","url_key":"stark-fundamental-hoodie-xs-black","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-XS-Blue","id":133,"status":1,"name":"Stark Fundamental Hoodie-XS-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"50","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","url_key":"stark-fundamental-hoodie-xs-blue","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-XS-Purple","id":134,"status":1,"name":"Stark Fundamental Hoodie-XS-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"57","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","url_key":"stark-fundamental-hoodie-xs-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-S-Black","id":135,"status":1,"name":"Stark Fundamental Hoodie-S-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"49","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","url_key":"stark-fundamental-hoodie-s-black","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-S-Blue","id":136,"status":1,"name":"Stark Fundamental Hoodie-S-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"50","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","url_key":"stark-fundamental-hoodie-s-blue","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-S-Purple","id":137,"status":1,"name":"Stark Fundamental Hoodie-S-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"57","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","url_key":"stark-fundamental-hoodie-s-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-M-Black","id":138,"status":1,"name":"Stark Fundamental Hoodie-M-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"49","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","url_key":"stark-fundamental-hoodie-m-black","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-M-Blue","id":139,"status":1,"name":"Stark Fundamental Hoodie-M-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"50","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","url_key":"stark-fundamental-hoodie-m-blue","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-M-Purple","id":140,"status":1,"name":"Stark Fundamental Hoodie-M-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"57","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","url_key":"stark-fundamental-hoodie-m-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-L-Black","id":141,"status":1,"name":"Stark Fundamental Hoodie-L-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"49","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","url_key":"stark-fundamental-hoodie-l-black","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-L-Blue","id":142,"status":1,"name":"Stark Fundamental Hoodie-L-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"50","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","url_key":"stark-fundamental-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-L-Purple","id":143,"status":1,"name":"Stark Fundamental Hoodie-L-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"57","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","url_key":"stark-fundamental-hoodie-l-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-XL-Black","id":144,"status":1,"name":"Stark Fundamental Hoodie-XL-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"49","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","url_key":"stark-fundamental-hoodie-xl-black","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-XL-Blue","id":145,"status":1,"name":"Stark Fundamental Hoodie-XL-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"50","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","url_key":"stark-fundamental-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH06-XL-Purple","id":146,"status":1,"name":"Stark Fundamental Hoodie-XL-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"57","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","url_key":"stark-fundamental-hoodie-xl-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001}],"configurable_options":[{"id":13,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":147,"attribute_code":"color"},{"id":12,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":147,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-147.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"97","_score":1,"_source":{"id":97,"sku":"MH03-XL-Blue","name":"Bruno Compete Hoodie-XL-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

                  Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                  \n

                  • Full zip black hoodie pullover.
                  • Adjustable drawstring hood.
                  • Ribbed cuffs/waistband.
                  • Kangaroo pocket.
                  • Machine wash/dry.

                  ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bruno-compete-hoodie-xl-blue-97","links":{},"stock":{"item_id":97,"product_id":97,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xl-blue-97.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"81","_score":1,"_source":{"id":81,"sku":"MH02-XL-Purple","name":"Teton Pullover Hoodie-XL-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

                  This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                  \n

                  • Black pullover hoodie.
                  • Soft, brushed interior.
                  • Front hand pockets.
                  • Machine wash/dry.

                  ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"teton-pullover-hoodie-xl-purple-81","links":{},"stock":{"item_id":81,"product_id":81,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xl-purple-81.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"95","_score":1,"_source":{"id":95,"sku":"MH03-L-Green","name":"Bruno Compete Hoodie-L-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

                  Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                  \n

                  • Full zip black hoodie pullover.
                  • Adjustable drawstring hood.
                  • Ribbed cuffs/waistband.
                  • Kangaroo pocket.
                  • Machine wash/dry.

                  ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bruno-compete-hoodie-l-green-95","links":{},"stock":{"item_id":95,"product_id":95,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-l-green-95.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"67","_score":1,"_source":{"id":67,"sku":"MH01","name":"Chaz Kangeroo Hoodie","attribute_set_id":9,"price":52,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":52,"description":"

                  Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                  \n

                  • Two-tone gray heather hoodie.
                  • Drawstring-adjustable hood.
                  • Machine wash/dry.

                  ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"chaz-kangeroo-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"159","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","pattern":"195","climate":[202,204,205,208,210],"slug":"chaz-kangeroo-hoodie-67","links":{},"stock":{"item_id":67,"product_id":67,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH01-XS-Black","id":52,"status":1,"name":"Chaz Kangeroo Hoodie-XS-Black","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"49","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","url_key":"chaz-kangeroo-hoodie-xs-black","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-XS-Gray","id":53,"status":1,"name":"Chaz Kangeroo Hoodie-XS-Gray","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"52","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","url_key":"chaz-kangeroo-hoodie-xs-gray","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-XS-Orange","id":54,"status":1,"name":"Chaz Kangeroo Hoodie-XS-Orange","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"56","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","url_key":"chaz-kangeroo-hoodie-xs-orange","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-S-Black","id":55,"status":1,"name":"Chaz Kangeroo Hoodie-S-Black","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"49","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","url_key":"chaz-kangeroo-hoodie-s-black","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-S-Gray","id":56,"status":1,"name":"Chaz Kangeroo Hoodie-S-Gray","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"52","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","url_key":"chaz-kangeroo-hoodie-s-gray","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-S-Orange","id":57,"status":1,"name":"Chaz Kangeroo Hoodie-S-Orange","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"56","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","url_key":"chaz-kangeroo-hoodie-s-orange","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-M-Black","id":58,"status":1,"name":"Chaz Kangeroo Hoodie-M-Black","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"49","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","url_key":"chaz-kangeroo-hoodie-m-black","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-M-Gray","id":59,"status":1,"name":"Chaz Kangeroo Hoodie-M-Gray","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"52","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","url_key":"chaz-kangeroo-hoodie-m-gray","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-M-Orange","id":60,"status":1,"name":"Chaz Kangeroo Hoodie-M-Orange","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"56","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","url_key":"chaz-kangeroo-hoodie-m-orange","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-L-Black","id":61,"status":1,"name":"Chaz Kangeroo Hoodie-L-Black","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"49","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","url_key":"chaz-kangeroo-hoodie-l-black","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-L-Gray","id":62,"status":1,"name":"Chaz Kangeroo Hoodie-L-Gray","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"52","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","url_key":"chaz-kangeroo-hoodie-l-gray","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-L-Orange","id":63,"status":1,"name":"Chaz Kangeroo Hoodie-L-Orange","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"56","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","url_key":"chaz-kangeroo-hoodie-l-orange","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-XL-Black","id":64,"status":1,"name":"Chaz Kangeroo Hoodie-XL-Black","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"49","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","url_key":"chaz-kangeroo-hoodie-xl-black","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-XL-Gray","id":65,"status":1,"name":"Chaz Kangeroo Hoodie-XL-Gray","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"52","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","url_key":"chaz-kangeroo-hoodie-xl-gray","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001},{"sku":"MH01-XL-Orange","id":66,"status":1,"name":"Chaz Kangeroo Hoodie-XL-Orange","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"56","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","url_key":"chaz-kangeroo-hoodie-xl-orange","msrp_display_actual_price_type":"0","final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001}],"configurable_options":[{"id":3,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"}],"product_id":67,"attribute_code":"color"},{"id":2,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":67,"attribute_code":"size"}],"color_options":[49,52,56],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-67.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"189","_score":1,"_source":{"id":189,"sku":"MH09-L-Blue","name":"Abominable Hoodie-L-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                  \n

                  • Blue heather hoodie.
                  • Relaxed fit.
                  • Moisture-wicking.
                  • Machine wash/dry.

                  ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"abominable-hoodie-l-blue-189","links":{},"stock":{"item_id":189,"product_id":189,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-l-blue-189.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"179","_score":1,"_source":{"id":179,"sku":"MH08","name":"Oslo Trek Hoodie","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":36.900001,"max_price":36.900001,"max_regular_price":36.900001,"minimal_regular_price":36.900001,"special_price":null,"minimal_price":36.900001,"regular_price":42,"description":"

                  Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                  \n

                  • Brown hoodie with black detail.
                  • Pullover.
                  • Adjustable drawstring hood.
                  • Ribbed cuffs/waistband.
                  • Machine wash/dry.

                  ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"oslo-trek-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"197","climate":[210,204],"slug":"oslo-trek-hoodie-179","links":{},"stock":{"item_id":179,"product_id":179,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH08-XS-Brown","id":164,"status":1,"name":"Oslo Trek Hoodie-XS-Brown","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"51","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","url_key":"oslo-trek-hoodie-xs-brown","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-XS-Purple","id":165,"status":1,"name":"Oslo Trek Hoodie-XS-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"57","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","url_key":"oslo-trek-hoodie-xs-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-XS-Red","id":166,"status":1,"name":"Oslo Trek Hoodie-XS-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","url_key":"oslo-trek-hoodie-xs-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-S-Brown","id":167,"status":1,"name":"Oslo Trek Hoodie-S-Brown","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"51","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","url_key":"oslo-trek-hoodie-s-brown","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-S-Purple","id":168,"status":1,"name":"Oslo Trek Hoodie-S-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"57","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","url_key":"oslo-trek-hoodie-s-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-S-Red","id":169,"status":1,"name":"Oslo Trek Hoodie-S-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","url_key":"oslo-trek-hoodie-s-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-M-Brown","id":170,"status":1,"name":"Oslo Trek Hoodie-M-Brown","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"51","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","url_key":"oslo-trek-hoodie-m-brown","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-M-Purple","id":171,"status":1,"name":"Oslo Trek Hoodie-M-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"57","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","url_key":"oslo-trek-hoodie-m-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-M-Red","id":172,"status":1,"name":"Oslo Trek Hoodie-M-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","url_key":"oslo-trek-hoodie-m-red","special_price":36.900001,"special_from_date":"2019-03-22 08:35:33","msrp_display_actual_price_type":"0","final_price":36.900001,"max_price":36.900001,"max_regular_price":36.900001,"minimal_regular_price":36.900001,"minimal_price":36.900001,"regular_price":51.660001},{"sku":"MH08-L-Brown","id":173,"status":1,"name":"Oslo Trek Hoodie-L-Brown","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"51","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","url_key":"oslo-trek-hoodie-l-brown","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-L-Purple","id":174,"status":1,"name":"Oslo Trek Hoodie-L-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"57","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","url_key":"oslo-trek-hoodie-l-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-L-Red","id":175,"status":1,"name":"Oslo Trek Hoodie-L-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","url_key":"oslo-trek-hoodie-l-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-XL-Brown","id":176,"status":1,"name":"Oslo Trek Hoodie-XL-Brown","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"51","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","url_key":"oslo-trek-hoodie-xl-brown","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-XL-Purple","id":177,"status":1,"name":"Oslo Trek Hoodie-XL-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"57","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","url_key":"oslo-trek-hoodie-xl-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MH08-XL-Red","id":178,"status":1,"name":"Oslo Trek Hoodie-XL-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","url_key":"oslo-trek-hoodie-xl-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001}],"configurable_options":[{"id":17,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":51,"label":"Brown"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":179,"attribute_code":"color"},{"id":16,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":179,"attribute_code":"size"}],"color_options":[51,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-179.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"251","_score":1,"_source":{"id":251,"sku":"MH13-M-Green","name":"Marco Lightweight Active Hoodie-M-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                  For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                  \n

                  • Light blue heather full zip hoodie.
                  • Fitted flatlock seams.
                  • Matching lining and drawstring.
                  • Machine wash/dry.

                  ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"marco-lightweight-active-hoodie-m-green-251","links":{},"stock":{"item_id":251,"product_id":251,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-m-green-251.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"266","_score":1,"_source":{"id":266,"sku":"MJ01-M-Orange","name":"Beaumont Summit Kit-M-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                  \n

                  • Yellow full zip rain jacket.
                  • Full-zip front.
                  • Stand-up collar.
                  • Elasticized cuffs.
                  • Machine wash/dry.

                  ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"beaumont-summit-kit-m-orange-266","links":{},"stock":{"item_id":266,"product_id":266,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-m-orange-266.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"271","_score":1,"_source":{"id":271,"sku":"MJ01-L-Yellow","name":"Beaumont Summit Kit-L-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                  \n

                  • Yellow full zip rain jacket.
                  • Full-zip front.
                  • Stand-up collar.
                  • Elasticized cuffs.
                  • Machine wash/dry.

                  ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"beaumont-summit-kit-l-yellow-271","links":{},"stock":{"item_id":271,"product_id":271,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-l-yellow-271.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"261","_score":1,"_source":{"id":261,"sku":"MJ01-XS-Red","name":"Beaumont Summit Kit-XS-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                  \n

                  • Yellow full zip rain jacket.
                  • Full-zip front.
                  • Stand-up collar.
                  • Elasticized cuffs.
                  • Machine wash/dry.

                  ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"beaumont-summit-kit-xs-red-261","links":{},"stock":{"item_id":261,"product_id":261,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xs-red-261.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"269","_score":1,"_source":{"id":269,"sku":"MJ01-L-Orange","name":"Beaumont Summit Kit-L-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                  \n

                  • Yellow full zip rain jacket.
                  • Full-zip front.
                  • Stand-up collar.
                  • Elasticized cuffs.
                  • Machine wash/dry.

                  ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"beaumont-summit-kit-l-orange-269","links":{},"stock":{"item_id":269,"product_id":269,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-l-orange-269.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"285","_score":1,"_source":{"id":285,"sku":"MJ02-L-Green","name":"Hyperion Elements Jacket-L-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                  \n

                  • Lime 1/4 zip pullover.
                  • Split pocket.
                  • Thumb holes.
                  • Machine wash/hang to dry.

                  ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hyperion-elements-jacket-l-green-285","links":{},"stock":{"item_id":285,"product_id":285,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-l-green-285.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"287","_score":1,"_source":{"id":287,"sku":"MJ02-L-Red","name":"Hyperion Elements Jacket-L-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                  \n

                  • Lime 1/4 zip pullover.
                  • Split pocket.
                  • Thumb holes.
                  • Machine wash/hang to dry.

                  ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hyperion-elements-jacket-l-red-287","links":{},"stock":{"item_id":287,"product_id":287,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-l-red-287.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"296","_score":1,"_source":{"id":296,"sku":"MJ04-S-Blue","name":"Kenobi Trail Jacket-S-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

                  Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                  \n

                  • Black 1/4 zip pullover with royal zipper.
                  • Adjustable hood and sleeve cuffs.
                  • Machine wash/air dry.

                  ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"kenobi-trail-jacket-s-blue-296","links":{},"stock":{"item_id":296,"product_id":296,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-s-blue-296.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"294","_score":1,"_source":{"id":294,"sku":"MJ04-XS-Purple","name":"Kenobi Trail Jacket-XS-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

                  Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                  \n

                  • Black 1/4 zip pullover with royal zipper.
                  • Adjustable hood and sleeve cuffs.
                  • Machine wash/air dry.

                  ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"kenobi-trail-jacket-xs-purple-294","links":{},"stock":{"item_id":294,"product_id":294,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xs-purple-294.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"292","_score":1,"_source":{"id":292,"sku":"MJ04-XS-Black","name":"Kenobi Trail Jacket-XS-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

                  Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                  \n

                  • Black 1/4 zip pullover with royal zipper.
                  • Adjustable hood and sleeve cuffs.
                  • Machine wash/air dry.

                  ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"kenobi-trail-jacket-xs-black-292","links":{},"stock":{"item_id":292,"product_id":292,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xs-black-292.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"121","_score":1,"_source":{"id":121,"sku":"MH05-S-White","name":"Hollister Backyard Sweatshirt-S-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                  Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                  \n

                  • Cream crewneck sweatshirt with navy sleeves/trim.
                  • Relaxed fit.
                  • Ribbed cuffs and hem.
                  • Machine wash/dry.

                  ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hollister-backyard-sweatshirt-s-white-121","links":{},"stock":{"item_id":121,"product_id":121,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-s-white-121.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"124","_score":1,"_source":{"id":124,"sku":"MH05-M-White","name":"Hollister Backyard Sweatshirt-M-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                  Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                  \n

                  • Cream crewneck sweatshirt with navy sleeves/trim.
                  • Relaxed fit.
                  • Ribbed cuffs and hem.
                  • Machine wash/dry.

                  ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hollister-backyard-sweatshirt-m-white-124","links":{},"stock":{"item_id":124,"product_id":124,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-m-white-124.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"138","_score":1,"_source":{"id":138,"sku":"MH06-M-Black","name":"Stark Fundamental Hoodie-M-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                  \n

                  • Navy specked full zip hoodie.
                  • Ribbed cuffs, banded waist.
                  • Side pockets.
                  • Machine wash/dry.

                  ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stark-fundamental-hoodie-m-black-138","links":{},"stock":{"item_id":138,"product_id":138,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-m-black-138.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"139","_score":1,"_source":{"id":139,"sku":"MH06-M-Blue","name":"Stark Fundamental Hoodie-M-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                  \n

                  • Navy specked full zip hoodie.
                  • Ribbed cuffs, banded waist.
                  • Side pockets.
                  • Machine wash/dry.

                  ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stark-fundamental-hoodie-m-blue-139","links":{},"stock":{"item_id":139,"product_id":139,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-m-blue-139.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"128","_score":1,"_source":{"id":128,"sku":"MH05-XL-Green","name":"Hollister Backyard Sweatshirt-XL-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                  Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                  \n

                  • Cream crewneck sweatshirt with navy sleeves/trim.
                  • Relaxed fit.
                  • Ribbed cuffs and hem.
                  • Machine wash/dry.

                  ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hollister-backyard-sweatshirt-xl-green-128","links":{},"stock":{"item_id":128,"product_id":128,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xl-green-128.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"140","_score":1,"_source":{"id":140,"sku":"MH06-M-Purple","name":"Stark Fundamental Hoodie-M-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                  \n

                  • Navy specked full zip hoodie.
                  • Ribbed cuffs, banded waist.
                  • Side pockets.
                  • Machine wash/dry.

                  ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stark-fundamental-hoodie-m-purple-140","links":{},"stock":{"item_id":140,"product_id":140,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-m-purple-140.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"155","_score":1,"_source":{"id":155,"sku":"MH07-M-Gray","name":"Hero Hoodie-M-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                  Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                  \n

                  • Full-zip gray and black hoodie.
                  • Ribbed hem.
                  • Standard fit.
                  • Drawcord hood cinch.
                  • Water-resistant coating.

                  ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hero-hoodie-m-gray-155","links":{},"stock":{"item_id":155,"product_id":155,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-m-gray-155.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"158","_score":1,"_source":{"id":158,"sku":"MH07-L-Gray","name":"Hero Hoodie-L-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                  Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                  \n

                  • Full-zip gray and black hoodie.
                  • Ribbed hem.
                  • Standard fit.
                  • Drawcord hood cinch.
                  • Water-resistant coating.

                  ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hero-hoodie-l-gray-158","links":{},"stock":{"item_id":158,"product_id":158,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-l-gray-158.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"187","_score":1,"_source":{"id":187,"sku":"MH09-M-Green","name":"Abominable Hoodie-M-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                  \n

                  • Blue heather hoodie.
                  • Relaxed fit.
                  • Moisture-wicking.
                  • Machine wash/dry.

                  ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"abominable-hoodie-m-green-187","links":{},"stock":{"item_id":187,"product_id":187,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-m-green-187.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"181","_score":1,"_source":{"id":181,"sku":"MH09-XS-Green","name":"Abominable Hoodie-XS-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                  \n

                  • Blue heather hoodie.
                  • Relaxed fit.
                  • Moisture-wicking.
                  • Machine wash/dry.

                  ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"abominable-hoodie-xs-green-181","links":{},"stock":{"item_id":181,"product_id":181,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xs-green-181.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"185","_score":1,"_source":{"id":185,"sku":"MH09-S-Red","name":"Abominable Hoodie-S-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                  \n

                  • Blue heather hoodie.
                  • Relaxed fit.
                  • Moisture-wicking.
                  • Machine wash/dry.

                  ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"abominable-hoodie-s-red-185","links":{},"stock":{"item_id":185,"product_id":185,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-s-red-185.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"197","_score":1,"_source":{"id":197,"sku":"MH10-XS-Blue","name":"Mach Street Sweatshirt -XS-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

                  From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                  \n

                  • Navy heather crewneck sweatshirt.
                  • LumaTech™ moisture-wicking fabric.
                  • Antimicrobial, odor-resistant.
                  • Zip hand pockets.
                  • Chafe-resistant flatlock seams.
                  • Rib-knit cuffs and hem.

                  ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mach-street-sweatshirt-xs-blue-197","links":{},"stock":{"item_id":197,"product_id":197,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xs-blue-197.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"231","_score":1,"_source":{"id":231,"sku":"MH12-S-Blue","name":"Ajax Full-Zip Sweatshirt -S-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                  \n

                  • Mint striped full zip hoodie.
                  • 100% bonded polyester fleece.
                  • Pouch pocket.
                  • Rib cuffs and hem.
                  • Machine washable.

                  ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ajax-full-zip-sweatshirt-s-blue-231","links":{},"stock":{"item_id":231,"product_id":231,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-s-blue-231.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"235","_score":1,"_source":{"id":235,"sku":"MH12-M-Green","name":"Ajax Full-Zip Sweatshirt -M-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                  \n

                  • Mint striped full zip hoodie.
                  • 100% bonded polyester fleece.
                  • Pouch pocket.
                  • Rib cuffs and hem.
                  • Machine washable.

                  ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ajax-full-zip-sweatshirt-m-green-235","links":{},"stock":{"item_id":235,"product_id":235,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-m-green-235.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"216","_score":1,"_source":{"id":216,"sku":"MH11-S-Red","name":"Grayson Crewneck Sweatshirt -S-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

                  The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                  \n

                  • Cream crewneck sweatshirt with black accents.
                  • 80% cotton/20% polyester fleece.
                  • Patterned knit hood lining.
                  • Knit cuffs and waist.
                  • Pouch pocket.
                  • Curl edged seam detail

                  ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"grayson-crewneck-sweatshirt-s-red-216","links":{},"stock":{"item_id":216,"product_id":216,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-s-red-216.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"245","_score":1,"_source":{"id":245,"sku":"MH13-XS-Green","name":"Marco Lightweight Active Hoodie-XS-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                  For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                  \n

                  • Light blue heather full zip hoodie.
                  • Fitted flatlock seams.
                  • Matching lining and drawstring.
                  • Machine wash/dry.

                  ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"marco-lightweight-active-hoodie-xs-green-245","links":{},"stock":{"item_id":245,"product_id":245,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xs-green-245.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"107","_score":1,"_source":{"id":107,"sku":"MH04-M-White","name":"Frankie Sweatshirt-M-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                  \n

                  • Light green crewneck sweatshirt.
                  • Hand pockets.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"frankie-sweatshirt-m-white-107","links":{},"stock":{"item_id":107,"product_id":107,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-m-white-107.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"112","_score":1,"_source":{"id":112,"sku":"MH04-XL-Green","name":"Frankie Sweatshirt-XL-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                  \n

                  • Light green crewneck sweatshirt.
                  • Hand pockets.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"frankie-sweatshirt-xl-green-112","links":{},"stock":{"item_id":112,"product_id":112,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xl-green-112.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"111","_score":1,"_source":{"id":111,"sku":"MH04-L-Yellow","name":"Frankie Sweatshirt-L-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                  \n

                  • Light green crewneck sweatshirt.
                  • Hand pockets.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"frankie-sweatshirt-l-yellow-111","links":{},"stock":{"item_id":111,"product_id":111,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-l-yellow-111.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"125","_score":1,"_source":{"id":125,"sku":"MH05-L-Green","name":"Hollister Backyard Sweatshirt-L-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                  Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                  \n

                  • Cream crewneck sweatshirt with navy sleeves/trim.
                  • Relaxed fit.
                  • Ribbed cuffs and hem.
                  • Machine wash/dry.

                  ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hollister-backyard-sweatshirt-l-green-125","links":{},"stock":{"item_id":125,"product_id":125,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-l-green-125.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"201","_score":1,"_source":{"id":201,"sku":"MH10-S-Red","name":"Mach Street Sweatshirt -S-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

                  From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                  \n

                  • Navy heather crewneck sweatshirt.
                  • LumaTech™ moisture-wicking fabric.
                  • Antimicrobial, odor-resistant.
                  • Zip hand pockets.
                  • Chafe-resistant flatlock seams.
                  • Rib-knit cuffs and hem.

                  ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mach-street-sweatshirt-s-red-201","links":{},"stock":{"item_id":201,"product_id":201,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-s-red-201.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"323","_score":1,"_source":{"id":323,"sku":"MJ07","name":"Orion Two-Tone Fitted Jacket","attribute_set_id":9,"price":72,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":72,"description":"

                  While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                  \n

                  • Red full zip fleece with gray insets.
                  • Double-knit construction.
                  • Full athletic cut.
                  • Set in sleeves.
                  • Front pouch pocket.

                  ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"orion-two-tone-fitted-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[120,121,123,125,129],"pattern":"197","climate":[202,204,207,208,210],"slug":"orion-two-tone-fitted-jacket-323","links":{},"stock":{"item_id":323,"product_id":323,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ07-XS-Black","id":308,"status":1,"name":"Orion Two-Tone Fitted Jacket-XS-Black","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"49","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","url_key":"orion-two-tone-fitted-jacket-xs-black","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-XS-Red","id":309,"status":1,"name":"Orion Two-Tone Fitted Jacket-XS-Red","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"58","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","url_key":"orion-two-tone-fitted-jacket-xs-red","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-XS-Yellow","id":310,"status":1,"name":"Orion Two-Tone Fitted Jacket-XS-Yellow","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"60","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","url_key":"orion-two-tone-fitted-jacket-xs-yellow","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-S-Black","id":311,"status":1,"name":"Orion Two-Tone Fitted Jacket-S-Black","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"49","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","url_key":"orion-two-tone-fitted-jacket-s-black","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-S-Red","id":312,"status":1,"name":"Orion Two-Tone Fitted Jacket-S-Red","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"58","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","url_key":"orion-two-tone-fitted-jacket-s-red","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-S-Yellow","id":313,"status":1,"name":"Orion Two-Tone Fitted Jacket-S-Yellow","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"60","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","url_key":"orion-two-tone-fitted-jacket-s-yellow","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-M-Black","id":314,"status":1,"name":"Orion Two-Tone Fitted Jacket-M-Black","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"49","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","url_key":"orion-two-tone-fitted-jacket-m-black","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-M-Red","id":315,"status":1,"name":"Orion Two-Tone Fitted Jacket-M-Red","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"58","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","url_key":"orion-two-tone-fitted-jacket-m-red","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-M-Yellow","id":316,"status":1,"name":"Orion Two-Tone Fitted Jacket-M-Yellow","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"60","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","url_key":"orion-two-tone-fitted-jacket-m-yellow","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-L-Black","id":317,"status":1,"name":"Orion Two-Tone Fitted Jacket-L-Black","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"49","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","url_key":"orion-two-tone-fitted-jacket-l-black","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-L-Red","id":318,"status":1,"name":"Orion Two-Tone Fitted Jacket-L-Red","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"58","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","url_key":"orion-two-tone-fitted-jacket-l-red","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-L-Yellow","id":319,"status":1,"name":"Orion Two-Tone Fitted Jacket-L-Yellow","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"60","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","url_key":"orion-two-tone-fitted-jacket-l-yellow","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-XL-Black","id":320,"status":1,"name":"Orion Two-Tone Fitted Jacket-XL-Black","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"49","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","url_key":"orion-two-tone-fitted-jacket-xl-black","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-XL-Red","id":321,"status":1,"name":"Orion Two-Tone Fitted Jacket-XL-Red","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"58","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","url_key":"orion-two-tone-fitted-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001},{"sku":"MJ07-XL-Yellow","id":322,"status":1,"name":"Orion Two-Tone Fitted Jacket-XL-Yellow","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"60","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","url_key":"orion-two-tone-fitted-jacket-xl-yellow","msrp_display_actual_price_type":"0","final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001}],"configurable_options":[{"id":35,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":323,"attribute_code":"color"},{"id":34,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":323,"attribute_code":"size"}],"color_options":[49,58,60],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-323.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"419","_score":1,"_source":{"id":419,"sku":"MJ03","name":"Montana Wind Jacket","attribute_set_id":9,"price":49,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":49,"description":"

                  Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                  \n

                  Adjustable hood.
                  Split pocket.
                  Thumb holes.
                  Machine wash/hang to dry.

                  ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"montana-wind-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":[120,121,124,126,129],"pattern":"197","climate":[204,206,208,210],"slug":"montana-wind-jacket-419","links":{},"stock":{"item_id":419,"product_id":419,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ03-XS-Black","id":404,"status":1,"name":"Montana Wind Jacket-XS-Black","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"49","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","url_key":"montana-wind-jacket-xs-black","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-XS-Green","id":405,"status":1,"name":"Montana Wind Jacket-XS-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"53","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","url_key":"montana-wind-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-XS-Red","id":406,"status":1,"name":"Montana Wind Jacket-XS-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"58","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","url_key":"montana-wind-jacket-xs-red","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-S-Black","id":407,"status":1,"name":"Montana Wind Jacket-S-Black","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"49","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","url_key":"montana-wind-jacket-s-black","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-S-Green","id":408,"status":1,"name":"Montana Wind Jacket-S-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"53","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","url_key":"montana-wind-jacket-s-green","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-S-Red","id":409,"status":1,"name":"Montana Wind Jacket-S-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"58","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","url_key":"montana-wind-jacket-s-red","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-M-Black","id":410,"status":1,"name":"Montana Wind Jacket-M-Black","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"49","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","url_key":"montana-wind-jacket-m-black","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-M-Green","id":411,"status":1,"name":"Montana Wind Jacket-M-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"53","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","url_key":"montana-wind-jacket-m-green","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-M-Red","id":412,"status":1,"name":"Montana Wind Jacket-M-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"58","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","url_key":"montana-wind-jacket-m-red","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-L-Black","id":413,"status":1,"name":"Montana Wind Jacket-L-Black","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"49","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","url_key":"montana-wind-jacket-l-black","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-L-Green","id":414,"status":1,"name":"Montana Wind Jacket-L-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"53","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","url_key":"montana-wind-jacket-l-green","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-L-Red","id":415,"status":1,"name":"Montana Wind Jacket-L-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"58","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","url_key":"montana-wind-jacket-l-red","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-XL-Black","id":416,"status":1,"name":"Montana Wind Jacket-XL-Black","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"49","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","url_key":"montana-wind-jacket-xl-black","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-XL-Green","id":417,"status":1,"name":"Montana Wind Jacket-XL-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"53","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","url_key":"montana-wind-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001},{"sku":"MJ03-XL-Red","id":418,"status":1,"name":"Montana Wind Jacket-XL-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"58","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","url_key":"montana-wind-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001}],"configurable_options":[{"id":47,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":419,"attribute_code":"color"},{"id":46,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":419,"attribute_code":"size"}],"color_options":[49,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-419.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"358","_score":1,"_source":{"id":358,"sku":"MJ10-XS-Red","name":"Mars HeatTech™ Pullover-XS-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                  The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                  \n

                  • Red 1/4 zip pullover.
                  • Adjustable VELCRO® sleeve cuffs.
                  • Two hand pockets.
                  • Napoleon pocket.
                  • Machine wash/dry

                  ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mars-heattech-and-trade-pullover-xs-red-358","links":{},"stock":{"item_id":358,"product_id":358,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xs-red-358.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"354","_score":1,"_source":{"id":354,"sku":"MJ09-XL-Yellow","name":"Taurus Elements Shell-XL-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

                  What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                  \n

                  • Yellow 1/4 zip pullover.
                  • Two chest pockets.
                  • Standard fit.
                  • Waterproof, breathable, seam sealed.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"taurus-elements-shell-xl-yellow-354","links":{},"stock":{"item_id":354,"product_id":354,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xl-yellow-354.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"353","_score":1,"_source":{"id":353,"sku":"MJ09-XL-White","name":"Taurus Elements Shell-XL-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

                  What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                  \n

                  • Yellow 1/4 zip pullover.
                  • Two chest pockets.
                  • Standard fit.
                  • Waterproof, breathable, seam sealed.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"taurus-elements-shell-xl-white-353","links":{},"stock":{"item_id":353,"product_id":353,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xl-white-353.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"373","_score":1,"_source":{"id":373,"sku":"MJ11-XS-Green","name":"Typhon Performance Fleece-lined Jacket-XS-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                  \n

                  • Black full-zip flight jacket.
                  • Cocona® wicking fiber.
                  • Machine wash/dry.

                  ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"typhon-performance-fleece-lined-jacket-xs-green-373","links":{},"stock":{"item_id":373,"product_id":373,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xs-green-373.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"364","_score":1,"_source":{"id":364,"sku":"MJ10-M-Red","name":"Mars HeatTech™ Pullover-M-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                  The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                  \n

                  • Red 1/4 zip pullover.
                  • Adjustable VELCRO® sleeve cuffs.
                  • Two hand pockets.
                  • Napoleon pocket.
                  • Machine wash/dry

                  ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mars-heattech-and-trade-pullover-m-red-364","links":{},"stock":{"item_id":364,"product_id":364,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-m-red-364.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"389","_score":1,"_source":{"id":389,"sku":"MJ06-XS-Green","name":"Jupiter All-Weather Trainer -XS-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

                  Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                  \n

                  • Relaxed fit.
                  • Hand pockets.
                  • Machine wash/dry.
                  • Reflective safety trim.

                  ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jupiter-all-weather-trainer-xs-green-389","links":{},"stock":{"item_id":389,"product_id":389,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xs-green-389.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"360","_score":1,"_source":{"id":360,"sku":"MJ10-S-Orange","name":"Mars HeatTech™ Pullover-S-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                  The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                  \n

                  • Red 1/4 zip pullover.
                  • Adjustable VELCRO® sleeve cuffs.
                  • Two hand pockets.
                  • Napoleon pocket.
                  • Machine wash/dry

                  ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mars-heattech-and-trade-pullover-s-orange-360","links":{},"stock":{"item_id":360,"product_id":360,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-s-orange-360.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"395","_score":1,"_source":{"id":395,"sku":"MJ06-M-Green","name":"Jupiter All-Weather Trainer -M-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

                  Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                  \n

                  • Relaxed fit.
                  • Hand pockets.
                  • Machine wash/dry.
                  • Reflective safety trim.

                  ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jupiter-all-weather-trainer-m-green-395","links":{},"stock":{"item_id":395,"product_id":395,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-m-green-395.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"312","_score":1,"_source":{"id":312,"sku":"MJ07-S-Red","name":"Orion Two-Tone Fitted Jacket-S-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

                  While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                  \n

                  • Red full zip fleece with gray insets.
                  • Double-knit construction.
                  • Full athletic cut.
                  • Set in sleeves.
                  • Front pouch pocket.

                  ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"orion-two-tone-fitted-jacket-s-red-312","links":{},"stock":{"item_id":312,"product_id":312,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-s-red-312.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"328","_score":1,"_source":{"id":328,"sku":"MJ08-S-Gray","name":"Lando Gym Jacket-S-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

                  The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                  \n

                  • Gray polyester/spandex full zip jacket with orange lining.
                  • Right pocket device storage.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lando-gym-jacket-s-gray-328","links":{},"stock":{"item_id":328,"product_id":328,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-s-gray-328.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"319","_score":1,"_source":{"id":319,"sku":"MJ07-L-Yellow","name":"Orion Two-Tone Fitted Jacket-L-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

                  While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                  \n

                  • Red full zip fleece with gray insets.
                  • Double-knit construction.
                  • Full athletic cut.
                  • Set in sleeves.
                  • Front pouch pocket.

                  ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"orion-two-tone-fitted-jacket-l-yellow-319","links":{},"stock":{"item_id":319,"product_id":319,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-l-yellow-319.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"327","_score":1,"_source":{"id":327,"sku":"MJ08-S-Blue","name":"Lando Gym Jacket-S-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

                  The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                  \n

                  • Gray polyester/spandex full zip jacket with orange lining.
                  • Right pocket device storage.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lando-gym-jacket-s-blue-327","links":{},"stock":{"item_id":327,"product_id":327,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-s-blue-327.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"316","_score":1,"_source":{"id":316,"sku":"MJ07-M-Yellow","name":"Orion Two-Tone Fitted Jacket-M-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

                  While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                  \n

                  • Red full zip fleece with gray insets.
                  • Double-knit construction.
                  • Full athletic cut.
                  • Set in sleeves.
                  • Front pouch pocket.

                  ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"orion-two-tone-fitted-jacket-m-yellow-316","links":{},"stock":{"item_id":316,"product_id":316,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-m-yellow-316.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"337","_score":1,"_source":{"id":337,"sku":"MJ08-XL-Gray","name":"Lando Gym Jacket-XL-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

                  The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                  \n

                  • Gray polyester/spandex full zip jacket with orange lining.
                  • Right pocket device storage.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lando-gym-jacket-xl-gray-337","links":{},"stock":{"item_id":337,"product_id":337,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xl-gray-337.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"346","_score":1,"_source":{"id":346,"sku":"MJ09-M-Blue","name":"Taurus Elements Shell-M-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

                  What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                  \n

                  • Yellow 1/4 zip pullover.
                  • Two chest pockets.
                  • Standard fit.
                  • Waterproof, breathable, seam sealed.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"taurus-elements-shell-m-blue-346","links":{},"stock":{"item_id":346,"product_id":346,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-m-blue-346.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"441","_score":1,"_source":{"id":441,"sku":"MS04-S-Red","name":"Gobi HeatTec® Tee-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                  \n

                  • Orange micropolyester shirt.
                  • HeatTec® wicking fabric.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gobi-heattec-and-reg-tee-s-red-441","links":{},"stock":{"item_id":441,"product_id":441,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-s-red-441.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"417","_score":1,"_source":{"id":417,"sku":"MJ03-XL-Green","name":"Montana Wind Jacket-XL-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                  Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                  \n

                  Adjustable hood.
                  Split pocket.
                  Thumb holes.
                  Machine wash/hang to dry.

                  ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"montana-wind-jacket-xl-green-417","links":{},"stock":{"item_id":417,"product_id":417,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xl-green-417.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"431","_score":1,"_source":{"id":431,"sku":"MJ12-L-Orange","name":"Proteus Fitness Jackshirt-L-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                  \n

                  • 1/4 zip. Stand-up collar.
                  • Machine wash/dry.
                  • Quilted inner layer.

                  ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"proteus-fitness-jackshirt-l-orange-431","links":{},"stock":{"item_id":431,"product_id":431,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-l-orange-431.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"443","_score":1,"_source":{"id":443,"sku":"MS04-M-Orange","name":"Gobi HeatTec® Tee-M-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                  \n

                  • Orange micropolyester shirt.
                  • HeatTec® wicking fabric.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gobi-heattec-and-reg-tee-m-orange-443","links":{},"stock":{"item_id":443,"product_id":443,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-m-orange-443.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"448","_score":1,"_source":{"id":448,"sku":"MS04-XL-Black","name":"Gobi HeatTec® Tee-XL-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                  \n

                  • Orange micropolyester shirt.
                  • HeatTec® wicking fabric.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gobi-heattec-and-reg-tee-xl-black-448","links":{},"stock":{"item_id":448,"product_id":448,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xl-black-448.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"409","_score":1,"_source":{"id":409,"sku":"MJ03-S-Red","name":"Montana Wind Jacket-S-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                  Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                  \n

                  Adjustable hood.
                  Split pocket.
                  Thumb holes.
                  Machine wash/hang to dry.

                  ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"montana-wind-jacket-s-red-409","links":{},"stock":{"item_id":409,"product_id":409,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-s-red-409.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"412","_score":1,"_source":{"id":412,"sku":"MJ03-M-Red","name":"Montana Wind Jacket-M-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                  Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                  \n

                  Adjustable hood.
                  Split pocket.
                  Thumb holes.
                  Machine wash/hang to dry.

                  ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"montana-wind-jacket-m-red-412","links":{},"stock":{"item_id":412,"product_id":412,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-m-red-412.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"425","_score":1,"_source":{"id":425,"sku":"MJ12-S-Orange","name":"Proteus Fitness Jackshirt-S-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                  \n

                  • 1/4 zip. Stand-up collar.
                  • Machine wash/dry.
                  • Quilted inner layer.

                  ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"proteus-fitness-jackshirt-s-orange-425","links":{},"stock":{"item_id":425,"product_id":425,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-s-orange-425.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"430","_score":1,"_source":{"id":430,"sku":"MJ12-L-Blue","name":"Proteus Fitness Jackshirt-L-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                  \n

                  • 1/4 zip. Stand-up collar.
                  • Machine wash/dry.
                  • Quilted inner layer.

                  ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"proteus-fitness-jackshirt-l-blue-430","links":{},"stock":{"item_id":430,"product_id":430,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-l-blue-430.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"429","_score":1,"_source":{"id":429,"sku":"MJ12-L-Black","name":"Proteus Fitness Jackshirt-L-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                  \n

                  • 1/4 zip. Stand-up collar.
                  • Machine wash/dry.
                  • Quilted inner layer.

                  ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"proteus-fitness-jackshirt-l-black-429","links":{},"stock":{"item_id":429,"product_id":429,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-l-black-429.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"359","_score":1,"_source":{"id":359,"sku":"MJ10-S-Black","name":"Mars HeatTech™ Pullover-S-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                  The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                  \n

                  • Red 1/4 zip pullover.
                  • Adjustable VELCRO® sleeve cuffs.
                  • Two hand pockets.
                  • Napoleon pocket.
                  • Machine wash/dry

                  ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mars-heattech-and-trade-pullover-s-black-359","links":{},"stock":{"item_id":359,"product_id":359,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-s-black-359.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"394","_score":1,"_source":{"id":394,"sku":"MJ06-M-Blue","name":"Jupiter All-Weather Trainer -M-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

                  Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                  \n

                  • Relaxed fit.
                  • Hand pockets.
                  • Machine wash/dry.
                  • Reflective safety trim.

                  ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jupiter-all-weather-trainer-m-blue-394","links":{},"stock":{"item_id":394,"product_id":394,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-m-blue-394.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"384","_score":1,"_source":{"id":384,"sku":"MJ11-XL-Black","name":"Typhon Performance Fleece-lined Jacket-XL-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                  \n

                  • Black full-zip flight jacket.
                  • Cocona® wicking fiber.
                  • Machine wash/dry.

                  ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"typhon-performance-fleece-lined-jacket-xl-black-384","links":{},"stock":{"item_id":384,"product_id":384,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xl-black-384.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"461","_score":1,"_source":{"id":461,"sku":"MS05-L-Black","name":"Helios EverCool™ Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                  \n

                  • Teal quick dry tee.
                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helios-evercool-and-trade-tee-l-black-461","links":{},"stock":{"item_id":461,"product_id":461,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-l-black-461.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"476","_score":1,"_source":{"id":476,"sku":"MS09-M-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-M-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                  \n

                  • Royal polyester tee with black accents.
                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-crew-neck-m-red-476","links":{},"stock":{"item_id":476,"product_id":476,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-m-red-476.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"474","_score":1,"_source":{"id":474,"sku":"MS09-M-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-M-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                  \n

                  • Royal polyester tee with black accents.
                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-crew-neck-m-black-474","links":{},"stock":{"item_id":474,"product_id":474,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-m-black-474.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"315","_score":1,"_source":{"id":315,"sku":"MJ07-M-Red","name":"Orion Two-Tone Fitted Jacket-M-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

                  While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                  \n

                  • Red full zip fleece with gray insets.
                  • Double-knit construction.
                  • Full athletic cut.
                  • Set in sleeves.
                  • Front pouch pocket.

                  ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"orion-two-tone-fitted-jacket-m-red-315","links":{},"stock":{"item_id":315,"product_id":315,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-m-red-315.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"594","_score":1,"_source":{"id":594,"sku":"MS10-XL-Red","name":"Logan HeatTec® Tee-XL-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                  \n

                  • Semi-fitted.
                  • Crew neckline.
                  • Machine wash/tumble dry.

                  ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"logan-heattec-and-reg-tee-xl-red-594","links":{},"stock":{"item_id":594,"product_id":594,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xl-red-594.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"579","_score":1,"_source":{"id":579,"sku":"MS02","name":"Ryker LumaTech™ Tee (V-neck)","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":28,"description":"

                  Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                  \n

                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ryker-lumatech-trade-tee-v-neck","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,33,39],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"ryker-lumatech-and-trade-tee-v-neck-579","links":{},"stock":{"item_id":579,"product_id":579,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS02-XS-Black","id":564,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-XS-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-xs-black","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-XS-Blue","id":565,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-XS-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-xs-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-XS-Gray","id":566,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-XS-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"52","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-xs-gray","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-S-Black","id":567,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-S-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-s-black","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-S-Blue","id":568,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-S-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-s-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-S-Gray","id":569,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-S-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"52","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-s-gray","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-M-Black","id":570,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-M-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-m-black","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-M-Blue","id":571,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-M-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-m-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-M-Gray","id":572,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-M-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"52","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-m-gray","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-L-Black","id":573,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-L-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-l-black","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-L-Blue","id":574,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-L-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-l-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-L-Gray","id":575,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-L-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"52","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-l-gray","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-XL-Black","id":576,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-XL-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-xl-black","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-XL-Blue","id":577,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-XL-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-xl-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MS02-XL-Gray","id":578,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-XL-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"52","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-xl-gray","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001}],"configurable_options":[{"id":67,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"}],"product_id":579,"attribute_code":"color"},{"id":66,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":579,"attribute_code":"size"}],"color_options":[49,50,52],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-579.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"473","_score":1,"_source":{"id":473,"sku":"MS09-S-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-S-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                  \n

                  • Royal polyester tee with black accents.
                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-crew-neck-s-red-473","links":{},"stock":{"item_id":473,"product_id":473,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-s-red-473.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"493","_score":1,"_source":{"id":493,"sku":"MS11-L-Blue","name":"Atomic Endurance Running Tee (V-neck)-L-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                  \n

                  • Lime heathered v-neck tee.
                  • Ultra-lightweight.
                  • Moisture-wicking Cocona® fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-v-neck-l-blue-493","links":{},"stock":{"item_id":493,"product_id":493,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-l-blue-493.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"475","_score":1,"_source":{"id":475,"sku":"MS09-M-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-M-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                  \n

                  • Royal polyester tee with black accents.
                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-crew-neck-m-blue-475","links":{},"stock":{"item_id":475,"product_id":475,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-m-blue-475.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"492","_score":1,"_source":{"id":492,"sku":"MS11-M-Yellow","name":"Atomic Endurance Running Tee (V-neck)-M-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                  \n

                  • Lime heathered v-neck tee.
                  • Ultra-lightweight.
                  • Moisture-wicking Cocona® fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-v-neck-m-yellow-492","links":{},"stock":{"item_id":492,"product_id":492,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-m-yellow-492.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"472","_score":1,"_source":{"id":472,"sku":"MS09-S-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-S-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                  \n

                  • Royal polyester tee with black accents.
                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-crew-neck-s-blue-472","links":{},"stock":{"item_id":472,"product_id":472,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-s-blue-472.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"497","_score":1,"_source":{"id":497,"sku":"MS11-XL-Green","name":"Atomic Endurance Running Tee (V-neck)-XL-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                  \n

                  • Lime heathered v-neck tee.
                  • Ultra-lightweight.
                  • Moisture-wicking Cocona® fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-v-neck-xl-green-497","links":{},"stock":{"item_id":497,"product_id":497,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xl-green-497.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"498","_score":1,"_source":{"id":498,"sku":"MS11-XL-Yellow","name":"Atomic Endurance Running Tee (V-neck)-XL-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                  \n

                  • Lime heathered v-neck tee.
                  • Ultra-lightweight.
                  • Moisture-wicking Cocona® fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-v-neck-xl-yellow-498","links":{},"stock":{"item_id":498,"product_id":498,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xl-yellow-498.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"464","_score":1,"_source":{"id":464,"sku":"MS05-XL-Black","name":"Helios EverCool™ Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                  \n

                  • Teal quick dry tee.
                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helios-evercool-and-trade-tee-xl-black-464","links":{},"stock":{"item_id":464,"product_id":464,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xl-black-464.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"495","_score":1,"_source":{"id":495,"sku":"MS11-L-Yellow","name":"Atomic Endurance Running Tee (V-neck)-L-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                  \n

                  • Lime heathered v-neck tee.
                  • Ultra-lightweight.
                  • Moisture-wicking Cocona® fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-v-neck-l-yellow-495","links":{},"stock":{"item_id":495,"product_id":495,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-l-yellow-495.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"557","_score":1,"_source":{"id":557,"sku":"MS01-L-Black","name":"Aero Daily Fitness Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                  \n

                  Relaxed fit.
                  Short-Sleeve.
                  Machine wash/dry.

                  ","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"aero-daily-fitness-tee-l-black-557","links":{},"stock":{"item_id":557,"product_id":557,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-l-black-557.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"567","_score":1,"_source":{"id":567,"sku":"MS02-S-Black","name":"Ryker LumaTech™ Tee (V-neck)-S-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                  \n

                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-v-neck-s-black-567","links":{},"stock":{"item_id":567,"product_id":567,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-s-black-567.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"590","_score":1,"_source":{"id":590,"sku":"MS10-L-Blue","name":"Logan HeatTec® Tee-L-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                  \n

                  • Semi-fitted.
                  • Crew neckline.
                  • Machine wash/tumble dry.

                  ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"logan-heattec-and-reg-tee-l-blue-590","links":{},"stock":{"item_id":590,"product_id":590,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-l-blue-590.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"570","_score":1,"_source":{"id":570,"sku":"MS02-M-Black","name":"Ryker LumaTech™ Tee (V-neck)-M-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                  \n

                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-v-neck-m-black-570","links":{},"stock":{"item_id":570,"product_id":570,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-m-black-570.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"584","_score":1,"_source":{"id":584,"sku":"MS10-S-Blue","name":"Logan HeatTec® Tee-S-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                  \n

                  • Semi-fitted.
                  • Crew neckline.
                  • Machine wash/tumble dry.

                  ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"logan-heattec-and-reg-tee-s-blue-584","links":{},"stock":{"item_id":584,"product_id":584,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-s-blue-584.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"581","_score":1,"_source":{"id":581,"sku":"MS10-XS-Blue","name":"Logan HeatTec® Tee-XS-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                  \n

                  • Semi-fitted.
                  • Crew neckline.
                  • Machine wash/tumble dry.

                  ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"logan-heattec-and-reg-tee-xs-blue-581","links":{},"stock":{"item_id":581,"product_id":581,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xs-blue-581.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"577","_score":1,"_source":{"id":577,"sku":"MS02-XL-Blue","name":"Ryker LumaTech™ Tee (V-neck)-XL-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                  \n

                  • Relaxed fit.
                  • Short-Sleeve.
                  • Machine wash/dry.

                  ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-v-neck-xl-blue-577","links":{},"stock":{"item_id":577,"product_id":577,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xl-blue-577.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"597","_score":1,"_source":{"id":597,"sku":"MS07-XS-Green","name":"Deion Long-Sleeve EverCool™ Tee-XS-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                  \n

                  • Fitted.
                  • Contrast inner neck tape.
                  • Machine wash/dry.

                  ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"deion-long-sleeve-evercool-and-trade-tee-xs-green-597","links":{},"stock":{"item_id":597,"product_id":597,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xs-green-597.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"603","_score":1,"_source":{"id":603,"sku":"MS07-M-Green","name":"Deion Long-Sleeve EverCool™ Tee-M-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                  \n

                  • Fitted.
                  • Contrast inner neck tape.
                  • Machine wash/dry.

                  ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"deion-long-sleeve-evercool-and-trade-tee-m-green-603","links":{},"stock":{"item_id":603,"product_id":603,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-m-green-603.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"619","_score":1,"_source":{"id":619,"sku":"MS08-M-Blue","name":"Strike Endurance Tee-M-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                  \n

                  • Loose fit.
                  • Ribbed cuffs/collar.
                  • Machine wash/dry.

                  ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"strike-endurance-tee-m-blue-619","links":{},"stock":{"item_id":619,"product_id":619,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-m-blue-619.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"623","_score":1,"_source":{"id":623,"sku":"MS08-L-Red","name":"Strike Endurance Tee-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                  \n

                  • Loose fit.
                  • Ribbed cuffs/collar.
                  • Machine wash/dry.

                  ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"strike-endurance-tee-l-red-623","links":{},"stock":{"item_id":623,"product_id":623,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-l-red-623.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"626","_score":1,"_source":{"id":626,"sku":"MS08-XL-Red","name":"Strike Endurance Tee-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                  \n

                  • Loose fit.
                  • Ribbed cuffs/collar.
                  • Machine wash/dry.

                  ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"strike-endurance-tee-xl-red-626","links":{},"stock":{"item_id":626,"product_id":626,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xl-red-626.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"608","_score":1,"_source":{"id":608,"sku":"MS07-XL-Black","name":"Deion Long-Sleeve EverCool™ Tee-XL-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                  \n

                  • Fitted.
                  • Contrast inner neck tape.
                  • Machine wash/dry.

                  ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"deion-long-sleeve-evercool-and-trade-tee-xl-black-608","links":{},"stock":{"item_id":608,"product_id":608,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xl-black-608.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"636","_score":1,"_source":{"id":636,"sku":"MT01-M-Red","name":"Erikssen CoolTech™ Fitness Tank-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                  \n

                  • Red performance tank.
                  • Slight scoop neckline.
                  • Reflectivity.
                  • Machine wash/dry.

                  ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erikssen-cooltech-and-trade-fitness-tank-m-red-636","links":{},"stock":{"item_id":636,"product_id":636,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-m-red-636.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"505","_score":1,"_source":{"id":505,"sku":"MS12-S-Red","name":"Atomic Endurance Running Tee (Crew-Neck)-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                  \n

                  • Red polyester tee.
                  • Crew neckline.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-crew-neck-s-red-505","links":{},"stock":{"item_id":505,"product_id":505,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-s-red-505.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"501","_score":1,"_source":{"id":501,"sku":"MS12-XS-Blue","name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                  \n

                  • Red polyester tee.
                  • Crew neckline.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-crew-neck-xs-blue-501","links":{},"stock":{"item_id":501,"product_id":501,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xs-blue-501.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"517","_score":1,"_source":{"id":517,"sku":"MS03-XS-Green","name":"Balboa Persistence Tee-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                  \n

                  • Crew neckline.
                  • Semi-fitted.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"balboa-persistence-tee-xs-green-517","links":{},"stock":{"item_id":517,"product_id":517,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xs-green-517.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"530","_score":1,"_source":{"id":530,"sku":"MS03-XL-Orange","name":"Balboa Persistence Tee-XL-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                  \n

                  • Crew neckline.
                  • Semi-fitted.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"balboa-persistence-tee-xl-orange-530","links":{},"stock":{"item_id":530,"product_id":530,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xl-orange-530.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"529","_score":1,"_source":{"id":529,"sku":"MS03-XL-Green","name":"Balboa Persistence Tee-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                  \n

                  • Crew neckline.
                  • Semi-fitted.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"balboa-persistence-tee-xl-green-529","links":{},"stock":{"item_id":529,"product_id":529,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xl-green-529.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"647","_score":1,"_source":{"id":647,"sku":"MT02-S-Gray","name":"Tristan Endurance Tank-S-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                  \n

                  • White performance tank.
                  • Stylish contrast stitching.
                  • Relaxed fit.
                  • Ribbed crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tristan-endurance-tank-s-gray-647","links":{},"stock":{"item_id":647,"product_id":647,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-s-gray-647.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"639","_score":1,"_source":{"id":639,"sku":"MT01-L-Red","name":"Erikssen CoolTech™ Fitness Tank-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                  \n

                  • Red performance tank.
                  • Slight scoop neckline.
                  • Reflectivity.
                  • Machine wash/dry.

                  ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erikssen-cooltech-and-trade-fitness-tank-l-red-639","links":{},"stock":{"item_id":639,"product_id":639,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-l-red-639.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"641","_score":1,"_source":{"id":641,"sku":"MT01-XL-Orange","name":"Erikssen CoolTech™ Fitness Tank-XL-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                  \n

                  • Red performance tank.
                  • Slight scoop neckline.
                  • Reflectivity.
                  • Machine wash/dry.

                  ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erikssen-cooltech-and-trade-fitness-tank-xl-orange-641","links":{},"stock":{"item_id":641,"product_id":641,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xl-orange-641.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"650","_score":1,"_source":{"id":650,"sku":"MT02-M-Gray","name":"Tristan Endurance Tank-M-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                  \n

                  • White performance tank.
                  • Stylish contrast stitching.
                  • Relaxed fit.
                  • Ribbed crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tristan-endurance-tank-m-gray-650","links":{},"stock":{"item_id":650,"product_id":650,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-m-gray-650.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"536","_score":1,"_source":{"id":536,"sku":"MS06-S-Green","name":"Zoltan Gym Tee-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                  \n

                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoltan-gym-tee-s-green-536","links":{},"stock":{"item_id":536,"product_id":536,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-s-green-536.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"550","_score":1,"_source":{"id":550,"sku":"MS01-XS-Yellow","name":"Aero Daily Fitness Tee-XS-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                  \n

                  Relaxed fit.
                  Short-Sleeve.
                  Machine wash/dry.

                  ","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"aero-daily-fitness-tee-xs-yellow-550","links":{},"stock":{"item_id":550,"product_id":550,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xs-yellow-550.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"543","_score":1,"_source":{"id":543,"sku":"MS06-L-Yellow","name":"Zoltan Gym Tee-L-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                  \n

                  • Relaxed fit.
                  • Crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoltan-gym-tee-l-yellow-543","links":{},"stock":{"item_id":543,"product_id":543,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-l-yellow-543.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"607","_score":1,"_source":{"id":607,"sku":"MS07-L-White","name":"Deion Long-Sleeve EverCool™ Tee-L-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                  \n

                  • Fitted.
                  • Contrast inner neck tape.
                  • Machine wash/dry.

                  ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"deion-long-sleeve-evercool-and-trade-tee-l-white-607","links":{},"stock":{"item_id":607,"product_id":607,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-l-white-607.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"551","_score":1,"_source":{"id":551,"sku":"MS01-S-Black","name":"Aero Daily Fitness Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                  \n

                  Relaxed fit.
                  Short-Sleeve.
                  Machine wash/dry.

                  ","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"aero-daily-fitness-tee-s-black-551","links":{},"stock":{"item_id":551,"product_id":551,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-s-black-551.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"692","_score":1,"_source":{"id":692,"sku":"MT06-XL-Black","name":"Vulcan Weightlifting Tank-XL-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

                  \n

                  • Black polyester spandex tank.
                  • 100% polyester.
                  • Freedom of movement.
                  • No-chafe seams.

                  ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"vulcan-weightlifting-tank-xl-black-692","links":{},"stock":{"item_id":692,"product_id":692,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-xl-black-692.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"700","_score":1,"_source":{"id":700,"sku":"MT08-XS-Green","name":"Sparta Gym Tank-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

                  \n

                  • Green polyester tank.
                  • Ultra lightweight.
                  • Naturally odor-resistant.
                  • Close-to-body athletic fit.
                  • Chafe-resistant flatlock seams.

                  ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"sparta-gym-tank-xs-green-700","links":{},"stock":{"item_id":700,"product_id":700,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-xs-green-700.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"699","_score":1,"_source":{"id":699,"sku":"MT07","name":"Argus All-Weather Tank","attribute_set_id":9,"price":22,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":22,"description":"

                  The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

                  \n

                  • Dark gray polyester spandex tank.
                  • Reflective details for nighttime visibility.
                  • Stash pocket.
                  • Anti-chafe flatlock seams.

                  ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"argus-all-weather-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"argus-all-weather-tank-699","links":{},"stock":{"item_id":699,"product_id":699,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT07-XS-Gray","id":694,"status":1,"name":"Argus All-Weather Tank-XS-Gray","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"167","color":"52","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","url_key":"argus-all-weather-tank-xs-gray","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"MT07-S-Gray","id":695,"status":1,"name":"Argus All-Weather Tank-S-Gray","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"168","color":"52","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","url_key":"argus-all-weather-tank-s-gray","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"MT07-M-Gray","id":696,"status":1,"name":"Argus All-Weather Tank-M-Gray","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"169","color":"52","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","url_key":"argus-all-weather-tank-m-gray","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"MT07-L-Gray","id":697,"status":1,"name":"Argus All-Weather Tank-L-Gray","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"170","color":"52","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","url_key":"argus-all-weather-tank-l-gray","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001},{"sku":"MT07-XL-Gray","id":698,"status":1,"name":"Argus All-Weather Tank-XL-Gray","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"171","color":"52","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","url_key":"argus-all-weather-tank-xl-gray","msrp_display_actual_price_type":"0","final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001}],"configurable_options":[{"id":87,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"}],"product_id":699,"attribute_code":"color"},{"id":86,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":699,"attribute_code":"size"}],"color_options":[52],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-699.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"675","_score":1,"_source":{"id":675,"sku":"MT03","name":"Primo Endurance Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

                  Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                  \n

                  • Red heather tank with gray pocket.
                  • Chafe-resistant flatlock seams.
                  • Relaxed fit.
                  • Contrast topstitching.
                  • Machine wash/dry.

                  ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"primo-endurance-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"primo-endurance-tank-675","links":{},"stock":{"item_id":675,"product_id":675,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT03-XS-Blue","id":660,"status":1,"name":"Primo Endurance Tank-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"50","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","url_key":"primo-endurance-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-XS-Red","id":661,"status":1,"name":"Primo Endurance Tank-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"58","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","url_key":"primo-endurance-tank-xs-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-XS-Yellow","id":662,"status":1,"name":"Primo Endurance Tank-XS-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"60","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","url_key":"primo-endurance-tank-xs-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-S-Blue","id":663,"status":1,"name":"Primo Endurance Tank-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"50","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","url_key":"primo-endurance-tank-s-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-S-Red","id":664,"status":1,"name":"Primo Endurance Tank-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"58","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","url_key":"primo-endurance-tank-s-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-S-Yellow","id":665,"status":1,"name":"Primo Endurance Tank-S-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"60","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","url_key":"primo-endurance-tank-s-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-M-Blue","id":666,"status":1,"name":"Primo Endurance Tank-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"50","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","url_key":"primo-endurance-tank-m-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-M-Red","id":667,"status":1,"name":"Primo Endurance Tank-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"58","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","url_key":"primo-endurance-tank-m-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-M-Yellow","id":668,"status":1,"name":"Primo Endurance Tank-M-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"60","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","url_key":"primo-endurance-tank-m-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-L-Blue","id":669,"status":1,"name":"Primo Endurance Tank-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"50","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","url_key":"primo-endurance-tank-l-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-L-Red","id":670,"status":1,"name":"Primo Endurance Tank-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"58","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","url_key":"primo-endurance-tank-l-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-L-Yellow","id":671,"status":1,"name":"Primo Endurance Tank-L-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"60","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","url_key":"primo-endurance-tank-l-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-XL-Blue","id":672,"status":1,"name":"Primo Endurance Tank-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"50","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","url_key":"primo-endurance-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-XL-Red","id":673,"status":1,"name":"Primo Endurance Tank-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"58","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","url_key":"primo-endurance-tank-xl-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MT03-XL-Yellow","id":674,"status":1,"name":"Primo Endurance Tank-XL-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"60","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","url_key":"primo-endurance-tank-xl-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":79,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":675,"attribute_code":"color"},{"id":78,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":675,"attribute_code":"size"}],"color_options":[50,58,60],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-675.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"780","_score":1,"_source":{"id":780,"sku":"MP04-36-Green","name":"Supernova Sport Pant-36-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                  \n

                  • Dark heather gray straight leg cotton pants.
                  • Relaxed fit.
                  • Internal drawstring.
                  • Machine wash/dry.

                  ","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","color":"53","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"supernova-sport-pant-36-green-780","links":{},"stock":{"item_id":780,"product_id":780,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-36-green-780.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"799","_score":1,"_source":{"id":799,"sku":"MP06-33-Green","name":"Mithra Warmup Pant-33-Green","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                  \n

                  • Ankle zips.
                  • Elasticized waistband with draw cord.
                  • Dual hand pockets.
                  • Reflective elements for low-light safety.

                  ","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","color":"53","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"mithra-warmup-pant-33-green-799","links":{},"stock":{"item_id":799,"product_id":799,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-33-green-799.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"796","_score":1,"_source":{"id":796,"sku":"MP06-32-Green","name":"Mithra Warmup Pant-32-Green","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                  \n

                  • Ankle zips.
                  • Elasticized waistband with draw cord.
                  • Dual hand pockets.
                  • Reflective elements for low-light safety.

                  ","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","color":"53","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"mithra-warmup-pant-32-green-796","links":{},"stock":{"item_id":796,"product_id":796,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-32-green-796.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"798","_score":1,"_source":{"id":798,"sku":"MP06-33-Gray","name":"Mithra Warmup Pant-33-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                  \n

                  • Ankle zips.
                  • Elasticized waistband with draw cord.
                  • Dual hand pockets.
                  • Reflective elements for low-light safety.

                  ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","color":"52","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"mithra-warmup-pant-33-gray-798","links":{},"stock":{"item_id":798,"product_id":798,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-33-gray-798.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"794","_score":1,"_source":{"id":794,"sku":"MP05","name":"Kratos Gym Pant","attribute_set_id":10,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":57,"description":"

                  Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                  \n

                  • Navy cotton straight leg pants.
                  • Relaxed fit.
                  • 2 side-seam pockets.
                  • Internal zip pocket.
                  • Drawstring waist.
                  • Machine wash/dry.

                  ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"kratos-gym-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38,39],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[208,210,211],"slug":"kratos-gym-pant-794","links":{},"stock":{"item_id":794,"product_id":794,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP05-32-Black","id":782,"status":1,"name":"Kratos Gym Pant-32-Black","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"49","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","url_key":"kratos-gym-pant-32-black","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"MP05-32-Blue","id":783,"status":1,"name":"Kratos Gym Pant-32-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"50","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","url_key":"kratos-gym-pant-32-blue","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"MP05-32-Green","id":784,"status":1,"name":"Kratos Gym Pant-32-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"53","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","url_key":"kratos-gym-pant-32-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"MP05-33-Black","id":785,"status":1,"name":"Kratos Gym Pant-33-Black","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"49","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","url_key":"kratos-gym-pant-33-black","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"MP05-33-Blue","id":786,"status":1,"name":"Kratos Gym Pant-33-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"50","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","url_key":"kratos-gym-pant-33-blue","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"MP05-33-Green","id":787,"status":1,"name":"Kratos Gym Pant-33-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"53","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","url_key":"kratos-gym-pant-33-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"MP05-34-Black","id":788,"status":1,"name":"Kratos Gym Pant-34-Black","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"49","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","url_key":"kratos-gym-pant-34-black","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"MP05-34-Blue","id":789,"status":1,"name":"Kratos Gym Pant-34-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"50","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","url_key":"kratos-gym-pant-34-blue","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"MP05-34-Green","id":790,"status":1,"name":"Kratos Gym Pant-34-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"53","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","url_key":"kratos-gym-pant-34-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"MP05-36-Black","id":791,"status":1,"name":"Kratos Gym Pant-36-Black","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"49","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","url_key":"kratos-gym-pant-36-black","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"MP05-36-Blue","id":792,"status":1,"name":"Kratos Gym Pant-36-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"50","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","url_key":"kratos-gym-pant-36-blue","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"MP05-36-Green","id":793,"status":1,"name":"Kratos Gym Pant-36-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"53","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","url_key":"kratos-gym-pant-36-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001}],"configurable_options":[{"id":107,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":794,"attribute_code":"color"},{"id":106,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":794,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-794.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"770","_score":1,"_source":{"id":770,"sku":"MP04-32-Gray","name":"Supernova Sport Pant-32-Gray","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                  \n

                  • Dark heather gray straight leg cotton pants.
                  • Relaxed fit.
                  • Internal drawstring.
                  • Machine wash/dry.

                  ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"supernova-sport-pant-32-gray-770","links":{},"stock":{"item_id":770,"product_id":770,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-32-gray-770.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"761","_score":1,"_source":{"id":761,"sku":"MP03-33-Red","name":"Geo Insulated Jogging Pant-33-Red","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                  \n

                  • Black polyester spandex pants with zipper pockets.
                  • Reflective safety accents.
                  • Loose fit.
                  • On-seam pockets.
                  • 8\" leg zips. 32\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"geo-insulated-jogging-pant-33-red-761","links":{},"stock":{"item_id":761,"product_id":761,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-33-red-761.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"777","_score":1,"_source":{"id":777,"sku":"MP04-34-Green","name":"Supernova Sport Pant-34-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                  \n

                  • Dark heather gray straight leg cotton pants.
                  • Relaxed fit.
                  • Internal drawstring.
                  • Machine wash/dry.

                  ","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","color":"53","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"supernova-sport-pant-34-green-777","links":{},"stock":{"item_id":777,"product_id":777,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-34-green-777.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"753","_score":1,"_source":{"id":753,"sku":"MP02-36-Gray","name":"Viktor LumaTech™ Pant-36-Gray","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001,"description":"

                  You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                  \n

                  • Dark gray polyester/spandex straight leg pants.
                  • Elastic waistband and internal drawstring.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","color":"52","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"viktor-lumatech-and-trade-pant-36-gray-753","links":{},"stock":{"item_id":753,"product_id":753,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-36-gray-753.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"765","_score":1,"_source":{"id":765,"sku":"MP03-36-Blue","name":"Geo Insulated Jogging Pant-36-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                  \n

                  • Black polyester spandex pants with zipper pockets.
                  • Reflective safety accents.
                  • Loose fit.
                  • On-seam pockets.
                  • 8\" leg zips. 32\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"geo-insulated-jogging-pant-36-blue-765","links":{},"stock":{"item_id":765,"product_id":765,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-36-blue-765.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"771","_score":1,"_source":{"id":771,"sku":"MP04-32-Green","name":"Supernova Sport Pant-32-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                  \n

                  • Dark heather gray straight leg cotton pants.
                  • Relaxed fit.
                  • Internal drawstring.
                  • Machine wash/dry.

                  ","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","color":"53","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"supernova-sport-pant-32-green-771","links":{},"stock":{"item_id":771,"product_id":771,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-32-green-771.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"795","_score":1,"_source":{"id":795,"sku":"MP06-32-Gray","name":"Mithra Warmup Pant-32-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                  \n

                  • Ankle zips.
                  • Elasticized waistband with draw cord.
                  • Dual hand pockets.
                  • Reflective elements for low-light safety.

                  ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","color":"52","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"mithra-warmup-pant-32-gray-795","links":{},"stock":{"item_id":795,"product_id":795,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-32-gray-795.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"790","_score":1,"_source":{"id":790,"sku":"MP05-34-Green","name":"Kratos Gym Pant-34-Green","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                  \n

                  • Navy cotton straight leg pants.
                  • Relaxed fit.
                  • 2 side-seam pockets.
                  • Internal zip pocket.
                  • Drawstring waist.
                  • Machine wash/dry.

                  ","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"kratos-gym-pant-34-green-790","links":{},"stock":{"item_id":790,"product_id":790,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-34-green-790.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"717","_score":1,"_source":{"id":717,"sku":"MT10","name":"Tiberius Gym Tank","attribute_set_id":9,"price":18,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":18,"description":"

                  Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

                  \n

                  • Yellow scoop neck cotton tank.
                  • Comfortable, relaxed fit.
                  • 55% Hemp / 45% Organic Cotton.
                  • Pesticide- and herbicide-free hemp.

                  ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"tiberius-gym-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,153,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"tiberius-gym-tank-717","links":{},"stock":{"item_id":717,"product_id":717,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT10-XS-Yellow","id":712,"status":1,"name":"Tiberius Gym Tank-XS-Yellow","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"60","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","url_key":"tiberius-gym-tank-xs-yellow","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001},{"sku":"MT10-S-Yellow","id":713,"status":1,"name":"Tiberius Gym Tank-S-Yellow","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"60","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","url_key":"tiberius-gym-tank-s-yellow","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001},{"sku":"MT10-M-Yellow","id":714,"status":1,"name":"Tiberius Gym Tank-M-Yellow","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"60","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","url_key":"tiberius-gym-tank-m-yellow","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001},{"sku":"MT10-L-Yellow","id":715,"status":1,"name":"Tiberius Gym Tank-L-Yellow","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"60","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","url_key":"tiberius-gym-tank-l-yellow","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001},{"sku":"MT10-XL-Yellow","id":716,"status":1,"name":"Tiberius Gym Tank-XL-Yellow","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"60","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","url_key":"tiberius-gym-tank-xl-yellow","msrp_display_actual_price_type":"0","final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001}],"configurable_options":[{"id":93,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":60,"label":"Yellow"}],"product_id":717,"attribute_code":"color"},{"id":92,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":717,"attribute_code":"size"}],"color_options":[60],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-717.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"721","_score":1,"_source":{"id":721,"sku":"MT11-L-Blue","name":"Atlas Fitness Tank-L-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

                  From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

                  \n

                  • Teal scoop neck cotton tank.
                  • Triblend, soft fabric.
                  • Relaxed fit.

                  ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atlas-fitness-tank-l-blue-721","links":{},"stock":{"item_id":721,"product_id":721,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-l-blue-721.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"726","_score":1,"_source":{"id":726,"sku":"MT12-M-Blue","name":"Cassius Sparring Tank-M-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

                  Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

                  \n

                  • Royal crewneck cotton tank.
                  • Contrast stitching.
                  • Self fabric binding at neckline.
                  • Slim fit.
                  • 96% Merino / 4% LYCRA®.

                  ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"cassius-sparring-tank-m-blue-726","links":{},"stock":{"item_id":726,"product_id":726,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-m-blue-726.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"733","_score":1,"_source":{"id":733,"sku":"MP01-33-Black","name":"Caesar Warm-Up Pant-33-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                  \n

                  • Light gray heather knit straight leg pants.
                  • Relaxed fit.
                  • Inseam: 32\".
                  • Machine wash/dry.
                  • CoolTech™ wicking fabric.

                  ","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"caesar-warm-up-pant-33-black-733","links":{},"stock":{"item_id":733,"product_id":733,"stock_id":1,"qty":79,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-33-black-733.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"743","_score":1,"_source":{"id":743,"sku":"MP02-32-Blue","name":"Viktor LumaTech™ Pant-32-Blue","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001,"description":"

                  You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                  \n

                  • Dark gray polyester/spandex straight leg pants.
                  • Elastic waistband and internal drawstring.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","color":"50","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"viktor-lumatech-and-trade-pant-32-blue-743","links":{},"stock":{"item_id":743,"product_id":743,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-32-blue-743.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"749","_score":1,"_source":{"id":749,"sku":"MP02-34-Blue","name":"Viktor LumaTech™ Pant-34-Blue","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001,"description":"

                  You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                  \n

                  • Dark gray polyester/spandex straight leg pants.
                  • Elastic waistband and internal drawstring.
                  • Relaxed fit.
                  • Machine wash/dry.

                  ","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","color":"50","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"viktor-lumatech-and-trade-pant-34-blue-749","links":{},"stock":{"item_id":749,"product_id":749,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-34-blue-749.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"671","_score":1,"_source":{"id":671,"sku":"MT03-L-Yellow","name":"Primo Endurance Tank-L-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                  \n

                  • Red heather tank with gray pocket.
                  • Chafe-resistant flatlock seams.
                  • Relaxed fit.
                  • Contrast topstitching.
                  • Machine wash/dry.

                  ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"primo-endurance-tank-l-yellow-671","links":{},"stock":{"item_id":671,"product_id":671,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-l-yellow-671.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"661","_score":1,"_source":{"id":661,"sku":"MT03-XS-Red","name":"Primo Endurance Tank-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                  \n

                  • Red heather tank with gray pocket.
                  • Chafe-resistant flatlock seams.
                  • Relaxed fit.
                  • Contrast topstitching.
                  • Machine wash/dry.

                  ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"primo-endurance-tank-xs-red-661","links":{},"stock":{"item_id":661,"product_id":661,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xs-red-661.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"660","_score":1,"_source":{"id":660,"sku":"MT03-XS-Blue","name":"Primo Endurance Tank-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                  \n

                  • Red heather tank with gray pocket.
                  • Chafe-resistant flatlock seams.
                  • Relaxed fit.
                  • Contrast topstitching.
                  • Machine wash/dry.

                  ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"primo-endurance-tank-xs-blue-660","links":{},"stock":{"item_id":660,"product_id":660,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xs-blue-660.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"653","_score":1,"_source":{"id":653,"sku":"MT02-L-Gray","name":"Tristan Endurance Tank-L-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                  \n

                  • White performance tank.
                  • Stylish contrast stitching.
                  • Relaxed fit.
                  • Ribbed crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tristan-endurance-tank-l-gray-653","links":{},"stock":{"item_id":653,"product_id":653,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-l-gray-653.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"658","_score":1,"_source":{"id":658,"sku":"MT02-XL-White","name":"Tristan Endurance Tank-XL-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                  \n

                  • White performance tank.
                  • Stylish contrast stitching.
                  • Relaxed fit.
                  • Ribbed crew neckline.
                  • Machine wash/dry.

                  ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tristan-endurance-tank-xl-white-658","links":{},"stock":{"item_id":658,"product_id":658,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xl-white-658.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"691","_score":1,"_source":{"id":691,"sku":"MT06-L-Black","name":"Vulcan Weightlifting Tank-L-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

                  \n

                  • Black polyester spandex tank.
                  • 100% polyester.
                  • Freedom of movement.
                  • No-chafe seams.

                  ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"vulcan-weightlifting-tank-l-black-691","links":{},"stock":{"item_id":691,"product_id":691,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-l-black-691.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"814","_score":1,"_source":{"id":814,"sku":"MP07-34-Black","name":"Thorpe Track Pant-34-Black","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                  Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                  \n

                  • Moisture transfer properties.
                  • 7% stretch.
                  • Reflective safety trim.
                  • Elastic drawcord waist.

                  ","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"thorpe-track-pant-34-black-814","links":{},"stock":{"item_id":814,"product_id":814,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-34-black-814.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"823","_score":1,"_source":{"id":823,"sku":"MP08-32-Red","name":"Zeppelin Yoga Pant-32-Red","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":100.860001,"max_price":100.860001,"max_regular_price":100.860001,"minimal_regular_price":100.860001,"special_price":null,"minimal_price":100.860001,"regular_price":100.860001,"description":"

                  Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                  \n

                  • Smooth exterior for easy over-layering.
                  • Brushed fleece interior insulates and wicks.
                  • No-roll elastic waistband with inner drawstring.
                  • Chafe-resistant flatlock seams.

                  ","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"zeppelin-yoga-pant-32-red-823","links":{},"stock":{"item_id":823,"product_id":823,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-32-red-823.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"842","_score":1,"_source":{"id":842,"sku":"MP09-34-Red","name":"Livingston All-Purpose Tight-34-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                  It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                  \n

                  • Breathable stretch organic cotton/spandex.
                  • Compression fit
                  • Hidden key pocket
                  • Elastic waist with internal drawcord.

                  ","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","color":"58","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"livingston-all-purpose-tight-34-red-842","links":{},"stock":{"item_id":842,"product_id":842,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-34-red-842.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"815","_score":1,"_source":{"id":815,"sku":"MP07-34-Blue","name":"Thorpe Track Pant-34-Blue","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                  Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                  \n

                  • Moisture transfer properties.
                  • 7% stretch.
                  • Reflective safety trim.
                  • Elastic drawcord waist.

                  ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"thorpe-track-pant-34-blue-815","links":{},"stock":{"item_id":815,"product_id":815,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-34-blue-815.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"804","_score":1,"_source":{"id":804,"sku":"MP06-36-Gray","name":"Mithra Warmup Pant-36-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                  \n

                  • Ankle zips.
                  • Elasticized waistband with draw cord.
                  • Dual hand pockets.
                  • Reflective elements for low-light safety.

                  ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","color":"52","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"mithra-warmup-pant-36-gray-804","links":{},"stock":{"item_id":804,"product_id":804,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-36-gray-804.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"709","_score":1,"_source":{"id":709,"sku":"MT09-L-Blue","name":"Sinbad Fitness Tank-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

                  \n

                  • Teal polyester tank.
                  • Premium fit tank top.
                  • Ultra lightweight.
                  • Naturally odor-resistant.

                  ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"sinbad-fitness-tank-l-blue-709","links":{},"stock":{"item_id":709,"product_id":709,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-l-blue-709.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"715","_score":1,"_source":{"id":715,"sku":"MT10-L-Yellow","name":"Tiberius Gym Tank-L-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

                  Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

                  \n

                  • Yellow scoop neck cotton tank.
                  • Comfortable, relaxed fit.
                  • 55% Hemp / 45% Organic Cotton.
                  • Pesticide- and herbicide-free hemp.

                  ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tiberius-gym-tank-l-yellow-715","links":{},"stock":{"item_id":715,"product_id":715,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-l-yellow-715.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"896","_score":1,"_source":{"id":896,"sku":"MSH01-36-Blue","name":"Cobalt CoolTech™ Fitness Short-36-Blue","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

                  It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                  \n

                  • Light blue nylon shorts.
                  • Relaxed fit.
                  • 5\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","color":"50","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cobalt-cooltech-and-trade-fitness-short-36-blue-896","links":{},"stock":{"item_id":896,"product_id":896,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-36-blue-896.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"893","_score":1,"_source":{"id":893,"sku":"MSH01-34-Blue","name":"Cobalt CoolTech™ Fitness Short-34-Blue","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

                  It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                  \n

                  • Light blue nylon shorts.
                  • Relaxed fit.
                  • 5\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","color":"50","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cobalt-cooltech-and-trade-fitness-short-34-blue-893","links":{},"stock":{"item_id":893,"product_id":893,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-34-blue-893.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"859","_score":1,"_source":{"id":859,"sku":"MP10","name":"Orestes Yoga Pant ","attribute_set_id":10,"price":66,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":66,"description":"

                  The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                  \n

                  • A yoga essential.
                  • Breathable stretch organic cotton/spandex.
                  • Standard Fit.

                  ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"orestes-yoga-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,154,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[116,115,109],"pattern":"197","climate":[204,205,206,210,211],"slug":"orestes-yoga-pant-859","links":{},"stock":{"item_id":859,"product_id":859,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP10-32-Black","id":847,"status":1,"name":"Orestes Yoga Pant -32-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"176","color":"49","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","url_key":"orestes-yoga-pant-32-black","msrp_display_actual_price_type":"0"},{"sku":"MP10-32-Blue","id":848,"status":1,"name":"Orestes Yoga Pant -32-Blue","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"176","color":"50","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","url_key":"orestes-yoga-pant-32-blue","msrp_display_actual_price_type":"0"},{"sku":"MP10-32-Green","id":849,"status":1,"name":"Orestes Yoga Pant -32-Green","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"176","color":"53","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","url_key":"orestes-yoga-pant-32-green","msrp_display_actual_price_type":"0"},{"sku":"MP10-33-Black","id":850,"status":1,"name":"Orestes Yoga Pant -33-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"177","color":"49","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","url_key":"orestes-yoga-pant-33-black","msrp_display_actual_price_type":"0"},{"sku":"MP10-33-Blue","id":851,"status":1,"name":"Orestes Yoga Pant -33-Blue","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"177","color":"50","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","url_key":"orestes-yoga-pant-33-blue","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MP10-33-Green","id":852,"status":1,"name":"Orestes Yoga Pant -33-Green","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"177","color":"53","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","url_key":"orestes-yoga-pant-33-green","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MP10-34-Black","id":853,"status":1,"name":"Orestes Yoga Pant -34-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"178","color":"49","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","url_key":"orestes-yoga-pant-34-black","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MP10-34-Blue","id":854,"status":1,"name":"Orestes Yoga Pant -34-Blue","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"178","color":"50","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","url_key":"orestes-yoga-pant-34-blue","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MP10-34-Green","id":855,"status":1,"name":"Orestes Yoga Pant -34-Green","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"178","color":"53","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","url_key":"orestes-yoga-pant-34-green","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MP10-36-Black","id":856,"status":1,"name":"Orestes Yoga Pant -36-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"179","color":"49","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","url_key":"orestes-yoga-pant-36-black","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MP10-36-Blue","id":857,"status":1,"name":"Orestes Yoga Pant -36-Blue","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"179","color":"50","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","url_key":"orestes-yoga-pant-36-blue","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MP10-36-Green","id":858,"status":1,"name":"Orestes Yoga Pant -36-Green","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"179","color":"53","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","url_key":"orestes-yoga-pant-36-green","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001}],"configurable_options":[{"id":117,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":859,"attribute_code":"color"},{"id":116,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":859,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-859.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"907","_score":1,"_source":{"id":907,"sku":"MSH03-33-Black","name":"Meteor Workout Short-33-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                  Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                  \n

                  • Royal blue shorts with light blue accents.
                  • Interior drawstring waistband.
                  • 7\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"meteor-workout-short-33-black-907","links":{},"stock":{"item_id":907,"product_id":907,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-33-black-907.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"910","_score":1,"_source":{"id":910,"sku":"MSH03-34-Black","name":"Meteor Workout Short-34-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                  Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                  \n

                  • Royal blue shorts with light blue accents.
                  • Interior drawstring waistband.
                  • 7\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"meteor-workout-short-34-black-910","links":{},"stock":{"item_id":910,"product_id":910,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-34-black-910.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"921","_score":1,"_source":{"id":921,"sku":"MSH04-33-Purple","name":"Torque Power Short-33-Purple","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                  Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                  \n

                  • Light gray shorts.
                  • Fitted design.
                  • Elastic waistband.
                  • Flat-seam construction.
                  • 7\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","color":"57","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"torque-power-short-33-purple-921","links":{},"stock":{"item_id":921,"product_id":921,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-33-purple-921.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"917","_score":1,"_source":{"id":917,"sku":"MSH04-32-Gray","name":"Torque Power Short-32-Gray","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                  Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                  \n

                  • Light gray shorts.
                  • Fitted design.
                  • Elastic waistband.
                  • Flat-seam construction.
                  • 7\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","color":"52","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"torque-power-short-32-gray-917","links":{},"stock":{"item_id":917,"product_id":917,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-32-gray-917.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"902","_score":1,"_source":{"id":902,"sku":"MSH02-36-Black","name":"Apollo Running Short-36-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                  Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

                  \n

                  • Black shorts with green accents.
                  • Side pockets.
                  • 4\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"apollo-running-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"apollo-running-short-36-black-902","links":{},"stock":{"item_id":902,"product_id":902,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-36-black-902.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"904","_score":1,"_source":{"id":904,"sku":"MSH03-32-Black","name":"Meteor Workout Short-32-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                  Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                  \n

                  • Royal blue shorts with light blue accents.
                  • Interior drawstring waistband.
                  • 7\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"meteor-workout-short-32-black-904","links":{},"stock":{"item_id":904,"product_id":904,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-32-black-904.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"940","_score":1,"_source":{"id":940,"sku":"MSH05-36-Blue","name":"Hawkeye Yoga Short-36-Blue","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                  \n

                  • Dark gray shorts with red accents.
                  • 92% Organic Cotton 8% Spandex.
                  • Breathable stretch organic cotton.
                  • Medium=8.0\" (21.0cm) inseam.

                  ","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"hawkeye-yoga-short-36-blue-940","links":{},"stock":{"item_id":940,"product_id":940,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-36-blue-940.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"924","_score":1,"_source":{"id":924,"sku":"MSH04-34-Purple","name":"Torque Power Short-34-Purple","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                  Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                  \n

                  • Light gray shorts.
                  • Fitted design.
                  • Elastic waistband.
                  • Flat-seam construction.
                  • 7\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","color":"57","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"torque-power-short-34-purple-924","links":{},"stock":{"item_id":924,"product_id":924,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-34-purple-924.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"920","_score":1,"_source":{"id":920,"sku":"MSH04-33-Gray","name":"Torque Power Short-33-Gray","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                  Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                  \n

                  • Light gray shorts.
                  • Fitted design.
                  • Elastic waistband.
                  • Flat-seam construction.
                  • 7\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","color":"52","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"torque-power-short-33-gray-920","links":{},"stock":{"item_id":920,"product_id":920,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-33-gray-920.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"909","_score":1,"_source":{"id":909,"sku":"MSH03-33-Green","name":"Meteor Workout Short-33-Green","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                  Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                  \n

                  • Royal blue shorts with light blue accents.
                  • Interior drawstring waistband.
                  • 7\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"meteor-workout-short-33-green-909","links":{},"stock":{"item_id":909,"product_id":909,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-33-green-909.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"926","_score":1,"_source":{"id":926,"sku":"MSH04-36-Gray","name":"Torque Power Short-36-Gray","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                  Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                  \n

                  • Light gray shorts.
                  • Fitted design.
                  • Elastic waistband.
                  • Flat-seam construction.
                  • 7\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","color":"52","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"torque-power-short-36-gray-926","links":{},"stock":{"item_id":926,"product_id":926,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-36-gray-926.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"947","_score":1,"_source":{"id":947,"sku":"MSH06-33-Gray","name":"Lono Yoga Short-33-Gray","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                  \n

                  • Dark gray shorts with mesh accents.
                  • Ultra flexible four-way stretch.
                  • Flatlock seams and waistband.
                  • Two pockets, phony fly.
                  • Nylon/Lycra outer, Polyester/Lycra inner.

                  ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","color":"52","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"lono-yoga-short-33-gray-947","links":{},"stock":{"item_id":947,"product_id":947,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-33-gray-947.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"925","_score":1,"_source":{"id":925,"sku":"MSH04-34-Yellow","name":"Torque Power Short-34-Yellow","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                  Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                  \n

                  • Light gray shorts.
                  • Fitted design.
                  • Elastic waistband.
                  • Flat-seam construction.
                  • 7\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","color":"60","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-34-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"torque-power-short-34-yellow-925","links":{},"stock":{"item_id":925,"product_id":925,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-34-yellow-925.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"856","_score":1,"_source":{"id":856,"sku":"MP10-36-Black","name":"Orestes Yoga Pant -36-Black","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                  The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                  \n

                  • A yoga essential.
                  • Breathable stretch organic cotton/spandex.
                  • Standard Fit.

                  ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","color":"49","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-yoga-pant-36-black-856","links":{},"stock":{"item_id":856,"product_id":856,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-36-black-856.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"877","_score":1,"_source":{"id":877,"sku":"MP12-33-Blue","name":"Cronus Yoga Pant -33-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                  \n

                  • Drawstring waist.
                  • Loose, straight-leg fit.
                  • Lightweight cotton-recycled blend.
                  • Front pockets with stitching detail.
                  • Elastic ankle.

                  ","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","color":"50","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cronus-yoga-pant-33-blue-877","links":{},"stock":{"item_id":877,"product_id":877,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-33-blue-877.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"866","_score":1,"_source":{"id":866,"sku":"MP11-34-Blue","name":"Aether Gym Pant -34-Blue","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                  The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                  \n

                  • Pants/shorts convertible.
                  • Lightweight moisture wicking.
                  • Water repellent.
                  • Belted waist.

                  ","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"aether-gym-pant-34-blue-866","links":{},"stock":{"item_id":866,"product_id":866,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-34-blue-866.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"882","_score":1,"_source":{"id":882,"sku":"MP12-36-Black","name":"Cronus Yoga Pant -36-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                  \n

                  • Drawstring waist.
                  • Loose, straight-leg fit.
                  • Lightweight cotton-recycled blend.
                  • Front pockets with stitching detail.
                  • Elastic ankle.

                  ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cronus-yoga-pant-36-black-882","links":{},"stock":{"item_id":882,"product_id":882,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-36-black-882.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"873","_score":1,"_source":{"id":873,"sku":"MP12-32-Black","name":"Cronus Yoga Pant -32-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                  \n

                  • Drawstring waist.
                  • Loose, straight-leg fit.
                  • Lightweight cotton-recycled blend.
                  • Front pockets with stitching detail.
                  • Elastic ankle.

                  ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cronus-yoga-pant-32-black-873","links":{},"stock":{"item_id":873,"product_id":873,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-32-black-873.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"878","_score":1,"_source":{"id":878,"sku":"MP12-33-Red","name":"Cronus Yoga Pant -33-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                  \n

                  • Drawstring waist.
                  • Loose, straight-leg fit.
                  • Lightweight cotton-recycled blend.
                  • Front pockets with stitching detail.
                  • Elastic ankle.

                  ","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","color":"58","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cronus-yoga-pant-33-red-878","links":{},"stock":{"item_id":878,"product_id":878,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-33-red-878.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"891","_score":1,"_source":{"id":891,"sku":"MSH01-33-Red","name":"Cobalt CoolTech™ Fitness Short-33-Red","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

                  It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                  \n

                  • Light blue nylon shorts.
                  • Relaxed fit.
                  • 5\" inseam.
                  • Machine wash/dry.

                  ","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","color":"58","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cobalt-cooltech-and-trade-fitness-short-33-red-891","links":{},"stock":{"item_id":891,"product_id":891,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-33-red-891.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1015","_score":1,"_source":{"id":1015,"sku":"MSH11-34-Blue","name":"Arcadio Gym Short-34-Blue","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001,"description":"

                  The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                  \n

                  • Royal blue cotton shorts.
                  • Built-in mesh brief.
                  • 87% Spandex 13% Lycra.
                  • Adjustable drawstring.

                  ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","color":"50","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"arcadio-gym-short-34-blue-1015","links":{},"stock":{"item_id":1015,"product_id":1015,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-34-blue-1015.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1017","_score":1,"_source":{"id":1017,"sku":"MSH11-36-Black","name":"Arcadio Gym Short-36-Black","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001,"description":"

                  The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                  \n

                  • Royal blue cotton shorts.
                  • Built-in mesh brief.
                  • 87% Spandex 13% Lycra.
                  • Adjustable drawstring.

                  ","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"arcadio-gym-short-36-black-1017","links":{},"stock":{"item_id":1017,"product_id":1017,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-36-black-1017.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1038","_score":1,"_source":{"id":1038,"sku":"WH01-S-Orange","name":"Mona Pullover Hoodlie-S-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                  • Light green heathered hoodie.
                  • Long-Sleeve, pullover.
                  • Long elliptical hem for extra coverage.
                  • Deep button placket for layering.
                  • Double rib design.
                  • Mid layer, mid weight.
                  • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mona-pullover-hoodlie-s-orange-1038","links":{},"stock":{"item_id":1038,"product_id":1038,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-s-orange-1038.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1016","_score":1,"_source":{"id":1016,"sku":"MSH11-34-Red","name":"Arcadio Gym Short-34-Red","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001,"description":"

                  The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                  \n

                  • Royal blue cotton shorts.
                  • Built-in mesh brief.
                  • 87% Spandex 13% Lycra.
                  • Adjustable drawstring.

                  ","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","color":"58","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"arcadio-gym-short-34-red-1016","links":{},"stock":{"item_id":1016,"product_id":1016,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-34-red-1016.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1037","_score":1,"_source":{"id":1037,"sku":"WH01-S-Green","name":"Mona Pullover Hoodlie-S-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                  • Light green heathered hoodie.
                  • Long-Sleeve, pullover.
                  • Long elliptical hem for extra coverage.
                  • Deep button placket for layering.
                  • Double rib design.
                  • Mid layer, mid weight.
                  • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mona-pullover-hoodlie-s-green-1037","links":{},"stock":{"item_id":1037,"product_id":1037,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-s-green-1037.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1026","_score":1,"_source":{"id":1026,"sku":"MSH12-33-Red","name":"Pierce Gym Short-33-Red","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

                  The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                  \n

                  • Dark red cotton shorts.
                  • 87% Supplex, 13% Lycra.
                  • Adjustable drawstring waistband.
                  • Built-in mesh brief.
                  • Machine wash cold, tumble dry low.

                  ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","color":"58","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"pierce-gym-short-33-red-1026","links":{},"stock":{"item_id":1026,"product_id":1026,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-33-red-1026.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"976","_score":1,"_source":{"id":976,"sku":"MSH08-34-Blue","name":"Orestes Fitness Short-34-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                  \n

                  • Black shorts with dark gray accents.
                  • Elasticized waistband with interior drawstring.
                  • Ventilating mesh detailing.
                  • 100% polyester and recycled polyester.
                  • Machine wash cold, tumble dry low.

                  ","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","color":"50","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-fitness-short-34-blue-976","links":{},"stock":{"item_id":976,"product_id":976,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-34-blue-976.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"979","_score":1,"_source":{"id":979,"sku":"MSH08-36-Blue","name":"Orestes Fitness Short-36-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                  \n

                  • Black shorts with dark gray accents.
                  • Elasticized waistband with interior drawstring.
                  • Ventilating mesh detailing.
                  • 100% polyester and recycled polyester.
                  • Machine wash cold, tumble dry low.

                  ","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","color":"50","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-fitness-short-36-blue-979","links":{},"stock":{"item_id":979,"product_id":979,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-36-blue-979.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"989","_score":1,"_source":{"id":989,"sku":"MSH09-34-Blue","name":"Troy Yoga Short-34-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                  \n

                  • Navy polyester pinstripe shorts.
                  • Woven fabric with moderate stretch.
                  • 62% cotton/34% nylon/4% spandex.
                  • LumaTech™ lining.

                  ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"troy-yoga-short-34-blue-989","links":{},"stock":{"item_id":989,"product_id":989,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-34-blue-989.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"997","_score":1,"_source":{"id":997,"sku":"MSH10-32-Purple","name":"Sol Active Short-32-Purple","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                  \n

                  • Light blue jersey shorts with mesh detail.
                  • 87% Spandex 13% Lycra.
                  • Machine wash cold, tumble dry low.
                  • Superior performance fabric.
                  • Flat-lock seams.

                  ","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","color":"57","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"sol-active-short-32-purple-997","links":{},"stock":{"item_id":997,"product_id":997,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-32-purple-997.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"992","_score":1,"_source":{"id":992,"sku":"MSH09-36-Blue","name":"Troy Yoga Short-36-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                  \n

                  • Navy polyester pinstripe shorts.
                  • Woven fabric with moderate stretch.
                  • 62% cotton/34% nylon/4% spandex.
                  • LumaTech™ lining.

                  ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"troy-yoga-short-36-blue-992","links":{},"stock":{"item_id":992,"product_id":992,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-36-blue-992.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1000","_score":1,"_source":{"id":1000,"sku":"MSH10-33-Purple","name":"Sol Active Short-33-Purple","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                  \n

                  • Light blue jersey shorts with mesh detail.
                  • 87% Spandex 13% Lycra.
                  • Machine wash cold, tumble dry low.
                  • Superior performance fabric.
                  • Flat-lock seams.

                  ","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","color":"57","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"sol-active-short-33-purple-1000","links":{},"stock":{"item_id":1000,"product_id":1000,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-33-purple-1000.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"957","_score":1,"_source":{"id":957,"sku":"MSH07-32-Blue","name":"Rapha Sports Short-32-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                  \n

                  • Black shorts with royal accents.
                  • Compression liner.
                  • Inseam: 8\".
                  • Machine wash/dry.

                  ","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","color":"50","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"rapha-sports-short-32-blue-957","links":{},"stock":{"item_id":957,"product_id":957,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-32-blue-957.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"969","_score":1,"_source":{"id":969,"sku":"MSH08-32-Black","name":"Orestes Fitness Short-32-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                  \n

                  • Black shorts with dark gray accents.
                  • Elasticized waistband with interior drawstring.
                  • Ventilating mesh detailing.
                  • 100% polyester and recycled polyester.
                  • Machine wash cold, tumble dry low.

                  ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-fitness-short-32-black-969","links":{},"stock":{"item_id":969,"product_id":969,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-32-black-969.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"960","_score":1,"_source":{"id":960,"sku":"MSH07-33-Blue","name":"Rapha Sports Short-33-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                  \n

                  • Black shorts with royal accents.
                  • Compression liner.
                  • Inseam: 8\".
                  • Machine wash/dry.

                  ","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","color":"50","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"rapha-sports-short-33-blue-960","links":{},"stock":{"item_id":960,"product_id":960,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-33-blue-960.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"966","_score":1,"_source":{"id":966,"sku":"MSH07-36-Blue","name":"Rapha Sports Short-36-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                  \n

                  • Black shorts with royal accents.
                  • Compression liner.
                  • Inseam: 8\".
                  • Machine wash/dry.

                  ","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","color":"50","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"rapha-sports-short-36-blue-966","links":{},"stock":{"item_id":966,"product_id":966,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-36-blue-966.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"983","_score":1,"_source":{"id":983,"sku":"MSH09-32-Blue","name":"Troy Yoga Short-32-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                  \n

                  • Navy polyester pinstripe shorts.
                  • Woven fabric with moderate stretch.
                  • 62% cotton/34% nylon/4% spandex.
                  • LumaTech™ lining.

                  ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"troy-yoga-short-32-blue-983","links":{},"stock":{"item_id":983,"product_id":983,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-32-blue-983.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"975","_score":1,"_source":{"id":975,"sku":"MSH08-34-Black","name":"Orestes Fitness Short-34-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                  You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                  \n

                  • Black shorts with dark gray accents.
                  • Elasticized waistband with interior drawstring.
                  • Ventilating mesh detailing.
                  • 100% polyester and recycled polyester.
                  • Machine wash cold, tumble dry low.

                  ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-fitness-short-34-black-975","links":{},"stock":{"item_id":975,"product_id":975,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-34-black-975.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1003","_score":1,"_source":{"id":1003,"sku":"MSH10-34-Purple","name":"Sol Active Short-34-Purple","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                  \n

                  • Light blue jersey shorts with mesh detail.
                  • 87% Spandex 13% Lycra.
                  • Machine wash cold, tumble dry low.
                  • Superior performance fabric.
                  • Flat-lock seams.

                  ","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","color":"57","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"sol-active-short-34-purple-1003","links":{},"stock":{"item_id":1003,"product_id":1003,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-34-purple-1003.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1019","_score":1,"_source":{"id":1019,"sku":"MSH11-36-Red","name":"Arcadio Gym Short-36-Red","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001,"description":"

                  The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                  \n

                  • Royal blue cotton shorts.
                  • Built-in mesh brief.
                  • 87% Spandex 13% Lycra.
                  • Adjustable drawstring.

                  ","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","color":"58","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"arcadio-gym-short-36-red-1019","links":{},"stock":{"item_id":1019,"product_id":1019,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-36-red-1019.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1002","_score":1,"_source":{"id":1002,"sku":"MSH10-34-Green","name":"Sol Active Short-34-Green","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                  \n

                  • Light blue jersey shorts with mesh detail.
                  • 87% Spandex 13% Lycra.
                  • Machine wash cold, tumble dry low.
                  • Superior performance fabric.
                  • Flat-lock seams.

                  ","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","color":"53","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"sol-active-short-34-green-1002","links":{},"stock":{"item_id":1002,"product_id":1002,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-34-green-1002.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1012","_score":1,"_source":{"id":1012,"sku":"MSH11-33-Blue","name":"Arcadio Gym Short-33-Blue","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001,"description":"

                  The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                  \n

                  • Royal blue cotton shorts.
                  • Built-in mesh brief.
                  • 87% Spandex 13% Lycra.
                  • Adjustable drawstring.

                  ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","color":"50","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"arcadio-gym-short-33-blue-1012","links":{},"stock":{"item_id":1012,"product_id":1012,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-33-blue-1012.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1009","_score":1,"_source":{"id":1009,"sku":"MSH11-32-Blue","name":"Arcadio Gym Short-32-Blue","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001,"description":"

                  The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                  \n

                  • Royal blue cotton shorts.
                  • Built-in mesh brief.
                  • 87% Spandex 13% Lycra.
                  • Adjustable drawstring.

                  ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","color":"50","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"arcadio-gym-short-32-blue-1009","links":{},"stock":{"item_id":1009,"product_id":1009,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-32-blue-1009.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"932","_score":1,"_source":{"id":932,"sku":"MSH05-32-Gray","name":"Hawkeye Yoga Short-32-Gray","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                  \n

                  • Dark gray shorts with red accents.
                  • 92% Organic Cotton 8% Spandex.
                  • Breathable stretch organic cotton.
                  • Medium=8.0\" (21.0cm) inseam.

                  ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","color":"52","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"hawkeye-yoga-short-32-gray-932","links":{},"stock":{"item_id":932,"product_id":932,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-32-gray-932.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"946","_score":1,"_source":{"id":946,"sku":"MSH06-33-Blue","name":"Lono Yoga Short-33-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                  \n

                  • Dark gray shorts with mesh accents.
                  • Ultra flexible four-way stretch.
                  • Flatlock seams and waistband.
                  • Two pockets, phony fly.
                  • Nylon/Lycra outer, Polyester/Lycra inner.

                  ","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"lono-yoga-short-33-blue-946","links":{},"stock":{"item_id":946,"product_id":946,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-33-blue-946.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"939","_score":1,"_source":{"id":939,"sku":"MSH05-36-Black","name":"Hawkeye Yoga Short-36-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                  \n

                  • Dark gray shorts with red accents.
                  • 92% Organic Cotton 8% Spandex.
                  • Breathable stretch organic cotton.
                  • Medium=8.0\" (21.0cm) inseam.

                  ","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"hawkeye-yoga-short-36-black-939","links":{},"stock":{"item_id":939,"product_id":939,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-36-black-939.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"853","_score":1,"_source":{"id":853,"sku":"MP10-34-Black","name":"Orestes Yoga Pant -34-Black","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                  The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                  \n

                  • A yoga essential.
                  • Breathable stretch organic cotton/spandex.
                  • Standard Fit.

                  ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","color":"49","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-yoga-pant-34-black-853","links":{},"stock":{"item_id":853,"product_id":853,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-34-black-853.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1140","_score":1,"_source":{"id":1140,"sku":"WH08-S-Purple","name":"Cassia Funnel Sweatshirt-S-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                  \n

                  • White full zip hoodie with gray detail.
                  • 65% Cotton/28% Nylon/7% Spandex.
                  • Front slash pockets.
                  • Tagless label at back neck.

                  ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"cassia-funnel-sweatshirt-s-purple-1140","links":{},"stock":{"item_id":1140,"product_id":1140,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-s-purple-1140.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1138","_score":1,"_source":{"id":1138,"sku":"WH08-XS-White","name":"Cassia Funnel Sweatshirt-XS-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                  \n

                  • White full zip hoodie with gray detail.
                  • 65% Cotton/28% Nylon/7% Spandex.
                  • Front slash pockets.
                  • Tagless label at back neck.

                  ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"cassia-funnel-sweatshirt-xs-white-1138","links":{},"stock":{"item_id":1138,"product_id":1138,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xs-white-1138.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1144","_score":1,"_source":{"id":1144,"sku":"WH08-M-White","name":"Cassia Funnel Sweatshirt-M-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                  \n

                  • White full zip hoodie with gray detail.
                  • 65% Cotton/28% Nylon/7% Spandex.
                  • Front slash pockets.
                  • Tagless label at back neck.

                  ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"cassia-funnel-sweatshirt-m-white-1144","links":{},"stock":{"item_id":1144,"product_id":1144,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-m-white-1144.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1142","_score":1,"_source":{"id":1142,"sku":"WH08-M-Orange","name":"Cassia Funnel Sweatshirt-M-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                  \n

                  • White full zip hoodie with gray detail.
                  • 65% Cotton/28% Nylon/7% Spandex.
                  • Front slash pockets.
                  • Tagless label at back neck.

                  ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"cassia-funnel-sweatshirt-m-orange-1142","links":{},"stock":{"item_id":1142,"product_id":1142,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-m-orange-1142.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1135","_score":1,"_source":{"id":1135,"sku":"WH07","name":"Phoebe Zipper Sweatshirt","attribute_set_id":9,"price":59,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":59,"description":"

                  A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                  \n

                  • Gray full zip hoodie with yellow detail.
                  • Hand-warmer pockets.
                  • Zip MP3 pocket with outlet for earphones wire.
                  • Polyester/cotton.
                  • Washable.

                  ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"phoebe-zipper-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":[138,133,129],"pattern":"197","climate":[204,205,206],"slug":"phoebe-zipper-sweatshirt-1135","links":{},"stock":{"item_id":1135,"product_id":1135,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH07-XS-Gray","id":1120,"status":1,"name":"Phoebe Zipper Sweatshirt-XS-Gray","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"167","color":"52","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","url_key":"phoebe-zipper-sweatshirt-xs-gray","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-XS-Purple","id":1121,"status":1,"name":"Phoebe Zipper Sweatshirt-XS-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"167","color":"57","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","url_key":"phoebe-zipper-sweatshirt-xs-purple","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-XS-White","id":1122,"status":1,"name":"Phoebe Zipper Sweatshirt-XS-White","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"167","color":"59","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","url_key":"phoebe-zipper-sweatshirt-xs-white","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-S-Gray","id":1123,"status":1,"name":"Phoebe Zipper Sweatshirt-S-Gray","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"168","color":"52","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","url_key":"phoebe-zipper-sweatshirt-s-gray","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-S-Purple","id":1124,"status":1,"name":"Phoebe Zipper Sweatshirt-S-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"168","color":"57","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","url_key":"phoebe-zipper-sweatshirt-s-purple","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-S-White","id":1125,"status":1,"name":"Phoebe Zipper Sweatshirt-S-White","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"168","color":"59","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","url_key":"phoebe-zipper-sweatshirt-s-white","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-M-Gray","id":1126,"status":1,"name":"Phoebe Zipper Sweatshirt-M-Gray","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"169","color":"52","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","url_key":"phoebe-zipper-sweatshirt-m-gray","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-M-Purple","id":1127,"status":1,"name":"Phoebe Zipper Sweatshirt-M-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"169","color":"57","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","url_key":"phoebe-zipper-sweatshirt-m-purple","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-M-White","id":1128,"status":1,"name":"Phoebe Zipper Sweatshirt-M-White","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"169","color":"59","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","url_key":"phoebe-zipper-sweatshirt-m-white","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-L-Gray","id":1129,"status":1,"name":"Phoebe Zipper Sweatshirt-L-Gray","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"170","color":"52","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","url_key":"phoebe-zipper-sweatshirt-l-gray","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-L-Purple","id":1130,"status":1,"name":"Phoebe Zipper Sweatshirt-L-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"170","color":"57","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","url_key":"phoebe-zipper-sweatshirt-l-purple","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-L-White","id":1131,"status":1,"name":"Phoebe Zipper Sweatshirt-L-White","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"170","color":"59","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","url_key":"phoebe-zipper-sweatshirt-l-white","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-XL-Gray","id":1132,"status":1,"name":"Phoebe Zipper Sweatshirt-XL-Gray","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"171","color":"52","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","url_key":"phoebe-zipper-sweatshirt-xl-gray","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-XL-Purple","id":1133,"status":1,"name":"Phoebe Zipper Sweatshirt-XL-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"171","color":"57","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","url_key":"phoebe-zipper-sweatshirt-xl-purple","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001},{"sku":"WH07-XL-White","id":1134,"status":1,"name":"Phoebe Zipper Sweatshirt-XL-White","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"171","color":"59","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","url_key":"phoebe-zipper-sweatshirt-xl-white","msrp_display_actual_price_type":"0","final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001}],"configurable_options":[{"id":159,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"}],"product_id":1135,"attribute_code":"color"},{"id":158,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1135,"attribute_code":"size"}],"color_options":[52,57,59],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-1135.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1199","_score":1,"_source":{"id":1199,"sku":"WH11","name":"Eos V-Neck Hoodie","attribute_set_id":9,"price":54,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":54,"description":"

                  Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                  \n

                  Semi-fitted.
                  Long-Sleeve.
                  Machine wash/line dry.

                  ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"eos-v-neck-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[137,133],"pattern":"197","climate":[204,205,206],"slug":"eos-v-neck-hoodie-1199","links":{},"stock":{"item_id":1199,"product_id":1199,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH11-XS-Blue","id":1184,"status":1,"name":"Eos V-Neck Hoodie-XS-Blue","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"167","color":"50","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","url_key":"eos-v-neck-hoodie-xs-blue","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-XS-Green","id":1185,"status":1,"name":"Eos V-Neck Hoodie-XS-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"167","color":"53","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","url_key":"eos-v-neck-hoodie-xs-green","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-XS-Orange","id":1186,"status":1,"name":"Eos V-Neck Hoodie-XS-Orange","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"167","color":"56","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","url_key":"eos-v-neck-hoodie-xs-orange","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-S-Blue","id":1187,"status":1,"name":"Eos V-Neck Hoodie-S-Blue","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"168","color":"50","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","url_key":"eos-v-neck-hoodie-s-blue","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-S-Green","id":1188,"status":1,"name":"Eos V-Neck Hoodie-S-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"168","color":"53","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","url_key":"eos-v-neck-hoodie-s-green","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-S-Orange","id":1189,"status":1,"name":"Eos V-Neck Hoodie-S-Orange","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"168","color":"56","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","url_key":"eos-v-neck-hoodie-s-orange","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-M-Blue","id":1190,"status":1,"name":"Eos V-Neck Hoodie-M-Blue","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"169","color":"50","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","url_key":"eos-v-neck-hoodie-m-blue","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-M-Green","id":1191,"status":1,"name":"Eos V-Neck Hoodie-M-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"169","color":"53","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","url_key":"eos-v-neck-hoodie-m-green","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-M-Orange","id":1192,"status":1,"name":"Eos V-Neck Hoodie-M-Orange","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"169","color":"56","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","url_key":"eos-v-neck-hoodie-m-orange","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-L-Blue","id":1193,"status":1,"name":"Eos V-Neck Hoodie-L-Blue","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"170","color":"50","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","url_key":"eos-v-neck-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-L-Green","id":1194,"status":1,"name":"Eos V-Neck Hoodie-L-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"170","color":"53","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","url_key":"eos-v-neck-hoodie-l-green","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-L-Orange","id":1195,"status":1,"name":"Eos V-Neck Hoodie-L-Orange","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"170","color":"56","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","url_key":"eos-v-neck-hoodie-l-orange","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-XL-Blue","id":1196,"status":1,"name":"Eos V-Neck Hoodie-XL-Blue","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"171","color":"50","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","url_key":"eos-v-neck-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-XL-Green","id":1197,"status":1,"name":"Eos V-Neck Hoodie-XL-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"171","color":"53","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","url_key":"eos-v-neck-hoodie-xl-green","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001},{"sku":"WH11-XL-Orange","id":1198,"status":1,"name":"Eos V-Neck Hoodie-XL-Orange","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"171","color":"56","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","url_key":"eos-v-neck-hoodie-xl-orange","msrp_display_actual_price_type":"0","final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001}],"configurable_options":[{"id":167,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":1199,"attribute_code":"color"},{"id":166,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1199,"attribute_code":"size"}],"color_options":[50,53,56],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-1199.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1179","_score":1,"_source":{"id":1179,"sku":"WH10-L-Yellow","name":"Helena Hooded Fleece-L-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

                  Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                  \n

                  Full zip.
                  Banded cuffs and waist.
                  Front pockets.
                  Machine wash/dry.

                  ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helena-hooded-fleece-l-yellow-1179","links":{},"stock":{"item_id":1179,"product_id":1179,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-l-yellow-1179.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1175","_score":1,"_source":{"id":1175,"sku":"WH10-M-Gray","name":"Helena Hooded Fleece-M-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

                  Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                  \n

                  Full zip.
                  Banded cuffs and waist.
                  Front pockets.
                  Machine wash/dry.

                  ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helena-hooded-fleece-m-gray-1175","links":{},"stock":{"item_id":1175,"product_id":1175,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-m-gray-1175.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1180","_score":1,"_source":{"id":1180,"sku":"WH10-XL-Blue","name":"Helena Hooded Fleece-XL-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

                  Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                  \n

                  Full zip.
                  Banded cuffs and waist.
                  Front pockets.
                  Machine wash/dry.

                  ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helena-hooded-fleece-xl-blue-1180","links":{},"stock":{"item_id":1180,"product_id":1180,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xl-blue-1180.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1188","_score":1,"_source":{"id":1188,"sku":"WH11-S-Green","name":"Eos V-Neck Hoodie-S-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                  Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                  \n

                  Semi-fitted.
                  Long-Sleeve.
                  Machine wash/line dry.

                  ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"eos-v-neck-hoodie-s-green-1188","links":{},"stock":{"item_id":1188,"product_id":1188,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-s-green-1188.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1192","_score":1,"_source":{"id":1192,"sku":"WH11-M-Orange","name":"Eos V-Neck Hoodie-M-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                  Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                  \n

                  Semi-fitted.
                  Long-Sleeve.
                  Machine wash/line dry.

                  ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"eos-v-neck-hoodie-m-orange-1192","links":{},"stock":{"item_id":1192,"product_id":1192,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-m-orange-1192.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1182","_score":1,"_source":{"id":1182,"sku":"WH10-XL-Yellow","name":"Helena Hooded Fleece-XL-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

                  Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                  \n

                  Full zip.
                  Banded cuffs and waist.
                  Front pockets.
                  Machine wash/dry.

                  ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helena-hooded-fleece-xl-yellow-1182","links":{},"stock":{"item_id":1182,"product_id":1182,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xl-yellow-1182.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1187","_score":1,"_source":{"id":1187,"sku":"WH11-S-Blue","name":"Eos V-Neck Hoodie-S-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                  Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                  \n

                  Semi-fitted.
                  Long-Sleeve.
                  Machine wash/line dry.

                  ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"eos-v-neck-hoodie-s-blue-1187","links":{},"stock":{"item_id":1187,"product_id":1187,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-s-blue-1187.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1196","_score":1,"_source":{"id":1196,"sku":"WH11-XL-Blue","name":"Eos V-Neck Hoodie-XL-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                  Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                  \n

                  Semi-fitted.
                  Long-Sleeve.
                  Machine wash/line dry.

                  ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"eos-v-neck-hoodie-xl-blue-1196","links":{},"stock":{"item_id":1196,"product_id":1196,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xl-blue-1196.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1101","_score":1,"_source":{"id":1101,"sku":"WH05-S-Orange","name":"Selene Yoga Hoodie-S-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                  \n

                  • Ivory heather full zip 3/4 sleeve hoodie.
                  • Zip pocket at arm for convenient storage.
                  • 24.0\" body length.
                  • 89% Polyester / 11% Spandex.

                  ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"selene-yoga-hoodie-s-orange-1101","links":{},"stock":{"item_id":1101,"product_id":1101,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-s-orange-1101.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1106","_score":1,"_source":{"id":1106,"sku":"WH05-M-White","name":"Selene Yoga Hoodie-M-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                  \n

                  • Ivory heather full zip 3/4 sleeve hoodie.
                  • Zip pocket at arm for convenient storage.
                  • 24.0\" body length.
                  • 89% Polyester / 11% Spandex.

                  ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"selene-yoga-hoodie-m-white-1106","links":{},"stock":{"item_id":1106,"product_id":1106,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-m-white-1106.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1134","_score":1,"_source":{"id":1134,"sku":"WH07-XL-White","name":"Phoebe Zipper Sweatshirt-XL-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                  \n

                  • Gray full zip hoodie with yellow detail.
                  • Hand-warmer pockets.
                  • Zip MP3 pocket with outlet for earphones wire.
                  • Polyester/cotton.
                  • Washable.

                  ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"phoebe-zipper-sweatshirt-xl-white-1134","links":{},"stock":{"item_id":1134,"product_id":1134,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xl-white-1134.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1108","_score":1,"_source":{"id":1108,"sku":"WH05-L-Purple","name":"Selene Yoga Hoodie-L-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                  \n

                  • Ivory heather full zip 3/4 sleeve hoodie.
                  • Zip pocket at arm for convenient storage.
                  • 24.0\" body length.
                  • 89% Polyester / 11% Spandex.

                  ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"selene-yoga-hoodie-l-purple-1108","links":{},"stock":{"item_id":1108,"product_id":1108,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-l-purple-1108.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1130","_score":1,"_source":{"id":1130,"sku":"WH07-L-Purple","name":"Phoebe Zipper Sweatshirt-L-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                  \n

                  • Gray full zip hoodie with yellow detail.
                  • Hand-warmer pockets.
                  • Zip MP3 pocket with outlet for earphones wire.
                  • Polyester/cotton.
                  • Washable.

                  ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"phoebe-zipper-sweatshirt-l-purple-1130","links":{},"stock":{"item_id":1130,"product_id":1130,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-l-purple-1130.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1139","_score":1,"_source":{"id":1139,"sku":"WH08-S-Orange","name":"Cassia Funnel Sweatshirt-S-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                  \n

                  • White full zip hoodie with gray detail.
                  • 65% Cotton/28% Nylon/7% Spandex.
                  • Front slash pockets.
                  • Tagless label at back neck.

                  ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"cassia-funnel-sweatshirt-s-orange-1139","links":{},"stock":{"item_id":1139,"product_id":1139,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-s-orange-1139.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1114","_score":1,"_source":{"id":1114,"sku":"WH06-XS-Purple","name":"Daphne Full-Zip Hoodie-XS-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

                  \n

                  • Purple full zip hoodie with pink accents.
                  • Heather texture.
                  • 4-way stretch.
                  • Pre-shrunk.
                  • Hood lined in vegan Sherpa for added warmth.
                  • Ribbed hem on hood and front pouch pocket.
                  • 60% Cotton / 40% Polyester.

                  ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"daphne-full-zip-hoodie-xs-purple-1114","links":{},"stock":{"item_id":1114,"product_id":1114,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-xs-purple-1114.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1211","_score":1,"_source":{"id":1211,"sku":"WH12-L-Purple","name":"Circe Hooded Ice Fleece-L-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                  Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                  \n

                  Full-zip front.
                  Three-panel hood.
                  Flatlock seams throughout.
                  Welt hand pockets.
                  Machine wash/dry.

                  ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"circe-hooded-ice-fleece-l-purple-1211","links":{},"stock":{"item_id":1211,"product_id":1211,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-l-purple-1211.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1224","_score":1,"_source":{"id":1224,"sku":"WJ01-L-Yellow","name":"Stellar Solar Jacket-L-Yellow","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                  Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                  \n

                  • Loose fit.
                  • Reflectivity.
                  • Flat seams.
                  • Machine wash/dry.
                  • Deep pink jacket with front panel rouching

                  ","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","color":"60","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stellar-solar-jacket-l-yellow-1224","links":{},"stock":{"item_id":1224,"product_id":1224,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-l-yellow-1224.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1229","_score":1,"_source":{"id":1229,"sku":"WJ02-S-Black","name":"Josie Yoga Jacket-S-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

                  When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                  \n

                  • Slate rouched neck pullover.
                  • Moisture-wicking fabric.
                  • Hidden zipper.
                  • Mesh armpit venting.
                  • Dropped rear hem.

                  ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"josie-yoga-jacket-s-black-1229","links":{},"stock":{"item_id":1229,"product_id":1229,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-s-black-1229.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1248","_score":1,"_source":{"id":1248,"sku":"WJ03-M-Blue","name":"Augusta Pullover Jacket-M-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                  \n

                  • Pink half-zip pullover.
                  • Front pouch pockets.
                  • Fold-down collar.

                  ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"augusta-pullover-jacket-m-blue-1248","links":{},"stock":{"item_id":1248,"product_id":1248,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-m-blue-1248.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1235","_score":1,"_source":{"id":1235,"sku":"WJ02-L-Black","name":"Josie Yoga Jacket-L-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

                  When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                  \n

                  • Slate rouched neck pullover.
                  • Moisture-wicking fabric.
                  • Hidden zipper.
                  • Mesh armpit venting.
                  • Dropped rear hem.

                  ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"josie-yoga-jacket-l-black-1235","links":{},"stock":{"item_id":1235,"product_id":1235,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-l-black-1235.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1237","_score":1,"_source":{"id":1237,"sku":"WJ02-L-Gray","name":"Josie Yoga Jacket-L-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

                  When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                  \n

                  • Slate rouched neck pullover.
                  • Moisture-wicking fabric.
                  • Hidden zipper.
                  • Mesh armpit venting.
                  • Dropped rear hem.

                  ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"josie-yoga-jacket-l-gray-1237","links":{},"stock":{"item_id":1237,"product_id":1237,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-l-gray-1237.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1245","_score":1,"_source":{"id":1245,"sku":"WJ03-S-Blue","name":"Augusta Pullover Jacket-S-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                  \n

                  • Pink half-zip pullover.
                  • Front pouch pockets.
                  • Fold-down collar.

                  ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"augusta-pullover-jacket-s-blue-1245","links":{},"stock":{"item_id":1245,"product_id":1245,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-s-blue-1245.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1250","_score":1,"_source":{"id":1250,"sku":"WJ03-M-Red","name":"Augusta Pullover Jacket-M-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                  \n

                  • Pink half-zip pullover.
                  • Front pouch pockets.
                  • Fold-down collar.

                  ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"augusta-pullover-jacket-m-red-1250","links":{},"stock":{"item_id":1250,"product_id":1250,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-m-red-1250.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1066","_score":1,"_source":{"id":1066,"sku":"WH03-XS-Green","name":"Autumn Pullie-XS-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                  \n

                  • Cayenne Short-Sleeve roll neck sweatshirt.
                  • Relaxed fit.
                  • Short-Sleeves.
                  • Machine wash/dry.

                  ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"autumn-pullie-xs-green-1066","links":{},"stock":{"item_id":1066,"product_id":1066,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xs-green-1066.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1077","_score":1,"_source":{"id":1077,"sku":"WH03-L-Red","name":"Autumn Pullie-L-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                  \n

                  • Cayenne Short-Sleeve roll neck sweatshirt.
                  • Relaxed fit.
                  • Short-Sleeves.
                  • Machine wash/dry.

                  ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"autumn-pullie-l-red-1077","links":{},"stock":{"item_id":1077,"product_id":1077,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-l-red-1077.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1072","_score":1,"_source":{"id":1072,"sku":"WH03-M-Green","name":"Autumn Pullie-M-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                  \n

                  • Cayenne Short-Sleeve roll neck sweatshirt.
                  • Relaxed fit.
                  • Short-Sleeves.
                  • Machine wash/dry.

                  ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"autumn-pullie-m-green-1072","links":{},"stock":{"item_id":1072,"product_id":1072,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-m-green-1072.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1092","_score":1,"_source":{"id":1092,"sku":"WH04-L-Orange","name":"Miko Pullover Hoodie-L-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                  \n

                  • Teal two-tone hoodie.
                  • Low scoop neckline.
                  • Adjustable hood drawstrings.
                  • Longer rounded hemline for extra back coverage.
                  • Long-Sleeve style.

                  ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"miko-pullover-hoodie-l-orange-1092","links":{},"stock":{"item_id":1092,"product_id":1092,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-l-orange-1092.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1202","_score":1,"_source":{"id":1202,"sku":"WH12-XS-Purple","name":"Circe Hooded Ice Fleece-XS-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                  Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                  \n

                  Full-zip front.
                  Three-panel hood.
                  Flatlock seams throughout.
                  Welt hand pockets.
                  Machine wash/dry.

                  ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"circe-hooded-ice-fleece-xs-purple-1202","links":{},"stock":{"item_id":1202,"product_id":1202,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xs-purple-1202.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1204","_score":1,"_source":{"id":1204,"sku":"WH12-S-Green","name":"Circe Hooded Ice Fleece-S-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                  Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                  \n

                  Full-zip front.
                  Three-panel hood.
                  Flatlock seams throughout.
                  Welt hand pockets.
                  Machine wash/dry.

                  ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"circe-hooded-ice-fleece-s-green-1204","links":{},"stock":{"item_id":1204,"product_id":1204,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-s-green-1204.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1085","_score":1,"_source":{"id":1085,"sku":"WH04-S-Blue","name":"Miko Pullover Hoodie-S-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                  \n

                  • Teal two-tone hoodie.
                  • Low scoop neckline.
                  • Adjustable hood drawstrings.
                  • Longer rounded hemline for extra back coverage.
                  • Long-Sleeve style.

                  ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"miko-pullover-hoodie-s-blue-1085","links":{},"stock":{"item_id":1085,"product_id":1085,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-s-blue-1085.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1257","_score":1,"_source":{"id":1257,"sku":"WJ03","name":"Augusta Pullover Jacket","attribute_set_id":9,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":57,"description":"

                  It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                  \n

                  • Pink half-zip pullover.
                  • Front pouch pockets.
                  • Fold-down collar.

                  ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"augusta-pullover-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[118,137,125,126,128],"pattern":"197","climate":[202,204,205,206,208],"slug":"augusta-pullover-jacket-1257","links":{},"stock":{"item_id":1257,"product_id":1257,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ03-XS-Blue","id":1242,"status":1,"name":"Augusta Pullover Jacket-XS-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"50","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","url_key":"augusta-pullover-jacket-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ03-XS-Orange","id":1243,"status":1,"name":"Augusta Pullover Jacket-XS-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"56","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","url_key":"augusta-pullover-jacket-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ03-XS-Red","id":1244,"status":1,"name":"Augusta Pullover Jacket-XS-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"58","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","url_key":"augusta-pullover-jacket-xs-red","msrp_display_actual_price_type":"0"},{"sku":"WJ03-S-Blue","id":1245,"status":1,"name":"Augusta Pullover Jacket-S-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"50","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","url_key":"augusta-pullover-jacket-s-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ03-S-Orange","id":1246,"status":1,"name":"Augusta Pullover Jacket-S-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"56","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","url_key":"augusta-pullover-jacket-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ03-S-Red","id":1247,"status":1,"name":"Augusta Pullover Jacket-S-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"58","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","url_key":"augusta-pullover-jacket-s-red","msrp_display_actual_price_type":"0"},{"sku":"WJ03-M-Blue","id":1248,"status":1,"name":"Augusta Pullover Jacket-M-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"50","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","url_key":"augusta-pullover-jacket-m-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ03-M-Orange","id":1249,"status":1,"name":"Augusta Pullover Jacket-M-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"56","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","url_key":"augusta-pullover-jacket-m-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ03-M-Red","id":1250,"status":1,"name":"Augusta Pullover Jacket-M-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"58","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","url_key":"augusta-pullover-jacket-m-red","msrp_display_actual_price_type":"0"},{"sku":"WJ03-L-Blue","id":1251,"status":1,"name":"Augusta Pullover Jacket-L-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"50","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","url_key":"augusta-pullover-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ03-L-Orange","id":1252,"status":1,"name":"Augusta Pullover Jacket-L-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"56","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","url_key":"augusta-pullover-jacket-l-orange","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ03-L-Red","id":1253,"status":1,"name":"Augusta Pullover Jacket-L-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"58","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","url_key":"augusta-pullover-jacket-l-red","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ03-XL-Blue","id":1254,"status":1,"name":"Augusta Pullover Jacket-XL-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"50","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","url_key":"augusta-pullover-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ03-XL-Orange","id":1255,"status":1,"name":"Augusta Pullover Jacket-XL-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"56","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","url_key":"augusta-pullover-jacket-xl-orange","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WJ03-XL-Red","id":1256,"status":1,"name":"Augusta Pullover Jacket-XL-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"58","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","url_key":"augusta-pullover-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001}],"configurable_options":[{"id":175,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":1257,"attribute_code":"color"},{"id":174,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1257,"attribute_code":"size"}],"color_options":[50,56,58],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-1257.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1253","_score":1,"_source":{"id":1253,"sku":"WJ03-L-Red","name":"Augusta Pullover Jacket-L-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                  \n

                  • Pink half-zip pullover.
                  • Front pouch pockets.
                  • Fold-down collar.

                  ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"augusta-pullover-jacket-l-red-1253","links":{},"stock":{"item_id":1253,"product_id":1253,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-l-red-1253.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1252","_score":1,"_source":{"id":1252,"sku":"WJ03-L-Orange","name":"Augusta Pullover Jacket-L-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                  \n

                  • Pink half-zip pullover.
                  • Front pouch pockets.
                  • Fold-down collar.

                  ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"augusta-pullover-jacket-l-orange-1252","links":{},"stock":{"item_id":1252,"product_id":1252,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-l-orange-1252.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1270","_score":1,"_source":{"id":1270,"sku":"WJ04-XL-Orange","name":"Ingrid Running Jacket-XL-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

                  The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                  • Slim fit.
                  • Moisture-wicking fabric.
                  • Two side pockets.
                  • Zippered pocket at back waist.
                  • Machine wash/dry.
                  • Ivory specked full zip

                  ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ingrid-running-jacket-xl-orange-1270","links":{},"stock":{"item_id":1270,"product_id":1270,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xl-orange-1270.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1272","_score":1,"_source":{"id":1272,"sku":"WJ04-XL-White","name":"Ingrid Running Jacket-XL-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

                  The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                  • Slim fit.
                  • Moisture-wicking fabric.
                  • Two side pockets.
                  • Zippered pocket at back waist.
                  • Machine wash/dry.
                  • Ivory specked full zip

                  ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ingrid-running-jacket-xl-white-1272","links":{},"stock":{"item_id":1272,"product_id":1272,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xl-white-1272.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1281","_score":1,"_source":{"id":1281,"sku":"WJ05-M-Green","name":"Riona Full Zip Jacket-M-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                  \n

                  • Brown heather full zip rouched jacket.
                  • Side hand pockets for extra storage.
                  • High collar.
                  • Thick cuffs for extra coverage.
                  • Durable, shape retention material to longer wear.

                  ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"riona-full-zip-jacket-m-green-1281","links":{},"stock":{"item_id":1281,"product_id":1281,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-m-green-1281.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1269","_score":1,"_source":{"id":1269,"sku":"WJ04-L-White","name":"Ingrid Running Jacket-L-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

                  The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                  • Slim fit.
                  • Moisture-wicking fabric.
                  • Two side pockets.
                  • Zippered pocket at back waist.
                  • Machine wash/dry.
                  • Ivory specked full zip

                  ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ingrid-running-jacket-l-white-1269","links":{},"stock":{"item_id":1269,"product_id":1269,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-l-white-1269.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1411","_score":1,"_source":{"id":1411,"sku":"WS02-L-Blue","name":"Gabrielle Micro Sleeve Top-L-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                  \n

                  • Lime green v-neck tee.
                  • Slimming, flattering fit.
                  • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                  • Longer curved hem provides additional coverage.
                  • 55% Hemp / 45% Organic Cotton.

                  ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gabrielle-micro-sleeve-top-l-blue-1411","links":{},"stock":{"item_id":1411,"product_id":1411,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-l-blue-1411.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1428","_score":1,"_source":{"id":1428,"sku":"WS03-L-Green","name":"Iris Workout Top-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                  \n

                  • Pink heather rouched v-neck.
                  • Scoop neckline.
                  • Angled flat seams.
                  • Moisture wicking.
                  • Body skimming.
                  • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                  ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"iris-workout-top-l-green-1428","links":{},"stock":{"item_id":1428,"product_id":1428,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-l-green-1428.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1420","_score":1,"_source":{"id":1420,"sku":"WS03-XS-Red","name":"Iris Workout Top-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                  \n

                  • Pink heather rouched v-neck.
                  • Scoop neckline.
                  • Angled flat seams.
                  • Moisture wicking.
                  • Body skimming.
                  • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                  ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"iris-workout-top-xs-red-1420","links":{},"stock":{"item_id":1420,"product_id":1420,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xs-red-1420.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1443","_score":1,"_source":{"id":1443,"sku":"WS04-L-Blue","name":"Layla Tee-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                  \n

                  • Teal tee.
                  • Long back hem.
                  • Dropped shoulders.

                  ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"layla-tee-l-blue-1443","links":{},"stock":{"item_id":1443,"product_id":1443,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-l-blue-1443.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1429","_score":1,"_source":{"id":1429,"sku":"WS03-L-Red","name":"Iris Workout Top-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                  \n

                  • Pink heather rouched v-neck.
                  • Scoop neckline.
                  • Angled flat seams.
                  • Moisture wicking.
                  • Body skimming.
                  • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                  ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"iris-workout-top-l-red-1429","links":{},"stock":{"item_id":1429,"product_id":1429,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-l-red-1429.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1439","_score":1,"_source":{"id":1439,"sku":"WS04-S-Red","name":"Layla Tee-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                  \n

                  • Teal tee.
                  • Long back hem.
                  • Dropped shoulders.

                  ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"layla-tee-s-red-1439","links":{},"stock":{"item_id":1439,"product_id":1439,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-s-red-1439.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1280","_score":1,"_source":{"id":1280,"sku":"WJ05-M-Brown","name":"Riona Full Zip Jacket-M-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                  The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                  \n

                  • Brown heather full zip rouched jacket.
                  • Side hand pockets for extra storage.
                  • High collar.
                  • Thick cuffs for extra coverage.
                  • Durable, shape retention material to longer wear.

                  ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-m-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"riona-full-zip-jacket-m-brown-1280","links":{},"stock":{"item_id":1280,"product_id":1280,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-m-brown-1280.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1266","_score":1,"_source":{"id":1266,"sku":"WJ04-M-White","name":"Ingrid Running Jacket-M-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

                  The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                  • Slim fit.
                  • Moisture-wicking fabric.
                  • Two side pockets.
                  • Zippered pocket at back waist.
                  • Machine wash/dry.
                  • Ivory specked full zip

                  ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ingrid-running-jacket-m-white-1266","links":{},"stock":{"item_id":1266,"product_id":1266,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-m-white-1266.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1295","_score":1,"_source":{"id":1295,"sku":"WJ07-S-Red","name":"Inez Full Zip Jacket-S-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                  \n

                  • Purple heather inset full zip jacket.
                  • Full zip hoodie.
                  • Contrast binding along the zipper, hood and sleeves.
                  • Inseam pockets for storage.
                  • Thumbholes for comfortable fit.

                  ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"inez-full-zip-jacket-s-red-1295","links":{},"stock":{"item_id":1295,"product_id":1295,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-s-red-1295.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1296","_score":1,"_source":{"id":1296,"sku":"WJ07-M-Orange","name":"Inez Full Zip Jacket-M-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                  \n

                  • Purple heather inset full zip jacket.
                  • Full zip hoodie.
                  • Contrast binding along the zipper, hood and sleeves.
                  • Inseam pockets for storage.
                  • Thumbholes for comfortable fit.

                  ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"inez-full-zip-jacket-m-orange-1296","links":{},"stock":{"item_id":1296,"product_id":1296,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-m-orange-1296.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1293","_score":1,"_source":{"id":1293,"sku":"WJ07-S-Orange","name":"Inez Full Zip Jacket-S-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                  \n

                  • Purple heather inset full zip jacket.
                  • Full zip hoodie.
                  • Contrast binding along the zipper, hood and sleeves.
                  • Inseam pockets for storage.
                  • Thumbholes for comfortable fit.

                  ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"inez-full-zip-jacket-s-orange-1293","links":{},"stock":{"item_id":1293,"product_id":1293,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-s-orange-1293.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1324","_score":1,"_source":{"id":1324,"sku":"WJ09-XS-Green","name":"Jade Yoga Jacket-XS-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


                  If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                  \n

                  • Seafoam 1/4 zip pullover with purple stitching.
                  • Lightweight, quick-drying, water-resistant construction.
                  • Shirred details at front and back for a feminine look.
                  • Hood collapses into collar.
                  • Mesh liner for breathability.
                  • Front zip pockets.
                  • Hem cinches at sideseam.
                  • 100% Polyester.

                  ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jade-yoga-jacket-xs-green-1324","links":{},"stock":{"item_id":1324,"product_id":1324,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xs-green-1324.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1335","_score":1,"_source":{"id":1335,"sku":"WJ09-XL-Gray","name":"Jade Yoga Jacket-XL-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


                  If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                  \n

                  • Seafoam 1/4 zip pullover with purple stitching.
                  • Lightweight, quick-drying, water-resistant construction.
                  • Shirred details at front and back for a feminine look.
                  • Hood collapses into collar.
                  • Mesh liner for breathability.
                  • Front zip pockets.
                  • Hem cinches at sideseam.
                  • 100% Polyester.

                  ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jade-yoga-jacket-xl-gray-1335","links":{},"stock":{"item_id":1335,"product_id":1335,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xl-gray-1335.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1344","_score":1,"_source":{"id":1344,"sku":"WJ10-M-Black","name":"Nadia Elements Shell-M-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                  \n

                  • Zippered front.
                  • Zippered side pockets.
                  • Drawstring-adjustable waist and hood.
                  • Machine wash/line dry.
                  • Light blue 1/4 zip pullover.

                  ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nadia-elements-shell-m-black-1344","links":{},"stock":{"item_id":1344,"product_id":1344,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-m-black-1344.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1317","_score":1,"_source":{"id":1317,"sku":"WJ08-L-Purple","name":"Adrienne Trek Jacket-L-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                  You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                  \n

                  • gray 1/4 zip pullover.
                  • Comfortable, relaxed fit.
                  • Front zip for venting.
                  • Spacious, kangaroo pockets.
                  • 27\" body length.
                  • 95% Organic Cotton / 5% Spandex.

                  ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"adrienne-trek-jacket-l-purple-1317","links":{},"stock":{"item_id":1317,"product_id":1317,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-l-purple-1317.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1389","_score":1,"_source":{"id":1389,"sku":"WJ12-S-Black","name":"Olivia 1/4 Zip Light Jacket-S-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                  Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                  \n

                  • Loose fit.
                  • Reflectivity.
                  • Flat seams.
                  • Machine wash/dry.

                  ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"olivia-14-zip-light-jacket-s-black-1389","links":{},"stock":{"item_id":1389,"product_id":1389,"stock_id":1,"qty":74,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-s-black-1389.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1378","_score":1,"_source":{"id":1378,"sku":"WJ06-M-Purple","name":"Juno Jacket-M-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                  On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                  \n

                  • Adjustable hood.
                  • Fleece-lined, zippered hand pockets.
                  • Thumbhole cuffs.
                  • Full zip.
                  • Mock-neck collar.
                  • Machine wash/dry.

                  ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juno-jacket-m-purple-1378","links":{},"stock":{"item_id":1378,"product_id":1378,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-m-purple-1378.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1396","_score":1,"_source":{"id":1396,"sku":"WJ12-L-Blue","name":"Olivia 1/4 Zip Light Jacket-L-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                  Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                  \n

                  • Loose fit.
                  • Reflectivity.
                  • Flat seams.
                  • Machine wash/dry.

                  ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"olivia-14-zip-light-jacket-l-blue-1396","links":{},"stock":{"item_id":1396,"product_id":1396,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-l-blue-1396.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1393","_score":1,"_source":{"id":1393,"sku":"WJ12-M-Blue","name":"Olivia 1/4 Zip Light Jacket-M-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                  Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                  \n

                  • Loose fit.
                  • Reflectivity.
                  • Flat seams.
                  • Machine wash/dry.

                  ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"olivia-14-zip-light-jacket-m-blue-1393","links":{},"stock":{"item_id":1393,"product_id":1393,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-m-blue-1393.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1357","_score":1,"_source":{"id":1357,"sku":"WJ11-S-Black","name":"Neve Studio Dance Jacket-S-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                  \n

                  • Bright blue 1/4 zip pullover.
                  • CoolTech™ liner is sweat-wicking.
                  • Sleeve thumbholes.
                  • Zipper garage to protect your chin.
                  • Stretchy collar drawcords.

                  ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"neve-studio-dance-jacket-s-black-1357","links":{},"stock":{"item_id":1357,"product_id":1357,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-s-black-1357.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1363","_score":1,"_source":{"id":1363,"sku":"WJ11-L-Black","name":"Neve Studio Dance Jacket-L-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                  \n

                  • Bright blue 1/4 zip pullover.
                  • CoolTech™ liner is sweat-wicking.
                  • Sleeve thumbholes.
                  • Zipper garage to protect your chin.
                  • Stretchy collar drawcords.

                  ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"neve-studio-dance-jacket-l-black-1363","links":{},"stock":{"item_id":1363,"product_id":1363,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-l-black-1363.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1352","_score":1,"_source":{"id":1352,"sku":"WJ10-XL-Yellow","name":"Nadia Elements Shell-XL-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                  \n

                  • Zippered front.
                  • Zippered side pockets.
                  • Drawstring-adjustable waist and hood.
                  • Machine wash/line dry.
                  • Light blue 1/4 zip pullover.

                  ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nadia-elements-shell-xl-yellow-1352","links":{},"stock":{"item_id":1352,"product_id":1352,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xl-yellow-1352.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1404","_score":1,"_source":{"id":1404,"sku":"WS02-XS-Red","name":"Gabrielle Micro Sleeve Top-XS-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                  \n

                  • Lime green v-neck tee.
                  • Slimming, flattering fit.
                  • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                  • Longer curved hem provides additional coverage.
                  • 55% Hemp / 45% Organic Cotton.

                  ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gabrielle-micro-sleeve-top-xs-red-1404","links":{},"stock":{"item_id":1404,"product_id":1404,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xs-red-1404.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1405","_score":1,"_source":{"id":1405,"sku":"WS02-S-Blue","name":"Gabrielle Micro Sleeve Top-S-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                  \n

                  • Lime green v-neck tee.
                  • Slimming, flattering fit.
                  • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                  • Longer curved hem provides additional coverage.
                  • 55% Hemp / 45% Organic Cotton.

                  ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gabrielle-micro-sleeve-top-s-blue-1405","links":{},"stock":{"item_id":1405,"product_id":1405,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-s-blue-1405.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1406","_score":1,"_source":{"id":1406,"sku":"WS02-S-Green","name":"Gabrielle Micro Sleeve Top-S-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                  \n

                  • Lime green v-neck tee.
                  • Slimming, flattering fit.
                  • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                  • Longer curved hem provides additional coverage.
                  • 55% Hemp / 45% Organic Cotton.

                  ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gabrielle-micro-sleeve-top-s-green-1406","links":{},"stock":{"item_id":1406,"product_id":1406,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-s-green-1406.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1341","_score":1,"_source":{"id":1341,"sku":"WJ10-S-Black","name":"Nadia Elements Shell-S-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                  Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                  \n

                  • Zippered front.
                  • Zippered side pockets.
                  • Drawstring-adjustable waist and hood.
                  • Machine wash/line dry.
                  • Light blue 1/4 zip pullover.

                  ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nadia-elements-shell-s-black-1341","links":{},"stock":{"item_id":1341,"product_id":1341,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-s-black-1341.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1481","_score":1,"_source":{"id":1481,"sku":"WS07","name":"Juliana Short-Sleeve Tee","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":42,"description":"

                  The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                  \n

                  • Black scoop neck tee.
                  • Side rouching.
                  • Relaxed fit.

                  ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"juliana-short-sleeve-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"juliana-short-sleeve-tee-1481","links":{},"stock":{"item_id":1481,"product_id":1481,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS07-XS-Black","id":1466,"status":1,"name":"Juliana Short-Sleeve Tee-XS-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"167","color":"49","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","url_key":"juliana-short-sleeve-tee-xs-black","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-XS-White","id":1467,"status":1,"name":"Juliana Short-Sleeve Tee-XS-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"167","color":"59","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","url_key":"juliana-short-sleeve-tee-xs-white","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-XS-Yellow","id":1468,"status":1,"name":"Juliana Short-Sleeve Tee-XS-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"167","color":"60","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","url_key":"juliana-short-sleeve-tee-xs-yellow","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-S-Black","id":1469,"status":1,"name":"Juliana Short-Sleeve Tee-S-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"168","color":"49","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","url_key":"juliana-short-sleeve-tee-s-black","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-S-White","id":1470,"status":1,"name":"Juliana Short-Sleeve Tee-S-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"168","color":"59","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","url_key":"juliana-short-sleeve-tee-s-white","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-S-Yellow","id":1471,"status":1,"name":"Juliana Short-Sleeve Tee-S-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"168","color":"60","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","url_key":"juliana-short-sleeve-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-M-Black","id":1472,"status":1,"name":"Juliana Short-Sleeve Tee-M-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"169","color":"49","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","url_key":"juliana-short-sleeve-tee-m-black","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-M-White","id":1473,"status":1,"name":"Juliana Short-Sleeve Tee-M-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"169","color":"59","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","url_key":"juliana-short-sleeve-tee-m-white","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-M-Yellow","id":1474,"status":1,"name":"Juliana Short-Sleeve Tee-M-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"169","color":"60","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","url_key":"juliana-short-sleeve-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-L-Black","id":1475,"status":1,"name":"Juliana Short-Sleeve Tee-L-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"170","color":"49","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","url_key":"juliana-short-sleeve-tee-l-black","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-L-White","id":1476,"status":1,"name":"Juliana Short-Sleeve Tee-L-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"170","color":"59","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","url_key":"juliana-short-sleeve-tee-l-white","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-L-Yellow","id":1477,"status":1,"name":"Juliana Short-Sleeve Tee-L-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"170","color":"60","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","url_key":"juliana-short-sleeve-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-XL-Black","id":1478,"status":1,"name":"Juliana Short-Sleeve Tee-XL-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"171","color":"49","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","url_key":"juliana-short-sleeve-tee-xl-black","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-XL-White","id":1479,"status":1,"name":"Juliana Short-Sleeve Tee-XL-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"171","color":"59","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","url_key":"juliana-short-sleeve-tee-xl-white","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WS07-XL-Yellow","id":1480,"status":1,"name":"Juliana Short-Sleeve Tee-XL-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"171","color":"60","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","url_key":"juliana-short-sleeve-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001}],"configurable_options":[{"id":203,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":1481,"attribute_code":"color"},{"id":202,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1481,"attribute_code":"size"}],"color_options":[49,59,60],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-1481.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1545","_score":1,"_source":{"id":1545,"sku":"WS11","name":"Diva Gym Tee","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":32,"description":"

                  The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                  \n

                  • Bright yellow v-neck tee.
                  • Moisture-wicking fabric.
                  • Long-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"diva-gym-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"1","style_general":"136","pattern":"197","climate":[205,209],"slug":"diva-gym-tee-1545","links":{},"stock":{"item_id":1545,"product_id":1545,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS11-XS-Green","id":1530,"status":1,"name":"Diva Gym Tee-XS-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"167","color":"53","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","url_key":"diva-gym-tee-xs-green","msrp_display_actual_price_type":"0"},{"sku":"WS11-XS-Orange","id":1531,"status":1,"name":"Diva Gym Tee-XS-Orange","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"167","color":"56","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","url_key":"diva-gym-tee-xs-orange","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-XS-Yellow","id":1532,"status":1,"name":"Diva Gym Tee-XS-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"167","color":"60","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","url_key":"diva-gym-tee-xs-yellow","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-S-Green","id":1533,"status":1,"name":"Diva Gym Tee-S-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"168","color":"53","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","url_key":"diva-gym-tee-s-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-S-Orange","id":1534,"status":1,"name":"Diva Gym Tee-S-Orange","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"168","color":"56","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","url_key":"diva-gym-tee-s-orange","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-S-Yellow","id":1535,"status":1,"name":"Diva Gym Tee-S-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"168","color":"60","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","url_key":"diva-gym-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-M-Green","id":1536,"status":1,"name":"Diva Gym Tee-M-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"169","color":"53","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","url_key":"diva-gym-tee-m-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-M-Orange","id":1537,"status":1,"name":"Diva Gym Tee-M-Orange","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"169","color":"56","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","url_key":"diva-gym-tee-m-orange","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-M-Yellow","id":1538,"status":1,"name":"Diva Gym Tee-M-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"169","color":"60","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","url_key":"diva-gym-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-L-Green","id":1539,"status":1,"name":"Diva Gym Tee-L-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"170","color":"53","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","url_key":"diva-gym-tee-l-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-L-Orange","id":1540,"status":1,"name":"Diva Gym Tee-L-Orange","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"170","color":"56","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","url_key":"diva-gym-tee-l-orange","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-L-Yellow","id":1541,"status":1,"name":"Diva Gym Tee-L-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"170","color":"60","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","url_key":"diva-gym-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-XL-Green","id":1542,"status":1,"name":"Diva Gym Tee-XL-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"171","color":"53","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","url_key":"diva-gym-tee-xl-green","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-XL-Orange","id":1543,"status":1,"name":"Diva Gym Tee-XL-Orange","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"171","color":"56","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","url_key":"diva-gym-tee-xl-orange","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001},{"sku":"WS11-XL-Yellow","id":1544,"status":1,"name":"Diva Gym Tee-XL-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"171","color":"60","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","url_key":"diva-gym-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001}],"configurable_options":[{"id":211,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1545,"attribute_code":"color"},{"id":210,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1545,"attribute_code":"size"}],"color_options":[53,56,60],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-1545.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1401","_score":1,"_source":{"id":1401,"sku":"WJ12","name":"Olivia 1/4 Zip Light Jacket","attribute_set_id":9,"price":77,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":77,"description":"

                  Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                  \n

                  • Loose fit.
                  • Reflectivity.
                  • Flat seams.
                  • Machine wash/dry.

                  ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"olivia-1-4-zip-light-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,37,33],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[118,137,120,125,128],"pattern":"197","climate":[208,209,210],"slug":"olivia-14-zip-light-jacket-1401","links":{},"stock":{"item_id":1401,"product_id":1401,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ12-XS-Black","id":1386,"status":1,"name":"Olivia 1/4 Zip Light Jacket-XS-Black","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"167","color":"49","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","url_key":"olivia-1-4-zip-light-jacket-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WJ12-XS-Blue","id":1387,"status":1,"name":"Olivia 1/4 Zip Light Jacket-XS-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"167","color":"50","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","url_key":"olivia-1-4-zip-light-jacket-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ12-XS-Purple","id":1388,"status":1,"name":"Olivia 1/4 Zip Light Jacket-XS-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"167","color":"57","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","url_key":"olivia-1-4-zip-light-jacket-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ12-S-Black","id":1389,"status":1,"name":"Olivia 1/4 Zip Light Jacket-S-Black","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"168","color":"49","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","url_key":"olivia-1-4-zip-light-jacket-s-black","msrp_display_actual_price_type":"0"},{"sku":"WJ12-S-Blue","id":1390,"status":1,"name":"Olivia 1/4 Zip Light Jacket-S-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"168","color":"50","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","url_key":"olivia-1-4-zip-light-jacket-s-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ12-S-Purple","id":1391,"status":1,"name":"Olivia 1/4 Zip Light Jacket-S-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"168","color":"57","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","url_key":"olivia-1-4-zip-light-jacket-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ12-M-Black","id":1392,"status":1,"name":"Olivia 1/4 Zip Light Jacket-M-Black","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"169","color":"49","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","url_key":"olivia-1-4-zip-light-jacket-m-black","msrp_display_actual_price_type":"0"},{"sku":"WJ12-M-Blue","id":1393,"status":1,"name":"Olivia 1/4 Zip Light Jacket-M-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"169","color":"50","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","url_key":"olivia-1-4-zip-light-jacket-m-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ12-M-Purple","id":1394,"status":1,"name":"Olivia 1/4 Zip Light Jacket-M-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"169","color":"57","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","url_key":"olivia-1-4-zip-light-jacket-m-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ12-L-Black","id":1395,"status":1,"name":"Olivia 1/4 Zip Light Jacket-L-Black","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"170","color":"49","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","url_key":"olivia-1-4-zip-light-jacket-l-black","msrp_display_actual_price_type":"0"},{"sku":"WJ12-L-Blue","id":1396,"status":1,"name":"Olivia 1/4 Zip Light Jacket-L-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"170","color":"50","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","url_key":"olivia-1-4-zip-light-jacket-l-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ12-L-Purple","id":1397,"status":1,"name":"Olivia 1/4 Zip Light Jacket-L-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"170","color":"57","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","url_key":"olivia-1-4-zip-light-jacket-l-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ12-XL-Black","id":1398,"status":1,"name":"Olivia 1/4 Zip Light Jacket-XL-Black","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"171","color":"49","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","url_key":"olivia-1-4-zip-light-jacket-xl-black","msrp_display_actual_price_type":"0"},{"sku":"WJ12-XL-Blue","id":1399,"status":1,"name":"Olivia 1/4 Zip Light Jacket-XL-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"171","color":"50","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","url_key":"olivia-1-4-zip-light-jacket-xl-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ12-XL-Purple","id":1400,"status":1,"name":"Olivia 1/4 Zip Light Jacket-XL-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"171","color":"57","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","url_key":"olivia-1-4-zip-light-jacket-xl-purple","msrp_display_actual_price_type":"0"}],"configurable_options":[{"id":193,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":1401,"attribute_code":"color"},{"id":192,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1401,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-1401.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1486","_score":1,"_source":{"id":1486,"sku":"WS08-S-Blue","name":"Minerva LumaTech™ V-Tee-S-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2019-04-11 12:22:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                  Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                  \r\n

                  • Navy blue heather soft v-neck tee.
                  • Flatlock seams for chafe-free comfort.
                  • Relaxed cut.
                  • Ultra-lightweight fabric.
                  • Machine wash/dry.

                  ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-s-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"168","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"minerva-lumatech-and-trade-v-tee-s-blue-1486","links":{},"stock":{"item_id":1486,"product_id":1486,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-04-11 12:22:55","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-s-blue-1486.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1477","_score":1,"_source":{"id":1477,"sku":"WS07-L-Yellow","name":"Juliana Short-Sleeve Tee-L-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                  \n

                  • Black scoop neck tee.
                  • Side rouching.
                  • Relaxed fit.

                  ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juliana-short-sleeve-tee-l-yellow-1477","links":{},"stock":{"item_id":1477,"product_id":1477,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-l-yellow-1477.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1496","_score":1,"_source":{"id":1496,"sku":"WS08-XL-Red","name":"Minerva LumaTech™ V-Tee-XL-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                  \n

                  • Navy blue heather soft v-neck tee.
                  • Flatlock seams for chafe-free comfort.
                  • Relaxed cut.
                  • Ultra-lightweight fabric.
                  • Machine wash/dry.

                  ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"minerva-lumatech-and-trade-v-tee-xl-red-1496","links":{},"stock":{"item_id":1496,"product_id":1496,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xl-red-1496.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1493","_score":1,"_source":{"id":1493,"sku":"WS08-L-Red","name":"Minerva LumaTech™ V-Tee-L-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                  \n

                  • Navy blue heather soft v-neck tee.
                  • Flatlock seams for chafe-free comfort.
                  • Relaxed cut.
                  • Ultra-lightweight fabric.
                  • Machine wash/dry.

                  ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"minerva-lumatech-and-trade-v-tee-l-red-1493","links":{},"stock":{"item_id":1493,"product_id":1493,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-l-red-1493.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1489","_score":1,"_source":{"id":1489,"sku":"WS08-M-Blue","name":"Minerva LumaTech™ V-Tee-M-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                  \n

                  • Navy blue heather soft v-neck tee.
                  • Flatlock seams for chafe-free comfort.
                  • Relaxed cut.
                  • Ultra-lightweight fabric.
                  • Machine wash/dry.

                  ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"minerva-lumatech-and-trade-v-tee-m-blue-1489","links":{},"stock":{"item_id":1489,"product_id":1489,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-m-blue-1489.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1490","_score":1,"_source":{"id":1490,"sku":"WS08-M-Red","name":"Minerva LumaTech™ V-Tee-M-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                  \n

                  • Navy blue heather soft v-neck tee.
                  • Flatlock seams for chafe-free comfort.
                  • Relaxed cut.
                  • Ultra-lightweight fabric.
                  • Machine wash/dry.

                  ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"minerva-lumatech-and-trade-v-tee-m-red-1490","links":{},"stock":{"item_id":1490,"product_id":1490,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-m-red-1490.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1487","_score":1,"_source":{"id":1487,"sku":"WS08-S-Red","name":"Minerva LumaTech™ V-Tee-S-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                  \n

                  • Navy blue heather soft v-neck tee.
                  • Flatlock seams for chafe-free comfort.
                  • Relaxed cut.
                  • Ultra-lightweight fabric.
                  • Machine wash/dry.

                  ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"minerva-lumatech-and-trade-v-tee-s-red-1487","links":{},"stock":{"item_id":1487,"product_id":1487,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-s-red-1487.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1483","_score":1,"_source":{"id":1483,"sku":"WS08-XS-Blue","name":"Minerva LumaTech™ V-Tee-XS-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                  \n

                  • Navy blue heather soft v-neck tee.
                  • Flatlock seams for chafe-free comfort.
                  • Relaxed cut.
                  • Ultra-lightweight fabric.
                  • Machine wash/dry.

                  ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"minerva-lumatech-and-trade-v-tee-xs-blue-1483","links":{},"stock":{"item_id":1483,"product_id":1483,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xs-blue-1483.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1549","_score":1,"_source":{"id":1549,"sku":"WS12-S-Blue","name":"Radiant Tee-S-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

                  So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                  \n

                  • Salmon soft scoop neck tee.
                  • Athletic, semi-form fit.
                  • Flat seams prevent chafing.
                  • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                  ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"radiant-tee-s-blue-1549","links":{},"stock":{"item_id":1549,"product_id":1549,"stock_id":1,"qty":35,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-s-blue-1549.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1543","_score":1,"_source":{"id":1543,"sku":"WS11-XL-Orange","name":"Diva Gym Tee-XL-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                  \n

                  • Bright yellow v-neck tee.
                  • Moisture-wicking fabric.
                  • Long-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"diva-gym-tee-xl-orange-1543","links":{},"stock":{"item_id":1543,"product_id":1543,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xl-orange-1543.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1528","_score":1,"_source":{"id":1528,"sku":"WS10-XL-Yellow","name":"Karissa V-Neck Tee-XL-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                  \n

                  • Pink heather soft v-neck tee.
                  • Luma signature micro sleeves.
                  • Semi-fitted.
                  • Machine wash/dry.

                  ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"karissa-v-neck-tee-xl-yellow-1528","links":{},"stock":{"item_id":1528,"product_id":1528,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xl-yellow-1528.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1530","_score":1,"_source":{"id":1530,"sku":"WS11-XS-Green","name":"Diva Gym Tee-XS-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                  The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                  \n

                  • Bright yellow v-neck tee.
                  • Moisture-wicking fabric.
                  • Long-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"diva-gym-tee-xs-green-1530","links":{},"stock":{"item_id":1530,"product_id":1530,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-29 11:29:03","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xs-green-1530.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1546","_score":1,"_source":{"id":1546,"sku":"WS12-XS-Blue","name":"Radiant Tee-XS-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                  So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                  \n

                  • Salmon soft scoop neck tee.
                  • Athletic, semi-form fit.
                  • Flat seams prevent chafing.
                  • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                  ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"radiant-tee-xs-blue-1546","links":{},"stock":{"item_id":1546,"product_id":1546,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-10 16:42:32","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xs-blue-1546.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1527","_score":1,"_source":{"id":1527,"sku":"WS10-XL-Red","name":"Karissa V-Neck Tee-XL-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                  \n

                  • Pink heather soft v-neck tee.
                  • Luma signature micro sleeves.
                  • Semi-fitted.
                  • Machine wash/dry.

                  ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"karissa-v-neck-tee-xl-red-1527","links":{},"stock":{"item_id":1527,"product_id":1527,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xl-red-1527.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1532","_score":1,"_source":{"id":1532,"sku":"WS11-XS-Yellow","name":"Diva Gym Tee-XS-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                  \n

                  • Bright yellow v-neck tee.
                  • Moisture-wicking fabric.
                  • Long-Sleeves.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"diva-gym-tee-xs-yellow-1532","links":{},"stock":{"item_id":1532,"product_id":1532,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xs-yellow-1532.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1604","_score":1,"_source":{"id":1604,"sku":"WB01-L-Gray","name":"Electra Bra Top-L-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                  \n

                  • Gray rouched bra top.
                  • Attractive back straps feature contrasting motif fabric.
                  • Interior bra top is lined with breathable mesh.
                  • Elastic underband for superior support.
                  • Removable cup inserts.
                  • Chafe-free flat lock seams provide added comfort.

                  ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"electra-bra-top-l-gray-1604","links":{},"stock":{"item_id":1604,"product_id":1604,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-l-gray-1604.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1608","_score":1,"_source":{"id":1608,"sku":"WB01-XL-Purple","name":"Electra Bra Top-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                  \n

                  • Gray rouched bra top.
                  • Attractive back straps feature contrasting motif fabric.
                  • Interior bra top is lined with breathable mesh.
                  • Elastic underband for superior support.
                  • Removable cup inserts.
                  • Chafe-free flat lock seams provide added comfort.

                  ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"electra-bra-top-xl-purple-1608","links":{},"stock":{"item_id":1608,"product_id":1608,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xl-purple-1608.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1622","_score":1,"_source":{"id":1622,"sku":"WB02-XL-Blue","name":"Erica Evercool Sports Bra-XL-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                  \n

                  • Honeycomb light blue bra top.
                  • Elastic hem.
                  • Reinforced binding.
                  • Machine wash/dry.

                  ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erica-evercool-sports-bra-xl-blue-1622","links":{},"stock":{"item_id":1622,"product_id":1622,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xl-blue-1622.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1621","_score":1,"_source":{"id":1621,"sku":"WB02-L-Yellow","name":"Erica Evercool Sports Bra-L-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                  \n

                  • Honeycomb light blue bra top.
                  • Elastic hem.
                  • Reinforced binding.
                  • Machine wash/dry.

                  ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erica-evercool-sports-bra-l-yellow-1621","links":{},"stock":{"item_id":1621,"product_id":1621,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-l-yellow-1621.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1624","_score":1,"_source":{"id":1624,"sku":"WB02-XL-Yellow","name":"Erica Evercool Sports Bra-XL-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                  \n

                  • Honeycomb light blue bra top.
                  • Elastic hem.
                  • Reinforced binding.
                  • Machine wash/dry.

                  ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erica-evercool-sports-bra-xl-yellow-1624","links":{},"stock":{"item_id":1624,"product_id":1624,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xl-yellow-1624.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1619","_score":1,"_source":{"id":1619,"sku":"WB02-L-Blue","name":"Erica Evercool Sports Bra-L-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                  \n

                  • Honeycomb light blue bra top.
                  • Elastic hem.
                  • Reinforced binding.
                  • Machine wash/dry.

                  ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erica-evercool-sports-bra-l-blue-1619","links":{},"stock":{"item_id":1619,"product_id":1619,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-l-blue-1619.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1469","_score":1,"_source":{"id":1469,"sku":"WS07-S-Black","name":"Juliana Short-Sleeve Tee-S-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                  \n

                  • Black scoop neck tee.
                  • Side rouching.
                  • Relaxed fit.

                  ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juliana-short-sleeve-tee-s-black-1469","links":{},"stock":{"item_id":1469,"product_id":1469,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-s-black-1469.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1460","_score":1,"_source":{"id":1460,"sku":"WS06-L-Purple","name":"Elisa EverCool™ Tee-L-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                  \n

                  • Purple heather v-neck tee.
                  • Short-Sleeves.
                  • Luma EverCool™ fabric.
                  • Machine wash/line dry.

                  ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"elisa-evercool-and-trade-tee-l-purple-1460","links":{},"stock":{"item_id":1460,"product_id":1460,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-l-purple-1460.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1511","_score":1,"_source":{"id":1511,"sku":"WS09-XL-Red","name":"Tiffany Fitness Tee-XL-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                  \n

                  • Teal soft scoop neck tee.
                  • Contrast stitching pattern.
                  • Machine wash/dry.

                  ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tiffany-fitness-tee-xl-red-1511","links":{},"stock":{"item_id":1511,"product_id":1511,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xl-red-1511.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1522","_score":1,"_source":{"id":1522,"sku":"WS10-M-Yellow","name":"Karissa V-Neck Tee-M-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                  \n

                  • Pink heather soft v-neck tee.
                  • Luma signature micro sleeves.
                  • Semi-fitted.
                  • Machine wash/dry.

                  ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"karissa-v-neck-tee-m-yellow-1522","links":{},"stock":{"item_id":1522,"product_id":1522,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-m-yellow-1522.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1597","_score":1,"_source":{"id":1597,"sku":"WB01-S-Black","name":"Electra Bra Top-S-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                  \n

                  • Gray rouched bra top.
                  • Attractive back straps feature contrasting motif fabric.
                  • Interior bra top is lined with breathable mesh.
                  • Elastic underband for superior support.
                  • Removable cup inserts.
                  • Chafe-free flat lock seams provide added comfort.

                  ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"electra-bra-top-s-black-1597","links":{},"stock":{"item_id":1597,"product_id":1597,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-s-black-1597.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1657","_score":1,"_source":{"id":1657,"sku":"WB04","name":"Prima Compete Bra Top","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":24,"description":"

                  Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                  `
                  • Colorblocked details.
                  • Machine wash/line dry.

                  ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"prima-compete-bra-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,154,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"131","pattern":"197","climate":[205,209],"slug":"prima-compete-bra-top-1657","links":{},"stock":{"item_id":1657,"product_id":1657,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WB04-XS-Blue","id":1642,"status":1,"name":"Prima Compete Bra Top-XS-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"50","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","url_key":"prima-compete-bra-top-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WB04-XS-Purple","id":1643,"status":1,"name":"Prima Compete Bra Top-XS-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"57","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","url_key":"prima-compete-bra-top-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WB04-XS-Yellow","id":1644,"status":1,"name":"Prima Compete Bra Top-XS-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"60","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","url_key":"prima-compete-bra-top-xs-yellow","msrp_display_actual_price_type":"0"},{"sku":"WB04-S-Blue","id":1645,"status":1,"name":"Prima Compete Bra Top-S-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"50","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","url_key":"prima-compete-bra-top-s-blue","msrp_display_actual_price_type":"0"},{"sku":"WB04-S-Purple","id":1646,"status":1,"name":"Prima Compete Bra Top-S-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"57","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","url_key":"prima-compete-bra-top-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WB04-S-Yellow","id":1647,"status":1,"name":"Prima Compete Bra Top-S-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"60","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","url_key":"prima-compete-bra-top-s-yellow","msrp_display_actual_price_type":"0"},{"sku":"WB04-M-Blue","id":1648,"status":1,"name":"Prima Compete Bra Top-M-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"50","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","url_key":"prima-compete-bra-top-m-blue","msrp_display_actual_price_type":"0"},{"sku":"WB04-M-Purple","id":1649,"status":1,"name":"Prima Compete Bra Top-M-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"57","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","url_key":"prima-compete-bra-top-m-purple","msrp_display_actual_price_type":"0"},{"sku":"WB04-M-Yellow","id":1650,"status":1,"name":"Prima Compete Bra Top-M-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"60","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","url_key":"prima-compete-bra-top-m-yellow","msrp_display_actual_price_type":"0"},{"sku":"WB04-L-Blue","id":1651,"status":1,"name":"Prima Compete Bra Top-L-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"50","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","url_key":"prima-compete-bra-top-l-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WB04-L-Purple","id":1652,"status":1,"name":"Prima Compete Bra Top-L-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"57","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","url_key":"prima-compete-bra-top-l-purple","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WB04-L-Yellow","id":1653,"status":1,"name":"Prima Compete Bra Top-L-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"60","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","url_key":"prima-compete-bra-top-l-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WB04-XL-Blue","id":1654,"status":1,"name":"Prima Compete Bra Top-XL-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"50","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","url_key":"prima-compete-bra-top-xl-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WB04-XL-Purple","id":1655,"status":1,"name":"Prima Compete Bra Top-XL-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"57","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","url_key":"prima-compete-bra-top-xl-purple","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WB04-XL-Yellow","id":1656,"status":1,"name":"Prima Compete Bra Top-XL-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"60","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","url_key":"prima-compete-bra-top-xl-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001}],"configurable_options":[{"id":225,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"},{"value_index":60,"label":"Yellow"}],"product_id":1657,"attribute_code":"color"},{"id":224,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1657,"attribute_code":"size"}],"color_options":[50,57,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-1657.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1689","_score":1,"_source":{"id":1689,"sku":"WT01","name":"Bella Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

                  Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                  \n

                  • Navy blue tank top - cotton.
                  • Feminine scoop neckline.
                  • Power mesh lining in shelf bra for superior support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"bella-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"bella-tank-1689","links":{},"stock":{"item_id":1689,"product_id":1689,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT01-XS-Black","id":1674,"status":1,"name":"Bella Tank-XS-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"167","color":"49","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","url_key":"bella-tank-xs-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-XS-Blue","id":1675,"status":1,"name":"Bella Tank-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"167","color":"50","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","url_key":"bella-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-XS-Orange","id":1676,"status":1,"name":"Bella Tank-XS-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"167","color":"56","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","url_key":"bella-tank-xs-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-S-Black","id":1677,"status":1,"name":"Bella Tank-S-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"168","color":"49","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","url_key":"bella-tank-s-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-S-Blue","id":1678,"status":1,"name":"Bella Tank-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"168","color":"50","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","url_key":"bella-tank-s-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-S-Orange","id":1679,"status":1,"name":"Bella Tank-S-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"168","color":"56","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","url_key":"bella-tank-s-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-M-Black","id":1680,"status":1,"name":"Bella Tank-M-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"169","color":"49","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","url_key":"bella-tank-m-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-M-Blue","id":1681,"status":1,"name":"Bella Tank-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"169","color":"50","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","url_key":"bella-tank-m-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-M-Orange","id":1682,"status":1,"name":"Bella Tank-M-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"169","color":"56","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","url_key":"bella-tank-m-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-L-Black","id":1683,"status":1,"name":"Bella Tank-L-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"170","color":"49","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","url_key":"bella-tank-l-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-L-Blue","id":1684,"status":1,"name":"Bella Tank-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"170","color":"50","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","url_key":"bella-tank-l-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-L-Orange","id":1685,"status":1,"name":"Bella Tank-L-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"170","color":"56","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","url_key":"bella-tank-l-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-XL-Black","id":1686,"status":1,"name":"Bella Tank-XL-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"171","color":"49","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","url_key":"bella-tank-xl-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-XL-Blue","id":1687,"status":1,"name":"Bella Tank-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"171","color":"50","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","url_key":"bella-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT01-XL-Orange","id":1688,"status":1,"name":"Bella Tank-XL-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"171","color":"56","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","url_key":"bella-tank-xl-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":229,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":1689,"attribute_code":"color"},{"id":228,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1689,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-1689.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1745","_score":1,"_source":{"id":1745,"sku":"WT05-M-Purple","name":"Leah Yoga Top-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                  \n

                  • Blue heather rouched tank top.
                  • Camisole tank top.
                  • Banding and shirring details.
                  • Body hugging fit.
                  • Contrast topstitch.
                  • Interior shelf bra with shapewear technology.
                  • 65% Polyester 35% Cotton.

                  ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"leah-yoga-top-m-purple-1745","links":{},"stock":{"item_id":1745,"product_id":1745,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-m-purple-1745.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1730","_score":1,"_source":{"id":1730,"sku":"WT04-M-Red","name":"Nona Fitness Tank-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                  \n

                  • Blue/white striped mesh tank.
                  • Relaxed fit.
                  • Chafe-resistant trim around armholes and collar.
                  • Machine wash/dry.

                  ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nona-fitness-tank-m-red-1730","links":{},"stock":{"item_id":1730,"product_id":1730,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-m-red-1730.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1705","_score":1,"_source":{"id":1705,"sku":"WT02","name":"Zoe Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

                  The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                  \n

                  • Salmon heather tank top.
                  • 1\" elastic band on inner bra.
                  • Mesh lining on shelf bra for support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"zoe-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,33],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"zoe-tank-1705","links":{},"stock":{"item_id":1705,"product_id":1705,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT02-XS-Green","id":1690,"status":1,"name":"Zoe Tank-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"53","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","url_key":"zoe-tank-xs-green","msrp_display_actual_price_type":"0"},{"sku":"WT02-XS-Orange","id":1691,"status":1,"name":"Zoe Tank-XS-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"56","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","url_key":"zoe-tank-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WT02-XS-Yellow","id":1692,"status":1,"name":"Zoe Tank-XS-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"60","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","url_key":"zoe-tank-xs-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT02-S-Green","id":1693,"status":1,"name":"Zoe Tank-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"53","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","url_key":"zoe-tank-s-green","msrp_display_actual_price_type":"0"},{"sku":"WT02-S-Orange","id":1694,"status":1,"name":"Zoe Tank-S-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"56","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","url_key":"zoe-tank-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WT02-S-Yellow","id":1695,"status":1,"name":"Zoe Tank-S-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"60","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","url_key":"zoe-tank-s-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT02-M-Green","id":1696,"status":1,"name":"Zoe Tank-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"53","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","url_key":"zoe-tank-m-green","msrp_display_actual_price_type":"0"},{"sku":"WT02-M-Orange","id":1697,"status":1,"name":"Zoe Tank-M-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"56","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","url_key":"zoe-tank-m-orange","msrp_display_actual_price_type":"0"},{"sku":"WT02-M-Yellow","id":1698,"status":1,"name":"Zoe Tank-M-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"60","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","url_key":"zoe-tank-m-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT02-L-Green","id":1699,"status":1,"name":"Zoe Tank-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"53","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","url_key":"zoe-tank-l-green","msrp_display_actual_price_type":"0"},{"sku":"WT02-L-Orange","id":1700,"status":1,"name":"Zoe Tank-L-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"56","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","url_key":"zoe-tank-l-orange","msrp_display_actual_price_type":"0"},{"sku":"WT02-L-Yellow","id":1701,"status":1,"name":"Zoe Tank-L-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"60","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","url_key":"zoe-tank-l-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT02-XL-Green","id":1702,"status":1,"name":"Zoe Tank-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"53","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","url_key":"zoe-tank-xl-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT02-XL-Orange","id":1703,"status":1,"name":"Zoe Tank-XL-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"56","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","url_key":"zoe-tank-xl-orange","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WT02-XL-Yellow","id":1704,"status":1,"name":"Zoe Tank-XL-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"60","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","url_key":"zoe-tank-xl-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":231,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1705,"attribute_code":"color"},{"id":230,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1705,"attribute_code":"size"}],"color_options":[53,56,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-1705.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1750","_score":1,"_source":{"id":1750,"sku":"WT05-XL-Orange","name":"Leah Yoga Top-XL-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                  \n

                  • Blue heather rouched tank top.
                  • Camisole tank top.
                  • Banding and shirring details.
                  • Body hugging fit.
                  • Contrast topstitch.
                  • Interior shelf bra with shapewear technology.
                  • 65% Polyester 35% Cotton.

                  ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"leah-yoga-top-xl-orange-1750","links":{},"stock":{"item_id":1750,"product_id":1750,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xl-orange-1750.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1627","_score":1,"_source":{"id":1627,"sku":"WB03-XS-Red","name":"Celeste Sports Bra-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                  \n

                  • Mint bra top.
                  • Seam-free interior molded cups
                  • Odor control.
                  • UV protection.
                  • Machine wash/dry.

                  ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"celeste-sports-bra-xs-red-1627","links":{},"stock":{"item_id":1627,"product_id":1627,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xs-red-1627.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1643","_score":1,"_source":{"id":1643,"sku":"WB04-XS-Purple","name":"Prima Compete Bra Top-XS-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                  `
                  • Colorblocked details.
                  • Machine wash/line dry.

                  ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"prima-compete-bra-top-xs-purple-1643","links":{},"stock":{"item_id":1643,"product_id":1643,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xs-purple-1643.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1636","_score":1,"_source":{"id":1636,"sku":"WB03-L-Red","name":"Celeste Sports Bra-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                  \n

                  • Mint bra top.
                  • Seam-free interior molded cups
                  • Odor control.
                  • UV protection.
                  • Machine wash/dry.

                  ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"celeste-sports-bra-l-red-1636","links":{},"stock":{"item_id":1636,"product_id":1636,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-l-red-1636.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1637","_score":1,"_source":{"id":1637,"sku":"WB03-L-Yellow","name":"Celeste Sports Bra-L-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2019-04-15 12:13:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                  \r\n

                  • Mint bra top.
                  • Seam-free interior molded cups
                  • Odor control.
                  • UV protection.
                  • Machine wash/dry.

                  ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-l-yellow","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"170","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"celeste-sports-bra-l-yellow-1637","links":{},"stock":{"item_id":1637,"product_id":1637,"stock_id":1,"qty":7,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-l-yellow-1637.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1666","_score":1,"_source":{"id":1666,"sku":"WB05-M-Purple","name":"Lucia Cross-Fit Bra -M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                  \n

                  • Black/white bra top.
                  • Criss-cross back design.
                  • Machine wash/dry.

                  ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lucia-cross-fit-bra-m-purple-1666","links":{},"stock":{"item_id":1666,"product_id":1666,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-m-purple-1666.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1667","_score":1,"_source":{"id":1667,"sku":"WB05-L-Black","name":"Lucia Cross-Fit Bra -L-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                  \n

                  • Black/white bra top.
                  • Criss-cross back design.
                  • Machine wash/dry.

                  ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lucia-cross-fit-bra-l-black-1667","links":{},"stock":{"item_id":1667,"product_id":1667,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-l-black-1667.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1675","_score":1,"_source":{"id":1675,"sku":"WT01-XS-Blue","name":"Bella Tank-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                  \n

                  • Navy blue tank top - cotton.
                  • Feminine scoop neckline.
                  • Power mesh lining in shelf bra for superior support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bella-tank-xs-blue-1675","links":{},"stock":{"item_id":1675,"product_id":1675,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xs-blue-1675.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1662","_score":1,"_source":{"id":1662,"sku":"WB05-S-Orange","name":"Lucia Cross-Fit Bra -S-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                  \n

                  • Black/white bra top.
                  • Criss-cross back design.
                  • Machine wash/dry.

                  ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lucia-cross-fit-bra-s-orange-1662","links":{},"stock":{"item_id":1662,"product_id":1662,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-s-orange-1662.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1674","_score":1,"_source":{"id":1674,"sku":"WT01-XS-Black","name":"Bella Tank-XS-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                  \n

                  • Navy blue tank top - cotton.
                  • Feminine scoop neckline.
                  • Power mesh lining in shelf bra for superior support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bella-tank-xs-black-1674","links":{},"stock":{"item_id":1674,"product_id":1674,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xs-black-1674.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1707","_score":1,"_source":{"id":1707,"sku":"WT03-XS-Purple","name":"Nora Practice Tank-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                  \n

                  • Pink stripped tank with side rouching.
                  • Pre-shrunk.
                  • Garment dyed.
                  • 92% Organic Cotton/8% Lycra.

                  ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nora-practice-tank-xs-purple-1707","links":{},"stock":{"item_id":1707,"product_id":1707,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xs-purple-1707.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1744","_score":1,"_source":{"id":1744,"sku":"WT05-M-Orange","name":"Leah Yoga Top-M-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                  \n

                  • Blue heather rouched tank top.
                  • Camisole tank top.
                  • Banding and shirring details.
                  • Body hugging fit.
                  • Contrast topstitch.
                  • Interior shelf bra with shapewear technology.
                  • 65% Polyester 35% Cotton.

                  ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"leah-yoga-top-m-orange-1744","links":{},"stock":{"item_id":1744,"product_id":1744,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-m-orange-1744.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1727","_score":1,"_source":{"id":1727,"sku":"WT04-S-Red","name":"Nona Fitness Tank-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                  \n

                  • Blue/white striped mesh tank.
                  • Relaxed fit.
                  • Chafe-resistant trim around armholes and collar.
                  • Machine wash/dry.

                  ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nona-fitness-tank-s-red-1727","links":{},"stock":{"item_id":1727,"product_id":1727,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-s-red-1727.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1665","_score":1,"_source":{"id":1665,"sku":"WB05-M-Orange","name":"Lucia Cross-Fit Bra -M-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                  \n

                  • Black/white bra top.
                  • Criss-cross back design.
                  • Machine wash/dry.

                  ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lucia-cross-fit-bra-m-orange-1665","links":{},"stock":{"item_id":1665,"product_id":1665,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-m-orange-1665.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1685","_score":1,"_source":{"id":1685,"sku":"WT01-L-Orange","name":"Bella Tank-L-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                  \n

                  • Navy blue tank top - cotton.
                  • Feminine scoop neckline.
                  • Power mesh lining in shelf bra for superior support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bella-tank-l-orange-1685","links":{},"stock":{"item_id":1685,"product_id":1685,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-l-orange-1685.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1694","_score":1,"_source":{"id":1694,"sku":"WT02-S-Orange","name":"Zoe Tank-S-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                  \n

                  • Salmon heather tank top.
                  • 1\" elastic band on inner bra.
                  • Mesh lining on shelf bra for support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoe-tank-s-orange-1694","links":{},"stock":{"item_id":1694,"product_id":1694,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-s-orange-1694.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1693","_score":1,"_source":{"id":1693,"sku":"WT02-S-Green","name":"Zoe Tank-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                  \n

                  • Salmon heather tank top.
                  • 1\" elastic band on inner bra.
                  • Mesh lining on shelf bra for support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoe-tank-s-green-1693","links":{},"stock":{"item_id":1693,"product_id":1693,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-s-green-1693.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1704","_score":1,"_source":{"id":1704,"sku":"WT02-XL-Yellow","name":"Zoe Tank-XL-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                  \n

                  • Salmon heather tank top.
                  • 1\" elastic band on inner bra.
                  • Mesh lining on shelf bra for support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoe-tank-xl-yellow-1704","links":{},"stock":{"item_id":1704,"product_id":1704,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xl-yellow-1704.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1702","_score":1,"_source":{"id":1702,"sku":"WT02-XL-Green","name":"Zoe Tank-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                  \n

                  • Salmon heather tank top.
                  • 1\" elastic band on inner bra.
                  • Mesh lining on shelf bra for support.
                  • Soft, breathable fabric.
                  • Dry wick fabric to stay cool and dry.

                  ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoe-tank-xl-green-1702","links":{},"stock":{"item_id":1702,"product_id":1702,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xl-green-1702.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1706","_score":1,"_source":{"id":1706,"sku":"WT03-XS-Orange","name":"Nora Practice Tank-XS-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                  \n

                  • Pink stripped tank with side rouching.
                  • Pre-shrunk.
                  • Garment dyed.
                  • 92% Organic Cotton/8% Lycra.

                  ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nora-practice-tank-xs-orange-1706","links":{},"stock":{"item_id":1706,"product_id":1706,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xs-orange-1706.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1749","_score":1,"_source":{"id":1749,"sku":"WT05-L-White","name":"Leah Yoga Top-L-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                  \n

                  • Blue heather rouched tank top.
                  • Camisole tank top.
                  • Banding and shirring details.
                  • Body hugging fit.
                  • Contrast topstitch.
                  • Interior shelf bra with shapewear technology.
                  • 65% Polyester 35% Cotton.

                  ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"leah-yoga-top-l-white-1749","links":{},"stock":{"item_id":1749,"product_id":1749,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-l-white-1749.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1759","_score":1,"_source":{"id":1759,"sku":"WT06-S-Yellow","name":"Chloe Compete Tank-S-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                  \n

                  • Royal blue tank top - nylon/spandex.
                  • Flatlock stitching.
                  • Moisture-wicking fabric.
                  • Ergonomic seaming.
                  • Machine wash/dry.

                  ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chloe-compete-tank-s-yellow-1759","links":{},"stock":{"item_id":1759,"product_id":1759,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-s-yellow-1759.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1817","_score":1,"_source":{"id":1817,"sku":"WT09","name":"Breathe-Easy Tank","attribute_set_id":9,"price":34,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":34,"description":"

                  The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                  \n

                  • Machine wash/dry.
                  • Cocona® fabric.

                  ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"breathe-easy-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,33],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[205,209],"slug":"breathe-easy-tank-1817","links":{},"stock":{"item_id":1817,"product_id":1817,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT09-XS-Purple","id":1802,"status":1,"name":"Breathe-Easy Tank-XS-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"167","color":"57","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","url_key":"breathe-easy-tank-xs-purple","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-XS-White","id":1803,"status":1,"name":"Breathe-Easy Tank-XS-White","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"167","color":"59","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","url_key":"breathe-easy-tank-xs-white","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-XS-Yellow","id":1804,"status":1,"name":"Breathe-Easy Tank-XS-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"167","color":"60","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","url_key":"breathe-easy-tank-xs-yellow","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-S-Purple","id":1805,"status":1,"name":"Breathe-Easy Tank-S-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"168","color":"57","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","url_key":"breathe-easy-tank-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WT09-S-White","id":1806,"status":1,"name":"Breathe-Easy Tank-S-White","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"168","color":"59","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","url_key":"breathe-easy-tank-s-white","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-S-Yellow","id":1807,"status":1,"name":"Breathe-Easy Tank-S-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"168","color":"60","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","url_key":"breathe-easy-tank-s-yellow","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-M-Purple","id":1808,"status":1,"name":"Breathe-Easy Tank-M-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"169","color":"57","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","url_key":"breathe-easy-tank-m-purple","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-M-White","id":1809,"status":1,"name":"Breathe-Easy Tank-M-White","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"169","color":"59","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","url_key":"breathe-easy-tank-m-white","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-M-Yellow","id":1810,"status":1,"name":"Breathe-Easy Tank-M-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"169","color":"60","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","url_key":"breathe-easy-tank-m-yellow","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-L-Purple","id":1811,"status":1,"name":"Breathe-Easy Tank-L-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"170","color":"57","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","url_key":"breathe-easy-tank-l-purple","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-L-White","id":1812,"status":1,"name":"Breathe-Easy Tank-L-White","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"170","color":"59","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","url_key":"breathe-easy-tank-l-white","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-L-Yellow","id":1813,"status":1,"name":"Breathe-Easy Tank-L-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"170","color":"60","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","url_key":"breathe-easy-tank-l-yellow","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-XL-Purple","id":1814,"status":1,"name":"Breathe-Easy Tank-XL-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"171","color":"57","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","url_key":"breathe-easy-tank-xl-purple","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-XL-White","id":1815,"status":1,"name":"Breathe-Easy Tank-XL-White","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"171","color":"59","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","url_key":"breathe-easy-tank-xl-white","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001},{"sku":"WT09-XL-Yellow","id":1816,"status":1,"name":"Breathe-Easy Tank-XL-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"171","color":"60","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","url_key":"breathe-easy-tank-xl-yellow","msrp_display_actual_price_type":"0","final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001}],"configurable_options":[{"id":245,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":1817,"attribute_code":"color"},{"id":244,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1817,"attribute_code":"size"}],"color_options":[57,59,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-1817.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1818","_score":1,"_source":{"id":1818,"sku":"WP01-28-Black","name":"Karmen Yoga Pant-28-Black","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                  \n

                  • Light blue parachute pants.
                  • Power mesh internal waistband for support.
                  • Internal waistband pocket.
                  • Antimicrobial finish.

                  ","image":"/w/p/wp01-black_main.jpg","small_image":"/w/p/wp01-black_main.jpg","thumbnail":"/w/p/wp01-black_main.jpg","color":"49","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"karmen-yoga-pant-28-black-1818","links":{},"stock":{"item_id":1818,"product_id":1818,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-28-black-1818.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1820","_score":1,"_source":{"id":1820,"sku":"WP01-28-White","name":"Karmen Yoga Pant-28-White","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                  Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                  \n

                  • Light blue parachute pants.
                  • Power mesh internal waistband for support.
                  • Internal waistband pocket.
                  • Antimicrobial finish.

                  ","image":"/w/p/wp01-white_main.jpg","small_image":"/w/p/wp01-white_main.jpg","thumbnail":"/w/p/wp01-white_main.jpg","color":"59","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"karmen-yoga-pant-28-white-1820","links":{},"stock":{"item_id":1820,"product_id":1820,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-28-white-1820.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1809","_score":1,"_source":{"id":1809,"sku":"WT09-M-White","name":"Breathe-Easy Tank-M-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                  The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                  \n

                  • Machine wash/dry.
                  • Cocona® fabric.

                  ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"breathe-easy-tank-m-white-1809","links":{},"stock":{"item_id":1809,"product_id":1809,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-m-white-1809.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1836","_score":1,"_source":{"id":1836,"sku":"WP03-29-Blue","name":"Ida Workout Parachute Pant-29-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                  \n

                  • Royal blue parachute pants.
                  • Contrast stripe.
                  • Relaxed fit.
                  • Drawstring closure.
                  • Machine wash/dry.

                  ","image":"/w/p/wp03-blue_main.jpg","small_image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","color":"50","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ida-workout-parachute-pant-29-blue-1836","links":{},"stock":{"item_id":1836,"product_id":1836,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-29-blue-1836.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1828","_score":1,"_source":{"id":1828,"sku":"WP02-29-Blue","name":"Emma Leggings-29-Blue","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                  \n

                  • Light blue heather yoga pants.
                  • Body hugging fit.
                  • Low rise fit.

                  ","image":"/w/p/wp02-blue_main.jpg","small_image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"emma-leggings-29-blue-1828","links":{},"stock":{"item_id":1828,"product_id":1828,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp02-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-29-blue-1828.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1848","_score":1,"_source":{"id":1848,"sku":"WP05-28-Red","name":"Sahara Leggings-28-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                  Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                  \n

                  • Pinstripe legging with rouched ankles.
                  • Secret pocket at waistband.
                  • Flat seams for comfort.
                  • Shaped fit with low rise.
                  • 4-way stretch, moisture-wicking material.

                  ","image":"/w/p/wp05-red_main.jpg","small_image":"/w/p/wp05-red_main.jpg","thumbnail":"/w/p/wp05-red_main.jpg","color":"58","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sahara-leggings-28-red-1848","links":{},"stock":{"item_id":1848,"product_id":1848,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-28-red-1848.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1813","_score":1,"_source":{"id":1813,"sku":"WT09-L-Yellow","name":"Breathe-Easy Tank-L-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                  The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                  \n

                  • Machine wash/dry.
                  • Cocona® fabric.

                  ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"breathe-easy-tank-l-yellow-1813","links":{},"stock":{"item_id":1813,"product_id":1813,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-l-yellow-1813.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1815","_score":1,"_source":{"id":1815,"sku":"WT09-XL-White","name":"Breathe-Easy Tank-XL-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                  The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                  \n

                  • Machine wash/dry.
                  • Cocona® fabric.

                  ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"breathe-easy-tank-xl-white-1815","links":{},"stock":{"item_id":1815,"product_id":1815,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xl-white-1815.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1816","_score":1,"_source":{"id":1816,"sku":"WT09-XL-Yellow","name":"Breathe-Easy Tank-XL-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                  The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                  \n

                  • Machine wash/dry.
                  • Cocona® fabric.

                  ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"breathe-easy-tank-xl-yellow-1816","links":{},"stock":{"item_id":1816,"product_id":1816,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xl-yellow-1816.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1832","_score":1,"_source":{"id":1832,"sku":"WP03-28-Black","name":"Ida Workout Parachute Pant-28-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                  \n

                  • Royal blue parachute pants.
                  • Contrast stripe.
                  • Relaxed fit.
                  • Drawstring closure.
                  • Machine wash/dry.

                  ","image":"/w/p/wp03-black_main.jpg","small_image":"/w/p/wp03-black_main.jpg","thumbnail":"/w/p/wp03-black_main.jpg","color":"49","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ida-workout-parachute-pant-28-black-1832","links":{},"stock":{"item_id":1832,"product_id":1832,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-28-black-1832.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1839","_score":1,"_source":{"id":1839,"sku":"WP04-28-Black","name":"Cora Parachute Pant-28-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                  Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                  \n

                  • Light blue parachute pants.
                  • Power mesh internal waistband for support.
                  • Internal waistband pocket.
                  • Antimicrobial finish.

                  ","image":"/w/p/wp04-black_main.jpg","small_image":"/w/p/wp04-black_main.jpg","thumbnail":"/w/p/wp04-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"cora-parachute-pant-28-black-1839","links":{},"stock":{"item_id":1839,"product_id":1839,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-28-black-1839.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1857","_score":1,"_source":{"id":1857,"sku":"WP06-29-Blue","name":"Diana Tights-29-Blue","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                  \n

                  • Black legging with slate details.
                  • Flat-lock, chafe-free side seams.
                  • Vented gusset.
                  • Secret interior pocket.
                  • Sustainable and recycled fabric.

                  ","image":"/w/p/wp06-blue_main.jpg","small_image":"/w/p/wp06-blue_main.jpg","thumbnail":"/w/p/wp06-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"diana-tights-29-blue-1857","links":{},"stock":{"item_id":1857,"product_id":1857,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-29-blue-1857.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1856","_score":1,"_source":{"id":1856,"sku":"WP06-29-Black","name":"Diana Tights-29-Black","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                  Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                  \n

                  • Black legging with slate details.
                  • Flat-lock, chafe-free side seams.
                  • Vented gusset.
                  • Secret interior pocket.
                  • Sustainable and recycled fabric.

                  ","image":"/w/p/wp06-black_main.jpg","small_image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","color":"49","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"diana-tights-29-black-1856","links":{},"stock":{"item_id":1856,"product_id":1856,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_outfit.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-29-black-1856.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1888","_score":1,"_source":{"id":1888,"sku":"WP11-28-Blue","name":"Sylvia Capri-28-Blue","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                  \n

                  • Green striped capri.
                  • Strategic side seam
                  • Comfort gusset with lining.
                  • Flat seaming.
                  • Wide waistband.
                  • Moisture wicking.

                  ","image":"/w/p/wp11-blue_main.jpg","small_image":"/w/p/wp11-blue_main.jpg","thumbnail":"/w/p/wp11-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sylvia-capri-28-blue-1888","links":{},"stock":{"item_id":1888,"product_id":1888,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-28-blue-1888.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1882","_score":1,"_source":{"id":1882,"sku":"WP10-28-Gray","name":"Daria Bikram Pant-28-Gray","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                  The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                  \n

                  • Heather gray capris with pink striped waist.
                  • Flatlock seams.
                  • Interior pocket.

                  ","image":"/w/p/wp10-gray_main.jpg","small_image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","color":"52","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"daria-bikram-pant-28-gray-1882","links":{},"stock":{"item_id":1882,"product_id":1882,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-28-gray-1882.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1770","_score":1,"_source":{"id":1770,"sku":"WT07-XS-Green","name":"Maya Tunic-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                  \n

                  • Mint green heather tunic-style tank.
                  • Wrapped back with cut out detail.
                  • Drawcord detail at end.
                  • Abutted seams.

                  ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"maya-tunic-xs-green-1770","links":{},"stock":{"item_id":1770,"product_id":1770,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xs-green-1770.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1799","_score":1,"_source":{"id":1799,"sku":"WT08-XL-Purple","name":"Antonia Racer Tank-XL-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                  You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                  \n

                  • Machine wash.
                  • Line dry.

                  ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"antonia-racer-tank-xl-purple-1799","links":{},"stock":{"item_id":1799,"product_id":1799,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xl-purple-1799.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1783","_score":1,"_source":{"id":1783,"sku":"WT07-XL-White","name":"Maya Tunic-XL-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                  \n

                  • Mint green heather tunic-style tank.
                  • Wrapped back with cut out detail.
                  • Drawcord detail at end.
                  • Abutted seams.

                  ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"maya-tunic-xl-white-1783","links":{},"stock":{"item_id":1783,"product_id":1783,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xl-white-1783.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1797","_score":1,"_source":{"id":1797,"sku":"WT08-L-Yellow","name":"Antonia Racer Tank-L-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                  You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                  \n

                  • Machine wash.
                  • Line dry.

                  ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"antonia-racer-tank-l-yellow-1797","links":{},"stock":{"item_id":1797,"product_id":1797,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-l-yellow-1797.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1909","_score":1,"_source":{"id":1909,"sku":"WSH01-28-Black","name":"Fiona Fitness Short-28-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                  \n

                  • Black run shorts
                  - cotton/spandex.
                  • 5” inseam.
                  • Machine wash/Line dry.

                  ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"fiona-fitness-short-28-black-1909","links":{},"stock":{"item_id":1909,"product_id":1909,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-28-black-1909.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1920","_score":1,"_source":{"id":1920,"sku":"WSH01-31-Red","name":"Fiona Fitness Short-31-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                  \n

                  • Black run shorts
                  - cotton/spandex.
                  • 5” inseam.
                  • Machine wash/Line dry.

                  ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-31-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"fiona-fitness-short-31-red-1920","links":{},"stock":{"item_id":1920,"product_id":1920,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-31-red-1920.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1916","_score":1,"_source":{"id":1916,"sku":"WSH01-30-Green","name":"Fiona Fitness Short-30-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                  \n

                  • Black run shorts
                  - cotton/spandex.
                  • 5” inseam.
                  • Machine wash/Line dry.

                  ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-30-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"fiona-fitness-short-30-green-1916","links":{},"stock":{"item_id":1916,"product_id":1916,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-30-green-1916.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1800","_score":1,"_source":{"id":1800,"sku":"WT08-XL-Yellow","name":"Antonia Racer Tank-XL-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                  You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                  \n

                  • Machine wash.
                  • Line dry.

                  ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"antonia-racer-tank-xl-yellow-1800","links":{},"stock":{"item_id":1800,"product_id":1800,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xl-yellow-1800.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1787","_score":1,"_source":{"id":1787,"sku":"WT08-XS-Purple","name":"Antonia Racer Tank-XS-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                  You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                  \n

                  • Machine wash.
                  • Line dry.

                  ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"antonia-racer-tank-xs-purple-1787","links":{},"stock":{"item_id":1787,"product_id":1787,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xs-purple-1787.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1793","_score":1,"_source":{"id":1793,"sku":"WT08-M-Purple","name":"Antonia Racer Tank-M-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                  You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                  \n

                  • Machine wash.
                  • Line dry.

                  ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"antonia-racer-tank-m-purple-1793","links":{},"stock":{"item_id":1793,"product_id":1793,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-m-purple-1793.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1812","_score":1,"_source":{"id":1812,"sku":"WT09-L-White","name":"Breathe-Easy Tank-L-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                  The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                  \n

                  • Machine wash/dry.
                  • Cocona® fabric.

                  ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"breathe-easy-tank-l-white-1812","links":{},"stock":{"item_id":1812,"product_id":1812,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-l-white-1812.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1869","_score":1,"_source":{"id":1869,"sku":"WP08-28-Red","name":"Bardot Capri-28-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                  Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                  \n

                  • Black capris with pink waistband.
                  • Cropped leggings.
                  • Waistband drawcord.
                  • Flat, thin and flattering.
                  • Made with organic fabric.

                  ","image":"/w/p/wp08-red_main.jpg","small_image":"/w/p/wp08-red_main.jpg","thumbnail":"/w/p/wp08-red_main.jpg","color":"58","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bardot-capri-28-red-1869","links":{},"stock":{"item_id":1869,"product_id":1869,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-28-red-1869.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1940","_score":1,"_source":{"id":1940,"sku":"WSH02","name":"Maxima Drawstring Short","attribute_set_id":10,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":28,"description":"

                  Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                  \n

                  • Light gray run shorts
                  - cotton polyester.
                  • Contrast binding.
                  • 3\" inseam.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"maxima-drawstring-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_bottom":"106","pattern":"197","climate":[205,212,206,209],"slug":"maxima-drawstring-short-1940","links":{},"stock":{"item_id":1940,"product_id":1940,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH02-28-Gray","id":1925,"status":1,"name":"Maxima Drawstring Short-28-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"172","color":"52","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","url_key":"maxima-drawstring-short-28-gray","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-28-Orange","id":1926,"status":1,"name":"Maxima Drawstring Short-28-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"172","color":"56","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","url_key":"maxima-drawstring-short-28-orange","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-28-Yellow","id":1927,"status":1,"name":"Maxima Drawstring Short-28-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"172","color":"60","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","url_key":"maxima-drawstring-short-28-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-29-Gray","id":1928,"status":1,"name":"Maxima Drawstring Short-29-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"173","color":"52","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","url_key":"maxima-drawstring-short-29-gray","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-29-Orange","id":1929,"status":1,"name":"Maxima Drawstring Short-29-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"173","color":"56","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","url_key":"maxima-drawstring-short-29-orange","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-29-Yellow","id":1930,"status":1,"name":"Maxima Drawstring Short-29-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"173","color":"60","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","url_key":"maxima-drawstring-short-29-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-30-Gray","id":1931,"status":1,"name":"Maxima Drawstring Short-30-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"174","color":"52","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","url_key":"maxima-drawstring-short-30-gray","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-30-Orange","id":1932,"status":1,"name":"Maxima Drawstring Short-30-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"174","color":"56","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","url_key":"maxima-drawstring-short-30-orange","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-30-Yellow","id":1933,"status":1,"name":"Maxima Drawstring Short-30-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"174","color":"60","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","url_key":"maxima-drawstring-short-30-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-31-Gray","id":1934,"status":1,"name":"Maxima Drawstring Short-31-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"175","color":"52","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","url_key":"maxima-drawstring-short-31-gray","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-31-Orange","id":1935,"status":1,"name":"Maxima Drawstring Short-31-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"175","color":"56","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","url_key":"maxima-drawstring-short-31-orange","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-31-Yellow","id":1936,"status":1,"name":"Maxima Drawstring Short-31-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"175","color":"60","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","url_key":"maxima-drawstring-short-31-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-32-Gray","id":1937,"status":1,"name":"Maxima Drawstring Short-32-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"176","color":"52","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","url_key":"maxima-drawstring-short-32-gray","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-32-Orange","id":1938,"status":1,"name":"Maxima Drawstring Short-32-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"176","color":"56","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","url_key":"maxima-drawstring-short-32-orange","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WSH02-32-Yellow","id":1939,"status":1,"name":"Maxima Drawstring Short-32-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"176","color":"60","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","url_key":"maxima-drawstring-short-32-yellow","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001}],"configurable_options":[{"id":275,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1940,"attribute_code":"color"},{"id":274,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1940,"attribute_code":"size"}],"color_options":[52,56,60],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-1940.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2009","_score":1,"_source":{"id":2009,"sku":"WSH09-28-Gray","name":"Mimi All-Purpose Short-28-Gray","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

                  You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                  \n

                  • Gray/seafoam two-layer shorts.
                  • Water-resistant construction.
                  • Inner mesh brief for breathable support.
                  • 2.0\" inseam.
                  • Reflective trim for visibility.

                  ","image":"/w/s/wsh09-gray_main.jpg","small_image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","color":"52","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"mimi-all-purpose-short-28-gray-2009","links":{},"stock":{"item_id":2009,"product_id":2009,"stock_id":1,"qty":53,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh09-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh09-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-28-gray-2009.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2019","_score":1,"_source":{"id":2019,"sku":"WSH10-29-Black","name":"Ana Running Short-29-Black","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":49.200001,"description":"

                  Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                  \n

                  • Black/pink two-layer shorts.
                  • Low-rise elastic waistband.
                  • Relaxed fit.
                  • Ultra-lightweight fabric.
                  • Internal drawstring.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh10-black_main.jpg","small_image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","color":"49","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ana-running-short-29-black-2019","links":{},"stock":{"item_id":2019,"product_id":2019,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-29-black-2019.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2020","_score":1,"_source":{"id":2020,"sku":"WSH10-29-Orange","name":"Ana Running Short-29-Orange","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":49.200001,"description":"

                  Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                  \n

                  • Black/pink two-layer shorts.
                  • Low-rise elastic waistband.
                  • Relaxed fit.
                  • Ultra-lightweight fabric.
                  • Internal drawstring.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh10-orange_main.jpg","small_image":"/w/s/wsh10-orange_main.jpg","thumbnail":"/w/s/wsh10-orange_main.jpg","color":"56","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ana-running-short-29-orange-2020","links":{},"stock":{"item_id":2020,"product_id":2020,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-29-orange-2020.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2032","_score":1,"_source":{"id":2032,"sku":"WSH12-28-Red","name":"Erika Running Short-28-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                  \n

                  • Seafoam pattern running shorts.
                  • Elastic waistband.
                  • Snug fit.
                  • 4'' inseam.
                  • 76% premium brushed Nylon / 24% Spandex.

                  ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"erika-running-short-28-red-2032","links":{},"stock":{"item_id":2032,"product_id":2032,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-28-red-2032.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2017","_score":1,"_source":{"id":2017,"sku":"WSH10-28-Orange","name":"Ana Running Short-28-Orange","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49.200001,"max_price":49.200001,"max_regular_price":49.200001,"minimal_regular_price":49.200001,"special_price":null,"minimal_price":49.200001,"regular_price":49.200001,"description":"

                  Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                  \n

                  • Black/pink two-layer shorts.
                  • Low-rise elastic waistband.
                  • Relaxed fit.
                  • Ultra-lightweight fabric.
                  • Internal drawstring.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh10-orange_main.jpg","small_image":"/w/s/wsh10-orange_main.jpg","thumbnail":"/w/s/wsh10-orange_main.jpg","color":"56","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ana-running-short-28-orange-2017","links":{},"stock":{"item_id":2017,"product_id":2017,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-28-orange-2017.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2023","_score":1,"_source":{"id":2023,"sku":"WSH11-28-Blue","name":"Ina Compression Short-28-Blue","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                  One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                  \n

                  • Royal blue bike shorts.
                  • Compression fit.
                  • Moisture-wicking.
                  • Anti-microbial.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh11-blue_main.jpg","small_image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","color":"50","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ina-compression-short-28-blue-2023","links":{},"stock":{"item_id":2023,"product_id":2023,"stock_id":1,"qty":34,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-28-blue-2023.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1923","_score":1,"_source":{"id":1923,"sku":"WSH01-32-Red","name":"Fiona Fitness Short-32-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                  Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                  \n

                  • Black run shorts
                  - cotton/spandex.
                  • 5” inseam.
                  • Machine wash/Line dry.

                  ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"fiona-fitness-short-32-red-1923","links":{},"stock":{"item_id":1923,"product_id":1923,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-32-red-1923.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1931","_score":1,"_source":{"id":1931,"sku":"WSH02-30-Gray","name":"Maxima Drawstring Short-30-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                  \n

                  • Light gray run shorts
                  - cotton polyester.
                  • Contrast binding.
                  • 3\" inseam.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-30-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"maxima-drawstring-short-30-gray-1931","links":{},"stock":{"item_id":1931,"product_id":1931,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-30-gray-1931.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1937","_score":1,"_source":{"id":1937,"sku":"WSH02-32-Gray","name":"Maxima Drawstring Short-32-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                  \n

                  • Light gray run shorts
                  - cotton polyester.
                  • Contrast binding.
                  • 3\" inseam.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"maxima-drawstring-short-32-gray-1937","links":{},"stock":{"item_id":1937,"product_id":1937,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-32-gray-1937.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1939","_score":1,"_source":{"id":1939,"sku":"WSH02-32-Yellow","name":"Maxima Drawstring Short-32-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                  Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                  \n

                  • Light gray run shorts
                  - cotton polyester.
                  • Contrast binding.
                  • 3\" inseam.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-32-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"maxima-drawstring-short-32-yellow-1939","links":{},"stock":{"item_id":1939,"product_id":1939,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-32-yellow-1939.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1947","_score":1,"_source":{"id":1947,"sku":"WSH03-30-Blue","name":"Gwen Drawstring Bike Short-30-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

                  For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                  \n

                  • Dark heather gray rouched bike shorts.
                  • Fitted. Inseam: 2\".
                  • Machine wash/dry.

                  ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-30-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"gwen-drawstring-bike-short-30-blue-1947","links":{},"stock":{"item_id":1947,"product_id":1947,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-30-blue-1947.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1953","_score":1,"_source":{"id":1953,"sku":"WSH03-32-Blue","name":"Gwen Drawstring Bike Short-32-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

                  For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                  \n

                  • Dark heather gray rouched bike shorts.
                  • Fitted. Inseam: 2\".
                  • Machine wash/dry.

                  ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"gwen-drawstring-bike-short-32-blue-1953","links":{},"stock":{"item_id":1953,"product_id":1953,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-32-blue-1953.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1958","_score":1,"_source":{"id":1958,"sku":"WSH04-28-Green","name":"Artemis Running Short-28-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                  \n

                  • Black rouched shorts with mint waist.
                  • Soft, lightweight construction.
                  • LumaTech™ wicking technology.
                  • Semi-fitted.

                  ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"artemis-running-short-28-green-1958","links":{},"stock":{"item_id":1958,"product_id":1958,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-28-green-1958.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1965","_score":1,"_source":{"id":1965,"sku":"WSH04-30-Orange","name":"Artemis Running Short-30-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                  \n

                  • Black rouched shorts with mint waist.
                  • Soft, lightweight construction.
                  • LumaTech™ wicking technology.
                  • Semi-fitted.

                  ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-30-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"artemis-running-short-30-orange-1965","links":{},"stock":{"item_id":1965,"product_id":1965,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-30-orange-1965.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1960","_score":1,"_source":{"id":1960,"sku":"WSH04-29-Black","name":"Artemis Running Short-29-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                  \n

                  • Black rouched shorts with mint waist.
                  • Soft, lightweight construction.
                  • LumaTech™ wicking technology.
                  • Semi-fitted.

                  ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"artemis-running-short-29-black-1960","links":{},"stock":{"item_id":1960,"product_id":1960,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-29-black-1960.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2030","_score":1,"_source":{"id":2030,"sku":"WSH12-28-Green","name":"Erika Running Short-28-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                  \n

                  • Seafoam pattern running shorts.
                  • Elastic waistband.
                  • Snug fit.
                  • 4'' inseam.
                  • 76% premium brushed Nylon / 24% Spandex.

                  ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"erika-running-short-28-green-2030","links":{},"stock":{"item_id":2030,"product_id":2030,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-28-green-2030.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2033","_score":1,"_source":{"id":2033,"sku":"WSH12-29-Green","name":"Erika Running Short-29-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                  \n

                  • Seafoam pattern running shorts.
                  • Elastic waistband.
                  • Snug fit.
                  • 4'' inseam.
                  • 76% premium brushed Nylon / 24% Spandex.

                  ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"erika-running-short-29-green-2033","links":{},"stock":{"item_id":2033,"product_id":2033,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-29-green-2033.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2040","_score":1,"_source":{"id":2040,"sku":"WSH12-31-Purple","name":"Erika Running Short-31-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                  \n

                  • Seafoam pattern running shorts.
                  • Elastic waistband.
                  • Snug fit.
                  • 4'' inseam.
                  • 76% premium brushed Nylon / 24% Spandex.

                  ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-31-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"erika-running-short-31-purple-2040","links":{},"stock":{"item_id":2040,"product_id":2040,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-31-purple-2040.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2042","_score":1,"_source":{"id":2042,"sku":"WSH12-32-Green","name":"Erika Running Short-32-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                  \n

                  • Seafoam pattern running shorts.
                  • Elastic waistband.
                  • Snug fit.
                  • 4'' inseam.
                  • 76% premium brushed Nylon / 24% Spandex.

                  ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"erika-running-short-32-green-2042","links":{},"stock":{"item_id":2042,"product_id":2042,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-32-green-2042.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1952","_score":1,"_source":{"id":1952,"sku":"WSH03-31-Orange","name":"Gwen Drawstring Bike Short-31-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

                  For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                  \n

                  • Dark heather gray rouched bike shorts.
                  • Fitted. Inseam: 2\".
                  • Machine wash/dry.

                  ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-31-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"gwen-drawstring-bike-short-31-orange-1952","links":{},"stock":{"item_id":1952,"product_id":1952,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-31-orange-1952.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1966","_score":1,"_source":{"id":1966,"sku":"WSH04-31-Black","name":"Artemis Running Short-31-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                  \n

                  • Black rouched shorts with mint waist.
                  • Soft, lightweight construction.
                  • LumaTech™ wicking technology.
                  • Semi-fitted.

                  ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-31-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"artemis-running-short-31-black-1966","links":{},"stock":{"item_id":1966,"product_id":1966,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-31-black-1966.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1994","_score":1,"_source":{"id":1994,"sku":"WSH06-29-Purple","name":"Angel Light Running Short-29-Purple","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                  The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                  \n

                  • Dark heather gray running shorts.
                  • Snug fit.
                  • Elastic waistband.
                  • Cocona® performance fabric.
                  • Machine wash/dry.

                  ","image":"/w/s/wsh06-purple_main.jpg","small_image":"/w/s/wsh06-purple_main.jpg","thumbnail":"/w/s/wsh06-purple_main.jpg","color":"57","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"angel-light-running-short-29-purple-1994","links":{},"stock":{"item_id":1994,"product_id":1994,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-29-purple-1994.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1998","_score":1,"_source":{"id":1998,"sku":"WSH07-28-Purple","name":"Echo Fit Compression Short-28-Purple","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                  Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                  \n

                  • Black compression shorts.
                  • High-waisted cut.
                  • Compression fit.
                  • Inseam: 1.0\".
                  • Machine wash/dry.

                  ","image":"/w/s/wsh07-purple_main.jpg","small_image":"/w/s/wsh07-purple_main.jpg","thumbnail":"/w/s/wsh07-purple_main.jpg","color":"57","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"echo-fit-compression-short-28-purple-1998","links":{},"stock":{"item_id":1998,"product_id":1998,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-28-purple-1998.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2007","_score":1,"_source":{"id":2007,"sku":"WSH08-32-Purple","name":"Sybil Running Short-32-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

                  Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

                  \n

                  • Blue running shorts with green waist.
                  • Drawstring-adjustable waist.
                  • 4\" inseam. Machine wash/line dry.

                  ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"sybil-running-short-32-purple-2007","links":{},"stock":{"item_id":2007,"product_id":2007,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-32-purple-2007.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1969","_score":1,"_source":{"id":1969,"sku":"WSH04-32-Black","name":"Artemis Running Short-32-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                  \n

                  • Black rouched shorts with mint waist.
                  • Soft, lightweight construction.
                  • LumaTech™ wicking technology.
                  • Semi-fitted.

                  ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"artemis-running-short-32-black-1969","links":{},"stock":{"item_id":1969,"product_id":1969,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-32-black-1969.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2008","_score":1,"_source":{"id":2008,"sku":"WSH08","name":"Sybil Running Short","attribute_set_id":10,"price":44,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":44,"description":"

                  Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

                  \n

                  • Blue running shorts with green waist.
                  • Drawstring-adjustable waist.
                  • 4\" inseam. Machine wash/line dry.

                  ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sybil-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,33,36],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"106","pattern":"198","climate":[205,212],"slug":"sybil-running-short-2008","links":{},"stock":{"item_id":2008,"product_id":2008,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH08-28-Purple","id":2003,"status":1,"name":"Sybil Running Short-28-Purple","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","35","2"],"size":"172","color":"57","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","url_key":"sybil-running-short-28-purple","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"WSH08-29-Purple","id":2004,"status":1,"name":"Sybil Running Short-29-Purple","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","35","2"],"size":"173","color":"57","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","url_key":"sybil-running-short-29-purple","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"WSH08-30-Purple","id":2005,"status":1,"name":"Sybil Running Short-30-Purple","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","35","2"],"size":"174","color":"57","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","url_key":"sybil-running-short-30-purple","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001},{"sku":"WSH08-31-Purple","id":2006,"status":1,"name":"Sybil Running Short-31-Purple","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","35","2"],"size":"175","color":"57","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","url_key":"sybil-running-short-31-purple","msrp_display_actual_price_type":"0"},{"sku":"WSH08-32-Purple","id":2007,"status":1,"name":"Sybil Running Short-32-Purple","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","35","2"],"size":"176","color":"57","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","url_key":"sybil-running-short-32-purple","msrp_display_actual_price_type":"0","final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001}],"configurable_options":[{"id":287,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":57,"label":"Purple"}],"product_id":2008,"attribute_code":"color"},{"id":286,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":2008,"attribute_code":"size"}],"color_options":[57],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-2008.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2044","_score":1,"_source":{"id":2044,"sku":"WSH12-32-Red","name":"Erika Running Short-32-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                  A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                  \n

                  • Seafoam pattern running shorts.
                  • Elastic waistband.
                  • Snug fit.
                  • 4'' inseam.
                  • 76% premium brushed Nylon / 24% Spandex.

                  ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"erika-running-short-32-red-2044","links":{},"stock":{"item_id":2044,"product_id":2044,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-32-red-2044.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"11","_score":1,"_source":{"id":11,"sku":"24-WB06","name":"Endeavor Daytrip Backpack","attribute_set_id":15,"price":33,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:25","updated_at":"2017-11-06 12:16:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":40.590001,"max_price":40.590001,"max_regular_price":40.590001,"minimal_regular_price":40.590001,"special_price":"33.0000","minimal_price":40.590001,"regular_price":40.590001,"description":"

                  With more room than it appears, the Endeavor Daytrip Backpack will hold a whole day's worth of books, binders and gym clothes. The spacious main compartment includes a dedicated laptop sleeve. Two other compartments offer extra storage space.

                  \n
                    \n
                  • Foam-padded adjustable shoulder straps.
                  • \n
                  • 900D polyester.
                  • \n
                  • Oversized zippers.
                  • \n
                  • Locker loop.
                  • \n
                  ","special_from_date":"2017-11-06 12:16:25","image":"/w/b/wb06-red-0.jpg","small_image":"/w/b/wb06-red-0.jpg","thumbnail":"/w/b/wb06-red-0.jpg","category_ids":[3,7,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"endeavor-daytrip-backpack","tax_class_id":"2","activity":[11,18,20,23],"style_bags":[24,28],"material":[36,37,38],"strap_bags":[61,64,65],"features_bags":[72,75,77,78,79],"erin_recommends":"1","sale":"1","slug":"endeavor-daytrip-backpack-11","links":{},"stock":{"item_id":11,"product_id":11,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb06-red-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null},{"image":"/w/b/wb06-red-0_alt1.jpg","pos":2,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/equipaggiamento-3/endeavor-daytrip-backpack-11.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"17","_score":1,"_source":{"id":17,"sku":"24-UG04","name":"Zing Jump Rope","attribute_set_id":11,"price":12,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2017-11-06 12:16:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":14.760001,"max_price":14.760001,"max_regular_price":14.760001,"minimal_regular_price":14.760001,"special_price":null,"minimal_price":14.760001,"regular_price":14.760001,"description":"

                  One of the world's simplest and most portable exercise devices, a jump rope enables endless variations and fitness output. The Zing Jump Rope goes anywhere and can be used any time. It is adjustable in length and has contoured foam handles for a great grip.

                  \n
                    \n
                  • Contoured foam handles.\n
                  • Adjustable length.\n
                  ","image":"/u/g/ug04-bk-0.jpg","small_image":"/u/g/ug04-bk-0.jpg","thumbnail":"/u/g/ug04-bk-0.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zing-jump-rope","tax_class_id":"2","activity":"11","material":[35,44],"gender":[80,81,84],"category_gear":[85,87],"slug":"zing-jump-rope-17","links":{},"stock":{"item_id":17,"product_id":17,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/u/g/ug04-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/zing-jump-rope-17.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"37","_score":1,"_source":{"id":37,"sku":"24-MG01","name":"Endurance Watch","attribute_set_id":11,"price":49,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                  It's easy to track and monitor your training progress with the Endurance Watch. You'll see standard info like time, date and day of the week, but it also functions for the serious high-mileage athete: lap counter, stopwatch, distance, heart rate, speed/pace, cadence and altitude.

                  \n
                    \n
                  • Digital display.
                  • \n
                  • LED backlight.
                  • \n
                  • Strap fits 7\" to 10\".
                  • \n
                  • 1-year limited warranty.
                  • \n
                  • Comes with polished metal case.
                  • \n
                  ","image":"/m/g/mg01-bk-0.jpg","small_image":"/m/g/mg01-bk-0.jpg","thumbnail":"/m/g/mg01-bk-0.jpg","category_ids":[3,6],"options_container":"container2","required_options":"0","has_options":"0","url_key":"endurance-watch","tax_class_id":"2","activity":[9,16],"material":[43,45,48],"gender":"80","category_gear":[86,87,90],"slug":"endurance-watch-37","links":{},"stock":{"item_id":37,"product_id":37,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/g/mg01-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"}],"url_path":"gear/equipaggiamento-3/endurance-watch-37.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"3","_score":1,"_source":{"id":3,"sku":"24-MB03","name":"Crown Summit Backpack","attribute_set_id":15,"price":32,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:22","updated_at":"2018-06-01 21:47:54","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                  The Crown Summit Backpack is equally at home in a gym locker, study cube or a pup tent, so be sure yours is packed with books, a bag lunch, water bottles, yoga block, laptop, or whatever else you want in hand. Rugged enough for day hikes and camping trips, it has two large zippered compartments and padded, adjustable shoulder straps.

                  \r\n
                    \r\n
                  • Top handle.
                  • \r\n
                  • Grommet holes.
                  • \r\n
                  • Two-way zippers.
                  • \r\n
                  • H 20\" x W 14\" x D 13\".
                  • \r\n
                  • Weight: 2 lbs, 8 oz. Volume: 29 L.
                  • \r\n
                      \r\n
                    ","image":"/m/b/mb03-black-0.jpg","small_image":"/m/b/mb03-black-0.jpg","thumbnail":"/m/b/mb03-black-0.jpg","color":"49","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"crown-summit-backpack","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[11,18,19,20,21,22,23],"style_bags":"24","material":[37,38],"strap_bags":[61,64,65],"features_bags":[72,74,75,77,78],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"crown-summit-backpack-3","links":{},"stock":{"item_id":3,"product_id":3,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/b/mb03-black-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null},{"image":"/m/b/mb03-black-0_alt1.jpg","pos":2,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/equipaggiamento-3/crown-summit-backpack-3.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"50","_score":1,"_source":{"id":50,"sku":"240-LV08","name":"Advanced Pilates & Yoga (Strength)","attribute_set_id":14,"price":18,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:34","updated_at":"2017-11-06 12:16:34","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

                    Advanced Pilates & Yoga will help you to increase your flexibility and tone core muscle groups through an invigorating workout for your whole body. The Pilates workout is a thorough strength-conditioning session that boosts flexibility, endurance and posture. The Yoga workout incorporates legacy and new poses into one continuous routine that will leave you feeling exhausted and fulfilled at once.

                    \n
                      \n
                    • Pilates-Yoga fusion.
                    • \n
                    • Breathing warmup and cooldown.
                    • \n
                    • Hour-long session.
                    • \n
                    • High-definition video.
                    • \n
                        ","short_description":"

                        \nNo equipment needed. Advanced Pilates & Yoga (Strength) is a muscle-defining program that employs balance, cardio and flexibility movements with plyometric and body-weight based exercises for an all-around, physically challenging workout. The Pilates elements of this compilation bring gentle resistance principals into the routines, emphasizing safety, technique and range of motion.\n

                        ","image":"/l/t/lt05.jpg","small_image":"/l/t/lt05.jpg","thumbnail":"/l/t/lt05.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"advanced-pilates-yoga-strength","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","tax_class_id":"2","activity":[8,16,11],"format":"102","slug":"advanced-pilates-and-yoga-strength-50","links":{},"stock":{"item_id":50,"product_id":50,"stock_id":1,"qty":null,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/t/lt05.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":9,"name":"Training","slug":"training-9","path":"training/training-9"},{"category_id":10,"name":"Video Download","slug":"video-download-10","path":"training/training-video/video-download-10"}],"url_path":"training/training-9/advanced-pilates-and-yoga-strength-50.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"23","_score":1,"_source":{"id":23,"sku":"24-UG03","name":"Harmony Lumaflex™ Strength Band Kit ","attribute_set_id":11,"price":22,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

                        Forget fancy machines and costly memberships - the Harmony Lumaflex™ Stength Band Kit is all you need for an amazing workout. The kit has everything you need for a range of strengthening and toning exercises.

                        \n
                          \n
                        • Three flex bands.
                        • \n
                        • Textured, ergonomic grips.
                        • \n
                        • Adjustable lengths.
                        • \n
                        • Mesh carry bag included.
                        • \n
                        ","image":"/u/g/ug03-bk-0.jpg","small_image":"/u/g/ug03-bk-0.jpg","thumbnail":"/u/g/ug03-bk-0.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"harmony-lumaflex-trade-strength-band-kit","tax_class_id":"2","activity":"11","material":[35,44,45],"gender":[80,81,84],"category_gear":"87","slug":"harmony-lumaflex-and-trade-strength-band-kit-23","links":{},"stock":{"item_id":23,"product_id":23,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/u/g/ug03-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/harmony-lumaflex-and-trade-strength-band-kit-23.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"31","_score":1,"_source":{"id":31,"sku":"24-WG083-pink","name":"Sprite Stasis Ball 75 cm","attribute_set_id":12,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                        The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                        \n
                          \n
                        • 75 cm plastic shell.
                        • \n
                        • Durable, burst-resistant design.
                        • \n
                        • Hand pump included.
                        • \n
                        ","image":"/l/u/luma-stability-ball-pink.jpg","small_image":"/l/u/luma-stability-ball-pink.jpg","thumbnail":"/l/u/luma-stability-ball-pink.jpg","color":"58","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-75-cm-pink","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"93","slug":"sprite-stasis-ball-75-cm-31","links":{},"stock":{"item_id":31,"product_id":31,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball-pink.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-stasis-ball-75-cm-31.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"47","_score":1,"_source":{"id":47,"sku":"240-LV05","name":"LifeLong Fitness IV","attribute_set_id":14,"price":14,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:33","updated_at":"2017-11-06 12:16:33","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":17.220001,"max_price":17.220001,"max_regular_price":17.220001,"minimal_regular_price":17.220001,"special_price":null,"minimal_price":17.220001,"regular_price":17.220001,"description":"

                        Luma LifeLong Fitness Series is a world recognized, evidence based exercise program designed specifically for individuals focused on staying active their whole lives. If followed regularly, participants will see improved heart rate and blood pressure, increased mobility, reduced joint pain and overall improvement in functional fitness and health.\n

                          \n
                        • 10 minute warm up.
                        • \n
                        • 30 minutes of mild aerobics.
                        • \n
                        • 20 minutes of strength, stretch and balance.
                        • \n
                        • Extensive modifications for varying fitness levels.
                        • \n
                        ","short_description":"

                        \nThe instructors and routines featured in LifeLong Fitness IV provide safe options to serve all types of physical conditions and abilities. Range of motion, body awareness and breathing practices are essential tools of yogic self-care, essential for maintaining alertness, health, and dignity over a lifetime. The LifeLong Fitness series acknowledges that as we age, the safety and sustainability of our exercise become as important as pushing our limits.\n

                        ","image":"/l/t/lt02.jpg","small_image":"/l/t/lt02.jpg","thumbnail":"/l/t/lt02.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lifelong-fitness-iv","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","tax_class_id":"2","activity":[16,17,5,11],"format":"102","slug":"lifelong-fitness-iv-47","links":{},"stock":{"item_id":47,"product_id":47,"stock_id":1,"qty":null,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/t/lt02.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":9,"name":"Training","slug":"training-9","path":"training/training-9"},{"category_id":10,"name":"Video Download","slug":"video-download-10","path":"training/training-video/video-download-10"}],"url_path":"training/training-9/lifelong-fitness-iv-47.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"45","_score":1,"_source":{"id":45,"sku":"24-WG080","name":"Sprite Yoga Companion Kit","attribute_set_id":11,"price":0,"status":1,"visibility":4,"type_id":"bundle","created_at":"2017-11-06 12:16:31","updated_at":"2017-11-06 12:16:31","weight":0,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                        A well-rounded yoga workout takes more than a mat. The Sprite Yoga Companion Kit helps stock your studio with the basics you need for a full-range workout. The kit is composed of four best-selling Luma Sprite accessories in one easy bundle: statis ball, foam block, yoga strap, and foam roller. Choose sizes and colors and leave the rest to us. The kit includes:

                        \n
                          \n
                        • Sprite Statis Ball\n
                        • Sprite Foam Yoga Brick\n
                        • Sprite Yoga Strap\n
                        • Sprite Foam Roller\n
                        ","image":"/l/u/luma-yoga-kit-2.jpg","small_image":"/l/u/luma-yoga-kit-2.jpg","thumbnail":"/l/u/luma-yoga-kit-2.jpg","category_ids":[3,5],"options_container":"container2","required_options":"1","has_options":"1","url_key":"sprite-yoga-companion-kit","price_type":"0","sku_type":"0","weight_type":"0","price_view":"0","shipment_type":"0","tax_class_id":"2","activity":[8,11],"gender":[80,81,84],"category_gear":"87","slug":"sprite-yoga-companion-kit-45","links":{},"stock":{"item_id":45,"product_id":45,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-yoga-kit-2.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"bundle_options":[{"option_id":1,"title":"Sprite Stasis Ball","required":true,"type":"radio","position":1,"sku":"24-WG080","product_links":[{"id":"1","sku":"24-WG081-blue","option_id":1,"qty":1,"position":1,"is_default":true,"price":null,"price_type":null,"can_change_quantity":1},{"id":"2","sku":"24-WG082-blue","option_id":1,"qty":1,"position":2,"is_default":false,"price":null,"price_type":null,"can_change_quantity":1},{"id":"3","sku":"24-WG083-blue","option_id":1,"qty":1,"position":3,"is_default":false,"price":null,"price_type":null,"can_change_quantity":1}]},{"option_id":2,"title":"Sprite Foam Yoga Brick","required":true,"type":"radio","position":2,"sku":"24-WG080","product_links":[{"id":"4","sku":"24-WG084","option_id":2,"qty":1,"position":1,"is_default":true,"price":null,"price_type":null,"can_change_quantity":1}]},{"option_id":3,"title":"Sprite Yoga Strap","required":true,"type":"radio","position":3,"sku":"24-WG080","product_links":[{"id":"5","sku":"24-WG085","option_id":3,"qty":1,"position":1,"is_default":true,"price":null,"price_type":null,"can_change_quantity":1},{"id":"6","sku":"24-WG086","option_id":3,"qty":1,"position":2,"is_default":false,"price":null,"price_type":null,"can_change_quantity":1},{"id":"7","sku":"24-WG087","option_id":3,"qty":1,"position":3,"is_default":false,"price":null,"price_type":null,"can_change_quantity":1}]},{"option_id":4,"title":"Sprite Foam Roller","required":true,"type":"radio","position":4,"sku":"24-WG080","product_links":[{"id":"8","sku":"24-WG088","option_id":4,"qty":1,"position":1,"is_default":true,"price":null,"price_type":null,"can_change_quantity":1}]}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-yoga-companion-kit-45.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"63","_score":1,"_source":{"id":63,"sku":"MH01-L-Orange","name":"Chaz Kangeroo Hoodie-L-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                        Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                        \n

                        • Two-tone gray heather hoodie.
                        • Drawstring-adjustable hood.
                        • Machine wash/dry.

                        ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chaz-kangeroo-hoodie-l-orange-63","links":{},"stock":{"item_id":63,"product_id":63,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-l-orange-63.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"61","_score":1,"_source":{"id":61,"sku":"MH01-L-Black","name":"Chaz Kangeroo Hoodie-L-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                        Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                        \n

                        • Two-tone gray heather hoodie.
                        • Drawstring-adjustable hood.
                        • Machine wash/dry.

                        ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chaz-kangeroo-hoodie-l-black-61","links":{},"stock":{"item_id":61,"product_id":61,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-l-black-61.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"56","_score":1,"_source":{"id":56,"sku":"MH01-S-Gray","name":"Chaz Kangeroo Hoodie-S-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                        Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                        \n

                        • Two-tone gray heather hoodie.
                        • Drawstring-adjustable hood.
                        • Machine wash/dry.

                        ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chaz-kangeroo-hoodie-s-gray-56","links":{},"stock":{"item_id":56,"product_id":56,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-s-gray-56.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"64","_score":1,"_source":{"id":64,"sku":"MH01-XL-Black","name":"Chaz Kangeroo Hoodie-XL-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                        Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                        \n

                        • Two-tone gray heather hoodie.
                        • Drawstring-adjustable hood.
                        • Machine wash/dry.

                        ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chaz-kangeroo-hoodie-xl-black-64","links":{},"stock":{"item_id":64,"product_id":64,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xl-black-64.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"69","_score":1,"_source":{"id":69,"sku":"MH02-XS-Purple","name":"Teton Pullover Hoodie-XS-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

                        This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                        \n

                        • Black pullover hoodie.
                        • Soft, brushed interior.
                        • Front hand pockets.
                        • Machine wash/dry.

                        ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"teton-pullover-hoodie-xs-purple-69","links":{},"stock":{"item_id":69,"product_id":69,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xs-purple-69.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"53","_score":1,"_source":{"id":53,"sku":"MH01-XS-Gray","name":"Chaz Kangeroo Hoodie-XS-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                        Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                        \n

                        • Two-tone gray heather hoodie.
                        • Drawstring-adjustable hood.
                        • Machine wash/dry.

                        ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chaz-kangeroo-hoodie-xs-gray-53","links":{},"stock":{"item_id":53,"product_id":53,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xs-gray-53.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"3","_score":1,"_source":{"id":3,"parent_id":2,"name":"Equipaggiamento","is_active":true,"position":4,"level":2,"product_count":46,"children_data":[{"id":4,"parent_id":3,"name":"Bags","is_active":true,"position":1,"level":3,"product_count":14,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/4","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bags-4","url_path":"gear/bags/bags-4","slug":"bags-4"},{"id":5,"parent_id":3,"name":"Fitness Equipment","is_active":true,"position":2,"level":3,"product_count":23,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/5","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"fitness-equipment-5","url_path":"gear/fitness-equipment/fitness-equipment-5","slug":"fitness-equipment-5"},{"id":6,"parent_id":3,"name":"Watches","is_active":true,"position":3,"level":3,"product_count":9,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/6","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"watches-6","url_path":"gear/watches/watches-6","slug":"watches-6"}],"children":"4,5,6","created_at":"2017-11-06 12:16:19","updated_at":"2018-05-27 14:06:53","path":"1/2/3","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"3","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"equipaggiamento-3","url_path":"gear/equipaggiamento-3","slug":"equipaggiamento-3","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"11","_score":1,"_source":{"id":11,"parent_id":2,"name":"Signori","is_active":true,"position":3,"level":2,"product_count":0,"children_data":[{"id":12,"parent_id":11,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"id":14,"parent_id":12,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":176,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:10:23","path":"1/2/11/12/14","available_sort_by":[],"include_in_menu":true,"description":"

                        Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum dui sapien, bibendum ac luctus sed, lobortis id lacus. Nulla nisi augue, accumsan id sapien maximus, hendrerit vehicula elit.

                        ","display_mode":"PRODUCTS","is_anchor":"1","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"jackets-14","url_path":"men/tops-men/jackets-men/jackets-14","slug":"jackets-14"},{"id":15,"parent_id":12,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":208,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/15","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-15","url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","slug":"hoodies-and-sweatshirts-15"},{"id":16,"parent_id":12,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/16","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-16","url_path":"men/tops-men/tees-men/tees-16","slug":"tees-16"},{"id":17,"parent_id":12,"name":"Tanks","is_active":true,"position":4,"level":4,"product_count":102,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/17","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tanks-17","url_path":"men/tops-men/tanks-men/tanks-17","slug":"tanks-17"}],"children":"14,15,16,17","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"4","url_key":"tops-12","url_path":"men/tops-men/tops-12","slug":"tops-12"},{"id":13,"parent_id":11,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"id":18,"parent_id":13,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":156,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/18","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-18","url_path":"men/bottoms-men/pants-men/pants-18","slug":"pants-18"},{"id":19,"parent_id":13,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":148,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/19","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-19","url_path":"men/bottoms-men/shorts-men/shorts-19","slug":"shorts-19"}],"children":"18,19","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-13","url_path":"men/bottoms-men/bottoms-13","slug":"bottoms-13"}],"children":"12,13","created_at":"2017-11-06 12:16:39","updated_at":"2018-05-27 14:06:07","path":"1/2/11","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"8","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"signori-11","url_path":"men/signori-11","slug":"signori-11","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"31","_score":1,"_source":{"id":31,"parent_id":29,"name":"Men Sale","is_active":true,"position":2,"level":3,"product_count":39,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/31","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"men-sale-31","url_path":"promotions/men-sale/men-sale-31","slug":"men-sale-31","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"74","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"1","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":74,"attribute_code":"sku","frontend_input":"text","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"SKU","frontend_labels":null,"backend_type":"static","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Sku","is_unique":"1","frontend_class":"validate-length maximum-length-64","validation_rules":[],"id":74,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"76","_score":1,"_source":{"is_wysiwyg_enabled":true,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"1","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":76,"attribute_code":"short_description","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Short Description","frontend_labels":null,"backend_type":"text","is_unique":"0","validation_rules":[],"id":76,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"75","_score":1,"_source":{"is_wysiwyg_enabled":true,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"1","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":75,"attribute_code":"description","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Description","frontend_labels":null,"backend_type":"text","is_unique":"0","validation_rules":[],"id":75,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"83","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple"],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"1","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":83,"attribute_code":"manufacturer","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""}],"is_user_defined":true,"default_frontend_label":"Manufacturer","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","is_unique":"0","validation_rules":[],"id":83,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"90","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":90,"attribute_code":"media_gallery","frontend_input":"gallery","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Media Gallery","frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":90,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"91","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":91,"attribute_code":"old_id","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"int","is_unique":"0","validation_rules":[],"id":91,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"102","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":102,"attribute_code":"custom_design_to","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Active To","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime","is_unique":"0","validation_rules":[],"id":102,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"122","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","downloadable","bundle","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":122,"attribute_code":"msrp_display_actual_price_type","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Use config","value":"0"},{"label":"On Gesture","value":"1"},{"label":"In Cart","value":"2"},{"label":"Before Order Confirmation","value":"3"}],"is_user_defined":false,"default_frontend_label":"Display Actual Price","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Boolean","source_model":"Magento\\Msrp\\Model\\Product\\Attribute\\Source\\Type\\Price","default_value":"0","is_unique":"0","validation_rules":[],"id":122,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"133","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":133,"attribute_code":"swatch_image","frontend_input":"media_image","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Swatch","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":133,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"141","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":141,"attribute_code":"category_gear","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Cardio","value":"85"},{"label":"Electronic","value":"86"},{"label":"Exercise","value":"87"},{"label":"Fashion","value":"88"},{"label":"Hydration","value":"89"},{"label":"Timepiece","value":"90"}],"is_user_defined":true,"default_frontend_label":"Category Gear","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":141,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"148","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":148,"attribute_code":"format","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Download","value":"102"},{"label":"DVD","value":"103"}],"is_user_defined":true,"default_frontend_label":"Format","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":148,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"151","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":151,"attribute_code":"sleeve","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Sleeve","value":"161"},{"label":"Long-Sleeve","value":"162"},{"label":"Short-Sleeve","value":"163"},{"label":"Sleeveless","value":"164"},{"label":"Tank","value":"165"},{"label":"Strap","value":"166"}],"is_user_defined":true,"default_frontend_label":"Sleeve","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":151,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"152","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":152,"attribute_code":"collar","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"N/A","value":"181"},{"label":"? zip","value":"182"},{"label":"Boat Neck","value":"183"},{"label":"Crew","value":"184"},{"label":"Full zip","value":"185"},{"label":"V-neck","value":"186"},{"label":"Ballet","value":"187"},{"label":"Scoop","value":"188"},{"label":"High Collar","value":"189"},{"label":"Stand Collar","value":"190"},{"label":"Roll Neck","value":"191"},{"label":"Square Neck","value":"192"}],"is_user_defined":true,"default_frontend_label":"Collar","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":152,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"154","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":154,"attribute_code":"climate","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"All-Weather","value":"202"},{"label":"Cold","value":"203"},{"label":"Cool","value":"204"},{"label":"Indoor","value":"205"},{"label":"Mild","value":"206"},{"label":"Rainy","value":"207"},{"label":"Spring","value":"208"},{"label":"Warm","value":"209"},{"label":"Windy","value":"210"},{"label":"Wintry","value":"211"},{"label":"Hot","value":"212"}],"is_user_defined":true,"default_frontend_label":"Climate","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":154,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"attribute","_id":"153","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":153,"attribute_code":"pattern","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Color-Blocked","value":"193"},{"label":"Checked","value":"194"},{"label":"Color-Blocked","value":"195"},{"label":"Graphic Print","value":"196"},{"label":"Solid","value":"197"},{"label":"Solid-Highlight","value":"198"},{"label":"Striped","value":"199"},{"label":"Camo","value":"200"},{"label":"Geometric","value":"201"}],"is_user_defined":true,"default_frontend_label":"Pattern","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":153,"tsk":1556377198727}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"cms_block","_id":"3","_score":1,"_source":{"store_id":[0],"id":3,"identifier":"sale-left-menu-block","title":"Sale Left Menu Block","content":"
                        Women's Deals\n\n\nMens's Deals\n\n\nGear Deals\n\n
                        ","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556377179572}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"cms_block","_id":"11","_score":1,"_source":{"store_id":[0],"id":11,"identifier":"gear-block","title":"Gear Block","content":"\n
                        \n

                        Hot Sellers

                        \n

                        Favorites from Luma shoppers

                        \n
                        \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556377179572}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"cms_block","_id":"17","_score":1,"_source":{"store_id":[0],"id":17,"identifier":"giftcard-block","title":"Giftcard Block","content":"","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1556377179572}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"37","_score":1,"_source":{"id":37,"parent_id":2,"name":"Sale","is_active":false,"position":6,"level":2,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2018-05-27 14:04:10","path":"1/2/37","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"sale-37","url_path":"sale/sale-37","slug":"sale-37","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"cms_page","_id":"3","_score":1,"_source":{"store_id":[0],"id":3,"identifier":"enable-cookies","title":"Enable Cookies","page_layout":"1column","content_heading":"What are Cookies?","content":"
                        \r\n

                        \"Cookies\" are little pieces of data we send when you visit our store. Cookies help us get to know you better and personalize your experience. Plus they help protect you and other shoppers from fraud.

                        \r\n

                        Set your browser to accept cookies so you can buy items, save items, and receive customized recommendations. Here’s how:

                        \r\n\r\n
                        ","creation_time":"2017-11-03 08:34:38","update_time":"2017-11-03 08:34:38","sort_order":"0","active":true,"type":"cms_page","tsk":1556377182883}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"23","_score":1,"_source":{"id":23,"parent_id":21,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":186,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/23","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"jackets-23","url_path":"women/tops-women/jackets-women/jackets-23","slug":"jackets-23","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"category","_id":"17","_score":1,"_source":{"id":17,"parent_id":12,"name":"Tanks","is_active":true,"position":4,"level":4,"product_count":102,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/17","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tanks-17","url_path":"men/tops-men/tanks-men/tanks-17","slug":"tanks-17","tsk":1556377189190}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"196","_score":1,"_source":{"id":196,"sku":"MH10-XS-Black","name":"Mach Street Sweatshirt -XS-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

                        From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                        \n

                        • Navy heather crewneck sweatshirt.
                        • LumaTech™ moisture-wicking fabric.
                        • Antimicrobial, odor-resistant.
                        • Zip hand pockets.
                        • Chafe-resistant flatlock seams.
                        • Rib-knit cuffs and hem.

                        ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mach-street-sweatshirt-xs-black-196","links":{},"stock":{"item_id":196,"product_id":196,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xs-black-196.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"194","_score":1,"_source":{"id":194,"sku":"MH09-XL-Red","name":"Abominable Hoodie-XL-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                        \n

                        • Blue heather hoodie.
                        • Relaxed fit.
                        • Moisture-wicking.
                        • Machine wash/dry.

                        ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"abominable-hoodie-xl-red-194","links":{},"stock":{"item_id":194,"product_id":194,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xl-red-194.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"193","_score":1,"_source":{"id":193,"sku":"MH09-XL-Green","name":"Abominable Hoodie-XL-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                        \n

                        • Blue heather hoodie.
                        • Relaxed fit.
                        • Moisture-wicking.
                        • Machine wash/dry.

                        ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"abominable-hoodie-xl-green-193","links":{},"stock":{"item_id":193,"product_id":193,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xl-green-193.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"195","_score":1,"_source":{"id":195,"sku":"MH09","name":"Abominable Hoodie","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":69,"description":"

                        It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                        \n

                        • Blue heather hoodie.
                        • Relaxed fit.
                        • Moisture-wicking.
                        • Machine wash/dry.

                        ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"abominable-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,159,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","pattern":"197","climate":[208,210],"slug":"abominable-hoodie-195","links":{},"stock":{"item_id":195,"product_id":195,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH09-XS-Blue","id":180,"status":1,"name":"Abominable Hoodie-XS-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"50","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","url_key":"abominable-hoodie-xs-blue","special_price":null,"special_from_date":"2017-11-15 00:00:00","special_to_date":"2017-12-11 00:00:00","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-XS-Green","id":181,"status":1,"name":"Abominable Hoodie-XS-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"53","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","url_key":"abominable-hoodie-xs-green","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-XS-Red","id":182,"status":1,"name":"Abominable Hoodie-XS-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","url_key":"abominable-hoodie-xs-red","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-S-Blue","id":183,"status":1,"name":"Abominable Hoodie-S-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"50","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","url_key":"abominable-hoodie-s-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-S-Green","id":184,"status":1,"name":"Abominable Hoodie-S-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"53","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","url_key":"abominable-hoodie-s-green","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-S-Red","id":185,"status":1,"name":"Abominable Hoodie-S-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","url_key":"abominable-hoodie-s-red","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-M-Blue","id":186,"status":1,"name":"Abominable Hoodie-M-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"50","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","url_key":"abominable-hoodie-m-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-M-Green","id":187,"status":1,"name":"Abominable Hoodie-M-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"53","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","url_key":"abominable-hoodie-m-green","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-M-Red","id":188,"status":1,"name":"Abominable Hoodie-M-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","url_key":"abominable-hoodie-m-red","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-L-Blue","id":189,"status":1,"name":"Abominable Hoodie-L-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"50","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","url_key":"abominable-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-L-Green","id":190,"status":1,"name":"Abominable Hoodie-L-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"53","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","url_key":"abominable-hoodie-l-green","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-L-Red","id":191,"status":1,"name":"Abominable Hoodie-L-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","url_key":"abominable-hoodie-l-red","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-XL-Blue","id":192,"status":1,"name":"Abominable Hoodie-XL-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"50","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","url_key":"abominable-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-XL-Green","id":193,"status":1,"name":"Abominable Hoodie-XL-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"53","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","url_key":"abominable-hoodie-xl-green","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001},{"sku":"MH09-XL-Red","id":194,"status":1,"name":"Abominable Hoodie-XL-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","url_key":"abominable-hoodie-xl-red","msrp_display_actual_price_type":"0","final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001}],"configurable_options":[{"id":19,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":195,"attribute_code":"color"},{"id":18,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":195,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-195.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"91","_score":1,"_source":{"id":91,"sku":"MH03-M-Blue","name":"Bruno Compete Hoodie-M-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

                        Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                        \n

                        • Full zip black hoodie pullover.
                        • Adjustable drawstring hood.
                        • Ribbed cuffs/waistband.
                        • Kangaroo pocket.
                        • Machine wash/dry.

                        ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bruno-compete-hoodie-m-blue-91","links":{},"stock":{"item_id":91,"product_id":91,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-m-blue-91.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"83","_score":1,"_source":{"id":83,"sku":"MH02","name":"Teton Pullover Hoodie","attribute_set_id":9,"price":70,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":70,"description":"

                        This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                        \n

                        • Black pullover hoodie.
                        • Soft, brushed interior.
                        • Front hand pockets.
                        • Machine wash/dry.

                        ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"teton-pullover-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,145,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","pattern":"197","climate":[202,204,205,208,210],"slug":"teton-pullover-hoodie-83","links":{},"stock":{"item_id":83,"product_id":83,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH02-XS-Black","id":68,"status":1,"name":"Teton Pullover Hoodie-XS-Black","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"49","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","url_key":"teton-pullover-hoodie-xs-black","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-XS-Purple","id":69,"status":1,"name":"Teton Pullover Hoodie-XS-Purple","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"57","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","url_key":"teton-pullover-hoodie-xs-purple","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-XS-Red","id":70,"status":1,"name":"Teton Pullover Hoodie-XS-Red","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","url_key":"teton-pullover-hoodie-xs-red","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-S-Black","id":71,"status":1,"name":"Teton Pullover Hoodie-S-Black","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"49","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","url_key":"teton-pullover-hoodie-s-black","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-S-Purple","id":72,"status":1,"name":"Teton Pullover Hoodie-S-Purple","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"57","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","url_key":"teton-pullover-hoodie-s-purple","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-S-Red","id":73,"status":1,"name":"Teton Pullover Hoodie-S-Red","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","url_key":"teton-pullover-hoodie-s-red","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-M-Black","id":74,"status":1,"name":"Teton Pullover Hoodie-M-Black","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"49","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","url_key":"teton-pullover-hoodie-m-black","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-M-Purple","id":75,"status":1,"name":"Teton Pullover Hoodie-M-Purple","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"57","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","url_key":"teton-pullover-hoodie-m-purple","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-M-Red","id":76,"status":1,"name":"Teton Pullover Hoodie-M-Red","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","url_key":"teton-pullover-hoodie-m-red","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-L-Black","id":77,"status":1,"name":"Teton Pullover Hoodie-L-Black","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"49","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","url_key":"teton-pullover-hoodie-l-black","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-L-Purple","id":78,"status":1,"name":"Teton Pullover Hoodie-L-Purple","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"57","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","url_key":"teton-pullover-hoodie-l-purple","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-L-Red","id":79,"status":1,"name":"Teton Pullover Hoodie-L-Red","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","url_key":"teton-pullover-hoodie-l-red","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-XL-Black","id":80,"status":1,"name":"Teton Pullover Hoodie-XL-Black","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"49","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","url_key":"teton-pullover-hoodie-xl-black","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-XL-Purple","id":81,"status":1,"name":"Teton Pullover Hoodie-XL-Purple","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"57","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","url_key":"teton-pullover-hoodie-xl-purple","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001},{"sku":"MH02-XL-Red","id":82,"status":1,"name":"Teton Pullover Hoodie-XL-Red","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","url_key":"teton-pullover-hoodie-xl-red","msrp_display_actual_price_type":"0","final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001}],"configurable_options":[{"id":5,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":83,"attribute_code":"color"},{"id":4,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":83,"attribute_code":"size"}],"color_options":[49,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-83.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"212","_score":1,"_source":{"id":212,"sku":"MH11-XS-Orange","name":"Grayson Crewneck Sweatshirt -XS-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

                        The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                        \n

                        • Cream crewneck sweatshirt with black accents.
                        • 80% cotton/20% polyester fleece.
                        • Patterned knit hood lining.
                        • Knit cuffs and waist.
                        • Pouch pocket.
                        • Curl edged seam detail

                        ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"grayson-crewneck-sweatshirt-xs-orange-212","links":{},"stock":{"item_id":212,"product_id":212,"stock_id":1,"qty":18,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xs-orange-212.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"230","_score":1,"_source":{"id":230,"sku":"MH12-XS-Red","name":"Ajax Full-Zip Sweatshirt -XS-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                        \n

                        • Mint striped full zip hoodie.
                        • 100% bonded polyester fleece.
                        • Pouch pocket.
                        • Rib cuffs and hem.
                        • Machine washable.

                        ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ajax-full-zip-sweatshirt-xs-red-230","links":{},"stock":{"item_id":230,"product_id":230,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xs-red-230.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"246","_score":1,"_source":{"id":246,"sku":"MH13-XS-Lavender","name":"Marco Lightweight Active Hoodie-XS-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                        For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                        \n

                        • Light blue heather full zip hoodie.
                        • Fitted flatlock seams.
                        • Matching lining and drawstring.
                        • Machine wash/dry.

                        ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xs-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"marco-lightweight-active-hoodie-xs-lavender-246","links":{},"stock":{"item_id":246,"product_id":246,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xs-lavender-246.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"237","_score":1,"_source":{"id":237,"sku":"MH12-L-Blue","name":"Ajax Full-Zip Sweatshirt -L-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                        \n

                        • Mint striped full zip hoodie.
                        • 100% bonded polyester fleece.
                        • Pouch pocket.
                        • Rib cuffs and hem.
                        • Machine washable.

                        ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ajax-full-zip-sweatshirt-l-blue-237","links":{},"stock":{"item_id":237,"product_id":237,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-l-blue-237.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"218","_score":1,"_source":{"id":218,"sku":"MH11-M-Orange","name":"Grayson Crewneck Sweatshirt -M-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

                        The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                        \n

                        • Cream crewneck sweatshirt with black accents.
                        • 80% cotton/20% polyester fleece.
                        • Patterned knit hood lining.
                        • Knit cuffs and waist.
                        • Pouch pocket.
                        • Curl edged seam detail

                        ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"grayson-crewneck-sweatshirt-m-orange-218","links":{},"stock":{"item_id":218,"product_id":218,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-m-orange-218.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"215","_score":1,"_source":{"id":215,"sku":"MH11-S-Orange","name":"Grayson Crewneck Sweatshirt -S-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

                        The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                        \n

                        • Cream crewneck sweatshirt with black accents.
                        • 80% cotton/20% polyester fleece.
                        • Patterned knit hood lining.
                        • Knit cuffs and waist.
                        • Pouch pocket.
                        • Curl edged seam detail

                        ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"grayson-crewneck-sweatshirt-s-orange-215","links":{},"stock":{"item_id":215,"product_id":215,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-s-orange-215.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"217","_score":1,"_source":{"id":217,"sku":"MH11-S-White","name":"Grayson Crewneck Sweatshirt -S-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":78.720001,"max_price":78.720001,"max_regular_price":78.720001,"minimal_regular_price":78.720001,"special_price":null,"minimal_price":78.720001,"regular_price":78.720001,"description":"

                        The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                        \n

                        • Cream crewneck sweatshirt with black accents.
                        • 80% cotton/20% polyester fleece.
                        • Patterned knit hood lining.
                        • Knit cuffs and waist.
                        • Pouch pocket.
                        • Curl edged seam detail

                        ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"grayson-crewneck-sweatshirt-s-white-217","links":{},"stock":{"item_id":217,"product_id":217,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-s-white-217.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"239","_score":1,"_source":{"id":239,"sku":"MH12-L-Red","name":"Ajax Full-Zip Sweatshirt -L-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                        \n

                        • Mint striped full zip hoodie.
                        • 100% bonded polyester fleece.
                        • Pouch pocket.
                        • Rib cuffs and hem.
                        • Machine washable.

                        ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ajax-full-zip-sweatshirt-l-red-239","links":{},"stock":{"item_id":239,"product_id":239,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-l-red-239.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"234","_score":1,"_source":{"id":234,"sku":"MH12-M-Blue","name":"Ajax Full-Zip Sweatshirt -M-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                        \n

                        • Mint striped full zip hoodie.
                        • 100% bonded polyester fleece.
                        • Pouch pocket.
                        • Rib cuffs and hem.
                        • Machine washable.

                        ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ajax-full-zip-sweatshirt-m-blue-234","links":{},"stock":{"item_id":234,"product_id":234,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-m-blue-234.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"228","_score":1,"_source":{"id":228,"sku":"MH12-XS-Blue","name":"Ajax Full-Zip Sweatshirt -XS-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                        \n

                        • Mint striped full zip hoodie.
                        • 100% bonded polyester fleece.
                        • Pouch pocket.
                        • Rib cuffs and hem.
                        • Machine washable.

                        ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ajax-full-zip-sweatshirt-xs-blue-228","links":{},"stock":{"item_id":228,"product_id":228,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xs-blue-228.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"241","_score":1,"_source":{"id":241,"sku":"MH12-XL-Green","name":"Ajax Full-Zip Sweatshirt -XL-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                        \n

                        • Mint striped full zip hoodie.
                        • 100% bonded polyester fleece.
                        • Pouch pocket.
                        • Rib cuffs and hem.
                        • Machine washable.

                        ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ajax-full-zip-sweatshirt-xl-green-241","links":{},"stock":{"item_id":241,"product_id":241,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xl-green-241.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"247","_score":1,"_source":{"id":247,"sku":"MH13-S-Blue","name":"Marco Lightweight Active Hoodie-S-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                        For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                        \n

                        • Light blue heather full zip hoodie.
                        • Fitted flatlock seams.
                        • Matching lining and drawstring.
                        • Machine wash/dry.

                        ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"marco-lightweight-active-hoodie-s-blue-247","links":{},"stock":{"item_id":247,"product_id":247,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-s-blue-247.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"250","_score":1,"_source":{"id":250,"sku":"MH13-M-Blue","name":"Marco Lightweight Active Hoodie-M-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                        For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                        \n

                        • Light blue heather full zip hoodie.
                        • Fitted flatlock seams.
                        • Matching lining and drawstring.
                        • Machine wash/dry.

                        ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"marco-lightweight-active-hoodie-m-blue-250","links":{},"stock":{"item_id":250,"product_id":250,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-m-blue-250.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"167","_score":1,"_source":{"id":167,"sku":"MH08-S-Brown","name":"Oslo Trek Hoodie-S-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                        Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                        \n

                        • Brown hoodie with black detail.
                        • Pullover.
                        • Adjustable drawstring hood.
                        • Ribbed cuffs/waistband.
                        • Machine wash/dry.

                        ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-s-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"oslo-trek-hoodie-s-brown-167","links":{},"stock":{"item_id":167,"product_id":167,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-s-brown-167.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"152","_score":1,"_source":{"id":152,"sku":"MH07-S-Gray","name":"Hero Hoodie-S-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                        Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                        \n

                        • Full-zip gray and black hoodie.
                        • Ribbed hem.
                        • Standard fit.
                        • Drawcord hood cinch.
                        • Water-resistant coating.

                        ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hero-hoodie-s-gray-152","links":{},"stock":{"item_id":152,"product_id":152,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-s-gray-152.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"156","_score":1,"_source":{"id":156,"sku":"MH07-M-Green","name":"Hero Hoodie-M-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                        Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                        \n

                        • Full-zip gray and black hoodie.
                        • Ribbed hem.
                        • Standard fit.
                        • Drawcord hood cinch.
                        • Water-resistant coating.

                        ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hero-hoodie-m-green-156","links":{},"stock":{"item_id":156,"product_id":156,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-m-green-156.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"165","_score":1,"_source":{"id":165,"sku":"MH08-XS-Purple","name":"Oslo Trek Hoodie-XS-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                        Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                        \n

                        • Brown hoodie with black detail.
                        • Pullover.
                        • Adjustable drawstring hood.
                        • Ribbed cuffs/waistband.
                        • Machine wash/dry.

                        ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"oslo-trek-hoodie-xs-purple-165","links":{},"stock":{"item_id":165,"product_id":165,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xs-purple-165.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"151","_score":1,"_source":{"id":151,"sku":"MH07-S-Black","name":"Hero Hoodie-S-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                        Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                        \n

                        • Full-zip gray and black hoodie.
                        • Ribbed hem.
                        • Standard fit.
                        • Drawcord hood cinch.
                        • Water-resistant coating.

                        ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hero-hoodie-s-black-151","links":{},"stock":{"item_id":151,"product_id":151,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-s-black-151.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"171","_score":1,"_source":{"id":171,"sku":"MH08-M-Purple","name":"Oslo Trek Hoodie-M-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                        Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                        \n

                        • Brown hoodie with black detail.
                        • Pullover.
                        • Adjustable drawstring hood.
                        • Ribbed cuffs/waistband.
                        • Machine wash/dry.

                        ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"oslo-trek-hoodie-m-purple-171","links":{},"stock":{"item_id":171,"product_id":171,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-m-purple-171.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"177","_score":1,"_source":{"id":177,"sku":"MH08-XL-Purple","name":"Oslo Trek Hoodie-XL-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                        Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                        \n

                        • Brown hoodie with black detail.
                        • Pullover.
                        • Adjustable drawstring hood.
                        • Ribbed cuffs/waistband.
                        • Machine wash/dry.

                        ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"oslo-trek-hoodie-xl-purple-177","links":{},"stock":{"item_id":177,"product_id":177,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xl-purple-177.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"184","_score":1,"_source":{"id":184,"sku":"MH09-S-Green","name":"Abominable Hoodie-S-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                        \n

                        • Blue heather hoodie.
                        • Relaxed fit.
                        • Moisture-wicking.
                        • Machine wash/dry.

                        ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"abominable-hoodie-s-green-184","links":{},"stock":{"item_id":184,"product_id":184,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-s-green-184.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"174","_score":1,"_source":{"id":174,"sku":"MH08-L-Purple","name":"Oslo Trek Hoodie-L-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                        Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                        \n

                        • Brown hoodie with black detail.
                        • Pullover.
                        • Adjustable drawstring hood.
                        • Ribbed cuffs/waistband.
                        • Machine wash/dry.

                        ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"oslo-trek-hoodie-l-purple-174","links":{},"stock":{"item_id":174,"product_id":174,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-l-purple-174.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"173","_score":1,"_source":{"id":173,"sku":"MH08-L-Brown","name":"Oslo Trek Hoodie-L-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                        Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                        \n

                        • Brown hoodie with black detail.
                        • Pullover.
                        • Adjustable drawstring hood.
                        • Ribbed cuffs/waistband.
                        • Machine wash/dry.

                        ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-l-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"oslo-trek-hoodie-l-brown-173","links":{},"stock":{"item_id":173,"product_id":173,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-l-brown-173.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"186","_score":1,"_source":{"id":186,"sku":"MH09-M-Blue","name":"Abominable Hoodie-M-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                        \n

                        • Blue heather hoodie.
                        • Relaxed fit.
                        • Moisture-wicking.
                        • Machine wash/dry.

                        ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"abominable-hoodie-m-blue-186","links":{},"stock":{"item_id":186,"product_id":186,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-m-blue-186.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"192","_score":1,"_source":{"id":192,"sku":"MH09-XL-Blue","name":"Abominable Hoodie-XL-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                        \n

                        • Blue heather hoodie.
                        • Relaxed fit.
                        • Moisture-wicking.
                        • Machine wash/dry.

                        ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"abominable-hoodie-xl-blue-192","links":{},"stock":{"item_id":192,"product_id":192,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xl-blue-192.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"182","_score":1,"_source":{"id":182,"sku":"MH09-XS-Red","name":"Abominable Hoodie-XS-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                        \n

                        • Blue heather hoodie.
                        • Relaxed fit.
                        • Moisture-wicking.
                        • Machine wash/dry.

                        ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"abominable-hoodie-xs-red-182","links":{},"stock":{"item_id":182,"product_id":182,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xs-red-182.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"75","_score":1,"_source":{"id":75,"sku":"MH02-M-Purple","name":"Teton Pullover Hoodie-M-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

                        This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                        \n

                        • Black pullover hoodie.
                        • Soft, brushed interior.
                        • Front hand pockets.
                        • Machine wash/dry.

                        ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"teton-pullover-hoodie-m-purple-75","links":{},"stock":{"item_id":75,"product_id":75,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-m-purple-75.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"58","_score":1,"_source":{"id":58,"sku":"MH01-M-Black","name":"Chaz Kangeroo Hoodie-M-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                        Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                        \n

                        • Two-tone gray heather hoodie.
                        • Drawstring-adjustable hood.
                        • Machine wash/dry.

                        ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chaz-kangeroo-hoodie-m-black-58","links":{},"stock":{"item_id":58,"product_id":58,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-m-black-58.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"76","_score":1,"_source":{"id":76,"sku":"MH02-M-Red","name":"Teton Pullover Hoodie-M-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

                        This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                        \n

                        • Black pullover hoodie.
                        • Soft, brushed interior.
                        • Front hand pockets.
                        • Machine wash/dry.

                        ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"teton-pullover-hoodie-m-red-76","links":{},"stock":{"item_id":76,"product_id":76,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-m-red-76.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"90","_score":1,"_source":{"id":90,"sku":"MH03-M-Black","name":"Bruno Compete Hoodie-M-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

                        Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                        \n

                        • Full zip black hoodie pullover.
                        • Adjustable drawstring hood.
                        • Ribbed cuffs/waistband.
                        • Kangaroo pocket.
                        • Machine wash/dry.

                        ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bruno-compete-hoodie-m-black-90","links":{},"stock":{"item_id":90,"product_id":90,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-m-black-90.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"68","_score":1,"_source":{"id":68,"sku":"MH02-XS-Black","name":"Teton Pullover Hoodie-XS-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

                        This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                        \n

                        • Black pullover hoodie.
                        • Soft, brushed interior.
                        • Front hand pockets.
                        • Machine wash/dry.

                        ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"teton-pullover-hoodie-xs-black-68","links":{},"stock":{"item_id":68,"product_id":68,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xs-black-68.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"74","_score":1,"_source":{"id":74,"sku":"MH02-M-Black","name":"Teton Pullover Hoodie-M-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":86.100001,"max_price":86.100001,"max_regular_price":86.100001,"minimal_regular_price":86.100001,"special_price":null,"minimal_price":86.100001,"regular_price":86.100001,"description":"

                        This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                        \n

                        • Black pullover hoodie.
                        • Soft, brushed interior.
                        • Front hand pockets.
                        • Machine wash/dry.

                        ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"teton-pullover-hoodie-m-black-74","links":{},"stock":{"item_id":74,"product_id":74,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-m-black-74.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"102","_score":1,"_source":{"id":102,"sku":"MH04-XS-Yellow","name":"Frankie Sweatshirt-XS-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                        The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                        \n

                        • Light green crewneck sweatshirt.
                        • Hand pockets.
                        • Relaxed fit.
                        • Machine wash/dry.

                        ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"frankie-sweatshirt-xs-yellow-102","links":{},"stock":{"item_id":102,"product_id":102,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xs-yellow-102.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"133","_score":1,"_source":{"id":133,"sku":"MH06-XS-Blue","name":"Stark Fundamental Hoodie-XS-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                        You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                        \n

                        • Navy specked full zip hoodie.
                        • Ribbed cuffs, banded waist.
                        • Side pockets.
                        • Machine wash/dry.

                        ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"stark-fundamental-hoodie-xs-blue-133","links":{},"stock":{"item_id":133,"product_id":133,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xs-blue-133.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"141","_score":1,"_source":{"id":141,"sku":"MH06-L-Black","name":"Stark Fundamental Hoodie-L-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                        You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                        \n

                        • Navy specked full zip hoodie.
                        • Ribbed cuffs, banded waist.
                        • Side pockets.
                        • Machine wash/dry.

                        ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stark-fundamental-hoodie-l-black-141","links":{},"stock":{"item_id":141,"product_id":141,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-l-black-141.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"148","_score":1,"_source":{"id":148,"sku":"MH07-XS-Black","name":"Hero Hoodie-XS-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                        Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                        \n

                        • Full-zip gray and black hoodie.
                        • Ribbed hem.
                        • Standard fit.
                        • Drawcord hood cinch.
                        • Water-resistant coating.

                        ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hero-hoodie-xs-black-148","links":{},"stock":{"item_id":148,"product_id":148,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xs-black-148.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"122","_score":1,"_source":{"id":122,"sku":"MH05-M-Green","name":"Hollister Backyard Sweatshirt-M-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63.960001,"max_price":63.960001,"max_regular_price":63.960001,"minimal_regular_price":63.960001,"special_price":null,"minimal_price":63.960001,"regular_price":63.960001,"description":"

                        Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                        \n

                        • Cream crewneck sweatshirt with navy sleeves/trim.
                        • Relaxed fit.
                        • Ribbed cuffs and hem.
                        • Machine wash/dry.

                        ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hollister-backyard-sweatshirt-m-green-122","links":{},"stock":{"item_id":122,"product_id":122,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-m-green-122.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"154","_score":1,"_source":{"id":154,"sku":"MH07-M-Black","name":"Hero Hoodie-M-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                        Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                        \n

                        • Full-zip gray and black hoodie.
                        • Ribbed hem.
                        • Standard fit.
                        • Drawcord hood cinch.
                        • Water-resistant coating.

                        ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hero-hoodie-m-black-154","links":{},"stock":{"item_id":154,"product_id":154,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-m-black-154.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"153","_score":1,"_source":{"id":153,"sku":"MH07-S-Green","name":"Hero Hoodie-S-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                        Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                        \n

                        • Full-zip gray and black hoodie.
                        • Ribbed hem.
                        • Standard fit.
                        • Drawcord hood cinch.
                        • Water-resistant coating.

                        ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hero-hoodie-s-green-153","links":{},"stock":{"item_id":153,"product_id":153,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-s-green-153.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"205","_score":1,"_source":{"id":205,"sku":"MH10-L-Black","name":"Mach Street Sweatshirt -L-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":76.260001,"max_price":76.260001,"max_regular_price":76.260001,"minimal_regular_price":76.260001,"special_price":null,"minimal_price":76.260001,"regular_price":76.260001,"description":"

                        From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                        \n

                        • Navy heather crewneck sweatshirt.
                        • LumaTech™ moisture-wicking fabric.
                        • Antimicrobial, odor-resistant.
                        • Zip hand pockets.
                        • Chafe-resistant flatlock seams.
                        • Rib-knit cuffs and hem.

                        ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mach-street-sweatshirt-l-black-205","links":{},"stock":{"item_id":205,"product_id":205,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-l-black-205.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"297","_score":1,"_source":{"id":297,"sku":"MJ04-S-Purple","name":"Kenobi Trail Jacket-S-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

                        Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                        \n

                        • Black 1/4 zip pullover with royal zipper.
                        • Adjustable hood and sleeve cuffs.
                        • Machine wash/air dry.

                        ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"kenobi-trail-jacket-s-purple-297","links":{},"stock":{"item_id":297,"product_id":297,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-s-purple-297.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"298","_score":1,"_source":{"id":298,"sku":"MJ04-M-Black","name":"Kenobi Trail Jacket-M-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001,"description":"

                        Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                        \n

                        • Black 1/4 zip pullover with royal zipper.
                        • Adjustable hood and sleeve cuffs.
                        • Machine wash/air dry.

                        ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"kenobi-trail-jacket-m-black-298","links":{},"stock":{"item_id":298,"product_id":298,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-m-black-298.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"275","_score":1,"_source":{"id":275,"sku":"MJ01","name":"Beaumont Summit Kit","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":42,"description":"

                        The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                        \n

                        • Yellow full zip rain jacket.
                        • Full-zip front.
                        • Stand-up collar.
                        • Elasticized cuffs.
                        • Machine wash/dry.

                        ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"beaumont-summit-kit","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,148,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[120,121,123,124,126,128,130],"pattern":"197","climate":[204,207,208,210],"slug":"beaumont-summit-kit-275","links":{},"stock":{"item_id":275,"product_id":275,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ01-XS-Orange","id":260,"status":1,"name":"Beaumont Summit Kit-XS-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"56","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","url_key":"beaumont-summit-kit-xs-orange","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-XS-Red","id":261,"status":1,"name":"Beaumont Summit Kit-XS-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"58","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","url_key":"beaumont-summit-kit-xs-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-XS-Yellow","id":262,"status":1,"name":"Beaumont Summit Kit-XS-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"60","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","url_key":"beaumont-summit-kit-xs-yellow","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-S-Orange","id":263,"status":1,"name":"Beaumont Summit Kit-S-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"56","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","url_key":"beaumont-summit-kit-s-orange","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-S-Red","id":264,"status":1,"name":"Beaumont Summit Kit-S-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"58","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","url_key":"beaumont-summit-kit-s-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-S-Yellow","id":265,"status":1,"name":"Beaumont Summit Kit-S-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"60","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","url_key":"beaumont-summit-kit-s-yellow","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-M-Orange","id":266,"status":1,"name":"Beaumont Summit Kit-M-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"56","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","url_key":"beaumont-summit-kit-m-orange","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-M-Red","id":267,"status":1,"name":"Beaumont Summit Kit-M-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"58","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","url_key":"beaumont-summit-kit-m-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-M-Yellow","id":268,"status":1,"name":"Beaumont Summit Kit-M-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"60","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","url_key":"beaumont-summit-kit-m-yellow","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-L-Orange","id":269,"status":1,"name":"Beaumont Summit Kit-L-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"56","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","url_key":"beaumont-summit-kit-l-orange","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-L-Red","id":270,"status":1,"name":"Beaumont Summit Kit-L-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"58","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","url_key":"beaumont-summit-kit-l-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-L-Yellow","id":271,"status":1,"name":"Beaumont Summit Kit-L-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"60","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","url_key":"beaumont-summit-kit-l-yellow","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-XL-Orange","id":272,"status":1,"name":"Beaumont Summit Kit-XL-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"56","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","url_key":"beaumont-summit-kit-xl-orange","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-XL-Red","id":273,"status":1,"name":"Beaumont Summit Kit-XL-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"58","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","url_key":"beaumont-summit-kit-xl-red","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"MJ01-XL-Yellow","id":274,"status":1,"name":"Beaumont Summit Kit-XL-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"60","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","url_key":"beaumont-summit-kit-xl-yellow","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001}],"configurable_options":[{"id":29,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":275,"attribute_code":"color"},{"id":28,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":275,"attribute_code":"size"}],"color_options":[56,58,60],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-275.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"291","_score":1,"_source":{"id":291,"sku":"MJ02","name":"Hyperion Elements Jacket","attribute_set_id":9,"price":51,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":51,"description":"

                        Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                        \n

                        • Lime 1/4 zip pullover.
                        • Split pocket.
                        • Thumb holes.
                        • Machine wash/hang to dry.

                        ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hyperion-elements-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,148,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_general":[117,123,124,126,128],"pattern":"197","climate":[204,207,208,210],"slug":"hyperion-elements-jacket-291","links":{},"stock":{"item_id":291,"product_id":291,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ02-XS-Green","id":276,"status":1,"name":"Hyperion Elements Jacket-XS-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"53","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","url_key":"hyperion-elements-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-XS-Orange","id":277,"status":1,"name":"Hyperion Elements Jacket-XS-Orange","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"56","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","url_key":"hyperion-elements-jacket-xs-orange","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-XS-Red","id":278,"status":1,"name":"Hyperion Elements Jacket-XS-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"58","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","url_key":"hyperion-elements-jacket-xs-red","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-S-Green","id":279,"status":1,"name":"Hyperion Elements Jacket-S-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"53","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","url_key":"hyperion-elements-jacket-s-green","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-S-Orange","id":280,"status":1,"name":"Hyperion Elements Jacket-S-Orange","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"56","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","url_key":"hyperion-elements-jacket-s-orange","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-S-Red","id":281,"status":1,"name":"Hyperion Elements Jacket-S-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"58","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","url_key":"hyperion-elements-jacket-s-red","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-M-Green","id":282,"status":1,"name":"Hyperion Elements Jacket-M-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"53","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","url_key":"hyperion-elements-jacket-m-green","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-M-Orange","id":283,"status":1,"name":"Hyperion Elements Jacket-M-Orange","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"56","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","url_key":"hyperion-elements-jacket-m-orange","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-M-Red","id":284,"status":1,"name":"Hyperion Elements Jacket-M-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"58","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","url_key":"hyperion-elements-jacket-m-red","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-L-Green","id":285,"status":1,"name":"Hyperion Elements Jacket-L-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"53","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","url_key":"hyperion-elements-jacket-l-green","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-L-Orange","id":286,"status":1,"name":"Hyperion Elements Jacket-L-Orange","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"56","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","url_key":"hyperion-elements-jacket-l-orange","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-L-Red","id":287,"status":1,"name":"Hyperion Elements Jacket-L-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"58","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","url_key":"hyperion-elements-jacket-l-red","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-XL-Green","id":288,"status":1,"name":"Hyperion Elements Jacket-XL-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"53","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","url_key":"hyperion-elements-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-XL-Orange","id":289,"status":1,"name":"Hyperion Elements Jacket-XL-Orange","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"56","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","url_key":"hyperion-elements-jacket-xl-orange","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"MJ02-XL-Red","id":290,"status":1,"name":"Hyperion Elements Jacket-XL-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"58","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","url_key":"hyperion-elements-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001}],"configurable_options":[{"id":31,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":291,"attribute_code":"color"},{"id":30,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":291,"attribute_code":"size"}],"color_options":[53,56,58],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-291.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"347","_score":1,"_source":{"id":347,"sku":"MJ09-M-White","name":"Taurus Elements Shell-M-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

                        What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                        \n

                        • Yellow 1/4 zip pullover.
                        • Two chest pockets.
                        • Standard fit.
                        • Waterproof, breathable, seam sealed.
                        • Cocona® performance fabric.
                        • Machine wash/dry.

                        ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"taurus-elements-shell-m-white-347","links":{},"stock":{"item_id":347,"product_id":347,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-m-white-347.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"345","_score":1,"_source":{"id":345,"sku":"MJ09-S-Yellow","name":"Taurus Elements Shell-S-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

                        What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                        \n

                        • Yellow 1/4 zip pullover.
                        • Two chest pockets.
                        • Standard fit.
                        • Waterproof, breathable, seam sealed.
                        • Cocona® performance fabric.
                        • Machine wash/dry.

                        ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"taurus-elements-shell-s-yellow-345","links":{},"stock":{"item_id":345,"product_id":345,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-s-yellow-345.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"307","_score":1,"_source":{"id":307,"sku":"MJ04","name":"Kenobi Trail Jacket","attribute_set_id":9,"price":47,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":47,"description":"

                        Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                        \n

                        • Black 1/4 zip pullover with royal zipper.
                        • Adjustable hood and sleeve cuffs.
                        • Machine wash/air dry.

                        ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"kenobi-trail-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,145,37],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[117,125,128],"pattern":"197","climate":[203,204,208,210,211],"slug":"kenobi-trail-jacket-307","links":{},"stock":{"item_id":307,"product_id":307,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ04-XS-Black","id":292,"status":1,"name":"Kenobi Trail Jacket-XS-Black","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"167","color":"49","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","url_key":"kenobi-trail-jacket-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MJ04-XS-Blue","id":293,"status":1,"name":"Kenobi Trail Jacket-XS-Blue","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"167","color":"50","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","url_key":"kenobi-trail-jacket-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ04-XS-Purple","id":294,"status":1,"name":"Kenobi Trail Jacket-XS-Purple","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"167","color":"57","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","url_key":"kenobi-trail-jacket-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ04-S-Black","id":295,"status":1,"name":"Kenobi Trail Jacket-S-Black","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"168","color":"49","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","url_key":"kenobi-trail-jacket-s-black","msrp_display_actual_price_type":"0"},{"sku":"MJ04-S-Blue","id":296,"status":1,"name":"Kenobi Trail Jacket-S-Blue","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"168","color":"50","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","url_key":"kenobi-trail-jacket-s-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ04-S-Purple","id":297,"status":1,"name":"Kenobi Trail Jacket-S-Purple","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"168","color":"57","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","url_key":"kenobi-trail-jacket-s-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ04-M-Black","id":298,"status":1,"name":"Kenobi Trail Jacket-M-Black","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"169","color":"49","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","url_key":"kenobi-trail-jacket-m-black","msrp_display_actual_price_type":"0"},{"sku":"MJ04-M-Blue","id":299,"status":1,"name":"Kenobi Trail Jacket-M-Blue","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"169","color":"50","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","url_key":"kenobi-trail-jacket-m-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ04-M-Purple","id":300,"status":1,"name":"Kenobi Trail Jacket-M-Purple","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"169","color":"57","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","url_key":"kenobi-trail-jacket-m-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ04-L-Black","id":301,"status":1,"name":"Kenobi Trail Jacket-L-Black","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"170","color":"49","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","url_key":"kenobi-trail-jacket-l-black","msrp_display_actual_price_type":"0","final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001},{"sku":"MJ04-L-Blue","id":302,"status":1,"name":"Kenobi Trail Jacket-L-Blue","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"170","color":"50","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","url_key":"kenobi-trail-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001},{"sku":"MJ04-L-Purple","id":303,"status":1,"name":"Kenobi Trail Jacket-L-Purple","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"170","color":"57","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","url_key":"kenobi-trail-jacket-l-purple","msrp_display_actual_price_type":"0","final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001},{"sku":"MJ04-XL-Black","id":304,"status":1,"name":"Kenobi Trail Jacket-XL-Black","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"171","color":"49","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","url_key":"kenobi-trail-jacket-xl-black","msrp_display_actual_price_type":"0","final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001},{"sku":"MJ04-XL-Blue","id":305,"status":1,"name":"Kenobi Trail Jacket-XL-Blue","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"171","color":"50","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","url_key":"kenobi-trail-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001},{"sku":"MJ04-XL-Purple","id":306,"status":1,"name":"Kenobi Trail Jacket-XL-Purple","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"171","color":"57","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","url_key":"kenobi-trail-jacket-xl-purple","msrp_display_actual_price_type":"0","final_price":57.810001,"max_price":57.810001,"max_regular_price":57.810001,"minimal_regular_price":57.810001,"special_price":null,"minimal_price":57.810001,"regular_price":57.810001}],"configurable_options":[{"id":33,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":307,"attribute_code":"color"},{"id":32,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":307,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-307.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"371","_score":1,"_source":{"id":371,"sku":"MJ10","name":"Mars HeatTech™ Pullover","attribute_set_id":9,"price":66,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":66,"description":"

                        The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                        \n

                        • Red 1/4 zip pullover.
                        • Adjustable VELCRO® sleeve cuffs.
                        • Two hand pockets.
                        • Napoleon pocket.
                        • Machine wash/dry

                        ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mars-heattech-trade-pullover","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[120,123,124,126,128],"pattern":"197","climate":[202,204,206,207,208,210],"slug":"mars-heattech-and-trade-pullover-371","links":{},"stock":{"item_id":371,"product_id":371,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ10-XS-Black","id":356,"status":1,"name":"Mars HeatTech™ Pullover-XS-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"49","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","url_key":"mars-heattech-trade-pullover-xs-black","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-XS-Orange","id":357,"status":1,"name":"Mars HeatTech™ Pullover-XS-Orange","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"56","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","url_key":"mars-heattech-trade-pullover-xs-orange","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-XS-Red","id":358,"status":1,"name":"Mars HeatTech™ Pullover-XS-Red","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"58","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","url_key":"mars-heattech-trade-pullover-xs-red","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-S-Black","id":359,"status":1,"name":"Mars HeatTech™ Pullover-S-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"49","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","url_key":"mars-heattech-trade-pullover-s-black","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-S-Orange","id":360,"status":1,"name":"Mars HeatTech™ Pullover-S-Orange","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"56","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","url_key":"mars-heattech-trade-pullover-s-orange","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-S-Red","id":361,"status":1,"name":"Mars HeatTech™ Pullover-S-Red","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"58","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","url_key":"mars-heattech-trade-pullover-s-red","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-M-Black","id":362,"status":1,"name":"Mars HeatTech™ Pullover-M-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"49","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","url_key":"mars-heattech-trade-pullover-m-black","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-M-Orange","id":363,"status":1,"name":"Mars HeatTech™ Pullover-M-Orange","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"56","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","url_key":"mars-heattech-trade-pullover-m-orange","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-M-Red","id":364,"status":1,"name":"Mars HeatTech™ Pullover-M-Red","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"58","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","url_key":"mars-heattech-trade-pullover-m-red","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-L-Black","id":365,"status":1,"name":"Mars HeatTech™ Pullover-L-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"49","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","url_key":"mars-heattech-trade-pullover-l-black","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-L-Orange","id":366,"status":1,"name":"Mars HeatTech™ Pullover-L-Orange","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"56","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","url_key":"mars-heattech-trade-pullover-l-orange","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-L-Red","id":367,"status":1,"name":"Mars HeatTech™ Pullover-L-Red","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"58","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","url_key":"mars-heattech-trade-pullover-l-red","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-XL-Black","id":368,"status":1,"name":"Mars HeatTech™ Pullover-XL-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"49","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","url_key":"mars-heattech-trade-pullover-xl-black","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-XL-Orange","id":369,"status":1,"name":"Mars HeatTech™ Pullover-XL-Orange","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"56","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","url_key":"mars-heattech-trade-pullover-xl-orange","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001},{"sku":"MJ10-XL-Red","id":370,"status":1,"name":"Mars HeatTech™ Pullover-XL-Red","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"58","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","url_key":"mars-heattech-trade-pullover-xl-red","msrp_display_actual_price_type":"0","final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001}],"configurable_options":[{"id":41,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":371,"attribute_code":"color"},{"id":40,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":371,"attribute_code":"size"}],"color_options":[49,56,58],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-371.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"252","_score":1,"_source":{"id":252,"sku":"MH13-M-Lavender","name":"Marco Lightweight Active Hoodie-M-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                        For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                        \n

                        • Light blue heather full zip hoodie.
                        • Fitted flatlock seams.
                        • Matching lining and drawstring.
                        • Machine wash/dry.

                        ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-m-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"marco-lightweight-active-hoodie-m-lavender-252","links":{},"stock":{"item_id":252,"product_id":252,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-m-lavender-252.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"267","_score":1,"_source":{"id":267,"sku":"MJ01-M-Red","name":"Beaumont Summit Kit-M-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                        The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                        \n

                        • Yellow full zip rain jacket.
                        • Full-zip front.
                        • Stand-up collar.
                        • Elasticized cuffs.
                        • Machine wash/dry.

                        ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"beaumont-summit-kit-m-red-267","links":{},"stock":{"item_id":267,"product_id":267,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-m-red-267.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"279","_score":1,"_source":{"id":279,"sku":"MJ02-S-Green","name":"Hyperion Elements Jacket-S-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                        Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                        \n

                        • Lime 1/4 zip pullover.
                        • Split pocket.
                        • Thumb holes.
                        • Machine wash/hang to dry.

                        ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hyperion-elements-jacket-s-green-279","links":{},"stock":{"item_id":279,"product_id":279,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-s-green-279.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"257","_score":1,"_source":{"id":257,"sku":"MH13-XL-Green","name":"Marco Lightweight Active Hoodie-XL-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                        For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                        \n

                        • Light blue heather full zip hoodie.
                        • Fitted flatlock seams.
                        • Matching lining and drawstring.
                        • Machine wash/dry.

                        ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"marco-lightweight-active-hoodie-xl-green-257","links":{},"stock":{"item_id":257,"product_id":257,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xl-green-257.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"289","_score":1,"_source":{"id":289,"sku":"MJ02-XL-Orange","name":"Hyperion Elements Jacket-XL-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                        Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                        \n

                        • Lime 1/4 zip pullover.
                        • Split pocket.
                        • Thumb holes.
                        • Machine wash/hang to dry.

                        ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hyperion-elements-jacket-xl-orange-289","links":{},"stock":{"item_id":289,"product_id":289,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xl-orange-289.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"284","_score":1,"_source":{"id":284,"sku":"MJ02-M-Red","name":"Hyperion Elements Jacket-M-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                        Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                        \n

                        • Lime 1/4 zip pullover.
                        • Split pocket.
                        • Thumb holes.
                        • Machine wash/hang to dry.

                        ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hyperion-elements-jacket-m-red-284","links":{},"stock":{"item_id":284,"product_id":284,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-m-red-284.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"272","_score":1,"_source":{"id":272,"sku":"MJ01-XL-Orange","name":"Beaumont Summit Kit-XL-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                        The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                        \n

                        • Yellow full zip rain jacket.
                        • Full-zip front.
                        • Stand-up collar.
                        • Elasticized cuffs.
                        • Machine wash/dry.

                        ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"beaumont-summit-kit-xl-orange-272","links":{},"stock":{"item_id":272,"product_id":272,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xl-orange-272.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"290","_score":1,"_source":{"id":290,"sku":"MJ02-XL-Red","name":"Hyperion Elements Jacket-XL-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                        Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                        \n

                        • Lime 1/4 zip pullover.
                        • Split pocket.
                        • Thumb holes.
                        • Machine wash/hang to dry.

                        ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hyperion-elements-jacket-xl-red-290","links":{},"stock":{"item_id":290,"product_id":290,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xl-red-290.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"325","_score":1,"_source":{"id":325,"sku":"MJ08-XS-Gray","name":"Lando Gym Jacket-XS-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

                        The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                        \n

                        • Gray polyester/spandex full zip jacket with orange lining.
                        • Right pocket device storage.
                        • Cocona® performance fabric.
                        • Machine wash/dry.

                        ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lando-gym-jacket-xs-gray-325","links":{},"stock":{"item_id":325,"product_id":325,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xs-gray-325.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"326","_score":1,"_source":{"id":326,"sku":"MJ08-XS-Green","name":"Lando Gym Jacket-XS-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

                        The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                        \n

                        • Gray polyester/spandex full zip jacket with orange lining.
                        • Right pocket device storage.
                        • Cocona® performance fabric.
                        • Machine wash/dry.

                        ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lando-gym-jacket-xs-green-326","links":{},"stock":{"item_id":326,"product_id":326,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xs-green-326.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"334","_score":1,"_source":{"id":334,"sku":"MJ08-L-Gray","name":"Lando Gym Jacket-L-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

                        The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                        \n

                        • Gray polyester/spandex full zip jacket with orange lining.
                        • Right pocket device storage.
                        • Cocona® performance fabric.
                        • Machine wash/dry.

                        ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lando-gym-jacket-l-gray-334","links":{},"stock":{"item_id":334,"product_id":334,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-l-gray-334.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"329","_score":1,"_source":{"id":329,"sku":"MJ08-S-Green","name":"Lando Gym Jacket-S-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":121.770001,"max_price":121.770001,"max_regular_price":121.770001,"minimal_regular_price":121.770001,"special_price":null,"minimal_price":121.770001,"regular_price":121.770001,"description":"

                        The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                        \n

                        • Gray polyester/spandex full zip jacket with orange lining.
                        • Right pocket device storage.
                        • Cocona® performance fabric.
                        • Machine wash/dry.

                        ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lando-gym-jacket-s-green-329","links":{},"stock":{"item_id":329,"product_id":329,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-s-green-329.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"320","_score":1,"_source":{"id":320,"sku":"MJ07-XL-Black","name":"Orion Two-Tone Fitted Jacket-XL-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

                        While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                        \n

                        • Red full zip fleece with gray insets.
                        • Double-knit construction.
                        • Full athletic cut.
                        • Set in sleeves.
                        • Front pouch pocket.

                        ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"orion-two-tone-fitted-jacket-xl-black-320","links":{},"stock":{"item_id":320,"product_id":320,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xl-black-320.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"341","_score":1,"_source":{"id":341,"sku":"MJ09-XS-White","name":"Taurus Elements Shell-XS-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

                        What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                        \n

                        • Yellow 1/4 zip pullover.
                        • Two chest pockets.
                        • Standard fit.
                        • Waterproof, breathable, seam sealed.
                        • Cocona® performance fabric.
                        • Machine wash/dry.

                        ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"taurus-elements-shell-xs-white-341","links":{},"stock":{"item_id":341,"product_id":341,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xs-white-341.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"348","_score":1,"_source":{"id":348,"sku":"MJ09-M-Yellow","name":"Taurus Elements Shell-M-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":79.950001,"max_price":79.950001,"max_regular_price":79.950001,"minimal_regular_price":79.950001,"special_price":null,"minimal_price":79.950001,"regular_price":79.950001,"description":"

                        What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                        \n

                        • Yellow 1/4 zip pullover.
                        • Two chest pockets.
                        • Standard fit.
                        • Waterproof, breathable, seam sealed.
                        • Cocona® performance fabric.
                        • Machine wash/dry.

                        ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"taurus-elements-shell-m-yellow-348","links":{},"stock":{"item_id":348,"product_id":348,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-m-yellow-348.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"382","_score":1,"_source":{"id":382,"sku":"MJ11-L-Green","name":"Typhon Performance Fleece-lined Jacket-L-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                        Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                        \n

                        • Black full-zip flight jacket.
                        • Cocona® wicking fiber.
                        • Machine wash/dry.

                        ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"typhon-performance-fleece-lined-jacket-l-green-382","links":{},"stock":{"item_id":382,"product_id":382,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-l-green-382.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"388","_score":1,"_source":{"id":388,"sku":"MJ06-XS-Blue","name":"Jupiter All-Weather Trainer -XS-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

                        Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                        \n

                        • Relaxed fit.
                        • Hand pockets.
                        • Machine wash/dry.
                        • Reflective safety trim.

                        ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jupiter-all-weather-trainer-xs-blue-388","links":{},"stock":{"item_id":388,"product_id":388,"stock_id":1,"qty":53,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xs-blue-388.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"380","_score":1,"_source":{"id":380,"sku":"MJ11-M-Red","name":"Typhon Performance Fleece-lined Jacket-M-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                        Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                        \n

                        • Black full-zip flight jacket.
                        • Cocona® wicking fiber.
                        • Machine wash/dry.

                        ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"typhon-performance-fleece-lined-jacket-m-red-380","links":{},"stock":{"item_id":380,"product_id":380,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-m-red-380.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"318","_score":1,"_source":{"id":318,"sku":"MJ07-L-Red","name":"Orion Two-Tone Fitted Jacket-L-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

                        While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                        \n

                        • Red full zip fleece with gray insets.
                        • Double-knit construction.
                        • Full athletic cut.
                        • Set in sleeves.
                        • Front pouch pocket.

                        ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"orion-two-tone-fitted-jacket-l-red-318","links":{},"stock":{"item_id":318,"product_id":318,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-l-red-318.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"308","_score":1,"_source":{"id":308,"sku":"MJ07-XS-Black","name":"Orion Two-Tone Fitted Jacket-XS-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":88.560001,"max_price":88.560001,"max_regular_price":88.560001,"minimal_regular_price":88.560001,"special_price":null,"minimal_price":88.560001,"regular_price":88.560001,"description":"

                        While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                        \n

                        • Red full zip fleece with gray insets.
                        • Double-knit construction.
                        • Full athletic cut.
                        • Set in sleeves.
                        • Front pouch pocket.

                        ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"orion-two-tone-fitted-jacket-xs-black-308","links":{},"stock":{"item_id":308,"product_id":308,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xs-black-308.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"255","_score":1,"_source":{"id":255,"sku":"MH13-L-Lavender","name":"Marco Lightweight Active Hoodie-L-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                        For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                        \n

                        • Light blue heather full zip hoodie.
                        • Fitted flatlock seams.
                        • Matching lining and drawstring.
                        • Machine wash/dry.

                        ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-l-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"marco-lightweight-active-hoodie-l-lavender-255","links":{},"stock":{"item_id":255,"product_id":255,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-l-lavender-255.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"370","_score":1,"_source":{"id":370,"sku":"MJ10-XL-Red","name":"Mars HeatTech™ Pullover-XL-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                        The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                        \n

                        • Red 1/4 zip pullover.
                        • Adjustable VELCRO® sleeve cuffs.
                        • Two hand pockets.
                        • Napoleon pocket.
                        • Machine wash/dry

                        ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mars-heattech-and-trade-pullover-xl-red-370","links":{},"stock":{"item_id":370,"product_id":370,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xl-red-370.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"428","_score":1,"_source":{"id":428,"sku":"MJ12-M-Orange","name":"Proteus Fitness Jackshirt-M-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                        Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                        \n

                        • 1/4 zip. Stand-up collar.
                        • Machine wash/dry.
                        • Quilted inner layer.

                        ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"proteus-fitness-jackshirt-m-orange-428","links":{},"stock":{"item_id":428,"product_id":428,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-m-orange-428.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"439","_score":1,"_source":{"id":439,"sku":"MS04-S-Black","name":"Gobi HeatTec® Tee-S-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                        \n

                        • Orange micropolyester shirt.
                        • HeatTec® wicking fabric.
                        • Crew neckline.
                        • Machine wash/dry.

                        ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gobi-heattec-and-reg-tee-s-black-439","links":{},"stock":{"item_id":439,"product_id":439,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-s-black-439.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"446","_score":1,"_source":{"id":446,"sku":"MS04-L-Orange","name":"Gobi HeatTec® Tee-L-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                        \n

                        • Orange micropolyester shirt.
                        • HeatTec® wicking fabric.
                        • Crew neckline.
                        • Machine wash/dry.

                        ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gobi-heattec-and-reg-tee-l-orange-446","links":{},"stock":{"item_id":446,"product_id":446,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-l-orange-446.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"411","_score":1,"_source":{"id":411,"sku":"MJ03-M-Green","name":"Montana Wind Jacket-M-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                        Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                        \n

                        Adjustable hood.
                        Split pocket.
                        Thumb holes.
                        Machine wash/hang to dry.

                        ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"montana-wind-jacket-m-green-411","links":{},"stock":{"item_id":411,"product_id":411,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-m-green-411.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"426","_score":1,"_source":{"id":426,"sku":"MJ12-M-Black","name":"Proteus Fitness Jackshirt-M-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                        Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                        \n

                        • 1/4 zip. Stand-up collar.
                        • Machine wash/dry.
                        • Quilted inner layer.

                        ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"proteus-fitness-jackshirt-m-black-426","links":{},"stock":{"item_id":426,"product_id":426,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-m-black-426.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"434","_score":1,"_source":{"id":434,"sku":"MJ12-XL-Orange","name":"Proteus Fitness Jackshirt-XL-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                        Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                        \n

                        • 1/4 zip. Stand-up collar.
                        • Machine wash/dry.
                        • Quilted inner layer.

                        ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"proteus-fitness-jackshirt-xl-orange-434","links":{},"stock":{"item_id":434,"product_id":434,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xl-orange-434.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"437","_score":1,"_source":{"id":437,"sku":"MS04-XS-Orange","name":"Gobi HeatTec® Tee-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                        \n

                        • Orange micropolyester shirt.
                        • HeatTec® wicking fabric.
                        • Crew neckline.
                        • Machine wash/dry.

                        ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gobi-heattec-and-reg-tee-xs-orange-437","links":{},"stock":{"item_id":437,"product_id":437,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xs-orange-437.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"440","_score":1,"_source":{"id":440,"sku":"MS04-S-Orange","name":"Gobi HeatTec® Tee-S-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                        \n

                        • Orange micropolyester shirt.
                        • HeatTec® wicking fabric.
                        • Crew neckline.
                        • Machine wash/dry.

                        ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gobi-heattec-and-reg-tee-s-orange-440","links":{},"stock":{"item_id":440,"product_id":440,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-s-orange-440.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"442","_score":1,"_source":{"id":442,"sku":"MS04-M-Black","name":"Gobi HeatTec® Tee-M-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                        \n

                        • Orange micropolyester shirt.
                        • HeatTec® wicking fabric.
                        • Crew neckline.
                        • Machine wash/dry.

                        ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gobi-heattec-and-reg-tee-m-black-442","links":{},"stock":{"item_id":442,"product_id":442,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-m-black-442.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"403","_score":1,"_source":{"id":403,"sku":"MJ06","name":"Jupiter All-Weather Trainer ","attribute_set_id":9,"price":56.99,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":56.99,"description":"

                        Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                        \n

                        • Relaxed fit.
                        • Hand pockets.
                        • Machine wash/dry.
                        • Reflective safety trim.

                        ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"jupiter-all-weather-trainer","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,146,37],"eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[117,120,125,129],"pattern":"197","climate":[202,205,206,208,209],"slug":"jupiter-all-weather-trainer-403","links":{},"stock":{"item_id":403,"product_id":403,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ06-XS-Blue","id":388,"status":1,"name":"Jupiter All-Weather Trainer -XS-Blue","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"167","color":"50","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","url_key":"jupiter-all-weather-trainer-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ06-XS-Green","id":389,"status":1,"name":"Jupiter All-Weather Trainer -XS-Green","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"167","color":"53","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","url_key":"jupiter-all-weather-trainer-xs-green","msrp_display_actual_price_type":"0"},{"sku":"MJ06-XS-Purple","id":390,"status":1,"name":"Jupiter All-Weather Trainer -XS-Purple","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"167","color":"57","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","url_key":"jupiter-all-weather-trainer-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ06-S-Blue","id":391,"status":1,"name":"Jupiter All-Weather Trainer -S-Blue","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"168","color":"50","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","url_key":"jupiter-all-weather-trainer-s-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ06-S-Green","id":392,"status":1,"name":"Jupiter All-Weather Trainer -S-Green","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"168","color":"53","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","url_key":"jupiter-all-weather-trainer-s-green","msrp_display_actual_price_type":"0"},{"sku":"MJ06-S-Purple","id":393,"status":1,"name":"Jupiter All-Weather Trainer -S-Purple","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"168","color":"57","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","url_key":"jupiter-all-weather-trainer-s-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ06-M-Blue","id":394,"status":1,"name":"Jupiter All-Weather Trainer -M-Blue","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"169","color":"50","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","url_key":"jupiter-all-weather-trainer-m-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ06-M-Green","id":395,"status":1,"name":"Jupiter All-Weather Trainer -M-Green","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"169","color":"53","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","url_key":"jupiter-all-weather-trainer-m-green","msrp_display_actual_price_type":"0"},{"sku":"MJ06-M-Purple","id":396,"status":1,"name":"Jupiter All-Weather Trainer -M-Purple","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"169","color":"57","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","url_key":"jupiter-all-weather-trainer-m-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ06-L-Blue","id":397,"status":1,"name":"Jupiter All-Weather Trainer -L-Blue","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"170","color":"50","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","url_key":"jupiter-all-weather-trainer-l-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ06-L-Green","id":398,"status":1,"name":"Jupiter All-Weather Trainer -L-Green","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"170","color":"53","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","url_key":"jupiter-all-weather-trainer-l-green","msrp_display_actual_price_type":"0"},{"sku":"MJ06-L-Purple","id":399,"status":1,"name":"Jupiter All-Weather Trainer -L-Purple","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"170","color":"57","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","url_key":"jupiter-all-weather-trainer-l-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ06-XL-Blue","id":400,"status":1,"name":"Jupiter All-Weather Trainer -XL-Blue","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"171","color":"50","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","url_key":"jupiter-all-weather-trainer-xl-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ06-XL-Green","id":401,"status":1,"name":"Jupiter All-Weather Trainer -XL-Green","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"171","color":"53","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","url_key":"jupiter-all-weather-trainer-xl-green","msrp_display_actual_price_type":"0","final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701},{"sku":"MJ06-XL-Purple","id":402,"status":1,"name":"Jupiter All-Weather Trainer -XL-Purple","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"171","color":"57","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","url_key":"jupiter-all-weather-trainer-xl-purple","msrp_display_actual_price_type":"0","final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701}],"configurable_options":[{"id":45,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"}],"product_id":403,"attribute_code":"color"},{"id":44,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":403,"attribute_code":"size"}],"color_options":[50,53,57],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-403.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"537","_score":1,"_source":{"id":537,"sku":"MS06-S-Yellow","name":"Zoltan Gym Tee-S-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                        \n

                        • Relaxed fit.
                        • Crew neckline.
                        • Machine wash/dry.

                        ","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoltan-gym-tee-s-yellow-537","links":{},"stock":{"item_id":537,"product_id":537,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-s-yellow-537.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"542","_score":1,"_source":{"id":542,"sku":"MS06-L-Green","name":"Zoltan Gym Tee-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                        \n

                        • Relaxed fit.
                        • Crew neckline.
                        • Machine wash/dry.

                        ","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoltan-gym-tee-l-green-542","links":{},"stock":{"item_id":542,"product_id":542,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-l-green-542.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"541","_score":1,"_source":{"id":541,"sku":"MS06-L-Blue","name":"Zoltan Gym Tee-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                        \n

                        • Relaxed fit.
                        • Crew neckline.
                        • Machine wash/dry.

                        ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoltan-gym-tee-l-blue-541","links":{},"stock":{"item_id":541,"product_id":541,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-l-blue-541.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"547","_score":1,"_source":{"id":547,"sku":"MS06","name":"Zoltan Gym Tee","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

                        This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                        \n

                        • Relaxed fit.
                        • Crew neckline.
                        • Machine wash/dry.

                        ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"zoltan-gym-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"zoltan-gym-tee-547","links":{},"stock":{"item_id":547,"product_id":547,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS06-XS-Blue","id":532,"status":1,"name":"Zoltan Gym Tee-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","url_key":"zoltan-gym-tee-xs-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-XS-Green","id":533,"status":1,"name":"Zoltan Gym Tee-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"53","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","url_key":"zoltan-gym-tee-xs-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-XS-Yellow","id":534,"status":1,"name":"Zoltan Gym Tee-XS-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"60","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","url_key":"zoltan-gym-tee-xs-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-S-Blue","id":535,"status":1,"name":"Zoltan Gym Tee-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","url_key":"zoltan-gym-tee-s-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-S-Green","id":536,"status":1,"name":"Zoltan Gym Tee-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"53","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","url_key":"zoltan-gym-tee-s-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-S-Yellow","id":537,"status":1,"name":"Zoltan Gym Tee-S-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"60","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","url_key":"zoltan-gym-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-M-Blue","id":538,"status":1,"name":"Zoltan Gym Tee-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","url_key":"zoltan-gym-tee-m-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-M-Green","id":539,"status":1,"name":"Zoltan Gym Tee-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"53","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","url_key":"zoltan-gym-tee-m-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-M-Yellow","id":540,"status":1,"name":"Zoltan Gym Tee-M-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"60","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","url_key":"zoltan-gym-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-L-Blue","id":541,"status":1,"name":"Zoltan Gym Tee-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","url_key":"zoltan-gym-tee-l-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-L-Green","id":542,"status":1,"name":"Zoltan Gym Tee-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"53","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","url_key":"zoltan-gym-tee-l-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-L-Yellow","id":543,"status":1,"name":"Zoltan Gym Tee-L-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"60","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","url_key":"zoltan-gym-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-XL-Blue","id":544,"status":1,"name":"Zoltan Gym Tee-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","url_key":"zoltan-gym-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-XL-Green","id":545,"status":1,"name":"Zoltan Gym Tee-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"53","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","url_key":"zoltan-gym-tee-xl-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS06-XL-Yellow","id":546,"status":1,"name":"Zoltan Gym Tee-XL-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"60","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","url_key":"zoltan-gym-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":63,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":60,"label":"Yellow"}],"product_id":547,"attribute_code":"color"},{"id":62,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":547,"attribute_code":"size"}],"color_options":[50,53,60],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-547.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"467","_score":1,"_source":{"id":467,"sku":"MS05","name":"Helios EverCool™ Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":24,"description":"

                        Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                        \n

                        • Teal quick dry tee.
                        • Relaxed fit.
                        • Crew neckline.
                        • Machine wash/dry.

                        ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"helios-evercool-trade-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,149,154],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"helios-evercool-and-trade-tee-467","links":{},"stock":{"item_id":467,"product_id":467,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS05-XS-Black","id":452,"status":1,"name":"Helios EverCool™ Tee-XS-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"167","color":"49","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","url_key":"helios-evercool-trade-tee-xs-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-XS-Blue","id":453,"status":1,"name":"Helios EverCool™ Tee-XS-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"167","color":"50","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","url_key":"helios-evercool-trade-tee-xs-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-XS-Purple","id":454,"status":1,"name":"Helios EverCool™ Tee-XS-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"167","color":"57","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","url_key":"helios-evercool-trade-tee-xs-purple","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-S-Black","id":455,"status":1,"name":"Helios EverCool™ Tee-S-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"168","color":"49","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","url_key":"helios-evercool-trade-tee-s-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-S-Blue","id":456,"status":1,"name":"Helios EverCool™ Tee-S-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"168","color":"50","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","url_key":"helios-evercool-trade-tee-s-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-S-Purple","id":457,"status":1,"name":"Helios EverCool™ Tee-S-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"168","color":"57","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","url_key":"helios-evercool-trade-tee-s-purple","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-M-Black","id":458,"status":1,"name":"Helios EverCool™ Tee-M-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"169","color":"49","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","url_key":"helios-evercool-trade-tee-m-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-M-Blue","id":459,"status":1,"name":"Helios EverCool™ Tee-M-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"169","color":"50","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","url_key":"helios-evercool-trade-tee-m-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-M-Purple","id":460,"status":1,"name":"Helios EverCool™ Tee-M-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"169","color":"57","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","url_key":"helios-evercool-trade-tee-m-purple","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-L-Black","id":461,"status":1,"name":"Helios EverCool™ Tee-L-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"170","color":"49","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","url_key":"helios-evercool-trade-tee-l-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-L-Blue","id":462,"status":1,"name":"Helios EverCool™ Tee-L-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"170","color":"50","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","url_key":"helios-evercool-trade-tee-l-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-L-Purple","id":463,"status":1,"name":"Helios EverCool™ Tee-L-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"170","color":"57","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","url_key":"helios-evercool-trade-tee-l-purple","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-XL-Black","id":464,"status":1,"name":"Helios EverCool™ Tee-XL-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"171","color":"49","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","url_key":"helios-evercool-trade-tee-xl-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-XL-Blue","id":465,"status":1,"name":"Helios EverCool™ Tee-XL-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"171","color":"50","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","url_key":"helios-evercool-trade-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"MS05-XL-Purple","id":466,"status":1,"name":"Helios EverCool™ Tee-XL-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"171","color":"57","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","url_key":"helios-evercool-trade-tee-xl-purple","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001}],"configurable_options":[{"id":53,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":467,"attribute_code":"color"},{"id":52,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":467,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-467.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"515","_score":1,"_source":{"id":515,"sku":"MS12","name":"Atomic Endurance Running Tee (Crew-Neck)","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

                        Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                        \n

                        • Red polyester tee.
                        • Crew neckline.
                        • Cocona® performance fabric.
                        • Machine wash/dry.

                        ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"atomic-endurance-running-tee-crew-neck","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"atomic-endurance-running-tee-crew-neck-515","links":{},"stock":{"item_id":515,"product_id":515,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS12-XS-Black","id":500,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MS12-XS-Blue","id":501,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-xs-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-XS-Red","id":502,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"58","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-xs-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-S-Black","id":503,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-S-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-s-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-S-Blue","id":504,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-s-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-S-Red","id":505,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"58","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-s-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-M-Black","id":506,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-M-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-m-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-M-Blue","id":507,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-m-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-M-Red","id":508,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"58","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-m-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-L-Black","id":509,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-L-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-l-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-L-Blue","id":510,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-l-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-L-Red","id":511,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"58","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-l-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-XL-Black","id":512,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-xl-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-XL-Blue","id":513,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-xl-blue","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"MS12-XL-Red","id":514,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"58","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-xl-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":59,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":515,"attribute_code":"color"},{"id":58,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":515,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-515.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"560","_score":1,"_source":{"id":560,"sku":"MS01-XL-Black","name":"Aero Daily Fitness Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                        Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                        \n

                        Relaxed fit.
                        Short-Sleeve.
                        Machine wash/dry.

                        ","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"aero-daily-fitness-tee-xl-black-560","links":{},"stock":{"item_id":560,"product_id":560,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xl-black-560.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"573","_score":1,"_source":{"id":573,"sku":"MS02-L-Black","name":"Ryker LumaTech™ Tee (V-neck)-L-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                        Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                        \n

                        • Relaxed fit.
                        • Short-Sleeve.
                        • Machine wash/dry.

                        ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-v-neck-l-black-573","links":{},"stock":{"item_id":573,"product_id":573,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-l-black-573.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"578","_score":1,"_source":{"id":578,"sku":"MS02-XL-Gray","name":"Ryker LumaTech™ Tee (V-neck)-XL-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                        Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                        \n

                        • Relaxed fit.
                        • Short-Sleeve.
                        • Machine wash/dry.

                        ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-v-neck-xl-gray-578","links":{},"stock":{"item_id":578,"product_id":578,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xl-gray-578.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"599","_score":1,"_source":{"id":599,"sku":"MS07-S-Black","name":"Deion Long-Sleeve EverCool™ Tee-S-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                        \n

                        • Fitted.
                        • Contrast inner neck tape.
                        • Machine wash/dry.

                        ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"deion-long-sleeve-evercool-and-trade-tee-s-black-599","links":{},"stock":{"item_id":599,"product_id":599,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-s-black-599.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"585","_score":1,"_source":{"id":585,"sku":"MS10-S-Red","name":"Logan HeatTec® Tee-S-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                        Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                        \n

                        • Semi-fitted.
                        • Crew neckline.
                        • Machine wash/tumble dry.

                        ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"logan-heattec-and-reg-tee-s-red-585","links":{},"stock":{"item_id":585,"product_id":585,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-s-red-585.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"586","_score":1,"_source":{"id":586,"sku":"MS10-M-Black","name":"Logan HeatTec® Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                        Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                        \n

                        • Semi-fitted.
                        • Crew neckline.
                        • Machine wash/tumble dry.

                        ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"logan-heattec-and-reg-tee-m-black-586","links":{},"stock":{"item_id":586,"product_id":586,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-m-black-586.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"587","_score":1,"_source":{"id":587,"sku":"MS10-M-Blue","name":"Logan HeatTec® Tee-M-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                        Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                        \n

                        • Semi-fitted.
                        • Crew neckline.
                        • Machine wash/tumble dry.

                        ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"logan-heattec-and-reg-tee-m-blue-587","links":{},"stock":{"item_id":587,"product_id":587,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-m-blue-587.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"504","_score":1,"_source":{"id":504,"sku":"MS12-S-Blue","name":"Atomic Endurance Running Tee (Crew-Neck)-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                        \n

                        • Red polyester tee.
                        • Crew neckline.
                        • Cocona® performance fabric.
                        • Machine wash/dry.

                        ","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-crew-neck-s-blue-504","links":{},"stock":{"item_id":504,"product_id":504,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-s-blue-504.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"510","_score":1,"_source":{"id":510,"sku":"MS12-L-Blue","name":"Atomic Endurance Running Tee (Crew-Neck)-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                        \n

                        • Red polyester tee.
                        • Crew neckline.
                        • Cocona® performance fabric.
                        • Machine wash/dry.

                        ","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-crew-neck-l-blue-510","links":{},"stock":{"item_id":510,"product_id":510,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-l-blue-510.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"506","_score":1,"_source":{"id":506,"sku":"MS12-M-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-M-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                        \n

                        • Red polyester tee.
                        • Crew neckline.
                        • Cocona® performance fabric.
                        • Machine wash/dry.

                        ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-crew-neck-m-black-506","links":{},"stock":{"item_id":506,"product_id":506,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-m-black-506.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"502","_score":1,"_source":{"id":502,"sku":"MS12-XS-Red","name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                        \n

                        • Red polyester tee.
                        • Crew neckline.
                        • Cocona® performance fabric.
                        • Machine wash/dry.

                        ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-crew-neck-xs-red-502","links":{},"stock":{"item_id":502,"product_id":502,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xs-red-502.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"513","_score":1,"_source":{"id":513,"sku":"MS12-XL-Blue","name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                        \n

                        • Red polyester tee.
                        • Crew neckline.
                        • Cocona® performance fabric.
                        • Machine wash/dry.

                        ","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-crew-neck-xl-blue-513","links":{},"stock":{"item_id":513,"product_id":513,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xl-blue-513.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"518","_score":1,"_source":{"id":518,"sku":"MS03-XS-Orange","name":"Balboa Persistence Tee-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                        \n

                        • Crew neckline.
                        • Semi-fitted.
                        • Cocona® performance fabric.
                        • Machine wash/dry.

                        ","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"balboa-persistence-tee-xs-orange-518","links":{},"stock":{"item_id":518,"product_id":518,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xs-orange-518.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"521","_score":1,"_source":{"id":521,"sku":"MS03-S-Orange","name":"Balboa Persistence Tee-S-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                        \n

                        • Crew neckline.
                        • Semi-fitted.
                        • Cocona® performance fabric.
                        • Machine wash/dry.

                        ","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"balboa-persistence-tee-s-orange-521","links":{},"stock":{"item_id":521,"product_id":521,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-s-orange-521.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"457","_score":1,"_source":{"id":457,"sku":"MS05-S-Purple","name":"Helios EverCool™ Tee-S-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                        Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                        \n

                        • Teal quick dry tee.
                        • Relaxed fit.
                        • Crew neckline.
                        • Machine wash/dry.

                        ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helios-evercool-and-trade-tee-s-purple-457","links":{},"stock":{"item_id":457,"product_id":457,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-s-purple-457.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"479","_score":1,"_source":{"id":479,"sku":"MS09-L-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-L-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                        The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                        \n

                        • Royal polyester tee with black accents.
                        • Relaxed fit.
                        • Short-Sleeve.
                        • Machine wash/dry.

                        ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-crew-neck-l-red-479","links":{},"stock":{"item_id":479,"product_id":479,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-l-red-479.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"459","_score":1,"_source":{"id":459,"sku":"MS05-M-Blue","name":"Helios EverCool™ Tee-M-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                        Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                        \n

                        • Teal quick dry tee.
                        • Relaxed fit.
                        • Crew neckline.
                        • Machine wash/dry.

                        ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helios-evercool-and-trade-tee-m-blue-459","links":{},"stock":{"item_id":459,"product_id":459,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-m-blue-459.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"401","_score":1,"_source":{"id":401,"sku":"MJ06-XL-Green","name":"Jupiter All-Weather Trainer -XL-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.097701,"max_price":70.097701,"max_regular_price":70.097701,"minimal_regular_price":70.097701,"special_price":null,"minimal_price":70.097701,"regular_price":70.097701,"description":"

                        Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                        \n

                        • Relaxed fit.
                        • Hand pockets.
                        • Machine wash/dry.
                        • Reflective safety trim.

                        ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jupiter-all-weather-trainer-xl-green-401","links":{},"stock":{"item_id":401,"product_id":401,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xl-green-401.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"488","_score":1,"_source":{"id":488,"sku":"MS11-S-Green","name":"Atomic Endurance Running Tee (V-neck)-S-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                        Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                        \n

                        • Lime heathered v-neck tee.
                        • Ultra-lightweight.
                        • Moisture-wicking Cocona® fabric.
                        • Machine wash/dry.

                        ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-v-neck-s-green-488","links":{},"stock":{"item_id":488,"product_id":488,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-s-green-488.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"612","_score":1,"_source":{"id":612,"sku":"MS08-XS-Black","name":"Strike Endurance Tee-XS-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                        While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                        \n

                        • Loose fit.
                        • Ribbed cuffs/collar.
                        • Machine wash/dry.

                        ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"strike-endurance-tee-xs-black-612","links":{},"stock":{"item_id":612,"product_id":612,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-03-12 11:23:38","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xs-black-612.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"604","_score":1,"_source":{"id":604,"sku":"MS07-M-White","name":"Deion Long-Sleeve EverCool™ Tee-M-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                        \n

                        • Fitted.
                        • Contrast inner neck tape.
                        • Machine wash/dry.

                        ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"deion-long-sleeve-evercool-and-trade-tee-m-white-604","links":{},"stock":{"item_id":604,"product_id":604,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-m-white-604.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"629","_score":1,"_source":{"id":629,"sku":"MT01-XS-Orange","name":"Erikssen CoolTech™ Fitness Tank-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                        \n

                        • Red performance tank.
                        • Slight scoop neckline.
                        • Reflectivity.
                        • Machine wash/dry.

                        ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erikssen-cooltech-and-trade-fitness-tank-xs-orange-629","links":{},"stock":{"item_id":629,"product_id":629,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xs-orange-629.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"622","_score":1,"_source":{"id":622,"sku":"MS08-L-Blue","name":"Strike Endurance Tee-L-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                        \n

                        • Loose fit.
                        • Ribbed cuffs/collar.
                        • Machine wash/dry.

                        ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"strike-endurance-tee-l-blue-622","links":{},"stock":{"item_id":622,"product_id":622,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-l-blue-622.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"621","_score":1,"_source":{"id":621,"sku":"MS08-L-Black","name":"Strike Endurance Tee-L-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                        \n

                        • Loose fit.
                        • Ribbed cuffs/collar.
                        • Machine wash/dry.

                        ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"strike-endurance-tee-l-black-621","links":{},"stock":{"item_id":621,"product_id":621,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-l-black-621.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"628","_score":1,"_source":{"id":628,"sku":"MT01-XS-Gray","name":"Erikssen CoolTech™ Fitness Tank-XS-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                        \n

                        • Red performance tank.
                        • Slight scoop neckline.
                        • Reflectivity.
                        • Machine wash/dry.

                        ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erikssen-cooltech-and-trade-fitness-tank-xs-gray-628","links":{},"stock":{"item_id":628,"product_id":628,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xs-gray-628.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"637","_score":1,"_source":{"id":637,"sku":"MT01-L-Gray","name":"Erikssen CoolTech™ Fitness Tank-L-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                        \n

                        • Red performance tank.
                        • Slight scoop neckline.
                        • Reflectivity.
                        • Machine wash/dry.

                        ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erikssen-cooltech-and-trade-fitness-tank-l-gray-637","links":{},"stock":{"item_id":637,"product_id":637,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-l-gray-637.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"634","_score":1,"_source":{"id":634,"sku":"MT01-M-Gray","name":"Erikssen CoolTech™ Fitness Tank-M-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                        \n

                        • Red performance tank.
                        • Slight scoop neckline.
                        • Reflectivity.
                        • Machine wash/dry.

                        ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erikssen-cooltech-and-trade-fitness-tank-m-gray-634","links":{},"stock":{"item_id":634,"product_id":634,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-m-gray-634.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"766","_score":1,"_source":{"id":766,"sku":"MP03-36-Green","name":"Geo Insulated Jogging Pant-36-Green","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                        In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                        \n

                        • Black polyester spandex pants with zipper pockets.
                        • Reflective safety accents.
                        • Loose fit.
                        • On-seam pockets.
                        • 8\" leg zips. 32\" inseam.
                        • Machine wash/dry.

                        ","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"geo-insulated-jogging-pant-36-green-766","links":{},"stock":{"item_id":766,"product_id":766,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-36-green-766.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"758","_score":1,"_source":{"id":758,"sku":"MP03-32-Red","name":"Geo Insulated Jogging Pant-32-Red","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                        In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                        \n

                        • Black polyester spandex pants with zipper pockets.
                        • Reflective safety accents.
                        • Loose fit.
                        • On-seam pockets.
                        • 8\" leg zips. 32\" inseam.
                        • Machine wash/dry.

                        ","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"geo-insulated-jogging-pant-32-red-758","links":{},"stock":{"item_id":758,"product_id":758,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-32-red-758.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"760","_score":1,"_source":{"id":760,"sku":"MP03-33-Green","name":"Geo Insulated Jogging Pant-33-Green","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                        In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                        \n

                        • Black polyester spandex pants with zipper pockets.
                        • Reflective safety accents.
                        • Loose fit.
                        • On-seam pockets.
                        • 8\" leg zips. 32\" inseam.
                        • Machine wash/dry.

                        ","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"geo-insulated-jogging-pant-33-green-760","links":{},"stock":{"item_id":760,"product_id":760,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-33-green-760.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"774","_score":1,"_source":{"id":774,"sku":"MP04-33-Green","name":"Supernova Sport Pant-33-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                        Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                        \n

                        • Dark heather gray straight leg cotton pants.
                        • Relaxed fit.
                        • Internal drawstring.
                        • Machine wash/dry.

                        ","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","color":"53","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"supernova-sport-pant-33-green-774","links":{},"stock":{"item_id":774,"product_id":774,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-33-green-774.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"772","_score":1,"_source":{"id":772,"sku":"MP04-33-Black","name":"Supernova Sport Pant-33-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                        Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                        \n

                        • Dark heather gray straight leg cotton pants.
                        • Relaxed fit.
                        • Internal drawstring.
                        • Machine wash/dry.

                        ","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"supernova-sport-pant-33-black-772","links":{},"stock":{"item_id":772,"product_id":772,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-33-black-772.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"797","_score":1,"_source":{"id":797,"sku":"MP06-32-Orange","name":"Mithra Warmup Pant-32-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                        When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                        \n

                        • Ankle zips.
                        • Elasticized waistband with draw cord.
                        • Dual hand pockets.
                        • Reflective elements for low-light safety.

                        ","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","color":"56","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-32-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"mithra-warmup-pant-32-orange-797","links":{},"stock":{"item_id":797,"product_id":797,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-32-orange-797.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"673","_score":1,"_source":{"id":673,"sku":"MT03-XL-Red","name":"Primo Endurance Tank-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                        \n

                        • Red heather tank with gray pocket.
                        • Chafe-resistant flatlock seams.
                        • Relaxed fit.
                        • Contrast topstitching.
                        • Machine wash/dry.

                        ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"primo-endurance-tank-xl-red-673","links":{},"stock":{"item_id":673,"product_id":673,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xl-red-673.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"664","_score":1,"_source":{"id":664,"sku":"MT03-S-Red","name":"Primo Endurance Tank-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                        \n

                        • Red heather tank with gray pocket.
                        • Chafe-resistant flatlock seams.
                        • Relaxed fit.
                        • Contrast topstitching.
                        • Machine wash/dry.

                        ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"primo-endurance-tank-s-red-664","links":{},"stock":{"item_id":664,"product_id":664,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-s-red-664.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"652","_score":1,"_source":{"id":652,"sku":"MT02-M-White","name":"Tristan Endurance Tank-M-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                        \n

                        • White performance tank.
                        • Stylish contrast stitching.
                        • Relaxed fit.
                        • Ribbed crew neckline.
                        • Machine wash/dry.

                        ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tristan-endurance-tank-m-white-652","links":{},"stock":{"item_id":652,"product_id":652,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-m-white-652.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"670","_score":1,"_source":{"id":670,"sku":"MT03-L-Red","name":"Primo Endurance Tank-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                        \n

                        • Red heather tank with gray pocket.
                        • Chafe-resistant flatlock seams.
                        • Relaxed fit.
                        • Contrast topstitching.
                        • Machine wash/dry.

                        ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"primo-endurance-tank-l-red-670","links":{},"stock":{"item_id":670,"product_id":670,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-l-red-670.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"679","_score":1,"_source":{"id":679,"sku":"MT04-L-Blue","name":"Helios Endurance Tank-L-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                        When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

                        \n

                        • Blue heather tank with gray pocket.
                        • Contrast sides and back inserts.
                        • Self-fabric binding at neck and armholes.
                        • Machine wash/dry.

                        ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helios-endurance-tank-l-blue-679","links":{},"stock":{"item_id":679,"product_id":679,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-l-blue-679.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"676","_score":1,"_source":{"id":676,"sku":"MT04-XS-Blue","name":"Helios Endurance Tank-XS-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                        When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

                        \n

                        • Blue heather tank with gray pocket.
                        • Contrast sides and back inserts.
                        • Self-fabric binding at neck and armholes.
                        • Machine wash/dry.

                        ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helios-endurance-tank-xs-blue-676","links":{},"stock":{"item_id":676,"product_id":676,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-xs-blue-676.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"669","_score":1,"_source":{"id":669,"sku":"MT03-L-Blue","name":"Primo Endurance Tank-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                        \n

                        • Red heather tank with gray pocket.
                        • Chafe-resistant flatlock seams.
                        • Relaxed fit.
                        • Contrast topstitching.
                        • Machine wash/dry.

                        ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"primo-endurance-tank-l-blue-669","links":{},"stock":{"item_id":669,"product_id":669,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-l-blue-669.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"736","_score":1,"_source":{"id":736,"sku":"MP01-34-Black","name":"Caesar Warm-Up Pant-34-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                        Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                        \n

                        • Light gray heather knit straight leg pants.
                        • Relaxed fit.
                        • Inseam: 32\".
                        • Machine wash/dry.
                        • CoolTech™ wicking fabric.

                        ","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"caesar-warm-up-pant-34-black-736","links":{},"stock":{"item_id":736,"product_id":736,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-34-black-736.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"746","_score":1,"_source":{"id":746,"sku":"MP02-33-Blue","name":"Viktor LumaTech™ Pant-33-Blue","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001,"description":"

                        You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                        \n

                        • Dark gray polyester/spandex straight leg pants.
                        • Elastic waistband and internal drawstring.
                        • Relaxed fit.
                        • Machine wash/dry.

                        ","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","color":"50","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"viktor-lumatech-and-trade-pant-33-blue-746","links":{},"stock":{"item_id":746,"product_id":746,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-33-blue-746.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"732","_score":1,"_source":{"id":732,"sku":"MP01-32-Purple","name":"Caesar Warm-Up Pant-32-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                        Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                        \n

                        • Light gray heather knit straight leg pants.
                        • Relaxed fit.
                        • Inseam: 32\".
                        • Machine wash/dry.
                        • CoolTech™ wicking fabric.

                        ","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","color":"57","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"caesar-warm-up-pant-32-purple-732","links":{},"stock":{"item_id":732,"product_id":732,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-32-purple-732.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"737","_score":1,"_source":{"id":737,"sku":"MP01-34-Gray","name":"Caesar Warm-Up Pant-34-Gray","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                        Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                        \n

                        • Light gray heather knit straight leg pants.
                        • Relaxed fit.
                        • Inseam: 32\".
                        • Machine wash/dry.
                        • CoolTech™ wicking fabric.

                        ","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"caesar-warm-up-pant-34-gray-737","links":{},"stock":{"item_id":737,"product_id":737,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-34-gray-737.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"706","_score":1,"_source":{"id":706,"sku":"MT09-XS-Blue","name":"Sinbad Fitness Tank-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

                        \n

                        • Teal polyester tank.
                        • Premium fit tank top.
                        • Ultra lightweight.
                        • Naturally odor-resistant.

                        ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"sinbad-fitness-tank-xs-blue-706","links":{},"stock":{"item_id":706,"product_id":706,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-xs-blue-706.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"716","_score":1,"_source":{"id":716,"sku":"MT10-XL-Yellow","name":"Tiberius Gym Tank-XL-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22.140001,"max_price":22.140001,"max_regular_price":22.140001,"minimal_regular_price":22.140001,"special_price":null,"minimal_price":22.140001,"regular_price":22.140001,"description":"

                        Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

                        \n

                        • Yellow scoop neck cotton tank.
                        • Comfortable, relaxed fit.
                        • 55% Hemp / 45% Organic Cotton.
                        • Pesticide- and herbicide-free hemp.

                        ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tiberius-gym-tank-xl-yellow-716","links":{},"stock":{"item_id":716,"product_id":716,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-xl-yellow-716.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"745","_score":1,"_source":{"id":745,"sku":"MP02-32-Red","name":"Viktor LumaTech™ Pant-32-Red","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.580001,"max_price":56.580001,"max_regular_price":56.580001,"minimal_regular_price":56.580001,"special_price":null,"minimal_price":56.580001,"regular_price":56.580001,"description":"

                        You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                        \n

                        • Dark gray polyester/spandex straight leg pants.
                        • Elastic waistband and internal drawstring.
                        • Relaxed fit.
                        • Machine wash/dry.

                        ","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","color":"58","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"viktor-lumatech-and-trade-pant-32-red-745","links":{},"stock":{"item_id":745,"product_id":745,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-32-red-745.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"632","_score":1,"_source":{"id":632,"sku":"MT01-S-Orange","name":"Erikssen CoolTech™ Fitness Tank-S-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                        \n

                        • Red performance tank.
                        • Slight scoop neckline.
                        • Reflectivity.
                        • Machine wash/dry.

                        ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erikssen-cooltech-and-trade-fitness-tank-s-orange-632","links":{},"stock":{"item_id":632,"product_id":632,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-s-orange-632.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"642","_score":1,"_source":{"id":642,"sku":"MT01-XL-Red","name":"Erikssen CoolTech™ Fitness Tank-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                        \n

                        • Red performance tank.
                        • Slight scoop neckline.
                        • Reflectivity.
                        • Machine wash/dry.

                        ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erikssen-cooltech-and-trade-fitness-tank-xl-red-642","links":{},"stock":{"item_id":642,"product_id":642,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xl-red-642.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"614","_score":1,"_source":{"id":614,"sku":"MS08-XS-Red","name":"Strike Endurance Tee-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                        \n

                        • Loose fit.
                        • Ribbed cuffs/collar.
                        • Machine wash/dry.

                        ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"strike-endurance-tee-xs-red-614","links":{},"stock":{"item_id":614,"product_id":614,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xs-red-614.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"686","_score":1,"_source":{"id":686,"sku":"MT05-XL-Blue","name":"Rocco Gym Tank-XL-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                        Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

                        \n

                        • Light blue heather gray tank.
                        • Quick-drying, moisture-wicking.
                        • 4-way stretch construction.
                        • Flatlock seams prevent chafing.
                        • Mesh at back for breathability.
                        • 100% Polyester.
                        • UPF 50 protection.

                        ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"rocco-gym-tank-xl-blue-686","links":{},"stock":{"item_id":686,"product_id":686,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-xl-blue-686.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"680","_score":1,"_source":{"id":680,"sku":"MT04-XL-Blue","name":"Helios Endurance Tank-XL-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                        When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

                        \n

                        • Blue heather tank with gray pocket.
                        • Contrast sides and back inserts.
                        • Self-fabric binding at neck and armholes.
                        • Machine wash/dry.

                        ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helios-endurance-tank-xl-blue-680","links":{},"stock":{"item_id":680,"product_id":680,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-xl-blue-680.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"606","_score":1,"_source":{"id":606,"sku":"MS07-L-Green","name":"Deion Long-Sleeve EverCool™ Tee-L-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                        \n

                        • Fitted.
                        • Contrast inner neck tape.
                        • Machine wash/dry.

                        ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"deion-long-sleeve-evercool-and-trade-tee-l-green-606","links":{},"stock":{"item_id":606,"product_id":606,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-l-green-606.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"593","_score":1,"_source":{"id":593,"sku":"MS10-XL-Blue","name":"Logan HeatTec® Tee-XL-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                        Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                        \n

                        • Semi-fitted.
                        • Crew neckline.
                        • Machine wash/tumble dry.

                        ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"logan-heattec-and-reg-tee-xl-blue-593","links":{},"stock":{"item_id":593,"product_id":593,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xl-blue-593.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"894","_score":1,"_source":{"id":894,"sku":"MSH01-34-Red","name":"Cobalt CoolTech™ Fitness Short-34-Red","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

                        It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                        \n

                        • Light blue nylon shorts.
                        • Relaxed fit.
                        • 5\" inseam.
                        • Machine wash/dry.

                        ","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","color":"58","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cobalt-cooltech-and-trade-fitness-short-34-red-894","links":{},"stock":{"item_id":894,"product_id":894,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-34-red-894.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"889","_score":1,"_source":{"id":889,"sku":"MSH01-33-Black","name":"Cobalt CoolTech™ Fitness Short-33-Black","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

                        It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                        \n

                        • Light blue nylon shorts.
                        • Relaxed fit.
                        • 5\" inseam.
                        • Machine wash/dry.

                        ","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","color":"49","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cobalt-cooltech-and-trade-fitness-short-33-black-889","links":{},"stock":{"item_id":889,"product_id":889,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-33-black-889.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"885","_score":1,"_source":{"id":885,"sku":"MP12","name":"Cronus Yoga Pant ","attribute_set_id":10,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":48,"description":"

                        Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                        \n

                        • Drawstring waist.
                        • Loose, straight-leg fit.
                        • Lightweight cotton-recycled blend.
                        • Front pockets with stitching detail.
                        • Elastic ankle.

                        ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cronus-yoga-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[38,33,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,115,109],"pattern":"197","climate":[204,205,206,208,210,211],"slug":"cronus-yoga-pant-885","links":{},"stock":{"item_id":885,"product_id":885,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP12-32-Black","id":873,"status":1,"name":"Cronus Yoga Pant -32-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"49","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","url_key":"cronus-yoga-pant-32-black","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"MP12-32-Blue","id":874,"status":1,"name":"Cronus Yoga Pant -32-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"50","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","url_key":"cronus-yoga-pant-32-blue","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"MP12-32-Red","id":875,"status":1,"name":"Cronus Yoga Pant -32-Red","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"58","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","url_key":"cronus-yoga-pant-32-red","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"MP12-33-Black","id":876,"status":1,"name":"Cronus Yoga Pant -33-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"49","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","url_key":"cronus-yoga-pant-33-black","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"MP12-33-Blue","id":877,"status":1,"name":"Cronus Yoga Pant -33-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"50","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","url_key":"cronus-yoga-pant-33-blue","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"MP12-33-Red","id":878,"status":1,"name":"Cronus Yoga Pant -33-Red","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"58","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","url_key":"cronus-yoga-pant-33-red","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"MP12-34-Black","id":879,"status":1,"name":"Cronus Yoga Pant -34-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"49","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","url_key":"cronus-yoga-pant-34-black","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"MP12-34-Blue","id":880,"status":1,"name":"Cronus Yoga Pant -34-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"50","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","url_key":"cronus-yoga-pant-34-blue","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"MP12-34-Red","id":881,"status":1,"name":"Cronus Yoga Pant -34-Red","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"58","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","url_key":"cronus-yoga-pant-34-red","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"MP12-36-Black","id":882,"status":1,"name":"Cronus Yoga Pant -36-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"49","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","url_key":"cronus-yoga-pant-36-black","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"MP12-36-Blue","id":883,"status":1,"name":"Cronus Yoga Pant -36-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"50","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","url_key":"cronus-yoga-pant-36-blue","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"MP12-36-Red","id":884,"status":1,"name":"Cronus Yoga Pant -36-Red","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"58","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","url_key":"cronus-yoga-pant-36-red","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001}],"configurable_options":[{"id":121,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":885,"attribute_code":"color"},{"id":120,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":885,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-885.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"807","_score":1,"_source":{"id":807,"sku":"MP06","name":"Mithra Warmup Pant","attribute_set_id":10,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":28,"description":"

                        When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                        \n

                        • Ankle zips.
                        • Elasticized waistband with draw cord.
                        • Dual hand pockets.
                        • Reflective elements for low-light safety.

                        ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mithra-warmup-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,146,154,38,159],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,113],"pattern":"197","climate":[202,203,204,206,210,211],"slug":"mithra-warmup-pant-807","links":{},"stock":{"item_id":807,"product_id":807,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP06-32-Gray","id":795,"status":1,"name":"Mithra Warmup Pant-32-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"176","color":"52","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","url_key":"mithra-warmup-pant-32-gray","msrp_display_actual_price_type":"0"},{"sku":"MP06-32-Green","id":796,"status":1,"name":"Mithra Warmup Pant-32-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"176","color":"53","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","url_key":"mithra-warmup-pant-32-green","msrp_display_actual_price_type":"0"},{"sku":"MP06-32-Orange","id":797,"status":1,"name":"Mithra Warmup Pant-32-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"176","color":"56","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","url_key":"mithra-warmup-pant-32-orange","msrp_display_actual_price_type":"0"},{"sku":"MP06-33-Gray","id":798,"status":1,"name":"Mithra Warmup Pant-33-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"177","color":"52","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","url_key":"mithra-warmup-pant-33-gray","msrp_display_actual_price_type":"0"},{"sku":"MP06-33-Green","id":799,"status":1,"name":"Mithra Warmup Pant-33-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"177","color":"53","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","url_key":"mithra-warmup-pant-33-green","msrp_display_actual_price_type":"0"},{"sku":"MP06-33-Orange","id":800,"status":1,"name":"Mithra Warmup Pant-33-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"177","color":"56","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","url_key":"mithra-warmup-pant-33-orange","msrp_display_actual_price_type":"0"},{"sku":"MP06-34-Gray","id":801,"status":1,"name":"Mithra Warmup Pant-34-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"178","color":"52","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","url_key":"mithra-warmup-pant-34-gray","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MP06-34-Green","id":802,"status":1,"name":"Mithra Warmup Pant-34-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"178","color":"53","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","url_key":"mithra-warmup-pant-34-green","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MP06-34-Orange","id":803,"status":1,"name":"Mithra Warmup Pant-34-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"178","color":"56","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","url_key":"mithra-warmup-pant-34-orange","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MP06-36-Gray","id":804,"status":1,"name":"Mithra Warmup Pant-36-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"179","color":"52","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","url_key":"mithra-warmup-pant-36-gray","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MP06-36-Green","id":805,"status":1,"name":"Mithra Warmup Pant-36-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"179","color":"53","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","url_key":"mithra-warmup-pant-36-green","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"MP06-36-Orange","id":806,"status":1,"name":"Mithra Warmup Pant-36-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"179","color":"56","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","url_key":"mithra-warmup-pant-36-orange","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001}],"configurable_options":[{"id":109,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":807,"attribute_code":"color"},{"id":108,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":807,"attribute_code":"size"}],"color_options":[52,53,56],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-807.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"851","_score":1,"_source":{"id":851,"sku":"MP10-33-Blue","name":"Orestes Yoga Pant -33-Blue","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                        The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                        \n

                        • A yoga essential.
                        • Breathable stretch organic cotton/spandex.
                        • Standard Fit.

                        ","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-yoga-pant-33-blue-851","links":{},"stock":{"item_id":851,"product_id":851,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-33-blue-851.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"871","_score":1,"_source":{"id":871,"sku":"MP11-36-Green","name":"Aether Gym Pant -36-Green","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                        The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                        \n

                        • Pants/shorts convertible.
                        • Lightweight moisture wicking.
                        • Water repellent.
                        • Belted waist.

                        ","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"aether-gym-pant-36-green-871","links":{},"stock":{"item_id":871,"product_id":871,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-36-green-871.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"867","_score":1,"_source":{"id":867,"sku":"MP11-34-Brown","name":"Aether Gym Pant -34-Brown","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                        The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                        \n

                        • Pants/shorts convertible.
                        • Lightweight moisture wicking.
                        • Water repellent.
                        • Belted waist.

                        ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","color":"51","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-34-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"aether-gym-pant-34-brown-867","links":{},"stock":{"item_id":867,"product_id":867,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-34-brown-867.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"887","_score":1,"_source":{"id":887,"sku":"MSH01-32-Blue","name":"Cobalt CoolTech™ Fitness Short-32-Blue","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

                        It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                        \n

                        • Light blue nylon shorts.
                        • Relaxed fit.
                        • 5\" inseam.
                        • Machine wash/dry.

                        ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","color":"50","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cobalt-cooltech-and-trade-fitness-short-32-blue-887","links":{},"stock":{"item_id":887,"product_id":887,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-32-blue-887.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"883","_score":1,"_source":{"id":883,"sku":"MP12-36-Blue","name":"Cronus Yoga Pant -36-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                        Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                        \n

                        • Drawstring waist.
                        • Loose, straight-leg fit.
                        • Lightweight cotton-recycled blend.
                        • Front pockets with stitching detail.
                        • Elastic ankle.

                        ","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","color":"50","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cronus-yoga-pant-36-blue-883","links":{},"stock":{"item_id":883,"product_id":883,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-36-blue-883.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"812","_score":1,"_source":{"id":812,"sku":"MP07-33-Blue","name":"Thorpe Track Pant-33-Blue","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                        Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                        \n

                        • Moisture transfer properties.
                        • 7% stretch.
                        • Reflective safety trim.
                        • Elastic drawcord waist.

                        ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"thorpe-track-pant-33-blue-812","links":{},"stock":{"item_id":812,"product_id":812,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-33-blue-812.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"816","_score":1,"_source":{"id":816,"sku":"MP07-34-Purple","name":"Thorpe Track Pant-34-Purple","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                        Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                        \n

                        • Moisture transfer properties.
                        • 7% stretch.
                        • Reflective safety trim.
                        • Elastic drawcord waist.

                        ","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","color":"57","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"thorpe-track-pant-34-purple-816","links":{},"stock":{"item_id":816,"product_id":816,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-34-purple-816.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"837","_score":1,"_source":{"id":837,"sku":"MP09-33-Black","name":"Livingston All-Purpose Tight-33-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                        It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                        \n

                        • Breathable stretch organic cotton/spandex.
                        • Compression fit
                        • Hidden key pocket
                        • Elastic waist with internal drawcord.

                        ","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","color":"49","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"livingston-all-purpose-tight-33-black-837","links":{},"stock":{"item_id":837,"product_id":837,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-33-black-837.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"843","_score":1,"_source":{"id":843,"sku":"MP09-36-Black","name":"Livingston All-Purpose Tight-36-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                        It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                        \n

                        • Breathable stretch organic cotton/spandex.
                        • Compression fit
                        • Hidden key pocket
                        • Elastic waist with internal drawcord.

                        ","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","color":"49","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"livingston-all-purpose-tight-36-black-843","links":{},"stock":{"item_id":843,"product_id":843,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-36-black-843.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"850","_score":1,"_source":{"id":850,"sku":"MP10-33-Black","name":"Orestes Yoga Pant -33-Black","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                        The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                        \n

                        • A yoga essential.
                        • Breathable stretch organic cotton/spandex.
                        • Standard Fit.

                        ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","color":"49","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-yoga-pant-33-black-850","links":{},"stock":{"item_id":850,"product_id":850,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-33-black-850.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"868","_score":1,"_source":{"id":868,"sku":"MP11-34-Green","name":"Aether Gym Pant -34-Green","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                        The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                        \n

                        • Pants/shorts convertible.
                        • Lightweight moisture wicking.
                        • Water repellent.
                        • Belted waist.

                        ","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"aether-gym-pant-34-green-868","links":{},"stock":{"item_id":868,"product_id":868,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-34-green-868.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"863","_score":1,"_source":{"id":863,"sku":"MP11-33-Blue","name":"Aether Gym Pant -33-Blue","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":91.020001,"max_price":91.020001,"max_regular_price":91.020001,"minimal_regular_price":91.020001,"special_price":null,"minimal_price":91.020001,"regular_price":91.020001,"description":"

                        The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                        \n

                        • Pants/shorts convertible.
                        • Lightweight moisture wicking.
                        • Water repellent.
                        • Belted waist.

                        ","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"aether-gym-pant-33-blue-863","links":{},"stock":{"item_id":863,"product_id":863,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-33-blue-863.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"783","_score":1,"_source":{"id":783,"sku":"MP05-32-Blue","name":"Kratos Gym Pant-32-Blue","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                        Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                        \n

                        • Navy cotton straight leg pants.
                        • Relaxed fit.
                        • 2 side-seam pockets.
                        • Internal zip pocket.
                        • Drawstring waist.
                        • Machine wash/dry.

                        ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"kratos-gym-pant-32-blue-783","links":{},"stock":{"item_id":783,"product_id":783,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-32-blue-783.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"802","_score":1,"_source":{"id":802,"sku":"MP06-34-Green","name":"Mithra Warmup Pant-34-Green","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                        When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                        \n

                        • Ankle zips.
                        • Elasticized waistband with draw cord.
                        • Dual hand pockets.
                        • Reflective elements for low-light safety.

                        ","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","color":"53","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"mithra-warmup-pant-34-green-802","links":{},"stock":{"item_id":802,"product_id":802,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-34-green-802.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"857","_score":1,"_source":{"id":857,"sku":"MP10-36-Blue","name":"Orestes Yoga Pant -36-Blue","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":81.180001,"max_price":81.180001,"max_regular_price":81.180001,"minimal_regular_price":81.180001,"special_price":null,"minimal_price":81.180001,"regular_price":81.180001,"description":"

                        The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                        \n

                        • A yoga essential.
                        • Breathable stretch organic cotton/spandex.
                        • Standard Fit.

                        ","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-yoga-pant-36-blue-857","links":{},"stock":{"item_id":857,"product_id":857,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-36-blue-857.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"941","_score":1,"_source":{"id":941,"sku":"MSH05-36-Gray","name":"Hawkeye Yoga Short-36-Gray","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                        \n

                        • Dark gray shorts with red accents.
                        • 92% Organic Cotton 8% Spandex.
                        • Breathable stretch organic cotton.
                        • Medium=8.0\" (21.0cm) inseam.

                        ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","color":"52","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"hawkeye-yoga-short-36-gray-941","links":{},"stock":{"item_id":941,"product_id":941,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-36-gray-941.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"949","_score":1,"_source":{"id":949,"sku":"MSH06-34-Blue","name":"Lono Yoga Short-34-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                        Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                        \n

                        • Dark gray shorts with mesh accents.
                        • Ultra flexible four-way stretch.
                        • Flatlock seams and waistband.
                        • Two pockets, phony fly.
                        • Nylon/Lycra outer, Polyester/Lycra inner.

                        ","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"lono-yoga-short-34-blue-949","links":{},"stock":{"item_id":949,"product_id":949,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-34-blue-949.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"929","_score":1,"_source":{"id":929,"sku":"MSH04","name":"Torque Power Short","attribute_set_id":10,"price":32.5,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":32.5,"description":"

                        Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                        \n

                        • Light gray shorts.
                        • Fitted design.
                        • Elastic waistband.
                        • Flat-seam construction.
                        • 7\" inseam.
                        • Machine wash/dry.

                        ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"torque-power-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[205,212,206,208,209],"slug":"torque-power-short-929","links":{},"stock":{"item_id":929,"product_id":929,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH04-32-Gray","id":917,"status":1,"name":"Torque Power Short-32-Gray","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"52","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","url_key":"torque-power-short-32-gray","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH04-32-Purple","id":918,"status":1,"name":"Torque Power Short-32-Purple","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"57","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","url_key":"torque-power-short-32-purple","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH04-32-Yellow","id":919,"status":1,"name":"Torque Power Short-32-Yellow","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"60","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","url_key":"torque-power-short-32-yellow","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH04-33-Gray","id":920,"status":1,"name":"Torque Power Short-33-Gray","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"52","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","url_key":"torque-power-short-33-gray","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH04-33-Purple","id":921,"status":1,"name":"Torque Power Short-33-Purple","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"57","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","url_key":"torque-power-short-33-purple","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH04-33-Yellow","id":922,"status":1,"name":"Torque Power Short-33-Yellow","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"60","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","url_key":"torque-power-short-33-yellow","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH04-34-Gray","id":923,"status":1,"name":"Torque Power Short-34-Gray","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"52","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","url_key":"torque-power-short-34-gray","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH04-34-Purple","id":924,"status":1,"name":"Torque Power Short-34-Purple","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"57","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","url_key":"torque-power-short-34-purple","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH04-34-Yellow","id":925,"status":1,"name":"Torque Power Short-34-Yellow","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"60","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","url_key":"torque-power-short-34-yellow","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH04-36-Gray","id":926,"status":1,"name":"Torque Power Short-36-Gray","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"52","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","url_key":"torque-power-short-36-gray","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH04-36-Purple","id":927,"status":1,"name":"Torque Power Short-36-Purple","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"57","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","url_key":"torque-power-short-36-purple","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001},{"sku":"MSH04-36-Yellow","id":928,"status":1,"name":"Torque Power Short-36-Yellow","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"60","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","url_key":"torque-power-short-36-yellow","msrp_display_actual_price_type":"0","final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001}],"configurable_options":[{"id":129,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"},{"value_index":60,"label":"Yellow"}],"product_id":929,"attribute_code":"color"},{"id":128,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":929,"attribute_code":"size"}],"color_options":[52,57,60],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-929.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1049","_score":1,"_source":{"id":1049,"sku":"WH01","name":"Mona Pullover Hoodlie","attribute_set_id":9,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                        • Light green heathered hoodie.
                        • Long-Sleeve, pullover.
                        • Long elliptical hem for extra coverage.
                        • Deep button placket for layering.
                        • Double rib design.
                        • Mid layer, mid weight.
                        • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mona-pullover-hoodlie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":[138,137],"pattern":"197","climate":[202,204,206,208],"slug":"mona-pullover-hoodlie-1049","links":{},"stock":{"item_id":1049,"product_id":1049,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH01-XS-Green","id":1034,"status":1,"name":"Mona Pullover Hoodlie-XS-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"167","color":"53","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","url_key":"mona-pullover-hoodlie-xs-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-XS-Orange","id":1035,"status":1,"name":"Mona Pullover Hoodlie-XS-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"167","color":"56","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","url_key":"mona-pullover-hoodlie-xs-orange","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-XS-Purple","id":1036,"status":1,"name":"Mona Pullover Hoodlie-XS-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"167","color":"57","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","url_key":"mona-pullover-hoodlie-xs-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-S-Green","id":1037,"status":1,"name":"Mona Pullover Hoodlie-S-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"168","color":"53","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","url_key":"mona-pullover-hoodlie-s-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-S-Orange","id":1038,"status":1,"name":"Mona Pullover Hoodlie-S-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"168","color":"56","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","url_key":"mona-pullover-hoodlie-s-orange","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-S-Purple","id":1039,"status":1,"name":"Mona Pullover Hoodlie-S-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"168","color":"57","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","url_key":"mona-pullover-hoodlie-s-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-M-Green","id":1040,"status":1,"name":"Mona Pullover Hoodlie-M-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"169","color":"53","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","url_key":"mona-pullover-hoodlie-m-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-M-Orange","id":1041,"status":1,"name":"Mona Pullover Hoodlie-M-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"169","color":"56","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","url_key":"mona-pullover-hoodlie-m-orange","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-M-Purple","id":1042,"status":1,"name":"Mona Pullover Hoodlie-M-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"169","color":"57","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","url_key":"mona-pullover-hoodlie-m-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-L-Green","id":1043,"status":1,"name":"Mona Pullover Hoodlie-L-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"170","color":"53","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","url_key":"mona-pullover-hoodlie-l-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-L-Orange","id":1044,"status":1,"name":"Mona Pullover Hoodlie-L-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"170","color":"56","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","url_key":"mona-pullover-hoodlie-l-orange","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-L-Purple","id":1045,"status":1,"name":"Mona Pullover Hoodlie-L-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"170","color":"57","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","url_key":"mona-pullover-hoodlie-l-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-XL-Green","id":1046,"status":1,"name":"Mona Pullover Hoodlie-XL-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"171","color":"53","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","url_key":"mona-pullover-hoodlie-xl-green","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-XL-Orange","id":1047,"status":1,"name":"Mona Pullover Hoodlie-XL-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"171","color":"56","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","url_key":"mona-pullover-hoodlie-xl-orange","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001},{"sku":"WH01-XL-Purple","id":1048,"status":1,"name":"Mona Pullover Hoodlie-XL-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"171","color":"57","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","url_key":"mona-pullover-hoodlie-xl-purple","msrp_display_actual_price_type":"0","final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001}],"configurable_options":[{"id":147,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1049,"attribute_code":"color"},{"id":146,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1049,"attribute_code":"size"}],"color_options":[53,56,57],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-1049.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1056","_score":1,"_source":{"id":1056,"sku":"WH02-M-Blue","name":"Hera Pullover Hoodie-M-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                        Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                        \n

                        • Teal with purple stiching.
                        • Hoodie pullover.
                        • Snug fit.

                        ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hera-pullover-hoodie-m-blue-1056","links":{},"stock":{"item_id":1056,"product_id":1056,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-m-blue-1056.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1058","_score":1,"_source":{"id":1058,"sku":"WH02-M-Orange","name":"Hera Pullover Hoodie-M-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                        Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                        \n

                        • Teal with purple stiching.
                        • Hoodie pullover.
                        • Snug fit.

                        ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hera-pullover-hoodie-m-orange-1058","links":{},"stock":{"item_id":1058,"product_id":1058,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-m-orange-1058.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1051","_score":1,"_source":{"id":1051,"sku":"WH02-XS-Green","name":"Hera Pullover Hoodie-XS-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:07","updated_at":"2017-11-06 12:17:07","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                        Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                        \n

                        • Teal with purple stiching.
                        • Hoodie pullover.
                        • Snug fit.

                        ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hera-pullover-hoodie-xs-green-1051","links":{},"stock":{"item_id":1051,"product_id":1051,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xs-green-1051.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1068","_score":1,"_source":{"id":1068,"sku":"WH03-XS-Red","name":"Autumn Pullie-XS-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                        With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                        \n

                        • Cayenne Short-Sleeve roll neck sweatshirt.
                        • Relaxed fit.
                        • Short-Sleeves.
                        • Machine wash/dry.

                        ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"autumn-pullie-xs-red-1068","links":{},"stock":{"item_id":1068,"product_id":1068,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xs-red-1068.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1074","_score":1,"_source":{"id":1074,"sku":"WH03-M-Red","name":"Autumn Pullie-M-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                        With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                        \n

                        • Cayenne Short-Sleeve roll neck sweatshirt.
                        • Relaxed fit.
                        • Short-Sleeves.
                        • Machine wash/dry.

                        ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"autumn-pullie-m-red-1074","links":{},"stock":{"item_id":1074,"product_id":1074,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-m-red-1074.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1062","_score":1,"_source":{"id":1062,"sku":"WH02-XL-Blue","name":"Hera Pullover Hoodie-XL-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                        Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                        \n

                        • Teal with purple stiching.
                        • Hoodie pullover.
                        • Snug fit.

                        ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hera-pullover-hoodie-xl-blue-1062","links":{},"stock":{"item_id":1062,"product_id":1062,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xl-blue-1062.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1071","_score":1,"_source":{"id":1071,"sku":"WH03-S-Red","name":"Autumn Pullie-S-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                        With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                        \n

                        • Cayenne Short-Sleeve roll neck sweatshirt.
                        • Relaxed fit.
                        • Short-Sleeves.
                        • Machine wash/dry.

                        ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"autumn-pullie-s-red-1071","links":{},"stock":{"item_id":1071,"product_id":1071,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-s-red-1071.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1083","_score":1,"_source":{"id":1083,"sku":"WH04-XS-Orange","name":"Miko Pullover Hoodie-XS-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                        \n

                        • Teal two-tone hoodie.
                        • Low scoop neckline.
                        • Adjustable hood drawstrings.
                        • Longer rounded hemline for extra back coverage.
                        • Long-Sleeve style.

                        ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"miko-pullover-hoodie-xs-orange-1083","links":{},"stock":{"item_id":1083,"product_id":1083,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xs-orange-1083.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1098","_score":1,"_source":{"id":1098,"sku":"WH05-XS-Orange","name":"Selene Yoga Hoodie-XS-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                        The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                        \n

                        • Ivory heather full zip 3/4 sleeve hoodie.
                        • Zip pocket at arm for convenient storage.
                        • 24.0\" body length.
                        • 89% Polyester / 11% Spandex.

                        ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"selene-yoga-hoodie-xs-orange-1098","links":{},"stock":{"item_id":1098,"product_id":1098,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xs-orange-1098.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1079","_score":1,"_source":{"id":1079,"sku":"WH03-XL-Purple","name":"Autumn Pullie-XL-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                        With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                        \n

                        • Cayenne Short-Sleeve roll neck sweatshirt.
                        • Relaxed fit.
                        • Short-Sleeves.
                        • Machine wash/dry.

                        ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"autumn-pullie-xl-purple-1079","links":{},"stock":{"item_id":1079,"product_id":1079,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xl-purple-1079.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1091","_score":1,"_source":{"id":1091,"sku":"WH04-L-Blue","name":"Miko Pullover Hoodie-L-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                        \n

                        • Teal two-tone hoodie.
                        • Low scoop neckline.
                        • Adjustable hood drawstrings.
                        • Longer rounded hemline for extra back coverage.
                        • Long-Sleeve style.

                        ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"miko-pullover-hoodie-l-blue-1091","links":{},"stock":{"item_id":1091,"product_id":1091,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-l-blue-1091.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"906","_score":1,"_source":{"id":906,"sku":"MSH03-32-Green","name":"Meteor Workout Short-32-Green","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                        Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                        \n

                        • Royal blue shorts with light blue accents.
                        • Interior drawstring waistband.
                        • 7\" inseam.
                        • Machine wash/dry.

                        ","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"meteor-workout-short-32-green-906","links":{},"stock":{"item_id":906,"product_id":906,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-32-green-906.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"918","_score":1,"_source":{"id":918,"sku":"MSH04-32-Purple","name":"Torque Power Short-32-Purple","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                        Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                        \n

                        • Light gray shorts.
                        • Fitted design.
                        • Elastic waistband.
                        • Flat-seam construction.
                        • 7\" inseam.
                        • Machine wash/dry.

                        ","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","color":"57","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"torque-power-short-32-purple-918","links":{},"stock":{"item_id":918,"product_id":918,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-32-purple-918.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"908","_score":1,"_source":{"id":908,"sku":"MSH03-33-Blue","name":"Meteor Workout Short-33-Blue","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                        Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                        \n

                        • Royal blue shorts with light blue accents.
                        • Interior drawstring waistband.
                        • 7\" inseam.
                        • Machine wash/dry.

                        ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"meteor-workout-short-33-blue-908","links":{},"stock":{"item_id":908,"product_id":908,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-33-blue-908.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"923","_score":1,"_source":{"id":923,"sku":"MSH04-34-Gray","name":"Torque Power Short-34-Gray","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                        Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                        \n

                        • Light gray shorts.
                        • Fitted design.
                        • Elastic waistband.
                        • Flat-seam construction.
                        • 7\" inseam.
                        • Machine wash/dry.

                        ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","color":"52","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"torque-power-short-34-gray-923","links":{},"stock":{"item_id":923,"product_id":923,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-34-gray-923.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"901","_score":1,"_source":{"id":901,"sku":"MSH02-34-Black","name":"Apollo Running Short-34-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                        Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

                        \n

                        • Black shorts with green accents.
                        • Side pockets.
                        • 4\" inseam.
                        • Machine wash/dry.

                        ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"apollo-running-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"apollo-running-short-34-black-901","links":{},"stock":{"item_id":901,"product_id":901,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-34-black-901.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"919","_score":1,"_source":{"id":919,"sku":"MSH04-32-Yellow","name":"Torque Power Short-32-Yellow","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                        Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                        \n

                        • Light gray shorts.
                        • Fitted design.
                        • Elastic waistband.
                        • Flat-seam construction.
                        • 7\" inseam.
                        • Machine wash/dry.

                        ","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","color":"60","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-32-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"torque-power-short-32-yellow-919","links":{},"stock":{"item_id":919,"product_id":919,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-32-yellow-919.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"950","_score":1,"_source":{"id":950,"sku":"MSH06-34-Gray","name":"Lono Yoga Short-34-Gray","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                        Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                        \n

                        • Dark gray shorts with mesh accents.
                        • Ultra flexible four-way stretch.
                        • Flatlock seams and waistband.
                        • Two pockets, phony fly.
                        • Nylon/Lycra outer, Polyester/Lycra inner.

                        ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","color":"52","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"lono-yoga-short-34-gray-950","links":{},"stock":{"item_id":950,"product_id":950,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-34-gray-950.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"931","_score":1,"_source":{"id":931,"sku":"MSH05-32-Blue","name":"Hawkeye Yoga Short-32-Blue","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                        \n

                        • Dark gray shorts with red accents.
                        • 92% Organic Cotton 8% Spandex.
                        • Breathable stretch organic cotton.
                        • Medium=8.0\" (21.0cm) inseam.

                        ","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"hawkeye-yoga-short-32-blue-931","links":{},"stock":{"item_id":931,"product_id":931,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-32-blue-931.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"928","_score":1,"_source":{"id":928,"sku":"MSH04-36-Yellow","name":"Torque Power Short-36-Yellow","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.975001,"max_price":39.975001,"max_regular_price":39.975001,"minimal_regular_price":39.975001,"special_price":null,"minimal_price":39.975001,"regular_price":39.975001,"description":"

                        Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                        \n

                        • Light gray shorts.
                        • Fitted design.
                        • Elastic waistband.
                        • Flat-seam construction.
                        • 7\" inseam.
                        • Machine wash/dry.

                        ","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","color":"60","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-36-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"torque-power-short-36-yellow-928","links":{},"stock":{"item_id":928,"product_id":928,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-36-yellow-928.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"936","_score":1,"_source":{"id":936,"sku":"MSH05-34-Black","name":"Hawkeye Yoga Short-34-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                        \n

                        • Dark gray shorts with red accents.
                        • 92% Organic Cotton 8% Spandex.
                        • Breathable stretch organic cotton.
                        • Medium=8.0\" (21.0cm) inseam.

                        ","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"hawkeye-yoga-short-34-black-936","links":{},"stock":{"item_id":936,"product_id":936,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-34-black-936.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"968","_score":1,"_source":{"id":968,"sku":"MSH07","name":"Rapha Sports Short","attribute_set_id":10,"price":35,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":35,"description":"

                        For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                        \n

                        • Black shorts with royal accents.
                        • Compression liner.
                        • Inseam: 8\".
                        • Machine wash/dry.

                        ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"rapha-sports-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,36,38,39],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"1","style_bottom":[116,105,108],"pattern":[197,199],"climate":[205,208,209],"slug":"rapha-sports-short-968","links":{},"stock":{"item_id":968,"product_id":968,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH07-32-Black","id":956,"status":1,"name":"Rapha Sports Short-32-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"176","color":"49","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","url_key":"rapha-sports-short-32-black","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH07-32-Blue","id":957,"status":1,"name":"Rapha Sports Short-32-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"176","color":"50","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","url_key":"rapha-sports-short-32-blue","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH07-32-Purple","id":958,"status":1,"name":"Rapha Sports Short-32-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"176","color":"57","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","url_key":"rapha-sports-short-32-purple","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH07-33-Black","id":959,"status":1,"name":"Rapha Sports Short-33-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"177","color":"49","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","url_key":"rapha-sports-short-33-black","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH07-33-Blue","id":960,"status":1,"name":"Rapha Sports Short-33-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"177","color":"50","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","url_key":"rapha-sports-short-33-blue","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH07-33-Purple","id":961,"status":1,"name":"Rapha Sports Short-33-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"177","color":"57","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","url_key":"rapha-sports-short-33-purple","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH07-34-Black","id":962,"status":1,"name":"Rapha Sports Short-34-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"178","color":"49","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","url_key":"rapha-sports-short-34-black","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH07-34-Blue","id":963,"status":1,"name":"Rapha Sports Short-34-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"178","color":"50","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","url_key":"rapha-sports-short-34-blue","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH07-34-Purple","id":964,"status":1,"name":"Rapha Sports Short-34-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"178","color":"57","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","url_key":"rapha-sports-short-34-purple","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH07-36-Black","id":965,"status":1,"name":"Rapha Sports Short-36-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"179","color":"49","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","url_key":"rapha-sports-short-36-black","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH07-36-Blue","id":966,"status":1,"name":"Rapha Sports Short-36-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"179","color":"50","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","url_key":"rapha-sports-short-36-blue","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001},{"sku":"MSH07-36-Purple","id":967,"status":1,"name":"Rapha Sports Short-36-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"179","color":"57","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","url_key":"rapha-sports-short-36-purple","msrp_display_actual_price_type":"0","final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001}],"configurable_options":[{"id":135,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":968,"attribute_code":"color"},{"id":134,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":968,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-968.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1027","_score":1,"_source":{"id":1027,"sku":"MSH12-34-Black","name":"Pierce Gym Short-34-Black","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

                        The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                        \n

                        • Dark red cotton shorts.
                        • 87% Supplex, 13% Lycra.
                        • Adjustable drawstring waistband.
                        • Built-in mesh brief.
                        • Machine wash cold, tumble dry low.

                        ","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"pierce-gym-short-34-black-1027","links":{},"stock":{"item_id":1027,"product_id":1027,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-34-black-1027.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1028","_score":1,"_source":{"id":1028,"sku":"MSH12-34-Gray","name":"Pierce Gym Short-34-Gray","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

                        The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                        \n

                        • Dark red cotton shorts.
                        • 87% Supplex, 13% Lycra.
                        • Adjustable drawstring waistband.
                        • Built-in mesh brief.
                        • Machine wash cold, tumble dry low.

                        ","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","color":"52","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"pierce-gym-short-34-gray-1028","links":{},"stock":{"item_id":1028,"product_id":1028,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-34-gray-1028.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1024","_score":1,"_source":{"id":1024,"sku":"MSH12-33-Black","name":"Pierce Gym Short-33-Black","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

                        The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                        \n

                        • Dark red cotton shorts.
                        • 87% Supplex, 13% Lycra.
                        • Adjustable drawstring waistband.
                        • Built-in mesh brief.
                        • Machine wash cold, tumble dry low.

                        ","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"pierce-gym-short-33-black-1024","links":{},"stock":{"item_id":1024,"product_id":1024,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-33-black-1024.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1029","_score":1,"_source":{"id":1029,"sku":"MSH12-34-Red","name":"Pierce Gym Short-34-Red","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

                        The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                        \n

                        • Dark red cotton shorts.
                        • 87% Supplex, 13% Lycra.
                        • Adjustable drawstring waistband.
                        • Built-in mesh brief.
                        • Machine wash cold, tumble dry low.

                        ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","color":"58","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"pierce-gym-short-34-red-1029","links":{},"stock":{"item_id":1029,"product_id":1029,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-34-red-1029.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1040","_score":1,"_source":{"id":1040,"sku":"WH01-M-Green","name":"Mona Pullover Hoodlie-M-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                        • Light green heathered hoodie.
                        • Long-Sleeve, pullover.
                        • Long elliptical hem for extra coverage.
                        • Deep button placket for layering.
                        • Double rib design.
                        • Mid layer, mid weight.
                        • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mona-pullover-hoodlie-m-green-1040","links":{},"stock":{"item_id":1040,"product_id":1040,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-m-green-1040.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1046","_score":1,"_source":{"id":1046,"sku":"WH01-XL-Green","name":"Mona Pullover Hoodlie-XL-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                        • Light green heathered hoodie.
                        • Long-Sleeve, pullover.
                        • Long elliptical hem for extra coverage.
                        • Deep button placket for layering.
                        • Double rib design.
                        • Mid layer, mid weight.
                        • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mona-pullover-hoodlie-xl-green-1046","links":{},"stock":{"item_id":1046,"product_id":1046,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xl-green-1046.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1048","_score":1,"_source":{"id":1048,"sku":"WH01-XL-Purple","name":"Mona Pullover Hoodlie-XL-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                        • Light green heathered hoodie.
                        • Long-Sleeve, pullover.
                        • Long elliptical hem for extra coverage.
                        • Deep button placket for layering.
                        • Double rib design.
                        • Mid layer, mid weight.
                        • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mona-pullover-hoodlie-xl-purple-1048","links":{},"stock":{"item_id":1048,"product_id":1048,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xl-purple-1048.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"954","_score":1,"_source":{"id":954,"sku":"MSH06-36-Red","name":"Lono Yoga Short-36-Red","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                        Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                        \n

                        • Dark gray shorts with mesh accents.
                        • Ultra flexible four-way stretch.
                        • Flatlock seams and waistband.
                        • Two pockets, phony fly.
                        • Nylon/Lycra outer, Polyester/Lycra inner.

                        ","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","color":"58","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"lono-yoga-short-36-red-954","links":{},"stock":{"item_id":954,"product_id":954,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-36-red-954.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"951","_score":1,"_source":{"id":951,"sku":"MSH06-34-Red","name":"Lono Yoga Short-34-Red","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                        Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                        \n

                        • Dark gray shorts with mesh accents.
                        • Ultra flexible four-way stretch.
                        • Flatlock seams and waistband.
                        • Two pockets, phony fly.
                        • Nylon/Lycra outer, Polyester/Lycra inner.

                        ","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","color":"58","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"lono-yoga-short-34-red-951","links":{},"stock":{"item_id":951,"product_id":951,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-34-red-951.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"962","_score":1,"_source":{"id":962,"sku":"MSH07-34-Black","name":"Rapha Sports Short-34-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                        For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                        \n

                        • Black shorts with royal accents.
                        • Compression liner.
                        • Inseam: 8\".
                        • Machine wash/dry.

                        ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","color":"49","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"rapha-sports-short-34-black-962","links":{},"stock":{"item_id":962,"product_id":962,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-34-black-962.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"970","_score":1,"_source":{"id":970,"sku":"MSH08-32-Blue","name":"Orestes Fitness Short-32-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                        You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                        \n

                        • Black shorts with dark gray accents.
                        • Elasticized waistband with interior drawstring.
                        • Ventilating mesh detailing.
                        • 100% polyester and recycled polyester.
                        • Machine wash cold, tumble dry low.

                        ","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","color":"50","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-fitness-short-32-blue-970","links":{},"stock":{"item_id":970,"product_id":970,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-32-blue-970.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1018","_score":1,"_source":{"id":1018,"sku":"MSH11-36-Blue","name":"Arcadio Gym Short-36-Blue","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001,"description":"

                        The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                        \n

                        • Royal blue cotton shorts.
                        • Built-in mesh brief.
                        • 87% Spandex 13% Lycra.
                        • Adjustable drawstring.

                        ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","color":"50","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"arcadio-gym-short-36-blue-1018","links":{},"stock":{"item_id":1018,"product_id":1018,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-36-blue-1018.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1030","_score":1,"_source":{"id":1030,"sku":"MSH12-36-Black","name":"Pierce Gym Short-36-Black","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33.210001,"max_price":33.210001,"max_regular_price":33.210001,"minimal_regular_price":33.210001,"special_price":null,"minimal_price":33.210001,"regular_price":33.210001,"description":"

                        The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                        \n

                        • Dark red cotton shorts.
                        • 87% Supplex, 13% Lycra.
                        • Adjustable drawstring waistband.
                        • Built-in mesh brief.
                        • Machine wash cold, tumble dry low.

                        ","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"pierce-gym-short-36-black-1030","links":{},"stock":{"item_id":1030,"product_id":1030,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-36-black-1030.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1011","_score":1,"_source":{"id":1011,"sku":"MSH11-33-Black","name":"Arcadio Gym Short-33-Black","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001,"description":"

                        The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                        \n

                        • Royal blue cotton shorts.
                        • Built-in mesh brief.
                        • 87% Spandex 13% Lycra.
                        • Adjustable drawstring.

                        ","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"arcadio-gym-short-33-black-1011","links":{},"stock":{"item_id":1011,"product_id":1011,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-33-black-1011.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1014","_score":1,"_source":{"id":1014,"sku":"MSH11-34-Black","name":"Arcadio Gym Short-34-Black","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24.600001,"max_price":24.600001,"max_regular_price":24.600001,"minimal_regular_price":24.600001,"special_price":null,"minimal_price":24.600001,"regular_price":24.600001,"description":"

                        The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                        \n

                        • Royal blue cotton shorts.
                        • Built-in mesh brief.
                        • 87% Spandex 13% Lycra.
                        • Adjustable drawstring.

                        ","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"arcadio-gym-short-34-black-1014","links":{},"stock":{"item_id":1014,"product_id":1014,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-34-black-1014.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"978","_score":1,"_source":{"id":978,"sku":"MSH08-36-Black","name":"Orestes Fitness Short-36-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":43.050001,"max_price":43.050001,"max_regular_price":43.050001,"minimal_regular_price":43.050001,"special_price":null,"minimal_price":43.050001,"regular_price":43.050001,"description":"

                        You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                        \n

                        • Black shorts with dark gray accents.
                        • Elasticized waistband with interior drawstring.
                        • Ventilating mesh detailing.
                        • 100% polyester and recycled polyester.
                        • Machine wash cold, tumble dry low.

                        ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-fitness-short-36-black-978","links":{},"stock":{"item_id":978,"product_id":978,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-36-black-978.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"988","_score":1,"_source":{"id":988,"sku":"MSH09-34-Black","name":"Troy Yoga Short-34-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                        The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                        \n

                        • Navy polyester pinstripe shorts.
                        • Woven fabric with moderate stretch.
                        • 62% cotton/34% nylon/4% spandex.
                        • LumaTech™ lining.

                        ","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"troy-yoga-short-34-black-988","links":{},"stock":{"item_id":988,"product_id":988,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-34-black-988.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"993","_score":1,"_source":{"id":993,"sku":"MSH09-36-Green","name":"Troy Yoga Short-36-Green","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                        The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                        \n

                        • Navy polyester pinstripe shorts.
                        • Woven fabric with moderate stretch.
                        • 62% cotton/34% nylon/4% spandex.
                        • LumaTech™ lining.

                        ","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"troy-yoga-short-36-green-993","links":{},"stock":{"item_id":993,"product_id":993,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-36-green-993.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1080","_score":1,"_source":{"id":1080,"sku":"WH03-XL-Red","name":"Autumn Pullie-XL-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                        With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                        \n

                        • Cayenne Short-Sleeve roll neck sweatshirt.
                        • Relaxed fit.
                        • Short-Sleeves.
                        • Machine wash/dry.

                        ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"autumn-pullie-xl-red-1080","links":{},"stock":{"item_id":1080,"product_id":1080,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xl-red-1080.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1096","_score":1,"_source":{"id":1096,"sku":"WH04-XL-Purple","name":"Miko Pullover Hoodie-XL-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                        \n

                        • Teal two-tone hoodie.
                        • Low scoop neckline.
                        • Adjustable hood drawstrings.
                        • Longer rounded hemline for extra back coverage.
                        • Long-Sleeve style.

                        ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"miko-pullover-hoodie-xl-purple-1096","links":{},"stock":{"item_id":1096,"product_id":1096,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xl-purple-1096.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1086","_score":1,"_source":{"id":1086,"sku":"WH04-S-Orange","name":"Miko Pullover Hoodie-S-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                        \n

                        • Teal two-tone hoodie.
                        • Low scoop neckline.
                        • Adjustable hood drawstrings.
                        • Longer rounded hemline for extra back coverage.
                        • Long-Sleeve style.

                        ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"miko-pullover-hoodie-s-orange-1086","links":{},"stock":{"item_id":1086,"product_id":1086,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-s-orange-1086.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1065","_score":1,"_source":{"id":1065,"sku":"WH02","name":"Hera Pullover Hoodie","attribute_set_id":9,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":48,"description":"

                        Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                        \n

                        • Teal with purple stiching.
                        • Hoodie pullover.
                        • Snug fit.

                        ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hera-pullover-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":[138,137],"pattern":"197","climate":[202,204,206,208],"slug":"hera-pullover-hoodie-1065","links":{},"stock":{"item_id":1065,"product_id":1065,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH02-XS-Blue","id":1050,"status":1,"name":"Hera Pullover Hoodie-XS-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"167","color":"50","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","url_key":"hera-pullover-hoodie-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WH02-XS-Green","id":1051,"status":1,"name":"Hera Pullover Hoodie-XS-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"167","color":"53","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","url_key":"hera-pullover-hoodie-xs-green","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-XS-Orange","id":1052,"status":1,"name":"Hera Pullover Hoodie-XS-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"167","color":"56","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","url_key":"hera-pullover-hoodie-xs-orange","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-S-Blue","id":1053,"status":1,"name":"Hera Pullover Hoodie-S-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"168","color":"50","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","url_key":"hera-pullover-hoodie-s-blue","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-S-Green","id":1054,"status":1,"name":"Hera Pullover Hoodie-S-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"168","color":"53","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","url_key":"hera-pullover-hoodie-s-green","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-S-Orange","id":1055,"status":1,"name":"Hera Pullover Hoodie-S-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"168","color":"56","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","url_key":"hera-pullover-hoodie-s-orange","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-M-Blue","id":1056,"status":1,"name":"Hera Pullover Hoodie-M-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"169","color":"50","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","url_key":"hera-pullover-hoodie-m-blue","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-M-Green","id":1057,"status":1,"name":"Hera Pullover Hoodie-M-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"169","color":"53","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","url_key":"hera-pullover-hoodie-m-green","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-M-Orange","id":1058,"status":1,"name":"Hera Pullover Hoodie-M-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"169","color":"56","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","url_key":"hera-pullover-hoodie-m-orange","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-L-Blue","id":1059,"status":1,"name":"Hera Pullover Hoodie-L-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"170","color":"50","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","url_key":"hera-pullover-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-L-Green","id":1060,"status":1,"name":"Hera Pullover Hoodie-L-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"170","color":"53","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","url_key":"hera-pullover-hoodie-l-green","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-L-Orange","id":1061,"status":1,"name":"Hera Pullover Hoodie-L-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"170","color":"56","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","url_key":"hera-pullover-hoodie-l-orange","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-XL-Blue","id":1062,"status":1,"name":"Hera Pullover Hoodie-XL-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"171","color":"50","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","url_key":"hera-pullover-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-XL-Green","id":1063,"status":1,"name":"Hera Pullover Hoodie-XL-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"171","color":"53","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","url_key":"hera-pullover-hoodie-xl-green","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WH02-XL-Orange","id":1064,"status":1,"name":"Hera Pullover Hoodie-XL-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"171","color":"56","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","url_key":"hera-pullover-hoodie-xl-orange","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001}],"configurable_options":[{"id":149,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":1065,"attribute_code":"color"},{"id":148,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1065,"attribute_code":"size"}],"color_options":[50,53,56],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-1065.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1183","_score":1,"_source":{"id":1183,"sku":"WH10","name":"Helena Hooded Fleece","attribute_set_id":9,"price":55,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":55,"description":"

                        Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                        \n

                        Full zip.
                        Banded cuffs and waist.
                        Front pockets.
                        Machine wash/dry.

                        ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"helena-hooded-fleece","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":[138,129],"pattern":"197","climate":[204,208],"slug":"helena-hooded-fleece-1183","links":{},"stock":{"item_id":1183,"product_id":1183,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH10-XS-Blue","id":1168,"status":1,"name":"Helena Hooded Fleece-XS-Blue","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"167","color":"50","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","url_key":"helena-hooded-fleece-xs-blue","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-XS-Gray","id":1169,"status":1,"name":"Helena Hooded Fleece-XS-Gray","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"167","color":"52","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","url_key":"helena-hooded-fleece-xs-gray","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-XS-Yellow","id":1170,"status":1,"name":"Helena Hooded Fleece-XS-Yellow","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"167","color":"60","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","url_key":"helena-hooded-fleece-xs-yellow","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-S-Blue","id":1171,"status":1,"name":"Helena Hooded Fleece-S-Blue","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"168","color":"50","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","url_key":"helena-hooded-fleece-s-blue","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-S-Gray","id":1172,"status":1,"name":"Helena Hooded Fleece-S-Gray","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"168","color":"52","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","url_key":"helena-hooded-fleece-s-gray","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-S-Yellow","id":1173,"status":1,"name":"Helena Hooded Fleece-S-Yellow","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"168","color":"60","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","url_key":"helena-hooded-fleece-s-yellow","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-M-Blue","id":1174,"status":1,"name":"Helena Hooded Fleece-M-Blue","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"169","color":"50","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","url_key":"helena-hooded-fleece-m-blue","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-M-Gray","id":1175,"status":1,"name":"Helena Hooded Fleece-M-Gray","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"169","color":"52","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","url_key":"helena-hooded-fleece-m-gray","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-M-Yellow","id":1176,"status":1,"name":"Helena Hooded Fleece-M-Yellow","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"169","color":"60","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","url_key":"helena-hooded-fleece-m-yellow","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-L-Blue","id":1177,"status":1,"name":"Helena Hooded Fleece-L-Blue","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"170","color":"50","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","url_key":"helena-hooded-fleece-l-blue","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-L-Gray","id":1178,"status":1,"name":"Helena Hooded Fleece-L-Gray","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"170","color":"52","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","url_key":"helena-hooded-fleece-l-gray","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-L-Yellow","id":1179,"status":1,"name":"Helena Hooded Fleece-L-Yellow","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"170","color":"60","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","url_key":"helena-hooded-fleece-l-yellow","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-XL-Blue","id":1180,"status":1,"name":"Helena Hooded Fleece-XL-Blue","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"171","color":"50","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","url_key":"helena-hooded-fleece-xl-blue","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-XL-Gray","id":1181,"status":1,"name":"Helena Hooded Fleece-XL-Gray","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"171","color":"52","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","url_key":"helena-hooded-fleece-xl-gray","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001},{"sku":"WH10-XL-Yellow","id":1182,"status":1,"name":"Helena Hooded Fleece-XL-Yellow","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"171","color":"60","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","url_key":"helena-hooded-fleece-xl-yellow","msrp_display_actual_price_type":"0","final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001}],"configurable_options":[{"id":165,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":60,"label":"Yellow"}],"product_id":1183,"attribute_code":"color"},{"id":164,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1183,"attribute_code":"size"}],"color_options":[50,52,60],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-1183.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1125","_score":1,"_source":{"id":1125,"sku":"WH07-S-White","name":"Phoebe Zipper Sweatshirt-S-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                        A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                        \n

                        • Gray full zip hoodie with yellow detail.
                        • Hand-warmer pockets.
                        • Zip MP3 pocket with outlet for earphones wire.
                        • Polyester/cotton.
                        • Washable.

                        ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"phoebe-zipper-sweatshirt-s-white-1125","links":{},"stock":{"item_id":1125,"product_id":1125,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-s-white-1125.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1120","_score":1,"_source":{"id":1120,"sku":"WH07-XS-Gray","name":"Phoebe Zipper Sweatshirt-XS-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                        A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                        \n

                        • Gray full zip hoodie with yellow detail.
                        • Hand-warmer pockets.
                        • Zip MP3 pocket with outlet for earphones wire.
                        • Polyester/cotton.
                        • Washable.

                        ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"phoebe-zipper-sweatshirt-xs-gray-1120","links":{},"stock":{"item_id":1120,"product_id":1120,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xs-gray-1120.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1116","_score":1,"_source":{"id":1116,"sku":"WH06-M-Purple","name":"Daphne Full-Zip Hoodie-M-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                        The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

                        \n

                        • Purple full zip hoodie with pink accents.
                        • Heather texture.
                        • 4-way stretch.
                        • Pre-shrunk.
                        • Hood lined in vegan Sherpa for added warmth.
                        • Ribbed hem on hood and front pouch pocket.
                        • 60% Cotton / 40% Polyester.

                        ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"daphne-full-zip-hoodie-m-purple-1116","links":{},"stock":{"item_id":1116,"product_id":1116,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-m-purple-1116.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1133","_score":1,"_source":{"id":1133,"sku":"WH07-XL-Purple","name":"Phoebe Zipper Sweatshirt-XL-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                        A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                        \n

                        • Gray full zip hoodie with yellow detail.
                        • Hand-warmer pockets.
                        • Zip MP3 pocket with outlet for earphones wire.
                        • Polyester/cotton.
                        • Washable.

                        ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"phoebe-zipper-sweatshirt-xl-purple-1133","links":{},"stock":{"item_id":1133,"product_id":1133,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xl-purple-1133.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1137","_score":1,"_source":{"id":1137,"sku":"WH08-XS-Purple","name":"Cassia Funnel Sweatshirt-XS-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                        The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                        \n

                        • White full zip hoodie with gray detail.
                        • 65% Cotton/28% Nylon/7% Spandex.
                        • Front slash pockets.
                        • Tagless label at back neck.

                        ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"cassia-funnel-sweatshirt-xs-purple-1137","links":{},"stock":{"item_id":1137,"product_id":1137,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xs-purple-1137.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1150","_score":1,"_source":{"id":1150,"sku":"WH08-XL-White","name":"Cassia Funnel Sweatshirt-XL-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                        The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                        \n

                        • White full zip hoodie with gray detail.
                        • 65% Cotton/28% Nylon/7% Spandex.
                        • Front slash pockets.
                        • Tagless label at back neck.

                        ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"cassia-funnel-sweatshirt-xl-white-1150","links":{},"stock":{"item_id":1150,"product_id":1150,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xl-white-1150.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1209","_score":1,"_source":{"id":1209,"sku":"WH12-L-Gray","name":"Circe Hooded Ice Fleece-L-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                        Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                        \n

                        Full-zip front.
                        Three-panel hood.
                        Flatlock seams throughout.
                        Welt hand pockets.
                        Machine wash/dry.

                        ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"circe-hooded-ice-fleece-l-gray-1209","links":{},"stock":{"item_id":1209,"product_id":1209,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-l-gray-1209.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1228","_score":1,"_source":{"id":1228,"sku":"WJ02-XS-Gray","name":"Josie Yoga Jacket-XS-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

                        When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                        \n

                        • Slate rouched neck pullover.
                        • Moisture-wicking fabric.
                        • Hidden zipper.
                        • Mesh armpit venting.
                        • Dropped rear hem.

                        ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"josie-yoga-jacket-xs-gray-1228","links":{},"stock":{"item_id":1228,"product_id":1228,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xs-gray-1228.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1234","_score":1,"_source":{"id":1234,"sku":"WJ02-M-Gray","name":"Josie Yoga Jacket-M-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

                        When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                        \n

                        • Slate rouched neck pullover.
                        • Moisture-wicking fabric.
                        • Hidden zipper.
                        • Mesh armpit venting.
                        • Dropped rear hem.

                        ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"josie-yoga-jacket-m-gray-1234","links":{},"stock":{"item_id":1234,"product_id":1234,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-m-gray-1234.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1240","_score":1,"_source":{"id":1240,"sku":"WJ02-XL-Gray","name":"Josie Yoga Jacket-XL-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

                        When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                        \n

                        • Slate rouched neck pullover.
                        • Moisture-wicking fabric.
                        • Hidden zipper.
                        • Mesh armpit venting.
                        • Dropped rear hem.

                        ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"josie-yoga-jacket-xl-gray-1240","links":{},"stock":{"item_id":1240,"product_id":1240,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xl-gray-1240.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1243","_score":1,"_source":{"id":1243,"sku":"WJ03-XS-Orange","name":"Augusta Pullover Jacket-XS-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                        It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                        \n

                        • Pink half-zip pullover.
                        • Front pouch pockets.
                        • Fold-down collar.

                        ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"augusta-pullover-jacket-xs-orange-1243","links":{},"stock":{"item_id":1243,"product_id":1243,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xs-orange-1243.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1242","_score":1,"_source":{"id":1242,"sku":"WJ03-XS-Blue","name":"Augusta Pullover Jacket-XS-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                        It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                        \n

                        • Pink half-zip pullover.
                        • Front pouch pockets.
                        • Fold-down collar.

                        ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"augusta-pullover-jacket-xs-blue-1242","links":{},"stock":{"item_id":1242,"product_id":1242,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xs-blue-1242.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1236","_score":1,"_source":{"id":1236,"sku":"WJ02-L-Blue","name":"Josie Yoga Jacket-L-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69.187501,"max_price":69.187501,"max_regular_price":69.187501,"minimal_regular_price":69.187501,"special_price":null,"minimal_price":69.187501,"regular_price":69.187501,"description":"

                        When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                        \n

                        • Slate rouched neck pullover.
                        • Moisture-wicking fabric.
                        • Hidden zipper.
                        • Mesh armpit venting.
                        • Dropped rear hem.

                        ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"josie-yoga-jacket-l-blue-1236","links":{},"stock":{"item_id":1236,"product_id":1236,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-l-blue-1236.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1162","_score":1,"_source":{"id":1162,"sku":"WH09-L-Purple","name":"Ariel Roll Sleeve Sweatshirt-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                        \n

                        • Purple two-tone lightweight hoodie.
                        • 100% cotton.
                        • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                        • Casual, comfy piece for running errands or weekend activities.

                        ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ariel-roll-sleeve-sweatshirt-l-purple-1162","links":{},"stock":{"item_id":1162,"product_id":1162,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-l-purple-1162.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1173","_score":1,"_source":{"id":1173,"sku":"WH10-S-Yellow","name":"Helena Hooded Fleece-S-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

                        Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                        \n

                        Full zip.
                        Banded cuffs and waist.
                        Front pockets.
                        Machine wash/dry.

                        ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helena-hooded-fleece-s-yellow-1173","links":{},"stock":{"item_id":1173,"product_id":1173,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-s-yellow-1173.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1184","_score":1,"_source":{"id":1184,"sku":"WH11-XS-Blue","name":"Eos V-Neck Hoodie-XS-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                        Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                        \n

                        Semi-fitted.
                        Long-Sleeve.
                        Machine wash/line dry.

                        ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"eos-v-neck-hoodie-xs-blue-1184","links":{},"stock":{"item_id":1184,"product_id":1184,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xs-blue-1184.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1181","_score":1,"_source":{"id":1181,"sku":"WH10-XL-Gray","name":"Helena Hooded Fleece-XL-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

                        Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                        \n

                        Full zip.
                        Banded cuffs and waist.
                        Front pockets.
                        Machine wash/dry.

                        ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helena-hooded-fleece-xl-gray-1181","links":{},"stock":{"item_id":1181,"product_id":1181,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xl-gray-1181.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1193","_score":1,"_source":{"id":1193,"sku":"WH11-L-Blue","name":"Eos V-Neck Hoodie-L-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                        Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                        \n

                        Semi-fitted.
                        Long-Sleeve.
                        Machine wash/line dry.

                        ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"eos-v-neck-hoodie-l-blue-1193","links":{},"stock":{"item_id":1193,"product_id":1193,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-l-blue-1193.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1197","_score":1,"_source":{"id":1197,"sku":"WH11-XL-Green","name":"Eos V-Neck Hoodie-XL-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66.420001,"max_price":66.420001,"max_regular_price":66.420001,"minimal_regular_price":66.420001,"special_price":null,"minimal_price":66.420001,"regular_price":66.420001,"description":"

                        Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                        \n

                        Semi-fitted.
                        Long-Sleeve.
                        Machine wash/line dry.

                        ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"eos-v-neck-hoodie-xl-green-1197","links":{},"stock":{"item_id":1197,"product_id":1197,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xl-green-1197.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1170","_score":1,"_source":{"id":1170,"sku":"WH10-XS-Yellow","name":"Helena Hooded Fleece-XS-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":67.650001,"max_price":67.650001,"max_regular_price":67.650001,"minimal_regular_price":67.650001,"special_price":null,"minimal_price":67.650001,"regular_price":67.650001,"description":"

                        Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                        \n

                        Full zip.
                        Banded cuffs and waist.
                        Front pockets.
                        Machine wash/dry.

                        ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helena-hooded-fleece-xs-yellow-1170","links":{},"stock":{"item_id":1170,"product_id":1170,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xs-yellow-1170.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1154","_score":1,"_source":{"id":1154,"sku":"WH09-XS-Red","name":"Ariel Roll Sleeve Sweatshirt-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2019-04-11 10:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                        Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                        \r\n

                        • Purple two-tone lightweight hoodie.
                        • 100% cotton.
                        • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                        • Casual, comfy piece for running errands or weekend activities.

                        ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xs-red","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"167","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","slug":"ariel-roll-sleeve-sweatshirt-xs-red-1154","links":{},"stock":{"item_id":1154,"product_id":1154,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-04-11 10:16:50","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xs-red-1154.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1208","_score":1,"_source":{"id":1208,"sku":"WH12-M-Purple","name":"Circe Hooded Ice Fleece-M-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                        Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                        \n

                        Full-zip front.
                        Three-panel hood.
                        Flatlock seams throughout.
                        Welt hand pockets.
                        Machine wash/dry.

                        ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"circe-hooded-ice-fleece-m-purple-1208","links":{},"stock":{"item_id":1208,"product_id":1208,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-m-purple-1208.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1221","_score":1,"_source":{"id":1221,"sku":"WJ01-M-Yellow","name":"Stellar Solar Jacket-M-Yellow","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                        Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                        \n

                        • Loose fit.
                        • Reflectivity.
                        • Flat seams.
                        • Machine wash/dry.
                        • Deep pink jacket with front panel rouching

                        ","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","color":"60","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stellar-solar-jacket-m-yellow-1221","links":{},"stock":{"item_id":1221,"product_id":1221,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-m-yellow-1221.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1217","_score":1,"_source":{"id":1217,"sku":"WJ01-S-Red","name":"Stellar Solar Jacket-S-Red","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                        Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                        \n

                        • Loose fit.
                        • Reflectivity.
                        • Flat seams.
                        • Machine wash/dry.
                        • Deep pink jacket with front panel rouching

                        ","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","color":"58","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stellar-solar-jacket-s-red-1217","links":{},"stock":{"item_id":1217,"product_id":1217,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-s-red-1217.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1207","_score":1,"_source":{"id":1207,"sku":"WH12-M-Green","name":"Circe Hooded Ice Fleece-M-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                        Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                        \n

                        Full-zip front.
                        Three-panel hood.
                        Flatlock seams throughout.
                        Welt hand pockets.
                        Machine wash/dry.

                        ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"circe-hooded-ice-fleece-m-green-1207","links":{},"stock":{"item_id":1207,"product_id":1207,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-m-green-1207.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1218","_score":1,"_source":{"id":1218,"sku":"WJ01-S-Yellow","name":"Stellar Solar Jacket-S-Yellow","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                        Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                        \n

                        • Loose fit.
                        • Reflectivity.
                        • Flat seams.
                        • Machine wash/dry.
                        • Deep pink jacket with front panel rouching

                        ","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","color":"60","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stellar-solar-jacket-s-yellow-1218","links":{},"stock":{"item_id":1218,"product_id":1218,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-s-yellow-1218.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1148","_score":1,"_source":{"id":1148,"sku":"WH08-XL-Orange","name":"Cassia Funnel Sweatshirt-XL-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                        The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                        \n

                        • White full zip hoodie with gray detail.
                        • 65% Cotton/28% Nylon/7% Spandex.
                        • Front slash pockets.
                        • Tagless label at back neck.

                        ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"cassia-funnel-sweatshirt-xl-orange-1148","links":{},"stock":{"item_id":1148,"product_id":1148,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xl-orange-1148.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1141","_score":1,"_source":{"id":1141,"sku":"WH08-S-White","name":"Cassia Funnel Sweatshirt-S-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                        The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                        \n

                        • White full zip hoodie with gray detail.
                        • 65% Cotton/28% Nylon/7% Spandex.
                        • Front slash pockets.
                        • Tagless label at back neck.

                        ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"cassia-funnel-sweatshirt-s-white-1141","links":{},"stock":{"item_id":1141,"product_id":1141,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-s-white-1141.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1126","_score":1,"_source":{"id":1126,"sku":"WH07-M-Gray","name":"Phoebe Zipper Sweatshirt-M-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                        A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                        \n

                        • Gray full zip hoodie with yellow detail.
                        • Hand-warmer pockets.
                        • Zip MP3 pocket with outlet for earphones wire.
                        • Polyester/cotton.
                        • Washable.

                        ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"phoebe-zipper-sweatshirt-m-gray-1126","links":{},"stock":{"item_id":1126,"product_id":1126,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-m-gray-1126.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1149","_score":1,"_source":{"id":1149,"sku":"WH08-XL-Purple","name":"Cassia Funnel Sweatshirt-XL-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                        The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                        \n

                        • White full zip hoodie with gray detail.
                        • 65% Cotton/28% Nylon/7% Spandex.
                        • Front slash pockets.
                        • Tagless label at back neck.

                        ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"cassia-funnel-sweatshirt-xl-purple-1149","links":{},"stock":{"item_id":1149,"product_id":1149,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xl-purple-1149.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1201","_score":1,"_source":{"id":1201,"sku":"WH12-XS-Green","name":"Circe Hooded Ice Fleece-XS-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001,"description":"

                        Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                        \n

                        Full-zip front.
                        Three-panel hood.
                        Flatlock seams throughout.
                        Welt hand pockets.
                        Machine wash/dry.

                        ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"circe-hooded-ice-fleece-xs-green-1201","links":{},"stock":{"item_id":1201,"product_id":1201,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xs-green-1201.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1215","_score":1,"_source":{"id":1215,"sku":"WH12","name":"Circe Hooded Ice Fleece","attribute_set_id":9,"price":68,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":68,"description":"

                        Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                        \n

                        Full-zip front.
                        Three-panel hood.
                        Flatlock seams throughout.
                        Welt hand pockets.
                        Machine wash/dry.

                        ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"circe-hooded-ice-fleece","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,156],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":[138,133,129],"pattern":"197","climate":[203,204,211],"slug":"circe-hooded-ice-fleece-1215","links":{},"stock":{"item_id":1215,"product_id":1215,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH12-XS-Gray","id":1200,"status":1,"name":"Circe Hooded Ice Fleece-XS-Gray","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"167","color":"52","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","url_key":"circe-hooded-ice-fleece-xs-gray","msrp_display_actual_price_type":"0"},{"sku":"WH12-XS-Green","id":1201,"status":1,"name":"Circe Hooded Ice Fleece-XS-Green","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"167","color":"53","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","url_key":"circe-hooded-ice-fleece-xs-green","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-XS-Purple","id":1202,"status":1,"name":"Circe Hooded Ice Fleece-XS-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"167","color":"57","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","url_key":"circe-hooded-ice-fleece-xs-purple","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-S-Gray","id":1203,"status":1,"name":"Circe Hooded Ice Fleece-S-Gray","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"168","color":"52","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","url_key":"circe-hooded-ice-fleece-s-gray","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-S-Green","id":1204,"status":1,"name":"Circe Hooded Ice Fleece-S-Green","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"168","color":"53","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","url_key":"circe-hooded-ice-fleece-s-green","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-S-Purple","id":1205,"status":1,"name":"Circe Hooded Ice Fleece-S-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"168","color":"57","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","url_key":"circe-hooded-ice-fleece-s-purple","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-M-Gray","id":1206,"status":1,"name":"Circe Hooded Ice Fleece-M-Gray","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"169","color":"52","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","url_key":"circe-hooded-ice-fleece-m-gray","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-M-Green","id":1207,"status":1,"name":"Circe Hooded Ice Fleece-M-Green","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"169","color":"53","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","url_key":"circe-hooded-ice-fleece-m-green","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-M-Purple","id":1208,"status":1,"name":"Circe Hooded Ice Fleece-M-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"169","color":"57","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","url_key":"circe-hooded-ice-fleece-m-purple","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-L-Gray","id":1209,"status":1,"name":"Circe Hooded Ice Fleece-L-Gray","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"170","color":"52","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","url_key":"circe-hooded-ice-fleece-l-gray","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-L-Green","id":1210,"status":1,"name":"Circe Hooded Ice Fleece-L-Green","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"170","color":"53","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","url_key":"circe-hooded-ice-fleece-l-green","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-L-Purple","id":1211,"status":1,"name":"Circe Hooded Ice Fleece-L-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"170","color":"57","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","url_key":"circe-hooded-ice-fleece-l-purple","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-XL-Gray","id":1212,"status":1,"name":"Circe Hooded Ice Fleece-XL-Gray","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"171","color":"52","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","url_key":"circe-hooded-ice-fleece-xl-gray","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-XL-Green","id":1213,"status":1,"name":"Circe Hooded Ice Fleece-XL-Green","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"171","color":"53","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","url_key":"circe-hooded-ice-fleece-xl-green","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001},{"sku":"WH12-XL-Purple","id":1214,"status":1,"name":"Circe Hooded Ice Fleece-XL-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"171","color":"57","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","url_key":"circe-hooded-ice-fleece-xl-purple","msrp_display_actual_price_type":"0","final_price":83.640001,"max_price":83.640001,"max_regular_price":83.640001,"minimal_regular_price":83.640001,"special_price":null,"minimal_price":83.640001,"regular_price":83.640001}],"configurable_options":[{"id":169,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"}],"product_id":1215,"attribute_code":"color"},{"id":168,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1215,"attribute_code":"size"}],"color_options":[52,53,57],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-1215.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1273","_score":1,"_source":{"id":1273,"sku":"WJ04","name":"Ingrid Running Jacket","attribute_set_id":9,"price":84,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":84,"description":"

                        The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                        • Slim fit.
                        • Moisture-wicking fabric.
                        • Two side pockets.
                        • Zippered pocket at back waist.
                        • Machine wash/dry.
                        • Ivory specked full zip

                        ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ingrid-running-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38,156],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_general":[118,120,129],"pattern":"197","climate":[204,208,210,211],"slug":"ingrid-running-jacket-1273","links":{},"stock":{"item_id":1273,"product_id":1273,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ04-XS-Orange","id":1258,"status":1,"name":"Ingrid Running Jacket-XS-Orange","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"167","color":"56","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","url_key":"ingrid-running-jacket-xs-orange","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-XS-Red","id":1259,"status":1,"name":"Ingrid Running Jacket-XS-Red","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"167","color":"58","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","url_key":"ingrid-running-jacket-xs-red","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-XS-White","id":1260,"status":1,"name":"Ingrid Running Jacket-XS-White","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"167","color":"59","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","url_key":"ingrid-running-jacket-xs-white","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-S-Orange","id":1261,"status":1,"name":"Ingrid Running Jacket-S-Orange","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"168","color":"56","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","url_key":"ingrid-running-jacket-s-orange","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-S-Red","id":1262,"status":1,"name":"Ingrid Running Jacket-S-Red","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"168","color":"58","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","url_key":"ingrid-running-jacket-s-red","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-S-White","id":1263,"status":1,"name":"Ingrid Running Jacket-S-White","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"168","color":"59","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","url_key":"ingrid-running-jacket-s-white","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-M-Orange","id":1264,"status":1,"name":"Ingrid Running Jacket-M-Orange","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"169","color":"56","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","url_key":"ingrid-running-jacket-m-orange","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-M-Red","id":1265,"status":1,"name":"Ingrid Running Jacket-M-Red","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"169","color":"58","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","url_key":"ingrid-running-jacket-m-red","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-M-White","id":1266,"status":1,"name":"Ingrid Running Jacket-M-White","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"169","color":"59","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","url_key":"ingrid-running-jacket-m-white","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-L-Orange","id":1267,"status":1,"name":"Ingrid Running Jacket-L-Orange","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"170","color":"56","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","url_key":"ingrid-running-jacket-l-orange","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-L-Red","id":1268,"status":1,"name":"Ingrid Running Jacket-L-Red","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"170","color":"58","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","url_key":"ingrid-running-jacket-l-red","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-L-White","id":1269,"status":1,"name":"Ingrid Running Jacket-L-White","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"170","color":"59","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","url_key":"ingrid-running-jacket-l-white","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-XL-Orange","id":1270,"status":1,"name":"Ingrid Running Jacket-XL-Orange","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"171","color":"56","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","url_key":"ingrid-running-jacket-xl-orange","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-XL-Red","id":1271,"status":1,"name":"Ingrid Running Jacket-XL-Red","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"171","color":"58","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","url_key":"ingrid-running-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001},{"sku":"WJ04-XL-White","id":1272,"status":1,"name":"Ingrid Running Jacket-XL-White","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"171","color":"59","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","url_key":"ingrid-running-jacket-xl-white","msrp_display_actual_price_type":"0","final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001}],"configurable_options":[{"id":177,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":1273,"attribute_code":"color"},{"id":176,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1273,"attribute_code":"size"}],"color_options":[56,58,59],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-1273.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1225","_score":1,"_source":{"id":1225,"sku":"WJ01","name":"Stellar Solar Jacket","attribute_set_id":9,"price":75,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":75,"description":"

                        Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                        \n

                        • Loose fit.
                        • Reflectivity.
                        • Flat seams.
                        • Machine wash/dry.
                        • Deep pink jacket with front panel rouching

                        ","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"stellar-solar-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,159,145],"eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":[118,121,125,129],"pattern":"197","climate":[202,206,208,210],"slug":"stellar-solar-jacket-1225","links":{},"stock":{"item_id":1225,"product_id":1225,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ01-S-Blue","id":1216,"status":1,"name":"Stellar Solar Jacket-S-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"168","color":"50","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","url_key":"stellar-solar-jacket-s-blue","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WJ01-S-Red","id":1217,"status":1,"name":"Stellar Solar Jacket-S-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"168","color":"58","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","url_key":"stellar-solar-jacket-s-red","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WJ01-S-Yellow","id":1218,"status":1,"name":"Stellar Solar Jacket-S-Yellow","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"168","color":"60","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","url_key":"stellar-solar-jacket-s-yellow","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WJ01-M-Blue","id":1219,"status":1,"name":"Stellar Solar Jacket-M-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"169","color":"50","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","url_key":"stellar-solar-jacket-m-blue","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WJ01-M-Red","id":1220,"status":1,"name":"Stellar Solar Jacket-M-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"169","color":"58","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","url_key":"stellar-solar-jacket-m-red","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WJ01-M-Yellow","id":1221,"status":1,"name":"Stellar Solar Jacket-M-Yellow","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"169","color":"60","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","url_key":"stellar-solar-jacket-m-yellow","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WJ01-L-Blue","id":1222,"status":1,"name":"Stellar Solar Jacket-L-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"170","color":"50","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","url_key":"stellar-solar-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WJ01-L-Red","id":1223,"status":1,"name":"Stellar Solar Jacket-L-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"170","color":"58","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","url_key":"stellar-solar-jacket-l-red","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001},{"sku":"WJ01-L-Yellow","id":1224,"status":1,"name":"Stellar Solar Jacket-L-Yellow","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"170","color":"60","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","url_key":"stellar-solar-jacket-l-yellow","msrp_display_actual_price_type":"0","final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001}],"configurable_options":[{"id":171,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":1225,"attribute_code":"color"},{"id":170,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"}],"product_id":1225,"attribute_code":"size"}],"color_options":[50,58,60],"size_options":[168,169,170],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-1225.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1367","_score":1,"_source":{"id":1367,"sku":"WJ11-XL-Blue","name":"Neve Studio Dance Jacket-XL-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                        \n

                        • Bright blue 1/4 zip pullover.
                        • CoolTech™ liner is sweat-wicking.
                        • Sleeve thumbholes.
                        • Zipper garage to protect your chin.
                        • Stretchy collar drawcords.

                        ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"neve-studio-dance-jacket-xl-blue-1367","links":{},"stock":{"item_id":1367,"product_id":1367,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xl-blue-1367.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1362","_score":1,"_source":{"id":1362,"sku":"WJ11-M-Orange","name":"Neve Studio Dance Jacket-M-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                        \n

                        • Bright blue 1/4 zip pullover.
                        • CoolTech™ liner is sweat-wicking.
                        • Sleeve thumbholes.
                        • Zipper garage to protect your chin.
                        • Stretchy collar drawcords.

                        ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"neve-studio-dance-jacket-m-orange-1362","links":{},"stock":{"item_id":1362,"product_id":1362,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-m-orange-1362.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1358","_score":1,"_source":{"id":1358,"sku":"WJ11-S-Blue","name":"Neve Studio Dance Jacket-S-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                        \n

                        • Bright blue 1/4 zip pullover.
                        • CoolTech™ liner is sweat-wicking.
                        • Sleeve thumbholes.
                        • Zipper garage to protect your chin.
                        • Stretchy collar drawcords.

                        ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"neve-studio-dance-jacket-s-blue-1358","links":{},"stock":{"item_id":1358,"product_id":1358,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-s-blue-1358.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1360","_score":1,"_source":{"id":1360,"sku":"WJ11-M-Black","name":"Neve Studio Dance Jacket-M-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                        \n

                        • Bright blue 1/4 zip pullover.
                        • CoolTech™ liner is sweat-wicking.
                        • Sleeve thumbholes.
                        • Zipper garage to protect your chin.
                        • Stretchy collar drawcords.

                        ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"neve-studio-dance-jacket-m-black-1360","links":{},"stock":{"item_id":1360,"product_id":1360,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-m-black-1360.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1372","_score":1,"_source":{"id":1372,"sku":"WJ06-XS-Purple","name":"Juno Jacket-XS-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                        On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                        \n

                        • Adjustable hood.
                        • Fleece-lined, zippered hand pockets.
                        • Thumbhole cuffs.
                        • Full zip.
                        • Mock-neck collar.
                        • Machine wash/dry.

                        ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juno-jacket-xs-purple-1372","links":{},"stock":{"item_id":1372,"product_id":1372,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xs-purple-1372.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1368","_score":1,"_source":{"id":1368,"sku":"WJ11-XL-Orange","name":"Neve Studio Dance Jacket-XL-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                        \n

                        • Bright blue 1/4 zip pullover.
                        • CoolTech™ liner is sweat-wicking.
                        • Sleeve thumbholes.
                        • Zipper garage to protect your chin.
                        • Stretchy collar drawcords.

                        ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"neve-studio-dance-jacket-xl-orange-1368","links":{},"stock":{"item_id":1368,"product_id":1368,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xl-orange-1368.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1370","_score":1,"_source":{"id":1370,"sku":"WJ06-XS-Blue","name":"Juno Jacket-XS-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                        On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                        \n

                        • Adjustable hood.
                        • Fleece-lined, zippered hand pockets.
                        • Thumbhole cuffs.
                        • Full zip.
                        • Mock-neck collar.
                        • Machine wash/dry.

                        ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juno-jacket-xs-blue-1370","links":{},"stock":{"item_id":1370,"product_id":1370,"stock_id":1,"qty":20,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xs-blue-1370.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1260","_score":1,"_source":{"id":1260,"sku":"WJ04-XS-White","name":"Ingrid Running Jacket-XS-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

                        The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                        • Slim fit.
                        • Moisture-wicking fabric.
                        • Two side pockets.
                        • Zippered pocket at back waist.
                        • Machine wash/dry.
                        • Ivory specked full zip

                        ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ingrid-running-jacket-xs-white-1260","links":{},"stock":{"item_id":1260,"product_id":1260,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xs-white-1260.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1259","_score":1,"_source":{"id":1259,"sku":"WJ04-XS-Red","name":"Ingrid Running Jacket-XS-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":103.320001,"max_price":103.320001,"max_regular_price":103.320001,"minimal_regular_price":103.320001,"special_price":null,"minimal_price":103.320001,"regular_price":103.320001,"description":"

                        The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                        • Slim fit.
                        • Moisture-wicking fabric.
                        • Two side pockets.
                        • Zippered pocket at back waist.
                        • Machine wash/dry.
                        • Ivory specked full zip

                        ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ingrid-running-jacket-xs-red-1259","links":{},"stock":{"item_id":1259,"product_id":1259,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xs-red-1259.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1284","_score":1,"_source":{"id":1284,"sku":"WJ05-L-Green","name":"Riona Full Zip Jacket-L-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                        The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                        \n

                        • Brown heather full zip rouched jacket.
                        • Side hand pockets for extra storage.
                        • High collar.
                        • Thick cuffs for extra coverage.
                        • Durable, shape retention material to longer wear.

                        ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"riona-full-zip-jacket-l-green-1284","links":{},"stock":{"item_id":1284,"product_id":1284,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-l-green-1284.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1286","_score":1,"_source":{"id":1286,"sku":"WJ05-XL-Brown","name":"Riona Full Zip Jacket-XL-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                        The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                        \n

                        • Brown heather full zip rouched jacket.
                        • Side hand pockets for extra storage.
                        • High collar.
                        • Thick cuffs for extra coverage.
                        • Durable, shape retention material to longer wear.

                        ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xl-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"riona-full-zip-jacket-xl-brown-1286","links":{},"stock":{"item_id":1286,"product_id":1286,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xl-brown-1286.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1285","_score":1,"_source":{"id":1285,"sku":"WJ05-L-Red","name":"Riona Full Zip Jacket-L-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2019-04-12 06:18:41","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                        The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                        \r\n

                        • Brown heather full zip rouched jacket.
                        • Side hand pockets for extra storage.
                        • High collar.
                        • Thick cuffs for extra coverage.
                        • Durable, shape retention material to longer wear.

                        ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-l-red","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"170","eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","slug":"riona-full-zip-jacket-l-red-1285","links":{},"stock":{"item_id":1285,"product_id":1285,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-l-red-1285.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1328","_score":1,"_source":{"id":1328,"sku":"WJ09-M-Blue","name":"Jade Yoga Jacket-M-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


                        If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                        \n

                        • Seafoam 1/4 zip pullover with purple stitching.
                        • Lightweight, quick-drying, water-resistant construction.
                        • Shirred details at front and back for a feminine look.
                        • Hood collapses into collar.
                        • Mesh liner for breathability.
                        • Front zip pockets.
                        • Hem cinches at sideseam.
                        • 100% Polyester.

                        ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jade-yoga-jacket-m-blue-1328","links":{},"stock":{"item_id":1328,"product_id":1328,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-m-blue-1328.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1338","_score":1,"_source":{"id":1338,"sku":"WJ10-XS-Black","name":"Nadia Elements Shell-XS-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                        \n

                        • Zippered front.
                        • Zippered side pockets.
                        • Drawstring-adjustable waist and hood.
                        • Machine wash/line dry.
                        • Light blue 1/4 zip pullover.

                        ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nadia-elements-shell-xs-black-1338","links":{},"stock":{"item_id":1338,"product_id":1338,"stock_id":1,"qty":74,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xs-black-1338.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1340","_score":1,"_source":{"id":1340,"sku":"WJ10-XS-Yellow","name":"Nadia Elements Shell-XS-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                        \n

                        • Zippered front.
                        • Zippered side pockets.
                        • Drawstring-adjustable waist and hood.
                        • Machine wash/line dry.
                        • Light blue 1/4 zip pullover.

                        ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nadia-elements-shell-xs-yellow-1340","links":{},"stock":{"item_id":1340,"product_id":1340,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xs-yellow-1340.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1318","_score":1,"_source":{"id":1318,"sku":"WJ08-XL-Gray","name":"Adrienne Trek Jacket-XL-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                        You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                        \n

                        • gray 1/4 zip pullover.
                        • Comfortable, relaxed fit.
                        • Front zip for venting.
                        • Spacious, kangaroo pockets.
                        • 27\" body length.
                        • 95% Organic Cotton / 5% Spandex.

                        ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"adrienne-trek-jacket-xl-gray-1318","links":{},"stock":{"item_id":1318,"product_id":1318,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xl-gray-1318.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1329","_score":1,"_source":{"id":1329,"sku":"WJ09-M-Gray","name":"Jade Yoga Jacket-M-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"


                        If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                        \n

                        • Seafoam 1/4 zip pullover with purple stitching.
                        • Lightweight, quick-drying, water-resistant construction.
                        • Shirred details at front and back for a feminine look.
                        • Hood collapses into collar.
                        • Mesh liner for breathability.
                        • Front zip pockets.
                        • Hem cinches at sideseam.
                        • 100% Polyester.

                        ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jade-yoga-jacket-m-gray-1329","links":{},"stock":{"item_id":1329,"product_id":1329,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-m-gray-1329.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1282","_score":1,"_source":{"id":1282,"sku":"WJ05-M-Red","name":"Riona Full Zip Jacket-M-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                        The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                        \n

                        • Brown heather full zip rouched jacket.
                        • Side hand pockets for extra storage.
                        • High collar.
                        • Thick cuffs for extra coverage.
                        • Durable, shape retention material to longer wear.

                        ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"riona-full-zip-jacket-m-red-1282","links":{},"stock":{"item_id":1282,"product_id":1282,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-m-red-1282.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1291","_score":1,"_source":{"id":1291,"sku":"WJ07-XS-Purple","name":"Inez Full Zip Jacket-XS-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                        The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                        \n

                        • Purple heather inset full zip jacket.
                        • Full zip hoodie.
                        • Contrast binding along the zipper, hood and sleeves.
                        • Inseam pockets for storage.
                        • Thumbholes for comfortable fit.

                        ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"inez-full-zip-jacket-xs-purple-1291","links":{},"stock":{"item_id":1291,"product_id":1291,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xs-purple-1291.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1277","_score":1,"_source":{"id":1277,"sku":"WJ05-S-Brown","name":"Riona Full Zip Jacket-S-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":73.800001,"max_price":73.800001,"max_regular_price":73.800001,"minimal_regular_price":73.800001,"special_price":null,"minimal_price":73.800001,"regular_price":73.800001,"description":"

                        The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                        \n

                        • Brown heather full zip rouched jacket.
                        • Side hand pockets for extra storage.
                        • High collar.
                        • Thick cuffs for extra coverage.
                        • Durable, shape retention material to longer wear.

                        ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-s-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"riona-full-zip-jacket-s-brown-1277","links":{},"stock":{"item_id":1277,"product_id":1277,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-s-brown-1277.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1298","_score":1,"_source":{"id":1298,"sku":"WJ07-M-Red","name":"Inez Full Zip Jacket-M-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                        The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                        \n

                        • Purple heather inset full zip jacket.
                        • Full zip hoodie.
                        • Contrast binding along the zipper, hood and sleeves.
                        • Inseam pockets for storage.
                        • Thumbholes for comfortable fit.

                        ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"inez-full-zip-jacket-m-red-1298","links":{},"stock":{"item_id":1298,"product_id":1298,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-m-red-1298.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1297","_score":1,"_source":{"id":1297,"sku":"WJ07-M-Purple","name":"Inez Full Zip Jacket-M-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                        The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                        \n

                        • Purple heather inset full zip jacket.
                        • Full zip hoodie.
                        • Contrast binding along the zipper, hood and sleeves.
                        • Inseam pockets for storage.
                        • Thumbholes for comfortable fit.

                        ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"inez-full-zip-jacket-m-purple-1297","links":{},"stock":{"item_id":1297,"product_id":1297,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-m-purple-1297.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1294","_score":1,"_source":{"id":1294,"sku":"WJ07-S-Purple","name":"Inez Full Zip Jacket-S-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                        The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                        \n

                        • Purple heather inset full zip jacket.
                        • Full zip hoodie.
                        • Contrast binding along the zipper, hood and sleeves.
                        • Inseam pockets for storage.
                        • Thumbholes for comfortable fit.

                        ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"inez-full-zip-jacket-s-purple-1294","links":{},"stock":{"item_id":1294,"product_id":1294,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-s-purple-1294.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1300","_score":1,"_source":{"id":1300,"sku":"WJ07-L-Purple","name":"Inez Full Zip Jacket-L-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                        The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                        \n

                        • Purple heather inset full zip jacket.
                        • Full zip hoodie.
                        • Contrast binding along the zipper, hood and sleeves.
                        • Inseam pockets for storage.
                        • Thumbholes for comfortable fit.

                        ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"inez-full-zip-jacket-l-purple-1300","links":{},"stock":{"item_id":1300,"product_id":1300,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-l-purple-1300.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1301","_score":1,"_source":{"id":1301,"sku":"WJ07-L-Red","name":"Inez Full Zip Jacket-L-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                        The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                        \n

                        • Purple heather inset full zip jacket.
                        • Full zip hoodie.
                        • Contrast binding along the zipper, hood and sleeves.
                        • Inseam pockets for storage.
                        • Thumbholes for comfortable fit.

                        ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"inez-full-zip-jacket-l-red-1301","links":{},"stock":{"item_id":1301,"product_id":1301,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-l-red-1301.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1304","_score":1,"_source":{"id":1304,"sku":"WJ07-XL-Red","name":"Inez Full Zip Jacket-XL-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                        The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                        \n

                        • Purple heather inset full zip jacket.
                        • Full zip hoodie.
                        • Contrast binding along the zipper, hood and sleeves.
                        • Inseam pockets for storage.
                        • Thumbholes for comfortable fit.

                        ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"inez-full-zip-jacket-xl-red-1304","links":{},"stock":{"item_id":1304,"product_id":1304,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xl-red-1304.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1310","_score":1,"_source":{"id":1310,"sku":"WJ08-S-Orange","name":"Adrienne Trek Jacket-S-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                        You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                        \n

                        • gray 1/4 zip pullover.
                        • Comfortable, relaxed fit.
                        • Front zip for venting.
                        • Spacious, kangaroo pockets.
                        • 27\" body length.
                        • 95% Organic Cotton / 5% Spandex.

                        ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"adrienne-trek-jacket-s-orange-1310","links":{},"stock":{"item_id":1310,"product_id":1310,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-s-orange-1310.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1306","_score":1,"_source":{"id":1306,"sku":"WJ08-XS-Gray","name":"Adrienne Trek Jacket-XS-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70.110001,"max_price":70.110001,"max_regular_price":70.110001,"minimal_regular_price":70.110001,"special_price":null,"minimal_price":70.110001,"regular_price":70.110001,"description":"

                        You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                        \n

                        • gray 1/4 zip pullover.
                        • Comfortable, relaxed fit.
                        • Front zip for venting.
                        • Spacious, kangaroo pockets.
                        • 27\" body length.
                        • 95% Organic Cotton / 5% Spandex.

                        ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"adrienne-trek-jacket-xs-gray-1306","links":{},"stock":{"item_id":1306,"product_id":1306,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xs-gray-1306.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1346","_score":1,"_source":{"id":1346,"sku":"WJ10-M-Yellow","name":"Nadia Elements Shell-M-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                        \n

                        • Zippered front.
                        • Zippered side pockets.
                        • Drawstring-adjustable waist and hood.
                        • Machine wash/line dry.
                        • Light blue 1/4 zip pullover.

                        ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nadia-elements-shell-m-yellow-1346","links":{},"stock":{"item_id":1346,"product_id":1346,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-m-yellow-1346.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1417","_score":1,"_source":{"id":1417,"sku":"WS02","name":"Gabrielle Micro Sleeve Top","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":28,"description":"

                        Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                        \n

                        • Lime green v-neck tee.
                        • Slimming, flattering fit.
                        • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                        • Longer curved hem provides additional coverage.
                        • 55% Hemp / 45% Organic Cotton.

                        ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"gabrielle-micro-sleeve-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,146],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"gabrielle-micro-sleeve-top-1417","links":{},"stock":{"item_id":1417,"product_id":1417,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS02-XS-Blue","id":1402,"status":1,"name":"Gabrielle Micro Sleeve Top-XS-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"167","color":"50","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","url_key":"gabrielle-micro-sleeve-top-xs-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-XS-Green","id":1403,"status":1,"name":"Gabrielle Micro Sleeve Top-XS-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"167","color":"53","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","url_key":"gabrielle-micro-sleeve-top-xs-green","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-XS-Red","id":1404,"status":1,"name":"Gabrielle Micro Sleeve Top-XS-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"167","color":"58","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","url_key":"gabrielle-micro-sleeve-top-xs-red","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-S-Blue","id":1405,"status":1,"name":"Gabrielle Micro Sleeve Top-S-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"168","color":"50","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","url_key":"gabrielle-micro-sleeve-top-s-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-S-Green","id":1406,"status":1,"name":"Gabrielle Micro Sleeve Top-S-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"168","color":"53","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","url_key":"gabrielle-micro-sleeve-top-s-green","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-S-Red","id":1407,"status":1,"name":"Gabrielle Micro Sleeve Top-S-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"168","color":"58","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","url_key":"gabrielle-micro-sleeve-top-s-red","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-M-Blue","id":1408,"status":1,"name":"Gabrielle Micro Sleeve Top-M-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"169","color":"50","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","url_key":"gabrielle-micro-sleeve-top-m-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-M-Green","id":1409,"status":1,"name":"Gabrielle Micro Sleeve Top-M-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"169","color":"53","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","url_key":"gabrielle-micro-sleeve-top-m-green","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-M-Red","id":1410,"status":1,"name":"Gabrielle Micro Sleeve Top-M-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"169","color":"58","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","url_key":"gabrielle-micro-sleeve-top-m-red","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-L-Blue","id":1411,"status":1,"name":"Gabrielle Micro Sleeve Top-L-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"170","color":"50","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","url_key":"gabrielle-micro-sleeve-top-l-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-L-Green","id":1412,"status":1,"name":"Gabrielle Micro Sleeve Top-L-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"170","color":"53","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","url_key":"gabrielle-micro-sleeve-top-l-green","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-L-Red","id":1413,"status":1,"name":"Gabrielle Micro Sleeve Top-L-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"170","color":"58","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","url_key":"gabrielle-micro-sleeve-top-l-red","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-XL-Blue","id":1414,"status":1,"name":"Gabrielle Micro Sleeve Top-XL-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"171","color":"50","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","url_key":"gabrielle-micro-sleeve-top-xl-blue","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-XL-Green","id":1415,"status":1,"name":"Gabrielle Micro Sleeve Top-XL-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"171","color":"53","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","url_key":"gabrielle-micro-sleeve-top-xl-green","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001},{"sku":"WS02-XL-Red","id":1416,"status":1,"name":"Gabrielle Micro Sleeve Top-XL-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"171","color":"58","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","url_key":"gabrielle-micro-sleeve-top-xl-red","msrp_display_actual_price_type":"0","final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001}],"configurable_options":[{"id":195,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1417,"attribute_code":"color"},{"id":194,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1417,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-1417.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1355","_score":1,"_source":{"id":1355,"sku":"WJ11-XS-Blue","name":"Neve Studio Dance Jacket-XS-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                        \n

                        • Bright blue 1/4 zip pullover.
                        • CoolTech™ liner is sweat-wicking.
                        • Sleeve thumbholes.
                        • Zipper garage to protect your chin.
                        • Stretchy collar drawcords.

                        ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"neve-studio-dance-jacket-xs-blue-1355","links":{},"stock":{"item_id":1355,"product_id":1355,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xs-blue-1355.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1366","_score":1,"_source":{"id":1366,"sku":"WJ11-XL-Black","name":"Neve Studio Dance Jacket-XL-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                        \n

                        • Bright blue 1/4 zip pullover.
                        • CoolTech™ liner is sweat-wicking.
                        • Sleeve thumbholes.
                        • Zipper garage to protect your chin.
                        • Stretchy collar drawcords.

                        ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"neve-studio-dance-jacket-xl-black-1366","links":{},"stock":{"item_id":1366,"product_id":1366,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xl-black-1366.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1365","_score":1,"_source":{"id":1365,"sku":"WJ11-L-Orange","name":"Neve Studio Dance Jacket-L-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84.870001,"max_price":84.870001,"max_regular_price":84.870001,"minimal_regular_price":84.870001,"special_price":null,"minimal_price":84.870001,"regular_price":84.870001,"description":"

                        If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                        \n

                        • Bright blue 1/4 zip pullover.
                        • CoolTech™ liner is sweat-wicking.
                        • Sleeve thumbholes.
                        • Zipper garage to protect your chin.
                        • Stretchy collar drawcords.

                        ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"neve-studio-dance-jacket-l-orange-1365","links":{},"stock":{"item_id":1365,"product_id":1365,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-l-orange-1365.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1374","_score":1,"_source":{"id":1374,"sku":"WJ06-S-Green","name":"Juno Jacket-S-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                        On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                        \n

                        • Adjustable hood.
                        • Fleece-lined, zippered hand pockets.
                        • Thumbhole cuffs.
                        • Full zip.
                        • Mock-neck collar.
                        • Machine wash/dry.

                        ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juno-jacket-s-green-1374","links":{},"stock":{"item_id":1374,"product_id":1374,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-s-green-1374.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1383","_score":1,"_source":{"id":1383,"sku":"WJ06-XL-Green","name":"Juno Jacket-XL-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                        On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                        \n

                        • Adjustable hood.
                        • Fleece-lined, zippered hand pockets.
                        • Thumbhole cuffs.
                        • Full zip.
                        • Mock-neck collar.
                        • Machine wash/dry.

                        ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juno-jacket-xl-green-1383","links":{},"stock":{"item_id":1383,"product_id":1383,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xl-green-1383.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1382","_score":1,"_source":{"id":1382,"sku":"WJ06-XL-Blue","name":"Juno Jacket-XL-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                        On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                        \n

                        • Adjustable hood.
                        • Fleece-lined, zippered hand pockets.
                        • Thumbhole cuffs.
                        • Full zip.
                        • Mock-neck collar.
                        • Machine wash/dry.

                        ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juno-jacket-xl-blue-1382","links":{},"stock":{"item_id":1382,"product_id":1382,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xl-blue-1382.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1394","_score":1,"_source":{"id":1394,"sku":"WJ12-M-Purple","name":"Olivia 1/4 Zip Light Jacket-M-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                        Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                        \n

                        • Loose fit.
                        • Reflectivity.
                        • Flat seams.
                        • Machine wash/dry.

                        ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"olivia-14-zip-light-jacket-m-purple-1394","links":{},"stock":{"item_id":1394,"product_id":1394,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-m-purple-1394.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1399","_score":1,"_source":{"id":1399,"sku":"WJ12-XL-Blue","name":"Olivia 1/4 Zip Light Jacket-XL-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                        Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                        \n

                        • Loose fit.
                        • Reflectivity.
                        • Flat seams.
                        • Machine wash/dry.

                        ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"olivia-14-zip-light-jacket-xl-blue-1399","links":{},"stock":{"item_id":1399,"product_id":1399,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xl-blue-1399.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1380","_score":1,"_source":{"id":1380,"sku":"WJ06-L-Green","name":"Juno Jacket-L-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                        On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                        \n

                        • Adjustable hood.
                        • Fleece-lined, zippered hand pockets.
                        • Thumbhole cuffs.
                        • Full zip.
                        • Mock-neck collar.
                        • Machine wash/dry.

                        ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juno-jacket-l-green-1380","links":{},"stock":{"item_id":1380,"product_id":1380,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-l-green-1380.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1398","_score":1,"_source":{"id":1398,"sku":"WJ12-XL-Black","name":"Olivia 1/4 Zip Light Jacket-XL-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":94.710001,"max_price":94.710001,"max_regular_price":94.710001,"minimal_regular_price":94.710001,"special_price":null,"minimal_price":94.710001,"regular_price":94.710001,"description":"

                        Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                        \n

                        • Loose fit.
                        • Reflectivity.
                        • Flat seams.
                        • Machine wash/dry.

                        ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"olivia-14-zip-light-jacket-xl-black-1398","links":{},"stock":{"item_id":1398,"product_id":1398,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xl-black-1398.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1452","_score":1,"_source":{"id":1452,"sku":"WS06-XS-Red","name":"Elisa EverCool™ Tee-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                        \n

                        • Purple heather v-neck tee.
                        • Short-Sleeves.
                        • Luma EverCool™ fabric.
                        • Machine wash/line dry.

                        ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"elisa-evercool-and-trade-tee-xs-red-1452","links":{},"stock":{"item_id":1452,"product_id":1452,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xs-red-1452.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1459","_score":1,"_source":{"id":1459,"sku":"WS06-L-Gray","name":"Elisa EverCool™ Tee-L-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                        \n

                        • Purple heather v-neck tee.
                        • Short-Sleeves.
                        • Luma EverCool™ fabric.
                        • Machine wash/line dry.

                        ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"elisa-evercool-and-trade-tee-l-gray-1459","links":{},"stock":{"item_id":1459,"product_id":1459,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-l-gray-1459.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1466","_score":1,"_source":{"id":1466,"sku":"WS07-XS-Black","name":"Juliana Short-Sleeve Tee-XS-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                        The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                        \n

                        • Black scoop neck tee.
                        • Side rouching.
                        • Relaxed fit.

                        ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juliana-short-sleeve-tee-xs-black-1466","links":{},"stock":{"item_id":1466,"product_id":1466,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xs-black-1466.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1461","_score":1,"_source":{"id":1461,"sku":"WS06-L-Red","name":"Elisa EverCool™ Tee-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                        \n

                        • Purple heather v-neck tee.
                        • Short-Sleeves.
                        • Luma EverCool™ fabric.
                        • Machine wash/line dry.

                        ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"elisa-evercool-and-trade-tee-l-red-1461","links":{},"stock":{"item_id":1461,"product_id":1461,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-l-red-1461.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1454","_score":1,"_source":{"id":1454,"sku":"WS06-S-Purple","name":"Elisa EverCool™ Tee-S-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                        \n

                        • Purple heather v-neck tee.
                        • Short-Sleeves.
                        • Luma EverCool™ fabric.
                        • Machine wash/line dry.

                        ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"elisa-evercool-and-trade-tee-s-purple-1454","links":{},"stock":{"item_id":1454,"product_id":1454,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-s-purple-1454.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1472","_score":1,"_source":{"id":1472,"sku":"WS07-M-Black","name":"Juliana Short-Sleeve Tee-M-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                        The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                        \n

                        • Black scoop neck tee.
                        • Side rouching.
                        • Relaxed fit.

                        ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juliana-short-sleeve-tee-m-black-1472","links":{},"stock":{"item_id":1472,"product_id":1472,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-m-black-1472.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1424","_score":1,"_source":{"id":1424,"sku":"WS03-M-Blue","name":"Iris Workout Top-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                        \n

                        • Pink heather rouched v-neck.
                        • Scoop neckline.
                        • Angled flat seams.
                        • Moisture wicking.
                        • Body skimming.
                        • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                        ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"iris-workout-top-m-blue-1424","links":{},"stock":{"item_id":1424,"product_id":1424,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-m-blue-1424.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1421","_score":1,"_source":{"id":1421,"sku":"WS03-S-Blue","name":"Iris Workout Top-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                        \n

                        • Pink heather rouched v-neck.
                        • Scoop neckline.
                        • Angled flat seams.
                        • Moisture wicking.
                        • Body skimming.
                        • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                        ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"iris-workout-top-s-blue-1421","links":{},"stock":{"item_id":1421,"product_id":1421,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-s-blue-1421.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1431","_score":1,"_source":{"id":1431,"sku":"WS03-XL-Green","name":"Iris Workout Top-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                        \n

                        • Pink heather rouched v-neck.
                        • Scoop neckline.
                        • Angled flat seams.
                        • Moisture wicking.
                        • Body skimming.
                        • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                        ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"iris-workout-top-xl-green-1431","links":{},"stock":{"item_id":1431,"product_id":1431,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xl-green-1431.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1427","_score":1,"_source":{"id":1427,"sku":"WS03-L-Blue","name":"Iris Workout Top-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                        \n

                        • Pink heather rouched v-neck.
                        • Scoop neckline.
                        • Angled flat seams.
                        • Moisture wicking.
                        • Body skimming.
                        • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                        ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"iris-workout-top-l-blue-1427","links":{},"stock":{"item_id":1427,"product_id":1427,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-l-blue-1427.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1425","_score":1,"_source":{"id":1425,"sku":"WS03-M-Green","name":"Iris Workout Top-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                        \n

                        • Pink heather rouched v-neck.
                        • Scoop neckline.
                        • Angled flat seams.
                        • Moisture wicking.
                        • Body skimming.
                        • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                        ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"iris-workout-top-m-green-1425","links":{},"stock":{"item_id":1425,"product_id":1425,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-m-green-1425.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1442","_score":1,"_source":{"id":1442,"sku":"WS04-M-Red","name":"Layla Tee-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                        \n

                        • Teal tee.
                        • Long back hem.
                        • Dropped shoulders.

                        ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"layla-tee-m-red-1442","links":{},"stock":{"item_id":1442,"product_id":1442,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-m-red-1442.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1447","_score":1,"_source":{"id":1447,"sku":"WS04-XL-Green","name":"Layla Tee-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                        \n

                        • Teal tee.
                        • Long back hem.
                        • Dropped shoulders.

                        ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"layla-tee-xl-green-1447","links":{},"stock":{"item_id":1447,"product_id":1447,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xl-green-1447.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1519","_score":1,"_source":{"id":1519,"sku":"WS10-S-Yellow","name":"Karissa V-Neck Tee-S-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                        The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                        \n

                        • Pink heather soft v-neck tee.
                        • Luma signature micro sleeves.
                        • Semi-fitted.
                        • Machine wash/dry.

                        ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"karissa-v-neck-tee-s-yellow-1519","links":{},"stock":{"item_id":1519,"product_id":1519,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-s-yellow-1519.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1537","_score":1,"_source":{"id":1537,"sku":"WS11-M-Orange","name":"Diva Gym Tee-M-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                        The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                        \n

                        • Bright yellow v-neck tee.
                        • Moisture-wicking fabric.
                        • Long-Sleeves.
                        • Machine wash/line dry.

                        ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"diva-gym-tee-m-orange-1537","links":{},"stock":{"item_id":1537,"product_id":1537,"stock_id":1,"qty":80,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-m-orange-1537.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1525","_score":1,"_source":{"id":1525,"sku":"WS10-L-Yellow","name":"Karissa V-Neck Tee-L-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                        The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                        \n

                        • Pink heather soft v-neck tee.
                        • Luma signature micro sleeves.
                        • Semi-fitted.
                        • Machine wash/dry.

                        ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"karissa-v-neck-tee-l-yellow-1525","links":{},"stock":{"item_id":1525,"product_id":1525,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-l-yellow-1525.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1539","_score":1,"_source":{"id":1539,"sku":"WS11-L-Green","name":"Diva Gym Tee-L-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                        The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                        \n

                        • Bright yellow v-neck tee.
                        • Moisture-wicking fabric.
                        • Long-Sleeves.
                        • Machine wash/line dry.

                        ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"diva-gym-tee-l-green-1539","links":{},"stock":{"item_id":1539,"product_id":1539,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-l-green-1539.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1512","_score":1,"_source":{"id":1512,"sku":"WS09-XL-White","name":"Tiffany Fitness Tee-XL-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                        You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                        \n

                        • Teal soft scoop neck tee.
                        • Contrast stitching pattern.
                        • Machine wash/dry.

                        ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tiffany-fitness-tee-xl-white-1512","links":{},"stock":{"item_id":1512,"product_id":1512,"stock_id":1,"qty":40,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xl-white-1512.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1473","_score":1,"_source":{"id":1473,"sku":"WS07-M-White","name":"Juliana Short-Sleeve Tee-M-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                        The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                        \n

                        • Black scoop neck tee.
                        • Side rouching.
                        • Relaxed fit.

                        ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juliana-short-sleeve-tee-m-white-1473","links":{},"stock":{"item_id":1473,"product_id":1473,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-m-white-1473.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1476","_score":1,"_source":{"id":1476,"sku":"WS07-L-White","name":"Juliana Short-Sleeve Tee-L-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                        The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                        \n

                        • Black scoop neck tee.
                        • Side rouching.
                        • Relaxed fit.

                        ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juliana-short-sleeve-tee-l-white-1476","links":{},"stock":{"item_id":1476,"product_id":1476,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-l-white-1476.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1500","_score":1,"_source":{"id":1500,"sku":"WS09-XS-White","name":"Tiffany Fitness Tee-XS-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                        You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                        \n

                        • Teal soft scoop neck tee.
                        • Contrast stitching pattern.
                        • Machine wash/dry.

                        ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tiffany-fitness-tee-xs-white-1500","links":{},"stock":{"item_id":1500,"product_id":1500,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xs-white-1500.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1492","_score":1,"_source":{"id":1492,"sku":"WS08-L-Blue","name":"Minerva LumaTech™ V-Tee-L-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                        Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                        \n

                        • Navy blue heather soft v-neck tee.
                        • Flatlock seams for chafe-free comfort.
                        • Relaxed cut.
                        • Ultra-lightweight fabric.
                        • Machine wash/dry.

                        ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"minerva-lumatech-and-trade-v-tee-l-blue-1492","links":{},"stock":{"item_id":1492,"product_id":1492,"stock_id":1,"qty":28,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-l-blue-1492.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1504","_score":1,"_source":{"id":1504,"sku":"WS09-M-Blue","name":"Tiffany Fitness Tee-M-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                        You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                        \n

                        • Teal soft scoop neck tee.
                        • Contrast stitching pattern.
                        • Machine wash/dry.

                        ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tiffany-fitness-tee-m-blue-1504","links":{},"stock":{"item_id":1504,"product_id":1504,"stock_id":1,"qty":74,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-m-blue-1504.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1510","_score":1,"_source":{"id":1510,"sku":"WS09-XL-Blue","name":"Tiffany Fitness Tee-XL-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                        You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                        \n

                        • Teal soft scoop neck tee.
                        • Contrast stitching pattern.
                        • Machine wash/dry.

                        ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tiffany-fitness-tee-xl-blue-1510","links":{},"stock":{"item_id":1510,"product_id":1510,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xl-blue-1510.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1515","_score":1,"_source":{"id":1515,"sku":"WS10-XS-Red","name":"Karissa V-Neck Tee-XS-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39.360001,"max_price":39.360001,"max_regular_price":39.360001,"minimal_regular_price":39.360001,"special_price":null,"minimal_price":39.360001,"regular_price":39.360001,"description":"

                        The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                        \n

                        • Pink heather soft v-neck tee.
                        • Luma signature micro sleeves.
                        • Semi-fitted.
                        • Machine wash/dry.

                        ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"karissa-v-neck-tee-xs-red-1515","links":{},"stock":{"item_id":1515,"product_id":1515,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xs-red-1515.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1506","_score":1,"_source":{"id":1506,"sku":"WS09-M-White","name":"Tiffany Fitness Tee-M-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                        You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                        \n

                        • Teal soft scoop neck tee.
                        • Contrast stitching pattern.
                        • Machine wash/dry.

                        ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tiffany-fitness-tee-m-white-1506","links":{},"stock":{"item_id":1506,"product_id":1506,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-m-white-1506.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1562","_score":1,"_source":{"id":1562,"sku":"WS01-XS-Black","name":"Gwyn Endurance Tee-XS-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                        When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                        \n

                        • Short-Sleeves.
                        • Machine wash/line dry.

                        ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gwyn-endurance-tee-xs-black-1562","links":{},"stock":{"item_id":1562,"product_id":1562,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-29 15:00:20","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xs-black-1562.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1556","_score":1,"_source":{"id":1556,"sku":"WS12-L-Orange","name":"Radiant Tee-L-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27.060001,"max_price":27.060001,"max_regular_price":27.060001,"minimal_regular_price":27.060001,"special_price":null,"minimal_price":27.060001,"regular_price":27.060001,"description":"

                        So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                        \n

                        • Salmon soft scoop neck tee.
                        • Athletic, semi-form fit.
                        • Flat seams prevent chafing.
                        • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                        ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"radiant-tee-l-orange-1556","links":{},"stock":{"item_id":1556,"product_id":1556,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-l-orange-1556.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1584","_score":1,"_source":{"id":1584,"sku":"WS05-M-Black","name":"Desiree Fitness Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                        When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                        \n

                        • Short-Sleeves.
                        • Performance fabric.
                        • Machine wash/line dry.

                        ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"desiree-fitness-tee-m-black-1584","links":{},"stock":{"item_id":1584,"product_id":1584,"stock_id":1,"qty":32,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-m-black-1584.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1407","_score":1,"_source":{"id":1407,"sku":"WS02-S-Red","name":"Gabrielle Micro Sleeve Top-S-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                        Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                        \n

                        • Lime green v-neck tee.
                        • Slimming, flattering fit.
                        • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                        • Longer curved hem provides additional coverage.
                        • 55% Hemp / 45% Organic Cotton.

                        ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gabrielle-micro-sleeve-top-s-red-1407","links":{},"stock":{"item_id":1407,"product_id":1407,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-s-red-1407.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1416","_score":1,"_source":{"id":1416,"sku":"WS02-XL-Red","name":"Gabrielle Micro Sleeve Top-XL-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                        Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                        \n

                        • Lime green v-neck tee.
                        • Slimming, flattering fit.
                        • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                        • Longer curved hem provides additional coverage.
                        • 55% Hemp / 45% Organic Cotton.

                        ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gabrielle-micro-sleeve-top-xl-red-1416","links":{},"stock":{"item_id":1416,"product_id":1416,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xl-red-1416.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1418","_score":1,"_source":{"id":1418,"sku":"WS03-XS-Blue","name":"Iris Workout Top-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                        \n

                        • Pink heather rouched v-neck.
                        • Scoop neckline.
                        • Angled flat seams.
                        • Moisture wicking.
                        • Body skimming.
                        • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                        ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"iris-workout-top-xs-blue-1418","links":{},"stock":{"item_id":1418,"product_id":1418,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xs-blue-1418.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1609","_score":1,"_source":{"id":1609,"sku":"WB01","name":"Electra Bra Top","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":39,"description":"

                        A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                        \n

                        • Gray rouched bra top.
                        • Attractive back straps feature contrasting motif fabric.
                        • Interior bra top is lined with breathable mesh.
                        • Elastic underband for superior support.
                        • Removable cup inserts.
                        • Chafe-free flat lock seams provide added comfort.

                        ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"electra-bra-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,154,38],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"131","pattern":"197","climate":[205,209],"slug":"electra-bra-top-1609","links":{},"stock":{"item_id":1609,"product_id":1609,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WB01-XS-Black","id":1594,"status":1,"name":"Electra Bra Top-XS-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"167","color":"49","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","url_key":"electra-bra-top-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WB01-XS-Gray","id":1595,"status":1,"name":"Electra Bra Top-XS-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"167","color":"52","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","url_key":"electra-bra-top-xs-gray","msrp_display_actual_price_type":"0"},{"sku":"WB01-XS-Purple","id":1596,"status":1,"name":"Electra Bra Top-XS-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"167","color":"57","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","url_key":"electra-bra-top-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WB01-S-Black","id":1597,"status":1,"name":"Electra Bra Top-S-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"168","color":"49","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","url_key":"electra-bra-top-s-black","msrp_display_actual_price_type":"0"},{"sku":"WB01-S-Gray","id":1598,"status":1,"name":"Electra Bra Top-S-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"168","color":"52","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","url_key":"electra-bra-top-s-gray","msrp_display_actual_price_type":"0"},{"sku":"WB01-S-Purple","id":1599,"status":1,"name":"Electra Bra Top-S-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"168","color":"57","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","url_key":"electra-bra-top-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WB01-M-Black","id":1600,"status":1,"name":"Electra Bra Top-M-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"169","color":"49","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","url_key":"electra-bra-top-m-black","msrp_display_actual_price_type":"0"},{"sku":"WB01-M-Gray","id":1601,"status":1,"name":"Electra Bra Top-M-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"169","color":"52","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","url_key":"electra-bra-top-m-gray","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB01-M-Purple","id":1602,"status":1,"name":"Electra Bra Top-M-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"169","color":"57","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","url_key":"electra-bra-top-m-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB01-L-Black","id":1603,"status":1,"name":"Electra Bra Top-L-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"170","color":"49","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","url_key":"electra-bra-top-l-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB01-L-Gray","id":1604,"status":1,"name":"Electra Bra Top-L-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"170","color":"52","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","url_key":"electra-bra-top-l-gray","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB01-L-Purple","id":1605,"status":1,"name":"Electra Bra Top-L-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"170","color":"57","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","url_key":"electra-bra-top-l-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB01-XL-Black","id":1606,"status":1,"name":"Electra Bra Top-XL-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"171","color":"49","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","url_key":"electra-bra-top-xl-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB01-XL-Gray","id":1607,"status":1,"name":"Electra Bra Top-XL-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"171","color":"52","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","url_key":"electra-bra-top-xl-gray","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB01-XL-Purple","id":1608,"status":1,"name":"Electra Bra Top-XL-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"171","color":"57","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","url_key":"electra-bra-top-xl-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001}],"configurable_options":[{"id":219,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"}],"product_id":1609,"attribute_code":"color"},{"id":218,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1609,"attribute_code":"size"}],"color_options":[49,52,57],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-1609.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1577","_score":1,"_source":{"id":1577,"sku":"WS01","name":"Gwyn Endurance Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":24,"description":"

                        When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                        \n

                        • Short-Sleeves.
                        • Machine wash/line dry.

                        ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"gwyn-endurance-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[152,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"gwyn-endurance-tee-1577","links":{},"stock":{"item_id":1577,"product_id":1577,"stock_id":1,"qty":8,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS01-XS-Black","id":1562,"status":1,"name":"Gwyn Endurance Tee-XS-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"167","color":"49","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","url_key":"gwyn-endurance-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WS01-XS-Green","id":1563,"status":1,"name":"Gwyn Endurance Tee-XS-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"167","color":"53","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","url_key":"gwyn-endurance-tee-xs-green","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-XS-Yellow","id":1564,"status":1,"name":"Gwyn Endurance Tee-XS-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"167","color":"60","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","url_key":"gwyn-endurance-tee-xs-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-S-Black","id":1565,"status":1,"name":"Gwyn Endurance Tee-S-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"168","color":"49","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","url_key":"gwyn-endurance-tee-s-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-S-Green","id":1566,"status":1,"name":"Gwyn Endurance Tee-S-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"168","color":"53","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","url_key":"gwyn-endurance-tee-s-green","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-S-Yellow","id":1567,"status":1,"name":"Gwyn Endurance Tee-S-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"168","color":"60","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","url_key":"gwyn-endurance-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-M-Black","id":1568,"status":1,"name":"Gwyn Endurance Tee-M-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"169","color":"49","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","url_key":"gwyn-endurance-tee-m-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-M-Green","id":1569,"status":1,"name":"Gwyn Endurance Tee-M-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"169","color":"53","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","url_key":"gwyn-endurance-tee-m-green","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-M-Yellow","id":1570,"status":1,"name":"Gwyn Endurance Tee-M-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"169","color":"60","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","url_key":"gwyn-endurance-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-L-Black","id":1571,"status":1,"name":"Gwyn Endurance Tee-L-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"170","color":"49","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","url_key":"gwyn-endurance-tee-l-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-L-Green","id":1572,"status":1,"name":"Gwyn Endurance Tee-L-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"170","color":"53","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","url_key":"gwyn-endurance-tee-l-green","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-L-Yellow","id":1573,"status":1,"name":"Gwyn Endurance Tee-L-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"170","color":"60","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","url_key":"gwyn-endurance-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-XL-Black","id":1574,"status":1,"name":"Gwyn Endurance Tee-XL-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"171","color":"49","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","url_key":"gwyn-endurance-tee-xl-black","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-XL-Green","id":1575,"status":1,"name":"Gwyn Endurance Tee-XL-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"171","color":"53","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","url_key":"gwyn-endurance-tee-xl-green","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001},{"sku":"WS01-XL-Yellow","id":1576,"status":1,"name":"Gwyn Endurance Tee-XL-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"171","color":"60","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","url_key":"gwyn-endurance-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001}],"configurable_options":[{"id":215,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":60,"label":"Yellow"}],"product_id":1577,"attribute_code":"color"},{"id":214,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1577,"attribute_code":"size"}],"color_options":[49,53,60],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-1577.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1673","_score":1,"_source":{"id":1673,"sku":"WB05","name":"Lucia Cross-Fit Bra ","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":39,"description":"

                        Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                        \n

                        • Black/white bra top.
                        • Criss-cross back design.
                        • Machine wash/dry.

                        ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"lucia-cross-fit-bra","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[150,37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"131","pattern":"194","climate":[205,209],"slug":"lucia-cross-fit-bra-1673","links":{},"stock":{"item_id":1673,"product_id":1673,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WB05-XS-Black","id":1658,"status":1,"name":"Lucia Cross-Fit Bra -XS-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"49","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","url_key":"lucia-cross-fit-bra-xs-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-XS-Orange","id":1659,"status":1,"name":"Lucia Cross-Fit Bra -XS-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"56","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","url_key":"lucia-cross-fit-bra-xs-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-XS-Purple","id":1660,"status":1,"name":"Lucia Cross-Fit Bra -XS-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"57","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","url_key":"lucia-cross-fit-bra-xs-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-S-Black","id":1661,"status":1,"name":"Lucia Cross-Fit Bra -S-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"49","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","url_key":"lucia-cross-fit-bra-s-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-S-Orange","id":1662,"status":1,"name":"Lucia Cross-Fit Bra -S-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"56","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","url_key":"lucia-cross-fit-bra-s-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-S-Purple","id":1663,"status":1,"name":"Lucia Cross-Fit Bra -S-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"57","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","url_key":"lucia-cross-fit-bra-s-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-M-Black","id":1664,"status":1,"name":"Lucia Cross-Fit Bra -M-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"49","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","url_key":"lucia-cross-fit-bra-m-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-M-Orange","id":1665,"status":1,"name":"Lucia Cross-Fit Bra -M-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"56","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","url_key":"lucia-cross-fit-bra-m-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-M-Purple","id":1666,"status":1,"name":"Lucia Cross-Fit Bra -M-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"57","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","url_key":"lucia-cross-fit-bra-m-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-L-Black","id":1667,"status":1,"name":"Lucia Cross-Fit Bra -L-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"49","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","url_key":"lucia-cross-fit-bra-l-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-L-Orange","id":1668,"status":1,"name":"Lucia Cross-Fit Bra -L-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"56","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","url_key":"lucia-cross-fit-bra-l-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-L-Purple","id":1669,"status":1,"name":"Lucia Cross-Fit Bra -L-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"57","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","url_key":"lucia-cross-fit-bra-l-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-XL-Black","id":1670,"status":1,"name":"Lucia Cross-Fit Bra -XL-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"49","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","url_key":"lucia-cross-fit-bra-xl-black","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-XL-Orange","id":1671,"status":1,"name":"Lucia Cross-Fit Bra -XL-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"56","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","url_key":"lucia-cross-fit-bra-xl-orange","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WB05-XL-Purple","id":1672,"status":1,"name":"Lucia Cross-Fit Bra -XL-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"57","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","url_key":"lucia-cross-fit-bra-xl-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001}],"configurable_options":[{"id":227,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1673,"attribute_code":"color"},{"id":226,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1673,"attribute_code":"size"}],"color_options":[49,56,57],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-1673.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1672","_score":1,"_source":{"id":1672,"sku":"WB05-XL-Purple","name":"Lucia Cross-Fit Bra -XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                        \n

                        • Black/white bra top.
                        • Criss-cross back design.
                        • Machine wash/dry.

                        ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lucia-cross-fit-bra-xl-purple-1672","links":{},"stock":{"item_id":1672,"product_id":1672,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xl-purple-1672.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1676","_score":1,"_source":{"id":1676,"sku":"WT01-XS-Orange","name":"Bella Tank-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                        \n

                        • Navy blue tank top - cotton.
                        • Feminine scoop neckline.
                        • Power mesh lining in shelf bra for superior support.
                        • Soft, breathable fabric.
                        • Dry wick fabric to stay cool and dry.

                        ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bella-tank-xs-orange-1676","links":{},"stock":{"item_id":1676,"product_id":1676,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xs-orange-1676.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1690","_score":1,"_source":{"id":1690,"sku":"WT02-XS-Green","name":"Zoe Tank-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                        \n

                        • Salmon heather tank top.
                        • 1\" elastic band on inner bra.
                        • Mesh lining on shelf bra for support.
                        • Soft, breathable fabric.
                        • Dry wick fabric to stay cool and dry.

                        ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoe-tank-xs-green-1690","links":{},"stock":{"item_id":1690,"product_id":1690,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xs-green-1690.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1691","_score":1,"_source":{"id":1691,"sku":"WT02-XS-Orange","name":"Zoe Tank-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                        \n

                        • Salmon heather tank top.
                        • 1\" elastic band on inner bra.
                        • Mesh lining on shelf bra for support.
                        • Soft, breathable fabric.
                        • Dry wick fabric to stay cool and dry.

                        ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoe-tank-xs-orange-1691","links":{},"stock":{"item_id":1691,"product_id":1691,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xs-orange-1691.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1698","_score":1,"_source":{"id":1698,"sku":"WT02-M-Yellow","name":"Zoe Tank-M-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                        \n

                        • Salmon heather tank top.
                        • 1\" elastic band on inner bra.
                        • Mesh lining on shelf bra for support.
                        • Soft, breathable fabric.
                        • Dry wick fabric to stay cool and dry.

                        ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoe-tank-m-yellow-1698","links":{},"stock":{"item_id":1698,"product_id":1698,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-m-yellow-1698.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1700","_score":1,"_source":{"id":1700,"sku":"WT02-L-Orange","name":"Zoe Tank-L-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                        \n

                        • Salmon heather tank top.
                        • 1\" elastic band on inner bra.
                        • Mesh lining on shelf bra for support.
                        • Soft, breathable fabric.
                        • Dry wick fabric to stay cool and dry.

                        ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoe-tank-l-orange-1700","links":{},"stock":{"item_id":1700,"product_id":1700,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-l-orange-1700.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1684","_score":1,"_source":{"id":1684,"sku":"WT01-L-Blue","name":"Bella Tank-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                        \n

                        • Navy blue tank top - cotton.
                        • Feminine scoop neckline.
                        • Power mesh lining in shelf bra for superior support.
                        • Soft, breathable fabric.
                        • Dry wick fabric to stay cool and dry.

                        ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bella-tank-l-blue-1684","links":{},"stock":{"item_id":1684,"product_id":1684,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-l-blue-1684.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1585","_score":1,"_source":{"id":1585,"sku":"WS05-M-Orange","name":"Desiree Fitness Tee-M-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                        When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                        \n

                        • Short-Sleeves.
                        • Performance fabric.
                        • Machine wash/line dry.

                        ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"desiree-fitness-tee-m-orange-1585","links":{},"stock":{"item_id":1585,"product_id":1585,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-m-orange-1585.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1600","_score":1,"_source":{"id":1600,"sku":"WB01-M-Black","name":"Electra Bra Top-M-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                        \n

                        • Gray rouched bra top.
                        • Attractive back straps feature contrasting motif fabric.
                        • Interior bra top is lined with breathable mesh.
                        • Elastic underband for superior support.
                        • Removable cup inserts.
                        • Chafe-free flat lock seams provide added comfort.

                        ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"electra-bra-top-m-black-1600","links":{},"stock":{"item_id":1600,"product_id":1600,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-m-black-1600.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1568","_score":1,"_source":{"id":1568,"sku":"WS01-M-Black","name":"Gwyn Endurance Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                        When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                        \n

                        • Short-Sleeves.
                        • Machine wash/line dry.

                        ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gwyn-endurance-tee-m-black-1568","links":{},"stock":{"item_id":1568,"product_id":1568,"stock_id":1,"qty":51,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-m-black-1568.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1583","_score":1,"_source":{"id":1583,"sku":"WS05-S-Yellow","name":"Desiree Fitness Tee-S-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                        When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                        \n

                        • Short-Sleeves.
                        • Performance fabric.
                        • Machine wash/line dry.

                        ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"desiree-fitness-tee-s-yellow-1583","links":{},"stock":{"item_id":1583,"product_id":1583,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-s-yellow-1583.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1596","_score":1,"_source":{"id":1596,"sku":"WB01-XS-Purple","name":"Electra Bra Top-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                        \n

                        • Gray rouched bra top.
                        • Attractive back straps feature contrasting motif fabric.
                        • Interior bra top is lined with breathable mesh.
                        • Elastic underband for superior support.
                        • Removable cup inserts.
                        • Chafe-free flat lock seams provide added comfort.

                        ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"electra-bra-top-xs-purple-1596","links":{},"stock":{"item_id":1596,"product_id":1596,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xs-purple-1596.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1582","_score":1,"_source":{"id":1582,"sku":"WS05-S-Orange","name":"Desiree Fitness Tee-S-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                        When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                        \n

                        • Short-Sleeves.
                        • Performance fabric.
                        • Machine wash/line dry.

                        ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"desiree-fitness-tee-s-orange-1582","links":{},"stock":{"item_id":1582,"product_id":1582,"stock_id":1,"qty":62,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-s-orange-1582.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1626","_score":1,"_source":{"id":1626,"sku":"WB03-XS-Green","name":"Celeste Sports Bra-XS-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                        \n

                        • Mint bra top.
                        • Seam-free interior molded cups
                        • Odor control.
                        • UV protection.
                        • Machine wash/dry.

                        ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"celeste-sports-bra-xs-green-1626","links":{},"stock":{"item_id":1626,"product_id":1626,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xs-green-1626.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1630","_score":1,"_source":{"id":1630,"sku":"WB03-S-Red","name":"Celeste Sports Bra-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                        \n

                        • Mint bra top.
                        • Seam-free interior molded cups
                        • Odor control.
                        • UV protection.
                        • Machine wash/dry.

                        ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"celeste-sports-bra-s-red-1630","links":{},"stock":{"item_id":1630,"product_id":1630,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-s-red-1630.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1639","_score":1,"_source":{"id":1639,"sku":"WB03-XL-Red","name":"Celeste Sports Bra-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                        \n

                        • Mint bra top.
                        • Seam-free interior molded cups
                        • Odor control.
                        • UV protection.
                        • Machine wash/dry.

                        ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"celeste-sports-bra-xl-red-1639","links":{},"stock":{"item_id":1639,"product_id":1639,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xl-red-1639.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1642","_score":1,"_source":{"id":1642,"sku":"WB04-XS-Blue","name":"Prima Compete Bra Top-XS-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                        Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                        `
                        • Colorblocked details.
                        • Machine wash/line dry.

                        ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"prima-compete-bra-top-xs-blue-1642","links":{},"stock":{"item_id":1642,"product_id":1642,"stock_id":1,"qty":80,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xs-blue-1642.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1663","_score":1,"_source":{"id":1663,"sku":"WB05-S-Purple","name":"Lucia Cross-Fit Bra -S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                        \n

                        • Black/white bra top.
                        • Criss-cross back design.
                        • Machine wash/dry.

                        ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lucia-cross-fit-bra-s-purple-1663","links":{},"stock":{"item_id":1663,"product_id":1663,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-s-purple-1663.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1651","_score":1,"_source":{"id":1651,"sku":"WB04-L-Blue","name":"Prima Compete Bra Top-L-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                        Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                        `
                        • Colorblocked details.
                        • Machine wash/line dry.

                        ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"prima-compete-bra-top-l-blue-1651","links":{},"stock":{"item_id":1651,"product_id":1651,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-l-blue-1651.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1668","_score":1,"_source":{"id":1668,"sku":"WB05-L-Orange","name":"Lucia Cross-Fit Bra -L-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                        \n

                        • Black/white bra top.
                        • Criss-cross back design.
                        • Machine wash/dry.

                        ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lucia-cross-fit-bra-l-orange-1668","links":{},"stock":{"item_id":1668,"product_id":1668,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-l-orange-1668.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1679","_score":1,"_source":{"id":1679,"sku":"WT01-S-Orange","name":"Bella Tank-S-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                        \n

                        • Navy blue tank top - cotton.
                        • Feminine scoop neckline.
                        • Power mesh lining in shelf bra for superior support.
                        • Soft, breathable fabric.
                        • Dry wick fabric to stay cool and dry.

                        ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bella-tank-s-orange-1679","links":{},"stock":{"item_id":1679,"product_id":1679,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-s-orange-1679.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1615","_score":1,"_source":{"id":1615,"sku":"WB02-S-Yellow","name":"Erica Evercool Sports Bra-S-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                        \n

                        • Honeycomb light blue bra top.
                        • Elastic hem.
                        • Reinforced binding.
                        • Machine wash/dry.

                        ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erica-evercool-sports-bra-s-yellow-1615","links":{},"stock":{"item_id":1615,"product_id":1615,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-s-yellow-1615.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1623","_score":1,"_source":{"id":1623,"sku":"WB02-XL-Orange","name":"Erica Evercool Sports Bra-XL-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                        \n

                        • Honeycomb light blue bra top.
                        • Elastic hem.
                        • Reinforced binding.
                        • Machine wash/dry.

                        ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erica-evercool-sports-bra-xl-orange-1623","links":{},"stock":{"item_id":1623,"product_id":1623,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xl-orange-1623.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1617","_score":1,"_source":{"id":1617,"sku":"WB02-M-Orange","name":"Erica Evercool Sports Bra-M-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                        \n

                        • Honeycomb light blue bra top.
                        • Elastic hem.
                        • Reinforced binding.
                        • Machine wash/dry.

                        ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erica-evercool-sports-bra-m-orange-1617","links":{},"stock":{"item_id":1617,"product_id":1617,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-m-orange-1617.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1613","_score":1,"_source":{"id":1613,"sku":"WB02-S-Blue","name":"Erica Evercool Sports Bra-S-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                        \n

                        • Honeycomb light blue bra top.
                        • Elastic hem.
                        • Reinforced binding.
                        • Machine wash/dry.

                        ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erica-evercool-sports-bra-s-blue-1613","links":{},"stock":{"item_id":1613,"product_id":1613,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-s-blue-1613.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1616","_score":1,"_source":{"id":1616,"sku":"WB02-M-Blue","name":"Erica Evercool Sports Bra-M-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                        \n

                        • Honeycomb light blue bra top.
                        • Elastic hem.
                        • Reinforced binding.
                        • Machine wash/dry.

                        ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erica-evercool-sports-bra-m-blue-1616","links":{},"stock":{"item_id":1616,"product_id":1616,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-m-blue-1616.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1610","_score":1,"_source":{"id":1610,"sku":"WB02-XS-Blue","name":"Erica Evercool Sports Bra-XS-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                        \n

                        • Honeycomb light blue bra top.
                        • Elastic hem.
                        • Reinforced binding.
                        • Machine wash/dry.

                        ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erica-evercool-sports-bra-xs-blue-1610","links":{},"stock":{"item_id":1610,"product_id":1610,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xs-blue-1610.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1736","_score":1,"_source":{"id":1736,"sku":"WT04-XL-Red","name":"Nona Fitness Tank-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                        \n

                        • Blue/white striped mesh tank.
                        • Relaxed fit.
                        • Chafe-resistant trim around armholes and collar.
                        • Machine wash/dry.

                        ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nona-fitness-tank-xl-red-1736","links":{},"stock":{"item_id":1736,"product_id":1736,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xl-red-1736.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1753","_score":1,"_source":{"id":1753,"sku":"WT05","name":"Leah Yoga Top","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":39,"description":"

                        The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                        \n

                        • Blue heather rouched tank top.
                        • Camisole tank top.
                        • Banding and shirring details.
                        • Body hugging fit.
                        • Contrast topstitch.
                        • Interior shelf bra with shapewear technology.
                        • 65% Polyester 35% Cotton.

                        ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"leah-yoga-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[135,142],"pattern":"197","climate":[205,209],"slug":"leah-yoga-top-1753","links":{},"stock":{"item_id":1753,"product_id":1753,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT05-XS-Orange","id":1738,"status":1,"name":"Leah Yoga Top-XS-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"167","color":"56","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","url_key":"leah-yoga-top-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WT05-XS-Purple","id":1739,"status":1,"name":"Leah Yoga Top-XS-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"167","color":"57","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","url_key":"leah-yoga-top-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WT05-XS-White","id":1740,"status":1,"name":"Leah Yoga Top-XS-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"167","color":"59","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","url_key":"leah-yoga-top-xs-white","msrp_display_actual_price_type":"0"},{"sku":"WT05-S-Orange","id":1741,"status":1,"name":"Leah Yoga Top-S-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"168","color":"56","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","url_key":"leah-yoga-top-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WT05-S-Purple","id":1742,"status":1,"name":"Leah Yoga Top-S-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"168","color":"57","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","url_key":"leah-yoga-top-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WT05-S-White","id":1743,"status":1,"name":"Leah Yoga Top-S-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"168","color":"59","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","url_key":"leah-yoga-top-s-white","msrp_display_actual_price_type":"0"},{"sku":"WT05-M-Orange","id":1744,"status":1,"name":"Leah Yoga Top-M-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"169","color":"56","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","url_key":"leah-yoga-top-m-orange","msrp_display_actual_price_type":"0"},{"sku":"WT05-M-Purple","id":1745,"status":1,"name":"Leah Yoga Top-M-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"169","color":"57","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","url_key":"leah-yoga-top-m-purple","msrp_display_actual_price_type":"0"},{"sku":"WT05-M-White","id":1746,"status":1,"name":"Leah Yoga Top-M-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"169","color":"59","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","url_key":"leah-yoga-top-m-white","msrp_display_actual_price_type":"0"},{"sku":"WT05-L-Orange","id":1747,"status":1,"name":"Leah Yoga Top-L-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"170","color":"56","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","url_key":"leah-yoga-top-l-orange","msrp_display_actual_price_type":"0"},{"sku":"WT05-L-Purple","id":1748,"status":1,"name":"Leah Yoga Top-L-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"170","color":"57","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","url_key":"leah-yoga-top-l-purple","msrp_display_actual_price_type":"0"},{"sku":"WT05-L-White","id":1749,"status":1,"name":"Leah Yoga Top-L-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"170","color":"59","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","url_key":"leah-yoga-top-l-white","msrp_display_actual_price_type":"0"},{"sku":"WT05-XL-Orange","id":1750,"status":1,"name":"Leah Yoga Top-XL-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"171","color":"56","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","url_key":"leah-yoga-top-xl-orange","msrp_display_actual_price_type":"0"},{"sku":"WT05-XL-Purple","id":1751,"status":1,"name":"Leah Yoga Top-XL-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"171","color":"57","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","url_key":"leah-yoga-top-xl-purple","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001},{"sku":"WT05-XL-White","id":1752,"status":1,"name":"Leah Yoga Top-XL-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"171","color":"59","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","url_key":"leah-yoga-top-xl-white","msrp_display_actual_price_type":"0","final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001}],"configurable_options":[{"id":237,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"}],"product_id":1753,"attribute_code":"color"},{"id":236,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1753,"attribute_code":"size"}],"color_options":[56,57,59],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-1753.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1821","_score":1,"_source":{"id":1821,"sku":"WP01-29-Black","name":"Karmen Yoga Pant-29-Black","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                        \n

                        • Light blue parachute pants.
                        • Power mesh internal waistband for support.
                        • Internal waistband pocket.
                        • Antimicrobial finish.

                        ","image":"/w/p/wp01-black_main.jpg","small_image":"/w/p/wp01-black_main.jpg","thumbnail":"/w/p/wp01-black_main.jpg","color":"49","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"karmen-yoga-pant-29-black-1821","links":{},"stock":{"item_id":1821,"product_id":1821,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-29-black-1821.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1808","_score":1,"_source":{"id":1808,"sku":"WT09-M-Purple","name":"Breathe-Easy Tank-M-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                        The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                        \n

                        • Machine wash/dry.
                        • Cocona® fabric.

                        ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"breathe-easy-tank-m-purple-1808","links":{},"stock":{"item_id":1808,"product_id":1808,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-m-purple-1808.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1830","_score":1,"_source":{"id":1830,"sku":"WP02-29-Red","name":"Emma Leggings-29-Red","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                        These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                        \n

                        • Light blue heather yoga pants.
                        • Body hugging fit.
                        • Low rise fit.

                        ","image":"/w/p/wp02-red_main.jpg","small_image":"/w/p/wp02-red_main.jpg","thumbnail":"/w/p/wp02-red_main.jpg","color":"58","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"emma-leggings-29-red-1830","links":{},"stock":{"item_id":1830,"product_id":1830,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-29-red-1830.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1847","_score":1,"_source":{"id":1847,"sku":"WP05-28-Gray","name":"Sahara Leggings-28-Gray","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                        Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                        \n

                        • Pinstripe legging with rouched ankles.
                        • Secret pocket at waistband.
                        • Flat seams for comfort.
                        • Shaped fit with low rise.
                        • 4-way stretch, moisture-wicking material.

                        ","image":"/w/p/wp05-gray_main.jpg","small_image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","color":"52","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sahara-leggings-28-gray-1847","links":{},"stock":{"item_id":1847,"product_id":1847,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-28-gray-1847.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1841","_score":1,"_source":{"id":1841,"sku":"WP04-28-White","name":"Cora Parachute Pant-28-White","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                        Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                        \n

                        • Light blue parachute pants.
                        • Power mesh internal waistband for support.
                        • Internal waistband pocket.
                        • Antimicrobial finish.

                        ","image":"/w/p/wp04-white_main.jpg","small_image":"/w/p/wp04-white_main.jpg","thumbnail":"/w/p/wp04-white_main.jpg","color":"59","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"cora-parachute-pant-28-white-1841","links":{},"stock":{"item_id":1841,"product_id":1841,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-28-white-1841.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1822","_score":1,"_source":{"id":1822,"sku":"WP01-29-Gray","name":"Karmen Yoga Pant-29-Gray","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                        \n

                        • Light blue parachute pants.
                        • Power mesh internal waistband for support.
                        • Internal waistband pocket.
                        • Antimicrobial finish.

                        ","image":"/w/p/wp01-gray_main.jpg","small_image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","color":"52","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"karmen-yoga-pant-29-gray-1822","links":{},"stock":{"item_id":1822,"product_id":1822,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp01-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-29-gray-1822.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1833","_score":1,"_source":{"id":1833,"sku":"WP03-28-Blue","name":"Ida Workout Parachute Pant-28-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                        The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                        \n

                        • Royal blue parachute pants.
                        • Contrast stripe.
                        • Relaxed fit.
                        • Drawstring closure.
                        • Machine wash/dry.

                        ","image":"/w/p/wp03-blue_main.jpg","small_image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","color":"50","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ida-workout-parachute-pant-28-blue-1833","links":{},"stock":{"item_id":1833,"product_id":1833,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-28-blue-1833.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1780","_score":1,"_source":{"id":1780,"sku":"WT07-L-White","name":"Maya Tunic-L-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                        \n

                        • Mint green heather tunic-style tank.
                        • Wrapped back with cut out detail.
                        • Drawcord detail at end.
                        • Abutted seams.

                        ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"maya-tunic-l-white-1780","links":{},"stock":{"item_id":1780,"product_id":1780,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-l-white-1780.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1775","_score":1,"_source":{"id":1775,"sku":"WT07-S-Yellow","name":"Maya Tunic-S-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                        \n

                        • Mint green heather tunic-style tank.
                        • Wrapped back with cut out detail.
                        • Drawcord detail at end.
                        • Abutted seams.

                        ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"maya-tunic-s-yellow-1775","links":{},"stock":{"item_id":1775,"product_id":1775,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-s-yellow-1775.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1773","_score":1,"_source":{"id":1773,"sku":"WT07-S-Green","name":"Maya Tunic-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                        \n

                        • Mint green heather tunic-style tank.
                        • Wrapped back with cut out detail.
                        • Drawcord detail at end.
                        • Abutted seams.

                        ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"maya-tunic-s-green-1773","links":{},"stock":{"item_id":1773,"product_id":1773,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-s-green-1773.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1764","_score":1,"_source":{"id":1764,"sku":"WT06-L-Red","name":"Chloe Compete Tank-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                        \n

                        • Royal blue tank top - nylon/spandex.
                        • Flatlock stitching.
                        • Moisture-wicking fabric.
                        • Ergonomic seaming.
                        • Machine wash/dry.

                        ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chloe-compete-tank-l-red-1764","links":{},"stock":{"item_id":1764,"product_id":1764,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-l-red-1764.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1768","_score":1,"_source":{"id":1768,"sku":"WT06-XL-Yellow","name":"Chloe Compete Tank-XL-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                        \n

                        • Royal blue tank top - nylon/spandex.
                        • Flatlock stitching.
                        • Moisture-wicking fabric.
                        • Ergonomic seaming.
                        • Machine wash/dry.

                        ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chloe-compete-tank-xl-yellow-1768","links":{},"stock":{"item_id":1768,"product_id":1768,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xl-yellow-1768.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1757","_score":1,"_source":{"id":1757,"sku":"WT06-S-Blue","name":"Chloe Compete Tank-S-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                        \n

                        • Royal blue tank top - nylon/spandex.
                        • Flatlock stitching.
                        • Moisture-wicking fabric.
                        • Ergonomic seaming.
                        • Machine wash/dry.

                        ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chloe-compete-tank-s-blue-1757","links":{},"stock":{"item_id":1757,"product_id":1757,"stock_id":1,"qty":42,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-s-blue-1757.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1751","_score":1,"_source":{"id":1751,"sku":"WT05-XL-Purple","name":"Leah Yoga Top-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                        \n

                        • Blue heather rouched tank top.
                        • Camisole tank top.
                        • Banding and shirring details.
                        • Body hugging fit.
                        • Contrast topstitch.
                        • Interior shelf bra with shapewear technology.
                        • 65% Polyester 35% Cotton.

                        ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"leah-yoga-top-xl-purple-1751","links":{},"stock":{"item_id":1751,"product_id":1751,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xl-purple-1751.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1763","_score":1,"_source":{"id":1763,"sku":"WT06-L-Blue","name":"Chloe Compete Tank-L-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                        \n

                        • Royal blue tank top - nylon/spandex.
                        • Flatlock stitching.
                        • Moisture-wicking fabric.
                        • Ergonomic seaming.
                        • Machine wash/dry.

                        ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chloe-compete-tank-l-blue-1763","links":{},"stock":{"item_id":1763,"product_id":1763,"stock_id":1,"qty":80,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-l-blue-1763.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1767","_score":1,"_source":{"id":1767,"sku":"WT06-XL-Red","name":"Chloe Compete Tank-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                        \n

                        • Royal blue tank top - nylon/spandex.
                        • Flatlock stitching.
                        • Moisture-wicking fabric.
                        • Ergonomic seaming.
                        • Machine wash/dry.

                        ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chloe-compete-tank-xl-red-1767","links":{},"stock":{"item_id":1767,"product_id":1767,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xl-red-1767.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1794","_score":1,"_source":{"id":1794,"sku":"WT08-M-Yellow","name":"Antonia Racer Tank-M-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                        You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                        \n

                        • Machine wash.
                        • Line dry.

                        ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"antonia-racer-tank-m-yellow-1794","links":{},"stock":{"item_id":1794,"product_id":1794,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-m-yellow-1794.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1791","_score":1,"_source":{"id":1791,"sku":"WT08-S-Yellow","name":"Antonia Racer Tank-S-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                        You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                        \n

                        • Machine wash.
                        • Line dry.

                        ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"antonia-racer-tank-s-yellow-1791","links":{},"stock":{"item_id":1791,"product_id":1791,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-s-yellow-1791.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1788","_score":1,"_source":{"id":1788,"sku":"WT08-XS-Yellow","name":"Antonia Racer Tank-XS-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                        You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                        \n

                        • Machine wash.
                        • Line dry.

                        ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"antonia-racer-tank-xs-yellow-1788","links":{},"stock":{"item_id":1788,"product_id":1788,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xs-yellow-1788.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1792","_score":1,"_source":{"id":1792,"sku":"WT08-M-Black","name":"Antonia Racer Tank-M-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                        You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                        \n

                        • Machine wash.
                        • Line dry.

                        ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"antonia-racer-tank-m-black-1792","links":{},"stock":{"item_id":1792,"product_id":1792,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-m-black-1792.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1798","_score":1,"_source":{"id":1798,"sku":"WT08-XL-Black","name":"Antonia Racer Tank-XL-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":41.820001,"max_price":41.820001,"max_regular_price":41.820001,"minimal_regular_price":41.820001,"special_price":null,"minimal_price":41.820001,"regular_price":41.820001,"description":"

                        You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                        \n

                        • Machine wash.
                        • Line dry.

                        ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"antonia-racer-tank-xl-black-1798","links":{},"stock":{"item_id":1798,"product_id":1798,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xl-black-1798.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1731","_score":1,"_source":{"id":1731,"sku":"WT04-L-Blue","name":"Nona Fitness Tank-L-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                        \n

                        • Blue/white striped mesh tank.
                        • Relaxed fit.
                        • Chafe-resistant trim around armholes and collar.
                        • Machine wash/dry.

                        ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nona-fitness-tank-l-blue-1731","links":{},"stock":{"item_id":1731,"product_id":1731,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-l-blue-1731.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1741","_score":1,"_source":{"id":1741,"sku":"WT05-S-Orange","name":"Leah Yoga Top-S-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                        \n

                        • Blue heather rouched tank top.
                        • Camisole tank top.
                        • Banding and shirring details.
                        • Body hugging fit.
                        • Contrast topstitch.
                        • Interior shelf bra with shapewear technology.
                        • 65% Polyester 35% Cotton.

                        ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"leah-yoga-top-s-orange-1741","links":{},"stock":{"item_id":1741,"product_id":1741,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-s-orange-1741.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1739","_score":1,"_source":{"id":1739,"sku":"WT05-XS-Purple","name":"Leah Yoga Top-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                        \n

                        • Blue heather rouched tank top.
                        • Camisole tank top.
                        • Banding and shirring details.
                        • Body hugging fit.
                        • Contrast topstitch.
                        • Interior shelf bra with shapewear technology.
                        • 65% Polyester 35% Cotton.

                        ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"leah-yoga-top-xs-purple-1739","links":{},"stock":{"item_id":1739,"product_id":1739,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xs-purple-1739.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1747","_score":1,"_source":{"id":1747,"sku":"WT05-L-Orange","name":"Leah Yoga Top-L-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                        \n

                        • Blue heather rouched tank top.
                        • Camisole tank top.
                        • Banding and shirring details.
                        • Body hugging fit.
                        • Contrast topstitch.
                        • Interior shelf bra with shapewear technology.
                        • 65% Polyester 35% Cotton.

                        ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"leah-yoga-top-l-orange-1747","links":{},"stock":{"item_id":1747,"product_id":1747,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-l-orange-1747.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1748","_score":1,"_source":{"id":1748,"sku":"WT05-L-Purple","name":"Leah Yoga Top-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                        \n

                        • Blue heather rouched tank top.
                        • Camisole tank top.
                        • Banding and shirring details.
                        • Body hugging fit.
                        • Contrast topstitch.
                        • Interior shelf bra with shapewear technology.
                        • 65% Polyester 35% Cotton.

                        ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"leah-yoga-top-l-purple-1748","links":{},"stock":{"item_id":1748,"product_id":1748,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-l-purple-1748.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1842","_score":1,"_source":{"id":1842,"sku":"WP04-29-Black","name":"Cora Parachute Pant-29-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                        Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                        \n

                        • Light blue parachute pants.
                        • Power mesh internal waistband for support.
                        • Internal waistband pocket.
                        • Antimicrobial finish.

                        ","image":"/w/p/wp04-black_main.jpg","small_image":"/w/p/wp04-black_main.jpg","thumbnail":"/w/p/wp04-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"cora-parachute-pant-29-black-1842","links":{},"stock":{"item_id":1842,"product_id":1842,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-29-black-1842.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1846","_score":1,"_source":{"id":1846,"sku":"WP05-28-Blue","name":"Sahara Leggings-28-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                        Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                        \n

                        • Pinstripe legging with rouched ankles.
                        • Secret pocket at waistband.
                        • Flat seams for comfort.
                        • Shaped fit with low rise.
                        • 4-way stretch, moisture-wicking material.

                        ","image":"/w/p/wp05-blue_main.jpg","small_image":"/w/p/wp05-blue_main.jpg","thumbnail":"/w/p/wp05-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sahara-leggings-28-blue-1846","links":{},"stock":{"item_id":1846,"product_id":1846,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-28-blue-1846.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1819","_score":1,"_source":{"id":1819,"sku":"WP01-28-Gray","name":"Karmen Yoga Pant-28-Gray","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47.970001,"max_price":47.970001,"max_regular_price":47.970001,"minimal_regular_price":47.970001,"special_price":null,"minimal_price":47.970001,"regular_price":47.970001,"description":"

                        Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                        \n

                        • Light blue parachute pants.
                        • Power mesh internal waistband for support.
                        • Internal waistband pocket.
                        • Antimicrobial finish.

                        ","image":"/w/p/wp01-gray_main.jpg","small_image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","color":"52","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"karmen-yoga-pant-28-gray-1819","links":{},"stock":{"item_id":1819,"product_id":1819,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp01-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-28-gray-1819.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1826","_score":1,"_source":{"id":1826,"sku":"WP02-28-Purple","name":"Emma Leggings-28-Purple","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                        These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                        \n

                        • Light blue heather yoga pants.
                        • Body hugging fit.
                        • Low rise fit.

                        ","image":"/w/p/wp02-purple_main.jpg","small_image":"/w/p/wp02-purple_main.jpg","thumbnail":"/w/p/wp02-purple_main.jpg","color":"57","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"emma-leggings-28-purple-1826","links":{},"stock":{"item_id":1826,"product_id":1826,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-28-purple-1826.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1872","_score":1,"_source":{"id":1872,"sku":"WP08-29-Red","name":"Bardot Capri-29-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                        Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                        \n

                        • Black capris with pink waistband.
                        • Cropped leggings.
                        • Waistband drawcord.
                        • Flat, thin and flattering.
                        • Made with organic fabric.

                        ","image":"/w/p/wp08-red_main.jpg","small_image":"/w/p/wp08-red_main.jpg","thumbnail":"/w/p/wp08-red_main.jpg","color":"58","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bardot-capri-29-red-1872","links":{},"stock":{"item_id":1872,"product_id":1872,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-29-red-1872.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1889","_score":1,"_source":{"id":1889,"sku":"WP11-28-Green","name":"Sylvia Capri-28-Green","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                        Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                        \n

                        • Green striped capri.
                        • Strategic side seam
                        • Comfort gusset with lining.
                        • Flat seaming.
                        • Wide waistband.
                        • Moisture wicking.

                        ","image":"/w/p/wp11-green_main.jpg","small_image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","color":"53","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sylvia-capri-28-green-1889","links":{},"stock":{"item_id":1889,"product_id":1889,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-28-green-1889.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1896","_score":1,"_source":{"id":1896,"sku":"WP12-28-Gray","name":"Deirdre Relaxed-Fit Capri-28-Gray","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77.490001,"max_price":77.490001,"max_regular_price":77.490001,"minimal_regular_price":77.490001,"special_price":null,"minimal_price":77.490001,"regular_price":77.490001,"description":"

                        Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                        \n

                        • Heather gray capris with mint green waist & accents.
                        • Comfortable, relaxed fit with high rise.
                        • Moisture-wicking, 4-way stretch construction.
                        • Lined with mesh for better support.
                        • Hidden pocket at waistband.
                        • Flatlock seams and lined gusset for comfort.

                        ","image":"/w/p/wp12-gray_main.jpg","small_image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","color":"52","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"deirdre-relaxed-fit-capri-28-gray-1896","links":{},"stock":{"item_id":1896,"product_id":1896,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-28-gray-1896.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1880","_score":1,"_source":{"id":1880,"sku":"WP09","name":"Carina Basic Capri","attribute_set_id":10,"price":51,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":51,"description":"

                        Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                        \n

                        • Black capris with rouching detail.
                        • 93% cotton, 7% spandex.
                        • Elasticized waistband.
                        • Reinforced seams with exposed topstitching.
                        • Soft, medium-weight jersey with added stretch.

                        ","image":"/w/p/wp09-black_main.jpg","small_image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"carina-basic-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[107,108,109],"pattern":"197","climate":[202,205,206,208,209],"slug":"carina-basic-capri-1880","links":{},"stock":{"item_id":1880,"product_id":1880,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_outfit.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP09-28-Black","id":1874,"status":1,"name":"Carina Basic Capri-28-Black","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"49","image":"/w/p/wp09-black_main.jpg","small_image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","url_key":"carina-basic-capri-28-black","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"WP09-28-Blue","id":1875,"status":1,"name":"Carina Basic Capri-28-Blue","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"50","image":"/w/p/wp09-blue_main.jpg","small_image":"/w/p/wp09-blue_main.jpg","thumbnail":"/w/p/wp09-blue_main.jpg","url_key":"carina-basic-capri-28-blue","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"WP09-28-Purple","id":1876,"status":1,"name":"Carina Basic Capri-28-Purple","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"57","image":"/w/p/wp09-purple_main.jpg","small_image":"/w/p/wp09-purple_main.jpg","thumbnail":"/w/p/wp09-purple_main.jpg","url_key":"carina-basic-capri-28-purple","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"WP09-29-Black","id":1877,"status":1,"name":"Carina Basic Capri-29-Black","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"49","image":"/w/p/wp09-black_main.jpg","small_image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","url_key":"carina-basic-capri-29-black","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"WP09-29-Blue","id":1878,"status":1,"name":"Carina Basic Capri-29-Blue","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"50","image":"/w/p/wp09-blue_main.jpg","small_image":"/w/p/wp09-blue_main.jpg","thumbnail":"/w/p/wp09-blue_main.jpg","url_key":"carina-basic-capri-29-blue","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"WP09-29-Purple","id":1879,"status":1,"name":"Carina Basic Capri-29-Purple","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"57","image":"/w/p/wp09-purple_main.jpg","small_image":"/w/p/wp09-purple_main.jpg","thumbnail":"/w/p/wp09-purple_main.jpg","url_key":"carina-basic-capri-29-purple","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001}],"configurable_options":[{"id":263,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":1880,"attribute_code":"color"},{"id":262,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1880,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-1880.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1924","_score":1,"_source":{"id":1924,"sku":"WSH01","name":"Fiona Fitness Short","attribute_set_id":10,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":29,"description":"

                        Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                        \n

                        • Black run shorts
                        - cotton/spandex.
                        • 5” inseam.
                        • Machine wash/Line dry.

                        ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"fiona-fitness-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,151],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[106,105],"pattern":"197","climate":[205,212,206,209],"slug":"fiona-fitness-short-1924","links":{},"stock":{"item_id":1924,"product_id":1924,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH01-28-Black","id":1909,"status":1,"name":"Fiona Fitness Short-28-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"172","color":"49","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","url_key":"fiona-fitness-short-28-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-28-Green","id":1910,"status":1,"name":"Fiona Fitness Short-28-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"172","color":"53","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","url_key":"fiona-fitness-short-28-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-28-Red","id":1911,"status":1,"name":"Fiona Fitness Short-28-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"172","color":"58","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","url_key":"fiona-fitness-short-28-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-29-Black","id":1912,"status":1,"name":"Fiona Fitness Short-29-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"173","color":"49","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","url_key":"fiona-fitness-short-29-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-29-Green","id":1913,"status":1,"name":"Fiona Fitness Short-29-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"173","color":"53","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","url_key":"fiona-fitness-short-29-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-29-Red","id":1914,"status":1,"name":"Fiona Fitness Short-29-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"173","color":"58","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","url_key":"fiona-fitness-short-29-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-30-Black","id":1915,"status":1,"name":"Fiona Fitness Short-30-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"174","color":"49","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","url_key":"fiona-fitness-short-30-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-30-Green","id":1916,"status":1,"name":"Fiona Fitness Short-30-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"174","color":"53","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","url_key":"fiona-fitness-short-30-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-30-Red","id":1917,"status":1,"name":"Fiona Fitness Short-30-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"174","color":"58","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","url_key":"fiona-fitness-short-30-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-31-Black","id":1918,"status":1,"name":"Fiona Fitness Short-31-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"175","color":"49","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","url_key":"fiona-fitness-short-31-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-31-Green","id":1919,"status":1,"name":"Fiona Fitness Short-31-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"175","color":"53","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","url_key":"fiona-fitness-short-31-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-31-Red","id":1920,"status":1,"name":"Fiona Fitness Short-31-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"175","color":"58","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","url_key":"fiona-fitness-short-31-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-32-Black","id":1921,"status":1,"name":"Fiona Fitness Short-32-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"176","color":"49","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","url_key":"fiona-fitness-short-32-black","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-32-Green","id":1922,"status":1,"name":"Fiona Fitness Short-32-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"176","color":"53","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","url_key":"fiona-fitness-short-32-green","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001},{"sku":"WSH01-32-Red","id":1923,"status":1,"name":"Fiona Fitness Short-32-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"176","color":"58","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","url_key":"fiona-fitness-short-32-red","msrp_display_actual_price_type":"0","final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001}],"configurable_options":[{"id":273,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1924,"attribute_code":"color"},{"id":272,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1924,"attribute_code":"size"}],"color_options":[49,53,58],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-1924.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1887","_score":1,"_source":{"id":1887,"sku":"WP10","name":"Daria Bikram Pant","attribute_set_id":10,"price":51,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":51,"description":"

                        The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                        \n

                        • Heather gray capris with pink striped waist.
                        • Flatlock seams.
                        • Interior pocket.

                        ","image":"/w/p/wp10-gray_main.jpg","small_image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"daria-bikram-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,151],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"107","pattern":"195","climate":[202,205,206,208,209],"slug":"daria-bikram-pant-1887","links":{},"stock":{"item_id":1887,"product_id":1887,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP10-28-Black","id":1881,"status":1,"name":"Daria Bikram Pant-28-Black","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","36","2"],"size":"172","color":"49","image":"/w/p/wp10-black_main.jpg","small_image":"/w/p/wp10-black_main.jpg","thumbnail":"/w/p/wp10-black_main.jpg","url_key":"daria-bikram-pant-28-black","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"WP10-28-Gray","id":1882,"status":1,"name":"Daria Bikram Pant-28-Gray","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","36","2"],"size":"172","color":"52","image":"/w/p/wp10-gray_main.jpg","small_image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","url_key":"daria-bikram-pant-28-gray","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"WP10-28-White","id":1883,"status":1,"name":"Daria Bikram Pant-28-White","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","36","2"],"size":"172","color":"59","image":"/w/p/wp10-white_main.jpg","small_image":"/w/p/wp10-white_main.jpg","thumbnail":"/w/p/wp10-white_main.jpg","url_key":"daria-bikram-pant-28-white","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"WP10-29-Black","id":1884,"status":1,"name":"Daria Bikram Pant-29-Black","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","36","2"],"size":"173","color":"49","image":"/w/p/wp10-black_main.jpg","small_image":"/w/p/wp10-black_main.jpg","thumbnail":"/w/p/wp10-black_main.jpg","url_key":"daria-bikram-pant-29-black","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"WP10-29-Gray","id":1885,"status":1,"name":"Daria Bikram Pant-29-Gray","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","36","2"],"size":"173","color":"52","image":"/w/p/wp10-gray_main.jpg","small_image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","url_key":"daria-bikram-pant-29-gray","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001},{"sku":"WP10-29-White","id":1886,"status":1,"name":"Daria Bikram Pant-29-White","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","36","2"],"size":"173","color":"59","image":"/w/p/wp10-white_main.jpg","small_image":"/w/p/wp10-white_main.jpg","thumbnail":"/w/p/wp10-white_main.jpg","url_key":"daria-bikram-pant-29-white","msrp_display_actual_price_type":"0","final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001}],"configurable_options":[{"id":265,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":59,"label":"White"}],"product_id":1887,"attribute_code":"color"},{"id":264,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1887,"attribute_code":"size"}],"color_options":[49,52,59],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-1887.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1873","_score":1,"_source":{"id":1873,"sku":"WP08","name":"Bardot Capri","attribute_set_id":10,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":48,"description":"

                        Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                        \n

                        • Black capris with pink waistband.
                        • Cropped leggings.
                        • Waistband drawcord.
                        • Flat, thin and flattering.
                        • Made with organic fabric.

                        ","image":"/w/p/wp08-black_main.jpg","small_image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"bardot-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[150,39,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[107,109],"pattern":"195","climate":[205,212,206,209],"slug":"bardot-capri-1873","links":{},"stock":{"item_id":1873,"product_id":1873,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP08-28-Black","id":1867,"status":1,"name":"Bardot Capri-28-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"49","image":"/w/p/wp08-black_main.jpg","small_image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","url_key":"bardot-capri-28-black","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP08-28-Green","id":1868,"status":1,"name":"Bardot Capri-28-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"53","image":"/w/p/wp08-green_main.jpg","small_image":"/w/p/wp08-green_main.jpg","thumbnail":"/w/p/wp08-green_main.jpg","url_key":"bardot-capri-28-green","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP08-28-Red","id":1869,"status":1,"name":"Bardot Capri-28-Red","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"58","image":"/w/p/wp08-red_main.jpg","small_image":"/w/p/wp08-red_main.jpg","thumbnail":"/w/p/wp08-red_main.jpg","url_key":"bardot-capri-28-red","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP08-29-Black","id":1870,"status":1,"name":"Bardot Capri-29-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"49","image":"/w/p/wp08-black_main.jpg","small_image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","url_key":"bardot-capri-29-black","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP08-29-Green","id":1871,"status":1,"name":"Bardot Capri-29-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"53","image":"/w/p/wp08-green_main.jpg","small_image":"/w/p/wp08-green_main.jpg","thumbnail":"/w/p/wp08-green_main.jpg","url_key":"bardot-capri-29-green","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001},{"sku":"WP08-29-Red","id":1872,"status":1,"name":"Bardot Capri-29-Red","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"58","image":"/w/p/wp08-red_main.jpg","small_image":"/w/p/wp08-red_main.jpg","thumbnail":"/w/p/wp08-red_main.jpg","url_key":"bardot-capri-29-red","msrp_display_actual_price_type":"0","final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001}],"configurable_options":[{"id":261,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1873,"attribute_code":"color"},{"id":260,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1873,"attribute_code":"size"}],"color_options":[49,53,58],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-1873.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1907","_score":1,"_source":{"id":1907,"sku":"WP13-29-Orange","name":"Portia Capri-29-Orange","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                        From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                        \n

                        • Salmon heather capri sweats.
                        • Relaxed fit, high waist.
                        • Inseam: 21\".
                        • Wide elastic waistband.
                        • Machine wash/dry.

                        ","image":"/w/p/wp13-orange_main.jpg","small_image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","color":"56","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"portia-capri-29-orange-1907","links":{},"stock":{"item_id":1907,"product_id":1907,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp13-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-29-orange-1907.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1906","_score":1,"_source":{"id":1906,"sku":"WP13-29-Green","name":"Portia Capri-29-Green","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                        From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                        \n

                        • Salmon heather capri sweats.
                        • Relaxed fit, high waist.
                        • Inseam: 21\".
                        • Wide elastic waistband.
                        • Machine wash/dry.

                        ","image":"/w/p/wp13-green_main.jpg","small_image":"/w/p/wp13-green_main.jpg","thumbnail":"/w/p/wp13-green_main.jpg","color":"53","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"portia-capri-29-green-1906","links":{},"stock":{"item_id":1906,"product_id":1906,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-29-green-1906.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1904","_score":1,"_source":{"id":1904,"sku":"WP13-28-Orange","name":"Portia Capri-28-Orange","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                        From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                        \n

                        • Salmon heather capri sweats.
                        • Relaxed fit, high waist.
                        • Inseam: 21\".
                        • Wide elastic waistband.
                        • Machine wash/dry.

                        ","image":"/w/p/wp13-orange_main.jpg","small_image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","color":"56","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"portia-capri-28-orange-1904","links":{},"stock":{"item_id":1904,"product_id":1904,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp13-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-28-orange-1904.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1903","_score":1,"_source":{"id":1903,"sku":"WP13-28-Green","name":"Portia Capri-28-Green","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                        From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                        \n

                        • Salmon heather capri sweats.
                        • Relaxed fit, high waist.
                        • Inseam: 21\".
                        • Wide elastic waistband.
                        • Machine wash/dry.

                        ","image":"/w/p/wp13-green_main.jpg","small_image":"/w/p/wp13-green_main.jpg","thumbnail":"/w/p/wp13-green_main.jpg","color":"53","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"portia-capri-28-green-1903","links":{},"stock":{"item_id":1903,"product_id":1903,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-28-green-1903.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1918","_score":1,"_source":{"id":1918,"sku":"WSH01-31-Black","name":"Fiona Fitness Short-31-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35.670001,"max_price":35.670001,"max_regular_price":35.670001,"minimal_regular_price":35.670001,"special_price":null,"minimal_price":35.670001,"regular_price":35.670001,"description":"

                        Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                        \n

                        • Black run shorts
                        - cotton/spandex.
                        • 5” inseam.
                        • Machine wash/Line dry.

                        ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-31-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"fiona-fitness-short-31-black-1918","links":{},"stock":{"item_id":1918,"product_id":1918,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-31-black-1918.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1938","_score":1,"_source":{"id":1938,"sku":"WSH02-32-Orange","name":"Maxima Drawstring Short-32-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                        Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                        \n

                        • Light gray run shorts
                        - cotton polyester.
                        • Contrast binding.
                        • 3\" inseam.
                        • Machine wash/dry.

                        ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-32-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"maxima-drawstring-short-32-orange-1938","links":{},"stock":{"item_id":1938,"product_id":1938,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-32-orange-1938.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1925","_score":1,"_source":{"id":1925,"sku":"WSH02-28-Gray","name":"Maxima Drawstring Short-28-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                        Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                        \n

                        • Light gray run shorts
                        - cotton polyester.
                        • Contrast binding.
                        • 3\" inseam.
                        • Machine wash/dry.

                        ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"maxima-drawstring-short-28-gray-1925","links":{},"stock":{"item_id":1925,"product_id":1925,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-28-gray-1925.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1865","_score":1,"_source":{"id":1865,"sku":"WP07-29-Orange","name":"Aeon Capri-29-Orange","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                        Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                        \n

                        • Black capris with teal accents.
                        • Thick, 3\" flattering waistband.
                        • Media pocket on inner waistband.
                        • Dry wick finish for ultimate comfort and dryness.

                        ","image":"/w/p/wp07-orange_main.jpg","small_image":"/w/p/wp07-orange_main.jpg","thumbnail":"/w/p/wp07-orange_main.jpg","color":"56","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"aeon-capri-29-orange-1865","links":{},"stock":{"item_id":1865,"product_id":1865,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-29-orange-1865.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1855","_score":1,"_source":{"id":1855,"sku":"WP06-28-Orange","name":"Diana Tights-28-Orange","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                        Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                        \n

                        • Black legging with slate details.
                        • Flat-lock, chafe-free side seams.
                        • Vented gusset.
                        • Secret interior pocket.
                        • Sustainable and recycled fabric.

                        ","image":"/w/p/wp06-orange_main.jpg","small_image":"/w/p/wp06-orange_main.jpg","thumbnail":"/w/p/wp06-orange_main.jpg","color":"56","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"diana-tights-28-orange-1855","links":{},"stock":{"item_id":1855,"product_id":1855,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-28-orange-1855.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1884","_score":1,"_source":{"id":1884,"sku":"WP10-29-Black","name":"Daria Bikram Pant-29-Black","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                        The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                        \n

                        • Heather gray capris with pink striped waist.
                        • Flatlock seams.
                        • Interior pocket.

                        ","image":"/w/p/wp10-black_main.jpg","small_image":"/w/p/wp10-black_main.jpg","thumbnail":"/w/p/wp10-black_main.jpg","color":"49","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"daria-bikram-pant-29-black-1884","links":{},"stock":{"item_id":1884,"product_id":1884,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-29-black-1884.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1875","_score":1,"_source":{"id":1875,"sku":"WP09-28-Blue","name":"Carina Basic Capri-28-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62.730001,"max_price":62.730001,"max_regular_price":62.730001,"minimal_regular_price":62.730001,"special_price":null,"minimal_price":62.730001,"regular_price":62.730001,"description":"

                        Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                        \n

                        • Black capris with rouching detail.
                        • 93% cotton, 7% spandex.
                        • Elasticized waistband.
                        • Reinforced seams with exposed topstitching.
                        • Soft, medium-weight jersey with added stretch.

                        ","image":"/w/p/wp09-blue_main.jpg","small_image":"/w/p/wp09-blue_main.jpg","thumbnail":"/w/p/wp09-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"carina-basic-capri-28-blue-1875","links":{},"stock":{"item_id":1875,"product_id":1875,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-28-blue-1875.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1860","_score":1,"_source":{"id":1860,"sku":"WP07-28-Black","name":"Aeon Capri-28-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                        Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                        \n

                        • Black capris with teal accents.
                        • Thick, 3\" flattering waistband.
                        • Media pocket on inner waistband.
                        • Dry wick finish for ultimate comfort and dryness.

                        ","image":"/w/p/wp07-black_main.jpg","small_image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","color":"49","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"aeon-capri-28-black-1860","links":{},"stock":{"item_id":1860,"product_id":1860,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-28-black-1860.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1854","_score":1,"_source":{"id":1854,"sku":"WP06-28-Blue","name":"Diana Tights-28-Blue","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                        Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                        \n

                        • Black legging with slate details.
                        • Flat-lock, chafe-free side seams.
                        • Vented gusset.
                        • Secret interior pocket.
                        • Sustainable and recycled fabric.

                        ","image":"/w/p/wp06-blue_main.jpg","small_image":"/w/p/wp06-blue_main.jpg","thumbnail":"/w/p/wp06-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"diana-tights-28-blue-1854","links":{},"stock":{"item_id":1854,"product_id":1854,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-28-blue-1854.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1853","_score":1,"_source":{"id":1853,"sku":"WP06-28-Black","name":"Diana Tights-28-Black","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72.570001,"max_price":72.570001,"max_regular_price":72.570001,"minimal_regular_price":72.570001,"special_price":null,"minimal_price":72.570001,"regular_price":72.570001,"description":"

                        Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                        \n

                        • Black legging with slate details.
                        • Flat-lock, chafe-free side seams.
                        • Vented gusset.
                        • Secret interior pocket.
                        • Sustainable and recycled fabric.

                        ","image":"/w/p/wp06-black_main.jpg","small_image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","color":"49","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"diana-tights-28-black-1853","links":{},"stock":{"item_id":1853,"product_id":1853,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_outfit.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-28-black-1853.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1851","_score":1,"_source":{"id":1851,"sku":"WP05-29-Red","name":"Sahara Leggings-29-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92.250001,"max_price":92.250001,"max_regular_price":92.250001,"minimal_regular_price":92.250001,"special_price":null,"minimal_price":92.250001,"regular_price":92.250001,"description":"

                        Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                        \n

                        • Pinstripe legging with rouched ankles.
                        • Secret pocket at waistband.
                        • Flat seams for comfort.
                        • Shaped fit with low rise.
                        • 4-way stretch, moisture-wicking material.

                        ","image":"/w/p/wp05-red_main.jpg","small_image":"/w/p/wp05-red_main.jpg","thumbnail":"/w/p/wp05-red_main.jpg","color":"58","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sahara-leggings-29-red-1851","links":{},"stock":{"item_id":1851,"product_id":1851,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-29-red-1851.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1862","_score":1,"_source":{"id":1862,"sku":"WP07-28-Orange","name":"Aeon Capri-28-Orange","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59.040001,"max_price":59.040001,"max_regular_price":59.040001,"minimal_regular_price":59.040001,"special_price":null,"minimal_price":59.040001,"regular_price":59.040001,"description":"

                        Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                        \n

                        • Black capris with teal accents.
                        • Thick, 3\" flattering waistband.
                        • Media pocket on inner waistband.
                        • Dry wick finish for ultimate comfort and dryness.

                        ","image":"/w/p/wp07-orange_main.jpg","small_image":"/w/p/wp07-orange_main.jpg","thumbnail":"/w/p/wp07-orange_main.jpg","color":"56","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"aeon-capri-28-orange-1862","links":{},"stock":{"item_id":1862,"product_id":1862,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-28-orange-1862.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1945","_score":1,"_source":{"id":1945,"sku":"WSH03-29-Gray","name":"Gwen Drawstring Bike Short-29-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

                        For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                        \n

                        • Dark heather gray rouched bike shorts.
                        • Fitted. Inseam: 2\".
                        • Machine wash/dry.

                        ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"gwen-drawstring-bike-short-29-gray-1945","links":{},"stock":{"item_id":1945,"product_id":1945,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-29-gray-1945.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1946","_score":1,"_source":{"id":1946,"sku":"WSH03-29-Orange","name":"Gwen Drawstring Bike Short-29-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

                        For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                        \n

                        • Dark heather gray rouched bike shorts.
                        • Fitted. Inseam: 2\".
                        • Machine wash/dry.

                        ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"gwen-drawstring-bike-short-29-orange-1946","links":{},"stock":{"item_id":1946,"product_id":1946,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-29-orange-1946.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1944","_score":1,"_source":{"id":1944,"sku":"WSH03-29-Blue","name":"Gwen Drawstring Bike Short-29-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001,"description":"

                        For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                        \n

                        • Dark heather gray rouched bike shorts.
                        • Fitted. Inseam: 2\".
                        • Machine wash/dry.

                        ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"gwen-drawstring-bike-short-29-blue-1944","links":{},"stock":{"item_id":1944,"product_id":1944,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-29-blue-1944.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1962","_score":1,"_source":{"id":1962,"sku":"WSH04-29-Orange","name":"Artemis Running Short-29-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                        Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                        \n

                        • Black rouched shorts with mint waist.
                        • Soft, lightweight construction.
                        • LumaTech™ wicking technology.
                        • Semi-fitted.

                        ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"artemis-running-short-29-orange-1962","links":{},"stock":{"item_id":1962,"product_id":1962,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-29-orange-1962.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1973","_score":1,"_source":{"id":1973,"sku":"WSH05-28-Blue","name":"Bess Yoga Short-28-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                        Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                        \n

                        • Navy cotton shorts with light bue waist detail.
                        • Front shirred waistband.
                        • Flat-lock, chafe-free side seams.
                        • Vented gusset.
                        • Hidden interior pocket.
                        • Sustainable and recycled fabric.

                        ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bess-yoga-short-28-blue-1973","links":{},"stock":{"item_id":1973,"product_id":1973,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-28-blue-1973.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1984","_score":1,"_source":{"id":1984,"sku":"WSH05-31-Yellow","name":"Bess Yoga Short-31-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                        Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                        \n

                        • Navy cotton shorts with light bue waist detail.
                        • Front shirred waistband.
                        • Flat-lock, chafe-free side seams.
                        • Vented gusset.
                        • Hidden interior pocket.
                        • Sustainable and recycled fabric.

                        ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-31-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"bess-yoga-short-31-yellow-1984","links":{},"stock":{"item_id":1984,"product_id":1984,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-31-yellow-1984.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1986","_score":1,"_source":{"id":1986,"sku":"WSH05-32-Purple","name":"Bess Yoga Short-32-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                        Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                        \n

                        • Navy cotton shorts with light bue waist detail.
                        • Front shirred waistband.
                        • Flat-lock, chafe-free side seams.
                        • Vented gusset.
                        • Hidden interior pocket.
                        • Sustainable and recycled fabric.

                        ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"bess-yoga-short-32-purple-1986","links":{},"stock":{"item_id":1986,"product_id":1986,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-32-purple-1986.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1985","_score":1,"_source":{"id":1985,"sku":"WSH05-32-Blue","name":"Bess Yoga Short-32-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                        Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                        \n

                        • Navy cotton shorts with light bue waist detail.
                        • Front shirred waistband.
                        • Flat-lock, chafe-free side seams.
                        • Vented gusset.
                        • Hidden interior pocket.
                        • Sustainable and recycled fabric.

                        ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"bess-yoga-short-32-blue-1985","links":{},"stock":{"item_id":1985,"product_id":1985,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-32-blue-1985.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1979","_score":1,"_source":{"id":1979,"sku":"WSH05-30-Blue","name":"Bess Yoga Short-30-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34.440001,"max_price":34.440001,"max_regular_price":34.440001,"minimal_regular_price":34.440001,"special_price":null,"minimal_price":34.440001,"regular_price":34.440001,"description":"

                        Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                        \n

                        • Navy cotton shorts with light bue waist detail.
                        • Front shirred waistband.
                        • Flat-lock, chafe-free side seams.
                        • Vented gusset.
                        • Hidden interior pocket.
                        • Sustainable and recycled fabric.

                        ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-30-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"bess-yoga-short-30-blue-1979","links":{},"stock":{"item_id":1979,"product_id":1979,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-30-blue-1979.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1999","_score":1,"_source":{"id":1999,"sku":"WSH07-29-Black","name":"Echo Fit Compression Short-29-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                        Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                        \n

                        • Black compression shorts.
                        • High-waisted cut.
                        • Compression fit.
                        • Inseam: 1.0\".
                        • Machine wash/dry.

                        ","image":"/w/s/wsh07-black_main.jpg","small_image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","color":"49","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"echo-fit-compression-short-29-black-1999","links":{},"stock":{"item_id":1999,"product_id":1999,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh07-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-29-black-1999.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1997","_score":1,"_source":{"id":1997,"sku":"WSH07-28-Blue","name":"Echo Fit Compression Short-28-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29.520001,"max_price":29.520001,"max_regular_price":29.520001,"minimal_regular_price":29.520001,"special_price":null,"minimal_price":29.520001,"regular_price":29.520001,"description":"

                        Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                        \n

                        • Black compression shorts.
                        • High-waisted cut.
                        • Compression fit.
                        • Inseam: 1.0\".
                        • Machine wash/dry.

                        ","image":"/w/s/wsh07-blue_main.jpg","small_image":"/w/s/wsh07-blue_main.jpg","thumbnail":"/w/s/wsh07-blue_main.jpg","color":"50","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"echo-fit-compression-short-28-blue-1997","links":{},"stock":{"item_id":1997,"product_id":1997,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-28-blue-1997.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1967","_score":1,"_source":{"id":1967,"sku":"WSH04-31-Green","name":"Artemis Running Short-31-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                        Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                        \n

                        • Black rouched shorts with mint waist.
                        • Soft, lightweight construction.
                        • LumaTech™ wicking technology.
                        • Semi-fitted.

                        ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-31-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"artemis-running-short-31-green-1967","links":{},"stock":{"item_id":1967,"product_id":1967,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-31-green-1967.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1989","_score":1,"_source":{"id":1989,"sku":"WSH06-28-Gray","name":"Angel Light Running Short-28-Gray","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001,"description":"

                        The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                        \n

                        • Dark heather gray running shorts.
                        • Snug fit.
                        • Elastic waistband.
                        • Cocona® performance fabric.
                        • Machine wash/dry.

                        ","image":"/w/s/wsh06-gray_main.jpg","small_image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","color":"52","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"angel-light-running-short-28-gray-1989","links":{},"stock":{"item_id":1989,"product_id":1989,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-28-gray-1989.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1995","_score":1,"_source":{"id":1995,"sku":"WSH06","name":"Angel Light Running Short","attribute_set_id":10,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":42,"description":"

                        The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                        \n

                        • Dark heather gray running shorts.
                        • Snug fit.
                        • Elastic waistband.
                        • Cocona® performance fabric.
                        • Machine wash/dry.

                        ","image":"/w/s/wsh06-gray_main.jpg","small_image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"angel-light-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,36,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[106,112],"pattern":"197","climate":[202,205,212],"slug":"angel-light-running-short-1995","links":{},"stock":{"item_id":1995,"product_id":1995,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH06-28-Gray","id":1989,"status":1,"name":"Angel Light Running Short-28-Gray","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"52","image":"/w/s/wsh06-gray_main.jpg","small_image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","url_key":"angel-light-running-short-28-gray","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WSH06-28-Orange","id":1990,"status":1,"name":"Angel Light Running Short-28-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"56","image":"/w/s/wsh06-orange_main.jpg","small_image":"/w/s/wsh06-orange_main.jpg","thumbnail":"/w/s/wsh06-orange_main.jpg","url_key":"angel-light-running-short-28-orange","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WSH06-28-Purple","id":1991,"status":1,"name":"Angel Light Running Short-28-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"57","image":"/w/s/wsh06-purple_main.jpg","small_image":"/w/s/wsh06-purple_main.jpg","thumbnail":"/w/s/wsh06-purple_main.jpg","url_key":"angel-light-running-short-28-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WSH06-29-Gray","id":1992,"status":1,"name":"Angel Light Running Short-29-Gray","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"52","image":"/w/s/wsh06-gray_main.jpg","small_image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","url_key":"angel-light-running-short-29-gray","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WSH06-29-Orange","id":1993,"status":1,"name":"Angel Light Running Short-29-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"56","image":"/w/s/wsh06-orange_main.jpg","small_image":"/w/s/wsh06-orange_main.jpg","thumbnail":"/w/s/wsh06-orange_main.jpg","url_key":"angel-light-running-short-29-orange","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001},{"sku":"WSH06-29-Purple","id":1994,"status":1,"name":"Angel Light Running Short-29-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"57","image":"/w/s/wsh06-purple_main.jpg","small_image":"/w/s/wsh06-purple_main.jpg","thumbnail":"/w/s/wsh06-purple_main.jpg","url_key":"angel-light-running-short-29-purple","msrp_display_actual_price_type":"0","final_price":51.660001,"max_price":51.660001,"max_regular_price":51.660001,"minimal_regular_price":51.660001,"special_price":null,"minimal_price":51.660001,"regular_price":51.660001}],"configurable_options":[{"id":283,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1995,"attribute_code":"color"},{"id":282,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1995,"attribute_code":"size"}],"color_options":[52,56,57],"size_options":[172,173],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-1995.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"1956","_score":1,"_source":{"id":1956,"sku":"WSH03","name":"Gwen Drawstring Bike Short","attribute_set_id":10,"price":50,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":50,"description":"

                        For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                        \n

                        • Dark heather gray rouched bike shorts.
                        • Fitted. Inseam: 2\".
                        • Machine wash/dry.

                        ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"gwen-drawstring-bike-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,154],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_bottom":[106,112,105],"pattern":"197","climate":[202,205,212],"slug":"gwen-drawstring-bike-short-1956","links":{},"stock":{"item_id":1956,"product_id":1956,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH03-28-Blue","id":1941,"status":1,"name":"Gwen Drawstring Bike Short-28-Blue","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"172","color":"50","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","url_key":"gwen-drawstring-bike-short-28-blue","msrp_display_actual_price_type":"0"},{"sku":"WSH03-28-Gray","id":1942,"status":1,"name":"Gwen Drawstring Bike Short-28-Gray","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"172","color":"52","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","url_key":"gwen-drawstring-bike-short-28-gray","msrp_display_actual_price_type":"0"},{"sku":"WSH03-28-Orange","id":1943,"status":1,"name":"Gwen Drawstring Bike Short-28-Orange","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"172","color":"56","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","url_key":"gwen-drawstring-bike-short-28-orange","msrp_display_actual_price_type":"0"},{"sku":"WSH03-29-Blue","id":1944,"status":1,"name":"Gwen Drawstring Bike Short-29-Blue","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"173","color":"50","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","url_key":"gwen-drawstring-bike-short-29-blue","msrp_display_actual_price_type":"0"},{"sku":"WSH03-29-Gray","id":1945,"status":1,"name":"Gwen Drawstring Bike Short-29-Gray","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"173","color":"52","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","url_key":"gwen-drawstring-bike-short-29-gray","msrp_display_actual_price_type":"0"},{"sku":"WSH03-29-Orange","id":1946,"status":1,"name":"Gwen Drawstring Bike Short-29-Orange","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"173","color":"56","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","url_key":"gwen-drawstring-bike-short-29-orange","msrp_display_actual_price_type":"0"},{"sku":"WSH03-30-Blue","id":1947,"status":1,"name":"Gwen Drawstring Bike Short-30-Blue","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"174","color":"50","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","url_key":"gwen-drawstring-bike-short-30-blue","msrp_display_actual_price_type":"0"},{"sku":"WSH03-30-Gray","id":1948,"status":1,"name":"Gwen Drawstring Bike Short-30-Gray","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"174","color":"52","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","url_key":"gwen-drawstring-bike-short-30-gray","msrp_display_actual_price_type":"0"},{"sku":"WSH03-30-Orange","id":1949,"status":1,"name":"Gwen Drawstring Bike Short-30-Orange","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"174","color":"56","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","url_key":"gwen-drawstring-bike-short-30-orange","msrp_display_actual_price_type":"0"},{"sku":"WSH03-31-Blue","id":1950,"status":1,"name":"Gwen Drawstring Bike Short-31-Blue","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"175","color":"50","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","url_key":"gwen-drawstring-bike-short-31-blue","msrp_display_actual_price_type":"0"},{"sku":"WSH03-31-Gray","id":1951,"status":1,"name":"Gwen Drawstring Bike Short-31-Gray","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"175","color":"52","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","url_key":"gwen-drawstring-bike-short-31-gray","msrp_display_actual_price_type":"0","final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001},{"sku":"WSH03-31-Orange","id":1952,"status":1,"name":"Gwen Drawstring Bike Short-31-Orange","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"175","color":"56","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","url_key":"gwen-drawstring-bike-short-31-orange","msrp_display_actual_price_type":"0","final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001},{"sku":"WSH03-32-Blue","id":1953,"status":1,"name":"Gwen Drawstring Bike Short-32-Blue","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"176","color":"50","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","url_key":"gwen-drawstring-bike-short-32-blue","msrp_display_actual_price_type":"0","final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001},{"sku":"WSH03-32-Gray","id":1954,"status":1,"name":"Gwen Drawstring Bike Short-32-Gray","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"176","color":"52","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","url_key":"gwen-drawstring-bike-short-32-gray","msrp_display_actual_price_type":"0","final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001},{"sku":"WSH03-32-Orange","id":1955,"status":1,"name":"Gwen Drawstring Bike Short-32-Orange","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"176","color":"56","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","url_key":"gwen-drawstring-bike-short-32-orange","msrp_display_actual_price_type":"0","final_price":61.500001,"max_price":61.500001,"max_regular_price":61.500001,"minimal_regular_price":61.500001,"special_price":null,"minimal_price":61.500001,"regular_price":61.500001}],"configurable_options":[{"id":277,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"}],"product_id":1956,"attribute_code":"color"},{"id":276,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1956,"attribute_code":"size"}],"color_options":[50,52,56],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-1956.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2014","_score":1,"_source":{"id":2014,"sku":"WSH09-29-White","name":"Mimi All-Purpose Short-29-White","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

                        You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                        \n

                        • Gray/seafoam two-layer shorts.
                        • Water-resistant construction.
                        • Inner mesh brief for breathable support.
                        • 2.0\" inseam.
                        • Reflective trim for visibility.

                        ","image":"/w/s/wsh09-white_main.jpg","small_image":"/w/s/wsh09-white_main.jpg","thumbnail":"/w/s/wsh09-white_main.jpg","color":"59","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"mimi-all-purpose-short-29-white-2014","links":{},"stock":{"item_id":2014,"product_id":2014,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-29-white-2014.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2011","_score":1,"_source":{"id":2011,"sku":"WSH09-28-White","name":"Mimi All-Purpose Short-28-White","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

                        You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                        \n

                        • Gray/seafoam two-layer shorts.
                        • Water-resistant construction.
                        • Inner mesh brief for breathable support.
                        • 2.0\" inseam.
                        • Reflective trim for visibility.

                        ","image":"/w/s/wsh09-white_main.jpg","small_image":"/w/s/wsh09-white_main.jpg","thumbnail":"/w/s/wsh09-white_main.jpg","color":"59","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"mimi-all-purpose-short-28-white-2011","links":{},"stock":{"item_id":2011,"product_id":2011,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-28-white-2011.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2031","_score":1,"_source":{"id":2031,"sku":"WSH12-28-Purple","name":"Erika Running Short-28-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                        A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                        \n

                        • Seafoam pattern running shorts.
                        • Elastic waistband.
                        • Snug fit.
                        • 4'' inseam.
                        • 76% premium brushed Nylon / 24% Spandex.

                        ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"erika-running-short-28-purple-2031","links":{},"stock":{"item_id":2031,"product_id":2031,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-28-purple-2031.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2025","_score":1,"_source":{"id":2025,"sku":"WSH11-28-Red","name":"Ina Compression Short-28-Red","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60.270001,"max_price":60.270001,"max_regular_price":60.270001,"minimal_regular_price":60.270001,"special_price":null,"minimal_price":60.270001,"regular_price":60.270001,"description":"

                        One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                        \n

                        • Royal blue bike shorts.
                        • Compression fit.
                        • Moisture-wicking.
                        • Anti-microbial.
                        • Machine wash/dry.

                        ","image":"/w/s/wsh11-red_main.jpg","small_image":"/w/s/wsh11-red_main.jpg","thumbnail":"/w/s/wsh11-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ina-compression-short-28-red-2025","links":{},"stock":{"item_id":2025,"product_id":2025,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-28-red-2025.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2034","_score":1,"_source":{"id":2034,"sku":"WSH12-29-Purple","name":"Erika Running Short-29-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                        A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                        \n

                        • Seafoam pattern running shorts.
                        • Elastic waistband.
                        • Snug fit.
                        • 4'' inseam.
                        • 76% premium brushed Nylon / 24% Spandex.

                        ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"erika-running-short-29-purple-2034","links":{},"stock":{"item_id":2034,"product_id":2034,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-29-purple-2034.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2043","_score":1,"_source":{"id":2043,"sku":"WSH12-32-Purple","name":"Erika Running Short-32-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                        A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                        \n

                        • Seafoam pattern running shorts.
                        • Elastic waistband.
                        • Snug fit.
                        • 4'' inseam.
                        • 76% premium brushed Nylon / 24% Spandex.

                        ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"erika-running-short-32-purple-2043","links":{},"stock":{"item_id":2043,"product_id":2043,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-32-purple-2043.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2046","_score":1,"_source":{"id":2046,"sku":"24-WG085_Group","name":"Set of Sprite Yoga Straps","attribute_set_id":11,"status":1,"visibility":4,"type_id":"grouped","created_at":"2017-11-06 12:17:53","updated_at":"2017-11-06 12:17:53","product_links":[{"sku":"24-WG085_Group","link_type":"associated","linked_product_sku":"24-WG085","linked_product_type":"simple","position":0,"extension_attributes":{"qty":0}},{"sku":"24-WG085_Group","link_type":"associated","linked_product_sku":"24-WG086","linked_product_type":"simple","position":1,"extension_attributes":{"qty":0}},{"sku":"24-WG085_Group","link_type":"associated","linked_product_sku":"24-WG087","linked_product_type":"simple","position":2,"extension_attributes":{"qty":0}}],"tier_prices":[],"custom_attributes":null,"final_price":17.220001,"max_price":17.220001,"max_regular_price":17.220001,"minimal_regular_price":17.220001,"special_price":null,"minimal_price":17.220001,"regular_price":0,"description":"

                        Great set of Sprite Yoga Straps for every stretch and hold you need. There are three straps in this set: 6', 8' and 10'.

                        \n
                          \n
                        • 100% soft and durable cotton.\n
                        • Plastic cinch buckle is easy to use.\n
                        • Choice of three natural colors made from phthalate and heavy metal free dyes.\n
                        ","image":"/l/u/luma-yoga-strap-set.jpg","small_image":"/l/u/luma-yoga-strap-set.jpg","thumbnail":"/l/u/luma-yoga-strap-set.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"set-of-sprite-yoga-straps","activity":"8","material":[32,44],"category_gear":"87","slug":"set-of-sprite-yoga-straps-2046","links":{"associated":[{"sku":"24-WG085","pos":0},{"sku":"24-WG086","pos":1},{"sku":"24-WG087","pos":2}]},"stock":{"item_id":2046,"product_id":2046,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-yoga-strap-set.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/set-of-sprite-yoga-straps-2046.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2038","_score":1,"_source":{"id":2038,"sku":"WSH12-30-Red","name":"Erika Running Short-30-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55.350001,"max_price":55.350001,"max_regular_price":55.350001,"minimal_regular_price":55.350001,"special_price":null,"minimal_price":55.350001,"regular_price":55.350001,"description":"

                        A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                        \n

                        • Seafoam pattern running shorts.
                        • Elastic waistband.
                        • Snug fit.
                        • 4'' inseam.
                        • 76% premium brushed Nylon / 24% Spandex.

                        ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-30-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"erika-running-short-30-red-2038","links":{},"stock":{"item_id":2038,"product_id":2038,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-30-red-2038.html","tsk":1556377205684}} -{"_index":"vue_storefront_catalog_it_1556377785","_type":"product","_id":"2012","_score":1,"_source":{"id":2012,"sku":"WSH09-29-Gray","name":"Mimi All-Purpose Short-29-Gray","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54.120001,"max_price":54.120001,"max_regular_price":54.120001,"minimal_regular_price":54.120001,"special_price":null,"minimal_price":54.120001,"regular_price":54.120001,"description":"

                        You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                        \n

                        • Gray/seafoam two-layer shorts.
                        • Water-resistant construction.
                        • Inner mesh brief for breathable support.
                        • 2.0\" inseam.
                        • Reflective trim for visibility.

                        ","image":"/w/s/wsh09-gray_main.jpg","small_image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","color":"52","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"mimi-all-purpose-short-29-gray-2012","links":{},"stock":{"item_id":2012,"product_id":2012,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh09-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh09-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-29-gray-2012.html","tsk":1556377205684}} diff --git a/var/catalog_it_attribute.json b/var/catalog_it_attribute.json new file mode 100644 index 00000000..7c88506b --- /dev/null +++ b/var/catalog_it_attribute.json @@ -0,0 +1,80 @@ +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"140","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":140,"attribute_code":"gender","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Men","value":"80"},{"label":"Women","value":"81"},{"label":"Boys","value":"82"},{"label":"Girls","value":"83"},{"label":"Unisex","value":"84"}],"is_user_defined":true,"default_frontend_label":"Gender","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":140,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"106","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":106,"attribute_code":"options_container","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Product Info Column","value":"container1"},{"label":"Block after Info Column","value":"container2"}],"is_user_defined":false,"default_frontend_label":"Display Product Options In","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Catalog\\Model\\Entity\\Product\\Attribute\\Design\\Options\\Container","default_value":"container2","is_unique":"0","validation_rules":[],"id":106,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"98","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":98,"attribute_code":"minimal_price","frontend_input":"price","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Minimal Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":98,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"99","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":99,"attribute_code":"visibility","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Not Visible Individually","value":"1"},{"label":"Catalog","value":"2"},{"label":"Search","value":"3"},{"label":"Catalog, Search","value":"4"}],"is_user_defined":false,"default_frontend_label":"Visibility","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Catalog\\Model\\Product\\Visibility","default_value":"4","is_unique":"0","validation_rules":[],"id":99,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"92","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"website","attribute_id":92,"attribute_code":"tier_price","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Tier Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Tierprice","is_unique":"0","validation_rules":[],"id":92,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"88","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":88,"attribute_code":"small_image","frontend_input":"media_image","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Small","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":88,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"144","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":144,"attribute_code":"performance_fabric","frontend_input":"boolean","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"}],"is_user_defined":true,"default_frontend_label":"Performance Fabric","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean","default_value":"","is_unique":"0","validation_rules":[],"id":144,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"114","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","bundle","grouped","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"website","attribute_id":114,"attribute_code":"country_of_manufacture","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Afghanistan","value":"AF"},{"label":"Ã…land Islands","value":"AX"},{"label":"Albania","value":"AL"},{"label":"Algeria","value":"DZ"},{"label":"American Samoa","value":"AS"},{"label":"Andorra","value":"AD"},{"label":"Angola","value":"AO"},{"label":"Anguilla","value":"AI"},{"label":"Antarctica","value":"AQ"},{"label":"Antigua & Barbuda","value":"AG"},{"label":"Argentina","value":"AR"},{"label":"Armenia","value":"AM"},{"label":"Aruba","value":"AW"},{"label":"Australia","value":"AU"},{"label":"Austria","value":"AT"},{"label":"Azerbaijan","value":"AZ"},{"label":"Bahamas","value":"BS"},{"label":"Bahrain","value":"BH"},{"label":"Bangladesh","value":"BD"},{"label":"Barbados","value":"BB"},{"label":"Belarus","value":"BY"},{"label":"Belgium","value":"BE"},{"label":"Belize","value":"BZ"},{"label":"Benin","value":"BJ"},{"label":"Bermuda","value":"BM"},{"label":"Bhutan","value":"BT"},{"label":"Bolivia","value":"BO"},{"label":"Bosnia & Herzegovina","value":"BA"},{"label":"Botswana","value":"BW"},{"label":"Bouvet Island","value":"BV"},{"label":"Brazil","value":"BR"},{"label":"British Indian Ocean Territory","value":"IO"},{"label":"British Virgin Islands","value":"VG"},{"label":"Brunei","value":"BN"},{"label":"Bulgaria","value":"BG"},{"label":"Burkina Faso","value":"BF"},{"label":"Burundi","value":"BI"},{"label":"Cambodia","value":"KH"},{"label":"Cameroon","value":"CM"},{"label":"Canada","value":"CA"},{"label":"Cape Verde","value":"CV"},{"label":"Cayman Islands","value":"KY"},{"label":"Central African Republic","value":"CF"},{"label":"Chad","value":"TD"},{"label":"Chile","value":"CL"},{"label":"China","value":"CN"},{"label":"Christmas Island","value":"CX"},{"label":"Cocos (Keeling) Islands","value":"CC"},{"label":"Colombia","value":"CO"},{"label":"Comoros","value":"KM"},{"label":"Congo - Brazzaville","value":"CG"},{"label":"Congo - Kinshasa","value":"CD"},{"label":"Cook Islands","value":"CK"},{"label":"Costa Rica","value":"CR"},{"label":"Côte d’Ivoire","value":"CI"},{"label":"Croatia","value":"HR"},{"label":"Cuba","value":"CU"},{"label":"Cyprus","value":"CY"},{"label":"Czechia","value":"CZ"},{"label":"Denmark","value":"DK"},{"label":"Djibouti","value":"DJ"},{"label":"Dominica","value":"DM"},{"label":"Dominican Republic","value":"DO"},{"label":"Ecuador","value":"EC"},{"label":"Egypt","value":"EG"},{"label":"El Salvador","value":"SV"},{"label":"Equatorial Guinea","value":"GQ"},{"label":"Eritrea","value":"ER"},{"label":"Estonia","value":"EE"},{"label":"Eswatini","value":"SZ"},{"label":"Ethiopia","value":"ET"},{"label":"Falkland Islands","value":"FK"},{"label":"Faroe Islands","value":"FO"},{"label":"Fiji","value":"FJ"},{"label":"Finland","value":"FI"},{"label":"France","value":"FR"},{"label":"French Guiana","value":"GF"},{"label":"French Polynesia","value":"PF"},{"label":"French Southern Territories","value":"TF"},{"label":"Gabon","value":"GA"},{"label":"Gambia","value":"GM"},{"label":"Georgia","value":"GE"},{"label":"Germany","value":"DE"},{"label":"Ghana","value":"GH"},{"label":"Gibraltar","value":"GI"},{"label":"Greece","value":"GR"},{"label":"Greenland","value":"GL"},{"label":"Grenada","value":"GD"},{"label":"Guadeloupe","value":"GP"},{"label":"Guam","value":"GU"},{"label":"Guatemala","value":"GT"},{"label":"Guernsey","value":"GG"},{"label":"Guinea","value":"GN"},{"label":"Guinea-Bissau","value":"GW"},{"label":"Guyana","value":"GY"},{"label":"Haiti","value":"HT"},{"label":"Heard & McDonald Islands","value":"HM"},{"label":"Honduras","value":"HN"},{"label":"Hong Kong SAR China","value":"HK"},{"label":"Hungary","value":"HU"},{"label":"Iceland","value":"IS"},{"label":"India","value":"IN"},{"label":"Indonesia","value":"ID"},{"label":"Iran","value":"IR"},{"label":"Iraq","value":"IQ"},{"label":"Ireland","value":"IE"},{"label":"Isle of Man","value":"IM"},{"label":"Israel","value":"IL"},{"label":"Italy","value":"IT"},{"label":"Jamaica","value":"JM"},{"label":"Japan","value":"JP"},{"label":"Jersey","value":"JE"},{"label":"Jordan","value":"JO"},{"label":"Kazakhstan","value":"KZ"},{"label":"Kenya","value":"KE"},{"label":"Kiribati","value":"KI"},{"label":"Kuwait","value":"KW"},{"label":"Kyrgyzstan","value":"KG"},{"label":"Laos","value":"LA"},{"label":"Latvia","value":"LV"},{"label":"Lebanon","value":"LB"},{"label":"Lesotho","value":"LS"},{"label":"Liberia","value":"LR"},{"label":"Libya","value":"LY"},{"label":"Liechtenstein","value":"LI"},{"label":"Lithuania","value":"LT"},{"label":"Luxembourg","value":"LU"},{"label":"Macao SAR China","value":"MO"},{"label":"Madagascar","value":"MG"},{"label":"Malawi","value":"MW"},{"label":"Malaysia","value":"MY"},{"label":"Maldives","value":"MV"},{"label":"Mali","value":"ML"},{"label":"Malta","value":"MT"},{"label":"Marshall Islands","value":"MH"},{"label":"Martinique","value":"MQ"},{"label":"Mauritania","value":"MR"},{"label":"Mauritius","value":"MU"},{"label":"Mayotte","value":"YT"},{"label":"Mexico","value":"MX"},{"label":"Micronesia","value":"FM"},{"label":"Moldova","value":"MD"},{"label":"Monaco","value":"MC"},{"label":"Mongolia","value":"MN"},{"label":"Montenegro","value":"ME"},{"label":"Montserrat","value":"MS"},{"label":"Morocco","value":"MA"},{"label":"Mozambique","value":"MZ"},{"label":"Myanmar (Burma)","value":"MM"},{"label":"Namibia","value":"NA"},{"label":"Nauru","value":"NR"},{"label":"Nepal","value":"NP"},{"label":"Netherlands","value":"NL"},{"label":"New Caledonia","value":"NC"},{"label":"New Zealand","value":"NZ"},{"label":"Nicaragua","value":"NI"},{"label":"Niger","value":"NE"},{"label":"Nigeria","value":"NG"},{"label":"Niue","value":"NU"},{"label":"Norfolk Island","value":"NF"},{"label":"Northern Mariana Islands","value":"MP"},{"label":"North Korea","value":"KP"},{"label":"North Macedonia","value":"MK"},{"label":"Norway","value":"NO"},{"label":"Oman","value":"OM"},{"label":"Pakistan","value":"PK"},{"label":"Palau","value":"PW"},{"label":"Palestinian Territories","value":"PS"},{"label":"Panama","value":"PA"},{"label":"Papua New Guinea","value":"PG"},{"label":"Paraguay","value":"PY"},{"label":"Peru","value":"PE"},{"label":"Philippines","value":"PH"},{"label":"Pitcairn Islands","value":"PN"},{"label":"Poland","value":"PL"},{"label":"Portugal","value":"PT"},{"label":"Qatar","value":"QA"},{"label":"Réunion","value":"RE"},{"label":"Romania","value":"RO"},{"label":"Russia","value":"RU"},{"label":"Rwanda","value":"RW"},{"label":"Samoa","value":"WS"},{"label":"San Marino","value":"SM"},{"label":"São Tomé & Príncipe","value":"ST"},{"label":"Saudi Arabia","value":"SA"},{"label":"Senegal","value":"SN"},{"label":"Serbia","value":"RS"},{"label":"Seychelles","value":"SC"},{"label":"Sierra Leone","value":"SL"},{"label":"Singapore","value":"SG"},{"label":"Slovakia","value":"SK"},{"label":"Slovenia","value":"SI"},{"label":"Solomon Islands","value":"SB"},{"label":"Somalia","value":"SO"},{"label":"South Africa","value":"ZA"},{"label":"South Georgia & South Sandwich Islands","value":"GS"},{"label":"South Korea","value":"KR"},{"label":"Spain","value":"ES"},{"label":"Sri Lanka","value":"LK"},{"label":"St. Barthélemy","value":"BL"},{"label":"St. Helena","value":"SH"},{"label":"St. Kitts & Nevis","value":"KN"},{"label":"St. Lucia","value":"LC"},{"label":"St. Martin","value":"MF"},{"label":"St. Pierre & Miquelon","value":"PM"},{"label":"St. Vincent & Grenadines","value":"VC"},{"label":"Sudan","value":"SD"},{"label":"Suriname","value":"SR"},{"label":"Svalbard & Jan Mayen","value":"SJ"},{"label":"Sweden","value":"SE"},{"label":"Switzerland","value":"CH"},{"label":"Syria","value":"SY"},{"label":"Taiwan","value":"TW"},{"label":"Tajikistan","value":"TJ"},{"label":"Tanzania","value":"TZ"},{"label":"Thailand","value":"TH"},{"label":"Timor-Leste","value":"TL"},{"label":"Togo","value":"TG"},{"label":"Tokelau","value":"TK"},{"label":"Tonga","value":"TO"},{"label":"Trinidad & Tobago","value":"TT"},{"label":"Tunisia","value":"TN"},{"label":"Turkey","value":"TR"},{"label":"Turkmenistan","value":"TM"},{"label":"Turks & Caicos Islands","value":"TC"},{"label":"Tuvalu","value":"TV"},{"label":"Uganda","value":"UG"},{"label":"Ukraine","value":"UA"},{"label":"United Arab Emirates","value":"AE"},{"label":"United Kingdom","value":"GB"},{"label":"United States","value":"US"},{"label":"Uruguay","value":"UY"},{"label":"U.S. Outlying Islands","value":"UM"},{"label":"U.S. Virgin Islands","value":"VI"},{"label":"Uzbekistan","value":"UZ"},{"label":"Vanuatu","value":"VU"},{"label":"Vatican City","value":"VA"},{"label":"Venezuela","value":"VE"},{"label":"Vietnam","value":"VN"},{"label":"Wallis & Futuna","value":"WF"},{"label":"Western Sahara","value":"EH"},{"label":"Yemen","value":"YE"},{"label":"Zambia","value":"ZM"},{"label":"Zimbabwe","value":"ZW"}],"is_user_defined":false,"default_frontend_label":"Country of Manufacture","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Countryofmanufacture","is_unique":"0","validation_rules":[],"id":114,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"115","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":115,"attribute_code":"quantity_and_stock_status","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"In Stock","value":"1"},{"label":"Out of Stock","value":"0"}],"is_user_defined":false,"default_frontend_label":"Quantity","frontend_labels":null,"backend_type":"int","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Stock","source_model":"Magento\\CatalogInventory\\Model\\Source\\Stock","default_value":"1","is_unique":"0","validation_rules":[],"id":115,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"148","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":148,"attribute_code":"format","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Download","value":"102"},{"label":"DVD","value":"103"}],"is_user_defined":true,"default_frontend_label":"Format","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":148,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"151","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":151,"attribute_code":"sleeve","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Sleeve","value":"161"},{"label":"Long-Sleeve","value":"162"},{"label":"Short-Sleeve","value":"163"},{"label":"Sleeveless","value":"164"},{"label":"Tank","value":"165"},{"label":"Strap","value":"166"}],"is_user_defined":true,"default_frontend_label":"Sleeve","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":151,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"152","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":152,"attribute_code":"collar","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"N/A","value":"181"},{"label":"? zip","value":"182"},{"label":"Boat Neck","value":"183"},{"label":"Crew","value":"184"},{"label":"Full zip","value":"185"},{"label":"V-neck","value":"186"},{"label":"Ballet","value":"187"},{"label":"Scoop","value":"188"},{"label":"High Collar","value":"189"},{"label":"Stand Collar","value":"190"},{"label":"Roll Neck","value":"191"},{"label":"Square Neck","value":"192"}],"is_user_defined":true,"default_frontend_label":"Collar","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":152,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"108","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":108,"attribute_code":"has_options","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":108,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"129","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"store","attribute_id":129,"attribute_code":"samples_title","frontend_input":null,"entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Samples title","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":129,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"86","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":86,"attribute_code":"meta_description","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Meta Description","frontend_labels":null,"note":"Maximum 255 chars. Meta Description should optimally be between 150-160 characters","backend_type":"varchar","is_unique":"0","validation_rules":[],"id":86,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"105","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":105,"attribute_code":"category_ids","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Categories","frontend_labels":null,"backend_type":"static","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Category","is_unique":"0","validation_rules":[],"id":105,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"89","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":89,"attribute_code":"thumbnail","frontend_input":"media_image","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Thumbnail","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":89,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"141","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":141,"attribute_code":"category_gear","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Cardio","value":"85"},{"label":"Electronic","value":"86"},{"label":"Exercise","value":"87"},{"label":"Fashion","value":"88"},{"label":"Hydration","value":"89"},{"label":"Timepiece","value":"90"}],"is_user_defined":true,"default_frontend_label":"Category Gear","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":141,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"79","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":79,"attribute_code":"special_from_date","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Special Price From Date","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate","is_unique":"0","validation_rules":[],"id":79,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"94","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":94,"attribute_code":"news_from_date","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Set Product as New from Date","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate","is_unique":"0","validation_rules":[],"id":94,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"111","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"store","attribute_id":111,"attribute_code":"thumbnail_label","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Thumbnail Label","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":111,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"82","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":82,"attribute_code":"weight","frontend_input":"weight","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Weight","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Weight","is_unique":"0","validation_rules":[],"id":82,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"84","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":84,"attribute_code":"meta_title","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Meta Title","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":84,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"119","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":119,"attribute_code":"url_key","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"URL Key","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":119,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"90","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":90,"attribute_code":"media_gallery","frontend_input":"gallery","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Media Gallery","frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":90,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"113","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":113,"attribute_code":"updated_at","frontend_input":"date","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":113,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"109","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"store","attribute_id":109,"attribute_code":"image_label","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Image Label","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":109,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"133","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":133,"attribute_code":"swatch_image","frontend_input":"media_image","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Swatch","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":133,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"150","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":150,"attribute_code":"style_general","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Insulated","value":"117"},{"label":"Jacket","value":"118"},{"label":"Vest","value":"119"},{"label":"Lightweight","value":"120"},{"label":"Hooded","value":"121"},{"label":"Heavy Duty","value":"122"},{"label":"Rain Coat","value":"123"},{"label":"Hard Shell","value":"124"},{"label":"Soft Shell","value":"125"},{"label":"Windbreaker","value":"126"},{"label":"½ zip","value":"127"},{"label":"¼ zip","value":"128"},{"label":"Full Zip","value":"129"},{"label":"Reversible","value":"130"},{"label":"Bra","value":"131"},{"label":"Hoodie","value":"132"},{"label":"Sweatshirt","value":"133"},{"label":"Polo","value":"134"},{"label":"Tank","value":"135"},{"label":"Tee","value":"136"},{"label":"Pullover","value":"137"},{"label":"Hoodie","value":"138"},{"label":"Cardigan","value":"139"},{"label":"Henley","value":"140"},{"label":"Tunic","value":"141"},{"label":"Camisole","value":"142"}],"is_user_defined":true,"default_frontend_label":"Style General","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":150,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"101","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":101,"attribute_code":"custom_design_from","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Active From","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate","is_unique":"0","validation_rules":[],"id":101,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"95","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":95,"attribute_code":"news_to_date","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Set Product as New to Date","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime","is_unique":"0","validation_rules":[],"id":95,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"154","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":154,"attribute_code":"climate","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"All-Weather","value":"202"},{"label":"Cold","value":"203"},{"label":"Cool","value":"204"},{"label":"Indoor","value":"205"},{"label":"Mild","value":"206"},{"label":"Rainy","value":"207"},{"label":"Spring","value":"208"},{"label":"Warm","value":"209"},{"label":"Windy","value":"210"},{"label":"Wintry","value":"211"},{"label":"Hot","value":"212"}],"is_user_defined":true,"default_frontend_label":"Climate","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":154,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"85","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":85,"attribute_code":"meta_keyword","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Meta Keywords","frontend_labels":null,"backend_type":"text","is_unique":"0","validation_rules":[],"id":85,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"121","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","downloadable","bundle","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":121,"attribute_code":"msrp","frontend_input":"price","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Manufacturer's Suggested Retail Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":121,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"116","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":116,"attribute_code":"custom_layout","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"No layout updates","value":""},{"label":"Empty","value":"empty"},{"label":"1 column","value":"1column"},{"label":"2 columns with left bar","value":"2columns-left"},{"label":"2 columns with right bar","value":"2columns-right"},{"label":"3 columns","value":"3columns"}],"is_user_defined":false,"default_frontend_label":"New Layout","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Layout","is_unique":"0","validation_rules":[],"id":116,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"125","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":125,"attribute_code":"weight_type","frontend_input":"boolean","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Dynamic Weight","frontend_labels":null,"backend_type":"int","default_value":"0","is_unique":"0","validation_rules":[],"id":125,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"142","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":142,"attribute_code":"size","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"55 cm","value":"91"},{"label":"XS","value":"167"},{"label":"65 cm","value":"92"},{"label":"S","value":"168"},{"label":"75 cm","value":"93"},{"label":"M","value":"169"},{"label":"6 foot","value":"94"},{"label":"L","value":"170"},{"label":"8 foot","value":"95"},{"label":"XL","value":"171"},{"label":"10 foot","value":"96"},{"label":"28","value":"172"},{"label":"29","value":"173"},{"label":"30","value":"174"},{"label":"31","value":"175"},{"label":"32","value":"176"},{"label":"33","value":"177"},{"label":"34","value":"178"},{"label":"36","value":"179"},{"label":"38","value":"180"}],"is_user_defined":true,"default_frontend_label":"Size","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"91","is_unique":"0","validation_rules":[],"id":142,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"134","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"1","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":134,"attribute_code":"tax_class_id","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"None","value":"0"},{"label":"Taxable Goods","value":"2"}],"is_user_defined":false,"default_frontend_label":"Tax Class","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Tax\\Model\\TaxClass\\Source\\Product","default_value":"2","is_unique":"0","validation_rules":[],"id":134,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"123","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":123,"attribute_code":"price_type","frontend_input":"boolean","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Dynamic Price","frontend_labels":null,"backend_type":"int","default_value":"0","is_unique":"0","validation_rules":[],"id":123,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"127","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":127,"attribute_code":"shipment_type","frontend_input":"select","entity_type_id":"4","is_required":true,"options":[{"label":"Together","value":"0"},{"label":"Separately","value":"1"}],"is_user_defined":false,"default_frontend_label":"Ship Bundle Items","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Bundle\\Model\\Product\\Attribute\\Source\\Shipment\\Type","default_value":"0","is_unique":"0","validation_rules":[],"id":127,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"77","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":true,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":77,"attribute_code":"price","frontend_input":"price","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":77,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"83","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple"],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"1","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":83,"attribute_code":"manufacturer","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""}],"is_user_defined":true,"default_frontend_label":"Manufacturer","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","is_unique":"0","validation_rules":[],"id":83,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"81","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":81,"attribute_code":"cost","frontend_input":"price","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":true,"default_frontend_label":"Cost","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":81,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"78","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":78,"attribute_code":"special_price","frontend_input":"price","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Special Price","frontend_labels":null,"backend_type":"decimal","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price","is_unique":"0","validation_rules":[],"id":78,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"97","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":97,"attribute_code":"status","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Enabled","value":"1"},{"label":"Disabled","value":"2"}],"is_user_defined":false,"default_frontend_label":"Enable Product","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Status","default_value":"1","is_unique":"0","validation_rules":[],"id":97,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"100","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":100,"attribute_code":"custom_design","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"-- Please Select --","value":""},{"label":"Magento Blank","value":"1"},{"label":"Magento Luma","value":"2"}],"is_user_defined":false,"default_frontend_label":"New Theme","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Theme\\Model\\Theme\\Source\\Theme","is_unique":"0","validation_rules":[],"id":100,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"91","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":91,"attribute_code":"old_id","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"int","is_unique":"0","validation_rules":[],"id":91,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"96","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":96,"attribute_code":"gallery","frontend_input":"gallery","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Image Gallery","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":96,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"130","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"store","attribute_id":130,"attribute_code":"links_title","frontend_input":null,"entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Links title","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":130,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"124","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":124,"attribute_code":"sku_type","frontend_input":"boolean","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Dynamic SKU","frontend_labels":null,"backend_type":"int","default_value":"0","is_unique":"0","validation_rules":[],"id":124,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"143","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":143,"attribute_code":"eco_collection","frontend_input":"boolean","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"}],"is_user_defined":true,"default_frontend_label":"Eco Collection","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean","default_value":"","is_unique":"0","validation_rules":[],"id":143,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"76","_score":1,"_source":{"is_wysiwyg_enabled":true,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"1","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":76,"attribute_code":"short_description","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Short Description","frontend_labels":null,"backend_type":"text","is_unique":"0","validation_rules":[],"id":76,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"107","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"global","attribute_id":107,"attribute_code":"required_options","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":107,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"132","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":132,"attribute_code":"gift_message_available","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"},{"label":"Use config","value":"2"}],"is_user_defined":false,"default_frontend_label":"Allow Gift Message","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Boolean","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Boolean","is_unique":"0","validation_rules":[],"id":132,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"128","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"global","attribute_id":128,"attribute_code":"links_purchased_separately","frontend_input":null,"entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Links can be purchased separately","frontend_labels":null,"backend_type":"int","is_unique":"0","validation_rules":[],"id":128,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"112","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"global","attribute_id":112,"attribute_code":"created_at","frontend_input":"date","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"static","is_unique":"0","validation_rules":[],"id":112,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"139","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":139,"attribute_code":"features_bags","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Audio Pocket","value":"69"},{"label":"Wheeled","value":"70"},{"label":"Hydration Pocket","value":"71"},{"label":"Audio Pocket","value":"72"},{"label":"Flapover","value":"73"},{"label":"Waterproof","value":"74"},{"label":"Lightweight","value":"75"},{"label":"TSA Approved","value":"76"},{"label":"Reflective","value":"77"},{"label":"Laptop Sleeve","value":"78"},{"label":"Lockable","value":"79"}],"is_user_defined":true,"default_frontend_label":"Features","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":139,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"153","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":153,"attribute_code":"pattern","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Color-Blocked","value":"193"},{"label":"Checked","value":"194"},{"label":"Color-Blocked","value":"195"},{"label":"Graphic Print","value":"196"},{"label":"Solid","value":"197"},{"label":"Solid-Highlight","value":"198"},{"label":"Striped","value":"199"},{"label":"Camo","value":"200"},{"label":"Geometric","value":"201"}],"is_user_defined":true,"default_frontend_label":"Pattern","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":153,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"74","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"1","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":74,"attribute_code":"sku","frontend_input":"text","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"SKU","frontend_labels":null,"backend_type":"static","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Sku","is_unique":"1","frontend_class":"validate-length maximum-length-64","validation_rules":[],"id":74,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"138","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":138,"attribute_code":"strap_bags","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Adjustable","value":"61"},{"label":"Cross Body","value":"62"},{"label":"Detachable","value":"63"},{"label":"Double","value":"64"},{"label":"Padded","value":"65"},{"label":"Shoulder","value":"66"},{"label":"Single","value":"67"},{"label":"Telescoping","value":"68"}],"is_user_defined":true,"default_frontend_label":"Strap/Handle","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":138,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"135","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"1","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":135,"attribute_code":"activity","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Hike","value":"4"},{"label":"Outdoor","value":"5"},{"label":"Running","value":"6"},{"label":"Warmup","value":"7"},{"label":"Yoga","value":"8"},{"label":"Recreation","value":"9"},{"label":"Lounge","value":"10"},{"label":"Gym","value":"11"},{"label":"Climbing","value":"12"},{"label":"Crosstraining","value":"13"},{"label":"Post-workout","value":"14"},{"label":"Cycling","value":"15"},{"label":"Athletic","value":"16"},{"label":"Sports","value":"17"},{"label":"Hiking","value":"18"},{"label":"Overnight","value":"19"},{"label":"School","value":"20"},{"label":"Trail","value":"21"},{"label":"Travel","value":"22"},{"label":"Urban","value":"23"}],"is_user_defined":true,"default_frontend_label":"Activity","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":135,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"149","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":149,"attribute_code":"style_bottom","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Base Layer","value":"105"},{"label":"Basic","value":"106"},{"label":"Capri","value":"107"},{"label":"Compression","value":"108"},{"label":"Leggings","value":"109"},{"label":"Parachute","value":"110"},{"label":"Skort","value":"111"},{"label":"Snug","value":"112"},{"label":"Sweatpants","value":"113"},{"label":"Tights","value":"114"},{"label":"Track Pants","value":"115"},{"label":"Workout Pants","value":"116"}],"is_user_defined":true,"default_frontend_label":"Style Bottom","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":149,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"146","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":146,"attribute_code":"new","frontend_input":"boolean","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"}],"is_user_defined":true,"default_frontend_label":"New","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean","default_value":"","is_unique":"0","validation_rules":[],"id":146,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"145","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":145,"attribute_code":"erin_recommends","frontend_input":"boolean","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"}],"is_user_defined":true,"default_frontend_label":"Erin Recommends","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean","default_value":"","is_unique":"0","validation_rules":[],"id":145,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"147","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":147,"attribute_code":"sale","frontend_input":"boolean","entity_type_id":"4","is_required":false,"options":[{"label":"Yes","value":"1"},{"label":"No","value":"0"}],"is_user_defined":true,"default_frontend_label":"Sale","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean","default_value":"","is_unique":"0","validation_rules":[],"id":147,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"122","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","downloadable","bundle","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":122,"attribute_code":"msrp_display_actual_price_type","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"Use config","value":"0"},{"label":"On Gesture","value":"1"},{"label":"In Cart","value":"2"},{"label":"Before Order Confirmation","value":"3"}],"is_user_defined":false,"default_frontend_label":"Display Actual Price","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Boolean","source_model":"Magento\\Msrp\\Model\\Product\\Attribute\\Source\\Type\\Price","default_value":"0","is_unique":"0","validation_rules":[],"id":122,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"120","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":false,"scope":"store","attribute_id":120,"attribute_code":"url_path","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":120,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"93","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":true,"position":0,"apply_to":["simple","virtual","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":93,"attribute_code":"color","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Black","value":"49"},{"label":"Blue","value":"50"},{"label":"Brown","value":"51"},{"label":"Gray","value":"52"},{"label":"Green","value":"53"},{"label":"Lavender","value":"54"},{"label":"Multi","value":"55"},{"label":"Orange","value":"56"},{"label":"Purple","value":"57"},{"label":"Red","value":"58"},{"label":"White","value":"59"},{"label":"Yellow","value":"60"}],"is_user_defined":true,"default_frontend_label":"Color","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"49","is_unique":"0","validation_rules":[],"id":93,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"73","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":true,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":73,"attribute_code":"name","frontend_input":"text","entity_type_id":"4","is_required":true,"options":[],"is_user_defined":false,"default_frontend_label":"Product Name","frontend_labels":null,"backend_type":"varchar","is_unique":"0","frontend_class":"validate-length maximum-length-255","validation_rules":[],"id":73,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"110","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"store","attribute_id":110,"attribute_code":"small_image_label","frontend_input":"text","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Small Image Label","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":110,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"126","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["bundle"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"global","attribute_id":126,"attribute_code":"price_view","frontend_input":"select","entity_type_id":"4","is_required":true,"options":[{"label":"Price Range","value":"0"},{"label":"As Low as","value":"1"}],"is_user_defined":false,"default_frontend_label":"Price View","frontend_labels":null,"backend_type":"int","source_model":"Magento\\Bundle\\Model\\Product\\Attribute\\Source\\Price\\View","is_unique":"0","validation_rules":[],"id":126,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"137","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":137,"attribute_code":"material","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Burlap","value":"31"},{"label":"Cocona® performance fabric","value":"143"},{"label":"Canvas","value":"32"},{"label":"Wool","value":"144"},{"label":"Cotton","value":"33"},{"label":"Fleece","value":"145"},{"label":"Faux Leather","value":"34"},{"label":"Hemp","value":"146"},{"label":"Jersey","value":"147"},{"label":"Leather","value":"35"},{"label":"LumaTech™","value":"148"},{"label":"Mesh","value":"36"},{"label":"Lycra®","value":"149"},{"label":"Nylon","value":"37"},{"label":"Microfiber","value":"150"},{"label":"Polyester","value":"38"},{"label":"Rayon","value":"39"},{"label":"Spandex","value":"151"},{"label":"HeatTec®","value":"152"},{"label":"Ripstop","value":"40"},{"label":"EverCool™","value":"153"},{"label":"Suede","value":"41"},{"label":"Foam","value":"42"},{"label":"Organic Cotton","value":"154"},{"label":"Metal","value":"43"},{"label":"TENCEL","value":"155"},{"label":"CoolTech™","value":"156"},{"label":"Plastic","value":"44"},{"label":"Khaki","value":"157"},{"label":"Rubber","value":"45"},{"label":"Linen","value":"158"},{"label":"Synthetic","value":"46"},{"label":"Stainless Steel","value":"47"},{"label":"Wool","value":"159"},{"label":"Silicone","value":"48"},{"label":"Terry","value":"160"}],"is_user_defined":true,"default_frontend_label":"Material","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":137,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"104","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":104,"attribute_code":"page_layout","frontend_input":"select","entity_type_id":"4","is_required":false,"options":[{"label":"No layout updates","value":""},{"label":"Empty","value":"empty"},{"label":"1 column","value":"1column"},{"label":"2 columns with left bar","value":"2columns-left"},{"label":"2 columns with right bar","value":"2columns-right"},{"label":"3 columns","value":"3columns"}],"is_user_defined":false,"default_frontend_label":"Layout","frontend_labels":null,"backend_type":"varchar","source_model":"Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Layout","is_unique":"0","validation_rules":[],"id":104,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"75","_score":1,"_source":{"is_wysiwyg_enabled":true,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"1","is_visible_in_advanced_search":"1","is_comparable":"1","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":75,"attribute_code":"description","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Description","frontend_labels":null,"backend_type":"text","is_unique":"0","validation_rules":[],"id":75,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"131","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["downloadable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":false,"scope":"global","attribute_id":131,"attribute_code":"links_exist","frontend_input":null,"entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"frontend_labels":null,"backend_type":"int","default_value":"0","is_unique":"0","validation_rules":[],"id":131,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"103","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":103,"attribute_code":"custom_layout_update","frontend_input":"textarea","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Layout Update XML","frontend_labels":null,"backend_type":"text","backend_model":"Magento\\Catalog\\Model\\Attribute\\Backend\\Customlayoutupdate","is_unique":"0","validation_rules":[],"id":103,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"102","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"0","is_visible":true,"scope":"store","attribute_id":102,"attribute_code":"custom_design_to","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Active To","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime","is_unique":"0","validation_rules":[],"id":102,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"136","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":true,"used_for_sort_by":false,"is_filterable":true,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"1","is_visible_on_front":"1","used_in_product_listing":"0","is_visible":true,"scope":"global","attribute_id":136,"attribute_code":"style_bags","frontend_input":"multiselect","entity_type_id":"4","is_required":false,"options":[{"label":" ","value":""},{"label":"Backpack","value":"24"},{"label":"Luggage","value":"25"},{"label":"Duffel","value":"26"},{"label":"Messenger","value":"27"},{"label":"Laptop","value":"28"},{"label":"Exercise","value":"29"},{"label":"Tote","value":"30"}],"is_user_defined":true,"default_frontend_label":"Style Bags","frontend_labels":null,"backend_type":"varchar","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend","source_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table","default_value":"","is_unique":"0","validation_rules":[],"id":136,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"87","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":false,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":[],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"store","attribute_id":87,"attribute_code":"image","frontend_input":"media_image","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Base","frontend_labels":null,"backend_type":"varchar","is_unique":"0","validation_rules":[],"id":87,"tsk":1568837760474}} +{"_index":"vue_storefront_catalog_it_attribute","_type":"_doc","_id":"80","_score":1,"_source":{"is_wysiwyg_enabled":false,"is_html_allowed_on_front":false,"used_for_sort_by":false,"is_filterable":false,"is_filterable_in_search":false,"is_used_in_grid":true,"is_visible_in_grid":false,"is_filterable_in_grid":false,"position":0,"apply_to":["simple","virtual","bundle","downloadable","configurable"],"is_searchable":"0","is_visible_in_advanced_search":"0","is_comparable":"0","is_used_for_promo_rules":"0","is_visible_on_front":"0","used_in_product_listing":"1","is_visible":true,"scope":"website","attribute_id":80,"attribute_code":"special_to_date","frontend_input":"date","entity_type_id":"4","is_required":false,"options":[],"is_user_defined":false,"default_frontend_label":"Special Price To Date","frontend_labels":null,"backend_type":"datetime","backend_model":"Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime","is_unique":"0","validation_rules":[],"id":80,"tsk":1568837760474}} diff --git a/var/catalog_it_category.json b/var/catalog_it_category.json new file mode 100644 index 00000000..03325880 --- /dev/null +++ b/var/catalog_it_category.json @@ -0,0 +1,39 @@ +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"2","_score":1,"_source":{"id":2,"parent_id":1,"name":"Principale","is_active":true,"position":1,"level":1,"product_count":1181,"children_data":[{"id":38,"parent_id":2,"name":"What's New","is_active":false,"position":1,"level":2,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2018-05-27 14:05:17","path":"1/2/38","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"whats-new-38","url_path":"what-is-new/whats-new-38","slug":"whats-new-38"},{"id":20,"parent_id":2,"name":"La Donne","is_active":true,"position":2,"level":2,"product_count":0,"children_data":[{"id":21,"parent_id":20,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"id":23,"parent_id":21,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":186,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/23","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"jackets-23","url_path":"women/tops-women/jackets-women/jackets-23","slug":"jackets-23"},{"id":24,"parent_id":21,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":182,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/24","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-24","url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","slug":"hoodies-and-sweatshirts-24"},{"id":25,"parent_id":21,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/25","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-25","url_path":"women/tops-women/tees-women/tees-25","slug":"tees-25"},{"id":26,"parent_id":21,"name":"Bras & Tanks","is_active":true,"position":4,"level":4,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/26","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bras-and-tanks-26","url_path":"women/tops-women/tanks-women/bras-and-tanks-26","slug":"bras-and-tanks-26"}],"children":"23,24,25,26","created_at":"2017-11-06 12:16:41","updated_at":"2019-01-03 10:35:27","path":"1/2/20/21","available_sort_by":[],"include_in_menu":true,"meta_title":"Women Tops","meta_description":"Best women tops on vuestorefront.","display_mode":"PRODUCTS","is_anchor":"1","children_count":"4","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"tops-21","url_path":"women/tops-women/tops-21","slug":"tops-21"},{"id":22,"parent_id":20,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"id":27,"parent_id":22,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":91,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/27","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-27","url_path":"women/bottoms-women/pants-women/pants-27","slug":"pants-27"},{"id":28,"parent_id":22,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":137,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/28","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-28","url_path":"women/bottoms-women/shorts-women/shorts-28","slug":"shorts-28"}],"children":"27,28","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-22","url_path":"women/bottoms-women/bottoms-22","slug":"bottoms-22"}],"children":"21,22","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:08:58","path":"1/2/20","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"8","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"la-donne-20","url_path":"women/la-donne-20","slug":"la-donne-20"},{"id":11,"parent_id":2,"name":"Signori","is_active":true,"position":3,"level":2,"product_count":0,"children_data":[{"id":12,"parent_id":11,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"id":14,"parent_id":12,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":176,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:10:23","path":"1/2/11/12/14","available_sort_by":[],"include_in_menu":true,"description":"

                        Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum dui sapien, bibendum ac luctus sed, lobortis id lacus. Nulla nisi augue, accumsan id sapien maximus, hendrerit vehicula elit.

                        ","display_mode":"PRODUCTS","is_anchor":"1","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"jackets-14","url_path":"men/tops-men/jackets-men/jackets-14","slug":"jackets-14"},{"id":15,"parent_id":12,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":208,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/15","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-15","url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","slug":"hoodies-and-sweatshirts-15"},{"id":16,"parent_id":12,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/16","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-16","url_path":"men/tops-men/tees-men/tees-16","slug":"tees-16"},{"id":17,"parent_id":12,"name":"Tanks","is_active":true,"position":4,"level":4,"product_count":102,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/17","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tanks-17","url_path":"men/tops-men/tanks-men/tanks-17","slug":"tanks-17"}],"children":"14,15,16,17","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"4","url_key":"tops-12","url_path":"men/tops-men/tops-12","slug":"tops-12"},{"id":13,"parent_id":11,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"id":18,"parent_id":13,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":156,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/18","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-18","url_path":"men/bottoms-men/pants-men/pants-18","slug":"pants-18"},{"id":19,"parent_id":13,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":148,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/19","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-19","url_path":"men/bottoms-men/shorts-men/shorts-19","slug":"shorts-19"}],"children":"18,19","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-13","url_path":"men/bottoms-men/bottoms-13","slug":"bottoms-13"}],"children":"12,13","created_at":"2017-11-06 12:16:39","updated_at":"2018-05-27 14:06:07","path":"1/2/11","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"8","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"signori-11","url_path":"men/signori-11","slug":"signori-11"},{"id":3,"parent_id":2,"name":"Equipaggiamento","is_active":true,"position":4,"level":2,"product_count":46,"children_data":[{"id":4,"parent_id":3,"name":"Bags","is_active":true,"position":1,"level":3,"product_count":14,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/4","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bags-4","url_path":"gear/bags/bags-4","slug":"bags-4"},{"id":5,"parent_id":3,"name":"Fitness Equipment","is_active":true,"position":2,"level":3,"product_count":23,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/5","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"fitness-equipment-5","url_path":"gear/fitness-equipment/fitness-equipment-5","slug":"fitness-equipment-5"},{"id":6,"parent_id":3,"name":"Watches","is_active":true,"position":3,"level":3,"product_count":9,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/6","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"watches-6","url_path":"gear/watches/watches-6","slug":"watches-6"}],"children":"4,5,6","created_at":"2017-11-06 12:16:19","updated_at":"2018-05-27 14:06:53","path":"1/2/3","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"3","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"equipaggiamento-3","url_path":"gear/equipaggiamento-3","slug":"equipaggiamento-3"},{"id":7,"parent_id":2,"name":"Collections","is_active":false,"position":5,"level":2,"product_count":13,"children_data":[{"id":8,"parent_id":7,"name":"New Luma Yoga Collection","is_active":true,"position":1,"level":3,"product_count":347,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/7/8","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"new-luma-yoga-collection-8","url_path":"collections/yoga-new/new-luma-yoga-collection-8","slug":"new-luma-yoga-collection-8"},{"id":34,"parent_id":7,"name":"Erin Recommends","is_active":true,"position":2,"level":3,"product_count":279,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/34","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"erin-recommends-34","url_path":"collections/erin-recommends/erin-recommends-34","slug":"erin-recommends-34"},{"id":35,"parent_id":7,"name":"Performance Fabrics","is_active":true,"position":3,"level":3,"product_count":310,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/35","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"performance-fabrics-35","url_path":"collections/performance-fabrics/performance-fabrics-35","slug":"performance-fabrics-35"},{"id":36,"parent_id":7,"name":"Eco Friendly","is_active":true,"position":4,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/36","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"eco-friendly-36","url_path":"collections/eco-friendly/eco-friendly-36","slug":"eco-friendly-36"},{"id":39,"parent_id":7,"name":"Performance Sportswear New","is_active":true,"position":5,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/39","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"performance-sportswear-new-39","url_path":"collections/performance-new/performance-sportswear-new-39","slug":"performance-sportswear-new-39"},{"id":40,"parent_id":7,"name":"Eco Collection New","is_active":true,"position":6,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/40","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"eco-collection-new-40","url_path":"collections/eco-new/eco-collection-new-40","slug":"eco-collection-new-40"}],"children":"34,35,36,39,40,8","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:17:48","path":"1/2/7","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","children_count":"6","url_key":"collections-7","url_path":"collections/collections-7","slug":"collections-7"},{"id":9,"parent_id":2,"name":"Training","is_active":false,"position":5,"level":2,"product_count":6,"children_data":[{"id":10,"parent_id":9,"name":"Video Download","is_active":true,"position":1,"level":3,"product_count":6,"children_data":[],"children":"","created_at":"2017-11-06 12:16:31","updated_at":"2017-11-06 12:16:31","path":"1/2/9/10","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"video-download-10","url_path":"training/training-video/video-download-10","slug":"video-download-10"}],"children":"10","created_at":"2017-11-06 12:16:31","updated_at":"2018-05-27 14:04:30","path":"1/2/9","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"1","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"training-9","url_path":"training/training-9","slug":"training-9"},{"id":29,"parent_id":2,"name":"Promotions","is_active":false,"position":6,"level":2,"product_count":0,"children_data":[{"id":30,"parent_id":29,"name":"Women Sale","is_active":true,"position":1,"level":3,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/30","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"women-sale-30","url_path":"promotions/women-sale/women-sale-30","slug":"women-sale-30"},{"id":31,"parent_id":29,"name":"Men Sale","is_active":true,"position":2,"level":3,"product_count":39,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/31","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"men-sale-31","url_path":"promotions/men-sale/men-sale-31","slug":"men-sale-31"},{"id":32,"parent_id":29,"name":"Pants","is_active":true,"position":3,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/32","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"pants-32","url_path":"promotions/pants-all/pants-32","slug":"pants-32"},{"id":33,"parent_id":29,"name":"Tees","is_active":true,"position":4,"level":3,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/33","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"tees-33","url_path":"promotions/tees-all/tees-33","slug":"tees-33"}],"children":"30,31,32,33","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:42","path":"1/2/29","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","children_count":"4","url_key":"promotions-29","url_path":"promotions/promotions-29","slug":"promotions-29"},{"id":37,"parent_id":2,"name":"Sale","is_active":false,"position":6,"level":2,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2018-05-27 14:04:10","path":"1/2/37","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"sale-37","url_path":"sale/sale-37","slug":"sale-37"}],"url_key":"principale-2","slug":"principale-2","url_path":"principale-2","children":"3,11,20","created_at":"2017-11-03 08:34:39","updated_at":"2019-04-25 09:11:20","path":"1/2","available_sort_by":[],"include_in_menu":true,"display_mode":"PRODUCTS","is_anchor":"1","children_count":"38","custom_use_parent_settings":"0","custom_apply_to_products":"0","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"37","_score":1,"_source":{"id":37,"parent_id":2,"name":"Sale","is_active":false,"position":6,"level":2,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2018-05-27 14:04:10","path":"1/2/37","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"sale-37","url_path":"sale/sale-37","slug":"sale-37","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"38","_score":1,"_source":{"id":38,"parent_id":2,"name":"What's New","is_active":false,"position":1,"level":2,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2018-05-27 14:05:17","path":"1/2/38","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"whats-new-38","url_path":"what-is-new/whats-new-38","slug":"whats-new-38","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"29","_score":1,"_source":{"id":29,"parent_id":2,"name":"Promotions","is_active":false,"position":6,"level":2,"product_count":0,"children_data":[{"id":30,"parent_id":29,"name":"Women Sale","is_active":true,"position":1,"level":3,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/30","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"women-sale-30","url_path":"promotions/women-sale/women-sale-30","slug":"women-sale-30"},{"id":31,"parent_id":29,"name":"Men Sale","is_active":true,"position":2,"level":3,"product_count":39,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/31","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"men-sale-31","url_path":"promotions/men-sale/men-sale-31","slug":"men-sale-31"},{"id":32,"parent_id":29,"name":"Pants","is_active":true,"position":3,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/32","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"pants-32","url_path":"promotions/pants-all/pants-32","slug":"pants-32"},{"id":33,"parent_id":29,"name":"Tees","is_active":true,"position":4,"level":3,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/33","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"tees-33","url_path":"promotions/tees-all/tees-33","slug":"tees-33"}],"children":"30,31,32,33","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:42","path":"1/2/29","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","children_count":"4","url_key":"promotions-29","url_path":"promotions/promotions-29","slug":"promotions-29","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"7","_score":1,"_source":{"id":7,"parent_id":2,"name":"Collections","is_active":false,"position":5,"level":2,"product_count":13,"children_data":[{"id":8,"parent_id":7,"name":"New Luma Yoga Collection","is_active":true,"position":1,"level":3,"product_count":347,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/7/8","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"new-luma-yoga-collection-8","url_path":"collections/yoga-new/new-luma-yoga-collection-8","slug":"new-luma-yoga-collection-8"},{"id":34,"parent_id":7,"name":"Erin Recommends","is_active":true,"position":2,"level":3,"product_count":279,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/34","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"erin-recommends-34","url_path":"collections/erin-recommends/erin-recommends-34","slug":"erin-recommends-34"},{"id":35,"parent_id":7,"name":"Performance Fabrics","is_active":true,"position":3,"level":3,"product_count":310,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/35","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"performance-fabrics-35","url_path":"collections/performance-fabrics/performance-fabrics-35","slug":"performance-fabrics-35"},{"id":36,"parent_id":7,"name":"Eco Friendly","is_active":true,"position":4,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/36","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"eco-friendly-36","url_path":"collections/eco-friendly/eco-friendly-36","slug":"eco-friendly-36"},{"id":39,"parent_id":7,"name":"Performance Sportswear New","is_active":true,"position":5,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/39","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"performance-sportswear-new-39","url_path":"collections/performance-new/performance-sportswear-new-39","slug":"performance-sportswear-new-39"},{"id":40,"parent_id":7,"name":"Eco Collection New","is_active":true,"position":6,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/40","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"eco-collection-new-40","url_path":"collections/eco-new/eco-collection-new-40","slug":"eco-collection-new-40"}],"children":"34,35,36,39,40,8","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:17:48","path":"1/2/7","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","children_count":"6","url_key":"collections-7","url_path":"collections/collections-7","slug":"collections-7","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"9","_score":1,"_source":{"id":9,"parent_id":2,"name":"Training","is_active":false,"position":5,"level":2,"product_count":6,"children_data":[{"id":10,"parent_id":9,"name":"Video Download","is_active":true,"position":1,"level":3,"product_count":6,"children_data":[],"children":"","created_at":"2017-11-06 12:16:31","updated_at":"2017-11-06 12:16:31","path":"1/2/9/10","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"video-download-10","url_path":"training/training-video/video-download-10","slug":"video-download-10"}],"children":"10","created_at":"2017-11-06 12:16:31","updated_at":"2018-05-27 14:04:30","path":"1/2/9","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"1","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"training-9","url_path":"training/training-9","slug":"training-9","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"20","_score":1,"_source":{"id":20,"parent_id":2,"name":"La Donne","is_active":true,"position":2,"level":2,"product_count":0,"children_data":[{"id":21,"parent_id":20,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"id":23,"parent_id":21,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":186,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/23","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"jackets-23","url_path":"women/tops-women/jackets-women/jackets-23","slug":"jackets-23"},{"id":24,"parent_id":21,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":182,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/24","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-24","url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","slug":"hoodies-and-sweatshirts-24"},{"id":25,"parent_id":21,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/25","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-25","url_path":"women/tops-women/tees-women/tees-25","slug":"tees-25"},{"id":26,"parent_id":21,"name":"Bras & Tanks","is_active":true,"position":4,"level":4,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/26","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bras-and-tanks-26","url_path":"women/tops-women/tanks-women/bras-and-tanks-26","slug":"bras-and-tanks-26"}],"children":"23,24,25,26","created_at":"2017-11-06 12:16:41","updated_at":"2019-01-03 10:35:27","path":"1/2/20/21","available_sort_by":[],"include_in_menu":true,"meta_title":"Women Tops","meta_description":"Best women tops on vuestorefront.","display_mode":"PRODUCTS","is_anchor":"1","children_count":"4","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"tops-21","url_path":"women/tops-women/tops-21","slug":"tops-21"},{"id":22,"parent_id":20,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"id":27,"parent_id":22,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":91,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/27","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-27","url_path":"women/bottoms-women/pants-women/pants-27","slug":"pants-27"},{"id":28,"parent_id":22,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":137,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/28","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-28","url_path":"women/bottoms-women/shorts-women/shorts-28","slug":"shorts-28"}],"children":"27,28","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-22","url_path":"women/bottoms-women/bottoms-22","slug":"bottoms-22"}],"children":"21,22","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:08:58","path":"1/2/20","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"8","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"la-donne-20","url_path":"women/la-donne-20","slug":"la-donne-20","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"3","_score":1,"_source":{"id":3,"parent_id":2,"name":"Equipaggiamento","is_active":true,"position":4,"level":2,"product_count":46,"children_data":[{"id":4,"parent_id":3,"name":"Bags","is_active":true,"position":1,"level":3,"product_count":14,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/4","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bags-4","url_path":"gear/bags/bags-4","slug":"bags-4"},{"id":5,"parent_id":3,"name":"Fitness Equipment","is_active":true,"position":2,"level":3,"product_count":23,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/5","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"fitness-equipment-5","url_path":"gear/fitness-equipment/fitness-equipment-5","slug":"fitness-equipment-5"},{"id":6,"parent_id":3,"name":"Watches","is_active":true,"position":3,"level":3,"product_count":9,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/6","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"watches-6","url_path":"gear/watches/watches-6","slug":"watches-6"}],"children":"4,5,6","created_at":"2017-11-06 12:16:19","updated_at":"2018-05-27 14:06:53","path":"1/2/3","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"3","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"equipaggiamento-3","url_path":"gear/equipaggiamento-3","slug":"equipaggiamento-3","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"11","_score":1,"_source":{"id":11,"parent_id":2,"name":"Signori","is_active":true,"position":3,"level":2,"product_count":0,"children_data":[{"id":12,"parent_id":11,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"id":14,"parent_id":12,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":176,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:10:23","path":"1/2/11/12/14","available_sort_by":[],"include_in_menu":true,"description":"

                        Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum dui sapien, bibendum ac luctus sed, lobortis id lacus. Nulla nisi augue, accumsan id sapien maximus, hendrerit vehicula elit.

                        ","display_mode":"PRODUCTS","is_anchor":"1","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"jackets-14","url_path":"men/tops-men/jackets-men/jackets-14","slug":"jackets-14"},{"id":15,"parent_id":12,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":208,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/15","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-15","url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","slug":"hoodies-and-sweatshirts-15"},{"id":16,"parent_id":12,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/16","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-16","url_path":"men/tops-men/tees-men/tees-16","slug":"tees-16"},{"id":17,"parent_id":12,"name":"Tanks","is_active":true,"position":4,"level":4,"product_count":102,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/17","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tanks-17","url_path":"men/tops-men/tanks-men/tanks-17","slug":"tanks-17"}],"children":"14,15,16,17","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"4","url_key":"tops-12","url_path":"men/tops-men/tops-12","slug":"tops-12"},{"id":13,"parent_id":11,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"id":18,"parent_id":13,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":156,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/18","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-18","url_path":"men/bottoms-men/pants-men/pants-18","slug":"pants-18"},{"id":19,"parent_id":13,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":148,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/19","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-19","url_path":"men/bottoms-men/shorts-men/shorts-19","slug":"shorts-19"}],"children":"18,19","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-13","url_path":"men/bottoms-men/bottoms-13","slug":"bottoms-13"}],"children":"12,13","created_at":"2017-11-06 12:16:39","updated_at":"2018-05-27 14:06:07","path":"1/2/11","available_sort_by":[],"include_in_menu":true,"display_mode":"PAGE","is_anchor":"0","custom_layout_update":"","children_count":"8","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"signori-11","url_path":"men/signori-11","slug":"signori-11","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"31","_score":1,"_source":{"id":31,"parent_id":29,"name":"Men Sale","is_active":true,"position":2,"level":3,"product_count":39,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/31","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"men-sale-31","url_path":"promotions/men-sale/men-sale-31","slug":"men-sale-31","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"30","_score":1,"_source":{"id":30,"parent_id":29,"name":"Women Sale","is_active":true,"position":1,"level":3,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/29/30","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"women-sale-30","url_path":"promotions/women-sale/women-sale-30","slug":"women-sale-30","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"33","_score":1,"_source":{"id":33,"parent_id":29,"name":"Tees","is_active":true,"position":4,"level":3,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/33","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"tees-33","url_path":"promotions/tees-all/tees-33","slug":"tees-33","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"32","_score":1,"_source":{"id":32,"parent_id":29,"name":"Pants","is_active":true,"position":3,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/29/32","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"pants-32","url_path":"promotions/pants-all/pants-32","slug":"pants-32","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"4","_score":1,"_source":{"id":4,"parent_id":3,"name":"Bags","is_active":true,"position":1,"level":3,"product_count":14,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/4","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bags-4","url_path":"gear/bags/bags-4","slug":"bags-4","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"5","_score":1,"_source":{"id":5,"parent_id":3,"name":"Fitness Equipment","is_active":true,"position":2,"level":3,"product_count":23,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/5","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"fitness-equipment-5","url_path":"gear/fitness-equipment/fitness-equipment-5","slug":"fitness-equipment-5","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"34","_score":1,"_source":{"id":34,"parent_id":7,"name":"Erin Recommends","is_active":true,"position":2,"level":3,"product_count":279,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/34","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"erin-recommends-34","url_path":"collections/erin-recommends/erin-recommends-34","slug":"erin-recommends-34","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"35","_score":1,"_source":{"id":35,"parent_id":7,"name":"Performance Fabrics","is_active":true,"position":3,"level":3,"product_count":310,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/35","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"performance-fabrics-35","url_path":"collections/performance-fabrics/performance-fabrics-35","slug":"performance-fabrics-35","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"36","_score":1,"_source":{"id":36,"parent_id":7,"name":"Eco Friendly","is_active":true,"position":4,"level":3,"product_count":247,"children_data":[],"children":"","created_at":"2017-11-06 12:16:42","updated_at":"2017-11-06 12:16:42","path":"1/2/7/36","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"eco-friendly-36","url_path":"collections/eco-friendly/eco-friendly-36","slug":"eco-friendly-36","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"8","_score":1,"_source":{"id":8,"parent_id":7,"name":"New Luma Yoga Collection","is_active":true,"position":1,"level":3,"product_count":347,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/7/8","available_sort_by":[],"include_in_menu":false,"is_anchor":"1","children_count":"0","url_key":"new-luma-yoga-collection-8","url_path":"collections/yoga-new/new-luma-yoga-collection-8","slug":"new-luma-yoga-collection-8","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"6","_score":1,"_source":{"id":6,"parent_id":3,"name":"Watches","is_active":true,"position":3,"level":3,"product_count":9,"children_data":[],"children":"","created_at":"2017-11-06 12:16:20","updated_at":"2017-11-06 12:16:20","path":"1/2/3/6","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"watches-6","url_path":"gear/watches/watches-6","slug":"watches-6","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"39","_score":1,"_source":{"id":39,"parent_id":7,"name":"Performance Sportswear New","is_active":true,"position":5,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/39","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"performance-sportswear-new-39","url_path":"collections/performance-new/performance-sportswear-new-39","slug":"performance-sportswear-new-39","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"40","_score":1,"_source":{"id":40,"parent_id":7,"name":"Eco Collection New","is_active":true,"position":6,"level":3,"product_count":0,"children_data":[],"children":"","created_at":"2017-11-06 12:17:48","updated_at":"2017-11-06 12:17:48","path":"1/2/7/40","available_sort_by":[],"include_in_menu":false,"display_mode":"PAGE","is_anchor":"0","page_layout":"1column","children_count":"0","url_key":"eco-collection-new-40","url_path":"collections/eco-new/eco-collection-new-40","slug":"eco-collection-new-40","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"10","_score":1,"_source":{"id":10,"parent_id":9,"name":"Video Download","is_active":true,"position":1,"level":3,"product_count":6,"children_data":[],"children":"","created_at":"2017-11-06 12:16:31","updated_at":"2017-11-06 12:16:31","path":"1/2/9/10","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"video-download-10","url_path":"training/training-video/video-download-10","slug":"video-download-10","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"22","_score":1,"_source":{"id":22,"parent_id":20,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"id":27,"parent_id":22,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":91,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/27","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-27","url_path":"women/bottoms-women/pants-women/pants-27","slug":"pants-27"},{"id":28,"parent_id":22,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":137,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/28","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-28","url_path":"women/bottoms-women/shorts-women/shorts-28","slug":"shorts-28"}],"children":"27,28","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-22","url_path":"women/bottoms-women/bottoms-22","slug":"bottoms-22","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"13","_score":1,"_source":{"id":13,"parent_id":11,"name":"Bottoms","is_active":true,"position":2,"level":3,"product_count":0,"children_data":[{"id":18,"parent_id":13,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":156,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/18","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-18","url_path":"men/bottoms-men/pants-men/pants-18","slug":"pants-18"},{"id":19,"parent_id":13,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":148,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/19","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-19","url_path":"men/bottoms-men/shorts-men/shorts-19","slug":"shorts-19"}],"children":"18,19","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"2","url_key":"bottoms-13","url_path":"men/bottoms-men/bottoms-13","slug":"bottoms-13","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"12","_score":1,"_source":{"id":12,"parent_id":11,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"id":14,"parent_id":12,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":176,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:10:23","path":"1/2/11/12/14","available_sort_by":[],"include_in_menu":true,"description":"

                        Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum dui sapien, bibendum ac luctus sed, lobortis id lacus. Nulla nisi augue, accumsan id sapien maximus, hendrerit vehicula elit.

                        ","display_mode":"PRODUCTS","is_anchor":"1","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"jackets-14","url_path":"men/tops-men/jackets-men/jackets-14","slug":"jackets-14"},{"id":15,"parent_id":12,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":208,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/15","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-15","url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","slug":"hoodies-and-sweatshirts-15"},{"id":16,"parent_id":12,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/16","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-16","url_path":"men/tops-men/tees-men/tees-16","slug":"tees-16"},{"id":17,"parent_id":12,"name":"Tanks","is_active":true,"position":4,"level":4,"product_count":102,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/17","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tanks-17","url_path":"men/tops-men/tanks-men/tanks-17","slug":"tanks-17"}],"children":"14,15,16,17","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"4","url_key":"tops-12","url_path":"men/tops-men/tops-12","slug":"tops-12","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"21","_score":1,"_source":{"id":21,"parent_id":20,"name":"Tops","is_active":true,"position":1,"level":3,"product_count":0,"children_data":[{"id":23,"parent_id":21,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":186,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/23","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"jackets-23","url_path":"women/tops-women/jackets-women/jackets-23","slug":"jackets-23"},{"id":24,"parent_id":21,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":182,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/24","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-24","url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","slug":"hoodies-and-sweatshirts-24"},{"id":25,"parent_id":21,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/25","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-25","url_path":"women/tops-women/tees-women/tees-25","slug":"tees-25"},{"id":26,"parent_id":21,"name":"Bras & Tanks","is_active":true,"position":4,"level":4,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/26","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bras-and-tanks-26","url_path":"women/tops-women/tanks-women/bras-and-tanks-26","slug":"bras-and-tanks-26"}],"children":"23,24,25,26","created_at":"2017-11-06 12:16:41","updated_at":"2019-01-03 10:35:27","path":"1/2/20/21","available_sort_by":[],"include_in_menu":true,"meta_title":"Women Tops","meta_description":"Best women tops on vuestorefront.","display_mode":"PRODUCTS","is_anchor":"1","children_count":"4","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"tops-21","url_path":"women/tops-women/tops-21","slug":"tops-21","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"27","_score":1,"_source":{"id":27,"parent_id":22,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":91,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/27","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-27","url_path":"women/bottoms-women/pants-women/pants-27","slug":"pants-27","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"17","_score":1,"_source":{"id":17,"parent_id":12,"name":"Tanks","is_active":true,"position":4,"level":4,"product_count":102,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/17","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tanks-17","url_path":"men/tops-men/tanks-men/tanks-17","slug":"tanks-17","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"28","_score":1,"_source":{"id":28,"parent_id":22,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":137,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/22/28","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-28","url_path":"women/bottoms-women/shorts-women/shorts-28","slug":"shorts-28","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"19","_score":1,"_source":{"id":19,"parent_id":13,"name":"Shorts","is_active":true,"position":2,"level":4,"product_count":148,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/19","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"shorts-19","url_path":"men/bottoms-men/shorts-men/shorts-19","slug":"shorts-19","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"18","_score":1,"_source":{"id":18,"parent_id":13,"name":"Pants","is_active":true,"position":1,"level":4,"product_count":156,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/13/18","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"pants-18","url_path":"men/bottoms-men/pants-men/pants-18","slug":"pants-18","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"24","_score":1,"_source":{"id":24,"parent_id":21,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":182,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/24","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-24","url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","slug":"hoodies-and-sweatshirts-24","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"15","_score":1,"_source":{"id":15,"parent_id":12,"name":"Hoodies & Sweatshirts","is_active":true,"position":2,"level":4,"product_count":208,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/15","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"hoodies-and-sweatshirts-15","url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","slug":"hoodies-and-sweatshirts-15","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"26","_score":1,"_source":{"id":26,"parent_id":21,"name":"Bras & Tanks","is_active":true,"position":4,"level":4,"product_count":224,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/26","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"bras-and-tanks-26","url_path":"women/tops-women/tanks-women/bras-and-tanks-26","slug":"bras-and-tanks-26","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"16","_score":1,"_source":{"id":16,"parent_id":12,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2017-11-06 12:16:40","path":"1/2/11/12/16","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-16","url_path":"men/tops-men/tees-men/tees-16","slug":"tees-16","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"23","_score":1,"_source":{"id":23,"parent_id":21,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":186,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/23","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"jackets-23","url_path":"women/tops-women/jackets-women/jackets-23","slug":"jackets-23","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"25","_score":1,"_source":{"id":25,"parent_id":21,"name":"Tees","is_active":true,"position":3,"level":4,"product_count":192,"children_data":[],"children":"","created_at":"2017-11-06 12:16:41","updated_at":"2017-11-06 12:16:41","path":"1/2/20/21/25","available_sort_by":[],"include_in_menu":true,"is_anchor":"1","children_count":"0","url_key":"tees-25","url_path":"women/tops-women/tees-women/tees-25","slug":"tees-25","tsk":1568837752185}} +{"_index":"vue_storefront_catalog_it_category","_type":"_doc","_id":"14","_score":1,"_source":{"id":14,"parent_id":12,"name":"Jackets","is_active":true,"position":1,"level":4,"product_count":176,"children_data":[],"children":"","created_at":"2017-11-06 12:16:40","updated_at":"2019-04-17 11:10:23","path":"1/2/11/12/14","available_sort_by":[],"include_in_menu":true,"description":"

                        Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum dui sapien, bibendum ac luctus sed, lobortis id lacus. Nulla nisi augue, accumsan id sapien maximus, hendrerit vehicula elit.

                        ","display_mode":"PRODUCTS","is_anchor":"1","children_count":"0","custom_use_parent_settings":"0","custom_apply_to_products":"0","url_key":"jackets-14","url_path":"men/tops-men/jackets-men/jackets-14","slug":"jackets-14","tsk":1568837752185}} diff --git a/var/catalog_it_cms_block.json b/var/catalog_it_cms_block.json new file mode 100644 index 00000000..f4d5aa5e --- /dev/null +++ b/var/catalog_it_cms_block.json @@ -0,0 +1,20 @@ +{"_index":"vue_storefront_catalog_it_cms_block","_type":"_doc","_id":"14","_score":1,"_source":{"store_id":[0],"id":14,"identifier":"home-page-block","title":"Home Page Block","content":"\n
                        \n

                        Hot Sellers

                        \n

                        Here is what`s trending on Luma right now

                        \n
                        \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837744028}} +{"_index":"vue_storefront_catalog_it_cms_block","_type":"_doc","_id":"10","_score":1,"_source":{"store_id":[0],"id":10,"identifier":"men-block","title":"Men Block","content":"\n
                        \n

                        Hot Sellers

                        \n

                        Favorites from Luma shoppers

                        \n
                        \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837744028}} +{"_index":"vue_storefront_catalog_it_cms_block","_type":"_doc","_id":"2","_score":1,"_source":{"store_id":[0],"id":2,"identifier":"contact-us-info","title":"Contact us info","content":"
                        \n

                        We love hearing from you, our Luma customers. Please contact us about anything at all. Your latest passion, unique health experience or request for a specific product. We’ll do everything we can to make your Luma experience unforgettable every time. Reach us however you like

                        \n
                        \n
                        \n Contact Us Info\n
                        \n
                        \n
                        \n \n Phone\n \n
                        \n 1-800-403-8838\n

                        Call the Luma Helpline for concerns, product questions, or anything else. We’re here for you 24 hours a day - 365 days a year.

                        \n
                        \n
                        \n
                        \n \n Apparel Design Inquiries\n \n
                        \n

                        Are you an independent clothing designer? Feature your products on the Luma website! Please direct all inquiries via email to: cs@luma.com

                        \n
                        \n
                        \n
                        \n \n Press Inquiries\n \n
                        \n

                        Please direct all media inquiries via email to: pr@luma.com

                        \n
                        \n
                        \n
                        \n
                        \n
                        \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837744028}} +{"_index":"vue_storefront_catalog_it_cms_block","_type":"_doc","_id":"13","_score":1,"_source":{"store_id":[0],"id":13,"identifier":"new-block","title":"New Block","content":"\n
                        \n

                        Luma's Latest

                        \n

                        Just in time for the new season!

                        \n
                        \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837744028}} +{"_index":"vue_storefront_catalog_it_cms_block","_type":"_doc","_id":"7","_score":1,"_source":{"store_id":[0],"id":7,"identifier":"new-left-menu-block","title":"New Left Menu Block","content":"
                        New in women's\n\n\nNew in men's\n\n
                        ","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837744028}} +{"_index":"vue_storefront_catalog_it_cms_block","_type":"_doc","_id":"5","_score":1,"_source":{"store_id":[0],"id":5,"identifier":"men-left-menu-block","title":"Men Left Menu Block","content":"
                        Tops\n\n\nBottoms\n\n
                        ","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837744028}} +{"_index":"vue_storefront_catalog_it_cms_block","_type":"_doc","_id":"12","_score":1,"_source":{"store_id":[0],"id":12,"identifier":"sale-block","title":"Sale Block","content":"","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837744028}} +{"_index":"vue_storefront_catalog_it_cms_block","_type":"_doc","_id":"11","_score":1,"_source":{"store_id":[0],"id":11,"identifier":"gear-block","title":"Gear Block","content":"\n
                        \n

                        Hot Sellers

                        \n

                        Favorites from Luma shoppers

                        \n
                        \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837744028}} +{"_index":"vue_storefront_catalog_it_cms_block","_type":"_doc","_id":"6","_score":1,"_source":{"store_id":[0],"id":6,"identifier":"women-left-menu-block","title":"Women Left Menu Block","content":"
                        Tops\n\n\nBottoms\n\n
                        ","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837744028}} +{"_index":"vue_storefront_catalog_it_cms_block","_type":"_doc","_id":"19","_score":1,"_source":{"store_id":[0],"id":19,"identifier":"no_reviews___","title":"no_reviews","content":"

                        lorem impsum

                        ","creation_time":"2019-06-27 11:42:02","update_time":"2019-06-27 11:42:02","active":true,"type":"cms_block","tsk":1568837744028}} +{"_index":"vue_storefront_catalog_it_cms_block","_type":"_doc","_id":"15","_score":1,"_source":{"store_id":[0],"id":15,"identifier":"performance-fabrics-block","title":"Performance Fabrics Block","content":"
                        \n
                        \n \"\"\n \n You're the best\n Make a strong statement with Luma Performance sportswear\n \n
                        \n
                        \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837744028}} +{"_index":"vue_storefront_catalog_it_cms_block","_type":"_doc","_id":"1","_score":1,"_source":{"store_id":[0],"id":1,"identifier":"footer_links_block","title":"Footer Links Block","content":"\n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837744028}} +{"_index":"vue_storefront_catalog_it_cms_block","_type":"_doc","_id":"3","_score":1,"_source":{"store_id":[0],"id":3,"identifier":"sale-left-menu-block","title":"Sale Left Menu Block","content":"
                        Women's Deals\n\n\nMens's Deals\n\n\nGear Deals\n\n
                        ","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837744028}} +{"_index":"vue_storefront_catalog_it_cms_block","_type":"_doc","_id":"18","_score":1,"_source":{"store_id":[0],"id":18,"identifier":"login-data","title":"Login Info Block","content":"
                        \n

                        Try Demo Customer Access

                        \n

                        Email:roni_cost@example.com

                        \n

                        Password:roni_cost3@example.com

                        \n
                        ","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837744028}} +{"_index":"vue_storefront_catalog_it_cms_block","_type":"_doc","_id":"8","_score":1,"_source":{"store_id":[0],"id":8,"identifier":"women-block","title":"Women Block","content":"\n
                        \n

                        Hot Sellers

                        \n

                        Favorites from Luma shoppers

                        \n
                        \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837744028}} +{"_index":"vue_storefront_catalog_it_cms_block","_type":"_doc","_id":"20","_score":1,"_source":{"store_id":[0],"id":20,"identifier":"footer_about_menu","title":"about","content":"

                        test

                        ","creation_time":"2019-06-27 11:43:19","update_time":"2019-06-27 11:43:19","active":true,"type":"cms_block","tsk":1568837744028}} +{"_index":"vue_storefront_catalog_it_cms_block","_type":"_doc","_id":"17","_score":1,"_source":{"store_id":[0],"id":17,"identifier":"giftcard-block","title":"Giftcard Block","content":"","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837744028}} +{"_index":"vue_storefront_catalog_it_cms_block","_type":"_doc","_id":"16","_score":1,"_source":{"store_id":[0],"id":16,"identifier":"eco-friendly-block","title":"Eco Friendly Block","content":"
                        \n
                        \n \"\"\n \n Eco-friendly, ego-friendly\n Recycled polyester, hemp and organic cotton apperel\n \n
                        \n
                        \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837744028}} +{"_index":"vue_storefront_catalog_it_cms_block","_type":"_doc","_id":"4","_score":1,"_source":{"store_id":[0],"id":4,"identifier":"gear-left-menu-block","title":"Gear Left Menu Block","content":"","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837744028}} +{"_index":"vue_storefront_catalog_it_cms_block","_type":"_doc","_id":"9","_score":1,"_source":{"store_id":[0],"id":9,"identifier":"training-block","title":"Training Block","content":"\n
                        \n

                        Top Videos

                        \n

                        Stream free with subscription

                        \n
                        \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","active":true,"type":"cms_block","tsk":1568837744028}} diff --git a/var/catalog_it_cms_page.json b/var/catalog_it_cms_page.json new file mode 100644 index 00000000..5c898508 --- /dev/null +++ b/var/catalog_it_cms_page.json @@ -0,0 +1,6 @@ +{"_index":"vue_storefront_catalog_it_cms_page","_type":"_doc","_id":"6","_score":1,"_source":{"store_id":[0],"id":6,"identifier":"customer-service","title":"Customer Service","page_layout":"1column","meta_keywords":"","meta_description":"","content_heading":"Customer Service","content":"
                        \n
                        \n

                        Luma Delivery and Returns

                        \n

                        We hope you love shopping with Luma. Here are our delivery and returns policies to help make sure we meet your expectations. Contact Us.

                        \n
                        \n\n

                        Shipping and Delivery

                        \n

                        Shipping and Delivery is the charge for internet order processing, item selection, packaging, transport and handling. We don’t guarantee delivery times, but we do our best to provide accurate estimates.

                        \n\n

                        Deliveries occur only on weekdays. Shipping and Delivery charges are subject to change and are determined when you order. Estimated delivery time assumes orders are placed before 12:00 noon (PST). Orders you place with Luma late on Friday or on Saturday will not be processed until Monday. Charges may be added to orders with Priority, Overnight and International shipping if we try unsuccessfully to deliver your order more than once.

                        \n\n

                        Delivery addresses in Alaska, Hawaii, Puerto Rico, and Guam should add an additional $5.00 charge for standard Shipping & Delivery. Orders arrive in 7 to 9 business days when ordered before 12:00 noon (PST).

                        \n\n
                        \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
                        Shipping and Delivery
                        Merchandise total *STANDARD
                        5—7 day shipping **
                        PRIORITY
                        2—3 day shipping **
                        OVERNIGHT
                        Next business day **
                        Up to $200$16$26$33
                        $200.01—500.00$21$31$38
                        $500.01—1000.00$29$39$46
                        Over $1000.00$34$44$51
                        \n
                        \n\n

                        \n *before tax and additional charges
                        \n **after processing if ordered by 12:00 noon PST\n

                        \n\n

                        Returns and Replacements

                        \n

                        We want you to be completely happy with your Luma order. If for any reason you are not satisfied, we will gladly accept your timely return of unworn, unwashed, or defective merchandise. Used merchandise cannot be returned unless defective. Returned merchandise should include the vendor packaging and tags and be in the same condition as when it was received. A pickup and/or restock fee may apply. Merchandise must be returned within 30 days of receipt of merchandise.

                        \n\n

                        Returning Gifts

                        \n

                        When returning a gift, a Luma Gift Card will be issued to the gift recipient for the amount of the returned merchandise. The card can be used for purchases from any Luma store, and online. In compliance with Federal law, for gifts valued at more than $2,000.00, the recipient will receive a check rather than an Luma Gift Card.

                        \n\n

                        Returning Merchandise by Mail

                        \n

                        On the back of the packing slip enclosed with your Luma order, please note the reason(s) for return and whether you wish to exchange the item(s) or receive a credit/refund (depending on the original form of payment).

                        \n

                        Enclose the return section of the packing slip with your item(s). Please use one of the return labels provided on the front of your packing slip to ensure proper return address and credit information. Restricted items must be returned using ground transportation.

                        \n

                        Please allow 10 to 14 days for Luma to process your return.

                        \n
                        \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","sort_order":"0","layout_update_xml":"","custom_theme":"","custom_root_template":"","custom_layout_update_xml":"","active":true,"type":"cms_page","tsk":1568837746862}} +{"_index":"vue_storefront_catalog_it_cms_page","_type":"_doc","_id":"1","_score":1,"_source":{"store_id":[0],"id":1,"identifier":"no-route","title":"404 Not Found","page_layout":"2columns-right","meta_keywords":"Page keywords","meta_description":"Page description","content_heading":"Whoops, our bad...","content":"
                        \r\n
                        The page you requested was not found, and we have a fine guess why.
                        \r\n
                        \r\n
                          \r\n
                        • If you typed the URL directly, please make sure the spelling is correct.
                        • \r\n
                        • If you clicked on a link to get here, the link is outdated.
                        • \r\n
                        \r\n
                        \r\n
                        \r\n
                        What can you do?
                        \r\n
                        Have no fear, help is near! There are many ways you can get back on track with Magento Store.
                        \r\n
                        \r\n
                          \r\n
                        • Go back to the previous page.
                        • \r\n
                        • Use the search bar at the top of the page to search for your products.
                        • \r\n
                        • Follow these links to get you back on track!
                          Store Home | My Account
                        \r\n","creation_time":"2017-11-03 08:34:38","update_time":"2017-11-03 08:34:38","sort_order":"0","active":true,"type":"cms_page","tsk":1568837746862}} +{"_index":"vue_storefront_catalog_it_cms_page","_type":"_doc","_id":"5","_score":1,"_source":{"store_id":[0],"id":5,"identifier":"about-us","title":"About us","page_layout":"1column","meta_keywords":"","meta_description":"","content_heading":"About us","content":"
                        \n

                        With more than 230 stores spanning 43 states and growing, Luma is a nationally recognized active wear manufacturer and retailer. We’re passionate about active lifestyles – and it goes way beyond apparel.

                        \n\n

                        At Luma, wellness is a way of life. We don’t believe age, gender or past actions define you, only your ambition and desire for wholeness... today.

                        \n\n

                        We differentiate ourselves through a combination of unique designs and styles merged with unequaled standards of quality and authenticity. Our founders have deep roots in yoga and health communities and our selections serve amateur practitioners and professional athletes alike.

                        \n\n \n
                        \n","creation_time":"2017-11-06 12:17:49","update_time":"2017-11-06 12:17:49","sort_order":"0","layout_update_xml":"","custom_theme":"","custom_root_template":"","custom_layout_update_xml":"","active":true,"type":"cms_page","tsk":1568837746862}} +{"_index":"vue_storefront_catalog_it_cms_page","_type":"_doc","_id":"3","_score":1,"_source":{"store_id":[0],"id":3,"identifier":"enable-cookies","title":"Enable Cookies","page_layout":"1column","content_heading":"What are Cookies?","content":"
                        \r\n

                        \"Cookies\" are little pieces of data we send when you visit our store. Cookies help us get to know you better and personalize your experience. Plus they help protect you and other shoppers from fraud.

                        \r\n

                        Set your browser to accept cookies so you can buy items, save items, and receive customized recommendations. Here’s how:

                        \r\n\r\n
                        ","creation_time":"2017-11-03 08:34:38","update_time":"2017-11-03 08:34:38","sort_order":"0","active":true,"type":"cms_page","tsk":1568837746862}} +{"_index":"vue_storefront_catalog_it_cms_page","_type":"_doc","_id":"2","_score":1,"_source":{"store_id":[0],"id":2,"identifier":"home","title":"Home Page","page_layout":"1column","meta_keywords":"","meta_description":"","content_heading":"Home Page","content":"","creation_time":"2017-11-03 08:34:38","update_time":"2017-11-03 08:34:38","sort_order":"0","layout_update_xml":"","custom_theme":"","custom_root_template":"","custom_layout_update_xml":"","active":true,"type":"cms_page","tsk":1568837746862}} +{"_index":"vue_storefront_catalog_it_cms_page","_type":"_doc","_id":"4","_score":1,"_source":{"store_id":[0],"id":4,"identifier":"privacy-policy-cookie-restriction-mode","title":"Privacy Policy","page_layout":"1column","meta_keywords":"","meta_description":"","content_heading":"Privacy Policy","content":"
                        \n
                        \n

                        This website (\"website\") is operated by Luma Inc., which includes Luma stores, and Luma Private Sales. This privacy policy only covers information collected at this website, and does not cover any information collected offline by Luma. All Luma websites are covered by this privacy policy.

                        \n\n

                        Luma Security

                        \n

                        Personal information provided on the website and online credit card transactions are transmitted through a secure server. We are committed to handling your personal information with high standards of information security. We take appropriate physical, electronic, and administrative steps to maintain the security and accuracy of personally identifiable information we collect, including limiting the number of people who have physical access to our database servers, as well as employing electronic security systems and password protections that guard against unauthorized access.

                        \n\n

                        Our website uses encryption technology, like Secure Sockets Layer (SSL), to protect your personal information during data transport. SSL encrypts ordering information such as your name, address, and credit card number. Our Customer Care center and stores also operate over a private, secure network. Please note that email is not encrypted and is not considered to be a secure means of transmitting credit card information.

                        \n\n

                        Luma Privacy Policy

                        \n

                        To help us achieve our goal of providing the highest quality products and services, we use information from our interactions with you and other customers, as well as from other parties. Because we respect your privacy, we have implemented procedures to ensure that your personal information is handled in a safe, secure, and responsible manner. We have posted this privacy policy in order to explain our information collection practices and the choices you have about the way information is collected and used.

                        \n\n

                        As we continue to develop the Luma website and take advantage of advances in technology to improve the services we offer, this privacy policy likely will change. We therefore encourage you to refer to this policy on an ongoing basis so that you understand our current privacy policy.

                        \n\n

                        The Information We Collect

                        \n

                        Generally, you may browse the Luma website without providing any personally identifiable information. However, we may ask you to provide personally identifiable information at various times and places on this website. In some cases, if you choose not to provide us with the requested information, you may not be able to access all parts of this website or participate in all of its features, pricing, and product selection.

                        \n\n

                        We may collect the following information:

                        \n
                          \n
                        • name
                        • \n
                        • contact information including email address
                        • \n
                        • demographic information such as postcode, preferences and interests
                        • \n
                        • other information relevant to customer surveys and/or offers
                        • \n
                        \n

                        For the exhaustive list of cookies we collect see the List of cookies we collect section. From your purchases and other interactions with us, we obtain information concerning the specific products or services you purchase or use. When you visit this website, our web server automatically collects anonymous information such as log data and IP addresses, and may collect general information concerning your location. We may use the automatically collected information for a number of purposes, such as improving our site design, product assortments, customer service, and special promotions.

                        \n

                        How We Use The Information We Collect

                        \n

                        We require this information to understand your needs and provide you with a better service, and in particular for the following reasons:

                        \n
                          \n
                        • Internal record keeping.
                        • \n
                        • We may use the information to improve our products and services.
                        • \n
                        • We may periodically send promotional emails about new products, special offers or other information which we think you may find interesting using the email address which you have provided.
                        • \n
                        • From time to time, we may also use your information to contact you for market research purposes. We may contact you by email, phone, fax or mail. We may use the information to customize the website according to your interests.
                        • \n
                        \n\n

                        Security

                        \n

                        We are committed to ensuring that your information is secure. In order to prevent unauthorized access or disclosure, we have put in place suitable physical, electronic and managerial procedures to safeguard and secure the information we collect online.

                        \n\n

                        Others With Whom We Share Your Information.

                        \n

                        The Luma Group: All of the above information that we collect, as described above, may be shared among all Luma entities, including Luma Venia and Luma Terra stores, website and Private Sales.

                        \n\n

                        Service Providers: We also may disclose information to outside companies that help us bring you the products and services we offer. For example, we may work with an outside company to: (a) manage a database of customer information; (b) assist us in distributing emails; (c) assist us with direct marketing and data collection; (d) provide us storage and analysis; (d) provide fraud prevention; and (e) provide other services designed to assist us in maximizing our business potential. We require that these outside companies agree to keep confidential all information we share with them and to use the information only to perform their obligations in our agreements with them.

                        \n\n

                        Other Companies: We may provide information to carefully selected outside companies when we believe their products or services may be of interest to you.

                        \n\n

                        Business Transitions: We may transfer or share a copy of personal information about you in the event that Luma or one of its properties, affiliates, or subsidiaries goes through a business transition, such as a merger, being acquired by another company, or selling a portion of its assets. You will be notified via email or prominent notice on our website prior to a change of ownership or control of your personal information, if your personal information will be used contrary to this policy. However, nothing in this Privacy Policy is intended to interfere with the ability of Luma to transfer all or part of its business and/or assets to an affiliate or independent third party at any time, for any purpose, without any limitation whatsoever.

                        \n\n

                        Luma specifically reserves the right to transfer or share a copy of personally identifiable information collected from its websites to the buyer of that portion of its business relating to that information.

                        \n\n

                        Compliance with Law: We may provide access to information when legally required to do so, to cooperate with police investigations or other legal proceedings, to protect against misuse or unauthorized use of our website, to limit our legal liability, and to protect our rights or to protect the rights, property, or safety of visitors of this website or the public.

                        \n\n

                        Luma partners with advertising companies to place our advertising on publisher websites on the Internet. These advertising companies collect anonymous information about your visits to our web site. This technology involves the use of third party cookies that allow them to develop personalized advertising so that it directly relates to offers that may be of interest to you. You may choose to opt-out of this service we have with our third-party advertising partner. We may also use Luma cookies to provide similar enhanced online marketing to you based on your interests and preferences. You may also choose to opt out of these enhanced online marketing ads.

                        \n\n

                        Your Choices Regarding Use Of The Information We Collect

                        \n\n

                        You have several choices regarding our handling of your nonpublic personally identifiable information.

                        \n\n

                        \n Direct Mail or Telephone Marketing: If you shop at the Luma or Private Sales stores and wish to be removed from the list of customers that receive direct mail or telemarketing calls, please either write to Luma Customer Care at 112 West 34th Street, 18th Flr. New York, NY 10120 or call +1 800-403-8838. If you choose to write to us, please include your name, address, and credit card account number (if you have one), and state one of the following:\n

                          \n
                        • \"NO MAIL OFFERS\" (if you don't want to receive offers by mail);
                        • \n
                        • \"NO PHONE OFFERS\" (if you don't want to receive offers by phone);
                        • \n
                        • \"NO PHONE OR MAIL OFFERS\" (if you don't want to receive either).
                        • \n
                        \n

                        \n\n

                        Because customer lists often are prepared well in advance of an offering (sometimes a few months before the offer is made), you may continue to receive some offers after you send us a request not to use your information for specified marketing purposes. We appreciate your patience and understanding in giving us time to carry out your request.

                        \n\n

                        Your California Privacy Rights

                        \n

                        Under California Civil Code sections 1798.83-1798.84, California residents are entitled to ask us for a notice describing what categories of personal customer information we share with third parties or corporate affiliates for those third parties or corporate affiliates' direct marketing purposes. That notice will identify the categories of information shared and will include a list of the third parties and affiliates with which it was shared, along with their names and addresses. If you are a California resident and would like a copy of this notice, please submit a written request to the following address: Luma Customer Care, 112 West 34th Street, 18th Floor, New York, NY 10120. Please allow 30 days for a response.

                        \n\n

                        Cookies, Web Beacons, and How We Use Them

                        \n

                        A cookie is a small file which asks permission to be placed on your computer's hard drive. Once you agree, the file is added and the cookie helps analyze web traffic or lets you know when you visit a particular site. Cookies allow web applications to respond to you as an individual. The web application can tailor its operations to your needs, likes and dislikes by gathering and remembering information about your preferences.

                        \n\n

                        We use traffic log cookies to identify which pages are being used. This helps us analyze data about web page traffic and improve our website in order to tailor it to customer needs. We only use this information for statistical analysis purposes and then the data is removed from the system.

                        \n\n

                        Overall, cookies help us provide you with a better website, by enabling us to monitor which pages you find useful and which you do not. A cookie in no way gives us access to your computer or any information about you, other than the data you choose to share with us. You can choose to accept or decline cookies. Most web browsers automatically accept cookies, but you can usually modify your browser setting to decline cookies if you prefer. This may prevent you from taking full advantage of the website.

                        \n\n

                        A \"web beacon\" or \"pixel tag\" or \"clear gif\" is typically a one-pixel image, used to pass information from your computer or mobile device to a website.

                        \n\n

                        We use cookies and web beacons to keep track of what you have in your shopping cart and to remember you when you return to the website as well as to identify the pages you click on during your visit to our site and the name of the website you visited immediately before clicking to the Luma website. We use this information to improve our site design, product assortments, customer service, and special promotions. You can, of course, disable cookies and web beacons on your computer by indicating this in the preferences or options menus in your browser. However, it is possible that some parts of our website will not operate correctly if you disable cookies. We may also use web beacons, and other technologies, to help track whether our communications are reaching you, to measure their effectiveness, or to collect certain non-personal information about your computer, device, or browser in order to allow us to better design future communications to you.

                        \n\n

                        We may contract with third parties who may use cookies and web beacons and collect information on our behalf or provide services such as credit card processing, shipping, promotional services, or data management. We call them our Customer Care Partners. These third parties are prohibited by our contract with them from sharing that information with anyone other than us or our other Customer Care Partners.

                        \n\n

                        List of cookies we collect

                        \n

                        The table below lists the cookies we collect and the information they store.

                        \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
                        COOKIE nameCOOKIE Description
                        CARTThe association with your shopping cart.
                        CATEGORY_INFOAllows pages to be displayed more quickly.
                        COMPAREThe items that you have in the Compare Products list.
                        CUSTOMERAn encrypted version of your customer id.
                        CUSTOMER_AUTHAn indicator if you are signed into the store.
                        CUSTOMER_INFOAn encrypted version of the customer group you belong to.
                        CUSTOMER_SEGMENT_IDSStores your Customer Segment ID
                        EXTERNAL_NO_CACHEA flag that, indicates whether caching is on or off.
                        FRONTENDYour session ID on the server.
                        GUEST-VIEWAllows guests to edit their orders.
                        LAST_CATEGORYThe last category you visited.
                        LAST_PRODUCTThe last product you looked at.
                        NEWMESSAGEIndicates whether a new message has been received.
                        NO_CACHEIndicates whether it is allowed to use cache.
                        PERSISTENT_SHOPPING_CARTA link to information about your cart and viewing history if you have asked the site.
                        RECENTLYCOMPAREDThe items you recently compared.
                        STFInformation on products you emailed to friends.
                        STOREThe store view or language you have selected.
                        USER_ALLOWED_SAVE_COOKIEIndicates whether a customer authorized cookies.
                        VIEWED_PRODUCT_IDSThe products that you recently looked at.
                        WISHLISTAn encrypted list of products added to your wish list.
                        WISHLIST_CNTThe number of items in your wish list.
                        \n\n

                        Online Account Registration

                        \n

                        To make online shopping faster and easier, you may register on the Luma website. As a registered customer, you only have to enter your shipping addresses and billing information once; they will be securely stored with us for your future use. Using your name and a password of your choice, you may access your account online at any time to add, delete, or change information. If you are using a public computer, we strongly encourage you to Sign Out when you finish shopping. Your information will still be stored with us but it will not be accessible to anyone else from that computer.

                        \n\n

                        Emails

                        \n

                        You will receive promotional emails from us only if you have asked to receive them. If you do not want to receive email from Luma or its affiliates you can click on the \"Unsubscribe\" link at the bottom of any email communication sent by us. Please allow us 3 business days from when the request was received to complete the removal, as some of our promotions may already have been in process before you submitted your request.

                        \n\n

                        Acceptance

                        \n

                        By using this website, you accept the policies set forth in this Privacy Policy.

                        \n\n

                        Questions for Luma?

                        \n

                        Contact Us

                        \n
                        \n \n
                        \n","creation_time":"2017-11-03 08:34:38","update_time":"2017-11-03 08:34:38","sort_order":"0","layout_update_xml":"","custom_theme":"","custom_root_template":"","custom_layout_update_xml":"","active":true,"type":"cms_page","tsk":1568837746862}} diff --git a/var/catalog_it_product.json b/var/catalog_it_product.json new file mode 100644 index 00000000..e5dd97d8 --- /dev/null +++ b/var/catalog_it_product.json @@ -0,0 +1,2026 @@ +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"91","_score":1,"_source":{"id":91,"sku":"MH03-M-Blue","name":"Bruno Compete Hoodie-M-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                        Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                        \n

                        • Full zip black hoodie pullover.
                        • Adjustable drawstring hood.
                        • Ribbed cuffs/waistband.
                        • Kangaroo pocket.
                        • Machine wash/dry.

                        ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bruno-compete-hoodie-m-blue-91","links":{},"stock":{"item_id":91,"product_id":91,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-m-blue-91.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"80","_score":1,"_source":{"id":80,"sku":"MH02-XL-Black","name":"Teton Pullover Hoodie-XL-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                        This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                        \n

                        • Black pullover hoodie.
                        • Soft, brushed interior.
                        • Front hand pockets.
                        • Machine wash/dry.

                        ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"teton-pullover-hoodie-xl-black-80","links":{},"stock":{"item_id":80,"product_id":80,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xl-black-80.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"95","_score":1,"_source":{"id":95,"sku":"MH03-L-Green","name":"Bruno Compete Hoodie-L-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                        Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                        \n

                        • Full zip black hoodie pullover.
                        • Adjustable drawstring hood.
                        • Ribbed cuffs/waistband.
                        • Kangaroo pocket.
                        • Machine wash/dry.

                        ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bruno-compete-hoodie-l-green-95","links":{},"stock":{"item_id":95,"product_id":95,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-l-green-95.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"97","_score":1,"_source":{"id":97,"sku":"MH03-XL-Blue","name":"Bruno Compete Hoodie-XL-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                        Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                        \n

                        • Full zip black hoodie pullover.
                        • Adjustable drawstring hood.
                        • Ribbed cuffs/waistband.
                        • Kangaroo pocket.
                        • Machine wash/dry.

                        ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bruno-compete-hoodie-xl-blue-97","links":{},"stock":{"item_id":97,"product_id":97,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xl-blue-97.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"94","_score":1,"_source":{"id":94,"sku":"MH03-L-Blue","name":"Bruno Compete Hoodie-L-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                        Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                        \n

                        • Full zip black hoodie pullover.
                        • Adjustable drawstring hood.
                        • Ribbed cuffs/waistband.
                        • Kangaroo pocket.
                        • Machine wash/dry.

                        ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bruno-compete-hoodie-l-blue-94","links":{},"stock":{"item_id":94,"product_id":94,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-l-blue-94.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"67","_score":1,"_source":{"id":67,"sku":"MH01","name":"Chaz Kangeroo Hoodie","attribute_set_id":9,"price":52,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                        Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                        \n

                        • Two-tone gray heather hoodie.
                        • Drawstring-adjustable hood.
                        • Machine wash/dry.

                        ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"chaz-kangeroo-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"159","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","pattern":"195","climate":[202,204,205,208,210],"slug":"chaz-kangeroo-hoodie-67","links":{},"stock":{"item_id":67,"product_id":67,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH01-XS-Black","id":52,"status":1,"name":"Chaz Kangeroo Hoodie-XS-Black","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"49","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","url_key":"chaz-kangeroo-hoodie-xs-black","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-XS-Gray","id":53,"status":1,"name":"Chaz Kangeroo Hoodie-XS-Gray","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"52","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","url_key":"chaz-kangeroo-hoodie-xs-gray","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-XS-Orange","id":54,"status":1,"name":"Chaz Kangeroo Hoodie-XS-Orange","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"56","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","url_key":"chaz-kangeroo-hoodie-xs-orange","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-S-Black","id":55,"status":1,"name":"Chaz Kangeroo Hoodie-S-Black","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"49","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","url_key":"chaz-kangeroo-hoodie-s-black","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-S-Gray","id":56,"status":1,"name":"Chaz Kangeroo Hoodie-S-Gray","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"52","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","url_key":"chaz-kangeroo-hoodie-s-gray","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-S-Orange","id":57,"status":1,"name":"Chaz Kangeroo Hoodie-S-Orange","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"56","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","url_key":"chaz-kangeroo-hoodie-s-orange","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-M-Black","id":58,"status":1,"name":"Chaz Kangeroo Hoodie-M-Black","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"49","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","url_key":"chaz-kangeroo-hoodie-m-black","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-M-Gray","id":59,"status":1,"name":"Chaz Kangeroo Hoodie-M-Gray","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"52","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","url_key":"chaz-kangeroo-hoodie-m-gray","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-M-Orange","id":60,"status":1,"name":"Chaz Kangeroo Hoodie-M-Orange","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"56","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","url_key":"chaz-kangeroo-hoodie-m-orange","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-L-Black","id":61,"status":1,"name":"Chaz Kangeroo Hoodie-L-Black","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"49","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","url_key":"chaz-kangeroo-hoodie-l-black","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-L-Gray","id":62,"status":1,"name":"Chaz Kangeroo Hoodie-L-Gray","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"52","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","url_key":"chaz-kangeroo-hoodie-l-gray","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-L-Orange","id":63,"status":1,"name":"Chaz Kangeroo Hoodie-L-Orange","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"56","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","url_key":"chaz-kangeroo-hoodie-l-orange","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-XL-Black","id":64,"status":1,"name":"Chaz Kangeroo Hoodie-XL-Black","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"49","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","url_key":"chaz-kangeroo-hoodie-xl-black","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-XL-Gray","id":65,"status":1,"name":"Chaz Kangeroo Hoodie-XL-Gray","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"52","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","url_key":"chaz-kangeroo-hoodie-xl-gray","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH01-XL-Orange","id":66,"status":1,"name":"Chaz Kangeroo Hoodie-XL-Orange","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"56","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","url_key":"chaz-kangeroo-hoodie-xl-orange","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52}],"configurable_options":[{"id":3,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"}],"product_id":67,"attribute_code":"color"},{"id":2,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":67,"attribute_code":"size"}],"color_options":[49,52,56],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-67.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"83","_score":1,"_source":{"id":83,"sku":"MH02","name":"Teton Pullover Hoodie","attribute_set_id":9,"price":70,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                        This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                        \n

                        • Black pullover hoodie.
                        • Soft, brushed interior.
                        • Front hand pockets.
                        • Machine wash/dry.

                        ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"teton-pullover-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,145,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","pattern":"197","climate":[202,204,205,208,210],"slug":"teton-pullover-hoodie-83","links":{},"stock":{"item_id":83,"product_id":83,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH02-XS-Black","id":68,"status":1,"name":"Teton Pullover Hoodie-XS-Black","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"49","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","url_key":"teton-pullover-hoodie-xs-black","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-XS-Purple","id":69,"status":1,"name":"Teton Pullover Hoodie-XS-Purple","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"57","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","url_key":"teton-pullover-hoodie-xs-purple","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-XS-Red","id":70,"status":1,"name":"Teton Pullover Hoodie-XS-Red","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","url_key":"teton-pullover-hoodie-xs-red","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-S-Black","id":71,"status":1,"name":"Teton Pullover Hoodie-S-Black","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"49","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","url_key":"teton-pullover-hoodie-s-black","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-S-Purple","id":72,"status":1,"name":"Teton Pullover Hoodie-S-Purple","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"57","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","url_key":"teton-pullover-hoodie-s-purple","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-S-Red","id":73,"status":1,"name":"Teton Pullover Hoodie-S-Red","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","url_key":"teton-pullover-hoodie-s-red","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-M-Black","id":74,"status":1,"name":"Teton Pullover Hoodie-M-Black","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"49","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","url_key":"teton-pullover-hoodie-m-black","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-M-Purple","id":75,"status":1,"name":"Teton Pullover Hoodie-M-Purple","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"57","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","url_key":"teton-pullover-hoodie-m-purple","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-M-Red","id":76,"status":1,"name":"Teton Pullover Hoodie-M-Red","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","url_key":"teton-pullover-hoodie-m-red","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-L-Black","id":77,"status":1,"name":"Teton Pullover Hoodie-L-Black","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"49","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","url_key":"teton-pullover-hoodie-l-black","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-L-Purple","id":78,"status":1,"name":"Teton Pullover Hoodie-L-Purple","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"57","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","url_key":"teton-pullover-hoodie-l-purple","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-L-Red","id":79,"status":1,"name":"Teton Pullover Hoodie-L-Red","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","url_key":"teton-pullover-hoodie-l-red","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-XL-Black","id":80,"status":1,"name":"Teton Pullover Hoodie-XL-Black","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"49","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","url_key":"teton-pullover-hoodie-xl-black","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-XL-Purple","id":81,"status":1,"name":"Teton Pullover Hoodie-XL-Purple","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"57","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","url_key":"teton-pullover-hoodie-xl-purple","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70},{"sku":"MH02-XL-Red","id":82,"status":1,"name":"Teton Pullover Hoodie-XL-Red","price":70,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","url_key":"teton-pullover-hoodie-xl-red","msrp_display_actual_price_type":"0","final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70}],"configurable_options":[{"id":5,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":83,"attribute_code":"color"},{"id":4,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":83,"attribute_code":"size"}],"color_options":[49,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-83.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"99","_score":1,"_source":{"id":99,"sku":"MH03","name":"Bruno Compete Hoodie","attribute_set_id":9,"price":63,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                        Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                        \n

                        • Full zip black hoodie pullover.
                        • Adjustable drawstring hood.
                        • Ribbed cuffs/waistband.
                        • Kangaroo pocket.
                        • Machine wash/dry.

                        ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"bruno-compete-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","pattern":"197","climate":[202,204,205,208,210],"slug":"bruno-compete-hoodie-99","links":{},"stock":{"item_id":99,"product_id":99,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH03-XS-Black","id":84,"status":1,"name":"Bruno Compete Hoodie-XS-Black","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"49","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","url_key":"bruno-compete-hoodie-xs-black","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-XS-Blue","id":85,"status":1,"name":"Bruno Compete Hoodie-XS-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"50","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","url_key":"bruno-compete-hoodie-xs-blue","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-XS-Green","id":86,"status":1,"name":"Bruno Compete Hoodie-XS-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"53","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","url_key":"bruno-compete-hoodie-xs-green","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-S-Black","id":87,"status":1,"name":"Bruno Compete Hoodie-S-Black","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"49","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","url_key":"bruno-compete-hoodie-s-black","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-S-Blue","id":88,"status":1,"name":"Bruno Compete Hoodie-S-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"50","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","url_key":"bruno-compete-hoodie-s-blue","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-S-Green","id":89,"status":1,"name":"Bruno Compete Hoodie-S-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"53","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","url_key":"bruno-compete-hoodie-s-green","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-M-Black","id":90,"status":1,"name":"Bruno Compete Hoodie-M-Black","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"49","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","url_key":"bruno-compete-hoodie-m-black","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-M-Blue","id":91,"status":1,"name":"Bruno Compete Hoodie-M-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"50","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","url_key":"bruno-compete-hoodie-m-blue","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-M-Green","id":92,"status":1,"name":"Bruno Compete Hoodie-M-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"53","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","url_key":"bruno-compete-hoodie-m-green","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-L-Black","id":93,"status":1,"name":"Bruno Compete Hoodie-L-Black","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"49","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","url_key":"bruno-compete-hoodie-l-black","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-L-Blue","id":94,"status":1,"name":"Bruno Compete Hoodie-L-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"50","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","url_key":"bruno-compete-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-L-Green","id":95,"status":1,"name":"Bruno Compete Hoodie-L-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"53","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","url_key":"bruno-compete-hoodie-l-green","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-XL-Black","id":96,"status":1,"name":"Bruno Compete Hoodie-XL-Black","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"49","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","url_key":"bruno-compete-hoodie-xl-black","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-XL-Blue","id":97,"status":1,"name":"Bruno Compete Hoodie-XL-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"50","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","url_key":"bruno-compete-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63},{"sku":"MH03-XL-Green","id":98,"status":1,"name":"Bruno Compete Hoodie-XL-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"53","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","url_key":"bruno-compete-hoodie-xl-green","msrp_display_actual_price_type":"0","final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63}],"configurable_options":[{"id":7,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":99,"attribute_code":"color"},{"id":6,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":99,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-99.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"14","_score":1,"_source":{"id":14,"sku":"24-WB04","name":"Push It Messenger Bag - tier price","attribute_set_id":15,"price":45,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:26","updated_at":"2018-08-22 09:27:59","product_links":[],"tier_prices":[{"customer_group_id":1,"qty":1,"value":35,"extension_attributes":{"website_id":0}}],"custom_attributes":null,"description":"

                        The name says so, but the Push It Messenger Bag is much more than a busy commuter's tote. It's a closet away from home when you're pedaling from class or work to gym and back or home again. It's the perfect size and shape for laptop, folded clothes, even extra shoes.

                        \r\n
                          \r\n
                        • Adjustable crossbody strap.
                        • \r\n
                        • Top handle.
                        • \r\n
                        • Zippered interior pocket.
                        • \r\n
                        • Secure clip closures.
                        • \r\n
                        • Durable fabric construction.
                        • \r\n
                        ","image":"/w/b/wb04-blue-0.jpg","small_image":"/w/b/wb04-blue-0.jpg","thumbnail":"/w/b/wb04-blue-0.jpg","color":"49","category_ids":[3,7,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"push-it-messenger-bag","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[20,23,8],"style_bags":[27,28],"material":[37,38],"strap_bags":[61,62,63,65,66,67],"features_bags":[74,75,78,79],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","slug":"push-it-messenger-bag-tier-price-14","links":{},"stock":{"item_id":14,"product_id":14,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-07-31 17:04:19","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/b/wb04-blue-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/equipaggiamento-3/push-it-messenger-bag-tier-price-14.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"48","_score":1,"_source":{"id":48,"sku":"240-LV06","name":"Yoga Adventure","attribute_set_id":14,"price":22,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:33","updated_at":"2019-03-22 09:14:31","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":15,"max_price":15,"max_regular_price":15,"minimal_regular_price":15,"special_price":"15.0000","minimal_price":15,"regular_price":22,"description":"

                        Luma presents an innovative power vinyasa yoga class for intermediate and advanced practitioners. The video allows you to pace yourself, but more intense work yields longer rest. This class is great for more advanced students looking to learn proper alignment in their yoga practice.

                        \r\n
                          \r\n
                        • Includes a breakdown of 12 different postures.
                        • \r\n
                        • Chataranga Dandasana and prayer twist.
                        • \r\n
                        • Challenging posture (side crow).
                        • \r\n
                        • 55 minutes of movement.
                        • \r\n
                        ","short_description":"

                        \r\nThe practices on this downloadable training video are recommended only for experienced to advanced students. Those with the fundamental skills needed won't want to miss the insight and advice from world-renowned trainer Erin Renny in these exclusive Luma guided yoga sessions. Complete body, arm balance and leg strength workouts engage, strengthen and increase mobility.\r\n

                        ","special_from_date":"2019-03-22 00:00:00","image":"/l/t/lt03.jpg","small_image":"/l/t/lt03.jpg","thumbnail":"/l/t/lt03.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"yoga-adventure","msrp_display_actual_price_type":"0","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","gift_message_available":"0","tax_class_id":"2","activity":[8,16],"format":"102","slug":"yoga-adventure-48","links":{},"stock":{"item_id":48,"product_id":48,"stock_id":1,"qty":2,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/t/lt03.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":9,"name":"Training","slug":"training-9","path":"training/training-9"},{"category_id":10,"name":"Video Download","slug":"video-download-10","path":"training/training-video/video-download-10"}],"url_path":"training/training-9/yoga-adventure-48.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"49","_score":1,"_source":{"id":49,"sku":"240-LV07","name":"Solo Power Circuit","attribute_set_id":14,"price":14,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:33","updated_at":"2017-11-06 12:16:33","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":14,"max_price":14,"max_regular_price":14,"minimal_regular_price":14,"special_price":null,"minimal_price":14,"regular_price":14,"description":"

                        Circuit training helps banish the boredom of traditional workouts. The Solo Power Circuit download lets you experience Luma's maximum efficiency circuit training in the training time you have available. Learn secrets to shed pounds, decrease body fat, sculpt amazing abs, and tone to reshape your entire body. You'll feel the difference after just one circuit.

                        \n
                          \n
                        • Targets abs, arms and legs.
                        • \n
                        • 6 fun interval training circuits.
                        • \n
                        • Easy to follow.
                        • \n
                        • No special equipment needed.
                        • \n
                        • 43 minutes.
                        • \n
                        ","short_description":"

                        \nMany contemporary exercise trends sacrifice form and precision in favor of reps and \"PR\" goals. Luma's Solo Power Circuit teaches techniques to keep you safe. But don't think you'll get off easily: when it comes to building muscle and burning fat, these routines won't disappoint. A fusion of circuit training, yoga, Pilates and running, Solo Power Circuit brings out your sweatiest best.\n

                        ","image":"/l/t/lt04.jpg","small_image":"/l/t/lt04.jpg","thumbnail":"/l/t/lt04.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"solo-power-circuit","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","tax_class_id":"2","activity":[16,17,11],"format":"102","slug":"solo-power-circuit-49","links":{},"stock":{"item_id":49,"product_id":49,"stock_id":1,"qty":null,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/t/lt04.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":9,"name":"Training","slug":"training-9","path":"training/training-9"},{"category_id":10,"name":"Video Download","slug":"video-download-10","path":"training/training-video/video-download-10"}],"url_path":"training/training-9/solo-power-circuit-49.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"50","_score":1,"_source":{"id":50,"sku":"240-LV08","name":"Advanced Pilates & Yoga (Strength)","attribute_set_id":14,"price":18,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:34","updated_at":"2017-11-06 12:16:34","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                        Advanced Pilates & Yoga will help you to increase your flexibility and tone core muscle groups through an invigorating workout for your whole body. The Pilates workout is a thorough strength-conditioning session that boosts flexibility, endurance and posture. The Yoga workout incorporates legacy and new poses into one continuous routine that will leave you feeling exhausted and fulfilled at once.

                        \n
                          \n
                        • Pilates-Yoga fusion.
                        • \n
                        • Breathing warmup and cooldown.
                        • \n
                        • Hour-long session.
                        • \n
                        • High-definition video.
                        • \n
                            ","short_description":"

                            \nNo equipment needed. Advanced Pilates & Yoga (Strength) is a muscle-defining program that employs balance, cardio and flexibility movements with plyometric and body-weight based exercises for an all-around, physically challenging workout. The Pilates elements of this compilation bring gentle resistance principals into the routines, emphasizing safety, technique and range of motion.\n

                            ","image":"/l/t/lt05.jpg","small_image":"/l/t/lt05.jpg","thumbnail":"/l/t/lt05.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"advanced-pilates-yoga-strength","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","tax_class_id":"2","activity":[8,16,11],"format":"102","slug":"advanced-pilates-and-yoga-strength-50","links":{},"stock":{"item_id":50,"product_id":50,"stock_id":1,"qty":null,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/t/lt05.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":9,"name":"Training","slug":"training-9","path":"training/training-9"},{"category_id":10,"name":"Video Download","slug":"video-download-10","path":"training/training-video/video-download-10"}],"url_path":"training/training-9/advanced-pilates-and-yoga-strength-50.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"37","_score":1,"_source":{"id":37,"sku":"24-MG01","name":"Endurance Watch","attribute_set_id":11,"price":49,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            It's easy to track and monitor your training progress with the Endurance Watch. You'll see standard info like time, date and day of the week, but it also functions for the serious high-mileage athete: lap counter, stopwatch, distance, heart rate, speed/pace, cadence and altitude.

                            \n
                              \n
                            • Digital display.
                            • \n
                            • LED backlight.
                            • \n
                            • Strap fits 7\" to 10\".
                            • \n
                            • 1-year limited warranty.
                            • \n
                            • Comes with polished metal case.
                            • \n
                            ","image":"/m/g/mg01-bk-0.jpg","small_image":"/m/g/mg01-bk-0.jpg","thumbnail":"/m/g/mg01-bk-0.jpg","category_ids":[3,6],"options_container":"container2","required_options":"0","has_options":"0","url_key":"endurance-watch","tax_class_id":"2","activity":[9,16],"material":[43,45,48],"gender":"80","category_gear":[86,87,90],"slug":"endurance-watch-37","links":{},"stock":{"item_id":37,"product_id":37,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/g/mg01-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"}],"url_path":"gear/equipaggiamento-3/endurance-watch-37.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"46","_score":1,"_source":{"id":46,"sku":"240-LV04","name":"Beginner's Yoga","attribute_set_id":14,"price":6,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:32","updated_at":"2017-11-06 12:16:32","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":6,"max_price":6,"max_regular_price":6,"minimal_regular_price":6,"special_price":null,"minimal_price":6,"regular_price":6,"description":"

                            Beginner's Yoga starts you down the path toward strength, balance and mental focus. With this video download, you don't have to be a great athlete or gym guru to learn the best and most basic techniques for lifelong yoga foundation.

                            \n
                              \n
                            • Video download
                            • \n
                            • Five workouts.
                            • \n
                            • Balance, strength and endurance.
                            • \n
                            • Flexibility and core strength.
                            • \n
                            • Includes modification for novices.
                            • \n
                            ","short_description":"

                            \nThe most difficult yoga poses to master are the ones learned incorrectly as a beginner. Luma's Beginner's Yoga is a fantastic way to break into your initial yoga session and begin the journey to a longer, leaner, healthier body. Confidently find your way into yoga with this effective yet gentle program. You'll learn proper alignment and how to sidestep common mistakes.\n

                            ","image":"/l/t/lt01.jpg","small_image":"/l/t/lt01.jpg","thumbnail":"/l/t/lt01.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beginner-s-yoga","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","tax_class_id":"2","activity":[8,16,17,5,11],"format":"102","slug":"beginners-yoga-46","links":{},"stock":{"item_id":46,"product_id":46,"stock_id":1,"qty":null,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/t/lt01.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":9,"name":"Training","slug":"training-9","path":"training/training-9"},{"category_id":10,"name":"Video Download","slug":"video-download-10","path":"training/training-video/video-download-10"}],"url_path":"training/training-9/beginners-yoga-46.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"47","_score":1,"_source":{"id":47,"sku":"240-LV05","name":"LifeLong Fitness IV","attribute_set_id":14,"price":14,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:33","updated_at":"2017-11-06 12:16:33","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":14,"max_price":14,"max_regular_price":14,"minimal_regular_price":14,"special_price":null,"minimal_price":14,"regular_price":14,"description":"

                            Luma LifeLong Fitness Series is a world recognized, evidence based exercise program designed specifically for individuals focused on staying active their whole lives. If followed regularly, participants will see improved heart rate and blood pressure, increased mobility, reduced joint pain and overall improvement in functional fitness and health.\n

                              \n
                            • 10 minute warm up.
                            • \n
                            • 30 minutes of mild aerobics.
                            • \n
                            • 20 minutes of strength, stretch and balance.
                            • \n
                            • Extensive modifications for varying fitness levels.
                            • \n
                            ","short_description":"

                            \nThe instructors and routines featured in LifeLong Fitness IV provide safe options to serve all types of physical conditions and abilities. Range of motion, body awareness and breathing practices are essential tools of yogic self-care, essential for maintaining alertness, health, and dignity over a lifetime. The LifeLong Fitness series acknowledges that as we age, the safety and sustainability of our exercise become as important as pushing our limits.\n

                            ","image":"/l/t/lt02.jpg","small_image":"/l/t/lt02.jpg","thumbnail":"/l/t/lt02.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lifelong-fitness-iv","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","tax_class_id":"2","activity":[16,17,5,11],"format":"102","slug":"lifelong-fitness-iv-47","links":{},"stock":{"item_id":47,"product_id":47,"stock_id":1,"qty":null,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/t/lt02.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":9,"name":"Training","slug":"training-9","path":"training/training-9"},{"category_id":10,"name":"Video Download","slug":"video-download-10","path":"training/training-video/video-download-10"}],"url_path":"training/training-9/lifelong-fitness-iv-47.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"44","_score":1,"_source":{"id":44,"sku":"24-WG02","name":"Didi Sport Watch","attribute_set_id":11,"price":92,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            The Didi Sport Watch helps you keep your workout plan down to the second. The vertical, digital face looks sleek and futuristic. This watch is programmed with tons of helpful features such as a timer, an alarm clock, a pedometer, and more to help make your excercise more productive.

                            \n
                              \n
                            • Digital display.
                            • \n
                            • LED backlight.
                            • \n
                            • Rubber strap with buckle clasp.
                            • \n
                            • 1-year limited warranty.
                            • \n
                            ","image":"/w/g/wg02-bk-0.jpg","small_image":"/w/g/wg02-bk-0.jpg","thumbnail":"/w/g/wg02-bk-0.jpg","category_ids":[3,7,6,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"didi-sport-watch","tax_class_id":"2","activity":[16,11],"material":[43,45,48],"gender":"81","category_gear":[86,87,90],"new":"1","slug":"didi-sport-watch-44","links":{},"stock":{"item_id":44,"product_id":44,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-02-07 19:23:59","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/g/wg02-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":6,"name":"Watches","slug":"watches-6","path":"gear/watches/watches-6"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/equipaggiamento-3/didi-sport-watch-44.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"45","_score":1,"_source":{"id":45,"sku":"24-WG080","name":"Sprite Yoga Companion Kit","attribute_set_id":11,"price":0,"status":1,"visibility":4,"type_id":"bundle","created_at":"2017-11-06 12:16:31","updated_at":"2019-07-05 12:02:07","weight":0,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":133,"max_regular_price":133,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                            A well-rounded yoga workout takes more than a mat. The Sprite Yoga Companion Kit helps stock your studio with the basics you need for a full-range workout. The kit is composed of four best-selling Luma Sprite accessories in one easy bundle: statis ball, foam block, yoga strap, and foam roller. Choose sizes and colors and leave the rest to us. The kit includes:

                            \r\n
                              \r\n
                            • Sprite Statis Ball\r\n
                            • Sprite Foam Yoga Brick\r\n
                            • Sprite Yoga Strap\r\n
                            • Sprite Foam Roller\r\n
                            ","image":"/l/u/luma-yoga-kit-2.jpg","small_image":"/l/u/luma-yoga-kit-2.jpg","thumbnail":"/l/u/luma-yoga-kit-2.jpg","category_ids":[3,5],"options_container":"container2","required_options":"1","has_options":"1","url_key":"sprite-yoga-companion-kit","msrp_display_actual_price_type":"0","price_type":"0","sku_type":"0","weight_type":"0","price_view":"0","shipment_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[8,11],"gender":[80,81,84],"category_gear":"87","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"sprite-yoga-companion-kit-45","links":{},"stock":{"item_id":45,"product_id":45,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-yoga-kit-2.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"bundle_options":[{"option_id":1,"title":"Sprite Stasis Ball","required":true,"type":"radio","position":1,"sku":"24-WG080","product_links":[{"id":"1","sku":"24-WG081-blue","option_id":1,"qty":2,"position":1,"is_default":true,"price":null,"price_type":null,"can_change_quantity":1},{"id":"2","sku":"24-WG082-blue","option_id":1,"qty":1,"position":2,"is_default":false,"price":null,"price_type":null,"can_change_quantity":1},{"id":"3","sku":"24-WG083-blue","option_id":1,"qty":1,"position":3,"is_default":false,"price":null,"price_type":null,"can_change_quantity":1}]},{"option_id":2,"title":"Sprite Foam Yoga Brick","required":true,"type":"radio","position":2,"sku":"24-WG080","product_links":[{"id":"4","sku":"24-WG084","option_id":2,"qty":1,"position":1,"is_default":true,"price":null,"price_type":null,"can_change_quantity":1}]},{"option_id":3,"title":"Sprite Yoga Strap","required":true,"type":"radio","position":3,"sku":"24-WG080","product_links":[{"id":"5","sku":"24-WG085","option_id":3,"qty":1,"position":1,"is_default":true,"price":null,"price_type":null,"can_change_quantity":1},{"id":"6","sku":"24-WG086","option_id":3,"qty":2,"position":2,"is_default":false,"price":null,"price_type":null,"can_change_quantity":1},{"id":"7","sku":"24-WG087","option_id":3,"qty":3,"position":3,"is_default":false,"price":null,"price_type":null,"can_change_quantity":1}]},{"option_id":4,"title":"Sprite Foam Roller","required":true,"type":"radio","position":4,"sku":"24-WG080","product_links":[{"id":"8","sku":"24-WG088","option_id":4,"qty":1,"position":1,"is_default":true,"price":null,"price_type":null,"can_change_quantity":1}]}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-yoga-companion-kit-45.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"12","_score":1,"_source":{"id":12,"sku":"24-WB03","name":"Driven Backpack","attribute_set_id":15,"price":36,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:25","updated_at":"2017-11-06 12:16:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":36,"max_price":36,"max_regular_price":36,"minimal_regular_price":36,"special_price":null,"minimal_price":36,"regular_price":36,"description":"

                            School books, camp gear and yoga clothes get along just fine in the all-purpose Driven Backpack. Crafted with tough polyester ripstop fabric, it's outfitted with rubberized end panels and padded, adjustable shoulder straps. The roomy main compartment features molded foam pockets that host everything you need.

                            \n
                              \n
                            • Large main and small zip compartments.
                            • \n
                            • Adjustable, padded straps.
                            • \n
                            • Interior foam pockets.
                            • \n
                            • Exterior zip compartment.
                            • \n
                            • Left sport bottle pocket.
                            • \n
                            • Survival gear sold separately.
                            • \n
                            ","image":"/w/b/wb03-purple-0.jpg","small_image":"/w/b/wb03-purple-0.jpg","thumbnail":"/w/b/wb03-purple-0.jpg","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"driven-backpack","tax_class_id":"2","activity":[11,20,8],"style_bags":[24,28,29],"material":[36,37,38],"strap_bags":[61,64,65],"features_bags":[71,72,75,78],"slug":"driven-backpack-12","links":{},"stock":{"item_id":12,"product_id":12,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-purple-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/equipaggiamento-3/driven-backpack-12.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"6","_score":1,"_source":{"id":6,"sku":"24-MB02","name":"Fusion Backpack","attribute_set_id":15,"price":59,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:23","updated_at":"2017-11-06 12:16:23","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            With the Fusion Backpack strapped on, every trek is an adventure - even a bus ride to work. That's partly because two large zippered compartments store everything you need, while a front zippered pocket and side mesh pouches are perfect for stashing those little extras, in case you change your mind and take the day off.

                            \n
                              \n
                            • Durable nylon construction.
                            • \n
                            • 2 main zippered compartments.
                            • \n
                            • 1 exterior zippered pocket.
                            • \n
                            • Mesh side pouches.
                            • \n
                            • Padded, adjustable straps.
                            • \n
                            • Top carry handle.
                            • \n
                            • Dimensions: 18\" x 10\" x 6\".
                            • \n
                            ","image":"/m/b/mb02-gray-0.jpg","small_image":"/m/b/mb02-gray-0.jpg","thumbnail":"/m/b/mb02-gray-0.jpg","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fusion-backpack","tax_class_id":"2","activity":[18,20,8],"style_bags":[24,28],"material":[31,37,38],"strap_bags":[61,64,65],"features_bags":[71,72,74,75],"slug":"fusion-backpack-6","links":{},"stock":{"item_id":6,"product_id":6,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/b/mb02-gray-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null},{"image":"/m/b/mb02-blue-0.jpg","pos":2,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/equipaggiamento-3/fusion-backpack-6.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"5","_score":1,"_source":{"id":5,"sku":"24-MB06","name":"Rival Field Messenger","attribute_set_id":15,"price":2,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:23","updated_at":"2019-05-08 10:18:15","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":2,"max_price":2,"max_regular_price":2,"minimal_regular_price":2,"special_price":null,"minimal_price":2,"regular_price":2,"description":"

                            The Rival Field Messenger packs all your campus, studio or trail essentials inside a unique design of soft, textured leather - with loads of character to spare. Two exterior pockets keep all your smaller items handy, and the roomy interior offers even more space.

                            \r\n
                              \r\n
                            • Leather construction.
                            • \r\n
                            • Adjustable fabric carry strap.
                            • \r\n
                            • Dimensions: 18\" x 10\" x 4\".
                            • \r\n
                            ","image":"/m/b/mb06-gray-0.jpg","small_image":"/m/b/mb06-gray-0.jpg","thumbnail":"/m/b/mb06-gray-0.jpg","color":"49","category_ids":[3,7,4,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rival-field-messenger","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[22,23],"style_bags":[27,28,29],"material":[35,37,41],"strap_bags":[61,62,66,67],"features_bags":[73,75,78],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","slug":"rival-field-messenger-5","links":{},"stock":{"item_id":5,"product_id":5,"stock_id":1,"qty":22,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/b/mb06-gray-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/equipaggiamento-3/rival-field-messenger-5.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"11","_score":1,"_source":{"id":11,"sku":"24-WB06","name":"Endeavor Daytrip Backpack","attribute_set_id":15,"price":33,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:25","updated_at":"2017-11-06 12:16:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33,"max_price":33,"max_regular_price":33,"minimal_regular_price":33,"special_price":"33.0000","minimal_price":33,"regular_price":33,"description":"

                            With more room than it appears, the Endeavor Daytrip Backpack will hold a whole day's worth of books, binders and gym clothes. The spacious main compartment includes a dedicated laptop sleeve. Two other compartments offer extra storage space.

                            \n
                              \n
                            • Foam-padded adjustable shoulder straps.
                            • \n
                            • 900D polyester.
                            • \n
                            • Oversized zippers.
                            • \n
                            • Locker loop.
                            • \n
                            ","special_from_date":"2017-11-06 12:16:25","image":"/w/b/wb06-red-0.jpg","small_image":"/w/b/wb06-red-0.jpg","thumbnail":"/w/b/wb06-red-0.jpg","category_ids":[3,7,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"endeavor-daytrip-backpack","tax_class_id":"2","activity":[11,18,20,23],"style_bags":[24,28],"material":[36,37,38],"strap_bags":[61,64,65],"features_bags":[72,75,77,78,79],"erin_recommends":"1","sale":"1","slug":"endeavor-daytrip-backpack-11","links":{},"stock":{"item_id":11,"product_id":11,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb06-red-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null},{"image":"/w/b/wb06-red-0_alt1.jpg","pos":2,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/equipaggiamento-3/endeavor-daytrip-backpack-11.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"33","_score":1,"_source":{"id":33,"sku":"24-WG085","name":"Sprite Yoga Strap 6 foot- tier price","attribute_set_id":13,"price":14,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2019-07-05 12:06:26","product_links":[],"tier_prices":[{"customer_group_id":1,"qty":1,"value":10,"extension_attributes":{"website_id":0}}],"custom_attributes":null,"final_price":14,"max_price":14,"max_regular_price":14,"minimal_regular_price":14,"special_price":null,"minimal_price":14,"regular_price":14,"description":"

                            The Sprite Yoga Strap is your untiring partner in demanding stretches, holds and alignment routines. The strap's 100% organic cotton fabric is woven tightly to form a soft, textured yet non-slip surface. The plastic clasp buckle is easily adjustable, lightweight and durable under strain.

                            \r\n
                              \r\n
                            • 100% soft and durable cotton.\r\n
                            • Plastic cinch buckle is easy to use.\r\n
                            • Three natural colors made from phthalate and heavy metal free dyes.\r\n
                            ","image":"/l/u/luma-yoga-strap.jpg","small_image":"/l/u/luma-yoga-strap.jpg","thumbnail":"/l/u/luma-yoga-strap.jpg","color":"49","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-yoga-strap-6-foot","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":"8","material":[32,44],"gender":[80,81,84],"category_gear":"87","size":"94","slug":"sprite-yoga-strap-6-foot-tier-price-33","links":{},"stock":{"item_id":33,"product_id":33,"stock_id":1,"qty":39,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-yoga-strap.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-yoga-strap-6-foot-tier-price-33.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"35","_score":1,"_source":{"id":35,"sku":"24-WG087","name":"Sprite Yoga Strap 10 foot","attribute_set_id":13,"price":21,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":21,"max_price":21,"max_regular_price":21,"minimal_regular_price":21,"special_price":null,"minimal_price":21,"regular_price":21,"description":"

                            The Sprite Yoga Strap is your untiring partner in demanding stretches, holds and alignment routines. The strap's 100% organic cotton fabric is woven tightly to form a soft, textured yet non-slip surface. The plastic clasp buckle is easily adjustable, lightweight and durable under strain.

                            \n
                              \n
                            • 10' long x 1.0\" wide.\n
                            • 100% soft and durable cotton.\n
                            • Plastic cinch buckle is easy to use.\n
                            • Three natural colors made from phthalate and heavy metal free dyes.\n
                            ","image":"/l/u/luma-yoga-strap.jpg","small_image":"/l/u/luma-yoga-strap.jpg","thumbnail":"/l/u/luma-yoga-strap.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-yoga-strap-10-foot","tax_class_id":"2","activity":"8","material":[32,44],"gender":[80,81,84],"category_gear":"87","size":"96","slug":"sprite-yoga-strap-10-foot-35","links":{},"stock":{"item_id":35,"product_id":35,"stock_id":1,"qty":2,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-yoga-strap.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-yoga-strap-10-foot-35.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"28","_score":1,"_source":{"id":28,"sku":"24-WG082-pink","name":"Sprite Stasis Ball 65 cm","attribute_set_id":12,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                            \n
                              \n
                            • 65 cm plastic shell.
                            • \n
                            • Durable, burst-resistant design.
                            • \n
                            • Hand pump included.
                            • \n
                            ","image":"/l/u/luma-stability-ball-pink.jpg","small_image":"/l/u/luma-stability-ball-pink.jpg","thumbnail":"/l/u/luma-stability-ball-pink.jpg","color":"58","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-65-cm-pink","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"92","slug":"sprite-stasis-ball-65-cm-28","links":{},"stock":{"item_id":28,"product_id":28,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball-pink.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-stasis-ball-65-cm-28.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"19","_score":1,"_source":{"id":19,"sku":"24-UG05","name":"Go-Get'r Pushup Grips","attribute_set_id":11,"price":19,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2017-11-06 12:16:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":19,"max_price":19,"max_regular_price":19,"minimal_regular_price":19,"special_price":null,"minimal_price":19,"regular_price":19,"description":"

                            The Go-Get'r Pushup Grips safely provide the extra range of motion you need for a deep-dip routine targeting core, shoulder, chest and arm strength. Do fewer pushups using more energy, getting better results faster than the standard floor-level technique yield.

                            \n
                              \n
                            • Durable foam grips.
                            • \n
                            • Supportive base.
                            • \n
                            ","image":"/u/g/ug05-gr-0.jpg","small_image":"/u/g/ug05-gr-0.jpg","thumbnail":"/u/g/ug05-gr-0.jpg","category_ids":[3,7,5,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"go-get-r-pushup-grips","tax_class_id":"2","activity":[16,11],"material":[44,45],"gender":[80,81,84],"category_gear":"87","erin_recommends":"1","new":"1","slug":"go-getr-pushup-grips-19","links":{},"stock":{"item_id":19,"product_id":19,"stock_id":1,"qty":66,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/u/g/ug05-gr-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"}],"url_path":"gear/equipaggiamento-3/go-getr-pushup-grips-19.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2","_score":1,"_source":{"id":2,"sku":"24-MB04","name":"Strive Shoulder Pack","attribute_set_id":15,"price":32,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:22","updated_at":"2017-11-06 12:16:22","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":"32.0000","minimal_price":32,"regular_price":32,"description":"

                            Convenience is next to nothing when your day is crammed with action. So whether you're heading to class, gym, or the unbeaten path, make sure you've got your Strive Shoulder Pack stuffed with all your essentials, and extras as well.

                            \n
                              \n
                            • Zippered main compartment.
                            • \n
                            • Front zippered pocket.
                            • \n
                            • Side mesh pocket.
                            • \n
                            • Cell phone pocket on strap.
                            • \n
                            • Adjustable shoulder strap and top carry handle.
                            • \n
                            ","special_from_date":"2017-11-06 12:16:22","image":"/m/b/mb04-black-0.jpg","small_image":"/m/b/mb04-black-0.jpg","thumbnail":"/m/b/mb04-black-0.jpg","category_ids":[3,7,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strive-shoulder-pack","tax_class_id":"2","activity":[11,21,23,18],"style_bags":[27,29,30],"material":[32,33,36,38],"strap_bags":[61,62,65,66,67],"features_bags":[72,74,75,78],"erin_recommends":"1","sale":"1","slug":"strive-shoulder-pack-2","links":{},"stock":{"item_id":2,"product_id":2,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/b/mb04-black-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null},{"image":"/m/b/mb04-black-0_alt1.jpg","pos":2,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/equipaggiamento-3/strive-shoulder-pack-2.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"23","_score":1,"_source":{"id":23,"sku":"24-UG03","name":"Harmony Lumaflex™ Strength Band Kit ","attribute_set_id":11,"price":22,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            Forget fancy machines and costly memberships - the Harmony Lumaflex™ Stength Band Kit is all you need for an amazing workout. The kit has everything you need for a range of strengthening and toning exercises.

                            \n
                              \n
                            • Three flex bands.
                            • \n
                            • Textured, ergonomic grips.
                            • \n
                            • Adjustable lengths.
                            • \n
                            • Mesh carry bag included.
                            • \n
                            ","image":"/u/g/ug03-bk-0.jpg","small_image":"/u/g/ug03-bk-0.jpg","thumbnail":"/u/g/ug03-bk-0.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"harmony-lumaflex-trade-strength-band-kit","tax_class_id":"2","activity":"11","material":[35,44,45],"gender":[80,81,84],"category_gear":"87","slug":"harmony-lumaflex-and-trade-strength-band-kit-23","links":{},"stock":{"item_id":23,"product_id":23,"stock_id":1,"qty":73,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/u/g/ug03-bk-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/harmony-lumaflex-and-trade-strength-band-kit-23.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"32","_score":1,"_source":{"id":32,"sku":"24-WG083-blue","name":"Sprite Stasis Ball 75 cm","attribute_set_id":12,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                            \n
                              \n
                            • 75 cm plastic shell.
                            • \n
                            • Durable, burst-resistant design.
                            • \n
                            • Hand pump included.
                            • \n
                            ","image":"/l/u/luma-stability-ball.jpg","small_image":"/l/u/luma-stability-ball.jpg","thumbnail":"/l/u/luma-stability-ball.jpg","color":"50","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-75-cm-blue","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"93","slug":"sprite-stasis-ball-75-cm-32","links":{},"stock":{"item_id":32,"product_id":32,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-stasis-ball-75-cm-32.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"31","_score":1,"_source":{"id":31,"sku":"24-WG083-pink","name":"Sprite Stasis Ball 75 cm","attribute_set_id":12,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                            \n
                              \n
                            • 75 cm plastic shell.
                            • \n
                            • Durable, burst-resistant design.
                            • \n
                            • Hand pump included.
                            • \n
                            ","image":"/l/u/luma-stability-ball-pink.jpg","small_image":"/l/u/luma-stability-ball-pink.jpg","thumbnail":"/l/u/luma-stability-ball-pink.jpg","color":"58","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-75-cm-pink","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"93","slug":"sprite-stasis-ball-75-cm-31","links":{},"stock":{"item_id":31,"product_id":31,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball-pink.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-stasis-ball-75-cm-31.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1","_score":1,"_source":{"id":1,"sku":"24-MB01","name":"Joust Duffle Bag","attribute_set_id":15,"price":34,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:20","updated_at":"2019-09-03 13:22:05","product_links":[{"sku":"24-MB01","link_type":"related","linked_product_sku":"24-MB04","linked_product_type":"simple","position":1},{"sku":"24-MB01","link_type":"related","linked_product_sku":"24-MB05","linked_product_type":"simple","position":2},{"sku":"24-MB01","link_type":"related","linked_product_sku":"24-MB03","linked_product_type":"simple","position":3},{"sku":"24-MB01","link_type":"related","linked_product_sku":"24-MB02","linked_product_type":"simple","position":4},{"sku":"24-MB01","link_type":"related","linked_product_sku":"24-MB06","linked_product_type":"simple","position":5}],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":"99.0000","minimal_price":34,"regular_price":34,"description":"

                            The sporty Joust Duffle Bag can't be beat - not in the gym, not on the luggage carousel, not anywhere. Big enough to haul a basketball or soccer ball and some sneakers with plenty of room to spare, it's ideal for athletes with places to go.

                            \r\n
                              \r\n
                            • Dual top handles.
                            • \r\n
                            • Adjustable shoulder strap.
                            • \r\n
                            • Full-length zipper.
                            • \r\n
                            • L 29\" x W 13\" x H 11\".
                            • \r\n
                            ","special_from_date":"2010-06-04 00:00:00","special_to_date":"2019-07-12 00:00:00","image":"/m/b/mb01-blue-0.jpg","small_image":"/m/b/mb01-blue-0.jpg","thumbnail":"/m/b/mb01-blue-0.jpg","color":"49","category_ids":[3,4],"options_container":"container1","required_options":"0","has_options":"0","url_key":"joust-duffle-bag","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"0","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"joust-duffle-bag-1","links":{},"stock":{"item_id":1,"product_id":1,"stock_id":1,"qty":59,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/b/mb01-blue-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/equipaggiamento-3/joust-duffle-bag-1.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"10","_score":1,"_source":{"id":10,"sku":"24-WB05","name":"Savvy Shoulder Tote","attribute_set_id":15,"price":32,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:25","updated_at":"2019-07-12 12:22:49","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":"24.0000","minimal_price":32,"regular_price":32,"description":"

                            Powerwalking to the gym or strolling to the local coffeehouse, the Savvy Shoulder Tote lets you stash your essentials in sporty style! A top-loading compartment provides quick and easy access to larger items, while zippered pockets on the front and side hold cash, credit cards and phone.

                            \r\n
                              \r\n
                            • Water-resistant shell.
                            • \r\n
                            • Water bottle pocket.
                            • \r\n
                            • Padded, articulating shoulder strap.
                            • \r\n
                            • Dimensions: W 21\" x H 15\" x D 10\".
                            • \r\n
                            ","special_from_date":"2017-11-06 00:00:00","special_to_date":"2018-07-11 00:00:00","image":"/w/b/wb05-red-0.jpg","small_image":"/w/b/wb05-red-0.jpg","thumbnail":"/w/b/wb05-red-0.jpg","color":"49","category_ids":[3,7,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"savvy-shoulder-tote","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[11,8],"style_bags":[29,30],"strap_bags":[61,62,66,67],"features_bags":[72,75],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"1","slug":"savvy-shoulder-tote-10","links":{},"stock":{"item_id":10,"product_id":10,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-red-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":7,"name":"Collections","slug":"collections-7","path":"collections/collections-7"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/equipaggiamento-3/savvy-shoulder-tote-10.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"9","_score":1,"_source":{"id":9,"sku":"24-WB02","name":"Compete Track Tote","attribute_set_id":15,"price":2,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:24","updated_at":"2019-07-12 12:20:12","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":2,"max_price":2,"max_regular_price":2,"minimal_regular_price":2,"special_price":"1.0000","minimal_price":2,"regular_price":2,"description":"

                            The Compete Track Tote holds a host of exercise supplies with ease. Stash your towel, jacket and street shoes inside. Tuck water bottles in easy-access external spaces. Perfect for trips to gym or yoga studio, with dual top handles for convenience to and from.

                            \r\n

                              \r\n
                            • Two-way zippers.
                            • \r\n
                            • Contrast detailing.
                            • \r\n
                            • W 22.0\" x H 17\" x D 10\".
                            • \r\n
                            ","special_from_date":"2015-05-06 00:00:00","special_to_date":"2016-07-12 00:00:00","image":"/w/b/wb02-green-0.jpg","small_image":"/w/b/wb02-green-0.jpg","thumbnail":"/w/b/wb02-green-0.jpg","color":"49","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"compete-track-tote","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[11,20,8],"style_bags":[29,30],"material":[37,38,39],"strap_bags":[61,64,66],"features_bags":[74,75,77],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"compete-track-tote-9","links":{},"stock":{"item_id":9,"product_id":9,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-green-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/equipaggiamento-3/compete-track-tote-9.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"8","_score":1,"_source":{"id":8,"sku":"24-WB01","name":"Voyage Yoga Bag - tier price","attribute_set_id":15,"price":32,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:24","updated_at":"2018-08-22 09:32:35","product_links":[],"tier_prices":[{"customer_group_id":1,"qty":1,"value":15,"extension_attributes":{"website_id":0}}],"custom_attributes":null,"description":"

                            Everything you need for a trip to the gym will fit inside this surprisingly spacious Voyage Yoga Bag. Stock it with a water bottle, change of clothes, pair of shoes, and even a few beauty products. Fits inside a locker and zips shut for security.

                            \r\n
                              \r\n
                            • Slip pocket on front.
                            • \r\n
                            • Contrast piping.
                            • \r\n
                            • Durable nylon construction.
                            • \r\n
                            ","image":"/w/b/wb01-black-0.jpg","small_image":"/w/b/wb01-black-0.jpg","thumbnail":"/w/b/wb01-black-0.jpg","color":"49","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"voyage-yoga-bag","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[11,8],"style_bags":[29,30],"material":[37,38],"strap_bags":[64,66],"features_bags":[74,77,79],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"voyage-yoga-bag-tier-price-8","links":{},"stock":{"item_id":8,"product_id":8,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-08-20 20:22:00","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/b/wb01-black-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/equipaggiamento-3/voyage-yoga-bag-tier-price-8.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"29","_score":1,"_source":{"id":29,"sku":"24-WG082-blue","name":"Sprite Stasis Ball 65 cm","attribute_set_id":12,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                            \n
                              \n
                            • 65 cm plastic shell.
                            • \n
                            • Durable, burst-resistant design.
                            • \n
                            • Hand pump included.
                            • \n
                            ","image":"/l/u/luma-stability-ball.jpg","small_image":"/l/u/luma-stability-ball.jpg","thumbnail":"/l/u/luma-stability-ball.jpg","color":"50","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-65-cm-blue","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"92","slug":"sprite-stasis-ball-65-cm-29","links":{},"stock":{"item_id":29,"product_id":29,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-stasis-ball-65-cm-29.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"7","_score":1,"_source":{"id":7,"sku":"24-UB02","name":"Impulse Duffle","attribute_set_id":15,"price":74,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:24","updated_at":"2017-11-06 12:16:24","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            Good for beach trips, track meets, yoga retreats and more, the Impulse Duffle is the companion you'll want at your side. A large U-shaped opening makes packing a hassle-free affair, while a zippered interior pocket keeps jewelry and other small valuables safely tucked out of sight.

                            \n
                              \n
                            • Wheeled.
                            • \n
                            • Dual carry handles.
                            • \n
                            • Retractable top handle.
                            • \n
                            • W 14\" x H 26\" x D 11\".
                            • \n
                            ","image":"/u/b/ub02-black-0.jpg","small_image":"/u/b/ub02-black-0.jpg","thumbnail":"/u/b/ub02-black-0.jpg","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"impulse-duffle","tax_class_id":"2","activity":[11,19,22],"style_bags":[25,26],"material":[37,38],"strap_bags":[61,64,68],"features_bags":[70,76,79],"slug":"impulse-duffle-7","links":{},"stock":{"item_id":7,"product_id":7,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/u/b/ub02-black-0.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":4,"name":"Bags","slug":"bags-4","path":"gear/bags/bags-4"}],"url_path":"gear/equipaggiamento-3/impulse-duffle-7.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"26","_score":1,"_source":{"id":26,"sku":"24-WG081-blue","name":"Sprite Stasis Ball 55 cm - tier price","attribute_set_id":12,"price":23,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2019-07-05 12:03:25","product_links":[],"tier_prices":[{"customer_group_id":1,"qty":1,"value":15,"extension_attributes":{"website_id":0}}],"custom_attributes":null,"final_price":23,"max_price":23,"max_regular_price":23,"minimal_regular_price":23,"special_price":null,"minimal_price":23,"regular_price":23,"description":"

                            The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                            \r\n
                              \r\n
                            • Durable, burst-resistant design.
                            • \r\n
                            • Hand pump included.
                            • \r\n
                            ","image":"/l/u/luma-stability-ball.jpg","small_image":"/l/u/luma-stability-ball.jpg","thumbnail":"/l/u/luma-stability-ball.jpg","color":"50","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-55-cm-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"91","slug":"sprite-stasis-ball-55-cm-tier-price-26","links":{},"stock":{"item_id":26,"product_id":26,"stock_id":1,"qty":41,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-stasis-ball-55-cm-tier-price-26.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"30","_score":1,"_source":{"id":30,"sku":"24-WG083-gray","name":"Sprite Stasis Ball 75 cm","attribute_set_id":12,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                            \n
                              \n
                            • 75 cm plastic shell.
                            • \n
                            • Durable, burst-resistant design.
                            • \n
                            • Hand pump included.
                            • \n
                            ","image":"/l/u/luma-stability-ball-gray.jpg","small_image":"/l/u/luma-stability-ball-gray.jpg","thumbnail":"/l/u/luma-stability-ball-gray.jpg","color":"52","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-75-cm-gray","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"93","slug":"sprite-stasis-ball-75-cm-30","links":{},"stock":{"item_id":30,"product_id":30,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-stability-ball-gray.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-stasis-ball-75-cm-30.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"34","_score":1,"_source":{"id":34,"sku":"24-WG086","name":"Sprite Yoga Strap 8 foot","attribute_set_id":13,"price":17,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":17,"max_price":17,"max_regular_price":17,"minimal_regular_price":17,"special_price":null,"minimal_price":17,"regular_price":17,"description":"

                            The Sprite Yoga Strap is your untiring partner in demanding stretches, holds and alignment routines. The strap's 100% organic cotton fabric is woven tightly to form a soft, textured yet non-slip surface. The plastic clasp buckle is easily adjustable, lightweight and durable under strain.

                            \n
                              \n
                            • 8' long x 1.0\" wide.\n
                            • 100% soft and durable cotton.\n
                            • Plastic cinch buckle is easy to use.\n
                            • Three natural colors made from phthalate and heavy metal free dyes.\n
                            ","image":"/l/u/luma-yoga-strap.jpg","small_image":"/l/u/luma-yoga-strap.jpg","thumbnail":"/l/u/luma-yoga-strap.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-yoga-strap-8-foot","tax_class_id":"2","activity":"8","material":[32,44],"gender":[80,81,84],"category_gear":"87","size":"95","slug":"sprite-yoga-strap-8-foot-34","links":{},"stock":{"item_id":34,"product_id":34,"stock_id":1,"qty":6,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-yoga-strap.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/sprite-yoga-strap-8-foot-34.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"102","_score":1,"_source":{"id":102,"sku":"MH04-XS-Yellow","name":"Frankie Sweatshirt-XS-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                            \n

                            • Light green crewneck sweatshirt.
                            • Hand pockets.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"frankie-sweatshirt-xs-yellow-102","links":{},"stock":{"item_id":102,"product_id":102,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xs-yellow-102.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"114","_score":1,"_source":{"id":114,"sku":"MH04-XL-Yellow","name":"Frankie Sweatshirt-XL-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                            \n

                            • Light green crewneck sweatshirt.
                            • Hand pockets.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"frankie-sweatshirt-xl-yellow-114","links":{},"stock":{"item_id":114,"product_id":114,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xl-yellow-114.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"101","_score":1,"_source":{"id":101,"sku":"MH04-XS-White","name":"Frankie Sweatshirt-XS-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                            \n

                            • Light green crewneck sweatshirt.
                            • Hand pockets.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"frankie-sweatshirt-xs-white-101","links":{},"stock":{"item_id":101,"product_id":101,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xs-white-101.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"105","_score":1,"_source":{"id":105,"sku":"MH04-S-Yellow","name":"Frankie Sweatshirt-S-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                            \n

                            • Light green crewneck sweatshirt.
                            • Hand pockets.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"frankie-sweatshirt-s-yellow-105","links":{},"stock":{"item_id":105,"product_id":105,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-s-yellow-105.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"108","_score":1,"_source":{"id":108,"sku":"MH04-M-Yellow","name":"Frankie Sweatshirt-M-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                            \n

                            • Light green crewneck sweatshirt.
                            • Hand pockets.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"frankie-sweatshirt-m-yellow-108","links":{},"stock":{"item_id":108,"product_id":108,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-m-yellow-108.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"110","_score":1,"_source":{"id":110,"sku":"MH04-L-White","name":"Frankie Sweatshirt-L-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                            \n

                            • Light green crewneck sweatshirt.
                            • Hand pockets.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"frankie-sweatshirt-l-white-110","links":{},"stock":{"item_id":110,"product_id":110,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-l-white-110.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"117","_score":1,"_source":{"id":117,"sku":"MH05-XS-Red","name":"Hollister Backyard Sweatshirt-XS-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                            \n

                            • Cream crewneck sweatshirt with navy sleeves/trim.
                            • Relaxed fit.
                            • Ribbed cuffs and hem.
                            • Machine wash/dry.

                            ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hollister-backyard-sweatshirt-xs-red-117","links":{},"stock":{"item_id":117,"product_id":117,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xs-red-117.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"92","_score":1,"_source":{"id":92,"sku":"MH03-M-Green","name":"Bruno Compete Hoodie-M-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                            Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                            \n

                            • Full zip black hoodie pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Kangaroo pocket.
                            • Machine wash/dry.

                            ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bruno-compete-hoodie-m-green-92","links":{},"stock":{"item_id":92,"product_id":92,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-m-green-92.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"93","_score":1,"_source":{"id":93,"sku":"MH03-L-Black","name":"Bruno Compete Hoodie-L-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                            Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                            \n

                            • Full zip black hoodie pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Kangaroo pocket.
                            • Machine wash/dry.

                            ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bruno-compete-hoodie-l-black-93","links":{},"stock":{"item_id":93,"product_id":93,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-l-black-93.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"76","_score":1,"_source":{"id":76,"sku":"MH02-M-Red","name":"Teton Pullover Hoodie-M-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                            This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                            \n

                            • Black pullover hoodie.
                            • Soft, brushed interior.
                            • Front hand pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"teton-pullover-hoodie-m-red-76","links":{},"stock":{"item_id":76,"product_id":76,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-m-red-76.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"77","_score":1,"_source":{"id":77,"sku":"MH02-L-Black","name":"Teton Pullover Hoodie-L-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                            This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                            \n

                            • Black pullover hoodie.
                            • Soft, brushed interior.
                            • Front hand pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"teton-pullover-hoodie-l-black-77","links":{},"stock":{"item_id":77,"product_id":77,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-l-black-77.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"90","_score":1,"_source":{"id":90,"sku":"MH03-M-Black","name":"Bruno Compete Hoodie-M-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                            Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                            \n

                            • Full zip black hoodie pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Kangaroo pocket.
                            • Machine wash/dry.

                            ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bruno-compete-hoodie-m-black-90","links":{},"stock":{"item_id":90,"product_id":90,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-m-black-90.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"71","_score":1,"_source":{"id":71,"sku":"MH02-S-Black","name":"Teton Pullover Hoodie-S-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                            This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                            \n

                            • Black pullover hoodie.
                            • Soft, brushed interior.
                            • Front hand pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"teton-pullover-hoodie-s-black-71","links":{},"stock":{"item_id":71,"product_id":71,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-s-black-71.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"57","_score":1,"_source":{"id":57,"sku":"MH01-S-Orange","name":"Chaz Kangeroo Hoodie-S-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                            \n

                            • Two-tone gray heather hoodie.
                            • Drawstring-adjustable hood.
                            • Machine wash/dry.

                            ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chaz-kangeroo-hoodie-s-orange-57","links":{},"stock":{"item_id":57,"product_id":57,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-s-orange-57.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"56","_score":1,"_source":{"id":56,"sku":"MH01-S-Gray","name":"Chaz Kangeroo Hoodie-S-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                            \n

                            • Two-tone gray heather hoodie.
                            • Drawstring-adjustable hood.
                            • Machine wash/dry.

                            ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chaz-kangeroo-hoodie-s-gray-56","links":{},"stock":{"item_id":56,"product_id":56,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-s-gray-56.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"60","_score":1,"_source":{"id":60,"sku":"MH01-M-Orange","name":"Chaz Kangeroo Hoodie-M-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                            \n

                            • Two-tone gray heather hoodie.
                            • Drawstring-adjustable hood.
                            • Machine wash/dry.

                            ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chaz-kangeroo-hoodie-m-orange-60","links":{},"stock":{"item_id":60,"product_id":60,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-m-orange-60.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"106","_score":1,"_source":{"id":106,"sku":"MH04-M-Green","name":"Frankie Sweatshirt-M-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                            \n

                            • Light green crewneck sweatshirt.
                            • Hand pockets.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"frankie-sweatshirt-m-green-106","links":{},"stock":{"item_id":106,"product_id":106,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-m-green-106.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"275","_score":1,"_source":{"id":275,"sku":"MJ01","name":"Beaumont Summit Kit","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                            \n

                            • Yellow full zip rain jacket.
                            • Full-zip front.
                            • Stand-up collar.
                            • Elasticized cuffs.
                            • Machine wash/dry.

                            ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"beaumont-summit-kit","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,148,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[120,121,123,124,126,128,130],"pattern":"197","climate":[204,207,208,210],"slug":"beaumont-summit-kit-275","links":{},"stock":{"item_id":275,"product_id":275,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ01-XS-Orange","id":260,"status":1,"name":"Beaumont Summit Kit-XS-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"56","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","url_key":"beaumont-summit-kit-xs-orange","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-XS-Red","id":261,"status":1,"name":"Beaumont Summit Kit-XS-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"58","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","url_key":"beaumont-summit-kit-xs-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-XS-Yellow","id":262,"status":1,"name":"Beaumont Summit Kit-XS-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"60","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","url_key":"beaumont-summit-kit-xs-yellow","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-S-Orange","id":263,"status":1,"name":"Beaumont Summit Kit-S-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"56","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","url_key":"beaumont-summit-kit-s-orange","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-S-Red","id":264,"status":1,"name":"Beaumont Summit Kit-S-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"58","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","url_key":"beaumont-summit-kit-s-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-S-Yellow","id":265,"status":1,"name":"Beaumont Summit Kit-S-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"60","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","url_key":"beaumont-summit-kit-s-yellow","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-M-Orange","id":266,"status":1,"name":"Beaumont Summit Kit-M-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"56","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","url_key":"beaumont-summit-kit-m-orange","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-M-Red","id":267,"status":1,"name":"Beaumont Summit Kit-M-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"58","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","url_key":"beaumont-summit-kit-m-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-M-Yellow","id":268,"status":1,"name":"Beaumont Summit Kit-M-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"60","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","url_key":"beaumont-summit-kit-m-yellow","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-L-Orange","id":269,"status":1,"name":"Beaumont Summit Kit-L-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"56","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","url_key":"beaumont-summit-kit-l-orange","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-L-Red","id":270,"status":1,"name":"Beaumont Summit Kit-L-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"58","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","url_key":"beaumont-summit-kit-l-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-L-Yellow","id":271,"status":1,"name":"Beaumont Summit Kit-L-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"60","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","url_key":"beaumont-summit-kit-l-yellow","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-XL-Orange","id":272,"status":1,"name":"Beaumont Summit Kit-XL-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"56","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","url_key":"beaumont-summit-kit-xl-orange","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-XL-Red","id":273,"status":1,"name":"Beaumont Summit Kit-XL-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"58","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","url_key":"beaumont-summit-kit-xl-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MJ01-XL-Yellow","id":274,"status":1,"name":"Beaumont Summit Kit-XL-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"60","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","url_key":"beaumont-summit-kit-xl-yellow","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42}],"configurable_options":[{"id":29,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":275,"attribute_code":"color"},{"id":28,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":275,"attribute_code":"size"}],"color_options":[56,58,60],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-275.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"259","_score":1,"_source":{"id":259,"sku":"MH13","name":"Marco Lightweight Active Hoodie","attribute_set_id":9,"price":74,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                            \n

                            • Light blue heather full zip hoodie.
                            • Fitted flatlock seams.
                            • Matching lining and drawstring.
                            • Machine wash/dry.

                            ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"marco-lightweight-active-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,145],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"0","pattern":"197","climate":[202,204,205,208,210],"slug":"marco-lightweight-active-hoodie-259","links":{},"stock":{"item_id":259,"product_id":259,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH13-XS-Blue","id":244,"status":1,"name":"Marco Lightweight Active Hoodie-XS-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"50","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","url_key":"marco-lightweight-active-hoodie-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"MH13-XS-Green","id":245,"status":1,"name":"Marco Lightweight Active Hoodie-XS-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"53","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","url_key":"marco-lightweight-active-hoodie-xs-green","msrp_display_actual_price_type":"0"},{"sku":"MH13-XS-Lavender","id":246,"status":1,"name":"Marco Lightweight Active Hoodie-XS-Lavender","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"54","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","url_key":"marco-lightweight-active-hoodie-xs-lavender","msrp_display_actual_price_type":"0"},{"sku":"MH13-S-Blue","id":247,"status":1,"name":"Marco Lightweight Active Hoodie-S-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"50","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","url_key":"marco-lightweight-active-hoodie-s-blue","msrp_display_actual_price_type":"0"},{"sku":"MH13-S-Green","id":248,"status":1,"name":"Marco Lightweight Active Hoodie-S-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"53","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","url_key":"marco-lightweight-active-hoodie-s-green","msrp_display_actual_price_type":"0"},{"sku":"MH13-S-Lavender","id":249,"status":1,"name":"Marco Lightweight Active Hoodie-S-Lavender","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"54","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","url_key":"marco-lightweight-active-hoodie-s-lavender","msrp_display_actual_price_type":"0"},{"sku":"MH13-M-Blue","id":250,"status":1,"name":"Marco Lightweight Active Hoodie-M-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"50","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","url_key":"marco-lightweight-active-hoodie-m-blue","msrp_display_actual_price_type":"0"},{"sku":"MH13-M-Green","id":251,"status":1,"name":"Marco Lightweight Active Hoodie-M-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"53","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","url_key":"marco-lightweight-active-hoodie-m-green","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MH13-M-Lavender","id":252,"status":1,"name":"Marco Lightweight Active Hoodie-M-Lavender","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"54","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","url_key":"marco-lightweight-active-hoodie-m-lavender","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MH13-L-Blue","id":253,"status":1,"name":"Marco Lightweight Active Hoodie-L-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"50","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","url_key":"marco-lightweight-active-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MH13-L-Green","id":254,"status":1,"name":"Marco Lightweight Active Hoodie-L-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"53","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","url_key":"marco-lightweight-active-hoodie-l-green","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MH13-L-Lavender","id":255,"status":1,"name":"Marco Lightweight Active Hoodie-L-Lavender","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"54","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","url_key":"marco-lightweight-active-hoodie-l-lavender","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MH13-XL-Blue","id":256,"status":1,"name":"Marco Lightweight Active Hoodie-XL-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"50","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","url_key":"marco-lightweight-active-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MH13-XL-Green","id":257,"status":1,"name":"Marco Lightweight Active Hoodie-XL-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"53","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","url_key":"marco-lightweight-active-hoodie-xl-green","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MH13-XL-Lavender","id":258,"status":1,"name":"Marco Lightweight Active Hoodie-XL-Lavender","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"54","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","url_key":"marco-lightweight-active-hoodie-xl-lavender","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74}],"configurable_options":[{"id":27,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":54,"label":"Lavender"}],"product_id":259,"attribute_code":"color"},{"id":26,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":259,"attribute_code":"size"}],"color_options":[50,53,54],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-259.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"291","_score":1,"_source":{"id":291,"sku":"MJ02","name":"Hyperion Elements Jacket","attribute_set_id":9,"price":51,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                            \n

                            • Lime 1/4 zip pullover.
                            • Split pocket.
                            • Thumb holes.
                            • Machine wash/hang to dry.

                            ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hyperion-elements-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,148,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_general":[117,123,124,126,128],"pattern":"197","climate":[204,207,208,210],"slug":"hyperion-elements-jacket-291","links":{},"stock":{"item_id":291,"product_id":291,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ02-XS-Green","id":276,"status":1,"name":"Hyperion Elements Jacket-XS-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"53","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","url_key":"hyperion-elements-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-XS-Orange","id":277,"status":1,"name":"Hyperion Elements Jacket-XS-Orange","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"56","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","url_key":"hyperion-elements-jacket-xs-orange","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-XS-Red","id":278,"status":1,"name":"Hyperion Elements Jacket-XS-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"58","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","url_key":"hyperion-elements-jacket-xs-red","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-S-Green","id":279,"status":1,"name":"Hyperion Elements Jacket-S-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"53","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","url_key":"hyperion-elements-jacket-s-green","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-S-Orange","id":280,"status":1,"name":"Hyperion Elements Jacket-S-Orange","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"56","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","url_key":"hyperion-elements-jacket-s-orange","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-S-Red","id":281,"status":1,"name":"Hyperion Elements Jacket-S-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"58","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","url_key":"hyperion-elements-jacket-s-red","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-M-Green","id":282,"status":1,"name":"Hyperion Elements Jacket-M-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"53","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","url_key":"hyperion-elements-jacket-m-green","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-M-Orange","id":283,"status":1,"name":"Hyperion Elements Jacket-M-Orange","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"56","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","url_key":"hyperion-elements-jacket-m-orange","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-M-Red","id":284,"status":1,"name":"Hyperion Elements Jacket-M-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"58","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","url_key":"hyperion-elements-jacket-m-red","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-L-Green","id":285,"status":1,"name":"Hyperion Elements Jacket-L-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"53","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","url_key":"hyperion-elements-jacket-l-green","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-L-Orange","id":286,"status":1,"name":"Hyperion Elements Jacket-L-Orange","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"56","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","url_key":"hyperion-elements-jacket-l-orange","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-L-Red","id":287,"status":1,"name":"Hyperion Elements Jacket-L-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"58","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","url_key":"hyperion-elements-jacket-l-red","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-XL-Green","id":288,"status":1,"name":"Hyperion Elements Jacket-XL-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"53","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","url_key":"hyperion-elements-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-XL-Orange","id":289,"status":1,"name":"Hyperion Elements Jacket-XL-Orange","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"56","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","url_key":"hyperion-elements-jacket-xl-orange","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MJ02-XL-Red","id":290,"status":1,"name":"Hyperion Elements Jacket-XL-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"58","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","url_key":"hyperion-elements-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51}],"configurable_options":[{"id":31,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":291,"attribute_code":"color"},{"id":30,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":291,"attribute_code":"size"}],"color_options":[53,56,58],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-291.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"310","_score":1,"_source":{"id":310,"sku":"MJ07-XS-Yellow","name":"Orion Two-Tone Fitted Jacket-XS-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                            While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                            \n

                            • Red full zip fleece with gray insets.
                            • Double-knit construction.
                            • Full athletic cut.
                            • Set in sleeves.
                            • Front pouch pocket.

                            ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"orion-two-tone-fitted-jacket-xs-yellow-310","links":{},"stock":{"item_id":310,"product_id":310,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xs-yellow-310.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"309","_score":1,"_source":{"id":309,"sku":"MJ07-XS-Red","name":"Orion Two-Tone Fitted Jacket-XS-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                            While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                            \n

                            • Red full zip fleece with gray insets.
                            • Double-knit construction.
                            • Full athletic cut.
                            • Set in sleeves.
                            • Front pouch pocket.

                            ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"orion-two-tone-fitted-jacket-xs-red-309","links":{},"stock":{"item_id":309,"product_id":309,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xs-red-309.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"321","_score":1,"_source":{"id":321,"sku":"MJ07-XL-Red","name":"Orion Two-Tone Fitted Jacket-XL-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                            While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                            \n

                            • Red full zip fleece with gray insets.
                            • Double-knit construction.
                            • Full athletic cut.
                            • Set in sleeves.
                            • Front pouch pocket.

                            ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"orion-two-tone-fitted-jacket-xl-red-321","links":{},"stock":{"item_id":321,"product_id":321,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xl-red-321.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"301","_score":1,"_source":{"id":301,"sku":"MJ04-L-Black","name":"Kenobi Trail Jacket-L-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                            Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                            \n

                            • Black 1/4 zip pullover with royal zipper.
                            • Adjustable hood and sleeve cuffs.
                            • Machine wash/air dry.

                            ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"kenobi-trail-jacket-l-black-301","links":{},"stock":{"item_id":301,"product_id":301,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-l-black-301.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"305","_score":1,"_source":{"id":305,"sku":"MJ04-XL-Blue","name":"Kenobi Trail Jacket-XL-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                            Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                            \n

                            • Black 1/4 zip pullover with royal zipper.
                            • Adjustable hood and sleeve cuffs.
                            • Machine wash/air dry.

                            ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"kenobi-trail-jacket-xl-blue-305","links":{},"stock":{"item_id":305,"product_id":305,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xl-blue-305.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"308","_score":1,"_source":{"id":308,"sku":"MJ07-XS-Black","name":"Orion Two-Tone Fitted Jacket-XS-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                            While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                            \n

                            • Red full zip fleece with gray insets.
                            • Double-knit construction.
                            • Full athletic cut.
                            • Set in sleeves.
                            • Front pouch pocket.

                            ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"orion-two-tone-fitted-jacket-xs-black-308","links":{},"stock":{"item_id":308,"product_id":308,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xs-black-308.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"302","_score":1,"_source":{"id":302,"sku":"MJ04-L-Blue","name":"Kenobi Trail Jacket-L-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                            Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                            \n

                            • Black 1/4 zip pullover with royal zipper.
                            • Adjustable hood and sleeve cuffs.
                            • Machine wash/air dry.

                            ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"kenobi-trail-jacket-l-blue-302","links":{},"stock":{"item_id":302,"product_id":302,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-l-blue-302.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"315","_score":1,"_source":{"id":315,"sku":"MJ07-M-Red","name":"Orion Two-Tone Fitted Jacket-M-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                            While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                            \n

                            • Red full zip fleece with gray insets.
                            • Double-knit construction.
                            • Full athletic cut.
                            • Set in sleeves.
                            • Front pouch pocket.

                            ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"orion-two-tone-fitted-jacket-m-red-315","links":{},"stock":{"item_id":315,"product_id":315,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-m-red-315.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"320","_score":1,"_source":{"id":320,"sku":"MJ07-XL-Black","name":"Orion Two-Tone Fitted Jacket-XL-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                            While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                            \n

                            • Red full zip fleece with gray insets.
                            • Double-knit construction.
                            • Full athletic cut.
                            • Set in sleeves.
                            • Front pouch pocket.

                            ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"orion-two-tone-fitted-jacket-xl-black-320","links":{},"stock":{"item_id":320,"product_id":320,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xl-black-320.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"314","_score":1,"_source":{"id":314,"sku":"MJ07-M-Black","name":"Orion Two-Tone Fitted Jacket-M-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                            While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                            \n

                            • Red full zip fleece with gray insets.
                            • Double-knit construction.
                            • Full athletic cut.
                            • Set in sleeves.
                            • Front pouch pocket.

                            ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"orion-two-tone-fitted-jacket-m-black-314","links":{},"stock":{"item_id":314,"product_id":314,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-m-black-314.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"317","_score":1,"_source":{"id":317,"sku":"MJ07-L-Black","name":"Orion Two-Tone Fitted Jacket-L-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                            While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                            \n

                            • Red full zip fleece with gray insets.
                            • Double-knit construction.
                            • Full athletic cut.
                            • Set in sleeves.
                            • Front pouch pocket.

                            ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"orion-two-tone-fitted-jacket-l-black-317","links":{},"stock":{"item_id":317,"product_id":317,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-l-black-317.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"313","_score":1,"_source":{"id":313,"sku":"MJ07-S-Yellow","name":"Orion Two-Tone Fitted Jacket-S-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                            While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                            \n

                            • Red full zip fleece with gray insets.
                            • Double-knit construction.
                            • Full athletic cut.
                            • Set in sleeves.
                            • Front pouch pocket.

                            ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"orion-two-tone-fitted-jacket-s-yellow-313","links":{},"stock":{"item_id":313,"product_id":313,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-s-yellow-313.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"322","_score":1,"_source":{"id":322,"sku":"MJ07-XL-Yellow","name":"Orion Two-Tone Fitted Jacket-XL-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                            While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                            \n

                            • Red full zip fleece with gray insets.
                            • Double-knit construction.
                            • Full athletic cut.
                            • Set in sleeves.
                            • Front pouch pocket.

                            ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"orion-two-tone-fitted-jacket-xl-yellow-322","links":{},"stock":{"item_id":322,"product_id":322,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xl-yellow-322.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"311","_score":1,"_source":{"id":311,"sku":"MJ07-S-Black","name":"Orion Two-Tone Fitted Jacket-S-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                            While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                            \n

                            • Red full zip fleece with gray insets.
                            • Double-knit construction.
                            • Full athletic cut.
                            • Set in sleeves.
                            • Front pouch pocket.

                            ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"orion-two-tone-fitted-jacket-s-black-311","links":{},"stock":{"item_id":311,"product_id":311,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-s-black-311.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"312","_score":1,"_source":{"id":312,"sku":"MJ07-S-Red","name":"Orion Two-Tone Fitted Jacket-S-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                            While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                            \n

                            • Red full zip fleece with gray insets.
                            • Double-knit construction.
                            • Full athletic cut.
                            • Set in sleeves.
                            • Front pouch pocket.

                            ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"orion-two-tone-fitted-jacket-s-red-312","links":{},"stock":{"item_id":312,"product_id":312,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-s-red-312.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"303","_score":1,"_source":{"id":303,"sku":"MJ04-L-Purple","name":"Kenobi Trail Jacket-L-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                            Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                            \n

                            • Black 1/4 zip pullover with royal zipper.
                            • Adjustable hood and sleeve cuffs.
                            • Machine wash/air dry.

                            ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"kenobi-trail-jacket-l-purple-303","links":{},"stock":{"item_id":303,"product_id":303,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-l-purple-303.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"318","_score":1,"_source":{"id":318,"sku":"MJ07-L-Red","name":"Orion Two-Tone Fitted Jacket-L-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                            While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                            \n

                            • Red full zip fleece with gray insets.
                            • Double-knit construction.
                            • Full athletic cut.
                            • Set in sleeves.
                            • Front pouch pocket.

                            ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"orion-two-tone-fitted-jacket-l-red-318","links":{},"stock":{"item_id":318,"product_id":318,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-l-red-318.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"325","_score":1,"_source":{"id":325,"sku":"MJ08-XS-Gray","name":"Lando Gym Jacket-XS-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                            The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                            \n

                            • Gray polyester/spandex full zip jacket with orange lining.
                            • Right pocket device storage.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lando-gym-jacket-xs-gray-325","links":{},"stock":{"item_id":325,"product_id":325,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xs-gray-325.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"319","_score":1,"_source":{"id":319,"sku":"MJ07-L-Yellow","name":"Orion Two-Tone Fitted Jacket-L-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                            While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                            \n

                            • Red full zip fleece with gray insets.
                            • Double-knit construction.
                            • Full athletic cut.
                            • Set in sleeves.
                            • Front pouch pocket.

                            ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"orion-two-tone-fitted-jacket-l-yellow-319","links":{},"stock":{"item_id":319,"product_id":319,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-l-yellow-319.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"328","_score":1,"_source":{"id":328,"sku":"MJ08-S-Gray","name":"Lando Gym Jacket-S-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                            The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                            \n

                            • Gray polyester/spandex full zip jacket with orange lining.
                            • Right pocket device storage.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lando-gym-jacket-s-gray-328","links":{},"stock":{"item_id":328,"product_id":328,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-s-gray-328.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"326","_score":1,"_source":{"id":326,"sku":"MJ08-XS-Green","name":"Lando Gym Jacket-XS-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                            The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                            \n

                            • Gray polyester/spandex full zip jacket with orange lining.
                            • Right pocket device storage.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lando-gym-jacket-xs-green-326","links":{},"stock":{"item_id":326,"product_id":326,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xs-green-326.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"330","_score":1,"_source":{"id":330,"sku":"MJ08-M-Blue","name":"Lando Gym Jacket-M-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                            The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                            \n

                            • Gray polyester/spandex full zip jacket with orange lining.
                            • Right pocket device storage.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lando-gym-jacket-m-blue-330","links":{},"stock":{"item_id":330,"product_id":330,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-m-blue-330.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"335","_score":1,"_source":{"id":335,"sku":"MJ08-L-Green","name":"Lando Gym Jacket-L-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                            The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                            \n

                            • Gray polyester/spandex full zip jacket with orange lining.
                            • Right pocket device storage.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lando-gym-jacket-l-green-335","links":{},"stock":{"item_id":335,"product_id":335,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-l-green-335.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"316","_score":1,"_source":{"id":316,"sku":"MJ07-M-Yellow","name":"Orion Two-Tone Fitted Jacket-M-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                            While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                            \n

                            • Red full zip fleece with gray insets.
                            • Double-knit construction.
                            • Full athletic cut.
                            • Set in sleeves.
                            • Front pouch pocket.

                            ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"orion-two-tone-fitted-jacket-m-yellow-316","links":{},"stock":{"item_id":316,"product_id":316,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-m-yellow-316.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"338","_score":1,"_source":{"id":338,"sku":"MJ08-XL-Green","name":"Lando Gym Jacket-XL-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                            The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                            \n

                            • Gray polyester/spandex full zip jacket with orange lining.
                            • Right pocket device storage.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lando-gym-jacket-xl-green-338","links":{},"stock":{"item_id":338,"product_id":338,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xl-green-338.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"332","_score":1,"_source":{"id":332,"sku":"MJ08-M-Green","name":"Lando Gym Jacket-M-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                            The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                            \n

                            • Gray polyester/spandex full zip jacket with orange lining.
                            • Right pocket device storage.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lando-gym-jacket-m-green-332","links":{},"stock":{"item_id":332,"product_id":332,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-m-green-332.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"331","_score":1,"_source":{"id":331,"sku":"MJ08-M-Gray","name":"Lando Gym Jacket-M-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                            The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                            \n

                            • Gray polyester/spandex full zip jacket with orange lining.
                            • Right pocket device storage.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lando-gym-jacket-m-gray-331","links":{},"stock":{"item_id":331,"product_id":331,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-m-gray-331.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"334","_score":1,"_source":{"id":334,"sku":"MJ08-L-Gray","name":"Lando Gym Jacket-L-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                            The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                            \n

                            • Gray polyester/spandex full zip jacket with orange lining.
                            • Right pocket device storage.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lando-gym-jacket-l-gray-334","links":{},"stock":{"item_id":334,"product_id":334,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-l-gray-334.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"306","_score":1,"_source":{"id":306,"sku":"MJ04-XL-Purple","name":"Kenobi Trail Jacket-XL-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                            Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                            \n

                            • Black 1/4 zip pullover with royal zipper.
                            • Adjustable hood and sleeve cuffs.
                            • Machine wash/air dry.

                            ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"kenobi-trail-jacket-xl-purple-306","links":{},"stock":{"item_id":306,"product_id":306,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xl-purple-306.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"336","_score":1,"_source":{"id":336,"sku":"MJ08-XL-Blue","name":"Lando Gym Jacket-XL-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                            The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                            \n

                            • Gray polyester/spandex full zip jacket with orange lining.
                            • Right pocket device storage.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lando-gym-jacket-xl-blue-336","links":{},"stock":{"item_id":336,"product_id":336,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xl-blue-336.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"211","_score":1,"_source":{"id":211,"sku":"MH10","name":"Mach Street Sweatshirt ","attribute_set_id":9,"price":62,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                            From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                            \n

                            • Navy heather crewneck sweatshirt.
                            • LumaTech™ moisture-wicking fabric.
                            • Antimicrobial, odor-resistant.
                            • Zip hand pockets.
                            • Chafe-resistant flatlock seams.
                            • Rib-knit cuffs and hem.

                            ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mach-street-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,148],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","pattern":"197","climate":[202,204,205,208],"slug":"mach-street-sweatshirt-211","links":{},"stock":{"item_id":211,"product_id":211,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH10-XS-Black","id":196,"status":1,"name":"Mach Street Sweatshirt -XS-Black","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"49","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","url_key":"mach-street-sweatshirt-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MH10-XS-Blue","id":197,"status":1,"name":"Mach Street Sweatshirt -XS-Blue","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"50","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","url_key":"mach-street-sweatshirt-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"MH10-XS-Red","id":198,"status":1,"name":"Mach Street Sweatshirt -XS-Red","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","url_key":"mach-street-sweatshirt-xs-red","msrp_display_actual_price_type":"0"},{"sku":"MH10-S-Black","id":199,"status":1,"name":"Mach Street Sweatshirt -S-Black","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"49","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","url_key":"mach-street-sweatshirt-s-black","msrp_display_actual_price_type":"0"},{"sku":"MH10-S-Blue","id":200,"status":1,"name":"Mach Street Sweatshirt -S-Blue","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"50","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","url_key":"mach-street-sweatshirt-s-blue","msrp_display_actual_price_type":"0"},{"sku":"MH10-S-Red","id":201,"status":1,"name":"Mach Street Sweatshirt -S-Red","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","url_key":"mach-street-sweatshirt-s-red","msrp_display_actual_price_type":"0","final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62},{"sku":"MH10-M-Black","id":202,"status":1,"name":"Mach Street Sweatshirt -M-Black","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"49","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","url_key":"mach-street-sweatshirt-m-black","msrp_display_actual_price_type":"0","final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62},{"sku":"MH10-M-Blue","id":203,"status":1,"name":"Mach Street Sweatshirt -M-Blue","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"50","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","url_key":"mach-street-sweatshirt-m-blue","msrp_display_actual_price_type":"0","final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62},{"sku":"MH10-M-Red","id":204,"status":1,"name":"Mach Street Sweatshirt -M-Red","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","url_key":"mach-street-sweatshirt-m-red","msrp_display_actual_price_type":"0","final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62},{"sku":"MH10-L-Black","id":205,"status":1,"name":"Mach Street Sweatshirt -L-Black","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"49","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","url_key":"mach-street-sweatshirt-l-black","msrp_display_actual_price_type":"0","final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62},{"sku":"MH10-L-Blue","id":206,"status":1,"name":"Mach Street Sweatshirt -L-Blue","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"50","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","url_key":"mach-street-sweatshirt-l-blue","msrp_display_actual_price_type":"0","final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62},{"sku":"MH10-L-Red","id":207,"status":1,"name":"Mach Street Sweatshirt -L-Red","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","url_key":"mach-street-sweatshirt-l-red","msrp_display_actual_price_type":"0","final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62},{"sku":"MH10-XL-Black","id":208,"status":1,"name":"Mach Street Sweatshirt -XL-Black","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"49","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","url_key":"mach-street-sweatshirt-xl-black","msrp_display_actual_price_type":"0","final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62},{"sku":"MH10-XL-Blue","id":209,"status":1,"name":"Mach Street Sweatshirt -XL-Blue","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"50","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","url_key":"mach-street-sweatshirt-xl-blue","msrp_display_actual_price_type":"0","final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62},{"sku":"MH10-XL-Red","id":210,"status":1,"name":"Mach Street Sweatshirt -XL-Red","price":62,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","url_key":"mach-street-sweatshirt-xl-red","msrp_display_actual_price_type":"0","final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62}],"configurable_options":[{"id":21,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":211,"attribute_code":"color"},{"id":20,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":211,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-211.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"243","_score":1,"_source":{"id":243,"sku":"MH12","name":"Ajax Full-Zip Sweatshirt ","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                            \n

                            • Mint striped full zip hoodie.
                            • 100% bonded polyester fleece.
                            • Pouch pocket.
                            • Rib cuffs and hem.
                            • Machine washable.

                            ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ajax-full-zip-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"199","climate":[202,204,205,208,210],"slug":"ajax-full-zip-sweatshirt-243","links":{},"stock":{"item_id":243,"product_id":243,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH12-XS-Blue","id":228,"status":1,"name":"Ajax Full-Zip Sweatshirt -XS-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"50","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","url_key":"ajax-full-zip-sweatshirt-xs-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-XS-Green","id":229,"status":1,"name":"Ajax Full-Zip Sweatshirt -XS-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"53","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","url_key":"ajax-full-zip-sweatshirt-xs-green","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-XS-Red","id":230,"status":1,"name":"Ajax Full-Zip Sweatshirt -XS-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","url_key":"ajax-full-zip-sweatshirt-xs-red","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-S-Blue","id":231,"status":1,"name":"Ajax Full-Zip Sweatshirt -S-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"50","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","url_key":"ajax-full-zip-sweatshirt-s-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-S-Green","id":232,"status":1,"name":"Ajax Full-Zip Sweatshirt -S-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"53","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","url_key":"ajax-full-zip-sweatshirt-s-green","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-S-Red","id":233,"status":1,"name":"Ajax Full-Zip Sweatshirt -S-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","url_key":"ajax-full-zip-sweatshirt-s-red","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-M-Blue","id":234,"status":1,"name":"Ajax Full-Zip Sweatshirt -M-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"50","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","url_key":"ajax-full-zip-sweatshirt-m-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-M-Green","id":235,"status":1,"name":"Ajax Full-Zip Sweatshirt -M-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"53","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","url_key":"ajax-full-zip-sweatshirt-m-green","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-M-Red","id":236,"status":1,"name":"Ajax Full-Zip Sweatshirt -M-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","url_key":"ajax-full-zip-sweatshirt-m-red","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-L-Blue","id":237,"status":1,"name":"Ajax Full-Zip Sweatshirt -L-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"50","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","url_key":"ajax-full-zip-sweatshirt-l-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-L-Green","id":238,"status":1,"name":"Ajax Full-Zip Sweatshirt -L-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"53","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","url_key":"ajax-full-zip-sweatshirt-l-green","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-L-Red","id":239,"status":1,"name":"Ajax Full-Zip Sweatshirt -L-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","url_key":"ajax-full-zip-sweatshirt-l-red","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-XL-Blue","id":240,"status":1,"name":"Ajax Full-Zip Sweatshirt -XL-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"50","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","url_key":"ajax-full-zip-sweatshirt-xl-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-XL-Green","id":241,"status":1,"name":"Ajax Full-Zip Sweatshirt -XL-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"53","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","url_key":"ajax-full-zip-sweatshirt-xl-green","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH12-XL-Red","id":242,"status":1,"name":"Ajax Full-Zip Sweatshirt -XL-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","url_key":"ajax-full-zip-sweatshirt-xl-red","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69}],"configurable_options":[{"id":25,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":243,"attribute_code":"color"},{"id":24,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":243,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-243.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"264","_score":1,"_source":{"id":264,"sku":"MJ01-S-Red","name":"Beaumont Summit Kit-S-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                            \n

                            • Yellow full zip rain jacket.
                            • Full-zip front.
                            • Stand-up collar.
                            • Elasticized cuffs.
                            • Machine wash/dry.

                            ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"beaumont-summit-kit-s-red-264","links":{},"stock":{"item_id":264,"product_id":264,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-s-red-264.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"266","_score":1,"_source":{"id":266,"sku":"MJ01-M-Orange","name":"Beaumont Summit Kit-M-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                            \n

                            • Yellow full zip rain jacket.
                            • Full-zip front.
                            • Stand-up collar.
                            • Elasticized cuffs.
                            • Machine wash/dry.

                            ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"beaumont-summit-kit-m-orange-266","links":{},"stock":{"item_id":266,"product_id":266,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-m-orange-266.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"285","_score":1,"_source":{"id":285,"sku":"MJ02-L-Green","name":"Hyperion Elements Jacket-L-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                            \n

                            • Lime 1/4 zip pullover.
                            • Split pocket.
                            • Thumb holes.
                            • Machine wash/hang to dry.

                            ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hyperion-elements-jacket-l-green-285","links":{},"stock":{"item_id":285,"product_id":285,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-l-green-285.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"279","_score":1,"_source":{"id":279,"sku":"MJ02-S-Green","name":"Hyperion Elements Jacket-S-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                            \n

                            • Lime 1/4 zip pullover.
                            • Split pocket.
                            • Thumb holes.
                            • Machine wash/hang to dry.

                            ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hyperion-elements-jacket-s-green-279","links":{},"stock":{"item_id":279,"product_id":279,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-s-green-279.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"273","_score":1,"_source":{"id":273,"sku":"MJ01-XL-Red","name":"Beaumont Summit Kit-XL-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                            \n

                            • Yellow full zip rain jacket.
                            • Full-zip front.
                            • Stand-up collar.
                            • Elasticized cuffs.
                            • Machine wash/dry.

                            ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"beaumont-summit-kit-xl-red-273","links":{},"stock":{"item_id":273,"product_id":273,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xl-red-273.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"288","_score":1,"_source":{"id":288,"sku":"MJ02-XL-Green","name":"Hyperion Elements Jacket-XL-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                            \n

                            • Lime 1/4 zip pullover.
                            • Split pocket.
                            • Thumb holes.
                            • Machine wash/hang to dry.

                            ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hyperion-elements-jacket-xl-green-288","links":{},"stock":{"item_id":288,"product_id":288,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xl-green-288.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"293","_score":1,"_source":{"id":293,"sku":"MJ04-XS-Blue","name":"Kenobi Trail Jacket-XS-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                            Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                            \n

                            • Black 1/4 zip pullover with royal zipper.
                            • Adjustable hood and sleeve cuffs.
                            • Machine wash/air dry.

                            ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"kenobi-trail-jacket-xs-blue-293","links":{},"stock":{"item_id":293,"product_id":293,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xs-blue-293.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"277","_score":1,"_source":{"id":277,"sku":"MJ02-XS-Orange","name":"Hyperion Elements Jacket-XS-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                            \n

                            • Lime 1/4 zip pullover.
                            • Split pocket.
                            • Thumb holes.
                            • Machine wash/hang to dry.

                            ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hyperion-elements-jacket-xs-orange-277","links":{},"stock":{"item_id":277,"product_id":277,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xs-orange-277.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"278","_score":1,"_source":{"id":278,"sku":"MJ02-XS-Red","name":"Hyperion Elements Jacket-XS-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                            \n

                            • Lime 1/4 zip pullover.
                            • Split pocket.
                            • Thumb holes.
                            • Machine wash/hang to dry.

                            ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hyperion-elements-jacket-xs-red-278","links":{},"stock":{"item_id":278,"product_id":278,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xs-red-278.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"276","_score":1,"_source":{"id":276,"sku":"MJ02-XS-Green","name":"Hyperion Elements Jacket-XS-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                            \n

                            • Lime 1/4 zip pullover.
                            • Split pocket.
                            • Thumb holes.
                            • Machine wash/hang to dry.

                            ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hyperion-elements-jacket-xs-green-276","links":{},"stock":{"item_id":276,"product_id":276,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xs-green-276.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"281","_score":1,"_source":{"id":281,"sku":"MJ02-S-Red","name":"Hyperion Elements Jacket-S-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                            \n

                            • Lime 1/4 zip pullover.
                            • Split pocket.
                            • Thumb holes.
                            • Machine wash/hang to dry.

                            ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hyperion-elements-jacket-s-red-281","links":{},"stock":{"item_id":281,"product_id":281,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-s-red-281.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"284","_score":1,"_source":{"id":284,"sku":"MJ02-M-Red","name":"Hyperion Elements Jacket-M-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                            \n

                            • Lime 1/4 zip pullover.
                            • Split pocket.
                            • Thumb holes.
                            • Machine wash/hang to dry.

                            ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hyperion-elements-jacket-m-red-284","links":{},"stock":{"item_id":284,"product_id":284,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-m-red-284.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"290","_score":1,"_source":{"id":290,"sku":"MJ02-XL-Red","name":"Hyperion Elements Jacket-XL-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                            \n

                            • Lime 1/4 zip pullover.
                            • Split pocket.
                            • Thumb holes.
                            • Machine wash/hang to dry.

                            ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hyperion-elements-jacket-xl-red-290","links":{},"stock":{"item_id":290,"product_id":290,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xl-red-290.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"283","_score":1,"_source":{"id":283,"sku":"MJ02-M-Orange","name":"Hyperion Elements Jacket-M-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                            \n

                            • Lime 1/4 zip pullover.
                            • Split pocket.
                            • Thumb holes.
                            • Machine wash/hang to dry.

                            ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hyperion-elements-jacket-m-orange-283","links":{},"stock":{"item_id":283,"product_id":283,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-m-orange-283.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"280","_score":1,"_source":{"id":280,"sku":"MJ02-S-Orange","name":"Hyperion Elements Jacket-S-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                            \n

                            • Lime 1/4 zip pullover.
                            • Split pocket.
                            • Thumb holes.
                            • Machine wash/hang to dry.

                            ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hyperion-elements-jacket-s-orange-280","links":{},"stock":{"item_id":280,"product_id":280,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-s-orange-280.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"295","_score":1,"_source":{"id":295,"sku":"MJ04-S-Black","name":"Kenobi Trail Jacket-S-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                            Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                            \n

                            • Black 1/4 zip pullover with royal zipper.
                            • Adjustable hood and sleeve cuffs.
                            • Machine wash/air dry.

                            ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"kenobi-trail-jacket-s-black-295","links":{},"stock":{"item_id":295,"product_id":295,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-s-black-295.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"289","_score":1,"_source":{"id":289,"sku":"MJ02-XL-Orange","name":"Hyperion Elements Jacket-XL-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                            \n

                            • Lime 1/4 zip pullover.
                            • Split pocket.
                            • Thumb holes.
                            • Machine wash/hang to dry.

                            ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hyperion-elements-jacket-xl-orange-289","links":{},"stock":{"item_id":289,"product_id":289,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xl-orange-289.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"292","_score":1,"_source":{"id":292,"sku":"MJ04-XS-Black","name":"Kenobi Trail Jacket-XS-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                            Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                            \n

                            • Black 1/4 zip pullover with royal zipper.
                            • Adjustable hood and sleeve cuffs.
                            • Machine wash/air dry.

                            ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"kenobi-trail-jacket-xs-black-292","links":{},"stock":{"item_id":292,"product_id":292,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xs-black-292.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"296","_score":1,"_source":{"id":296,"sku":"MJ04-S-Blue","name":"Kenobi Trail Jacket-S-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                            Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                            \n

                            • Black 1/4 zip pullover with royal zipper.
                            • Adjustable hood and sleeve cuffs.
                            • Machine wash/air dry.

                            ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"kenobi-trail-jacket-s-blue-296","links":{},"stock":{"item_id":296,"product_id":296,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-s-blue-296.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"294","_score":1,"_source":{"id":294,"sku":"MJ04-XS-Purple","name":"Kenobi Trail Jacket-XS-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                            Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                            \n

                            • Black 1/4 zip pullover with royal zipper.
                            • Adjustable hood and sleeve cuffs.
                            • Machine wash/air dry.

                            ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"kenobi-trail-jacket-xs-purple-294","links":{},"stock":{"item_id":294,"product_id":294,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xs-purple-294.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"299","_score":1,"_source":{"id":299,"sku":"MJ04-M-Blue","name":"Kenobi Trail Jacket-M-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                            Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                            \n

                            • Black 1/4 zip pullover with royal zipper.
                            • Adjustable hood and sleeve cuffs.
                            • Machine wash/air dry.

                            ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"kenobi-trail-jacket-m-blue-299","links":{},"stock":{"item_id":299,"product_id":299,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-m-blue-299.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"300","_score":1,"_source":{"id":300,"sku":"MJ04-M-Purple","name":"Kenobi Trail Jacket-M-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                            Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                            \n

                            • Black 1/4 zip pullover with royal zipper.
                            • Adjustable hood and sleeve cuffs.
                            • Machine wash/air dry.

                            ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"kenobi-trail-jacket-m-purple-300","links":{},"stock":{"item_id":300,"product_id":300,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-m-purple-300.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"298","_score":1,"_source":{"id":298,"sku":"MJ04-M-Black","name":"Kenobi Trail Jacket-M-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                            Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                            \n

                            • Black 1/4 zip pullover with royal zipper.
                            • Adjustable hood and sleeve cuffs.
                            • Machine wash/air dry.

                            ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"kenobi-trail-jacket-m-black-298","links":{},"stock":{"item_id":298,"product_id":298,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-m-black-298.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"297","_score":1,"_source":{"id":297,"sku":"MJ04-S-Purple","name":"Kenobi Trail Jacket-S-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                            Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                            \n

                            • Black 1/4 zip pullover with royal zipper.
                            • Adjustable hood and sleeve cuffs.
                            • Machine wash/air dry.

                            ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"kenobi-trail-jacket-s-purple-297","links":{},"stock":{"item_id":297,"product_id":297,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-s-purple-297.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"262","_score":1,"_source":{"id":262,"sku":"MJ01-XS-Yellow","name":"Beaumont Summit Kit-XS-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                            \n

                            • Yellow full zip rain jacket.
                            • Full-zip front.
                            • Stand-up collar.
                            • Elasticized cuffs.
                            • Machine wash/dry.

                            ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"beaumont-summit-kit-xs-yellow-262","links":{},"stock":{"item_id":262,"product_id":262,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xs-yellow-262.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"258","_score":1,"_source":{"id":258,"sku":"MH13-XL-Lavender","name":"Marco Lightweight Active Hoodie-XL-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                            \n

                            • Light blue heather full zip hoodie.
                            • Fitted flatlock seams.
                            • Matching lining and drawstring.
                            • Machine wash/dry.

                            ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xl-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"marco-lightweight-active-hoodie-xl-lavender-258","links":{},"stock":{"item_id":258,"product_id":258,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xl-lavender-258.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"255","_score":1,"_source":{"id":255,"sku":"MH13-L-Lavender","name":"Marco Lightweight Active Hoodie-L-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                            \n

                            • Light blue heather full zip hoodie.
                            • Fitted flatlock seams.
                            • Matching lining and drawstring.
                            • Machine wash/dry.

                            ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-l-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"marco-lightweight-active-hoodie-l-lavender-255","links":{},"stock":{"item_id":255,"product_id":255,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-l-lavender-255.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"265","_score":1,"_source":{"id":265,"sku":"MJ01-S-Yellow","name":"Beaumont Summit Kit-S-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                            \n

                            • Yellow full zip rain jacket.
                            • Full-zip front.
                            • Stand-up collar.
                            • Elasticized cuffs.
                            • Machine wash/dry.

                            ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"beaumont-summit-kit-s-yellow-265","links":{},"stock":{"item_id":265,"product_id":265,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-s-yellow-265.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"251","_score":1,"_source":{"id":251,"sku":"MH13-M-Green","name":"Marco Lightweight Active Hoodie-M-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                            \n

                            • Light blue heather full zip hoodie.
                            • Fitted flatlock seams.
                            • Matching lining and drawstring.
                            • Machine wash/dry.

                            ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"marco-lightweight-active-hoodie-m-green-251","links":{},"stock":{"item_id":251,"product_id":251,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-m-green-251.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"252","_score":1,"_source":{"id":252,"sku":"MH13-M-Lavender","name":"Marco Lightweight Active Hoodie-M-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                            \n

                            • Light blue heather full zip hoodie.
                            • Fitted flatlock seams.
                            • Matching lining and drawstring.
                            • Machine wash/dry.

                            ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-m-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"marco-lightweight-active-hoodie-m-lavender-252","links":{},"stock":{"item_id":252,"product_id":252,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-m-lavender-252.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"256","_score":1,"_source":{"id":256,"sku":"MH13-XL-Blue","name":"Marco Lightweight Active Hoodie-XL-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                            \n

                            • Light blue heather full zip hoodie.
                            • Fitted flatlock seams.
                            • Matching lining and drawstring.
                            • Machine wash/dry.

                            ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"marco-lightweight-active-hoodie-xl-blue-256","links":{},"stock":{"item_id":256,"product_id":256,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xl-blue-256.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"253","_score":1,"_source":{"id":253,"sku":"MH13-L-Blue","name":"Marco Lightweight Active Hoodie-L-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                            \n

                            • Light blue heather full zip hoodie.
                            • Fitted flatlock seams.
                            • Matching lining and drawstring.
                            • Machine wash/dry.

                            ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"marco-lightweight-active-hoodie-l-blue-253","links":{},"stock":{"item_id":253,"product_id":253,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-l-blue-253.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"261","_score":1,"_source":{"id":261,"sku":"MJ01-XS-Red","name":"Beaumont Summit Kit-XS-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                            \n

                            • Yellow full zip rain jacket.
                            • Full-zip front.
                            • Stand-up collar.
                            • Elasticized cuffs.
                            • Machine wash/dry.

                            ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"beaumont-summit-kit-xs-red-261","links":{},"stock":{"item_id":261,"product_id":261,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xs-red-261.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"260","_score":1,"_source":{"id":260,"sku":"MJ01-XS-Orange","name":"Beaumont Summit Kit-XS-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                            \n

                            • Yellow full zip rain jacket.
                            • Full-zip front.
                            • Stand-up collar.
                            • Elasticized cuffs.
                            • Machine wash/dry.

                            ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"beaumont-summit-kit-xs-orange-260","links":{},"stock":{"item_id":260,"product_id":260,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xs-orange-260.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"272","_score":1,"_source":{"id":272,"sku":"MJ01-XL-Orange","name":"Beaumont Summit Kit-XL-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                            \n

                            • Yellow full zip rain jacket.
                            • Full-zip front.
                            • Stand-up collar.
                            • Elasticized cuffs.
                            • Machine wash/dry.

                            ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"beaumont-summit-kit-xl-orange-272","links":{},"stock":{"item_id":272,"product_id":272,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xl-orange-272.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"268","_score":1,"_source":{"id":268,"sku":"MJ01-M-Yellow","name":"Beaumont Summit Kit-M-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                            \n

                            • Yellow full zip rain jacket.
                            • Full-zip front.
                            • Stand-up collar.
                            • Elasticized cuffs.
                            • Machine wash/dry.

                            ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"beaumont-summit-kit-m-yellow-268","links":{},"stock":{"item_id":268,"product_id":268,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-m-yellow-268.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"267","_score":1,"_source":{"id":267,"sku":"MJ01-M-Red","name":"Beaumont Summit Kit-M-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                            \n

                            • Yellow full zip rain jacket.
                            • Full-zip front.
                            • Stand-up collar.
                            • Elasticized cuffs.
                            • Machine wash/dry.

                            ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"beaumont-summit-kit-m-red-267","links":{},"stock":{"item_id":267,"product_id":267,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-m-red-267.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"269","_score":1,"_source":{"id":269,"sku":"MJ01-L-Orange","name":"Beaumont Summit Kit-L-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                            \n

                            • Yellow full zip rain jacket.
                            • Full-zip front.
                            • Stand-up collar.
                            • Elasticized cuffs.
                            • Machine wash/dry.

                            ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"beaumont-summit-kit-l-orange-269","links":{},"stock":{"item_id":269,"product_id":269,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-l-orange-269.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"274","_score":1,"_source":{"id":274,"sku":"MJ01-XL-Yellow","name":"Beaumont Summit Kit-XL-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                            \n

                            • Yellow full zip rain jacket.
                            • Full-zip front.
                            • Stand-up collar.
                            • Elasticized cuffs.
                            • Machine wash/dry.

                            ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"beaumont-summit-kit-xl-yellow-274","links":{},"stock":{"item_id":274,"product_id":274,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xl-yellow-274.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"263","_score":1,"_source":{"id":263,"sku":"MJ01-S-Orange","name":"Beaumont Summit Kit-S-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                            \n

                            • Yellow full zip rain jacket.
                            • Full-zip front.
                            • Stand-up collar.
                            • Elasticized cuffs.
                            • Machine wash/dry.

                            ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"beaumont-summit-kit-s-orange-263","links":{},"stock":{"item_id":263,"product_id":263,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-s-orange-263.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"270","_score":1,"_source":{"id":270,"sku":"MJ01-L-Red","name":"Beaumont Summit Kit-L-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                            \n

                            • Yellow full zip rain jacket.
                            • Full-zip front.
                            • Stand-up collar.
                            • Elasticized cuffs.
                            • Machine wash/dry.

                            ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"beaumont-summit-kit-l-red-270","links":{},"stock":{"item_id":270,"product_id":270,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-l-red-270.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"254","_score":1,"_source":{"id":254,"sku":"MH13-L-Green","name":"Marco Lightweight Active Hoodie-L-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                            \n

                            • Light blue heather full zip hoodie.
                            • Fitted flatlock seams.
                            • Matching lining and drawstring.
                            • Machine wash/dry.

                            ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"marco-lightweight-active-hoodie-l-green-254","links":{},"stock":{"item_id":254,"product_id":254,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-l-green-254.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"286","_score":1,"_source":{"id":286,"sku":"MJ02-L-Orange","name":"Hyperion Elements Jacket-L-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                            \n

                            • Lime 1/4 zip pullover.
                            • Split pocket.
                            • Thumb holes.
                            • Machine wash/hang to dry.

                            ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hyperion-elements-jacket-l-orange-286","links":{},"stock":{"item_id":286,"product_id":286,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-l-orange-286.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"271","_score":1,"_source":{"id":271,"sku":"MJ01-L-Yellow","name":"Beaumont Summit Kit-L-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                            \n

                            • Yellow full zip rain jacket.
                            • Full-zip front.
                            • Stand-up collar.
                            • Elasticized cuffs.
                            • Machine wash/dry.

                            ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"beaumont-summit-kit-l-yellow-271","links":{},"stock":{"item_id":271,"product_id":271,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-l-yellow-271.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"282","_score":1,"_source":{"id":282,"sku":"MJ02-M-Green","name":"Hyperion Elements Jacket-M-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                            \n

                            • Lime 1/4 zip pullover.
                            • Split pocket.
                            • Thumb holes.
                            • Machine wash/hang to dry.

                            ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hyperion-elements-jacket-m-green-282","links":{},"stock":{"item_id":282,"product_id":282,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-m-green-282.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"257","_score":1,"_source":{"id":257,"sku":"MH13-XL-Green","name":"Marco Lightweight Active Hoodie-XL-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                            \n

                            • Light blue heather full zip hoodie.
                            • Fitted flatlock seams.
                            • Matching lining and drawstring.
                            • Machine wash/dry.

                            ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"marco-lightweight-active-hoodie-xl-green-257","links":{},"stock":{"item_id":257,"product_id":257,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xl-green-257.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"287","_score":1,"_source":{"id":287,"sku":"MJ02-L-Red","name":"Hyperion Elements Jacket-L-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                            \n

                            • Lime 1/4 zip pullover.
                            • Split pocket.
                            • Thumb holes.
                            • Machine wash/hang to dry.

                            ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hyperion-elements-jacket-l-red-287","links":{},"stock":{"item_id":287,"product_id":287,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-l-red-287.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"227","_score":1,"_source":{"id":227,"sku":"MH11","name":"Grayson Crewneck Sweatshirt ","attribute_set_id":9,"price":64,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                            The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                            \n

                            • Cream crewneck sweatshirt with black accents.
                            • 80% cotton/20% polyester fleece.
                            • Patterned knit hood lining.
                            • Knit cuffs and waist.
                            • Pouch pocket.
                            • Curl edged seam detail

                            ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"grayson-crewneck-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"195","climate":[202,204,205,208,210],"slug":"grayson-crewneck-sweatshirt-227","links":{},"stock":{"item_id":227,"product_id":227,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH11-XS-Orange","id":212,"status":1,"name":"Grayson Crewneck Sweatshirt -XS-Orange","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"56","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","url_key":"grayson-crewneck-sweatshirt-xs-orange","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-XS-Red","id":213,"status":1,"name":"Grayson Crewneck Sweatshirt -XS-Red","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","url_key":"grayson-crewneck-sweatshirt-xs-red","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-XS-White","id":214,"status":1,"name":"Grayson Crewneck Sweatshirt -XS-White","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"59","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","url_key":"grayson-crewneck-sweatshirt-xs-white","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-S-Orange","id":215,"status":1,"name":"Grayson Crewneck Sweatshirt -S-Orange","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"56","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","url_key":"grayson-crewneck-sweatshirt-s-orange","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-S-Red","id":216,"status":1,"name":"Grayson Crewneck Sweatshirt -S-Red","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","url_key":"grayson-crewneck-sweatshirt-s-red","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-S-White","id":217,"status":1,"name":"Grayson Crewneck Sweatshirt -S-White","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"59","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","url_key":"grayson-crewneck-sweatshirt-s-white","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-M-Orange","id":218,"status":1,"name":"Grayson Crewneck Sweatshirt -M-Orange","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"56","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","url_key":"grayson-crewneck-sweatshirt-m-orange","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-M-Red","id":219,"status":1,"name":"Grayson Crewneck Sweatshirt -M-Red","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","url_key":"grayson-crewneck-sweatshirt-m-red","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-M-White","id":220,"status":1,"name":"Grayson Crewneck Sweatshirt -M-White","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"59","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","url_key":"grayson-crewneck-sweatshirt-m-white","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-L-Orange","id":221,"status":1,"name":"Grayson Crewneck Sweatshirt -L-Orange","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"56","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","url_key":"grayson-crewneck-sweatshirt-l-orange","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-L-Red","id":222,"status":1,"name":"Grayson Crewneck Sweatshirt -L-Red","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","url_key":"grayson-crewneck-sweatshirt-l-red","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-L-White","id":223,"status":1,"name":"Grayson Crewneck Sweatshirt -L-White","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"59","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","url_key":"grayson-crewneck-sweatshirt-l-white","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-XL-Orange","id":224,"status":1,"name":"Grayson Crewneck Sweatshirt -XL-Orange","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"56","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","url_key":"grayson-crewneck-sweatshirt-xl-orange","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-XL-Red","id":225,"status":1,"name":"Grayson Crewneck Sweatshirt -XL-Red","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","url_key":"grayson-crewneck-sweatshirt-xl-red","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64},{"sku":"MH11-XL-White","id":226,"status":1,"name":"Grayson Crewneck Sweatshirt -XL-White","price":64,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"59","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","url_key":"grayson-crewneck-sweatshirt-xl-white","msrp_display_actual_price_type":"0","final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64}],"configurable_options":[{"id":23,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":227,"attribute_code":"color"},{"id":22,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":227,"attribute_code":"size"}],"color_options":[56,58,59],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-227.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"242","_score":1,"_source":{"id":242,"sku":"MH12-XL-Red","name":"Ajax Full-Zip Sweatshirt -XL-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                            \n

                            • Mint striped full zip hoodie.
                            • 100% bonded polyester fleece.
                            • Pouch pocket.
                            • Rib cuffs and hem.
                            • Machine washable.

                            ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ajax-full-zip-sweatshirt-xl-red-242","links":{},"stock":{"item_id":242,"product_id":242,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xl-red-242.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"241","_score":1,"_source":{"id":241,"sku":"MH12-XL-Green","name":"Ajax Full-Zip Sweatshirt -XL-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                            \n

                            • Mint striped full zip hoodie.
                            • 100% bonded polyester fleece.
                            • Pouch pocket.
                            • Rib cuffs and hem.
                            • Machine washable.

                            ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ajax-full-zip-sweatshirt-xl-green-241","links":{},"stock":{"item_id":241,"product_id":241,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xl-green-241.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"246","_score":1,"_source":{"id":246,"sku":"MH13-XS-Lavender","name":"Marco Lightweight Active Hoodie-XS-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                            \n

                            • Light blue heather full zip hoodie.
                            • Fitted flatlock seams.
                            • Matching lining and drawstring.
                            • Machine wash/dry.

                            ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xs-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"marco-lightweight-active-hoodie-xs-lavender-246","links":{},"stock":{"item_id":246,"product_id":246,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xs-lavender-246.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"236","_score":1,"_source":{"id":236,"sku":"MH12-M-Red","name":"Ajax Full-Zip Sweatshirt -M-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                            \n

                            • Mint striped full zip hoodie.
                            • 100% bonded polyester fleece.
                            • Pouch pocket.
                            • Rib cuffs and hem.
                            • Machine washable.

                            ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ajax-full-zip-sweatshirt-m-red-236","links":{},"stock":{"item_id":236,"product_id":236,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-m-red-236.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"238","_score":1,"_source":{"id":238,"sku":"MH12-L-Green","name":"Ajax Full-Zip Sweatshirt -L-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                            \n

                            • Mint striped full zip hoodie.
                            • 100% bonded polyester fleece.
                            • Pouch pocket.
                            • Rib cuffs and hem.
                            • Machine washable.

                            ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ajax-full-zip-sweatshirt-l-green-238","links":{},"stock":{"item_id":238,"product_id":238,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-l-green-238.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"240","_score":1,"_source":{"id":240,"sku":"MH12-XL-Blue","name":"Ajax Full-Zip Sweatshirt -XL-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                            \n

                            • Mint striped full zip hoodie.
                            • 100% bonded polyester fleece.
                            • Pouch pocket.
                            • Rib cuffs and hem.
                            • Machine washable.

                            ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ajax-full-zip-sweatshirt-xl-blue-240","links":{},"stock":{"item_id":240,"product_id":240,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xl-blue-240.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"249","_score":1,"_source":{"id":249,"sku":"MH13-S-Lavender","name":"Marco Lightweight Active Hoodie-S-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                            \n

                            • Light blue heather full zip hoodie.
                            • Fitted flatlock seams.
                            • Matching lining and drawstring.
                            • Machine wash/dry.

                            ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-s-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"marco-lightweight-active-hoodie-s-lavender-249","links":{},"stock":{"item_id":249,"product_id":249,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-s-lavender-249.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"245","_score":1,"_source":{"id":245,"sku":"MH13-XS-Green","name":"Marco Lightweight Active Hoodie-XS-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                            \n

                            • Light blue heather full zip hoodie.
                            • Fitted flatlock seams.
                            • Matching lining and drawstring.
                            • Machine wash/dry.

                            ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"marco-lightweight-active-hoodie-xs-green-245","links":{},"stock":{"item_id":245,"product_id":245,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xs-green-245.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"248","_score":1,"_source":{"id":248,"sku":"MH13-S-Green","name":"Marco Lightweight Active Hoodie-S-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                            \n

                            • Light blue heather full zip hoodie.
                            • Fitted flatlock seams.
                            • Matching lining and drawstring.
                            • Machine wash/dry.

                            ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"marco-lightweight-active-hoodie-s-green-248","links":{},"stock":{"item_id":248,"product_id":248,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-s-green-248.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"247","_score":1,"_source":{"id":247,"sku":"MH13-S-Blue","name":"Marco Lightweight Active Hoodie-S-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                            \n

                            • Light blue heather full zip hoodie.
                            • Fitted flatlock seams.
                            • Matching lining and drawstring.
                            • Machine wash/dry.

                            ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"marco-lightweight-active-hoodie-s-blue-247","links":{},"stock":{"item_id":247,"product_id":247,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-s-blue-247.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"244","_score":1,"_source":{"id":244,"sku":"MH13-XS-Blue","name":"Marco Lightweight Active Hoodie-XS-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                            \n

                            • Light blue heather full zip hoodie.
                            • Fitted flatlock seams.
                            • Matching lining and drawstring.
                            • Machine wash/dry.

                            ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"marco-lightweight-active-hoodie-xs-blue-244","links":{},"stock":{"item_id":244,"product_id":244,"stock_id":1,"qty":39,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xs-blue-244.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"250","_score":1,"_source":{"id":250,"sku":"MH13-M-Blue","name":"Marco Lightweight Active Hoodie-M-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                            \n

                            • Light blue heather full zip hoodie.
                            • Fitted flatlock seams.
                            • Matching lining and drawstring.
                            • Machine wash/dry.

                            ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"marco-lightweight-active-hoodie-m-blue-250","links":{},"stock":{"item_id":250,"product_id":250,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-m-blue-250.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"232","_score":1,"_source":{"id":232,"sku":"MH12-S-Green","name":"Ajax Full-Zip Sweatshirt -S-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                            \n

                            • Mint striped full zip hoodie.
                            • 100% bonded polyester fleece.
                            • Pouch pocket.
                            • Rib cuffs and hem.
                            • Machine washable.

                            ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ajax-full-zip-sweatshirt-s-green-232","links":{},"stock":{"item_id":232,"product_id":232,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-s-green-232.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"230","_score":1,"_source":{"id":230,"sku":"MH12-XS-Red","name":"Ajax Full-Zip Sweatshirt -XS-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                            \n

                            • Mint striped full zip hoodie.
                            • 100% bonded polyester fleece.
                            • Pouch pocket.
                            • Rib cuffs and hem.
                            • Machine washable.

                            ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ajax-full-zip-sweatshirt-xs-red-230","links":{},"stock":{"item_id":230,"product_id":230,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xs-red-230.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"239","_score":1,"_source":{"id":239,"sku":"MH12-L-Red","name":"Ajax Full-Zip Sweatshirt -L-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                            \n

                            • Mint striped full zip hoodie.
                            • 100% bonded polyester fleece.
                            • Pouch pocket.
                            • Rib cuffs and hem.
                            • Machine washable.

                            ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ajax-full-zip-sweatshirt-l-red-239","links":{},"stock":{"item_id":239,"product_id":239,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-l-red-239.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"233","_score":1,"_source":{"id":233,"sku":"MH12-S-Red","name":"Ajax Full-Zip Sweatshirt -S-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                            \n

                            • Mint striped full zip hoodie.
                            • 100% bonded polyester fleece.
                            • Pouch pocket.
                            • Rib cuffs and hem.
                            • Machine washable.

                            ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ajax-full-zip-sweatshirt-s-red-233","links":{},"stock":{"item_id":233,"product_id":233,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-s-red-233.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"235","_score":1,"_source":{"id":235,"sku":"MH12-M-Green","name":"Ajax Full-Zip Sweatshirt -M-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                            \n

                            • Mint striped full zip hoodie.
                            • 100% bonded polyester fleece.
                            • Pouch pocket.
                            • Rib cuffs and hem.
                            • Machine washable.

                            ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ajax-full-zip-sweatshirt-m-green-235","links":{},"stock":{"item_id":235,"product_id":235,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-m-green-235.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"237","_score":1,"_source":{"id":237,"sku":"MH12-L-Blue","name":"Ajax Full-Zip Sweatshirt -L-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                            \n

                            • Mint striped full zip hoodie.
                            • 100% bonded polyester fleece.
                            • Pouch pocket.
                            • Rib cuffs and hem.
                            • Machine washable.

                            ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ajax-full-zip-sweatshirt-l-blue-237","links":{},"stock":{"item_id":237,"product_id":237,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-l-blue-237.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"231","_score":1,"_source":{"id":231,"sku":"MH12-S-Blue","name":"Ajax Full-Zip Sweatshirt -S-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                            \n

                            • Mint striped full zip hoodie.
                            • 100% bonded polyester fleece.
                            • Pouch pocket.
                            • Rib cuffs and hem.
                            • Machine washable.

                            ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ajax-full-zip-sweatshirt-s-blue-231","links":{},"stock":{"item_id":231,"product_id":231,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-s-blue-231.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"324","_score":1,"_source":{"id":324,"sku":"MJ08-XS-Blue","name":"Lando Gym Jacket-XS-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                            The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                            \n

                            • Gray polyester/spandex full zip jacket with orange lining.
                            • Right pocket device storage.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lando-gym-jacket-xs-blue-324","links":{},"tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"304","_score":1,"_source":{"id":304,"sku":"MJ04-XL-Black","name":"Kenobi Trail Jacket-XL-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                            Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                            \n

                            • Black 1/4 zip pullover with royal zipper.
                            • Adjustable hood and sleeve cuffs.
                            • Machine wash/air dry.

                            ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"kenobi-trail-jacket-xl-black-304","links":{},"tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"520","_score":1,"_source":{"id":520,"sku":"MS03-S-Green","name":"Balboa Persistence Tee-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                            \n

                            • Crew neckline.
                            • Semi-fitted.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"balboa-persistence-tee-s-green-520","links":{},"stock":{"item_id":520,"product_id":520,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-s-green-520.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"535","_score":1,"_source":{"id":535,"sku":"MS06-S-Blue","name":"Zoltan Gym Tee-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                            \n

                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoltan-gym-tee-s-blue-535","links":{},"stock":{"item_id":535,"product_id":535,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-s-blue-535.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"542","_score":1,"_source":{"id":542,"sku":"MS06-L-Green","name":"Zoltan Gym Tee-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                            \n

                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoltan-gym-tee-l-green-542","links":{},"stock":{"item_id":542,"product_id":542,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-l-green-542.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"515","_score":1,"_source":{"id":515,"sku":"MS12","name":"Atomic Endurance Running Tee (Crew-Neck)","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                            \n

                            • Red polyester tee.
                            • Crew neckline.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"atomic-endurance-running-tee-crew-neck","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"atomic-endurance-running-tee-crew-neck-515","links":{},"stock":{"item_id":515,"product_id":515,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS12-XS-Black","id":500,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MS12-XS-Blue","id":501,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-xs-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-XS-Red","id":502,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"58","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-xs-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-S-Black","id":503,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-S-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-s-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-S-Blue","id":504,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-s-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-S-Red","id":505,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"58","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-s-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-M-Black","id":506,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-M-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-m-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-M-Blue","id":507,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-m-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-M-Red","id":508,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"58","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-m-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-L-Black","id":509,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-L-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-l-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-L-Blue","id":510,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-l-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-L-Red","id":511,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"58","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-l-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-XL-Black","id":512,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-xl-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-XL-Blue","id":513,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-xl-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS12-XL-Red","id":514,"status":1,"name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"58","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","url_key":"atomic-endurance-running-tee-crew-neck-xl-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":59,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":515,"attribute_code":"color"},{"id":58,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":515,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-515.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"531","_score":1,"_source":{"id":531,"sku":"MS03","name":"Balboa Persistence Tee","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                            \n

                            • Crew neckline.
                            • Semi-fitted.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms03-black_main.jpg","small_image":"/m/s/ms03-black_main.jpg","thumbnail":"/m/s/ms03-black_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"balboa-persistence-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"balboa-persistence-tee-531","links":{},"stock":{"item_id":531,"product_id":531,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS03-XS-Gray","id":516,"status":1,"name":"Balboa Persistence Tee-XS-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"52","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","url_key":"balboa-persistence-tee-xs-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-XS-Green","id":517,"status":1,"name":"Balboa Persistence Tee-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"53","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","url_key":"balboa-persistence-tee-xs-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-XS-Orange","id":518,"status":1,"name":"Balboa Persistence Tee-XS-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"56","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","url_key":"balboa-persistence-tee-xs-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-S-Gray","id":519,"status":1,"name":"Balboa Persistence Tee-S-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"52","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","url_key":"balboa-persistence-tee-s-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-S-Green","id":520,"status":1,"name":"Balboa Persistence Tee-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"53","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","url_key":"balboa-persistence-tee-s-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-S-Orange","id":521,"status":1,"name":"Balboa Persistence Tee-S-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"56","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","url_key":"balboa-persistence-tee-s-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-M-Gray","id":522,"status":1,"name":"Balboa Persistence Tee-M-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"52","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","url_key":"balboa-persistence-tee-m-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-M-Green","id":523,"status":1,"name":"Balboa Persistence Tee-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"53","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","url_key":"balboa-persistence-tee-m-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-M-Orange","id":524,"status":1,"name":"Balboa Persistence Tee-M-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"56","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","url_key":"balboa-persistence-tee-m-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-L-Gray","id":525,"status":1,"name":"Balboa Persistence Tee-L-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"52","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","url_key":"balboa-persistence-tee-l-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-L-Green","id":526,"status":1,"name":"Balboa Persistence Tee-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"53","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","url_key":"balboa-persistence-tee-l-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-L-Orange","id":527,"status":1,"name":"Balboa Persistence Tee-L-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"56","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","url_key":"balboa-persistence-tee-l-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-XL-Gray","id":528,"status":1,"name":"Balboa Persistence Tee-XL-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"52","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","url_key":"balboa-persistence-tee-xl-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-XL-Green","id":529,"status":1,"name":"Balboa Persistence Tee-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"53","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","url_key":"balboa-persistence-tee-xl-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS03-XL-Orange","id":530,"status":1,"name":"Balboa Persistence Tee-XL-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"56","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","url_key":"balboa-persistence-tee-xl-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":61,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":531,"attribute_code":"color"},{"id":60,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":531,"attribute_code":"size"}],"color_options":[52,53,56],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-531.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"547","_score":1,"_source":{"id":547,"sku":"MS06","name":"Zoltan Gym Tee","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                            \n

                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"zoltan-gym-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"zoltan-gym-tee-547","links":{},"stock":{"item_id":547,"product_id":547,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS06-XS-Blue","id":532,"status":1,"name":"Zoltan Gym Tee-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","url_key":"zoltan-gym-tee-xs-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-XS-Green","id":533,"status":1,"name":"Zoltan Gym Tee-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"53","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","url_key":"zoltan-gym-tee-xs-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-XS-Yellow","id":534,"status":1,"name":"Zoltan Gym Tee-XS-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"60","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","url_key":"zoltan-gym-tee-xs-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-S-Blue","id":535,"status":1,"name":"Zoltan Gym Tee-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","url_key":"zoltan-gym-tee-s-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-S-Green","id":536,"status":1,"name":"Zoltan Gym Tee-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"53","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","url_key":"zoltan-gym-tee-s-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-S-Yellow","id":537,"status":1,"name":"Zoltan Gym Tee-S-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"60","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","url_key":"zoltan-gym-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-M-Blue","id":538,"status":1,"name":"Zoltan Gym Tee-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","url_key":"zoltan-gym-tee-m-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-M-Green","id":539,"status":1,"name":"Zoltan Gym Tee-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"53","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","url_key":"zoltan-gym-tee-m-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-M-Yellow","id":540,"status":1,"name":"Zoltan Gym Tee-M-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"60","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","url_key":"zoltan-gym-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-L-Blue","id":541,"status":1,"name":"Zoltan Gym Tee-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","url_key":"zoltan-gym-tee-l-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-L-Green","id":542,"status":1,"name":"Zoltan Gym Tee-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"53","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","url_key":"zoltan-gym-tee-l-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-L-Yellow","id":543,"status":1,"name":"Zoltan Gym Tee-L-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"60","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","url_key":"zoltan-gym-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-XL-Blue","id":544,"status":1,"name":"Zoltan Gym Tee-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","url_key":"zoltan-gym-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-XL-Green","id":545,"status":1,"name":"Zoltan Gym Tee-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"53","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","url_key":"zoltan-gym-tee-xl-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MS06-XL-Yellow","id":546,"status":1,"name":"Zoltan Gym Tee-XL-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"60","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","url_key":"zoltan-gym-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":63,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":60,"label":"Yellow"}],"product_id":547,"attribute_code":"color"},{"id":62,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":547,"attribute_code":"size"}],"color_options":[50,53,60],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-547.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"627","_score":1,"_source":{"id":627,"sku":"MS08","name":"Strike Endurance Tee","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"strike-endurance-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[202,204,205,209],"slug":"strike-endurance-tee-627","links":{},"stock":{"item_id":627,"product_id":627,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS08-XS-Black","id":612,"status":1,"name":"Strike Endurance Tee-XS-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","url_key":"strike-endurance-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MS08-XS-Blue","id":613,"status":1,"name":"Strike Endurance Tee-XS-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","url_key":"strike-endurance-tee-xs-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-XS-Red","id":614,"status":1,"name":"Strike Endurance Tee-XS-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"58","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","url_key":"strike-endurance-tee-xs-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-S-Black","id":615,"status":1,"name":"Strike Endurance Tee-S-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","url_key":"strike-endurance-tee-s-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-S-Blue","id":616,"status":1,"name":"Strike Endurance Tee-S-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","url_key":"strike-endurance-tee-s-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-S-Red","id":617,"status":1,"name":"Strike Endurance Tee-S-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"58","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","url_key":"strike-endurance-tee-s-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-M-Black","id":618,"status":1,"name":"Strike Endurance Tee-M-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","url_key":"strike-endurance-tee-m-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-M-Blue","id":619,"status":1,"name":"Strike Endurance Tee-M-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","url_key":"strike-endurance-tee-m-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-M-Red","id":620,"status":1,"name":"Strike Endurance Tee-M-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"58","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","url_key":"strike-endurance-tee-m-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-L-Black","id":621,"status":1,"name":"Strike Endurance Tee-L-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","url_key":"strike-endurance-tee-l-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-L-Blue","id":622,"status":1,"name":"Strike Endurance Tee-L-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","url_key":"strike-endurance-tee-l-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-L-Red","id":623,"status":1,"name":"Strike Endurance Tee-L-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"58","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","url_key":"strike-endurance-tee-l-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-XL-Black","id":624,"status":1,"name":"Strike Endurance Tee-XL-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","url_key":"strike-endurance-tee-xl-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-XL-Blue","id":625,"status":1,"name":"Strike Endurance Tee-XL-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","url_key":"strike-endurance-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS08-XL-Red","id":626,"status":1,"name":"Strike Endurance Tee-XL-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"58","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","url_key":"strike-endurance-tee-xl-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39}],"configurable_options":[{"id":73,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":627,"attribute_code":"color"},{"id":72,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":627,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-627.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"611","_score":1,"_source":{"id":611,"sku":"MS07","name":"Deion Long-Sleeve EverCool™ Tee","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"deion-long-sleeve-evercool-trade-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,153,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,204,205,209],"slug":"deion-long-sleeve-evercool-and-trade-tee-611","links":{},"stock":{"item_id":611,"product_id":611,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS07-XS-Black","id":596,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-XS-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MS07-XS-Green","id":597,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-XS-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"53","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-xs-green","msrp_display_actual_price_type":"0"},{"sku":"MS07-XS-White","id":598,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-XS-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"59","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-xs-white","msrp_display_actual_price_type":"0"},{"sku":"MS07-S-Black","id":599,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-S-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-s-black","msrp_display_actual_price_type":"0"},{"sku":"MS07-S-Green","id":600,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-S-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"53","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-s-green","msrp_display_actual_price_type":"0"},{"sku":"MS07-S-White","id":601,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-S-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"59","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-s-white","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS07-M-Black","id":602,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-M-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-m-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS07-M-Green","id":603,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-M-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"53","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-m-green","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS07-M-White","id":604,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-M-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"59","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-m-white","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS07-L-Black","id":605,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-L-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-l-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS07-L-Green","id":606,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-L-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"53","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-l-green","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS07-L-White","id":607,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-L-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"59","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-l-white","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS07-XL-Black","id":608,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-XL-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-xl-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS07-XL-Green","id":609,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-XL-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"53","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-xl-green","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"MS07-XL-White","id":610,"status":1,"name":"Deion Long-Sleeve EverCool™ Tee-XL-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"59","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","url_key":"deion-long-sleeve-evercool-trade-tee-xl-white","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39}],"configurable_options":[{"id":71,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":59,"label":"White"}],"product_id":611,"attribute_code":"color"},{"id":70,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":611,"attribute_code":"size"}],"color_options":[49,53,59],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-611.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"643","_score":1,"_source":{"id":643,"sku":"MT01","name":"Erikssen CoolTech™ Fitness Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"erikssen-cooltech-trade-fitness-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,152,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"erikssen-cooltech-and-trade-fitness-tank-643","links":{},"stock":{"item_id":643,"product_id":643,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT01-XS-Gray","id":628,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-XS-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"52","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-xs-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-XS-Orange","id":629,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-XS-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"56","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-xs-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-XS-Red","id":630,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"58","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-xs-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-S-Gray","id":631,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-S-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"52","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-s-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-S-Orange","id":632,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-S-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"56","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-s-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-S-Red","id":633,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"58","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-s-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-M-Gray","id":634,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-M-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"52","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-m-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-M-Orange","id":635,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-M-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"56","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-m-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-M-Red","id":636,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"58","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-m-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-L-Gray","id":637,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-L-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"52","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-l-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-L-Orange","id":638,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-L-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"56","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-l-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-L-Red","id":639,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"58","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-l-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-XL-Gray","id":640,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-XL-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"52","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-xl-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-XL-Orange","id":641,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-XL-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"56","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-xl-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT01-XL-Red","id":642,"status":1,"name":"Erikssen CoolTech™ Fitness Tank-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"58","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","url_key":"erikssen-cooltech-trade-fitness-tank-xl-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":75,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":643,"attribute_code":"color"},{"id":74,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":643,"attribute_code":"size"}],"color_options":[52,56,58],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-643.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"563","_score":1,"_source":{"id":563,"sku":"MS01","name":"Aero Daily Fitness Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-blue_main.jpg","small_image":"/m/s/ms01-blue_main.jpg","thumbnail":"/m/s/ms01-blue_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"aero-daily-fitness-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"aero-daily-fitness-tee-563","links":{},"stock":{"item_id":563,"product_id":563,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS01-XS-Black","id":548,"status":1,"name":"Aero Daily Fitness Tee-XS-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","url_key":"aero-daily-fitness-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MS01-XS-Brown","id":549,"status":1,"name":"Aero Daily Fitness Tee-XS-Brown","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"51","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","url_key":"aero-daily-fitness-tee-xs-brown","msrp_display_actual_price_type":"0"},{"sku":"MS01-XS-Yellow","id":550,"status":1,"name":"Aero Daily Fitness Tee-XS-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"60","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","url_key":"aero-daily-fitness-tee-xs-yellow","msrp_display_actual_price_type":"0"},{"sku":"MS01-S-Black","id":551,"status":1,"name":"Aero Daily Fitness Tee-S-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","url_key":"aero-daily-fitness-tee-s-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS01-S-Brown","id":552,"status":1,"name":"Aero Daily Fitness Tee-S-Brown","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"51","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","url_key":"aero-daily-fitness-tee-s-brown","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS01-S-Yellow","id":553,"status":1,"name":"Aero Daily Fitness Tee-S-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"60","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","url_key":"aero-daily-fitness-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS01-M-Black","id":554,"status":1,"name":"Aero Daily Fitness Tee-M-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","url_key":"aero-daily-fitness-tee-m-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS01-M-Brown","id":555,"status":1,"name":"Aero Daily Fitness Tee-M-Brown","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"51","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","url_key":"aero-daily-fitness-tee-m-brown","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS01-M-Yellow","id":556,"status":1,"name":"Aero Daily Fitness Tee-M-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"60","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","url_key":"aero-daily-fitness-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS01-L-Black","id":557,"status":1,"name":"Aero Daily Fitness Tee-L-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","url_key":"aero-daily-fitness-tee-l-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS01-L-Brown","id":558,"status":1,"name":"Aero Daily Fitness Tee-L-Brown","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"51","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","url_key":"aero-daily-fitness-tee-l-brown","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS01-L-Yellow","id":559,"status":1,"name":"Aero Daily Fitness Tee-L-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"60","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","url_key":"aero-daily-fitness-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS01-XL-Black","id":560,"status":1,"name":"Aero Daily Fitness Tee-XL-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","url_key":"aero-daily-fitness-tee-xl-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS01-XL-Brown","id":561,"status":1,"name":"Aero Daily Fitness Tee-XL-Brown","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"51","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","url_key":"aero-daily-fitness-tee-xl-brown","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS01-XL-Yellow","id":562,"status":1,"name":"Aero Daily Fitness Tee-XL-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"60","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","url_key":"aero-daily-fitness-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24}],"configurable_options":[{"id":65,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":51,"label":"Brown"},{"value_index":60,"label":"Yellow"}],"product_id":563,"attribute_code":"color"},{"id":64,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":563,"attribute_code":"size"}],"color_options":[49,51,60],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-563.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"579","_score":1,"_source":{"id":579,"sku":"MS02","name":"Ryker LumaTech™ Tee (V-neck)","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ryker-lumatech-trade-tee-v-neck","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,33,39],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"ryker-lumatech-and-trade-tee-v-neck-579","links":{},"stock":{"item_id":579,"product_id":579,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS02-XS-Black","id":564,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-XS-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-xs-black","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-XS-Blue","id":565,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-XS-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-xs-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-XS-Gray","id":566,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-XS-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"52","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-xs-gray","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-S-Black","id":567,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-S-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-s-black","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-S-Blue","id":568,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-S-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-s-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-S-Gray","id":569,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-S-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"52","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-s-gray","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-M-Black","id":570,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-M-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-m-black","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-M-Blue","id":571,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-M-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-m-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-M-Gray","id":572,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-M-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"52","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-m-gray","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-L-Black","id":573,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-L-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-l-black","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-L-Blue","id":574,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-L-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-l-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-L-Gray","id":575,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-L-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"52","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-l-gray","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-XL-Black","id":576,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-XL-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-xl-black","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-XL-Blue","id":577,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-XL-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-xl-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS02-XL-Gray","id":578,"status":1,"name":"Ryker LumaTech™ Tee (V-neck)-XL-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"52","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","url_key":"ryker-lumatech-trade-tee-v-neck-xl-gray","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28}],"configurable_options":[{"id":67,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"}],"product_id":579,"attribute_code":"color"},{"id":66,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":579,"attribute_code":"size"}],"color_options":[49,50,52],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-579.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"595","_score":1,"_source":{"id":595,"sku":"MS10","name":"Logan HeatTec® Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"logan-heattec-reg-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,152],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"logan-heattec-and-reg-tee-595","links":{},"stock":{"item_id":595,"product_id":595,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS10-XS-Black","id":580,"status":1,"name":"Logan HeatTec® Tee-XS-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","url_key":"logan-heattec-reg-tee-xs-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-XS-Blue","id":581,"status":1,"name":"Logan HeatTec® Tee-XS-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","url_key":"logan-heattec-reg-tee-xs-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-XS-Red","id":582,"status":1,"name":"Logan HeatTec® Tee-XS-Red","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"58","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","url_key":"logan-heattec-reg-tee-xs-red","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-S-Black","id":583,"status":1,"name":"Logan HeatTec® Tee-S-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","url_key":"logan-heattec-reg-tee-s-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-S-Blue","id":584,"status":1,"name":"Logan HeatTec® Tee-S-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","url_key":"logan-heattec-reg-tee-s-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-S-Red","id":585,"status":1,"name":"Logan HeatTec® Tee-S-Red","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"58","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","url_key":"logan-heattec-reg-tee-s-red","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-M-Black","id":586,"status":1,"name":"Logan HeatTec® Tee-M-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","url_key":"logan-heattec-reg-tee-m-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-M-Blue","id":587,"status":1,"name":"Logan HeatTec® Tee-M-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","url_key":"logan-heattec-reg-tee-m-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-M-Red","id":588,"status":1,"name":"Logan HeatTec® Tee-M-Red","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"58","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","url_key":"logan-heattec-reg-tee-m-red","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-L-Black","id":589,"status":1,"name":"Logan HeatTec® Tee-L-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","url_key":"logan-heattec-reg-tee-l-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-L-Blue","id":590,"status":1,"name":"Logan HeatTec® Tee-L-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","url_key":"logan-heattec-reg-tee-l-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-L-Red","id":591,"status":1,"name":"Logan HeatTec® Tee-L-Red","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"58","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","url_key":"logan-heattec-reg-tee-l-red","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-XL-Black","id":592,"status":1,"name":"Logan HeatTec® Tee-XL-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","url_key":"logan-heattec-reg-tee-xl-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-XL-Blue","id":593,"status":1,"name":"Logan HeatTec® Tee-XL-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","url_key":"logan-heattec-reg-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS10-XL-Red","id":594,"status":1,"name":"Logan HeatTec® Tee-XL-Red","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"58","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","url_key":"logan-heattec-reg-tee-xl-red","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24}],"configurable_options":[{"id":69,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":595,"attribute_code":"color"},{"id":68,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":595,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-595.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"572","_score":1,"_source":{"id":572,"sku":"MS02-M-Gray","name":"Ryker LumaTech™ Tee (V-neck)-M-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-v-neck-m-gray-572","links":{},"stock":{"item_id":572,"product_id":572,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-m-gray-572.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"577","_score":1,"_source":{"id":577,"sku":"MS02-XL-Blue","name":"Ryker LumaTech™ Tee (V-neck)-XL-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-v-neck-xl-blue-577","links":{},"stock":{"item_id":577,"product_id":577,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xl-blue-577.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"584","_score":1,"_source":{"id":584,"sku":"MS10-S-Blue","name":"Logan HeatTec® Tee-S-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"logan-heattec-and-reg-tee-s-blue-584","links":{},"stock":{"item_id":584,"product_id":584,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-s-blue-584.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"580","_score":1,"_source":{"id":580,"sku":"MS10-XS-Black","name":"Logan HeatTec® Tee-XS-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"logan-heattec-and-reg-tee-xs-black-580","links":{},"stock":{"item_id":580,"product_id":580,"stock_id":1,"qty":2,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xs-black-580.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"554","_score":1,"_source":{"id":554,"sku":"MS01-M-Black","name":"Aero Daily Fitness Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"aero-daily-fitness-tee-m-black-554","links":{},"stock":{"item_id":554,"product_id":554,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-m-black-554.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"581","_score":1,"_source":{"id":581,"sku":"MS10-XS-Blue","name":"Logan HeatTec® Tee-XS-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"logan-heattec-and-reg-tee-xs-blue-581","links":{},"stock":{"item_id":581,"product_id":581,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xs-blue-581.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"598","_score":1,"_source":{"id":598,"sku":"MS07-XS-White","name":"Deion Long-Sleeve EverCool™ Tee-XS-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"deion-long-sleeve-evercool-and-trade-tee-xs-white-598","links":{},"stock":{"item_id":598,"product_id":598,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xs-white-598.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"553","_score":1,"_source":{"id":553,"sku":"MS01-S-Yellow","name":"Aero Daily Fitness Tee-S-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"aero-daily-fitness-tee-s-yellow-553","links":{},"stock":{"item_id":553,"product_id":553,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-s-yellow-553.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"582","_score":1,"_source":{"id":582,"sku":"MS10-XS-Red","name":"Logan HeatTec® Tee-XS-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"logan-heattec-and-reg-tee-xs-red-582","links":{},"stock":{"item_id":582,"product_id":582,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xs-red-582.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"569","_score":1,"_source":{"id":569,"sku":"MS02-S-Gray","name":"Ryker LumaTech™ Tee (V-neck)-S-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-v-neck-s-gray-569","links":{},"stock":{"item_id":569,"product_id":569,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-s-gray-569.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"566","_score":1,"_source":{"id":566,"sku":"MS02-XS-Gray","name":"Ryker LumaTech™ Tee (V-neck)-XS-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-v-neck-xs-gray-566","links":{},"stock":{"item_id":566,"product_id":566,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xs-gray-566.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"564","_score":1,"_source":{"id":564,"sku":"MS02-XS-Black","name":"Ryker LumaTech™ Tee (V-neck)-XS-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-v-neck-xs-black-564","links":{},"stock":{"item_id":564,"product_id":564,"stock_id":1,"qty":63,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xs-black-564.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"551","_score":1,"_source":{"id":551,"sku":"MS01-S-Black","name":"Aero Daily Fitness Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"aero-daily-fitness-tee-s-black-551","links":{},"stock":{"item_id":551,"product_id":551,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-s-black-551.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"583","_score":1,"_source":{"id":583,"sku":"MS10-S-Black","name":"Logan HeatTec® Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"logan-heattec-and-reg-tee-s-black-583","links":{},"stock":{"item_id":583,"product_id":583,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-s-black-583.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"574","_score":1,"_source":{"id":574,"sku":"MS02-L-Blue","name":"Ryker LumaTech™ Tee (V-neck)-L-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-v-neck-l-blue-574","links":{},"stock":{"item_id":574,"product_id":574,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-l-blue-574.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"586","_score":1,"_source":{"id":586,"sku":"MS10-M-Black","name":"Logan HeatTec® Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"logan-heattec-and-reg-tee-m-black-586","links":{},"stock":{"item_id":586,"product_id":586,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-m-black-586.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"561","_score":1,"_source":{"id":561,"sku":"MS01-XL-Brown","name":"Aero Daily Fitness Tee-XL-Brown","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xl-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"aero-daily-fitness-tee-xl-brown-561","links":{},"stock":{"item_id":561,"product_id":561,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms01-brown_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xl-brown-561.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"596","_score":1,"_source":{"id":596,"sku":"MS07-XS-Black","name":"Deion Long-Sleeve EverCool™ Tee-XS-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"deion-long-sleeve-evercool-and-trade-tee-xs-black-596","links":{},"stock":{"item_id":596,"product_id":596,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-06-26 15:20:32","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xs-black-596.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"578","_score":1,"_source":{"id":578,"sku":"MS02-XL-Gray","name":"Ryker LumaTech™ Tee (V-neck)-XL-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-v-neck-xl-gray-578","links":{},"stock":{"item_id":578,"product_id":578,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xl-gray-578.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"589","_score":1,"_source":{"id":589,"sku":"MS10-L-Black","name":"Logan HeatTec® Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"logan-heattec-and-reg-tee-l-black-589","links":{},"stock":{"item_id":589,"product_id":589,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-l-black-589.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"592","_score":1,"_source":{"id":592,"sku":"MS10-XL-Black","name":"Logan HeatTec® Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"logan-heattec-and-reg-tee-xl-black-592","links":{},"stock":{"item_id":592,"product_id":592,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xl-black-592.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"571","_score":1,"_source":{"id":571,"sku":"MS02-M-Blue","name":"Ryker LumaTech™ Tee (V-neck)-M-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-v-neck-m-blue-571","links":{},"stock":{"item_id":571,"product_id":571,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-m-blue-571.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"588","_score":1,"_source":{"id":588,"sku":"MS10-M-Red","name":"Logan HeatTec® Tee-M-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"logan-heattec-and-reg-tee-m-red-588","links":{},"stock":{"item_id":588,"product_id":588,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-m-red-588.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"585","_score":1,"_source":{"id":585,"sku":"MS10-S-Red","name":"Logan HeatTec® Tee-S-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"logan-heattec-and-reg-tee-s-red-585","links":{},"stock":{"item_id":585,"product_id":585,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-s-red-585.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"591","_score":1,"_source":{"id":591,"sku":"MS10-L-Red","name":"Logan HeatTec® Tee-L-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"logan-heattec-and-reg-tee-l-red-591","links":{},"stock":{"item_id":591,"product_id":591,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-l-red-591.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"590","_score":1,"_source":{"id":590,"sku":"MS10-L-Blue","name":"Logan HeatTec® Tee-L-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"logan-heattec-and-reg-tee-l-blue-590","links":{},"stock":{"item_id":590,"product_id":590,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-l-blue-590.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"594","_score":1,"_source":{"id":594,"sku":"MS10-XL-Red","name":"Logan HeatTec® Tee-XL-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"logan-heattec-and-reg-tee-xl-red-594","links":{},"stock":{"item_id":594,"product_id":594,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xl-red-594.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"599","_score":1,"_source":{"id":599,"sku":"MS07-S-Black","name":"Deion Long-Sleeve EverCool™ Tee-S-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"deion-long-sleeve-evercool-and-trade-tee-s-black-599","links":{},"stock":{"item_id":599,"product_id":599,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-s-black-599.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"593","_score":1,"_source":{"id":593,"sku":"MS10-XL-Blue","name":"Logan HeatTec® Tee-XL-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"logan-heattec-and-reg-tee-xl-blue-593","links":{},"stock":{"item_id":593,"product_id":593,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xl-blue-593.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"600","_score":1,"_source":{"id":600,"sku":"MS07-S-Green","name":"Deion Long-Sleeve EverCool™ Tee-S-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"deion-long-sleeve-evercool-and-trade-tee-s-green-600","links":{},"stock":{"item_id":600,"product_id":600,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-s-green-600.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"597","_score":1,"_source":{"id":597,"sku":"MS07-XS-Green","name":"Deion Long-Sleeve EverCool™ Tee-XS-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"deion-long-sleeve-evercool-and-trade-tee-xs-green-597","links":{},"stock":{"item_id":597,"product_id":597,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xs-green-597.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"619","_score":1,"_source":{"id":619,"sku":"MS08-M-Blue","name":"Strike Endurance Tee-M-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"strike-endurance-tee-m-blue-619","links":{},"stock":{"item_id":619,"product_id":619,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-m-blue-619.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"606","_score":1,"_source":{"id":606,"sku":"MS07-L-Green","name":"Deion Long-Sleeve EverCool™ Tee-L-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"deion-long-sleeve-evercool-and-trade-tee-l-green-606","links":{},"stock":{"item_id":606,"product_id":606,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-l-green-606.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"623","_score":1,"_source":{"id":623,"sku":"MS08-L-Red","name":"Strike Endurance Tee-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"strike-endurance-tee-l-red-623","links":{},"stock":{"item_id":623,"product_id":623,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-l-red-623.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"635","_score":1,"_source":{"id":635,"sku":"MT01-M-Orange","name":"Erikssen CoolTech™ Fitness Tank-M-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erikssen-cooltech-and-trade-fitness-tank-m-orange-635","links":{},"stock":{"item_id":635,"product_id":635,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-m-orange-635.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"639","_score":1,"_source":{"id":639,"sku":"MT01-L-Red","name":"Erikssen CoolTech™ Fitness Tank-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erikssen-cooltech-and-trade-fitness-tank-l-red-639","links":{},"stock":{"item_id":639,"product_id":639,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-l-red-639.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"614","_score":1,"_source":{"id":614,"sku":"MS08-XS-Red","name":"Strike Endurance Tee-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"strike-endurance-tee-xs-red-614","links":{},"stock":{"item_id":614,"product_id":614,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xs-red-614.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"644","_score":1,"_source":{"id":644,"sku":"MT02-XS-Gray","name":"Tristan Endurance Tank-XS-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tristan-endurance-tank-xs-gray-644","links":{},"stock":{"item_id":644,"product_id":644,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xs-gray-644.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"602","_score":1,"_source":{"id":602,"sku":"MS07-M-Black","name":"Deion Long-Sleeve EverCool™ Tee-M-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"deion-long-sleeve-evercool-and-trade-tee-m-black-602","links":{},"stock":{"item_id":602,"product_id":602,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-m-black-602.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"640","_score":1,"_source":{"id":640,"sku":"MT01-XL-Gray","name":"Erikssen CoolTech™ Fitness Tank-XL-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erikssen-cooltech-and-trade-fitness-tank-xl-gray-640","links":{},"stock":{"item_id":640,"product_id":640,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xl-gray-640.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"632","_score":1,"_source":{"id":632,"sku":"MT01-S-Orange","name":"Erikssen CoolTech™ Fitness Tank-S-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erikssen-cooltech-and-trade-fitness-tank-s-orange-632","links":{},"stock":{"item_id":632,"product_id":632,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-s-orange-632.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"636","_score":1,"_source":{"id":636,"sku":"MT01-M-Red","name":"Erikssen CoolTech™ Fitness Tank-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erikssen-cooltech-and-trade-fitness-tank-m-red-636","links":{},"stock":{"item_id":636,"product_id":636,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-m-red-636.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"637","_score":1,"_source":{"id":637,"sku":"MT01-L-Gray","name":"Erikssen CoolTech™ Fitness Tank-L-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erikssen-cooltech-and-trade-fitness-tank-l-gray-637","links":{},"stock":{"item_id":637,"product_id":637,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-l-gray-637.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"645","_score":1,"_source":{"id":645,"sku":"MT02-XS-Red","name":"Tristan Endurance Tank-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tristan-endurance-tank-xs-red-645","links":{},"stock":{"item_id":645,"product_id":645,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xs-red-645.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"618","_score":1,"_source":{"id":618,"sku":"MS08-M-Black","name":"Strike Endurance Tee-M-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"strike-endurance-tee-m-black-618","links":{},"stock":{"item_id":618,"product_id":618,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-m-black-618.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"620","_score":1,"_source":{"id":620,"sku":"MS08-M-Red","name":"Strike Endurance Tee-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"strike-endurance-tee-m-red-620","links":{},"stock":{"item_id":620,"product_id":620,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-m-red-620.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"633","_score":1,"_source":{"id":633,"sku":"MT01-S-Red","name":"Erikssen CoolTech™ Fitness Tank-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erikssen-cooltech-and-trade-fitness-tank-s-red-633","links":{},"stock":{"item_id":633,"product_id":633,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-s-red-633.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"630","_score":1,"_source":{"id":630,"sku":"MT01-XS-Red","name":"Erikssen CoolTech™ Fitness Tank-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erikssen-cooltech-and-trade-fitness-tank-xs-red-630","links":{},"stock":{"item_id":630,"product_id":630,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xs-red-630.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"628","_score":1,"_source":{"id":628,"sku":"MT01-XS-Gray","name":"Erikssen CoolTech™ Fitness Tank-XS-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erikssen-cooltech-and-trade-fitness-tank-xs-gray-628","links":{},"stock":{"item_id":628,"product_id":628,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xs-gray-628.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"638","_score":1,"_source":{"id":638,"sku":"MT01-L-Orange","name":"Erikssen CoolTech™ Fitness Tank-L-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erikssen-cooltech-and-trade-fitness-tank-l-orange-638","links":{},"stock":{"item_id":638,"product_id":638,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-l-orange-638.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"626","_score":1,"_source":{"id":626,"sku":"MS08-XL-Red","name":"Strike Endurance Tee-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"strike-endurance-tee-xl-red-626","links":{},"stock":{"item_id":626,"product_id":626,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xl-red-626.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"634","_score":1,"_source":{"id":634,"sku":"MT01-M-Gray","name":"Erikssen CoolTech™ Fitness Tank-M-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erikssen-cooltech-and-trade-fitness-tank-m-gray-634","links":{},"stock":{"item_id":634,"product_id":634,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-m-gray-634.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"605","_score":1,"_source":{"id":605,"sku":"MS07-L-Black","name":"Deion Long-Sleeve EverCool™ Tee-L-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"deion-long-sleeve-evercool-and-trade-tee-l-black-605","links":{},"stock":{"item_id":605,"product_id":605,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-l-black-605.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"604","_score":1,"_source":{"id":604,"sku":"MS07-M-White","name":"Deion Long-Sleeve EverCool™ Tee-M-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"deion-long-sleeve-evercool-and-trade-tee-m-white-604","links":{},"stock":{"item_id":604,"product_id":604,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-m-white-604.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"612","_score":1,"_source":{"id":612,"sku":"MS08-XS-Black","name":"Strike Endurance Tee-XS-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"strike-endurance-tee-xs-black-612","links":{},"stock":{"item_id":612,"product_id":612,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-03-12 11:23:38","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xs-black-612.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"615","_score":1,"_source":{"id":615,"sku":"MS08-S-Black","name":"Strike Endurance Tee-S-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"strike-endurance-tee-s-black-615","links":{},"stock":{"item_id":615,"product_id":615,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-s-black-615.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"622","_score":1,"_source":{"id":622,"sku":"MS08-L-Blue","name":"Strike Endurance Tee-L-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"strike-endurance-tee-l-blue-622","links":{},"stock":{"item_id":622,"product_id":622,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-l-blue-622.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"601","_score":1,"_source":{"id":601,"sku":"MS07-S-White","name":"Deion Long-Sleeve EverCool™ Tee-S-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"deion-long-sleeve-evercool-and-trade-tee-s-white-601","links":{},"stock":{"item_id":601,"product_id":601,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-s-white-601.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"631","_score":1,"_source":{"id":631,"sku":"MT01-S-Gray","name":"Erikssen CoolTech™ Fitness Tank-S-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erikssen-cooltech-and-trade-fitness-tank-s-gray-631","links":{},"stock":{"item_id":631,"product_id":631,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-s-gray-631.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"610","_score":1,"_source":{"id":610,"sku":"MS07-XL-White","name":"Deion Long-Sleeve EverCool™ Tee-XL-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"deion-long-sleeve-evercool-and-trade-tee-xl-white-610","links":{},"stock":{"item_id":610,"product_id":610,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xl-white-610.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"608","_score":1,"_source":{"id":608,"sku":"MS07-XL-Black","name":"Deion Long-Sleeve EverCool™ Tee-XL-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"deion-long-sleeve-evercool-and-trade-tee-xl-black-608","links":{},"stock":{"item_id":608,"product_id":608,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xl-black-608.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"603","_score":1,"_source":{"id":603,"sku":"MS07-M-Green","name":"Deion Long-Sleeve EverCool™ Tee-M-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"deion-long-sleeve-evercool-and-trade-tee-m-green-603","links":{},"stock":{"item_id":603,"product_id":603,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-m-green-603.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"616","_score":1,"_source":{"id":616,"sku":"MS08-S-Blue","name":"Strike Endurance Tee-S-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"strike-endurance-tee-s-blue-616","links":{},"stock":{"item_id":616,"product_id":616,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-s-blue-616.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"621","_score":1,"_source":{"id":621,"sku":"MS08-L-Black","name":"Strike Endurance Tee-L-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"strike-endurance-tee-l-black-621","links":{},"stock":{"item_id":621,"product_id":621,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-l-black-621.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"613","_score":1,"_source":{"id":613,"sku":"MS08-XS-Blue","name":"Strike Endurance Tee-XS-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"strike-endurance-tee-xs-blue-613","links":{},"stock":{"item_id":613,"product_id":613,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xs-blue-613.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"607","_score":1,"_source":{"id":607,"sku":"MS07-L-White","name":"Deion Long-Sleeve EverCool™ Tee-L-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"deion-long-sleeve-evercool-and-trade-tee-l-white-607","links":{},"stock":{"item_id":607,"product_id":607,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-l-white-607.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"624","_score":1,"_source":{"id":624,"sku":"MS08-XL-Black","name":"Strike Endurance Tee-XL-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"strike-endurance-tee-xl-black-624","links":{},"stock":{"item_id":624,"product_id":624,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xl-black-624.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"609","_score":1,"_source":{"id":609,"sku":"MS07-XL-Green","name":"Deion Long-Sleeve EverCool™ Tee-XL-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"deion-long-sleeve-evercool-and-trade-tee-xl-green-609","links":{},"stock":{"item_id":609,"product_id":609,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xl-green-609.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"573","_score":1,"_source":{"id":573,"sku":"MS02-L-Black","name":"Ryker LumaTech™ Tee (V-neck)-L-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-v-neck-l-black-573","links":{},"stock":{"item_id":573,"product_id":573,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-l-black-573.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"568","_score":1,"_source":{"id":568,"sku":"MS02-S-Blue","name":"Ryker LumaTech™ Tee (V-neck)-S-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-v-neck-s-blue-568","links":{},"stock":{"item_id":568,"product_id":568,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-s-blue-568.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"552","_score":1,"_source":{"id":552,"sku":"MS01-S-Brown","name":"Aero Daily Fitness Tee-S-Brown","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-s-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"aero-daily-fitness-tee-s-brown-552","links":{},"stock":{"item_id":552,"product_id":552,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms01-brown_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-s-brown-552.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"556","_score":1,"_source":{"id":556,"sku":"MS01-M-Yellow","name":"Aero Daily Fitness Tee-M-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"aero-daily-fitness-tee-m-yellow-556","links":{},"stock":{"item_id":556,"product_id":556,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-m-yellow-556.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"562","_score":1,"_source":{"id":562,"sku":"MS01-XL-Yellow","name":"Aero Daily Fitness Tee-XL-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"aero-daily-fitness-tee-xl-yellow-562","links":{},"stock":{"item_id":562,"product_id":562,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xl-yellow-562.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"575","_score":1,"_source":{"id":575,"sku":"MS02-L-Gray","name":"Ryker LumaTech™ Tee (V-neck)-L-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-v-neck-l-gray-575","links":{},"stock":{"item_id":575,"product_id":575,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-l-gray-575.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"559","_score":1,"_source":{"id":559,"sku":"MS01-L-Yellow","name":"Aero Daily Fitness Tee-L-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"aero-daily-fitness-tee-l-yellow-559","links":{},"stock":{"item_id":559,"product_id":559,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-l-yellow-559.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"560","_score":1,"_source":{"id":560,"sku":"MS01-XL-Black","name":"Aero Daily Fitness Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"aero-daily-fitness-tee-xl-black-560","links":{},"stock":{"item_id":560,"product_id":560,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xl-black-560.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"576","_score":1,"_source":{"id":576,"sku":"MS02-XL-Black","name":"Ryker LumaTech™ Tee (V-neck)-XL-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-v-neck-xl-black-576","links":{},"stock":{"item_id":576,"product_id":576,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xl-black-576.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"557","_score":1,"_source":{"id":557,"sku":"MS01-L-Black","name":"Aero Daily Fitness Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"aero-daily-fitness-tee-l-black-557","links":{},"stock":{"item_id":557,"product_id":557,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-l-black-557.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"558","_score":1,"_source":{"id":558,"sku":"MS01-L-Brown","name":"Aero Daily Fitness Tee-L-Brown","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-l-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"aero-daily-fitness-tee-l-brown-558","links":{},"stock":{"item_id":558,"product_id":558,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms01-brown_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-l-brown-558.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"555","_score":1,"_source":{"id":555,"sku":"MS01-M-Brown","name":"Aero Daily Fitness Tee-M-Brown","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-m-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"aero-daily-fitness-tee-m-brown-555","links":{},"stock":{"item_id":555,"product_id":555,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms01-brown_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-m-brown-555.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"570","_score":1,"_source":{"id":570,"sku":"MS02-M-Black","name":"Ryker LumaTech™ Tee (V-neck)-M-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-v-neck-m-black-570","links":{},"stock":{"item_id":570,"product_id":570,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-m-black-570.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"565","_score":1,"_source":{"id":565,"sku":"MS02-XS-Blue","name":"Ryker LumaTech™ Tee (V-neck)-XS-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-v-neck-xs-blue-565","links":{},"stock":{"item_id":565,"product_id":565,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xs-blue-565.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"567","_score":1,"_source":{"id":567,"sku":"MS02-S-Black","name":"Ryker LumaTech™ Tee (V-neck)-S-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-v-neck-s-black-567","links":{},"stock":{"item_id":567,"product_id":567,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-s-black-567.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"587","_score":1,"_source":{"id":587,"sku":"MS10-M-Blue","name":"Logan HeatTec® Tee-M-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"logan-heattec-and-reg-tee-m-blue-587","links":{},"stock":{"item_id":587,"product_id":587,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-m-blue-587.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"617","_score":1,"_source":{"id":617,"sku":"MS08-S-Red","name":"Strike Endurance Tee-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"strike-endurance-tee-s-red-617","links":{},"stock":{"item_id":617,"product_id":617,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-s-red-617.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"629","_score":1,"_source":{"id":629,"sku":"MT01-XS-Orange","name":"Erikssen CoolTech™ Fitness Tank-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erikssen-cooltech-and-trade-fitness-tank-xs-orange-629","links":{},"stock":{"item_id":629,"product_id":629,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xs-orange-629.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"648","_score":1,"_source":{"id":648,"sku":"MT02-S-Red","name":"Tristan Endurance Tank-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tristan-endurance-tank-s-red-648","links":{},"stock":{"item_id":648,"product_id":648,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-s-red-648.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"649","_score":1,"_source":{"id":649,"sku":"MT02-S-White","name":"Tristan Endurance Tank-S-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tristan-endurance-tank-s-white-649","links":{},"stock":{"item_id":649,"product_id":649,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-s-white-649.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"641","_score":1,"_source":{"id":641,"sku":"MT01-XL-Orange","name":"Erikssen CoolTech™ Fitness Tank-XL-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erikssen-cooltech-and-trade-fitness-tank-xl-orange-641","links":{},"stock":{"item_id":641,"product_id":641,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xl-orange-641.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"647","_score":1,"_source":{"id":647,"sku":"MT02-S-Gray","name":"Tristan Endurance Tank-S-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tristan-endurance-tank-s-gray-647","links":{},"stock":{"item_id":647,"product_id":647,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-s-gray-647.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"646","_score":1,"_source":{"id":646,"sku":"MT02-XS-White","name":"Tristan Endurance Tank-XS-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tristan-endurance-tank-xs-white-646","links":{},"stock":{"item_id":646,"product_id":646,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xs-white-646.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"650","_score":1,"_source":{"id":650,"sku":"MT02-M-Gray","name":"Tristan Endurance Tank-M-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tristan-endurance-tank-m-gray-650","links":{},"stock":{"item_id":650,"product_id":650,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-m-gray-650.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"625","_score":1,"_source":{"id":625,"sku":"MS08-XL-Blue","name":"Strike Endurance Tee-XL-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"strike-endurance-tee-xl-blue-625","links":{},"stock":{"item_id":625,"product_id":625,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xl-blue-625.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"642","_score":1,"_source":{"id":642,"sku":"MT01-XL-Red","name":"Erikssen CoolTech™ Fitness Tank-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erikssen-cooltech-and-trade-fitness-tank-xl-red-642","links":{},"tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"699","_score":1,"_source":{"id":699,"sku":"MT07","name":"Argus All-Weather Tank","attribute_set_id":9,"price":22,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

                            \n

                            • Dark gray polyester spandex tank.
                            • Reflective details for nighttime visibility.
                            • Stash pocket.
                            • Anti-chafe flatlock seams.

                            ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"argus-all-weather-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"argus-all-weather-tank-699","links":{},"stock":{"item_id":699,"product_id":699,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT07-XS-Gray","id":694,"status":1,"name":"Argus All-Weather Tank-XS-Gray","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"167","color":"52","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","url_key":"argus-all-weather-tank-xs-gray","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"MT07-S-Gray","id":695,"status":1,"name":"Argus All-Weather Tank-S-Gray","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"168","color":"52","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","url_key":"argus-all-weather-tank-s-gray","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"MT07-M-Gray","id":696,"status":1,"name":"Argus All-Weather Tank-M-Gray","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"169","color":"52","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","url_key":"argus-all-weather-tank-m-gray","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"MT07-L-Gray","id":697,"status":1,"name":"Argus All-Weather Tank-L-Gray","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"170","color":"52","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","url_key":"argus-all-weather-tank-l-gray","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"MT07-XL-Gray","id":698,"status":1,"name":"Argus All-Weather Tank-XL-Gray","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"171","color":"52","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","url_key":"argus-all-weather-tank-xl-gray","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22}],"configurable_options":[{"id":87,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"}],"product_id":699,"attribute_code":"color"},{"id":86,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":699,"attribute_code":"size"}],"color_options":[52],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-699.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"681","_score":1,"_source":{"id":681,"sku":"MT04","name":"Helios Endurance Tank","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

                            \n

                            • Blue heather tank with gray pocket.
                            • Contrast sides and back inserts.
                            • Self-fabric binding at neck and armholes.
                            • Machine wash/dry.

                            ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"helios-endurance-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"1","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"helios-endurance-tank-681","links":{},"stock":{"item_id":681,"product_id":681,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT04-XS-Blue","id":676,"status":1,"name":"Helios Endurance Tank-XS-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"50","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","url_key":"helios-endurance-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MT04-S-Blue","id":677,"status":1,"name":"Helios Endurance Tank-S-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"50","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","url_key":"helios-endurance-tank-s-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MT04-M-Blue","id":678,"status":1,"name":"Helios Endurance Tank-M-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"50","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","url_key":"helios-endurance-tank-m-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MT04-L-Blue","id":679,"status":1,"name":"Helios Endurance Tank-L-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"50","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","url_key":"helios-endurance-tank-l-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MT04-XL-Blue","id":680,"status":1,"name":"Helios Endurance Tank-XL-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"50","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","url_key":"helios-endurance-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32}],"configurable_options":[{"id":81,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"}],"product_id":681,"attribute_code":"color"},{"id":80,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":681,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-681.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"675","_score":1,"_source":{"id":675,"sku":"MT03","name":"Primo Endurance Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"primo-endurance-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"primo-endurance-tank-675","links":{},"stock":{"item_id":675,"product_id":675,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT03-XS-Blue","id":660,"status":1,"name":"Primo Endurance Tank-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"50","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","url_key":"primo-endurance-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-XS-Red","id":661,"status":1,"name":"Primo Endurance Tank-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"58","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","url_key":"primo-endurance-tank-xs-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-XS-Yellow","id":662,"status":1,"name":"Primo Endurance Tank-XS-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"60","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","url_key":"primo-endurance-tank-xs-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-S-Blue","id":663,"status":1,"name":"Primo Endurance Tank-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"50","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","url_key":"primo-endurance-tank-s-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-S-Red","id":664,"status":1,"name":"Primo Endurance Tank-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"58","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","url_key":"primo-endurance-tank-s-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-S-Yellow","id":665,"status":1,"name":"Primo Endurance Tank-S-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"60","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","url_key":"primo-endurance-tank-s-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-M-Blue","id":666,"status":1,"name":"Primo Endurance Tank-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"50","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","url_key":"primo-endurance-tank-m-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-M-Red","id":667,"status":1,"name":"Primo Endurance Tank-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"58","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","url_key":"primo-endurance-tank-m-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-M-Yellow","id":668,"status":1,"name":"Primo Endurance Tank-M-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"60","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","url_key":"primo-endurance-tank-m-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-L-Blue","id":669,"status":1,"name":"Primo Endurance Tank-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"50","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","url_key":"primo-endurance-tank-l-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-L-Red","id":670,"status":1,"name":"Primo Endurance Tank-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"58","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","url_key":"primo-endurance-tank-l-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-L-Yellow","id":671,"status":1,"name":"Primo Endurance Tank-L-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"60","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","url_key":"primo-endurance-tank-l-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-XL-Blue","id":672,"status":1,"name":"Primo Endurance Tank-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"50","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","url_key":"primo-endurance-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-XL-Red","id":673,"status":1,"name":"Primo Endurance Tank-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"58","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","url_key":"primo-endurance-tank-xl-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT03-XL-Yellow","id":674,"status":1,"name":"Primo Endurance Tank-XL-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"60","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","url_key":"primo-endurance-tank-xl-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":79,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":675,"attribute_code":"color"},{"id":78,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":675,"attribute_code":"size"}],"color_options":[50,58,60],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-675.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"659","_score":1,"_source":{"id":659,"sku":"MT02","name":"Tristan Endurance Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"tristan-endurance-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,149,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"tristan-endurance-tank-659","links":{},"stock":{"item_id":659,"product_id":659,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT02-XS-Gray","id":644,"status":1,"name":"Tristan Endurance Tank-XS-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"52","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","url_key":"tristan-endurance-tank-xs-gray","msrp_display_actual_price_type":"0"},{"sku":"MT02-XS-Red","id":645,"status":1,"name":"Tristan Endurance Tank-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"58","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","url_key":"tristan-endurance-tank-xs-red","msrp_display_actual_price_type":"0"},{"sku":"MT02-XS-White","id":646,"status":1,"name":"Tristan Endurance Tank-XS-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"59","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","url_key":"tristan-endurance-tank-xs-white","msrp_display_actual_price_type":"0"},{"sku":"MT02-S-Gray","id":647,"status":1,"name":"Tristan Endurance Tank-S-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"52","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","url_key":"tristan-endurance-tank-s-gray","msrp_display_actual_price_type":"0"},{"sku":"MT02-S-Red","id":648,"status":1,"name":"Tristan Endurance Tank-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"58","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","url_key":"tristan-endurance-tank-s-red","msrp_display_actual_price_type":"0"},{"sku":"MT02-S-White","id":649,"status":1,"name":"Tristan Endurance Tank-S-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"59","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","url_key":"tristan-endurance-tank-s-white","msrp_display_actual_price_type":"0"},{"sku":"MT02-M-Gray","id":650,"status":1,"name":"Tristan Endurance Tank-M-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"52","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","url_key":"tristan-endurance-tank-m-gray","msrp_display_actual_price_type":"0"},{"sku":"MT02-M-Red","id":651,"status":1,"name":"Tristan Endurance Tank-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"58","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","url_key":"tristan-endurance-tank-m-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT02-M-White","id":652,"status":1,"name":"Tristan Endurance Tank-M-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"59","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","url_key":"tristan-endurance-tank-m-white","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT02-L-Gray","id":653,"status":1,"name":"Tristan Endurance Tank-L-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"52","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","url_key":"tristan-endurance-tank-l-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT02-L-Red","id":654,"status":1,"name":"Tristan Endurance Tank-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"58","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","url_key":"tristan-endurance-tank-l-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT02-L-White","id":655,"status":1,"name":"Tristan Endurance Tank-L-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"59","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","url_key":"tristan-endurance-tank-l-white","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT02-XL-Gray","id":656,"status":1,"name":"Tristan Endurance Tank-XL-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"52","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","url_key":"tristan-endurance-tank-xl-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT02-XL-Red","id":657,"status":1,"name":"Tristan Endurance Tank-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"58","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","url_key":"tristan-endurance-tank-xl-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT02-XL-White","id":658,"status":1,"name":"Tristan Endurance Tank-XL-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"59","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","url_key":"tristan-endurance-tank-xl-white","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":77,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":659,"attribute_code":"color"},{"id":76,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":659,"attribute_code":"size"}],"color_options":[52,58,59],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-659.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"693","_score":1,"_source":{"id":693,"sku":"MT06","name":"Vulcan Weightlifting Tank","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

                            \n

                            • Black polyester spandex tank.
                            • 100% polyester.
                            • Freedom of movement.
                            • No-chafe seams.

                            ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"vulcan-weightlifting-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"vulcan-weightlifting-tank-693","links":{},"stock":{"item_id":693,"product_id":693,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT06-XS-Black","id":688,"status":1,"name":"Vulcan Weightlifting Tank-XS-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"49","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","url_key":"vulcan-weightlifting-tank-xs-black","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MT06-S-Black","id":689,"status":1,"name":"Vulcan Weightlifting Tank-S-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"49","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","url_key":"vulcan-weightlifting-tank-s-black","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MT06-M-Black","id":690,"status":1,"name":"Vulcan Weightlifting Tank-M-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"49","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","url_key":"vulcan-weightlifting-tank-m-black","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MT06-L-Black","id":691,"status":1,"name":"Vulcan Weightlifting Tank-L-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"49","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","url_key":"vulcan-weightlifting-tank-l-black","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MT06-XL-Black","id":692,"status":1,"name":"Vulcan Weightlifting Tank-XL-Black","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"49","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","url_key":"vulcan-weightlifting-tank-xl-black","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28}],"configurable_options":[{"id":85,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"}],"product_id":693,"attribute_code":"color"},{"id":84,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":693,"attribute_code":"size"}],"color_options":[49],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-693.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"687","_score":1,"_source":{"id":687,"sku":"MT05","name":"Rocco Gym Tank","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

                            \n

                            • Light blue heather gray tank.
                            • Quick-drying, moisture-wicking.
                            • 4-way stretch construction.
                            • Flatlock seams prevent chafing.
                            • Mesh at back for breathability.
                            • 100% Polyester.
                            • UPF 50 protection.

                            ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"rocco-gym-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"rocco-gym-tank-687","links":{},"stock":{"item_id":687,"product_id":687,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT05-XS-Blue","id":682,"status":1,"name":"Rocco Gym Tank-XS-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"50","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","url_key":"rocco-gym-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MT05-S-Blue","id":683,"status":1,"name":"Rocco Gym Tank-S-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"50","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","url_key":"rocco-gym-tank-s-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MT05-M-Blue","id":684,"status":1,"name":"Rocco Gym Tank-M-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"50","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","url_key":"rocco-gym-tank-m-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MT05-L-Blue","id":685,"status":1,"name":"Rocco Gym Tank-L-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"50","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","url_key":"rocco-gym-tank-l-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MT05-XL-Blue","id":686,"status":1,"name":"Rocco Gym Tank-XL-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"50","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","url_key":"rocco-gym-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24}],"configurable_options":[{"id":83,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"}],"product_id":687,"attribute_code":"color"},{"id":82,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":687,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-687.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"718","_score":1,"_source":{"id":718,"sku":"MT11-XS-Blue","name":"Atlas Fitness Tank-XS-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

                            \n

                            • Teal scoop neck cotton tank.
                            • Triblend, soft fabric.
                            • Relaxed fit.

                            ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atlas-fitness-tank-xs-blue-718","links":{},"stock":{"item_id":718,"product_id":718,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-xs-blue-718.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"703","_score":1,"_source":{"id":703,"sku":"MT08-L-Green","name":"Sparta Gym Tank-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

                            \n

                            • Green polyester tank.
                            • Ultra lightweight.
                            • Naturally odor-resistant.
                            • Close-to-body athletic fit.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"sparta-gym-tank-l-green-703","links":{},"stock":{"item_id":703,"product_id":703,"stock_id":1,"qty":77,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-l-green-703.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"726","_score":1,"_source":{"id":726,"sku":"MT12-M-Blue","name":"Cassius Sparring Tank-M-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

                            \n

                            • Royal crewneck cotton tank.
                            • Contrast stitching.
                            • Self fabric binding at neckline.
                            • Slim fit.
                            • 96% Merino / 4% LYCRA®.

                            ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"cassius-sparring-tank-m-blue-726","links":{},"stock":{"item_id":726,"product_id":726,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-m-blue-726.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"707","_score":1,"_source":{"id":707,"sku":"MT09-S-Blue","name":"Sinbad Fitness Tank-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

                            \n

                            • Teal polyester tank.
                            • Premium fit tank top.
                            • Ultra lightweight.
                            • Naturally odor-resistant.

                            ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"sinbad-fitness-tank-s-blue-707","links":{},"stock":{"item_id":707,"product_id":707,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-s-blue-707.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"709","_score":1,"_source":{"id":709,"sku":"MT09-L-Blue","name":"Sinbad Fitness Tank-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

                            \n

                            • Teal polyester tank.
                            • Premium fit tank top.
                            • Ultra lightweight.
                            • Naturally odor-resistant.

                            ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"sinbad-fitness-tank-l-blue-709","links":{},"stock":{"item_id":709,"product_id":709,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-l-blue-709.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"712","_score":1,"_source":{"id":712,"sku":"MT10-XS-Yellow","name":"Tiberius Gym Tank-XS-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

                            \n

                            • Yellow scoop neck cotton tank.
                            • Comfortable, relaxed fit.
                            • 55% Hemp / 45% Organic Cotton.
                            • Pesticide- and herbicide-free hemp.

                            ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tiberius-gym-tank-xs-yellow-712","links":{},"stock":{"item_id":712,"product_id":712,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-xs-yellow-712.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"722","_score":1,"_source":{"id":722,"sku":"MT11-XL-Blue","name":"Atlas Fitness Tank-XL-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

                            \n

                            • Teal scoop neck cotton tank.
                            • Triblend, soft fabric.
                            • Relaxed fit.

                            ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atlas-fitness-tank-xl-blue-722","links":{},"stock":{"item_id":722,"product_id":722,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-xl-blue-722.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"719","_score":1,"_source":{"id":719,"sku":"MT11-S-Blue","name":"Atlas Fitness Tank-S-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

                            \n

                            • Teal scoop neck cotton tank.
                            • Triblend, soft fabric.
                            • Relaxed fit.

                            ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atlas-fitness-tank-s-blue-719","links":{},"stock":{"item_id":719,"product_id":719,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-s-blue-719.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"708","_score":1,"_source":{"id":708,"sku":"MT09-M-Blue","name":"Sinbad Fitness Tank-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

                            \n

                            • Teal polyester tank.
                            • Premium fit tank top.
                            • Ultra lightweight.
                            • Naturally odor-resistant.

                            ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"sinbad-fitness-tank-m-blue-708","links":{},"stock":{"item_id":708,"product_id":708,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-m-blue-708.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"727","_score":1,"_source":{"id":727,"sku":"MT12-L-Blue","name":"Cassius Sparring Tank-L-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

                            \n

                            • Royal crewneck cotton tank.
                            • Contrast stitching.
                            • Self fabric binding at neckline.
                            • Slim fit.
                            • 96% Merino / 4% LYCRA®.

                            ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"cassius-sparring-tank-l-blue-727","links":{},"stock":{"item_id":727,"product_id":727,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-l-blue-727.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"721","_score":1,"_source":{"id":721,"sku":"MT11-L-Blue","name":"Atlas Fitness Tank-L-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

                            \n

                            • Teal scoop neck cotton tank.
                            • Triblend, soft fabric.
                            • Relaxed fit.

                            ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atlas-fitness-tank-l-blue-721","links":{},"stock":{"item_id":721,"product_id":721,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-l-blue-721.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"713","_score":1,"_source":{"id":713,"sku":"MT10-S-Yellow","name":"Tiberius Gym Tank-S-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

                            \n

                            • Yellow scoop neck cotton tank.
                            • Comfortable, relaxed fit.
                            • 55% Hemp / 45% Organic Cotton.
                            • Pesticide- and herbicide-free hemp.

                            ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tiberius-gym-tank-s-yellow-713","links":{},"stock":{"item_id":713,"product_id":713,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-s-yellow-713.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"728","_score":1,"_source":{"id":728,"sku":"MT12-XL-Blue","name":"Cassius Sparring Tank-XL-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

                            \n

                            • Royal crewneck cotton tank.
                            • Contrast stitching.
                            • Self fabric binding at neckline.
                            • Slim fit.
                            • 96% Merino / 4% LYCRA®.

                            ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"cassius-sparring-tank-xl-blue-728","links":{},"stock":{"item_id":728,"product_id":728,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-xl-blue-728.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"732","_score":1,"_source":{"id":732,"sku":"MP01-32-Purple","name":"Caesar Warm-Up Pant-32-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","color":"57","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"caesar-warm-up-pant-32-purple-732","links":{},"stock":{"item_id":732,"product_id":732,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-32-purple-732.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"746","_score":1,"_source":{"id":746,"sku":"MP02-33-Blue","name":"Viktor LumaTech™ Pant-33-Blue","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","color":"50","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"viktor-lumatech-and-trade-pant-33-blue-746","links":{},"stock":{"item_id":746,"product_id":746,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-33-blue-746.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"701","_score":1,"_source":{"id":701,"sku":"MT08-S-Green","name":"Sparta Gym Tank-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

                            \n

                            • Green polyester tank.
                            • Ultra lightweight.
                            • Naturally odor-resistant.
                            • Close-to-body athletic fit.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"sparta-gym-tank-s-green-701","links":{},"stock":{"item_id":701,"product_id":701,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-s-green-701.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"715","_score":1,"_source":{"id":715,"sku":"MT10-L-Yellow","name":"Tiberius Gym Tank-L-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

                            \n

                            • Yellow scoop neck cotton tank.
                            • Comfortable, relaxed fit.
                            • 55% Hemp / 45% Organic Cotton.
                            • Pesticide- and herbicide-free hemp.

                            ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tiberius-gym-tank-l-yellow-715","links":{},"stock":{"item_id":715,"product_id":715,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-l-yellow-715.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"744","_score":1,"_source":{"id":744,"sku":"MP02-32-Gray","name":"Viktor LumaTech™ Pant-32-Gray","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","color":"52","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"viktor-lumatech-and-trade-pant-32-gray-744","links":{},"stock":{"item_id":744,"product_id":744,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-32-gray-744.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"724","_score":1,"_source":{"id":724,"sku":"MT12-XS-Blue","name":"Cassius Sparring Tank-XS-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

                            \n

                            • Royal crewneck cotton tank.
                            • Contrast stitching.
                            • Self fabric binding at neckline.
                            • Slim fit.
                            • 96% Merino / 4% LYCRA®.

                            ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"cassius-sparring-tank-xs-blue-724","links":{},"stock":{"item_id":724,"product_id":724,"stock_id":1,"qty":35,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-xs-blue-724.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"741","_score":1,"_source":{"id":741,"sku":"MP01-36-Purple","name":"Caesar Warm-Up Pant-36-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","color":"57","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"caesar-warm-up-pant-36-purple-741","links":{},"stock":{"item_id":741,"product_id":741,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-36-purple-741.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"730","_score":1,"_source":{"id":730,"sku":"MP01-32-Black","name":"Caesar Warm-Up Pant-32-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2018-02-11 12:04:31","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \r\n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-32-black","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"176","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"caesar-warm-up-pant-32-black-730","links":{},"stock":{"item_id":730,"product_id":730,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-02-21 16:07:12","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/m/p/mp01-black_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-32-black-730.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"734","_score":1,"_source":{"id":734,"sku":"MP01-33-Gray","name":"Caesar Warm-Up Pant-33-Gray","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"caesar-warm-up-pant-33-gray-734","links":{},"stock":{"item_id":734,"product_id":734,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-33-gray-734.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"740","_score":1,"_source":{"id":740,"sku":"MP01-36-Gray","name":"Caesar Warm-Up Pant-36-Gray","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"caesar-warm-up-pant-36-gray-740","links":{},"stock":{"item_id":740,"product_id":740,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-36-gray-740.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"733","_score":1,"_source":{"id":733,"sku":"MP01-33-Black","name":"Caesar Warm-Up Pant-33-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"caesar-warm-up-pant-33-black-733","links":{},"stock":{"item_id":733,"product_id":733,"stock_id":1,"qty":62,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-33-black-733.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"736","_score":1,"_source":{"id":736,"sku":"MP01-34-Black","name":"Caesar Warm-Up Pant-34-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"caesar-warm-up-pant-34-black-736","links":{},"stock":{"item_id":736,"product_id":736,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-34-black-736.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"747","_score":1,"_source":{"id":747,"sku":"MP02-33-Gray","name":"Viktor LumaTech™ Pant-33-Gray","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","color":"52","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"viktor-lumatech-and-trade-pant-33-gray-747","links":{},"stock":{"item_id":747,"product_id":747,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-33-gray-747.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"725","_score":1,"_source":{"id":725,"sku":"MT12-S-Blue","name":"Cassius Sparring Tank-S-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

                            \n

                            • Royal crewneck cotton tank.
                            • Contrast stitching.
                            • Self fabric binding at neckline.
                            • Slim fit.
                            • 96% Merino / 4% LYCRA®.

                            ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"cassius-sparring-tank-s-blue-725","links":{},"stock":{"item_id":725,"product_id":725,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-s-blue-725.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"720","_score":1,"_source":{"id":720,"sku":"MT11-M-Blue","name":"Atlas Fitness Tank-M-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

                            \n

                            • Teal scoop neck cotton tank.
                            • Triblend, soft fabric.
                            • Relaxed fit.

                            ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atlas-fitness-tank-m-blue-720","links":{},"stock":{"item_id":720,"product_id":720,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-m-blue-720.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"776","_score":1,"_source":{"id":776,"sku":"MP04-34-Gray","name":"Supernova Sport Pant-34-Gray","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"supernova-sport-pant-34-gray-776","links":{},"stock":{"item_id":776,"product_id":776,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-34-gray-776.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"757","_score":1,"_source":{"id":757,"sku":"MP03-32-Green","name":"Geo Insulated Jogging Pant-32-Green","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"geo-insulated-jogging-pant-32-green-757","links":{},"stock":{"item_id":757,"product_id":757,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-32-green-757.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"767","_score":1,"_source":{"id":767,"sku":"MP03-36-Red","name":"Geo Insulated Jogging Pant-36-Red","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"geo-insulated-jogging-pant-36-red-767","links":{},"stock":{"item_id":767,"product_id":767,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-36-red-767.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"756","_score":1,"_source":{"id":756,"sku":"MP03-32-Blue","name":"Geo Insulated Jogging Pant-32-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"geo-insulated-jogging-pant-32-blue-756","links":{},"stock":{"item_id":756,"product_id":756,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-32-blue-756.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"792","_score":1,"_source":{"id":792,"sku":"MP05-36-Blue","name":"Kratos Gym Pant-36-Blue","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"kratos-gym-pant-36-blue-792","links":{},"stock":{"item_id":792,"product_id":792,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-36-blue-792.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"766","_score":1,"_source":{"id":766,"sku":"MP03-36-Green","name":"Geo Insulated Jogging Pant-36-Green","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"geo-insulated-jogging-pant-36-green-766","links":{},"stock":{"item_id":766,"product_id":766,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-36-green-766.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"769","_score":1,"_source":{"id":769,"sku":"MP04-32-Black","name":"Supernova Sport Pant-32-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"supernova-sport-pant-32-black-769","links":{},"stock":{"item_id":769,"product_id":769,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-32-black-769.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"759","_score":1,"_source":{"id":759,"sku":"MP03-33-Blue","name":"Geo Insulated Jogging Pant-33-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"geo-insulated-jogging-pant-33-blue-759","links":{},"stock":{"item_id":759,"product_id":759,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-33-blue-759.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"783","_score":1,"_source":{"id":783,"sku":"MP05-32-Blue","name":"Kratos Gym Pant-32-Blue","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"kratos-gym-pant-32-blue-783","links":{},"stock":{"item_id":783,"product_id":783,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-32-blue-783.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"764","_score":1,"_source":{"id":764,"sku":"MP03-34-Red","name":"Geo Insulated Jogging Pant-34-Red","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"geo-insulated-jogging-pant-34-red-764","links":{},"stock":{"item_id":764,"product_id":764,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-34-red-764.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"791","_score":1,"_source":{"id":791,"sku":"MP05-36-Black","name":"Kratos Gym Pant-36-Black","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"kratos-gym-pant-36-black-791","links":{},"stock":{"item_id":791,"product_id":791,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-36-black-791.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"763","_score":1,"_source":{"id":763,"sku":"MP03-34-Green","name":"Geo Insulated Jogging Pant-34-Green","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"geo-insulated-jogging-pant-34-green-763","links":{},"stock":{"item_id":763,"product_id":763,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-34-green-763.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"797","_score":1,"_source":{"id":797,"sku":"MP06-32-Orange","name":"Mithra Warmup Pant-32-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","color":"56","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-32-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"mithra-warmup-pant-32-orange-797","links":{},"stock":{"item_id":797,"product_id":797,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-32-orange-797.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"754","_score":1,"_source":{"id":754,"sku":"MP02-36-Red","name":"Viktor LumaTech™ Pant-36-Red","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","color":"58","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"viktor-lumatech-and-trade-pant-36-red-754","links":{},"stock":{"item_id":754,"product_id":754,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-36-red-754.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"772","_score":1,"_source":{"id":772,"sku":"MP04-33-Black","name":"Supernova Sport Pant-33-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"supernova-sport-pant-33-black-772","links":{},"stock":{"item_id":772,"product_id":772,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-33-black-772.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"777","_score":1,"_source":{"id":777,"sku":"MP04-34-Green","name":"Supernova Sport Pant-34-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","color":"53","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"supernova-sport-pant-34-green-777","links":{},"stock":{"item_id":777,"product_id":777,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-34-green-777.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"753","_score":1,"_source":{"id":753,"sku":"MP02-36-Gray","name":"Viktor LumaTech™ Pant-36-Gray","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","color":"52","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"viktor-lumatech-and-trade-pant-36-gray-753","links":{},"stock":{"item_id":753,"product_id":753,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-36-gray-753.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"771","_score":1,"_source":{"id":771,"sku":"MP04-32-Green","name":"Supernova Sport Pant-32-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","color":"53","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"supernova-sport-pant-32-green-771","links":{},"stock":{"item_id":771,"product_id":771,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-32-green-771.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"770","_score":1,"_source":{"id":770,"sku":"MP04-32-Gray","name":"Supernova Sport Pant-32-Gray","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"supernova-sport-pant-32-gray-770","links":{},"stock":{"item_id":770,"product_id":770,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-32-gray-770.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"785","_score":1,"_source":{"id":785,"sku":"MP05-33-Black","name":"Kratos Gym Pant-33-Black","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"kratos-gym-pant-33-black-785","links":{},"stock":{"item_id":785,"product_id":785,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-33-black-785.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"762","_score":1,"_source":{"id":762,"sku":"MP03-34-Blue","name":"Geo Insulated Jogging Pant-34-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"geo-insulated-jogging-pant-34-blue-762","links":{},"stock":{"item_id":762,"product_id":762,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-34-blue-762.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"775","_score":1,"_source":{"id":775,"sku":"MP04-34-Black","name":"Supernova Sport Pant-34-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"supernova-sport-pant-34-black-775","links":{},"stock":{"item_id":775,"product_id":775,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-34-black-775.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"800","_score":1,"_source":{"id":800,"sku":"MP06-33-Orange","name":"Mithra Warmup Pant-33-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","color":"56","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-33-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"mithra-warmup-pant-33-orange-800","links":{},"stock":{"item_id":800,"product_id":800,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-33-orange-800.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"778","_score":1,"_source":{"id":778,"sku":"MP04-36-Black","name":"Supernova Sport Pant-36-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"supernova-sport-pant-36-black-778","links":{},"stock":{"item_id":778,"product_id":778,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-36-black-778.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"789","_score":1,"_source":{"id":789,"sku":"MP05-34-Blue","name":"Kratos Gym Pant-34-Blue","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"kratos-gym-pant-34-blue-789","links":{},"stock":{"item_id":789,"product_id":789,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-34-blue-789.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"788","_score":1,"_source":{"id":788,"sku":"MP05-34-Black","name":"Kratos Gym Pant-34-Black","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"kratos-gym-pant-34-black-788","links":{},"stock":{"item_id":788,"product_id":788,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-34-black-788.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"760","_score":1,"_source":{"id":760,"sku":"MP03-33-Green","name":"Geo Insulated Jogging Pant-33-Green","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"geo-insulated-jogging-pant-33-green-760","links":{},"stock":{"item_id":760,"product_id":760,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-33-green-760.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"773","_score":1,"_source":{"id":773,"sku":"MP04-33-Gray","name":"Supernova Sport Pant-33-Gray","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"supernova-sport-pant-33-gray-773","links":{},"stock":{"item_id":773,"product_id":773,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-33-gray-773.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"787","_score":1,"_source":{"id":787,"sku":"MP05-33-Green","name":"Kratos Gym Pant-33-Green","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"kratos-gym-pant-33-green-787","links":{},"stock":{"item_id":787,"product_id":787,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-33-green-787.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"782","_score":1,"_source":{"id":782,"sku":"MP05-32-Black","name":"Kratos Gym Pant-32-Black","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"kratos-gym-pant-32-black-782","links":{},"stock":{"item_id":782,"product_id":782,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-32-black-782.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"796","_score":1,"_source":{"id":796,"sku":"MP06-32-Green","name":"Mithra Warmup Pant-32-Green","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","color":"53","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"mithra-warmup-pant-32-green-796","links":{},"stock":{"item_id":796,"product_id":796,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-32-green-796.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"761","_score":1,"_source":{"id":761,"sku":"MP03-33-Red","name":"Geo Insulated Jogging Pant-33-Red","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"geo-insulated-jogging-pant-33-red-761","links":{},"stock":{"item_id":761,"product_id":761,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-33-red-761.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"729","_score":1,"_source":{"id":729,"sku":"MT12","name":"Cassius Sparring Tank","attribute_set_id":9,"price":18,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

                            \n

                            • Royal crewneck cotton tank.
                            • Contrast stitching.
                            • Self fabric binding at neckline.
                            • Slim fit.
                            • 96% Merino / 4% LYCRA®.

                            ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cassius-sparring-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"cassius-sparring-tank-729","links":{},"stock":{"item_id":729,"product_id":729,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT12-XS-Blue","id":724,"status":1,"name":"Cassius Sparring Tank-XS-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"50","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","url_key":"cassius-sparring-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18},{"sku":"MT12-S-Blue","id":725,"status":1,"name":"Cassius Sparring Tank-S-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"50","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","url_key":"cassius-sparring-tank-s-blue","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18},{"sku":"MT12-M-Blue","id":726,"status":1,"name":"Cassius Sparring Tank-M-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"50","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","url_key":"cassius-sparring-tank-m-blue","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18},{"sku":"MT12-L-Blue","id":727,"status":1,"name":"Cassius Sparring Tank-L-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"50","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","url_key":"cassius-sparring-tank-l-blue","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18},{"sku":"MT12-XL-Blue","id":728,"status":1,"name":"Cassius Sparring Tank-XL-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"50","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","url_key":"cassius-sparring-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18}],"configurable_options":[{"id":97,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"}],"product_id":729,"attribute_code":"color"},{"id":96,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":729,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-729.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"705","_score":1,"_source":{"id":705,"sku":"MT08","name":"Sparta Gym Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

                            \n

                            • Green polyester tank.
                            • Ultra lightweight.
                            • Naturally odor-resistant.
                            • Close-to-body athletic fit.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sparta-gym-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"sparta-gym-tank-705","links":{},"stock":{"item_id":705,"product_id":705,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT08-XS-Green","id":700,"status":1,"name":"Sparta Gym Tank-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"53","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","url_key":"sparta-gym-tank-xs-green","msrp_display_actual_price_type":"0"},{"sku":"MT08-S-Green","id":701,"status":1,"name":"Sparta Gym Tank-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"53","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","url_key":"sparta-gym-tank-s-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT08-M-Green","id":702,"status":1,"name":"Sparta Gym Tank-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"53","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","url_key":"sparta-gym-tank-m-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT08-L-Green","id":703,"status":1,"name":"Sparta Gym Tank-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"53","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","url_key":"sparta-gym-tank-l-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT08-XL-Green","id":704,"status":1,"name":"Sparta Gym Tank-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"53","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","url_key":"sparta-gym-tank-xl-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":89,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"}],"product_id":705,"attribute_code":"color"},{"id":88,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":705,"attribute_code":"size"}],"color_options":[53],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-705.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"711","_score":1,"_source":{"id":711,"sku":"MT09","name":"Sinbad Fitness Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

                            \n

                            • Teal polyester tank.
                            • Premium fit tank top.
                            • Ultra lightweight.
                            • Naturally odor-resistant.

                            ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sinbad-fitness-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"sinbad-fitness-tank-711","links":{},"stock":{"item_id":711,"product_id":711,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT09-XS-Blue","id":706,"status":1,"name":"Sinbad Fitness Tank-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"50","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","url_key":"sinbad-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT09-S-Blue","id":707,"status":1,"name":"Sinbad Fitness Tank-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"50","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","url_key":"sinbad-fitness-tank-s-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT09-M-Blue","id":708,"status":1,"name":"Sinbad Fitness Tank-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"50","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","url_key":"sinbad-fitness-tank-m-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT09-L-Blue","id":709,"status":1,"name":"Sinbad Fitness Tank-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"50","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","url_key":"sinbad-fitness-tank-l-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MT09-XL-Blue","id":710,"status":1,"name":"Sinbad Fitness Tank-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"50","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","url_key":"sinbad-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":91,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"}],"product_id":711,"attribute_code":"color"},{"id":90,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":711,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-711.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"717","_score":1,"_source":{"id":717,"sku":"MT10","name":"Tiberius Gym Tank","attribute_set_id":9,"price":18,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

                            \n

                            • Yellow scoop neck cotton tank.
                            • Comfortable, relaxed fit.
                            • 55% Hemp / 45% Organic Cotton.
                            • Pesticide- and herbicide-free hemp.

                            ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"tiberius-gym-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,153,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"tiberius-gym-tank-717","links":{},"stock":{"item_id":717,"product_id":717,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT10-XS-Yellow","id":712,"status":1,"name":"Tiberius Gym Tank-XS-Yellow","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"167","color":"60","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","url_key":"tiberius-gym-tank-xs-yellow","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18},{"sku":"MT10-S-Yellow","id":713,"status":1,"name":"Tiberius Gym Tank-S-Yellow","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"168","color":"60","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","url_key":"tiberius-gym-tank-s-yellow","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18},{"sku":"MT10-M-Yellow","id":714,"status":1,"name":"Tiberius Gym Tank-M-Yellow","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"169","color":"60","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","url_key":"tiberius-gym-tank-m-yellow","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18},{"sku":"MT10-L-Yellow","id":715,"status":1,"name":"Tiberius Gym Tank-L-Yellow","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"170","color":"60","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","url_key":"tiberius-gym-tank-l-yellow","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18},{"sku":"MT10-XL-Yellow","id":716,"status":1,"name":"Tiberius Gym Tank-XL-Yellow","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17"],"size":"171","color":"60","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","url_key":"tiberius-gym-tank-xl-yellow","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18}],"configurable_options":[{"id":93,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":60,"label":"Yellow"}],"product_id":717,"attribute_code":"color"},{"id":92,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":717,"attribute_code":"size"}],"color_options":[60],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-717.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"742","_score":1,"_source":{"id":742,"sku":"MP01","name":"Caesar Warm-Up Pant","attribute_set_id":10,"price":35,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2018-02-11 12:01:51","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":23,"max_price":23,"max_regular_price":23,"minimal_regular_price":23,"special_price":null,"minimal_price":23,"regular_price":35,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \r\n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","category_ids":[18,32,2],"options_container":"container2","required_options":"1","has_options":"1","url_key":"caesar-warm-up-pant","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":[156,145,146,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[204,208],"slug":"caesar-warm-up-pant-742","links":{},"stock":{"item_id":742,"product_id":742,"stock_id":1,"qty":1,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"configurable_children":[{"sku":"MP01-32-Black","id":730,"status":1,"name":"Caesar Warm-Up Pant-32-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"49","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","url_key":"caesar-warm-up-pant-32-black","msrp_display_actual_price_type":"0"},{"sku":"MP01-32-Gray","id":731,"status":1,"name":"Caesar Warm-Up Pant-32-Gray","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"52","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","url_key":"caesar-warm-up-pant-32-gray","special_price":23,"special_from_date":"2018-02-11 12:06:30","msrp_display_actual_price_type":"0","final_price":23,"max_price":23,"max_regular_price":23,"minimal_regular_price":23,"minimal_price":23,"regular_price":35},{"sku":"MP01-32-Purple","id":732,"status":1,"name":"Caesar Warm-Up Pant-32-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"57","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","url_key":"caesar-warm-up-pant-32-purple","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MP01-33-Black","id":733,"status":1,"name":"Caesar Warm-Up Pant-33-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"49","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","url_key":"caesar-warm-up-pant-33-black","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MP01-33-Gray","id":734,"status":1,"name":"Caesar Warm-Up Pant-33-Gray","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"52","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","url_key":"caesar-warm-up-pant-33-gray","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MP01-33-Purple","id":735,"status":1,"name":"Caesar Warm-Up Pant-33-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"57","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","url_key":"caesar-warm-up-pant-33-purple","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MP01-34-Black","id":736,"status":1,"name":"Caesar Warm-Up Pant-34-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"49","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","url_key":"caesar-warm-up-pant-34-black","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MP01-34-Gray","id":737,"status":1,"name":"Caesar Warm-Up Pant-34-Gray","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"52","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","url_key":"caesar-warm-up-pant-34-gray","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MP01-34-Purple","id":738,"status":1,"name":"Caesar Warm-Up Pant-34-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"57","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","url_key":"caesar-warm-up-pant-34-purple","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MP01-36-Black","id":739,"status":1,"name":"Caesar Warm-Up Pant-36-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"49","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","url_key":"caesar-warm-up-pant-36-black","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MP01-36-Gray","id":740,"status":1,"name":"Caesar Warm-Up Pant-36-Gray","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"52","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","url_key":"caesar-warm-up-pant-36-gray","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MP01-36-Purple","id":741,"status":1,"name":"Caesar Warm-Up Pant-36-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"57","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","url_key":"caesar-warm-up-pant-36-purple","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35}],"configurable_options":[{"id":296,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"}],"product_id":742,"attribute_code":"color"},{"id":297,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":742,"attribute_code":"size"}],"color_options":[49,52,57],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-742.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"651","_score":1,"_source":{"id":651,"sku":"MT02-M-Red","name":"Tristan Endurance Tank-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tristan-endurance-tank-m-red-651","links":{},"stock":{"item_id":651,"product_id":651,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-m-red-651.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"655","_score":1,"_source":{"id":655,"sku":"MT02-L-White","name":"Tristan Endurance Tank-L-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tristan-endurance-tank-l-white-655","links":{},"stock":{"item_id":655,"product_id":655,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-l-white-655.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"667","_score":1,"_source":{"id":667,"sku":"MT03-M-Red","name":"Primo Endurance Tank-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"primo-endurance-tank-m-red-667","links":{},"stock":{"item_id":667,"product_id":667,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-m-red-667.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"676","_score":1,"_source":{"id":676,"sku":"MT04-XS-Blue","name":"Helios Endurance Tank-XS-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

                            \n

                            • Blue heather tank with gray pocket.
                            • Contrast sides and back inserts.
                            • Self-fabric binding at neck and armholes.
                            • Machine wash/dry.

                            ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helios-endurance-tank-xs-blue-676","links":{},"stock":{"item_id":676,"product_id":676,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-xs-blue-676.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"657","_score":1,"_source":{"id":657,"sku":"MT02-XL-Red","name":"Tristan Endurance Tank-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tristan-endurance-tank-xl-red-657","links":{},"stock":{"item_id":657,"product_id":657,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xl-red-657.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"672","_score":1,"_source":{"id":672,"sku":"MT03-XL-Blue","name":"Primo Endurance Tank-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"primo-endurance-tank-xl-blue-672","links":{},"stock":{"item_id":672,"product_id":672,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xl-blue-672.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"658","_score":1,"_source":{"id":658,"sku":"MT02-XL-White","name":"Tristan Endurance Tank-XL-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tristan-endurance-tank-xl-white-658","links":{},"stock":{"item_id":658,"product_id":658,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xl-white-658.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"668","_score":1,"_source":{"id":668,"sku":"MT03-M-Yellow","name":"Primo Endurance Tank-M-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"primo-endurance-tank-m-yellow-668","links":{},"stock":{"item_id":668,"product_id":668,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-m-yellow-668.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"680","_score":1,"_source":{"id":680,"sku":"MT04-XL-Blue","name":"Helios Endurance Tank-XL-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

                            \n

                            • Blue heather tank with gray pocket.
                            • Contrast sides and back inserts.
                            • Self-fabric binding at neck and armholes.
                            • Machine wash/dry.

                            ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helios-endurance-tank-xl-blue-680","links":{},"stock":{"item_id":680,"product_id":680,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-xl-blue-680.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"673","_score":1,"_source":{"id":673,"sku":"MT03-XL-Red","name":"Primo Endurance Tank-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"primo-endurance-tank-xl-red-673","links":{},"stock":{"item_id":673,"product_id":673,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xl-red-673.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"689","_score":1,"_source":{"id":689,"sku":"MT06-S-Black","name":"Vulcan Weightlifting Tank-S-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

                            \n

                            • Black polyester spandex tank.
                            • 100% polyester.
                            • Freedom of movement.
                            • No-chafe seams.

                            ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"vulcan-weightlifting-tank-s-black-689","links":{},"stock":{"item_id":689,"product_id":689,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-s-black-689.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"674","_score":1,"_source":{"id":674,"sku":"MT03-XL-Yellow","name":"Primo Endurance Tank-XL-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"primo-endurance-tank-xl-yellow-674","links":{},"stock":{"item_id":674,"product_id":674,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xl-yellow-674.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"695","_score":1,"_source":{"id":695,"sku":"MT07-S-Gray","name":"Argus All-Weather Tank-S-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

                            \n

                            • Dark gray polyester spandex tank.
                            • Reflective details for nighttime visibility.
                            • Stash pocket.
                            • Anti-chafe flatlock seams.

                            ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"argus-all-weather-tank-s-gray-695","links":{},"stock":{"item_id":695,"product_id":695,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-s-gray-695.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"665","_score":1,"_source":{"id":665,"sku":"MT03-S-Yellow","name":"Primo Endurance Tank-S-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"primo-endurance-tank-s-yellow-665","links":{},"stock":{"item_id":665,"product_id":665,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-s-yellow-665.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"679","_score":1,"_source":{"id":679,"sku":"MT04-L-Blue","name":"Helios Endurance Tank-L-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

                            \n

                            • Blue heather tank with gray pocket.
                            • Contrast sides and back inserts.
                            • Self-fabric binding at neck and armholes.
                            • Machine wash/dry.

                            ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helios-endurance-tank-l-blue-679","links":{},"stock":{"item_id":679,"product_id":679,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-l-blue-679.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"697","_score":1,"_source":{"id":697,"sku":"MT07-L-Gray","name":"Argus All-Weather Tank-L-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

                            \n

                            • Dark gray polyester spandex tank.
                            • Reflective details for nighttime visibility.
                            • Stash pocket.
                            • Anti-chafe flatlock seams.

                            ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"argus-all-weather-tank-l-gray-697","links":{},"stock":{"item_id":697,"product_id":697,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-l-gray-697.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"666","_score":1,"_source":{"id":666,"sku":"MT03-M-Blue","name":"Primo Endurance Tank-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"primo-endurance-tank-m-blue-666","links":{},"stock":{"item_id":666,"product_id":666,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-m-blue-666.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"677","_score":1,"_source":{"id":677,"sku":"MT04-S-Blue","name":"Helios Endurance Tank-S-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

                            \n

                            • Blue heather tank with gray pocket.
                            • Contrast sides and back inserts.
                            • Self-fabric binding at neck and armholes.
                            • Machine wash/dry.

                            ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helios-endurance-tank-s-blue-677","links":{},"stock":{"item_id":677,"product_id":677,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-s-blue-677.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"683","_score":1,"_source":{"id":683,"sku":"MT05-S-Blue","name":"Rocco Gym Tank-S-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

                            \n

                            • Light blue heather gray tank.
                            • Quick-drying, moisture-wicking.
                            • 4-way stretch construction.
                            • Flatlock seams prevent chafing.
                            • Mesh at back for breathability.
                            • 100% Polyester.
                            • UPF 50 protection.

                            ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"rocco-gym-tank-s-blue-683","links":{},"stock":{"item_id":683,"product_id":683,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-s-blue-683.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"690","_score":1,"_source":{"id":690,"sku":"MT06-M-Black","name":"Vulcan Weightlifting Tank-M-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

                            \n

                            • Black polyester spandex tank.
                            • 100% polyester.
                            • Freedom of movement.
                            • No-chafe seams.

                            ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"vulcan-weightlifting-tank-m-black-690","links":{},"stock":{"item_id":690,"product_id":690,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-m-black-690.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"684","_score":1,"_source":{"id":684,"sku":"MT05-M-Blue","name":"Rocco Gym Tank-M-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

                            \n

                            • Light blue heather gray tank.
                            • Quick-drying, moisture-wicking.
                            • 4-way stretch construction.
                            • Flatlock seams prevent chafing.
                            • Mesh at back for breathability.
                            • 100% Polyester.
                            • UPF 50 protection.

                            ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"rocco-gym-tank-m-blue-684","links":{},"stock":{"item_id":684,"product_id":684,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-m-blue-684.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"686","_score":1,"_source":{"id":686,"sku":"MT05-XL-Blue","name":"Rocco Gym Tank-XL-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

                            \n

                            • Light blue heather gray tank.
                            • Quick-drying, moisture-wicking.
                            • 4-way stretch construction.
                            • Flatlock seams prevent chafing.
                            • Mesh at back for breathability.
                            • 100% Polyester.
                            • UPF 50 protection.

                            ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"rocco-gym-tank-xl-blue-686","links":{},"stock":{"item_id":686,"product_id":686,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-xl-blue-686.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"656","_score":1,"_source":{"id":656,"sku":"MT02-XL-Gray","name":"Tristan Endurance Tank-XL-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tristan-endurance-tank-xl-gray-656","links":{},"stock":{"item_id":656,"product_id":656,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xl-gray-656.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"700","_score":1,"_source":{"id":700,"sku":"MT08-XS-Green","name":"Sparta Gym Tank-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

                            \n

                            • Green polyester tank.
                            • Ultra lightweight.
                            • Naturally odor-resistant.
                            • Close-to-body athletic fit.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"sparta-gym-tank-xs-green-700","links":{},"stock":{"item_id":700,"product_id":700,"stock_id":1,"qty":67,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-xs-green-700.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"698","_score":1,"_source":{"id":698,"sku":"MT07-XL-Gray","name":"Argus All-Weather Tank-XL-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

                            \n

                            • Dark gray polyester spandex tank.
                            • Reflective details for nighttime visibility.
                            • Stash pocket.
                            • Anti-chafe flatlock seams.

                            ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"argus-all-weather-tank-xl-gray-698","links":{},"stock":{"item_id":698,"product_id":698,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-xl-gray-698.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"692","_score":1,"_source":{"id":692,"sku":"MT06-XL-Black","name":"Vulcan Weightlifting Tank-XL-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

                            \n

                            • Black polyester spandex tank.
                            • 100% polyester.
                            • Freedom of movement.
                            • No-chafe seams.

                            ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"vulcan-weightlifting-tank-xl-black-692","links":{},"stock":{"item_id":692,"product_id":692,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-xl-black-692.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"694","_score":1,"_source":{"id":694,"sku":"MT07-XS-Gray","name":"Argus All-Weather Tank-XS-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

                            \n

                            • Dark gray polyester spandex tank.
                            • Reflective details for nighttime visibility.
                            • Stash pocket.
                            • Anti-chafe flatlock seams.

                            ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"argus-all-weather-tank-xs-gray-694","links":{},"stock":{"item_id":694,"product_id":694,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-xs-gray-694.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"685","_score":1,"_source":{"id":685,"sku":"MT05-L-Blue","name":"Rocco Gym Tank-L-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

                            \n

                            • Light blue heather gray tank.
                            • Quick-drying, moisture-wicking.
                            • 4-way stretch construction.
                            • Flatlock seams prevent chafing.
                            • Mesh at back for breathability.
                            • 100% Polyester.
                            • UPF 50 protection.

                            ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"rocco-gym-tank-l-blue-685","links":{},"stock":{"item_id":685,"product_id":685,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-l-blue-685.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"682","_score":1,"_source":{"id":682,"sku":"MT05-XS-Blue","name":"Rocco Gym Tank-XS-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

                            \n

                            • Light blue heather gray tank.
                            • Quick-drying, moisture-wicking.
                            • 4-way stretch construction.
                            • Flatlock seams prevent chafing.
                            • Mesh at back for breathability.
                            • 100% Polyester.
                            • UPF 50 protection.

                            ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"rocco-gym-tank-xs-blue-682","links":{},"stock":{"item_id":682,"product_id":682,"stock_id":1,"qty":55,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-xs-blue-682.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"691","_score":1,"_source":{"id":691,"sku":"MT06-L-Black","name":"Vulcan Weightlifting Tank-L-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

                            \n

                            • Black polyester spandex tank.
                            • 100% polyester.
                            • Freedom of movement.
                            • No-chafe seams.

                            ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"vulcan-weightlifting-tank-l-black-691","links":{},"stock":{"item_id":691,"product_id":691,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-l-black-691.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"688","_score":1,"_source":{"id":688,"sku":"MT06-XS-Black","name":"Vulcan Weightlifting Tank-XS-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

                            \n

                            • Black polyester spandex tank.
                            • 100% polyester.
                            • Freedom of movement.
                            • No-chafe seams.

                            ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"vulcan-weightlifting-tank-xs-black-688","links":{},"stock":{"item_id":688,"product_id":688,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-xs-black-688.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"696","_score":1,"_source":{"id":696,"sku":"MT07-M-Gray","name":"Argus All-Weather Tank-M-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

                            \n

                            • Dark gray polyester spandex tank.
                            • Reflective details for nighttime visibility.
                            • Stash pocket.
                            • Anti-chafe flatlock seams.

                            ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"argus-all-weather-tank-m-gray-696","links":{},"stock":{"item_id":696,"product_id":696,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-m-gray-696.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"739","_score":1,"_source":{"id":739,"sku":"MP01-36-Black","name":"Caesar Warm-Up Pant-36-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"caesar-warm-up-pant-36-black-739","links":{},"stock":{"item_id":739,"product_id":739,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-36-black-739.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"745","_score":1,"_source":{"id":745,"sku":"MP02-32-Red","name":"Viktor LumaTech™ Pant-32-Red","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","color":"58","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"viktor-lumatech-and-trade-pant-32-red-745","links":{},"stock":{"item_id":745,"product_id":745,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-32-red-745.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"737","_score":1,"_source":{"id":737,"sku":"MP01-34-Gray","name":"Caesar Warm-Up Pant-34-Gray","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"caesar-warm-up-pant-34-gray-737","links":{},"stock":{"item_id":737,"product_id":737,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-34-gray-737.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"738","_score":1,"_source":{"id":738,"sku":"MP01-34-Purple","name":"Caesar Warm-Up Pant-34-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","color":"57","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"caesar-warm-up-pant-34-purple-738","links":{},"stock":{"item_id":738,"product_id":738,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-34-purple-738.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"743","_score":1,"_source":{"id":743,"sku":"MP02-32-Blue","name":"Viktor LumaTech™ Pant-32-Blue","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","color":"50","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"viktor-lumatech-and-trade-pant-32-blue-743","links":{},"stock":{"item_id":743,"product_id":743,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-32-blue-743.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"750","_score":1,"_source":{"id":750,"sku":"MP02-34-Gray","name":"Viktor LumaTech™ Pant-34-Gray","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","color":"52","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"viktor-lumatech-and-trade-pant-34-gray-750","links":{},"stock":{"item_id":750,"product_id":750,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-34-gray-750.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"748","_score":1,"_source":{"id":748,"sku":"MP02-33-Red","name":"Viktor LumaTech™ Pant-33-Red","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","color":"58","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"viktor-lumatech-and-trade-pant-33-red-748","links":{},"stock":{"item_id":748,"product_id":748,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-33-red-748.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"749","_score":1,"_source":{"id":749,"sku":"MP02-34-Blue","name":"Viktor LumaTech™ Pant-34-Blue","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","color":"50","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"viktor-lumatech-and-trade-pant-34-blue-749","links":{},"stock":{"item_id":749,"product_id":749,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-34-blue-749.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"723","_score":1,"_source":{"id":723,"sku":"MT11","name":"Atlas Fitness Tank","attribute_set_id":9,"price":18,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

                            \n

                            • Teal scoop neck cotton tank.
                            • Triblend, soft fabric.
                            • Relaxed fit.

                            ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"atlas-fitness-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"atlas-fitness-tank-723","links":{},"stock":{"item_id":723,"product_id":723,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MT11-XS-Blue","id":718,"status":1,"name":"Atlas Fitness Tank-XS-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"167","color":"50","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","url_key":"atlas-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18},{"sku":"MT11-S-Blue","id":719,"status":1,"name":"Atlas Fitness Tank-S-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"168","color":"50","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","url_key":"atlas-fitness-tank-s-blue","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18},{"sku":"MT11-M-Blue","id":720,"status":1,"name":"Atlas Fitness Tank-M-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"169","color":"50","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","url_key":"atlas-fitness-tank-m-blue","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18},{"sku":"MT11-L-Blue","id":721,"status":1,"name":"Atlas Fitness Tank-L-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"170","color":"50","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","url_key":"atlas-fitness-tank-l-blue","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18},{"sku":"MT11-XL-Blue","id":722,"status":1,"name":"Atlas Fitness Tank-XL-Blue","price":18,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["17","36","2"],"size":"171","color":"50","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","url_key":"atlas-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18}],"configurable_options":[{"id":95,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"}],"product_id":723,"attribute_code":"color"},{"id":94,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":723,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-723.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"706","_score":1,"_source":{"id":706,"sku":"MT09-XS-Blue","name":"Sinbad Fitness Tank-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

                            \n

                            • Teal polyester tank.
                            • Premium fit tank top.
                            • Ultra lightweight.
                            • Naturally odor-resistant.

                            ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"sinbad-fitness-tank-xs-blue-706","links":{},"stock":{"item_id":706,"product_id":706,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-xs-blue-706.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"714","_score":1,"_source":{"id":714,"sku":"MT10-M-Yellow","name":"Tiberius Gym Tank-M-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

                            \n

                            • Yellow scoop neck cotton tank.
                            • Comfortable, relaxed fit.
                            • 55% Hemp / 45% Organic Cotton.
                            • Pesticide- and herbicide-free hemp.

                            ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tiberius-gym-tank-m-yellow-714","links":{},"stock":{"item_id":714,"product_id":714,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-m-yellow-714.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"702","_score":1,"_source":{"id":702,"sku":"MT08-M-Green","name":"Sparta Gym Tank-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

                            \n

                            • Green polyester tank.
                            • Ultra lightweight.
                            • Naturally odor-resistant.
                            • Close-to-body athletic fit.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"sparta-gym-tank-m-green-702","links":{},"stock":{"item_id":702,"product_id":702,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-m-green-702.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"710","_score":1,"_source":{"id":710,"sku":"MT09-XL-Blue","name":"Sinbad Fitness Tank-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

                            \n

                            • Teal polyester tank.
                            • Premium fit tank top.
                            • Ultra lightweight.
                            • Naturally odor-resistant.

                            ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"sinbad-fitness-tank-xl-blue-710","links":{},"stock":{"item_id":710,"product_id":710,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-xl-blue-710.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"716","_score":1,"_source":{"id":716,"sku":"MT10-XL-Yellow","name":"Tiberius Gym Tank-XL-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

                            \n

                            • Yellow scoop neck cotton tank.
                            • Comfortable, relaxed fit.
                            • 55% Hemp / 45% Organic Cotton.
                            • Pesticide- and herbicide-free hemp.

                            ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tiberius-gym-tank-xl-yellow-716","links":{},"stock":{"item_id":716,"product_id":716,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-xl-yellow-716.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"731","_score":1,"_source":{"id":731,"sku":"MP01-32-Gray","name":"Caesar Warm-Up Pant-32-Gray","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2018-02-11 12:06:30","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":23,"max_price":23,"max_regular_price":23,"minimal_regular_price":23,"special_price":"23.0000","minimal_price":23,"regular_price":35,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \r\n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","special_from_date":"2018-02-11 12:06:30","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-32-gray","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"176","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"caesar-warm-up-pant-32-gray-731","links":{},"stock":{"item_id":731,"product_id":731,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-32-gray-731.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"735","_score":1,"_source":{"id":735,"sku":"MP01-33-Purple","name":"Caesar Warm-Up Pant-33-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","color":"57","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"caesar-warm-up-pant-33-purple-735","links":{},"stock":{"item_id":735,"product_id":735,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-33-purple-735.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"704","_score":1,"_source":{"id":704,"sku":"MT08-XL-Green","name":"Sparta Gym Tank-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

                            \n

                            • Green polyester tank.
                            • Ultra lightweight.
                            • Naturally odor-resistant.
                            • Close-to-body athletic fit.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"sparta-gym-tank-xl-green-704","links":{},"stock":{"item_id":704,"product_id":704,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-xl-green-704.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"654","_score":1,"_source":{"id":654,"sku":"MT02-L-Red","name":"Tristan Endurance Tank-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tristan-endurance-tank-l-red-654","links":{},"stock":{"item_id":654,"product_id":654,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-l-red-654.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"670","_score":1,"_source":{"id":670,"sku":"MT03-L-Red","name":"Primo Endurance Tank-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"primo-endurance-tank-l-red-670","links":{},"stock":{"item_id":670,"product_id":670,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-l-red-670.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"660","_score":1,"_source":{"id":660,"sku":"MT03-XS-Blue","name":"Primo Endurance Tank-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"primo-endurance-tank-xs-blue-660","links":{},"stock":{"item_id":660,"product_id":660,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xs-blue-660.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"671","_score":1,"_source":{"id":671,"sku":"MT03-L-Yellow","name":"Primo Endurance Tank-L-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"primo-endurance-tank-l-yellow-671","links":{},"stock":{"item_id":671,"product_id":671,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-l-yellow-671.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"664","_score":1,"_source":{"id":664,"sku":"MT03-S-Red","name":"Primo Endurance Tank-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"primo-endurance-tank-s-red-664","links":{},"stock":{"item_id":664,"product_id":664,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-s-red-664.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"652","_score":1,"_source":{"id":652,"sku":"MT02-M-White","name":"Tristan Endurance Tank-M-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tristan-endurance-tank-m-white-652","links":{},"stock":{"item_id":652,"product_id":652,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-m-white-652.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"661","_score":1,"_source":{"id":661,"sku":"MT03-XS-Red","name":"Primo Endurance Tank-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"primo-endurance-tank-xs-red-661","links":{},"stock":{"item_id":661,"product_id":661,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xs-red-661.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"653","_score":1,"_source":{"id":653,"sku":"MT02-L-Gray","name":"Tristan Endurance Tank-L-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tristan-endurance-tank-l-gray-653","links":{},"stock":{"item_id":653,"product_id":653,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-l-gray-653.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"678","_score":1,"_source":{"id":678,"sku":"MT04-M-Blue","name":"Helios Endurance Tank-M-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

                            \n

                            • Blue heather tank with gray pocket.
                            • Contrast sides and back inserts.
                            • Self-fabric binding at neck and armholes.
                            • Machine wash/dry.

                            ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helios-endurance-tank-m-blue-678","links":{},"stock":{"item_id":678,"product_id":678,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-m-blue-678.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"663","_score":1,"_source":{"id":663,"sku":"MT03-S-Blue","name":"Primo Endurance Tank-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"primo-endurance-tank-s-blue-663","links":{},"stock":{"item_id":663,"product_id":663,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-s-blue-663.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"669","_score":1,"_source":{"id":669,"sku":"MT03-L-Blue","name":"Primo Endurance Tank-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"primo-endurance-tank-l-blue-669","links":{},"stock":{"item_id":669,"product_id":669,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-l-blue-669.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"662","_score":1,"_source":{"id":662,"sku":"MT03-XS-Yellow","name":"Primo Endurance Tank-XS-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"primo-endurance-tank-xs-yellow-662","links":{},"stock":{"item_id":662,"product_id":662,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":17,"name":"Tanks","slug":"tanks-17","path":"men/tops-men/tanks-men/tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xs-yellow-662.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"758","_score":1,"_source":{"id":758,"sku":"MP03-32-Red","name":"Geo Insulated Jogging Pant-32-Red","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"geo-insulated-jogging-pant-32-red-758","links":{},"stock":{"item_id":758,"product_id":758,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-32-red-758.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"774","_score":1,"_source":{"id":774,"sku":"MP04-33-Green","name":"Supernova Sport Pant-33-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","color":"53","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"supernova-sport-pant-33-green-774","links":{},"stock":{"item_id":774,"product_id":774,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-33-green-774.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"784","_score":1,"_source":{"id":784,"sku":"MP05-32-Green","name":"Kratos Gym Pant-32-Green","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"kratos-gym-pant-32-green-784","links":{},"stock":{"item_id":784,"product_id":784,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-32-green-784.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"786","_score":1,"_source":{"id":786,"sku":"MP05-33-Blue","name":"Kratos Gym Pant-33-Blue","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"kratos-gym-pant-33-blue-786","links":{},"stock":{"item_id":786,"product_id":786,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-33-blue-786.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"751","_score":1,"_source":{"id":751,"sku":"MP02-34-Red","name":"Viktor LumaTech™ Pant-34-Red","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","color":"58","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"viktor-lumatech-and-trade-pant-34-red-751","links":{},"stock":{"item_id":751,"product_id":751,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-34-red-751.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"752","_score":1,"_source":{"id":752,"sku":"MP02-36-Blue","name":"Viktor LumaTech™ Pant-36-Blue","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","color":"50","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"viktor-lumatech-and-trade-pant-36-blue-752","links":{},"stock":{"item_id":752,"product_id":752,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-36-blue-752.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"780","_score":1,"_source":{"id":780,"sku":"MP04-36-Green","name":"Supernova Sport Pant-36-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","color":"53","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"supernova-sport-pant-36-green-780","links":{},"stock":{"item_id":780,"product_id":780,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-36-green-780.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1079","_score":1,"_source":{"id":1079,"sku":"WH03-XL-Purple","name":"Autumn Pullie-XL-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"autumn-pullie-xl-purple-1079","links":{},"stock":{"item_id":1079,"product_id":1079,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xl-purple-1079.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1086","_score":1,"_source":{"id":1086,"sku":"WH04-S-Orange","name":"Miko Pullover Hoodie-S-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"miko-pullover-hoodie-s-orange-1086","links":{},"stock":{"item_id":1086,"product_id":1086,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-s-orange-1086.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1064","_score":1,"_source":{"id":1064,"sku":"WH02-XL-Orange","name":"Hera Pullover Hoodie-XL-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hera-pullover-hoodie-xl-orange-1064","links":{},"stock":{"item_id":1064,"product_id":1064,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xl-orange-1064.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1095","_score":1,"_source":{"id":1095,"sku":"WH04-XL-Orange","name":"Miko Pullover Hoodie-XL-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"miko-pullover-hoodie-xl-orange-1095","links":{},"stock":{"item_id":1095,"product_id":1095,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xl-orange-1095.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1060","_score":1,"_source":{"id":1060,"sku":"WH02-L-Green","name":"Hera Pullover Hoodie-L-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hera-pullover-hoodie-l-green-1060","links":{},"stock":{"item_id":1060,"product_id":1060,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-l-green-1060.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1100","_score":1,"_source":{"id":1100,"sku":"WH05-XS-White","name":"Selene Yoga Hoodie-XS-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"selene-yoga-hoodie-xs-white-1100","links":{},"stock":{"item_id":1100,"product_id":1100,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xs-white-1100.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1072","_score":1,"_source":{"id":1072,"sku":"WH03-M-Green","name":"Autumn Pullie-M-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"autumn-pullie-m-green-1072","links":{},"stock":{"item_id":1072,"product_id":1072,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-m-green-1072.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1084","_score":1,"_source":{"id":1084,"sku":"WH04-XS-Purple","name":"Miko Pullover Hoodie-XS-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"miko-pullover-hoodie-xs-purple-1084","links":{},"stock":{"item_id":1084,"product_id":1084,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xs-purple-1084.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1094","_score":1,"_source":{"id":1094,"sku":"WH04-XL-Blue","name":"Miko Pullover Hoodie-XL-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"miko-pullover-hoodie-xl-blue-1094","links":{},"stock":{"item_id":1094,"product_id":1094,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xl-blue-1094.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1082","_score":1,"_source":{"id":1082,"sku":"WH04-XS-Blue","name":"Miko Pullover Hoodie-XS-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"miko-pullover-hoodie-xs-blue-1082","links":{},"stock":{"item_id":1082,"product_id":1082,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xs-blue-1082.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1093","_score":1,"_source":{"id":1093,"sku":"WH04-L-Purple","name":"Miko Pullover Hoodie-L-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"miko-pullover-hoodie-l-purple-1093","links":{},"stock":{"item_id":1093,"product_id":1093,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-l-purple-1093.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1099","_score":1,"_source":{"id":1099,"sku":"WH05-XS-Purple","name":"Selene Yoga Hoodie-XS-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"selene-yoga-hoodie-xs-purple-1099","links":{},"stock":{"item_id":1099,"product_id":1099,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xs-purple-1099.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1083","_score":1,"_source":{"id":1083,"sku":"WH04-XS-Orange","name":"Miko Pullover Hoodie-XS-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"miko-pullover-hoodie-xs-orange-1083","links":{},"stock":{"item_id":1083,"product_id":1083,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xs-orange-1083.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1088","_score":1,"_source":{"id":1088,"sku":"WH04-M-Blue","name":"Miko Pullover Hoodie-M-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"miko-pullover-hoodie-m-blue-1088","links":{},"stock":{"item_id":1088,"product_id":1088,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-m-blue-1088.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1080","_score":1,"_source":{"id":1080,"sku":"WH03-XL-Red","name":"Autumn Pullie-XL-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"autumn-pullie-xl-red-1080","links":{},"stock":{"item_id":1080,"product_id":1080,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xl-red-1080.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1087","_score":1,"_source":{"id":1087,"sku":"WH04-S-Purple","name":"Miko Pullover Hoodie-S-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"miko-pullover-hoodie-s-purple-1087","links":{},"stock":{"item_id":1087,"product_id":1087,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-s-purple-1087.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1090","_score":1,"_source":{"id":1090,"sku":"WH04-M-Purple","name":"Miko Pullover Hoodie-M-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"miko-pullover-hoodie-m-purple-1090","links":{},"stock":{"item_id":1090,"product_id":1090,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-m-purple-1090.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1098","_score":1,"_source":{"id":1098,"sku":"WH05-XS-Orange","name":"Selene Yoga Hoodie-XS-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"selene-yoga-hoodie-xs-orange-1098","links":{},"stock":{"item_id":1098,"product_id":1098,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xs-orange-1098.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1096","_score":1,"_source":{"id":1096,"sku":"WH04-XL-Purple","name":"Miko Pullover Hoodie-XL-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"miko-pullover-hoodie-xl-purple-1096","links":{},"stock":{"item_id":1096,"product_id":1096,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xl-purple-1096.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1091","_score":1,"_source":{"id":1091,"sku":"WH04-L-Blue","name":"Miko Pullover Hoodie-L-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"miko-pullover-hoodie-l-blue-1091","links":{},"stock":{"item_id":1091,"product_id":1091,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-l-blue-1091.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1081","_score":1,"_source":{"id":1081,"sku":"WH03","name":"Autumn Pullie","attribute_set_id":9,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"autumn-pullie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[137,133],"pattern":"197","climate":[205,206,208],"slug":"autumn-pullie-1081","links":{},"stock":{"item_id":1081,"product_id":1081,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH03-XS-Green","id":1066,"status":1,"name":"Autumn Pullie-XS-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"53","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","url_key":"autumn-pullie-xs-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-XS-Purple","id":1067,"status":1,"name":"Autumn Pullie-XS-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"57","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","url_key":"autumn-pullie-xs-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-XS-Red","id":1068,"status":1,"name":"Autumn Pullie-XS-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"58","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","url_key":"autumn-pullie-xs-red","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-S-Green","id":1069,"status":1,"name":"Autumn Pullie-S-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"53","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","url_key":"autumn-pullie-s-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-S-Purple","id":1070,"status":1,"name":"Autumn Pullie-S-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"57","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","url_key":"autumn-pullie-s-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-S-Red","id":1071,"status":1,"name":"Autumn Pullie-S-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"58","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","url_key":"autumn-pullie-s-red","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-M-Green","id":1072,"status":1,"name":"Autumn Pullie-M-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"53","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","url_key":"autumn-pullie-m-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-M-Purple","id":1073,"status":1,"name":"Autumn Pullie-M-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"57","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","url_key":"autumn-pullie-m-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-M-Red","id":1074,"status":1,"name":"Autumn Pullie-M-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"58","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","url_key":"autumn-pullie-m-red","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-L-Green","id":1075,"status":1,"name":"Autumn Pullie-L-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"53","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","url_key":"autumn-pullie-l-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-L-Purple","id":1076,"status":1,"name":"Autumn Pullie-L-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"57","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","url_key":"autumn-pullie-l-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-L-Red","id":1077,"status":1,"name":"Autumn Pullie-L-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"58","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","url_key":"autumn-pullie-l-red","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-XL-Green","id":1078,"status":1,"name":"Autumn Pullie-XL-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"53","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","url_key":"autumn-pullie-xl-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-XL-Purple","id":1079,"status":1,"name":"Autumn Pullie-XL-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"57","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","url_key":"autumn-pullie-xl-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH03-XL-Red","id":1080,"status":1,"name":"Autumn Pullie-XL-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"58","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","url_key":"autumn-pullie-xl-red","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57}],"configurable_options":[{"id":151,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1081,"attribute_code":"color"},{"id":150,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1081,"attribute_code":"size"}],"color_options":[53,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-1081.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1065","_score":1,"_source":{"id":1065,"sku":"WH02","name":"Hera Pullover Hoodie","attribute_set_id":9,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hera-pullover-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":[138,137],"pattern":"197","climate":[202,204,206,208],"slug":"hera-pullover-hoodie-1065","links":{},"stock":{"item_id":1065,"product_id":1065,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH02-XS-Blue","id":1050,"status":1,"name":"Hera Pullover Hoodie-XS-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"167","color":"50","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","url_key":"hera-pullover-hoodie-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WH02-XS-Green","id":1051,"status":1,"name":"Hera Pullover Hoodie-XS-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"167","color":"53","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","url_key":"hera-pullover-hoodie-xs-green","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-XS-Orange","id":1052,"status":1,"name":"Hera Pullover Hoodie-XS-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"167","color":"56","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","url_key":"hera-pullover-hoodie-xs-orange","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-S-Blue","id":1053,"status":1,"name":"Hera Pullover Hoodie-S-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"168","color":"50","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","url_key":"hera-pullover-hoodie-s-blue","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-S-Green","id":1054,"status":1,"name":"Hera Pullover Hoodie-S-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"168","color":"53","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","url_key":"hera-pullover-hoodie-s-green","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-S-Orange","id":1055,"status":1,"name":"Hera Pullover Hoodie-S-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"168","color":"56","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","url_key":"hera-pullover-hoodie-s-orange","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-M-Blue","id":1056,"status":1,"name":"Hera Pullover Hoodie-M-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"169","color":"50","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","url_key":"hera-pullover-hoodie-m-blue","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-M-Green","id":1057,"status":1,"name":"Hera Pullover Hoodie-M-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"169","color":"53","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","url_key":"hera-pullover-hoodie-m-green","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-M-Orange","id":1058,"status":1,"name":"Hera Pullover Hoodie-M-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"169","color":"56","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","url_key":"hera-pullover-hoodie-m-orange","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-L-Blue","id":1059,"status":1,"name":"Hera Pullover Hoodie-L-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"170","color":"50","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","url_key":"hera-pullover-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-L-Green","id":1060,"status":1,"name":"Hera Pullover Hoodie-L-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"170","color":"53","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","url_key":"hera-pullover-hoodie-l-green","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-L-Orange","id":1061,"status":1,"name":"Hera Pullover Hoodie-L-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"170","color":"56","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","url_key":"hera-pullover-hoodie-l-orange","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-XL-Blue","id":1062,"status":1,"name":"Hera Pullover Hoodie-XL-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"171","color":"50","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","url_key":"hera-pullover-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-XL-Green","id":1063,"status":1,"name":"Hera Pullover Hoodie-XL-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"171","color":"53","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","url_key":"hera-pullover-hoodie-xl-green","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WH02-XL-Orange","id":1064,"status":1,"name":"Hera Pullover Hoodie-XL-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","2"],"size":"171","color":"56","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","url_key":"hera-pullover-hoodie-xl-orange","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48}],"configurable_options":[{"id":149,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":1065,"attribute_code":"color"},{"id":148,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1065,"attribute_code":"size"}],"color_options":[50,53,56],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-1065.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1097","_score":1,"_source":{"id":1097,"sku":"WH04","name":"Miko Pullover Hoodie","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"miko-pullover-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[147,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[137,133],"pattern":"197","climate":[202,204,208],"slug":"miko-pullover-hoodie-1097","links":{},"stock":{"item_id":1097,"product_id":1097,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH04-XS-Blue","id":1082,"status":1,"name":"Miko Pullover Hoodie-XS-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"50","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","url_key":"miko-pullover-hoodie-xs-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-XS-Orange","id":1083,"status":1,"name":"Miko Pullover Hoodie-XS-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"56","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","url_key":"miko-pullover-hoodie-xs-orange","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-XS-Purple","id":1084,"status":1,"name":"Miko Pullover Hoodie-XS-Purple","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"57","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","url_key":"miko-pullover-hoodie-xs-purple","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-S-Blue","id":1085,"status":1,"name":"Miko Pullover Hoodie-S-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"50","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","url_key":"miko-pullover-hoodie-s-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-S-Orange","id":1086,"status":1,"name":"Miko Pullover Hoodie-S-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"56","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","url_key":"miko-pullover-hoodie-s-orange","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-S-Purple","id":1087,"status":1,"name":"Miko Pullover Hoodie-S-Purple","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"57","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","url_key":"miko-pullover-hoodie-s-purple","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-M-Blue","id":1088,"status":1,"name":"Miko Pullover Hoodie-M-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"50","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","url_key":"miko-pullover-hoodie-m-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-M-Orange","id":1089,"status":1,"name":"Miko Pullover Hoodie-M-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"56","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","url_key":"miko-pullover-hoodie-m-orange","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-M-Purple","id":1090,"status":1,"name":"Miko Pullover Hoodie-M-Purple","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"57","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","url_key":"miko-pullover-hoodie-m-purple","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-L-Blue","id":1091,"status":1,"name":"Miko Pullover Hoodie-L-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"50","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","url_key":"miko-pullover-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-L-Orange","id":1092,"status":1,"name":"Miko Pullover Hoodie-L-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"56","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","url_key":"miko-pullover-hoodie-l-orange","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-L-Purple","id":1093,"status":1,"name":"Miko Pullover Hoodie-L-Purple","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"57","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","url_key":"miko-pullover-hoodie-l-purple","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-XL-Blue","id":1094,"status":1,"name":"Miko Pullover Hoodie-XL-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"50","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","url_key":"miko-pullover-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-XL-Orange","id":1095,"status":1,"name":"Miko Pullover Hoodie-XL-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"56","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","url_key":"miko-pullover-hoodie-xl-orange","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WH04-XL-Purple","id":1096,"status":1,"name":"Miko Pullover Hoodie-XL-Purple","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"57","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","url_key":"miko-pullover-hoodie-xl-purple","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69}],"configurable_options":[{"id":153,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1097,"attribute_code":"color"},{"id":152,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1097,"attribute_code":"size"}],"color_options":[50,56,57],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-1097.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1015","_score":1,"_source":{"id":1015,"sku":"MSH11-34-Blue","name":"Arcadio Gym Short-34-Blue","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","color":"50","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"arcadio-gym-short-34-blue-1015","links":{},"stock":{"item_id":1015,"product_id":1015,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-34-blue-1015.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1041","_score":1,"_source":{"id":1041,"sku":"WH01-M-Orange","name":"Mona Pullover Hoodlie-M-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mona-pullover-hoodlie-m-orange-1041","links":{},"stock":{"item_id":1041,"product_id":1041,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-m-orange-1041.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1017","_score":1,"_source":{"id":1017,"sku":"MSH11-36-Black","name":"Arcadio Gym Short-36-Black","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"arcadio-gym-short-36-black-1017","links":{},"stock":{"item_id":1017,"product_id":1017,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-36-black-1017.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1050","_score":1,"_source":{"id":1050,"sku":"WH02-XS-Blue","name":"Hera Pullover Hoodie-XS-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hera-pullover-hoodie-xs-blue-1050","links":{},"stock":{"item_id":1050,"product_id":1050,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xs-blue-1050.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1036","_score":1,"_source":{"id":1036,"sku":"WH01-XS-Purple","name":"Mona Pullover Hoodlie-XS-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mona-pullover-hoodlie-xs-purple-1036","links":{},"stock":{"item_id":1036,"product_id":1036,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xs-purple-1036.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1043","_score":1,"_source":{"id":1043,"sku":"WH01-L-Green","name":"Mona Pullover Hoodlie-L-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mona-pullover-hoodlie-l-green-1043","links":{},"stock":{"item_id":1043,"product_id":1043,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-l-green-1043.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1006","_score":1,"_source":{"id":1006,"sku":"MSH10-36-Purple","name":"Sol Active Short-36-Purple","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","color":"57","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"sol-active-short-36-purple-1006","links":{},"stock":{"item_id":1006,"product_id":1006,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-36-purple-1006.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1029","_score":1,"_source":{"id":1029,"sku":"MSH12-34-Red","name":"Pierce Gym Short-34-Red","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","color":"58","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"pierce-gym-short-34-red-1029","links":{},"stock":{"item_id":1029,"product_id":1029,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-34-red-1029.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1048","_score":1,"_source":{"id":1048,"sku":"WH01-XL-Purple","name":"Mona Pullover Hoodlie-XL-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mona-pullover-hoodlie-xl-purple-1048","links":{},"stock":{"item_id":1048,"product_id":1048,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xl-purple-1048.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1039","_score":1,"_source":{"id":1039,"sku":"WH01-S-Purple","name":"Mona Pullover Hoodlie-S-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mona-pullover-hoodlie-s-purple-1039","links":{},"stock":{"item_id":1039,"product_id":1039,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-s-purple-1039.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1028","_score":1,"_source":{"id":1028,"sku":"MSH12-34-Gray","name":"Pierce Gym Short-34-Gray","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","color":"52","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"pierce-gym-short-34-gray-1028","links":{},"stock":{"item_id":1028,"product_id":1028,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-34-gray-1028.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1032","_score":1,"_source":{"id":1032,"sku":"MSH12-36-Red","name":"Pierce Gym Short-36-Red","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","color":"58","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"pierce-gym-short-36-red-1032","links":{},"stock":{"item_id":1032,"product_id":1032,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-36-red-1032.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1044","_score":1,"_source":{"id":1044,"sku":"WH01-L-Orange","name":"Mona Pullover Hoodlie-L-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mona-pullover-hoodlie-l-orange-1044","links":{},"stock":{"item_id":1044,"product_id":1044,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-l-orange-1044.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1038","_score":1,"_source":{"id":1038,"sku":"WH01-S-Orange","name":"Mona Pullover Hoodlie-S-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mona-pullover-hoodlie-s-orange-1038","links":{},"stock":{"item_id":1038,"product_id":1038,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-s-orange-1038.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1037","_score":1,"_source":{"id":1037,"sku":"WH01-S-Green","name":"Mona Pullover Hoodlie-S-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mona-pullover-hoodlie-s-green-1037","links":{},"stock":{"item_id":1037,"product_id":1037,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-s-green-1037.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1045","_score":1,"_source":{"id":1045,"sku":"WH01-L-Purple","name":"Mona Pullover Hoodlie-L-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mona-pullover-hoodlie-l-purple-1045","links":{},"stock":{"item_id":1045,"product_id":1045,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-l-purple-1045.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1007","_score":1,"_source":{"id":1007,"sku":"MSH10","name":"Sol Active Short","attribute_set_id":10,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sol-active-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[205,212,209],"slug":"sol-active-short-1007","links":{},"stock":{"item_id":1007,"product_id":1007,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH10-32-Blue","id":995,"status":1,"name":"Sol Active Short-32-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"176","color":"50","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","url_key":"sol-active-short-32-blue","msrp_display_actual_price_type":"0"},{"sku":"MSH10-32-Green","id":996,"status":1,"name":"Sol Active Short-32-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"176","color":"53","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","url_key":"sol-active-short-32-green","msrp_display_actual_price_type":"0"},{"sku":"MSH10-32-Purple","id":997,"status":1,"name":"Sol Active Short-32-Purple","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"176","color":"57","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","url_key":"sol-active-short-32-purple","msrp_display_actual_price_type":"0"},{"sku":"MSH10-33-Blue","id":998,"status":1,"name":"Sol Active Short-33-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"177","color":"50","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","url_key":"sol-active-short-33-blue","msrp_display_actual_price_type":"0"},{"sku":"MSH10-33-Green","id":999,"status":1,"name":"Sol Active Short-33-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"177","color":"53","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","url_key":"sol-active-short-33-green","msrp_display_actual_price_type":"0"},{"sku":"MSH10-33-Purple","id":1000,"status":1,"name":"Sol Active Short-33-Purple","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"177","color":"57","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","url_key":"sol-active-short-33-purple","msrp_display_actual_price_type":"0"},{"sku":"MSH10-34-Blue","id":1001,"status":1,"name":"Sol Active Short-34-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"178","color":"50","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","url_key":"sol-active-short-34-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MSH10-34-Green","id":1002,"status":1,"name":"Sol Active Short-34-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"178","color":"53","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","url_key":"sol-active-short-34-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MSH10-34-Purple","id":1003,"status":1,"name":"Sol Active Short-34-Purple","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"178","color":"57","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","url_key":"sol-active-short-34-purple","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MSH10-36-Blue","id":1004,"status":1,"name":"Sol Active Short-36-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"179","color":"50","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","url_key":"sol-active-short-36-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MSH10-36-Green","id":1005,"status":1,"name":"Sol Active Short-36-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"179","color":"53","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","url_key":"sol-active-short-36-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MSH10-36-Purple","id":1006,"status":1,"name":"Sol Active Short-36-Purple","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"179","color":"57","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","url_key":"sol-active-short-36-purple","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32}],"configurable_options":[{"id":141,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"}],"product_id":1007,"attribute_code":"color"},{"id":140,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":1007,"attribute_code":"size"}],"color_options":[50,53,57],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-1007.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1033","_score":1,"_source":{"id":1033,"sku":"MSH12","name":"Pierce Gym Short","attribute_set_id":10,"price":27,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"pierce-gym-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,36,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_bottom":[116,105,108,114],"pattern":"197","climate":[205,212,209],"slug":"pierce-gym-short-1033","links":{},"stock":{"item_id":1033,"product_id":1033,"stock_id":1,"qty":7,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH12-32-Black","id":1021,"status":1,"name":"Pierce Gym Short-32-Black","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"176","color":"49","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","url_key":"pierce-gym-short-32-black","msrp_display_actual_price_type":"0"},{"sku":"MSH12-32-Gray","id":1022,"status":1,"name":"Pierce Gym Short-32-Gray","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"176","color":"52","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","url_key":"pierce-gym-short-32-gray","msrp_display_actual_price_type":"0","final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27},{"sku":"MSH12-32-Red","id":1023,"status":1,"name":"Pierce Gym Short-32-Red","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"176","color":"58","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","url_key":"pierce-gym-short-32-red","msrp_display_actual_price_type":"0","final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27},{"sku":"MSH12-33-Black","id":1024,"status":1,"name":"Pierce Gym Short-33-Black","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"177","color":"49","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","url_key":"pierce-gym-short-33-black","msrp_display_actual_price_type":"0","final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27},{"sku":"MSH12-33-Gray","id":1025,"status":1,"name":"Pierce Gym Short-33-Gray","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"177","color":"52","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","url_key":"pierce-gym-short-33-gray","msrp_display_actual_price_type":"0","final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27},{"sku":"MSH12-33-Red","id":1026,"status":1,"name":"Pierce Gym Short-33-Red","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"177","color":"58","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","url_key":"pierce-gym-short-33-red","msrp_display_actual_price_type":"0","final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27},{"sku":"MSH12-34-Black","id":1027,"status":1,"name":"Pierce Gym Short-34-Black","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"178","color":"49","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","url_key":"pierce-gym-short-34-black","msrp_display_actual_price_type":"0","final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27},{"sku":"MSH12-34-Gray","id":1028,"status":1,"name":"Pierce Gym Short-34-Gray","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"178","color":"52","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","url_key":"pierce-gym-short-34-gray","msrp_display_actual_price_type":"0","final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27},{"sku":"MSH12-34-Red","id":1029,"status":1,"name":"Pierce Gym Short-34-Red","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"178","color":"58","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","url_key":"pierce-gym-short-34-red","msrp_display_actual_price_type":"0","final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27},{"sku":"MSH12-36-Black","id":1030,"status":1,"name":"Pierce Gym Short-36-Black","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"179","color":"49","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","url_key":"pierce-gym-short-36-black","msrp_display_actual_price_type":"0","final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27},{"sku":"MSH12-36-Gray","id":1031,"status":1,"name":"Pierce Gym Short-36-Gray","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"179","color":"52","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","url_key":"pierce-gym-short-36-gray","msrp_display_actual_price_type":"0","final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27},{"sku":"MSH12-36-Red","id":1032,"status":1,"name":"Pierce Gym Short-36-Red","price":27,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"179","color":"58","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","url_key":"pierce-gym-short-36-red","msrp_display_actual_price_type":"0","final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27}],"configurable_options":[{"id":145,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"}],"product_id":1033,"attribute_code":"color"},{"id":144,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":1033,"attribute_code":"size"}],"color_options":[49,52,58],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-1033.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1111","_score":1,"_source":{"id":1111,"sku":"WH05-XL-Purple","name":"Selene Yoga Hoodie-XL-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"selene-yoga-hoodie-xl-purple-1111","links":{},"stock":{"item_id":1111,"product_id":1111,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xl-purple-1111.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1104","_score":1,"_source":{"id":1104,"sku":"WH05-M-Orange","name":"Selene Yoga Hoodie-M-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"selene-yoga-hoodie-m-orange-1104","links":{},"stock":{"item_id":1104,"product_id":1104,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-m-orange-1104.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1101","_score":1,"_source":{"id":1101,"sku":"WH05-S-Orange","name":"Selene Yoga Hoodie-S-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"selene-yoga-hoodie-s-orange-1101","links":{},"stock":{"item_id":1101,"product_id":1101,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-s-orange-1101.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1107","_score":1,"_source":{"id":1107,"sku":"WH05-L-Orange","name":"Selene Yoga Hoodie-L-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"selene-yoga-hoodie-l-orange-1107","links":{},"stock":{"item_id":1107,"product_id":1107,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-l-orange-1107.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1121","_score":1,"_source":{"id":1121,"sku":"WH07-XS-Purple","name":"Phoebe Zipper Sweatshirt-XS-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"phoebe-zipper-sweatshirt-xs-purple-1121","links":{},"stock":{"item_id":1121,"product_id":1121,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xs-purple-1121.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1112","_score":1,"_source":{"id":1112,"sku":"WH05-XL-White","name":"Selene Yoga Hoodie-XL-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"selene-yoga-hoodie-xl-white-1112","links":{},"stock":{"item_id":1112,"product_id":1112,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xl-white-1112.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1120","_score":1,"_source":{"id":1120,"sku":"WH07-XS-Gray","name":"Phoebe Zipper Sweatshirt-XS-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"phoebe-zipper-sweatshirt-xs-gray-1120","links":{},"stock":{"item_id":1120,"product_id":1120,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xs-gray-1120.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1110","_score":1,"_source":{"id":1110,"sku":"WH05-XL-Orange","name":"Selene Yoga Hoodie-XL-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"selene-yoga-hoodie-xl-orange-1110","links":{},"stock":{"item_id":1110,"product_id":1110,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xl-orange-1110.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1116","_score":1,"_source":{"id":1116,"sku":"WH06-M-Purple","name":"Daphne Full-Zip Hoodie-M-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

                            \n

                            • Purple full zip hoodie with pink accents.
                            • Heather texture.
                            • 4-way stretch.
                            • Pre-shrunk.
                            • Hood lined in vegan Sherpa for added warmth.
                            • Ribbed hem on hood and front pouch pocket.
                            • 60% Cotton / 40% Polyester.

                            ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"daphne-full-zip-hoodie-m-purple-1116","links":{},"stock":{"item_id":1116,"product_id":1116,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-m-purple-1116.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1122","_score":1,"_source":{"id":1122,"sku":"WH07-XS-White","name":"Phoebe Zipper Sweatshirt-XS-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"phoebe-zipper-sweatshirt-xs-white-1122","links":{},"stock":{"item_id":1122,"product_id":1122,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xs-white-1122.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1115","_score":1,"_source":{"id":1115,"sku":"WH06-S-Purple","name":"Daphne Full-Zip Hoodie-S-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

                            \n

                            • Purple full zip hoodie with pink accents.
                            • Heather texture.
                            • 4-way stretch.
                            • Pre-shrunk.
                            • Hood lined in vegan Sherpa for added warmth.
                            • Ribbed hem on hood and front pouch pocket.
                            • 60% Cotton / 40% Polyester.

                            ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"daphne-full-zip-hoodie-s-purple-1115","links":{},"stock":{"item_id":1115,"product_id":1115,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-s-purple-1115.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1114","_score":1,"_source":{"id":1114,"sku":"WH06-XS-Purple","name":"Daphne Full-Zip Hoodie-XS-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

                            \n

                            • Purple full zip hoodie with pink accents.
                            • Heather texture.
                            • 4-way stretch.
                            • Pre-shrunk.
                            • Hood lined in vegan Sherpa for added warmth.
                            • Ribbed hem on hood and front pouch pocket.
                            • 60% Cotton / 40% Polyester.

                            ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"daphne-full-zip-hoodie-xs-purple-1114","links":{},"stock":{"item_id":1114,"product_id":1114,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-xs-purple-1114.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1117","_score":1,"_source":{"id":1117,"sku":"WH06-L-Purple","name":"Daphne Full-Zip Hoodie-L-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

                            \n

                            • Purple full zip hoodie with pink accents.
                            • Heather texture.
                            • 4-way stretch.
                            • Pre-shrunk.
                            • Hood lined in vegan Sherpa for added warmth.
                            • Ribbed hem on hood and front pouch pocket.
                            • 60% Cotton / 40% Polyester.

                            ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"daphne-full-zip-hoodie-l-purple-1117","links":{},"stock":{"item_id":1117,"product_id":1117,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-l-purple-1117.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1124","_score":1,"_source":{"id":1124,"sku":"WH07-S-Purple","name":"Phoebe Zipper Sweatshirt-S-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"phoebe-zipper-sweatshirt-s-purple-1124","links":{},"stock":{"item_id":1124,"product_id":1124,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-s-purple-1124.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1102","_score":1,"_source":{"id":1102,"sku":"WH05-S-Purple","name":"Selene Yoga Hoodie-S-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"selene-yoga-hoodie-s-purple-1102","links":{},"stock":{"item_id":1102,"product_id":1102,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-s-purple-1102.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1123","_score":1,"_source":{"id":1123,"sku":"WH07-S-Gray","name":"Phoebe Zipper Sweatshirt-S-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"phoebe-zipper-sweatshirt-s-gray-1123","links":{},"stock":{"item_id":1123,"product_id":1123,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-s-gray-1123.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1118","_score":1,"_source":{"id":1118,"sku":"WH06-XL-Purple","name":"Daphne Full-Zip Hoodie-XL-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

                            \n

                            • Purple full zip hoodie with pink accents.
                            • Heather texture.
                            • 4-way stretch.
                            • Pre-shrunk.
                            • Hood lined in vegan Sherpa for added warmth.
                            • Ribbed hem on hood and front pouch pocket.
                            • 60% Cotton / 40% Polyester.

                            ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"daphne-full-zip-hoodie-xl-purple-1118","links":{},"stock":{"item_id":1118,"product_id":1118,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-xl-purple-1118.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1126","_score":1,"_source":{"id":1126,"sku":"WH07-M-Gray","name":"Phoebe Zipper Sweatshirt-M-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"phoebe-zipper-sweatshirt-m-gray-1126","links":{},"stock":{"item_id":1126,"product_id":1126,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-m-gray-1126.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1105","_score":1,"_source":{"id":1105,"sku":"WH05-M-Purple","name":"Selene Yoga Hoodie-M-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"selene-yoga-hoodie-m-purple-1105","links":{},"stock":{"item_id":1105,"product_id":1105,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-m-purple-1105.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1132","_score":1,"_source":{"id":1132,"sku":"WH07-XL-Gray","name":"Phoebe Zipper Sweatshirt-XL-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"phoebe-zipper-sweatshirt-xl-gray-1132","links":{},"stock":{"item_id":1132,"product_id":1132,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xl-gray-1132.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1128","_score":1,"_source":{"id":1128,"sku":"WH07-M-White","name":"Phoebe Zipper Sweatshirt-M-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"phoebe-zipper-sweatshirt-m-white-1128","links":{},"stock":{"item_id":1128,"product_id":1128,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-m-white-1128.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1137","_score":1,"_source":{"id":1137,"sku":"WH08-XS-Purple","name":"Cassia Funnel Sweatshirt-XS-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"cassia-funnel-sweatshirt-xs-purple-1137","links":{},"stock":{"item_id":1137,"product_id":1137,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xs-purple-1137.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1103","_score":1,"_source":{"id":1103,"sku":"WH05-S-White","name":"Selene Yoga Hoodie-S-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"selene-yoga-hoodie-s-white-1103","links":{},"stock":{"item_id":1103,"product_id":1103,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-s-white-1103.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1149","_score":1,"_source":{"id":1149,"sku":"WH08-XL-Purple","name":"Cassia Funnel Sweatshirt-XL-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"cassia-funnel-sweatshirt-xl-purple-1149","links":{},"stock":{"item_id":1149,"product_id":1149,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xl-purple-1149.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1129","_score":1,"_source":{"id":1129,"sku":"WH07-L-Gray","name":"Phoebe Zipper Sweatshirt-L-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"phoebe-zipper-sweatshirt-l-gray-1129","links":{},"stock":{"item_id":1129,"product_id":1129,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-l-gray-1129.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1020","_score":1,"_source":{"id":1020,"sku":"MSH11","name":"Arcadio Gym Short","attribute_set_id":10,"price":20,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"arcadio-gym-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105,108],"pattern":"197","climate":[202,205,212,208,209],"slug":"arcadio-gym-short-1020","links":{},"stock":{"item_id":1020,"product_id":1020,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH11-32-Black","id":1008,"status":1,"name":"Arcadio Gym Short-32-Black","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"49","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","url_key":"arcadio-gym-short-32-black","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20},{"sku":"MSH11-32-Blue","id":1009,"status":1,"name":"Arcadio Gym Short-32-Blue","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"50","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","url_key":"arcadio-gym-short-32-blue","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20},{"sku":"MSH11-32-Red","id":1010,"status":1,"name":"Arcadio Gym Short-32-Red","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"58","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","url_key":"arcadio-gym-short-32-red","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20},{"sku":"MSH11-33-Black","id":1011,"status":1,"name":"Arcadio Gym Short-33-Black","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"49","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","url_key":"arcadio-gym-short-33-black","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20},{"sku":"MSH11-33-Blue","id":1012,"status":1,"name":"Arcadio Gym Short-33-Blue","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"50","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","url_key":"arcadio-gym-short-33-blue","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20},{"sku":"MSH11-33-Red","id":1013,"status":1,"name":"Arcadio Gym Short-33-Red","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"58","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","url_key":"arcadio-gym-short-33-red","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20},{"sku":"MSH11-34-Black","id":1014,"status":1,"name":"Arcadio Gym Short-34-Black","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"49","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","url_key":"arcadio-gym-short-34-black","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20},{"sku":"MSH11-34-Blue","id":1015,"status":1,"name":"Arcadio Gym Short-34-Blue","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"50","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","url_key":"arcadio-gym-short-34-blue","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20},{"sku":"MSH11-34-Red","id":1016,"status":1,"name":"Arcadio Gym Short-34-Red","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"58","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","url_key":"arcadio-gym-short-34-red","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20},{"sku":"MSH11-36-Black","id":1017,"status":1,"name":"Arcadio Gym Short-36-Black","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"49","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","url_key":"arcadio-gym-short-36-black","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20},{"sku":"MSH11-36-Blue","id":1018,"status":1,"name":"Arcadio Gym Short-36-Blue","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"50","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","url_key":"arcadio-gym-short-36-blue","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20},{"sku":"MSH11-36-Red","id":1019,"status":1,"name":"Arcadio Gym Short-36-Red","price":20,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"58","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","url_key":"arcadio-gym-short-36-red","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20}],"configurable_options":[{"id":143,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":1020,"attribute_code":"color"},{"id":142,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":1020,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-1020.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1049","_score":1,"_source":{"id":1049,"sku":"WH01","name":"Mona Pullover Hoodlie","attribute_set_id":9,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mona-pullover-hoodlie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":[138,137],"pattern":"197","climate":[202,204,206,208],"slug":"mona-pullover-hoodlie-1049","links":{},"stock":{"item_id":1049,"product_id":1049,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH01-XS-Green","id":1034,"status":1,"name":"Mona Pullover Hoodlie-XS-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"167","color":"53","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","url_key":"mona-pullover-hoodlie-xs-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-XS-Orange","id":1035,"status":1,"name":"Mona Pullover Hoodlie-XS-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"167","color":"56","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","url_key":"mona-pullover-hoodlie-xs-orange","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-XS-Purple","id":1036,"status":1,"name":"Mona Pullover Hoodlie-XS-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"167","color":"57","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","url_key":"mona-pullover-hoodlie-xs-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-S-Green","id":1037,"status":1,"name":"Mona Pullover Hoodlie-S-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"168","color":"53","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","url_key":"mona-pullover-hoodlie-s-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-S-Orange","id":1038,"status":1,"name":"Mona Pullover Hoodlie-S-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"168","color":"56","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","url_key":"mona-pullover-hoodlie-s-orange","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-S-Purple","id":1039,"status":1,"name":"Mona Pullover Hoodlie-S-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"168","color":"57","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","url_key":"mona-pullover-hoodlie-s-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-M-Green","id":1040,"status":1,"name":"Mona Pullover Hoodlie-M-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"169","color":"53","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","url_key":"mona-pullover-hoodlie-m-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-M-Orange","id":1041,"status":1,"name":"Mona Pullover Hoodlie-M-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"169","color":"56","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","url_key":"mona-pullover-hoodlie-m-orange","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-M-Purple","id":1042,"status":1,"name":"Mona Pullover Hoodlie-M-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"169","color":"57","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","url_key":"mona-pullover-hoodlie-m-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-L-Green","id":1043,"status":1,"name":"Mona Pullover Hoodlie-L-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"170","color":"53","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","url_key":"mona-pullover-hoodlie-l-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-L-Orange","id":1044,"status":1,"name":"Mona Pullover Hoodlie-L-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"170","color":"56","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","url_key":"mona-pullover-hoodlie-l-orange","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-L-Purple","id":1045,"status":1,"name":"Mona Pullover Hoodlie-L-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"170","color":"57","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","url_key":"mona-pullover-hoodlie-l-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-XL-Green","id":1046,"status":1,"name":"Mona Pullover Hoodlie-XL-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"171","color":"53","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","url_key":"mona-pullover-hoodlie-xl-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-XL-Orange","id":1047,"status":1,"name":"Mona Pullover Hoodlie-XL-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"171","color":"56","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","url_key":"mona-pullover-hoodlie-xl-orange","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WH01-XL-Purple","id":1048,"status":1,"name":"Mona Pullover Hoodlie-XL-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"171","color":"57","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","url_key":"mona-pullover-hoodlie-xl-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57}],"configurable_options":[{"id":147,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1049,"attribute_code":"color"},{"id":146,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1049,"attribute_code":"size"}],"color_options":[53,56,57],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-1049.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1052","_score":1,"_source":{"id":1052,"sku":"WH02-XS-Orange","name":"Hera Pullover Hoodie-XS-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hera-pullover-hoodie-xs-orange-1052","links":{},"stock":{"item_id":1052,"product_id":1052,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xs-orange-1052.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1053","_score":1,"_source":{"id":1053,"sku":"WH02-S-Blue","name":"Hera Pullover Hoodie-S-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hera-pullover-hoodie-s-blue-1053","links":{},"stock":{"item_id":1053,"product_id":1053,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-s-blue-1053.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1062","_score":1,"_source":{"id":1062,"sku":"WH02-XL-Blue","name":"Hera Pullover Hoodie-XL-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hera-pullover-hoodie-xl-blue-1062","links":{},"stock":{"item_id":1062,"product_id":1062,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xl-blue-1062.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1061","_score":1,"_source":{"id":1061,"sku":"WH02-L-Orange","name":"Hera Pullover Hoodie-L-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hera-pullover-hoodie-l-orange-1061","links":{},"stock":{"item_id":1061,"product_id":1061,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-l-orange-1061.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1067","_score":1,"_source":{"id":1067,"sku":"WH03-XS-Purple","name":"Autumn Pullie-XS-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"autumn-pullie-xs-purple-1067","links":{},"stock":{"item_id":1067,"product_id":1067,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xs-purple-1067.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1055","_score":1,"_source":{"id":1055,"sku":"WH02-S-Orange","name":"Hera Pullover Hoodie-S-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hera-pullover-hoodie-s-orange-1055","links":{},"stock":{"item_id":1055,"product_id":1055,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-s-orange-1055.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1051","_score":1,"_source":{"id":1051,"sku":"WH02-XS-Green","name":"Hera Pullover Hoodie-XS-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:07","updated_at":"2017-11-06 12:17:07","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hera-pullover-hoodie-xs-green-1051","links":{},"stock":{"item_id":1051,"product_id":1051,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xs-green-1051.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1071","_score":1,"_source":{"id":1071,"sku":"WH03-S-Red","name":"Autumn Pullie-S-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"autumn-pullie-s-red-1071","links":{},"stock":{"item_id":1071,"product_id":1071,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-s-red-1071.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1074","_score":1,"_source":{"id":1074,"sku":"WH03-M-Red","name":"Autumn Pullie-M-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"autumn-pullie-m-red-1074","links":{},"stock":{"item_id":1074,"product_id":1074,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-m-red-1074.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1077","_score":1,"_source":{"id":1077,"sku":"WH03-L-Red","name":"Autumn Pullie-L-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"autumn-pullie-l-red-1077","links":{},"stock":{"item_id":1077,"product_id":1077,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-l-red-1077.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1059","_score":1,"_source":{"id":1059,"sku":"WH02-L-Blue","name":"Hera Pullover Hoodie-L-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hera-pullover-hoodie-l-blue-1059","links":{},"stock":{"item_id":1059,"product_id":1059,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-l-blue-1059.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1075","_score":1,"_source":{"id":1075,"sku":"WH03-L-Green","name":"Autumn Pullie-L-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"autumn-pullie-l-green-1075","links":{},"stock":{"item_id":1075,"product_id":1075,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-l-green-1075.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1073","_score":1,"_source":{"id":1073,"sku":"WH03-M-Purple","name":"Autumn Pullie-M-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"autumn-pullie-m-purple-1073","links":{},"stock":{"item_id":1073,"product_id":1073,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-m-purple-1073.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1057","_score":1,"_source":{"id":1057,"sku":"WH02-M-Green","name":"Hera Pullover Hoodie-M-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hera-pullover-hoodie-m-green-1057","links":{},"stock":{"item_id":1057,"product_id":1057,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-m-green-1057.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1076","_score":1,"_source":{"id":1076,"sku":"WH03-L-Purple","name":"Autumn Pullie-L-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"autumn-pullie-l-purple-1076","links":{},"stock":{"item_id":1076,"product_id":1076,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-l-purple-1076.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1063","_score":1,"_source":{"id":1063,"sku":"WH02-XL-Green","name":"Hera Pullover Hoodie-XL-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hera-pullover-hoodie-xl-green-1063","links":{},"stock":{"item_id":1063,"product_id":1063,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xl-green-1063.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1069","_score":1,"_source":{"id":1069,"sku":"WH03-S-Green","name":"Autumn Pullie-S-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"autumn-pullie-s-green-1069","links":{},"stock":{"item_id":1069,"product_id":1069,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-s-green-1069.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1092","_score":1,"_source":{"id":1092,"sku":"WH04-L-Orange","name":"Miko Pullover Hoodie-L-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"miko-pullover-hoodie-l-orange-1092","links":{},"stock":{"item_id":1092,"product_id":1092,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-l-orange-1092.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1085","_score":1,"_source":{"id":1085,"sku":"WH04-S-Blue","name":"Miko Pullover Hoodie-S-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"miko-pullover-hoodie-s-blue-1085","links":{},"stock":{"item_id":1085,"product_id":1085,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-s-blue-1085.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1078","_score":1,"_source":{"id":1078,"sku":"WH03-XL-Green","name":"Autumn Pullie-XL-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"autumn-pullie-xl-green-1078","links":{},"stock":{"item_id":1078,"product_id":1078,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xl-green-1078.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1066","_score":1,"_source":{"id":1066,"sku":"WH03-XS-Green","name":"Autumn Pullie-XS-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"autumn-pullie-xs-green-1066","links":{},"stock":{"item_id":1066,"product_id":1066,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xs-green-1066.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1058","_score":1,"_source":{"id":1058,"sku":"WH02-M-Orange","name":"Hera Pullover Hoodie-M-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hera-pullover-hoodie-m-orange-1058","links":{},"stock":{"item_id":1058,"product_id":1058,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-m-orange-1058.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1054","_score":1,"_source":{"id":1054,"sku":"WH02-S-Green","name":"Hera Pullover Hoodie-S-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hera-pullover-hoodie-s-green-1054","links":{},"stock":{"item_id":1054,"product_id":1054,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-s-green-1054.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1056","_score":1,"_source":{"id":1056,"sku":"WH02-M-Blue","name":"Hera Pullover Hoodie-M-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hera-pullover-hoodie-m-blue-1056","links":{},"stock":{"item_id":1056,"product_id":1056,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-m-blue-1056.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1089","_score":1,"_source":{"id":1089,"sku":"WH04-M-Orange","name":"Miko Pullover Hoodie-M-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"miko-pullover-hoodie-m-orange-1089","links":{},"stock":{"item_id":1089,"product_id":1089,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-m-orange-1089.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1070","_score":1,"_source":{"id":1070,"sku":"WH03-S-Purple","name":"Autumn Pullie-S-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"autumn-pullie-s-purple-1070","links":{},"stock":{"item_id":1070,"product_id":1070,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-s-purple-1070.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1068","_score":1,"_source":{"id":1068,"sku":"WH03-XS-Red","name":"Autumn Pullie-XS-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"autumn-pullie-xs-red-1068","links":{},"stock":{"item_id":1068,"product_id":1068,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xs-red-1068.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1024","_score":1,"_source":{"id":1024,"sku":"MSH12-33-Black","name":"Pierce Gym Short-33-Black","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"pierce-gym-short-33-black-1024","links":{},"stock":{"item_id":1024,"product_id":1024,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-33-black-1024.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1009","_score":1,"_source":{"id":1009,"sku":"MSH11-32-Blue","name":"Arcadio Gym Short-32-Blue","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","color":"50","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"arcadio-gym-short-32-blue-1009","links":{},"stock":{"item_id":1009,"product_id":1009,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-32-blue-1009.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1005","_score":1,"_source":{"id":1005,"sku":"MSH10-36-Green","name":"Sol Active Short-36-Green","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","color":"53","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"sol-active-short-36-green-1005","links":{},"stock":{"item_id":1005,"product_id":1005,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-36-green-1005.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1035","_score":1,"_source":{"id":1035,"sku":"WH01-XS-Orange","name":"Mona Pullover Hoodlie-XS-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mona-pullover-hoodlie-xs-orange-1035","links":{},"stock":{"item_id":1035,"product_id":1035,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xs-orange-1035.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1034","_score":1,"_source":{"id":1034,"sku":"WH01-XS-Green","name":"Mona Pullover Hoodlie-XS-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mona-pullover-hoodlie-xs-green-1034","links":{},"stock":{"item_id":1034,"product_id":1034,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xs-green-1034.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1042","_score":1,"_source":{"id":1042,"sku":"WH01-M-Purple","name":"Mona Pullover Hoodlie-M-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mona-pullover-hoodlie-m-purple-1042","links":{},"stock":{"item_id":1042,"product_id":1042,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-m-purple-1042.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1018","_score":1,"_source":{"id":1018,"sku":"MSH11-36-Blue","name":"Arcadio Gym Short-36-Blue","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","color":"50","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"arcadio-gym-short-36-blue-1018","links":{},"stock":{"item_id":1018,"product_id":1018,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-36-blue-1018.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1016","_score":1,"_source":{"id":1016,"sku":"MSH11-34-Red","name":"Arcadio Gym Short-34-Red","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","color":"58","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"arcadio-gym-short-34-red-1016","links":{},"stock":{"item_id":1016,"product_id":1016,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-34-red-1016.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1023","_score":1,"_source":{"id":1023,"sku":"MSH12-32-Red","name":"Pierce Gym Short-32-Red","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","color":"58","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"pierce-gym-short-32-red-1023","links":{},"stock":{"item_id":1023,"product_id":1023,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-32-red-1023.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1047","_score":1,"_source":{"id":1047,"sku":"WH01-XL-Orange","name":"Mona Pullover Hoodlie-XL-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mona-pullover-hoodlie-xl-orange-1047","links":{},"stock":{"item_id":1047,"product_id":1047,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xl-orange-1047.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1022","_score":1,"_source":{"id":1022,"sku":"MSH12-32-Gray","name":"Pierce Gym Short-32-Gray","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","color":"52","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"pierce-gym-short-32-gray-1022","links":{},"stock":{"item_id":1022,"product_id":1022,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-32-gray-1022.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1046","_score":1,"_source":{"id":1046,"sku":"WH01-XL-Green","name":"Mona Pullover Hoodlie-XL-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mona-pullover-hoodlie-xl-green-1046","links":{},"stock":{"item_id":1046,"product_id":1046,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xl-green-1046.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1008","_score":1,"_source":{"id":1008,"sku":"MSH11-32-Black","name":"Arcadio Gym Short-32-Black","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"arcadio-gym-short-32-black-1008","links":{},"stock":{"item_id":1008,"product_id":1008,"stock_id":1,"qty":70,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-32-black-1008.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1003","_score":1,"_source":{"id":1003,"sku":"MSH10-34-Purple","name":"Sol Active Short-34-Purple","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","color":"57","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"sol-active-short-34-purple-1003","links":{},"stock":{"item_id":1003,"product_id":1003,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-34-purple-1003.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1002","_score":1,"_source":{"id":1002,"sku":"MSH10-34-Green","name":"Sol Active Short-34-Green","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","color":"53","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"sol-active-short-34-green-1002","links":{},"stock":{"item_id":1002,"product_id":1002,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-34-green-1002.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1014","_score":1,"_source":{"id":1014,"sku":"MSH11-34-Black","name":"Arcadio Gym Short-34-Black","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"arcadio-gym-short-34-black-1014","links":{},"stock":{"item_id":1014,"product_id":1014,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-34-black-1014.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1001","_score":1,"_source":{"id":1001,"sku":"MSH10-34-Blue","name":"Sol Active Short-34-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"sol-active-short-34-blue-1001","links":{},"stock":{"item_id":1001,"product_id":1001,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-34-blue-1001.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1004","_score":1,"_source":{"id":1004,"sku":"MSH10-36-Blue","name":"Sol Active Short-36-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"sol-active-short-36-blue-1004","links":{},"stock":{"item_id":1004,"product_id":1004,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-36-blue-1004.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1027","_score":1,"_source":{"id":1027,"sku":"MSH12-34-Black","name":"Pierce Gym Short-34-Black","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"pierce-gym-short-34-black-1027","links":{},"stock":{"item_id":1027,"product_id":1027,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-34-black-1027.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1040","_score":1,"_source":{"id":1040,"sku":"WH01-M-Green","name":"Mona Pullover Hoodlie-M-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mona-pullover-hoodlie-m-green-1040","links":{},"stock":{"item_id":1040,"product_id":1040,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-m-green-1040.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1025","_score":1,"_source":{"id":1025,"sku":"MSH12-33-Gray","name":"Pierce Gym Short-33-Gray","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","color":"52","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"pierce-gym-short-33-gray-1025","links":{},"stock":{"item_id":1025,"product_id":1025,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-33-gray-1025.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1031","_score":1,"_source":{"id":1031,"sku":"MSH12-36-Gray","name":"Pierce Gym Short-36-Gray","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","color":"52","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"pierce-gym-short-36-gray-1031","links":{},"stock":{"item_id":1031,"product_id":1031,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-36-gray-1031.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1013","_score":1,"_source":{"id":1013,"sku":"MSH11-33-Red","name":"Arcadio Gym Short-33-Red","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","color":"58","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"arcadio-gym-short-33-red-1013","links":{},"stock":{"item_id":1013,"product_id":1013,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-33-red-1013.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1010","_score":1,"_source":{"id":1010,"sku":"MSH11-32-Red","name":"Arcadio Gym Short-32-Red","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","color":"58","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"arcadio-gym-short-32-red-1010","links":{},"stock":{"item_id":1010,"product_id":1010,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-32-red-1010.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1011","_score":1,"_source":{"id":1011,"sku":"MSH11-33-Black","name":"Arcadio Gym Short-33-Black","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"arcadio-gym-short-33-black-1011","links":{},"stock":{"item_id":1011,"product_id":1011,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-33-black-1011.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1030","_score":1,"_source":{"id":1030,"sku":"MSH12-36-Black","name":"Pierce Gym Short-36-Black","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"pierce-gym-short-36-black-1030","links":{},"stock":{"item_id":1030,"product_id":1030,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-36-black-1030.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1026","_score":1,"_source":{"id":1026,"sku":"MSH12-33-Red","name":"Pierce Gym Short-33-Red","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","color":"58","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"pierce-gym-short-33-red-1026","links":{},"stock":{"item_id":1026,"product_id":1026,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-33-red-1026.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1021","_score":1,"_source":{"id":1021,"sku":"MSH12-32-Black","name":"Pierce Gym Short-32-Black","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"pierce-gym-short-32-black-1021","links":{},"stock":{"item_id":1021,"product_id":1021,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-07-01 12:19:18","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/m/s/msh12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-32-black-1021.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1012","_score":1,"_source":{"id":1012,"sku":"MSH11-33-Blue","name":"Arcadio Gym Short-33-Blue","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","color":"50","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"arcadio-gym-short-33-blue-1012","links":{},"stock":{"item_id":1012,"product_id":1012,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-33-blue-1012.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1019","_score":1,"_source":{"id":1019,"sku":"MSH11-36-Red","name":"Arcadio Gym Short-36-Red","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","color":"58","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"arcadio-gym-short-36-red-1019","links":{},"stock":{"item_id":1019,"product_id":1019,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-36-red-1019.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1106","_score":1,"_source":{"id":1106,"sku":"WH05-M-White","name":"Selene Yoga Hoodie-M-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"selene-yoga-hoodie-m-white-1106","links":{},"tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1335","_score":1,"_source":{"id":1335,"sku":"WJ09-XL-Gray","name":"Jade Yoga Jacket-XL-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jade-yoga-jacket-xl-gray-1335","links":{},"stock":{"item_id":1335,"product_id":1335,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xl-gray-1335.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1339","_score":1,"_source":{"id":1339,"sku":"WJ10-XS-Orange","name":"Nadia Elements Shell-XS-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nadia-elements-shell-xs-orange-1339","links":{},"stock":{"item_id":1339,"product_id":1339,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xs-orange-1339.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1344","_score":1,"_source":{"id":1344,"sku":"WJ10-M-Black","name":"Nadia Elements Shell-M-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nadia-elements-shell-m-black-1344","links":{},"stock":{"item_id":1344,"product_id":1344,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-m-black-1344.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1334","_score":1,"_source":{"id":1334,"sku":"WJ09-XL-Blue","name":"Jade Yoga Jacket-XL-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jade-yoga-jacket-xl-blue-1334","links":{},"stock":{"item_id":1334,"product_id":1334,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xl-blue-1334.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1329","_score":1,"_source":{"id":1329,"sku":"WJ09-M-Gray","name":"Jade Yoga Jacket-M-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jade-yoga-jacket-m-gray-1329","links":{},"stock":{"item_id":1329,"product_id":1329,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-m-gray-1329.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1328","_score":1,"_source":{"id":1328,"sku":"WJ09-M-Blue","name":"Jade Yoga Jacket-M-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jade-yoga-jacket-m-blue-1328","links":{},"stock":{"item_id":1328,"product_id":1328,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-m-blue-1328.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1341","_score":1,"_source":{"id":1341,"sku":"WJ10-S-Black","name":"Nadia Elements Shell-S-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nadia-elements-shell-s-black-1341","links":{},"stock":{"item_id":1341,"product_id":1341,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-s-black-1341.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1345","_score":1,"_source":{"id":1345,"sku":"WJ10-M-Orange","name":"Nadia Elements Shell-M-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nadia-elements-shell-m-orange-1345","links":{},"stock":{"item_id":1345,"product_id":1345,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-m-orange-1345.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1333","_score":1,"_source":{"id":1333,"sku":"WJ09-L-Green","name":"Jade Yoga Jacket-L-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jade-yoga-jacket-l-green-1333","links":{},"stock":{"item_id":1333,"product_id":1333,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-l-green-1333.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1348","_score":1,"_source":{"id":1348,"sku":"WJ10-L-Orange","name":"Nadia Elements Shell-L-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nadia-elements-shell-l-orange-1348","links":{},"stock":{"item_id":1348,"product_id":1348,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-l-orange-1348.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1326","_score":1,"_source":{"id":1326,"sku":"WJ09-S-Gray","name":"Jade Yoga Jacket-S-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jade-yoga-jacket-s-gray-1326","links":{},"stock":{"item_id":1326,"product_id":1326,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-s-gray-1326.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1343","_score":1,"_source":{"id":1343,"sku":"WJ10-S-Yellow","name":"Nadia Elements Shell-S-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nadia-elements-shell-s-yellow-1343","links":{},"stock":{"item_id":1343,"product_id":1343,"stock_id":1,"qty":78,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-s-yellow-1343.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1347","_score":1,"_source":{"id":1347,"sku":"WJ10-L-Black","name":"Nadia Elements Shell-L-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nadia-elements-shell-l-black-1347","links":{},"stock":{"item_id":1347,"product_id":1347,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-l-black-1347.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1349","_score":1,"_source":{"id":1349,"sku":"WJ10-L-Yellow","name":"Nadia Elements Shell-L-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nadia-elements-shell-l-yellow-1349","links":{},"stock":{"item_id":1349,"product_id":1349,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-l-yellow-1349.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1346","_score":1,"_source":{"id":1346,"sku":"WJ10-M-Yellow","name":"Nadia Elements Shell-M-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nadia-elements-shell-m-yellow-1346","links":{},"stock":{"item_id":1346,"product_id":1346,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-m-yellow-1346.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1342","_score":1,"_source":{"id":1342,"sku":"WJ10-S-Orange","name":"Nadia Elements Shell-S-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nadia-elements-shell-s-orange-1342","links":{},"stock":{"item_id":1342,"product_id":1342,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-s-orange-1342.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1340","_score":1,"_source":{"id":1340,"sku":"WJ10-XS-Yellow","name":"Nadia Elements Shell-XS-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nadia-elements-shell-xs-yellow-1340","links":{},"stock":{"item_id":1340,"product_id":1340,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xs-yellow-1340.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1350","_score":1,"_source":{"id":1350,"sku":"WJ10-XL-Black","name":"Nadia Elements Shell-XL-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nadia-elements-shell-xl-black-1350","links":{},"stock":{"item_id":1350,"product_id":1350,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xl-black-1350.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1338","_score":1,"_source":{"id":1338,"sku":"WJ10-XS-Black","name":"Nadia Elements Shell-XS-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nadia-elements-shell-xs-black-1338","links":{},"stock":{"item_id":1338,"product_id":1338,"stock_id":1,"qty":70,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xs-black-1338.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1321","_score":1,"_source":{"id":1321,"sku":"WJ08","name":"Adrienne Trek Jacket","attribute_set_id":9,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"adrienne-trek-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,151],"eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"1","style_general":[118,120,123,124,126,128],"pattern":"197","climate":[202,204,206,208,211],"slug":"adrienne-trek-jacket-1321","links":{},"stock":{"item_id":1321,"product_id":1321,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ08-XS-Gray","id":1306,"status":1,"name":"Adrienne Trek Jacket-XS-Gray","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"167","color":"52","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","url_key":"adrienne-trek-jacket-xs-gray","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-XS-Orange","id":1307,"status":1,"name":"Adrienne Trek Jacket-XS-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"167","color":"56","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","url_key":"adrienne-trek-jacket-xs-orange","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-XS-Purple","id":1308,"status":1,"name":"Adrienne Trek Jacket-XS-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"167","color":"57","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","url_key":"adrienne-trek-jacket-xs-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-S-Gray","id":1309,"status":1,"name":"Adrienne Trek Jacket-S-Gray","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"168","color":"52","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","url_key":"adrienne-trek-jacket-s-gray","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-S-Orange","id":1310,"status":1,"name":"Adrienne Trek Jacket-S-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"168","color":"56","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","url_key":"adrienne-trek-jacket-s-orange","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-S-Purple","id":1311,"status":1,"name":"Adrienne Trek Jacket-S-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"168","color":"57","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","url_key":"adrienne-trek-jacket-s-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-M-Gray","id":1312,"status":1,"name":"Adrienne Trek Jacket-M-Gray","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"169","color":"52","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","url_key":"adrienne-trek-jacket-m-gray","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-M-Orange","id":1313,"status":1,"name":"Adrienne Trek Jacket-M-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"169","color":"56","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","url_key":"adrienne-trek-jacket-m-orange","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-M-Purple","id":1314,"status":1,"name":"Adrienne Trek Jacket-M-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"169","color":"57","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","url_key":"adrienne-trek-jacket-m-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-L-Gray","id":1315,"status":1,"name":"Adrienne Trek Jacket-L-Gray","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"170","color":"52","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","url_key":"adrienne-trek-jacket-l-gray","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-L-Orange","id":1316,"status":1,"name":"Adrienne Trek Jacket-L-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"170","color":"56","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","url_key":"adrienne-trek-jacket-l-orange","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-L-Purple","id":1317,"status":1,"name":"Adrienne Trek Jacket-L-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"170","color":"57","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","url_key":"adrienne-trek-jacket-l-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-XL-Gray","id":1318,"status":1,"name":"Adrienne Trek Jacket-XL-Gray","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"171","color":"52","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","url_key":"adrienne-trek-jacket-xl-gray","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-XL-Orange","id":1319,"status":1,"name":"Adrienne Trek Jacket-XL-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"171","color":"56","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","url_key":"adrienne-trek-jacket-xl-orange","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ08-XL-Purple","id":1320,"status":1,"name":"Adrienne Trek Jacket-XL-Purple","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","34","2"],"size":"171","color":"57","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","url_key":"adrienne-trek-jacket-xl-purple","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57}],"configurable_options":[{"id":183,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1321,"attribute_code":"color"},{"id":182,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1321,"attribute_code":"size"}],"color_options":[52,56,57],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-1321.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1290","_score":1,"_source":{"id":1290,"sku":"WJ07-XS-Orange","name":"Inez Full Zip Jacket-XS-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"inez-full-zip-jacket-xs-orange-1290","links":{},"stock":{"item_id":1290,"product_id":1290,"stock_id":1,"qty":51,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xs-orange-1290.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1278","_score":1,"_source":{"id":1278,"sku":"WJ05-S-Green","name":"Riona Full Zip Jacket-S-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"riona-full-zip-jacket-s-green-1278","links":{},"stock":{"item_id":1278,"product_id":1278,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-s-green-1278.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1294","_score":1,"_source":{"id":1294,"sku":"WJ07-S-Purple","name":"Inez Full Zip Jacket-S-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"inez-full-zip-jacket-s-purple-1294","links":{},"stock":{"item_id":1294,"product_id":1294,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-s-purple-1294.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1288","_score":1,"_source":{"id":1288,"sku":"WJ05-XL-Red","name":"Riona Full Zip Jacket-XL-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"riona-full-zip-jacket-xl-red-1288","links":{},"stock":{"item_id":1288,"product_id":1288,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xl-red-1288.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1269","_score":1,"_source":{"id":1269,"sku":"WJ04-L-White","name":"Ingrid Running Jacket-L-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ingrid-running-jacket-l-white-1269","links":{},"stock":{"item_id":1269,"product_id":1269,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-l-white-1269.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1275","_score":1,"_source":{"id":1275,"sku":"WJ05-XS-Green","name":"Riona Full Zip Jacket-XS-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"riona-full-zip-jacket-xs-green-1275","links":{},"stock":{"item_id":1275,"product_id":1275,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xs-green-1275.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1282","_score":1,"_source":{"id":1282,"sku":"WJ05-M-Red","name":"Riona Full Zip Jacket-M-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"riona-full-zip-jacket-m-red-1282","links":{},"stock":{"item_id":1282,"product_id":1282,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-m-red-1282.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1284","_score":1,"_source":{"id":1284,"sku":"WJ05-L-Green","name":"Riona Full Zip Jacket-L-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"riona-full-zip-jacket-l-green-1284","links":{},"stock":{"item_id":1284,"product_id":1284,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-l-green-1284.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1285","_score":1,"_source":{"id":1285,"sku":"WJ05-L-Red","name":"Riona Full Zip Jacket-L-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2019-04-12 06:18:41","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \r\n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-l-red","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"170","eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","slug":"riona-full-zip-jacket-l-red-1285","links":{},"stock":{"item_id":1285,"product_id":1285,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-l-red-1285.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1297","_score":1,"_source":{"id":1297,"sku":"WJ07-M-Purple","name":"Inez Full Zip Jacket-M-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"inez-full-zip-jacket-m-purple-1297","links":{},"stock":{"item_id":1297,"product_id":1297,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-m-purple-1297.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1257","_score":1,"_source":{"id":1257,"sku":"WJ03","name":"Augusta Pullover Jacket","attribute_set_id":9,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"augusta-pullover-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[118,137,125,126,128],"pattern":"197","climate":[202,204,205,206,208],"slug":"augusta-pullover-jacket-1257","links":{},"stock":{"item_id":1257,"product_id":1257,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ03-XS-Blue","id":1242,"status":1,"name":"Augusta Pullover Jacket-XS-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"50","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","url_key":"augusta-pullover-jacket-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ03-XS-Orange","id":1243,"status":1,"name":"Augusta Pullover Jacket-XS-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"56","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","url_key":"augusta-pullover-jacket-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ03-XS-Red","id":1244,"status":1,"name":"Augusta Pullover Jacket-XS-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"58","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","url_key":"augusta-pullover-jacket-xs-red","msrp_display_actual_price_type":"0"},{"sku":"WJ03-S-Blue","id":1245,"status":1,"name":"Augusta Pullover Jacket-S-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"50","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","url_key":"augusta-pullover-jacket-s-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ03-S-Orange","id":1246,"status":1,"name":"Augusta Pullover Jacket-S-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"56","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","url_key":"augusta-pullover-jacket-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ03-S-Red","id":1247,"status":1,"name":"Augusta Pullover Jacket-S-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"58","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","url_key":"augusta-pullover-jacket-s-red","msrp_display_actual_price_type":"0"},{"sku":"WJ03-M-Blue","id":1248,"status":1,"name":"Augusta Pullover Jacket-M-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"50","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","url_key":"augusta-pullover-jacket-m-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ03-M-Orange","id":1249,"status":1,"name":"Augusta Pullover Jacket-M-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"56","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","url_key":"augusta-pullover-jacket-m-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ03-M-Red","id":1250,"status":1,"name":"Augusta Pullover Jacket-M-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"58","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","url_key":"augusta-pullover-jacket-m-red","msrp_display_actual_price_type":"0"},{"sku":"WJ03-L-Blue","id":1251,"status":1,"name":"Augusta Pullover Jacket-L-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"50","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","url_key":"augusta-pullover-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ03-L-Orange","id":1252,"status":1,"name":"Augusta Pullover Jacket-L-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"56","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","url_key":"augusta-pullover-jacket-l-orange","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ03-L-Red","id":1253,"status":1,"name":"Augusta Pullover Jacket-L-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"58","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","url_key":"augusta-pullover-jacket-l-red","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ03-XL-Blue","id":1254,"status":1,"name":"Augusta Pullover Jacket-XL-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"50","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","url_key":"augusta-pullover-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ03-XL-Orange","id":1255,"status":1,"name":"Augusta Pullover Jacket-XL-Orange","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"56","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","url_key":"augusta-pullover-jacket-xl-orange","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"WJ03-XL-Red","id":1256,"status":1,"name":"Augusta Pullover Jacket-XL-Red","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"58","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","url_key":"augusta-pullover-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57}],"configurable_options":[{"id":175,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":1257,"attribute_code":"color"},{"id":174,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1257,"attribute_code":"size"}],"color_options":[50,56,58],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-1257.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1273","_score":1,"_source":{"id":1273,"sku":"WJ04","name":"Ingrid Running Jacket","attribute_set_id":9,"price":84,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ingrid-running-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38,156],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_general":[118,120,129],"pattern":"197","climate":[204,208,210,211],"slug":"ingrid-running-jacket-1273","links":{},"stock":{"item_id":1273,"product_id":1273,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ04-XS-Orange","id":1258,"status":1,"name":"Ingrid Running Jacket-XS-Orange","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"167","color":"56","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","url_key":"ingrid-running-jacket-xs-orange","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-XS-Red","id":1259,"status":1,"name":"Ingrid Running Jacket-XS-Red","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"167","color":"58","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","url_key":"ingrid-running-jacket-xs-red","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-XS-White","id":1260,"status":1,"name":"Ingrid Running Jacket-XS-White","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"167","color":"59","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","url_key":"ingrid-running-jacket-xs-white","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-S-Orange","id":1261,"status":1,"name":"Ingrid Running Jacket-S-Orange","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"168","color":"56","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","url_key":"ingrid-running-jacket-s-orange","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-S-Red","id":1262,"status":1,"name":"Ingrid Running Jacket-S-Red","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"168","color":"58","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","url_key":"ingrid-running-jacket-s-red","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-S-White","id":1263,"status":1,"name":"Ingrid Running Jacket-S-White","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"168","color":"59","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","url_key":"ingrid-running-jacket-s-white","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-M-Orange","id":1264,"status":1,"name":"Ingrid Running Jacket-M-Orange","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"169","color":"56","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","url_key":"ingrid-running-jacket-m-orange","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-M-Red","id":1265,"status":1,"name":"Ingrid Running Jacket-M-Red","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"169","color":"58","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","url_key":"ingrid-running-jacket-m-red","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-M-White","id":1266,"status":1,"name":"Ingrid Running Jacket-M-White","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"169","color":"59","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","url_key":"ingrid-running-jacket-m-white","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-L-Orange","id":1267,"status":1,"name":"Ingrid Running Jacket-L-Orange","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"170","color":"56","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","url_key":"ingrid-running-jacket-l-orange","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-L-Red","id":1268,"status":1,"name":"Ingrid Running Jacket-L-Red","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"170","color":"58","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","url_key":"ingrid-running-jacket-l-red","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-L-White","id":1269,"status":1,"name":"Ingrid Running Jacket-L-White","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"170","color":"59","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","url_key":"ingrid-running-jacket-l-white","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-XL-Orange","id":1270,"status":1,"name":"Ingrid Running Jacket-XL-Orange","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"171","color":"56","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","url_key":"ingrid-running-jacket-xl-orange","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-XL-Red","id":1271,"status":1,"name":"Ingrid Running Jacket-XL-Red","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"171","color":"58","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","url_key":"ingrid-running-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84},{"sku":"WJ04-XL-White","id":1272,"status":1,"name":"Ingrid Running Jacket-XL-White","price":84,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"171","color":"59","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","url_key":"ingrid-running-jacket-xl-white","msrp_display_actual_price_type":"0","final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84}],"configurable_options":[{"id":177,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":1273,"attribute_code":"color"},{"id":176,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1273,"attribute_code":"size"}],"color_options":[56,58,59],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-1273.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1317","_score":1,"_source":{"id":1317,"sku":"WJ08-L-Purple","name":"Adrienne Trek Jacket-L-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"adrienne-trek-jacket-l-purple-1317","links":{},"stock":{"item_id":1317,"product_id":1317,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-l-purple-1317.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1324","_score":1,"_source":{"id":1324,"sku":"WJ09-XS-Green","name":"Jade Yoga Jacket-XS-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jade-yoga-jacket-xs-green-1324","links":{},"stock":{"item_id":1324,"product_id":1324,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xs-green-1324.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1302","_score":1,"_source":{"id":1302,"sku":"WJ07-XL-Orange","name":"Inez Full Zip Jacket-XL-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"inez-full-zip-jacket-xl-orange-1302","links":{},"stock":{"item_id":1302,"product_id":1302,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xl-orange-1302.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1311","_score":1,"_source":{"id":1311,"sku":"WJ08-S-Purple","name":"Adrienne Trek Jacket-S-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"adrienne-trek-jacket-s-purple-1311","links":{},"stock":{"item_id":1311,"product_id":1311,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-s-purple-1311.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1306","_score":1,"_source":{"id":1306,"sku":"WJ08-XS-Gray","name":"Adrienne Trek Jacket-XS-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"adrienne-trek-jacket-xs-gray-1306","links":{},"stock":{"item_id":1306,"product_id":1306,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xs-gray-1306.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1320","_score":1,"_source":{"id":1320,"sku":"WJ08-XL-Purple","name":"Adrienne Trek Jacket-XL-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"adrienne-trek-jacket-xl-purple-1320","links":{},"stock":{"item_id":1320,"product_id":1320,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xl-purple-1320.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1318","_score":1,"_source":{"id":1318,"sku":"WJ08-XL-Gray","name":"Adrienne Trek Jacket-XL-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"adrienne-trek-jacket-xl-gray-1318","links":{},"stock":{"item_id":1318,"product_id":1318,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xl-gray-1318.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1323","_score":1,"_source":{"id":1323,"sku":"WJ09-XS-Gray","name":"Jade Yoga Jacket-XS-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jade-yoga-jacket-xs-gray-1323","links":{},"stock":{"item_id":1323,"product_id":1323,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xs-gray-1323.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1307","_score":1,"_source":{"id":1307,"sku":"WJ08-XS-Orange","name":"Adrienne Trek Jacket-XS-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"adrienne-trek-jacket-xs-orange-1307","links":{},"stock":{"item_id":1307,"product_id":1307,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xs-orange-1307.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1301","_score":1,"_source":{"id":1301,"sku":"WJ07-L-Red","name":"Inez Full Zip Jacket-L-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"inez-full-zip-jacket-l-red-1301","links":{},"stock":{"item_id":1301,"product_id":1301,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-l-red-1301.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1319","_score":1,"_source":{"id":1319,"sku":"WJ08-XL-Orange","name":"Adrienne Trek Jacket-XL-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"adrienne-trek-jacket-xl-orange-1319","links":{},"stock":{"item_id":1319,"product_id":1319,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xl-orange-1319.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1336","_score":1,"_source":{"id":1336,"sku":"WJ09-XL-Green","name":"Jade Yoga Jacket-XL-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jade-yoga-jacket-xl-green-1336","links":{},"stock":{"item_id":1336,"product_id":1336,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xl-green-1336.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1308","_score":1,"_source":{"id":1308,"sku":"WJ08-XS-Purple","name":"Adrienne Trek Jacket-XS-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"adrienne-trek-jacket-xs-purple-1308","links":{},"stock":{"item_id":1308,"product_id":1308,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xs-purple-1308.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1303","_score":1,"_source":{"id":1303,"sku":"WJ07-XL-Purple","name":"Inez Full Zip Jacket-XL-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"inez-full-zip-jacket-xl-purple-1303","links":{},"stock":{"item_id":1303,"product_id":1303,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xl-purple-1303.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1304","_score":1,"_source":{"id":1304,"sku":"WJ07-XL-Red","name":"Inez Full Zip Jacket-XL-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"inez-full-zip-jacket-xl-red-1304","links":{},"stock":{"item_id":1304,"product_id":1304,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xl-red-1304.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1322","_score":1,"_source":{"id":1322,"sku":"WJ09-XS-Blue","name":"Jade Yoga Jacket-XS-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jade-yoga-jacket-xs-blue-1322","links":{},"stock":{"item_id":1322,"product_id":1322,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xs-blue-1322.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1310","_score":1,"_source":{"id":1310,"sku":"WJ08-S-Orange","name":"Adrienne Trek Jacket-S-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"adrienne-trek-jacket-s-orange-1310","links":{},"stock":{"item_id":1310,"product_id":1310,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-s-orange-1310.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1314","_score":1,"_source":{"id":1314,"sku":"WJ08-M-Purple","name":"Adrienne Trek Jacket-M-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"adrienne-trek-jacket-m-purple-1314","links":{},"stock":{"item_id":1314,"product_id":1314,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-m-purple-1314.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1325","_score":1,"_source":{"id":1325,"sku":"WJ09-S-Blue","name":"Jade Yoga Jacket-S-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jade-yoga-jacket-s-blue-1325","links":{},"stock":{"item_id":1325,"product_id":1325,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-s-blue-1325.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1315","_score":1,"_source":{"id":1315,"sku":"WJ08-L-Gray","name":"Adrienne Trek Jacket-L-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"adrienne-trek-jacket-l-gray-1315","links":{},"stock":{"item_id":1315,"product_id":1315,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-l-gray-1315.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1330","_score":1,"_source":{"id":1330,"sku":"WJ09-M-Green","name":"Jade Yoga Jacket-M-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jade-yoga-jacket-m-green-1330","links":{},"stock":{"item_id":1330,"product_id":1330,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-m-green-1330.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1309","_score":1,"_source":{"id":1309,"sku":"WJ08-S-Gray","name":"Adrienne Trek Jacket-S-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"adrienne-trek-jacket-s-gray-1309","links":{},"stock":{"item_id":1309,"product_id":1309,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-s-gray-1309.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1316","_score":1,"_source":{"id":1316,"sku":"WJ08-L-Orange","name":"Adrienne Trek Jacket-L-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"adrienne-trek-jacket-l-orange-1316","links":{},"stock":{"item_id":1316,"product_id":1316,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-l-orange-1316.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1331","_score":1,"_source":{"id":1331,"sku":"WJ09-L-Blue","name":"Jade Yoga Jacket-L-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jade-yoga-jacket-l-blue-1331","links":{},"stock":{"item_id":1331,"product_id":1331,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-l-blue-1331.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1313","_score":1,"_source":{"id":1313,"sku":"WJ08-M-Orange","name":"Adrienne Trek Jacket-M-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"adrienne-trek-jacket-m-orange-1313","links":{},"stock":{"item_id":1313,"product_id":1313,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-m-orange-1313.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1327","_score":1,"_source":{"id":1327,"sku":"WJ09-S-Green","name":"Jade Yoga Jacket-S-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jade-yoga-jacket-s-green-1327","links":{},"stock":{"item_id":1327,"product_id":1327,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-s-green-1327.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1332","_score":1,"_source":{"id":1332,"sku":"WJ09-L-Gray","name":"Jade Yoga Jacket-L-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jade-yoga-jacket-l-gray-1332","links":{},"stock":{"item_id":1332,"product_id":1332,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-l-gray-1332.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1312","_score":1,"_source":{"id":1312,"sku":"WJ08-M-Gray","name":"Adrienne Trek Jacket-M-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"adrienne-trek-jacket-m-gray-1312","links":{},"stock":{"item_id":1312,"product_id":1312,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-m-gray-1312.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1305","_score":1,"_source":{"id":1305,"sku":"WJ07","name":"Inez Full Zip Jacket","attribute_set_id":9,"price":59,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"inez-full-zip-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38,151,156],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[117,118,121,125,129],"pattern":"195","climate":[204,206,207,208,210],"slug":"inez-full-zip-jacket-1305","links":{},"stock":{"item_id":1305,"product_id":1305,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ07-XS-Orange","id":1290,"status":1,"name":"Inez Full Zip Jacket-XS-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"56","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","url_key":"inez-full-zip-jacket-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ07-XS-Purple","id":1291,"status":1,"name":"Inez Full Zip Jacket-XS-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"57","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","url_key":"inez-full-zip-jacket-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ07-XS-Red","id":1292,"status":1,"name":"Inez Full Zip Jacket-XS-Red","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"58","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","url_key":"inez-full-zip-jacket-xs-red","msrp_display_actual_price_type":"0"},{"sku":"WJ07-S-Orange","id":1293,"status":1,"name":"Inez Full Zip Jacket-S-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"56","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","url_key":"inez-full-zip-jacket-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ07-S-Purple","id":1294,"status":1,"name":"Inez Full Zip Jacket-S-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"57","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","url_key":"inez-full-zip-jacket-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ07-S-Red","id":1295,"status":1,"name":"Inez Full Zip Jacket-S-Red","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"58","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","url_key":"inez-full-zip-jacket-s-red","msrp_display_actual_price_type":"0"},{"sku":"WJ07-M-Orange","id":1296,"status":1,"name":"Inez Full Zip Jacket-M-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"56","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","url_key":"inez-full-zip-jacket-m-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ07-M-Purple","id":1297,"status":1,"name":"Inez Full Zip Jacket-M-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"57","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","url_key":"inez-full-zip-jacket-m-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ07-M-Red","id":1298,"status":1,"name":"Inez Full Zip Jacket-M-Red","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"58","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","url_key":"inez-full-zip-jacket-m-red","msrp_display_actual_price_type":"0"},{"sku":"WJ07-L-Orange","id":1299,"status":1,"name":"Inez Full Zip Jacket-L-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"56","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","url_key":"inez-full-zip-jacket-l-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ07-L-Purple","id":1300,"status":1,"name":"Inez Full Zip Jacket-L-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"57","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","url_key":"inez-full-zip-jacket-l-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ07-L-Red","id":1301,"status":1,"name":"Inez Full Zip Jacket-L-Red","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"58","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","url_key":"inez-full-zip-jacket-l-red","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WJ07-XL-Orange","id":1302,"status":1,"name":"Inez Full Zip Jacket-XL-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"56","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","url_key":"inez-full-zip-jacket-xl-orange","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WJ07-XL-Purple","id":1303,"status":1,"name":"Inez Full Zip Jacket-XL-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"57","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","url_key":"inez-full-zip-jacket-xl-purple","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WJ07-XL-Red","id":1304,"status":1,"name":"Inez Full Zip Jacket-XL-Red","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"58","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","url_key":"inez-full-zip-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59}],"configurable_options":[{"id":181,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1305,"attribute_code":"color"},{"id":180,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1305,"attribute_code":"size"}],"color_options":[56,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-1305.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1337","_score":1,"_source":{"id":1337,"sku":"WJ09","name":"Jade Yoga Jacket","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"jade-yoga-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[118,120,121,125,128],"pattern":"197","climate":[204,206,208,210],"slug":"jade-yoga-jacket-1337","links":{},"stock":{"item_id":1337,"product_id":1337,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ09-XS-Blue","id":1322,"status":1,"name":"Jade Yoga Jacket-XS-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"167","color":"50","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","url_key":"jade-yoga-jacket-xs-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-XS-Gray","id":1323,"status":1,"name":"Jade Yoga Jacket-XS-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"167","color":"52","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","url_key":"jade-yoga-jacket-xs-gray","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-XS-Green","id":1324,"status":1,"name":"Jade Yoga Jacket-XS-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"167","color":"53","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","url_key":"jade-yoga-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-S-Blue","id":1325,"status":1,"name":"Jade Yoga Jacket-S-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"168","color":"50","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","url_key":"jade-yoga-jacket-s-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-S-Gray","id":1326,"status":1,"name":"Jade Yoga Jacket-S-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"168","color":"52","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","url_key":"jade-yoga-jacket-s-gray","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-S-Green","id":1327,"status":1,"name":"Jade Yoga Jacket-S-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"168","color":"53","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","url_key":"jade-yoga-jacket-s-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-M-Blue","id":1328,"status":1,"name":"Jade Yoga Jacket-M-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"169","color":"50","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","url_key":"jade-yoga-jacket-m-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-M-Gray","id":1329,"status":1,"name":"Jade Yoga Jacket-M-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"169","color":"52","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","url_key":"jade-yoga-jacket-m-gray","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-M-Green","id":1330,"status":1,"name":"Jade Yoga Jacket-M-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"169","color":"53","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","url_key":"jade-yoga-jacket-m-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-L-Blue","id":1331,"status":1,"name":"Jade Yoga Jacket-L-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"170","color":"50","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","url_key":"jade-yoga-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-L-Gray","id":1332,"status":1,"name":"Jade Yoga Jacket-L-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"170","color":"52","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","url_key":"jade-yoga-jacket-l-gray","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-L-Green","id":1333,"status":1,"name":"Jade Yoga Jacket-L-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"170","color":"53","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","url_key":"jade-yoga-jacket-l-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-XL-Blue","id":1334,"status":1,"name":"Jade Yoga Jacket-XL-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"171","color":"50","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","url_key":"jade-yoga-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-XL-Gray","id":1335,"status":1,"name":"Jade Yoga Jacket-XL-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"171","color":"52","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","url_key":"jade-yoga-jacket-xl-gray","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WJ09-XL-Green","id":1336,"status":1,"name":"Jade Yoga Jacket-XL-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","34","2"],"size":"171","color":"53","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","url_key":"jade-yoga-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32}],"configurable_options":[{"id":185,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":1337,"attribute_code":"color"},{"id":184,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1337,"attribute_code":"size"}],"color_options":[50,52,53],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-1337.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1379","_score":1,"_source":{"id":1379,"sku":"WJ06-L-Blue","name":"Juno Jacket-L-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juno-jacket-l-blue-1379","links":{},"stock":{"item_id":1379,"product_id":1379,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-l-blue-1379.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1365","_score":1,"_source":{"id":1365,"sku":"WJ11-L-Orange","name":"Neve Studio Dance Jacket-L-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"neve-studio-dance-jacket-l-orange-1365","links":{},"stock":{"item_id":1365,"product_id":1365,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-l-orange-1365.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1354","_score":1,"_source":{"id":1354,"sku":"WJ11-XS-Black","name":"Neve Studio Dance Jacket-XS-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"neve-studio-dance-jacket-xs-black-1354","links":{},"stock":{"item_id":1354,"product_id":1354,"stock_id":1,"qty":45,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xs-black-1354.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1373","_score":1,"_source":{"id":1373,"sku":"WJ06-S-Blue","name":"Juno Jacket-S-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juno-jacket-s-blue-1373","links":{},"stock":{"item_id":1373,"product_id":1373,"stock_id":1,"qty":77,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-s-blue-1373.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1375","_score":1,"_source":{"id":1375,"sku":"WJ06-S-Purple","name":"Juno Jacket-S-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juno-jacket-s-purple-1375","links":{},"stock":{"item_id":1375,"product_id":1375,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-s-purple-1375.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1372","_score":1,"_source":{"id":1372,"sku":"WJ06-XS-Purple","name":"Juno Jacket-XS-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juno-jacket-xs-purple-1372","links":{},"stock":{"item_id":1372,"product_id":1372,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xs-purple-1372.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1389","_score":1,"_source":{"id":1389,"sku":"WJ12-S-Black","name":"Olivia 1/4 Zip Light Jacket-S-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"olivia-14-zip-light-jacket-s-black-1389","links":{},"stock":{"item_id":1389,"product_id":1389,"stock_id":1,"qty":60,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-s-black-1389.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1371","_score":1,"_source":{"id":1371,"sku":"WJ06-XS-Green","name":"Juno Jacket-XS-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juno-jacket-xs-green-1371","links":{},"stock":{"item_id":1371,"product_id":1371,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xs-green-1371.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1381","_score":1,"_source":{"id":1381,"sku":"WJ06-L-Purple","name":"Juno Jacket-L-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juno-jacket-l-purple-1381","links":{},"stock":{"item_id":1381,"product_id":1381,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-l-purple-1381.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1390","_score":1,"_source":{"id":1390,"sku":"WJ12-S-Blue","name":"Olivia 1/4 Zip Light Jacket-S-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"olivia-14-zip-light-jacket-s-blue-1390","links":{},"stock":{"item_id":1390,"product_id":1390,"stock_id":1,"qty":74,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-s-blue-1390.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1364","_score":1,"_source":{"id":1364,"sku":"WJ11-L-Blue","name":"Neve Studio Dance Jacket-L-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"neve-studio-dance-jacket-l-blue-1364","links":{},"stock":{"item_id":1364,"product_id":1364,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-l-blue-1364.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1382","_score":1,"_source":{"id":1382,"sku":"WJ06-XL-Blue","name":"Juno Jacket-XL-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juno-jacket-xl-blue-1382","links":{},"stock":{"item_id":1382,"product_id":1382,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xl-blue-1382.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1363","_score":1,"_source":{"id":1363,"sku":"WJ11-L-Black","name":"Neve Studio Dance Jacket-L-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"neve-studio-dance-jacket-l-black-1363","links":{},"stock":{"item_id":1363,"product_id":1363,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-l-black-1363.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1378","_score":1,"_source":{"id":1378,"sku":"WJ06-M-Purple","name":"Juno Jacket-M-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juno-jacket-m-purple-1378","links":{},"stock":{"item_id":1378,"product_id":1378,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-m-purple-1378.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1374","_score":1,"_source":{"id":1374,"sku":"WJ06-S-Green","name":"Juno Jacket-S-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juno-jacket-s-green-1374","links":{},"stock":{"item_id":1374,"product_id":1374,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-s-green-1374.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1376","_score":1,"_source":{"id":1376,"sku":"WJ06-M-Blue","name":"Juno Jacket-M-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juno-jacket-m-blue-1376","links":{},"stock":{"item_id":1376,"product_id":1376,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-m-blue-1376.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1370","_score":1,"_source":{"id":1370,"sku":"WJ06-XS-Blue","name":"Juno Jacket-XS-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juno-jacket-xs-blue-1370","links":{},"stock":{"item_id":1370,"product_id":1370,"stock_id":1,"qty":10,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xs-blue-1370.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1289","_score":1,"_source":{"id":1289,"sku":"WJ05","name":"Riona Full Zip Jacket","attribute_set_id":9,"price":60,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"riona-full-zip-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,148,149],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[117,118,121,125,126,129],"pattern":"197","climate":[203,204,208,211],"slug":"riona-full-zip-jacket-1289","links":{},"stock":{"item_id":1289,"product_id":1289,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ05-XS-Brown","id":1274,"status":1,"name":"Riona Full Zip Jacket-XS-Brown","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"51","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","url_key":"riona-full-zip-jacket-xs-brown","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-XS-Green","id":1275,"status":1,"name":"Riona Full Zip Jacket-XS-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"53","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","url_key":"riona-full-zip-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-XS-Red","id":1276,"status":1,"name":"Riona Full Zip Jacket-XS-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"167","color":"58","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","url_key":"riona-full-zip-jacket-xs-red","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-S-Brown","id":1277,"status":1,"name":"Riona Full Zip Jacket-S-Brown","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"51","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","url_key":"riona-full-zip-jacket-s-brown","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-S-Green","id":1278,"status":1,"name":"Riona Full Zip Jacket-S-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"53","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","url_key":"riona-full-zip-jacket-s-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-S-Red","id":1279,"status":1,"name":"Riona Full Zip Jacket-S-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"168","color":"58","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","url_key":"riona-full-zip-jacket-s-red","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-M-Brown","id":1280,"status":1,"name":"Riona Full Zip Jacket-M-Brown","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"51","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","url_key":"riona-full-zip-jacket-m-brown","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-M-Green","id":1281,"status":1,"name":"Riona Full Zip Jacket-M-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"53","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","url_key":"riona-full-zip-jacket-m-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-M-Red","id":1282,"status":1,"name":"Riona Full Zip Jacket-M-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"169","color":"58","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","url_key":"riona-full-zip-jacket-m-red","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-L-Brown","id":1283,"status":1,"name":"Riona Full Zip Jacket-L-Brown","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"51","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","url_key":"riona-full-zip-jacket-l-brown","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-L-Green","id":1284,"status":1,"name":"Riona Full Zip Jacket-L-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"53","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","url_key":"riona-full-zip-jacket-l-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-L-Red","id":1285,"status":1,"name":"Riona Full Zip Jacket-L-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"170","color":"58","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","url_key":"riona-full-zip-jacket-l-red","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-XL-Brown","id":1286,"status":1,"name":"Riona Full Zip Jacket-XL-Brown","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"51","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","url_key":"riona-full-zip-jacket-xl-brown","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-XL-Green","id":1287,"status":1,"name":"Riona Full Zip Jacket-XL-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"53","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","url_key":"riona-full-zip-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"WJ05-XL-Red","id":1288,"status":1,"name":"Riona Full Zip Jacket-XL-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23"],"size":"171","color":"58","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","url_key":"riona-full-zip-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60}],"configurable_options":[{"id":179,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":51,"label":"Brown"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1289,"attribute_code":"color"},{"id":178,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1289,"attribute_code":"size"}],"color_options":[51,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-1289.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1361","_score":1,"_source":{"id":1361,"sku":"WJ11-M-Blue","name":"Neve Studio Dance Jacket-M-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"neve-studio-dance-jacket-m-blue-1361","links":{},"stock":{"item_id":1361,"product_id":1361,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-m-blue-1361.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1352","_score":1,"_source":{"id":1352,"sku":"WJ10-XL-Yellow","name":"Nadia Elements Shell-XL-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nadia-elements-shell-xl-yellow-1352","links":{},"stock":{"item_id":1352,"product_id":1352,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xl-yellow-1352.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1355","_score":1,"_source":{"id":1355,"sku":"WJ11-XS-Blue","name":"Neve Studio Dance Jacket-XS-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"neve-studio-dance-jacket-xs-blue-1355","links":{},"stock":{"item_id":1355,"product_id":1355,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xs-blue-1355.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1351","_score":1,"_source":{"id":1351,"sku":"WJ10-XL-Orange","name":"Nadia Elements Shell-XL-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nadia-elements-shell-xl-orange-1351","links":{},"stock":{"item_id":1351,"product_id":1351,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xl-orange-1351.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1356","_score":1,"_source":{"id":1356,"sku":"WJ11-XS-Orange","name":"Neve Studio Dance Jacket-XS-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"neve-studio-dance-jacket-xs-orange-1356","links":{},"stock":{"item_id":1356,"product_id":1356,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xs-orange-1356.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1362","_score":1,"_source":{"id":1362,"sku":"WJ11-M-Orange","name":"Neve Studio Dance Jacket-M-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"neve-studio-dance-jacket-m-orange-1362","links":{},"stock":{"item_id":1362,"product_id":1362,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-m-orange-1362.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1358","_score":1,"_source":{"id":1358,"sku":"WJ11-S-Blue","name":"Neve Studio Dance Jacket-S-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"neve-studio-dance-jacket-s-blue-1358","links":{},"stock":{"item_id":1358,"product_id":1358,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-s-blue-1358.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1359","_score":1,"_source":{"id":1359,"sku":"WJ11-S-Orange","name":"Neve Studio Dance Jacket-S-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"neve-studio-dance-jacket-s-orange-1359","links":{},"stock":{"item_id":1359,"product_id":1359,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-s-orange-1359.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1360","_score":1,"_source":{"id":1360,"sku":"WJ11-M-Black","name":"Neve Studio Dance Jacket-M-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"neve-studio-dance-jacket-m-black-1360","links":{},"stock":{"item_id":1360,"product_id":1360,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-m-black-1360.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1280","_score":1,"_source":{"id":1280,"sku":"WJ05-M-Brown","name":"Riona Full Zip Jacket-M-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-m-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"riona-full-zip-jacket-m-brown-1280","links":{},"stock":{"item_id":1280,"product_id":1280,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-m-brown-1280.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1293","_score":1,"_source":{"id":1293,"sku":"WJ07-S-Orange","name":"Inez Full Zip Jacket-S-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"inez-full-zip-jacket-s-orange-1293","links":{},"stock":{"item_id":1293,"product_id":1293,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-s-orange-1293.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1287","_score":1,"_source":{"id":1287,"sku":"WJ05-XL-Green","name":"Riona Full Zip Jacket-XL-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"riona-full-zip-jacket-xl-green-1287","links":{},"stock":{"item_id":1287,"product_id":1287,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xl-green-1287.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1298","_score":1,"_source":{"id":1298,"sku":"WJ07-M-Red","name":"Inez Full Zip Jacket-M-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"inez-full-zip-jacket-m-red-1298","links":{},"stock":{"item_id":1298,"product_id":1298,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-m-red-1298.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1295","_score":1,"_source":{"id":1295,"sku":"WJ07-S-Red","name":"Inez Full Zip Jacket-S-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"inez-full-zip-jacket-s-red-1295","links":{},"stock":{"item_id":1295,"product_id":1295,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-s-red-1295.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1300","_score":1,"_source":{"id":1300,"sku":"WJ07-L-Purple","name":"Inez Full Zip Jacket-L-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"inez-full-zip-jacket-l-purple-1300","links":{},"stock":{"item_id":1300,"product_id":1300,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-l-purple-1300.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1299","_score":1,"_source":{"id":1299,"sku":"WJ07-L-Orange","name":"Inez Full Zip Jacket-L-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"inez-full-zip-jacket-l-orange-1299","links":{},"stock":{"item_id":1299,"product_id":1299,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-l-orange-1299.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1292","_score":1,"_source":{"id":1292,"sku":"WJ07-XS-Red","name":"Inez Full Zip Jacket-XS-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"inez-full-zip-jacket-xs-red-1292","links":{},"stock":{"item_id":1292,"product_id":1292,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xs-red-1292.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1283","_score":1,"_source":{"id":1283,"sku":"WJ05-L-Brown","name":"Riona Full Zip Jacket-L-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-l-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"riona-full-zip-jacket-l-brown-1283","links":{},"stock":{"item_id":1283,"product_id":1283,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-l-brown-1283.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1286","_score":1,"_source":{"id":1286,"sku":"WJ05-XL-Brown","name":"Riona Full Zip Jacket-XL-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xl-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"riona-full-zip-jacket-xl-brown-1286","links":{},"stock":{"item_id":1286,"product_id":1286,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xl-brown-1286.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1368","_score":1,"_source":{"id":1368,"sku":"WJ11-XL-Orange","name":"Neve Studio Dance Jacket-XL-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"neve-studio-dance-jacket-xl-orange-1368","links":{},"stock":{"item_id":1368,"product_id":1368,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xl-orange-1368.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1366","_score":1,"_source":{"id":1366,"sku":"WJ11-XL-Black","name":"Neve Studio Dance Jacket-XL-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"neve-studio-dance-jacket-xl-black-1366","links":{},"stock":{"item_id":1366,"product_id":1366,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xl-black-1366.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1367","_score":1,"_source":{"id":1367,"sku":"WJ11-XL-Blue","name":"Neve Studio Dance Jacket-XL-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"neve-studio-dance-jacket-xl-blue-1367","links":{},"stock":{"item_id":1367,"product_id":1367,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xl-blue-1367.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1380","_score":1,"_source":{"id":1380,"sku":"WJ06-L-Green","name":"Juno Jacket-L-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juno-jacket-l-green-1380","links":{},"stock":{"item_id":1380,"product_id":1380,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-l-green-1380.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1465","_score":1,"_source":{"id":1465,"sku":"WS06","name":"Elisa EverCool™ Tee","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"elisa-evercool-trade-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,154],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"elisa-evercool-and-trade-tee-1465","links":{},"stock":{"item_id":1465,"product_id":1465,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS06-XS-Gray","id":1450,"status":1,"name":"Elisa EverCool™ Tee-XS-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"167","color":"52","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","url_key":"elisa-evercool-trade-tee-xs-gray","msrp_display_actual_price_type":"0"},{"sku":"WS06-XS-Purple","id":1451,"status":1,"name":"Elisa EverCool™ Tee-XS-Purple","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"167","color":"57","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","url_key":"elisa-evercool-trade-tee-xs-purple","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-XS-Red","id":1452,"status":1,"name":"Elisa EverCool™ Tee-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"167","color":"58","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","url_key":"elisa-evercool-trade-tee-xs-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-S-Gray","id":1453,"status":1,"name":"Elisa EverCool™ Tee-S-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"168","color":"52","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","url_key":"elisa-evercool-trade-tee-s-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-S-Purple","id":1454,"status":1,"name":"Elisa EverCool™ Tee-S-Purple","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"168","color":"57","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","url_key":"elisa-evercool-trade-tee-s-purple","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-S-Red","id":1455,"status":1,"name":"Elisa EverCool™ Tee-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"168","color":"58","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","url_key":"elisa-evercool-trade-tee-s-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-M-Gray","id":1456,"status":1,"name":"Elisa EverCool™ Tee-M-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"169","color":"52","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","url_key":"elisa-evercool-trade-tee-m-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-M-Purple","id":1457,"status":1,"name":"Elisa EverCool™ Tee-M-Purple","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"169","color":"57","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","url_key":"elisa-evercool-trade-tee-m-purple","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-M-Red","id":1458,"status":1,"name":"Elisa EverCool™ Tee-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"169","color":"58","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","url_key":"elisa-evercool-trade-tee-m-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-L-Gray","id":1459,"status":1,"name":"Elisa EverCool™ Tee-L-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"170","color":"52","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","url_key":"elisa-evercool-trade-tee-l-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-L-Purple","id":1460,"status":1,"name":"Elisa EverCool™ Tee-L-Purple","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"170","color":"57","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","url_key":"elisa-evercool-trade-tee-l-purple","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-L-Red","id":1461,"status":1,"name":"Elisa EverCool™ Tee-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"170","color":"58","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","url_key":"elisa-evercool-trade-tee-l-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-XL-Gray","id":1462,"status":1,"name":"Elisa EverCool™ Tee-XL-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"171","color":"52","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","url_key":"elisa-evercool-trade-tee-xl-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-XL-Purple","id":1463,"status":1,"name":"Elisa EverCool™ Tee-XL-Purple","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"171","color":"57","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","url_key":"elisa-evercool-trade-tee-xl-purple","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS06-XL-Red","id":1464,"status":1,"name":"Elisa EverCool™ Tee-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"171","color":"58","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","url_key":"elisa-evercool-trade-tee-xl-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":201,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1465,"attribute_code":"color"},{"id":200,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1465,"attribute_code":"size"}],"color_options":[52,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-1465.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1481","_score":1,"_source":{"id":1481,"sku":"WS07","name":"Juliana Short-Sleeve Tee","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"juliana-short-sleeve-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"juliana-short-sleeve-tee-1481","links":{},"stock":{"item_id":1481,"product_id":1481,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS07-XS-Black","id":1466,"status":1,"name":"Juliana Short-Sleeve Tee-XS-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"167","color":"49","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","url_key":"juliana-short-sleeve-tee-xs-black","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-XS-White","id":1467,"status":1,"name":"Juliana Short-Sleeve Tee-XS-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"167","color":"59","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","url_key":"juliana-short-sleeve-tee-xs-white","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-XS-Yellow","id":1468,"status":1,"name":"Juliana Short-Sleeve Tee-XS-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"167","color":"60","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","url_key":"juliana-short-sleeve-tee-xs-yellow","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-S-Black","id":1469,"status":1,"name":"Juliana Short-Sleeve Tee-S-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"168","color":"49","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","url_key":"juliana-short-sleeve-tee-s-black","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-S-White","id":1470,"status":1,"name":"Juliana Short-Sleeve Tee-S-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"168","color":"59","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","url_key":"juliana-short-sleeve-tee-s-white","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-S-Yellow","id":1471,"status":1,"name":"Juliana Short-Sleeve Tee-S-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"168","color":"60","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","url_key":"juliana-short-sleeve-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-M-Black","id":1472,"status":1,"name":"Juliana Short-Sleeve Tee-M-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"169","color":"49","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","url_key":"juliana-short-sleeve-tee-m-black","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-M-White","id":1473,"status":1,"name":"Juliana Short-Sleeve Tee-M-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"169","color":"59","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","url_key":"juliana-short-sleeve-tee-m-white","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-M-Yellow","id":1474,"status":1,"name":"Juliana Short-Sleeve Tee-M-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"169","color":"60","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","url_key":"juliana-short-sleeve-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-L-Black","id":1475,"status":1,"name":"Juliana Short-Sleeve Tee-L-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"170","color":"49","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","url_key":"juliana-short-sleeve-tee-l-black","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-L-White","id":1476,"status":1,"name":"Juliana Short-Sleeve Tee-L-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"170","color":"59","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","url_key":"juliana-short-sleeve-tee-l-white","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-L-Yellow","id":1477,"status":1,"name":"Juliana Short-Sleeve Tee-L-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"170","color":"60","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","url_key":"juliana-short-sleeve-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-XL-Black","id":1478,"status":1,"name":"Juliana Short-Sleeve Tee-XL-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"171","color":"49","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","url_key":"juliana-short-sleeve-tee-xl-black","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-XL-White","id":1479,"status":1,"name":"Juliana Short-Sleeve Tee-XL-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"171","color":"59","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","url_key":"juliana-short-sleeve-tee-xl-white","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WS07-XL-Yellow","id":1480,"status":1,"name":"Juliana Short-Sleeve Tee-XL-Yellow","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","34","2"],"size":"171","color":"60","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","url_key":"juliana-short-sleeve-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42}],"configurable_options":[{"id":203,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":1481,"attribute_code":"color"},{"id":202,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1481,"attribute_code":"size"}],"color_options":[49,59,60],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-1481.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1492","_score":1,"_source":{"id":1492,"sku":"WS08-L-Blue","name":"Minerva LumaTech™ V-Tee-L-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"minerva-lumatech-and-trade-v-tee-l-blue-1492","links":{},"stock":{"item_id":1492,"product_id":1492,"stock_id":1,"qty":16,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-l-blue-1492.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1496","_score":1,"_source":{"id":1496,"sku":"WS08-XL-Red","name":"Minerva LumaTech™ V-Tee-XL-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"minerva-lumatech-and-trade-v-tee-xl-red-1496","links":{},"stock":{"item_id":1496,"product_id":1496,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xl-red-1496.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1498","_score":1,"_source":{"id":1498,"sku":"WS09-XS-Blue","name":"Tiffany Fitness Tee-XS-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tiffany-fitness-tee-xs-blue-1498","links":{},"stock":{"item_id":1498,"product_id":1498,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-03-08 08:34:51","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xs-blue-1498.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1493","_score":1,"_source":{"id":1493,"sku":"WS08-L-Red","name":"Minerva LumaTech™ V-Tee-L-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"minerva-lumatech-and-trade-v-tee-l-red-1493","links":{},"stock":{"item_id":1493,"product_id":1493,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-l-red-1493.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1497","_score":1,"_source":{"id":1497,"sku":"WS08","name":"Minerva LumaTech™ V-Tee","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:18","updated_at":"2019-04-15 08:24:50","product_links":[{"sku":"WS08","link_type":"related","linked_product_sku":"WS09","linked_product_type":"configurable","position":1},{"sku":"WS08","link_type":"related","linked_product_sku":"WP10","linked_product_type":"configurable","position":2},{"sku":"WS08","link_type":"related","linked_product_sku":"WJ03","linked_product_type":"configurable","position":3},{"sku":"WS08","link_type":"related","linked_product_sku":"WS10","linked_product_type":"configurable","position":4},{"sku":"WS08","link_type":"related","linked_product_sku":"WP11","linked_product_type":"configurable","position":5},{"sku":"WS08","link_type":"related","linked_product_sku":"WH03","linked_product_type":"configurable","position":6},{"sku":"WS08","link_type":"related","linked_product_sku":"WH09","linked_product_type":"configurable","position":7},{"sku":"WS08","link_type":"related","linked_product_sku":"WJ06","linked_product_type":"configurable","position":8}],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":32,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \r\n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","category_ids":[25,33,30,2],"options_container":"container2","required_options":"1","has_options":"1","url_key":"minerva-lumatech-trade-v-tee","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":[33,149],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"minerva-lumatech-and-trade-v-tee-1497","links":{"related":[{"sku":"WS09","pos":1},{"sku":"WP10","pos":2},{"sku":"WJ03","pos":3},{"sku":"WS10","pos":4},{"sku":"WP11","pos":5},{"sku":"WH03","pos":6},{"sku":"WH09","pos":7},{"sku":"WJ06","pos":8}]},"stock":{"item_id":1497,"product_id":1497,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"configurable_children":[{"sku":"WS08-XS-Black","id":1482,"status":1,"name":"Minerva LumaTech™ V-Tee-XS-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"167","color":"49","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","url_key":"minerva-lumatech-trade-v-tee-xs-black","special_price":"20.0000","special_from_date":"2019-04-30 00:00:00","msrp_display_actual_price_type":"0"},{"sku":"WS08-XS-Blue","id":1483,"status":1,"name":"Minerva LumaTech™ V-Tee-XS-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"167","color":"50","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","url_key":"minerva-lumatech-trade-v-tee-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WS08-XS-Red","id":1484,"status":1,"name":"Minerva LumaTech™ V-Tee-XS-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"167","color":"58","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","url_key":"minerva-lumatech-trade-v-tee-xs-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS08-S-Black","id":1485,"status":1,"name":"Minerva LumaTech™ V-Tee-S-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"168","color":"49","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","url_key":"minerva-lumatech-trade-v-tee-s-black","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS08-S-Blue","id":1486,"status":1,"name":"Minerva LumaTech™ V-Tee-S-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"168","color":"50","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","url_key":"minerva-lumatech-trade-v-tee-s-blue","msrp_display_actual_price_type":"0"},{"sku":"WS08-S-Red","id":1487,"status":1,"name":"Minerva LumaTech™ V-Tee-S-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"168","color":"58","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","url_key":"minerva-lumatech-trade-v-tee-s-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS08-M-Black","id":1488,"status":1,"name":"Minerva LumaTech™ V-Tee-M-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"169","color":"49","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","url_key":"minerva-lumatech-trade-v-tee-m-black","msrp_display_actual_price_type":"0"},{"sku":"WS08-M-Blue","id":1489,"status":1,"name":"Minerva LumaTech™ V-Tee-M-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"169","color":"50","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","url_key":"minerva-lumatech-trade-v-tee-m-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS08-M-Red","id":1490,"status":1,"name":"Minerva LumaTech™ V-Tee-M-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"169","color":"58","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","url_key":"minerva-lumatech-trade-v-tee-m-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS08-L-Black","id":1491,"status":1,"name":"Minerva LumaTech™ V-Tee-L-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"170","color":"49","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","url_key":"minerva-lumatech-trade-v-tee-l-black","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS08-L-Blue","id":1492,"status":1,"name":"Minerva LumaTech™ V-Tee-L-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"170","color":"50","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","url_key":"minerva-lumatech-trade-v-tee-l-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS08-L-Red","id":1493,"status":1,"name":"Minerva LumaTech™ V-Tee-L-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"170","color":"58","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","url_key":"minerva-lumatech-trade-v-tee-l-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS08-XL-Black","id":1494,"status":1,"name":"Minerva LumaTech™ V-Tee-XL-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"171","color":"49","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","url_key":"minerva-lumatech-trade-v-tee-xl-black","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS08-XL-Blue","id":1495,"status":1,"name":"Minerva LumaTech™ V-Tee-XL-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"171","color":"50","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","url_key":"minerva-lumatech-trade-v-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS08-XL-Red","id":1496,"status":1,"name":"Minerva LumaTech™ V-Tee-XL-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","2"],"size":"171","color":"58","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","url_key":"minerva-lumatech-trade-v-tee-xl-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32}],"configurable_options":[{"id":306,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":1497,"attribute_code":"color"},{"id":307,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1497,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-1497.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1473","_score":1,"_source":{"id":1473,"sku":"WS07-M-White","name":"Juliana Short-Sleeve Tee-M-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juliana-short-sleeve-tee-m-white-1473","links":{},"stock":{"item_id":1473,"product_id":1473,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-m-white-1473.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1464","_score":1,"_source":{"id":1464,"sku":"WS06-XL-Red","name":"Elisa EverCool™ Tee-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"elisa-evercool-and-trade-tee-xl-red-1464","links":{},"stock":{"item_id":1464,"product_id":1464,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xl-red-1464.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1478","_score":1,"_source":{"id":1478,"sku":"WS07-XL-Black","name":"Juliana Short-Sleeve Tee-XL-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juliana-short-sleeve-tee-xl-black-1478","links":{},"stock":{"item_id":1478,"product_id":1478,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xl-black-1478.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1454","_score":1,"_source":{"id":1454,"sku":"WS06-S-Purple","name":"Elisa EverCool™ Tee-S-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"elisa-evercool-and-trade-tee-s-purple-1454","links":{},"stock":{"item_id":1454,"product_id":1454,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-s-purple-1454.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1470","_score":1,"_source":{"id":1470,"sku":"WS07-S-White","name":"Juliana Short-Sleeve Tee-S-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juliana-short-sleeve-tee-s-white-1470","links":{},"stock":{"item_id":1470,"product_id":1470,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-s-white-1470.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1482","_score":1,"_source":{"id":1482,"sku":"WS08-XS-Black","name":"Minerva LumaTech™ V-Tee-XS-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2019-06-28 09:49:11","weight":1,"product_links":[{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WS08","linked_product_type":"configurable","position":1},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WH02","linked_product_type":"configurable","position":2},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WS09","linked_product_type":"configurable","position":3},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WJ03","linked_product_type":"configurable","position":4},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WP10","linked_product_type":"configurable","position":5},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WT03","linked_product_type":"configurable","position":6},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WH10","linked_product_type":"configurable","position":7},{"sku":"WS08-XS-Black","link_type":"related","linked_product_sku":"WJ12","linked_product_type":"configurable","position":8}],"tier_prices":[],"custom_attributes":null,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTechâ„¢ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup. Beatufiul style.

                            \r\n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry. Beatufiull drying features

                            ","special_price":"20.0000","special_from_date":"2019-04-30 00:00:00","cost":"22.0000","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xs-black","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"167","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"1","style_general":"126","slug":"minerva-lumatech-and-trade-v-tee-xs-black-1482","links":{"related":[{"sku":"WS08","pos":1},{"sku":"WH02","pos":2},{"sku":"WS09","pos":3},{"sku":"WJ03","pos":4},{"sku":"WP10","pos":5},{"sku":"WT03","pos":6},{"sku":"WH10","pos":7},{"sku":"WJ12","pos":8}]},"stock":{"item_id":1482,"product_id":1482,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-07-10 05:07:21","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xs-black-1482.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1477","_score":1,"_source":{"id":1477,"sku":"WS07-L-Yellow","name":"Juliana Short-Sleeve Tee-L-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juliana-short-sleeve-tee-l-yellow-1477","links":{},"stock":{"item_id":1477,"product_id":1477,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-l-yellow-1477.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1475","_score":1,"_source":{"id":1475,"sku":"WS07-L-Black","name":"Juliana Short-Sleeve Tee-L-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juliana-short-sleeve-tee-l-black-1475","links":{},"stock":{"item_id":1475,"product_id":1475,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-l-black-1475.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1476","_score":1,"_source":{"id":1476,"sku":"WS07-L-White","name":"Juliana Short-Sleeve Tee-L-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juliana-short-sleeve-tee-l-white-1476","links":{},"stock":{"item_id":1476,"product_id":1476,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-l-white-1476.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1466","_score":1,"_source":{"id":1466,"sku":"WS07-XS-Black","name":"Juliana Short-Sleeve Tee-XS-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juliana-short-sleeve-tee-xs-black-1466","links":{},"stock":{"item_id":1466,"product_id":1466,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xs-black-1466.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1463","_score":1,"_source":{"id":1463,"sku":"WS06-XL-Purple","name":"Elisa EverCool™ Tee-XL-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"elisa-evercool-and-trade-tee-xl-purple-1463","links":{},"stock":{"item_id":1463,"product_id":1463,"stock_id":1,"qty":79,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xl-purple-1463.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1474","_score":1,"_source":{"id":1474,"sku":"WS07-M-Yellow","name":"Juliana Short-Sleeve Tee-M-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juliana-short-sleeve-tee-m-yellow-1474","links":{},"stock":{"item_id":1474,"product_id":1474,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-m-yellow-1474.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1472","_score":1,"_source":{"id":1472,"sku":"WS07-M-Black","name":"Juliana Short-Sleeve Tee-M-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juliana-short-sleeve-tee-m-black-1472","links":{},"stock":{"item_id":1472,"product_id":1472,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-m-black-1472.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1484","_score":1,"_source":{"id":1484,"sku":"WS08-XS-Red","name":"Minerva LumaTech™ V-Tee-XS-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"minerva-lumatech-and-trade-v-tee-xs-red-1484","links":{},"stock":{"item_id":1484,"product_id":1484,"stock_id":1,"qty":62,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xs-red-1484.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1499","_score":1,"_source":{"id":1499,"sku":"WS09-XS-Red","name":"Tiffany Fitness Tee-XS-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tiffany-fitness-tee-xs-red-1499","links":{},"stock":{"item_id":1499,"product_id":1499,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xs-red-1499.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1483","_score":1,"_source":{"id":1483,"sku":"WS08-XS-Blue","name":"Minerva LumaTech™ V-Tee-XS-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"minerva-lumatech-and-trade-v-tee-xs-blue-1483","links":{},"stock":{"item_id":1483,"product_id":1483,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-08-20 08:21:00","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xs-blue-1483.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1480","_score":1,"_source":{"id":1480,"sku":"WS07-XL-Yellow","name":"Juliana Short-Sleeve Tee-XL-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juliana-short-sleeve-tee-xl-yellow-1480","links":{},"stock":{"item_id":1480,"product_id":1480,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xl-yellow-1480.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1489","_score":1,"_source":{"id":1489,"sku":"WS08-M-Blue","name":"Minerva LumaTech™ V-Tee-M-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"minerva-lumatech-and-trade-v-tee-m-blue-1489","links":{},"stock":{"item_id":1489,"product_id":1489,"stock_id":1,"qty":62,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-m-blue-1489.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1471","_score":1,"_source":{"id":1471,"sku":"WS07-S-Yellow","name":"Juliana Short-Sleeve Tee-S-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juliana-short-sleeve-tee-s-yellow-1471","links":{},"stock":{"item_id":1471,"product_id":1471,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-s-yellow-1471.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1488","_score":1,"_source":{"id":1488,"sku":"WS08-M-Black","name":"Minerva LumaTech™ V-Tee-M-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"minerva-lumatech-and-trade-v-tee-m-black-1488","links":{},"stock":{"item_id":1488,"product_id":1488,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-07-16 06:34:06","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-m-black-1488.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1500","_score":1,"_source":{"id":1500,"sku":"WS09-XS-White","name":"Tiffany Fitness Tee-XS-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tiffany-fitness-tee-xs-white-1500","links":{},"stock":{"item_id":1500,"product_id":1500,"stock_id":1,"qty":66,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xs-white-1500.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1479","_score":1,"_source":{"id":1479,"sku":"WS07-XL-White","name":"Juliana Short-Sleeve Tee-XL-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juliana-short-sleeve-tee-xl-white-1479","links":{},"stock":{"item_id":1479,"product_id":1479,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xl-white-1479.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1494","_score":1,"_source":{"id":1494,"sku":"WS08-XL-Black","name":"Minerva LumaTech™ V-Tee-XL-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"minerva-lumatech-and-trade-v-tee-xl-black-1494","links":{},"stock":{"item_id":1494,"product_id":1494,"stock_id":1,"qty":51,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xl-black-1494.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1495","_score":1,"_source":{"id":1495,"sku":"WS08-XL-Blue","name":"Minerva LumaTech™ V-Tee-XL-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"minerva-lumatech-and-trade-v-tee-xl-blue-1495","links":{},"stock":{"item_id":1495,"product_id":1495,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xl-blue-1495.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1487","_score":1,"_source":{"id":1487,"sku":"WS08-S-Red","name":"Minerva LumaTech™ V-Tee-S-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"minerva-lumatech-and-trade-v-tee-s-red-1487","links":{},"stock":{"item_id":1487,"product_id":1487,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-s-red-1487.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1485","_score":1,"_source":{"id":1485,"sku":"WS08-S-Black","name":"Minerva LumaTech™ V-Tee-S-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"minerva-lumatech-and-trade-v-tee-s-black-1485","links":{},"stock":{"item_id":1485,"product_id":1485,"stock_id":1,"qty":4,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-s-black-1485.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1491","_score":1,"_source":{"id":1491,"sku":"WS08-L-Black","name":"Minerva LumaTech™ V-Tee-L-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"minerva-lumatech-and-trade-v-tee-l-black-1491","links":{},"stock":{"item_id":1491,"product_id":1491,"stock_id":1,"qty":14,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-l-black-1491.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1490","_score":1,"_source":{"id":1490,"sku":"WS08-M-Red","name":"Minerva LumaTech™ V-Tee-M-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"minerva-lumatech-and-trade-v-tee-m-red-1490","links":{},"stock":{"item_id":1490,"product_id":1490,"stock_id":1,"qty":70,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-m-red-1490.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1486","_score":1,"_source":{"id":1486,"sku":"WS08-S-Blue","name":"Minerva LumaTech™ V-Tee-S-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2019-04-11 12:22:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \r\n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-s-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"168","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"minerva-lumatech-and-trade-v-tee-s-blue-1486","links":{},"stock":{"item_id":1486,"product_id":1486,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-04-11 12:22:55","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-s-blue-1486.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1401","_score":1,"_source":{"id":1401,"sku":"WJ12","name":"Olivia 1/4 Zip Light Jacket","attribute_set_id":9,"price":77,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"olivia-1-4-zip-light-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,37,33],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[118,137,120,125,128],"pattern":"197","climate":[208,209,210],"slug":"olivia-14-zip-light-jacket-1401","links":{},"stock":{"item_id":1401,"product_id":1401,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ12-XS-Black","id":1386,"status":1,"name":"Olivia 1/4 Zip Light Jacket-XS-Black","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"167","color":"49","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","url_key":"olivia-1-4-zip-light-jacket-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WJ12-XS-Blue","id":1387,"status":1,"name":"Olivia 1/4 Zip Light Jacket-XS-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"167","color":"50","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","url_key":"olivia-1-4-zip-light-jacket-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ12-XS-Purple","id":1388,"status":1,"name":"Olivia 1/4 Zip Light Jacket-XS-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"167","color":"57","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","url_key":"olivia-1-4-zip-light-jacket-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ12-S-Black","id":1389,"status":1,"name":"Olivia 1/4 Zip Light Jacket-S-Black","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"168","color":"49","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","url_key":"olivia-1-4-zip-light-jacket-s-black","msrp_display_actual_price_type":"0"},{"sku":"WJ12-S-Blue","id":1390,"status":1,"name":"Olivia 1/4 Zip Light Jacket-S-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"168","color":"50","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","url_key":"olivia-1-4-zip-light-jacket-s-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ12-S-Purple","id":1391,"status":1,"name":"Olivia 1/4 Zip Light Jacket-S-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"168","color":"57","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","url_key":"olivia-1-4-zip-light-jacket-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ12-M-Black","id":1392,"status":1,"name":"Olivia 1/4 Zip Light Jacket-M-Black","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"169","color":"49","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","url_key":"olivia-1-4-zip-light-jacket-m-black","msrp_display_actual_price_type":"0"},{"sku":"WJ12-M-Blue","id":1393,"status":1,"name":"Olivia 1/4 Zip Light Jacket-M-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"169","color":"50","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","url_key":"olivia-1-4-zip-light-jacket-m-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ12-M-Purple","id":1394,"status":1,"name":"Olivia 1/4 Zip Light Jacket-M-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"169","color":"57","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","url_key":"olivia-1-4-zip-light-jacket-m-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ12-L-Black","id":1395,"status":1,"name":"Olivia 1/4 Zip Light Jacket-L-Black","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"170","color":"49","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","url_key":"olivia-1-4-zip-light-jacket-l-black","msrp_display_actual_price_type":"0"},{"sku":"WJ12-L-Blue","id":1396,"status":1,"name":"Olivia 1/4 Zip Light Jacket-L-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"170","color":"50","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","url_key":"olivia-1-4-zip-light-jacket-l-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ12-L-Purple","id":1397,"status":1,"name":"Olivia 1/4 Zip Light Jacket-L-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"170","color":"57","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","url_key":"olivia-1-4-zip-light-jacket-l-purple","msrp_display_actual_price_type":"0"},{"sku":"WJ12-XL-Black","id":1398,"status":1,"name":"Olivia 1/4 Zip Light Jacket-XL-Black","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"171","color":"49","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","url_key":"olivia-1-4-zip-light-jacket-xl-black","msrp_display_actual_price_type":"0"},{"sku":"WJ12-XL-Blue","id":1399,"status":1,"name":"Olivia 1/4 Zip Light Jacket-XL-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"171","color":"50","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","url_key":"olivia-1-4-zip-light-jacket-xl-blue","msrp_display_actual_price_type":"0"},{"sku":"WJ12-XL-Purple","id":1400,"status":1,"name":"Olivia 1/4 Zip Light Jacket-XL-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"171","color":"57","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","url_key":"olivia-1-4-zip-light-jacket-xl-purple","msrp_display_actual_price_type":"0"}],"configurable_options":[{"id":193,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":1401,"attribute_code":"color"},{"id":192,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1401,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-1401.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1417","_score":1,"_source":{"id":1417,"sku":"WS02","name":"Gabrielle Micro Sleeve Top","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"gabrielle-micro-sleeve-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,146],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"gabrielle-micro-sleeve-top-1417","links":{},"stock":{"item_id":1417,"product_id":1417,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS02-XS-Blue","id":1402,"status":1,"name":"Gabrielle Micro Sleeve Top-XS-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"167","color":"50","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","url_key":"gabrielle-micro-sleeve-top-xs-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-XS-Green","id":1403,"status":1,"name":"Gabrielle Micro Sleeve Top-XS-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"167","color":"53","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","url_key":"gabrielle-micro-sleeve-top-xs-green","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-XS-Red","id":1404,"status":1,"name":"Gabrielle Micro Sleeve Top-XS-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"167","color":"58","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","url_key":"gabrielle-micro-sleeve-top-xs-red","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-S-Blue","id":1405,"status":1,"name":"Gabrielle Micro Sleeve Top-S-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"168","color":"50","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","url_key":"gabrielle-micro-sleeve-top-s-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-S-Green","id":1406,"status":1,"name":"Gabrielle Micro Sleeve Top-S-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"168","color":"53","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","url_key":"gabrielle-micro-sleeve-top-s-green","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-S-Red","id":1407,"status":1,"name":"Gabrielle Micro Sleeve Top-S-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"168","color":"58","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","url_key":"gabrielle-micro-sleeve-top-s-red","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-M-Blue","id":1408,"status":1,"name":"Gabrielle Micro Sleeve Top-M-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"169","color":"50","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","url_key":"gabrielle-micro-sleeve-top-m-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-M-Green","id":1409,"status":1,"name":"Gabrielle Micro Sleeve Top-M-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"169","color":"53","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","url_key":"gabrielle-micro-sleeve-top-m-green","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-M-Red","id":1410,"status":1,"name":"Gabrielle Micro Sleeve Top-M-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"169","color":"58","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","url_key":"gabrielle-micro-sleeve-top-m-red","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-L-Blue","id":1411,"status":1,"name":"Gabrielle Micro Sleeve Top-L-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"170","color":"50","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","url_key":"gabrielle-micro-sleeve-top-l-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-L-Green","id":1412,"status":1,"name":"Gabrielle Micro Sleeve Top-L-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"170","color":"53","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","url_key":"gabrielle-micro-sleeve-top-l-green","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-L-Red","id":1413,"status":1,"name":"Gabrielle Micro Sleeve Top-L-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"170","color":"58","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","url_key":"gabrielle-micro-sleeve-top-l-red","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-XL-Blue","id":1414,"status":1,"name":"Gabrielle Micro Sleeve Top-XL-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"171","color":"50","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","url_key":"gabrielle-micro-sleeve-top-xl-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-XL-Green","id":1415,"status":1,"name":"Gabrielle Micro Sleeve Top-XL-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"171","color":"53","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","url_key":"gabrielle-micro-sleeve-top-xl-green","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS02-XL-Red","id":1416,"status":1,"name":"Gabrielle Micro Sleeve Top-XL-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","2"],"size":"171","color":"58","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","url_key":"gabrielle-micro-sleeve-top-xl-red","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28}],"configurable_options":[{"id":195,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1417,"attribute_code":"color"},{"id":194,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1417,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-1417.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1433","_score":1,"_source":{"id":1433,"sku":"WS03","name":"Iris Workout Top","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"iris-workout-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,38,151,155],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"iris-workout-top-1433","links":{},"stock":{"item_id":1433,"product_id":1433,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS03-XS-Blue","id":1418,"status":1,"name":"Iris Workout Top-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"50","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","url_key":"iris-workout-top-xs-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-XS-Green","id":1419,"status":1,"name":"Iris Workout Top-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"53","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","url_key":"iris-workout-top-xs-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-XS-Red","id":1420,"status":1,"name":"Iris Workout Top-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"58","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","url_key":"iris-workout-top-xs-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-S-Blue","id":1421,"status":1,"name":"Iris Workout Top-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"50","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","url_key":"iris-workout-top-s-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-S-Green","id":1422,"status":1,"name":"Iris Workout Top-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"53","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","url_key":"iris-workout-top-s-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-S-Red","id":1423,"status":1,"name":"Iris Workout Top-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"58","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","url_key":"iris-workout-top-s-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-M-Blue","id":1424,"status":1,"name":"Iris Workout Top-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"50","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","url_key":"iris-workout-top-m-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-M-Green","id":1425,"status":1,"name":"Iris Workout Top-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"53","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","url_key":"iris-workout-top-m-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-M-Red","id":1426,"status":1,"name":"Iris Workout Top-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"58","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","url_key":"iris-workout-top-m-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-L-Blue","id":1427,"status":1,"name":"Iris Workout Top-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"50","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","url_key":"iris-workout-top-l-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-L-Green","id":1428,"status":1,"name":"Iris Workout Top-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"53","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","url_key":"iris-workout-top-l-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-L-Red","id":1429,"status":1,"name":"Iris Workout Top-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"58","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","url_key":"iris-workout-top-l-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-XL-Blue","id":1430,"status":1,"name":"Iris Workout Top-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"50","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","url_key":"iris-workout-top-xl-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-XL-Green","id":1431,"status":1,"name":"Iris Workout Top-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"53","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","url_key":"iris-workout-top-xl-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS03-XL-Red","id":1432,"status":1,"name":"Iris Workout Top-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"58","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","url_key":"iris-workout-top-xl-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":197,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1433,"attribute_code":"color"},{"id":196,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1433,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-1433.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1449","_score":1,"_source":{"id":1449,"sku":"WS04","name":"Layla Tee","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"layla-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"33","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"layla-tee-1449","links":{},"stock":{"item_id":1449,"product_id":1449,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS04-XS-Blue","id":1434,"status":1,"name":"Layla Tee-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"167","color":"50","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","url_key":"layla-tee-xs-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-XS-Green","id":1435,"status":1,"name":"Layla Tee-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"167","color":"53","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","url_key":"layla-tee-xs-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-XS-Red","id":1436,"status":1,"name":"Layla Tee-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"167","color":"58","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","url_key":"layla-tee-xs-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-S-Blue","id":1437,"status":1,"name":"Layla Tee-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"168","color":"50","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","url_key":"layla-tee-s-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-S-Green","id":1438,"status":1,"name":"Layla Tee-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"168","color":"53","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","url_key":"layla-tee-s-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-S-Red","id":1439,"status":1,"name":"Layla Tee-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"168","color":"58","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","url_key":"layla-tee-s-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-M-Blue","id":1440,"status":1,"name":"Layla Tee-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"169","color":"50","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","url_key":"layla-tee-m-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-M-Green","id":1441,"status":1,"name":"Layla Tee-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"169","color":"53","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","url_key":"layla-tee-m-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-M-Red","id":1442,"status":1,"name":"Layla Tee-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"169","color":"58","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","url_key":"layla-tee-m-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-L-Blue","id":1443,"status":1,"name":"Layla Tee-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"170","color":"50","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","url_key":"layla-tee-l-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-L-Green","id":1444,"status":1,"name":"Layla Tee-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"170","color":"53","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","url_key":"layla-tee-l-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-L-Red","id":1445,"status":1,"name":"Layla Tee-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"170","color":"58","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","url_key":"layla-tee-l-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-XL-Blue","id":1446,"status":1,"name":"Layla Tee-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"171","color":"50","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","url_key":"layla-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-XL-Green","id":1447,"status":1,"name":"Layla Tee-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"171","color":"53","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","url_key":"layla-tee-xl-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WS04-XL-Red","id":1448,"status":1,"name":"Layla Tee-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","8","36","2"],"size":"171","color":"58","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","url_key":"layla-tee-xl-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":199,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1449,"attribute_code":"color"},{"id":198,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1449,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-1449.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1377","_score":1,"_source":{"id":1377,"sku":"WJ06-M-Green","name":"Juno Jacket-M-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juno-jacket-m-green-1377","links":{},"stock":{"item_id":1377,"product_id":1377,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-m-green-1377.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1396","_score":1,"_source":{"id":1396,"sku":"WJ12-L-Blue","name":"Olivia 1/4 Zip Light Jacket-L-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"olivia-14-zip-light-jacket-l-blue-1396","links":{},"stock":{"item_id":1396,"product_id":1396,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-l-blue-1396.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1395","_score":1,"_source":{"id":1395,"sku":"WJ12-L-Black","name":"Olivia 1/4 Zip Light Jacket-L-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"olivia-14-zip-light-jacket-l-black-1395","links":{},"stock":{"item_id":1395,"product_id":1395,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-l-black-1395.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1353","_score":1,"_source":{"id":1353,"sku":"WJ10","name":"Nadia Elements Shell","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"nadia-elements-shell","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38,156],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_general":[117,118,123,124,126,129],"pattern":"197","climate":[204,206,207,208,210],"slug":"nadia-elements-shell-1353","links":{},"stock":{"item_id":1353,"product_id":1353,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ10-XS-Black","id":1338,"status":1,"name":"Nadia Elements Shell-XS-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"167","color":"49","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","url_key":"nadia-elements-shell-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WJ10-XS-Orange","id":1339,"status":1,"name":"Nadia Elements Shell-XS-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"167","color":"56","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","url_key":"nadia-elements-shell-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ10-XS-Yellow","id":1340,"status":1,"name":"Nadia Elements Shell-XS-Yellow","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"167","color":"60","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","url_key":"nadia-elements-shell-xs-yellow","msrp_display_actual_price_type":"0"},{"sku":"WJ10-S-Black","id":1341,"status":1,"name":"Nadia Elements Shell-S-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"168","color":"49","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","url_key":"nadia-elements-shell-s-black","msrp_display_actual_price_type":"0"},{"sku":"WJ10-S-Orange","id":1342,"status":1,"name":"Nadia Elements Shell-S-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"168","color":"56","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","url_key":"nadia-elements-shell-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ10-S-Yellow","id":1343,"status":1,"name":"Nadia Elements Shell-S-Yellow","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"168","color":"60","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","url_key":"nadia-elements-shell-s-yellow","msrp_display_actual_price_type":"0"},{"sku":"WJ10-M-Black","id":1344,"status":1,"name":"Nadia Elements Shell-M-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"169","color":"49","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","url_key":"nadia-elements-shell-m-black","msrp_display_actual_price_type":"0"},{"sku":"WJ10-M-Orange","id":1345,"status":1,"name":"Nadia Elements Shell-M-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"169","color":"56","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","url_key":"nadia-elements-shell-m-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ10-M-Yellow","id":1346,"status":1,"name":"Nadia Elements Shell-M-Yellow","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"169","color":"60","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","url_key":"nadia-elements-shell-m-yellow","msrp_display_actual_price_type":"0"},{"sku":"WJ10-L-Black","id":1347,"status":1,"name":"Nadia Elements Shell-L-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"170","color":"49","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","url_key":"nadia-elements-shell-l-black","msrp_display_actual_price_type":"0"},{"sku":"WJ10-L-Orange","id":1348,"status":1,"name":"Nadia Elements Shell-L-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"170","color":"56","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","url_key":"nadia-elements-shell-l-orange","msrp_display_actual_price_type":"0"},{"sku":"WJ10-L-Yellow","id":1349,"status":1,"name":"Nadia Elements Shell-L-Yellow","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"170","color":"60","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","url_key":"nadia-elements-shell-l-yellow","msrp_display_actual_price_type":"0"},{"sku":"WJ10-XL-Black","id":1350,"status":1,"name":"Nadia Elements Shell-XL-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"171","color":"49","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","url_key":"nadia-elements-shell-xl-black","msrp_display_actual_price_type":"0"},{"sku":"WJ10-XL-Orange","id":1351,"status":1,"name":"Nadia Elements Shell-XL-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"171","color":"56","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","url_key":"nadia-elements-shell-xl-orange","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ10-XL-Yellow","id":1352,"status":1,"name":"Nadia Elements Shell-XL-Yellow","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","35","2"],"size":"171","color":"60","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","url_key":"nadia-elements-shell-xl-yellow","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69}],"configurable_options":[{"id":187,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1353,"attribute_code":"color"},{"id":186,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1353,"attribute_code":"size"}],"color_options":[49,56,60],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-1353.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1369","_score":1,"_source":{"id":1369,"sku":"WJ11","name":"Neve Studio Dance Jacket","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"neve-studio-dance-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,36,37,156],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":[118,137,121,120,125,128,130],"pattern":"197","climate":[205,206,208],"slug":"neve-studio-dance-jacket-1369","links":{},"stock":{"item_id":1369,"product_id":1369,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ11-XS-Black","id":1354,"status":1,"name":"Neve Studio Dance Jacket-XS-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"167","color":"49","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","url_key":"neve-studio-dance-jacket-xs-black","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-XS-Blue","id":1355,"status":1,"name":"Neve Studio Dance Jacket-XS-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"167","color":"50","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","url_key":"neve-studio-dance-jacket-xs-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-XS-Orange","id":1356,"status":1,"name":"Neve Studio Dance Jacket-XS-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"167","color":"56","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","url_key":"neve-studio-dance-jacket-xs-orange","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-S-Black","id":1357,"status":1,"name":"Neve Studio Dance Jacket-S-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"168","color":"49","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","url_key":"neve-studio-dance-jacket-s-black","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-S-Blue","id":1358,"status":1,"name":"Neve Studio Dance Jacket-S-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"168","color":"50","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","url_key":"neve-studio-dance-jacket-s-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-S-Orange","id":1359,"status":1,"name":"Neve Studio Dance Jacket-S-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"168","color":"56","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","url_key":"neve-studio-dance-jacket-s-orange","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-M-Black","id":1360,"status":1,"name":"Neve Studio Dance Jacket-M-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"169","color":"49","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","url_key":"neve-studio-dance-jacket-m-black","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-M-Blue","id":1361,"status":1,"name":"Neve Studio Dance Jacket-M-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"169","color":"50","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","url_key":"neve-studio-dance-jacket-m-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-M-Orange","id":1362,"status":1,"name":"Neve Studio Dance Jacket-M-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"169","color":"56","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","url_key":"neve-studio-dance-jacket-m-orange","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-L-Black","id":1363,"status":1,"name":"Neve Studio Dance Jacket-L-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"170","color":"49","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","url_key":"neve-studio-dance-jacket-l-black","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-L-Blue","id":1364,"status":1,"name":"Neve Studio Dance Jacket-L-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"170","color":"50","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","url_key":"neve-studio-dance-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-L-Orange","id":1365,"status":1,"name":"Neve Studio Dance Jacket-L-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"170","color":"56","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","url_key":"neve-studio-dance-jacket-l-orange","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-XL-Black","id":1366,"status":1,"name":"Neve Studio Dance Jacket-XL-Black","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"171","color":"49","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","url_key":"neve-studio-dance-jacket-xl-black","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-XL-Blue","id":1367,"status":1,"name":"Neve Studio Dance Jacket-XL-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"171","color":"50","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","url_key":"neve-studio-dance-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"WJ11-XL-Orange","id":1368,"status":1,"name":"Neve Studio Dance Jacket-XL-Orange","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","2"],"size":"171","color":"56","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","url_key":"neve-studio-dance-jacket-xl-orange","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69}],"configurable_options":[{"id":189,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":1369,"attribute_code":"color"},{"id":188,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1369,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-1369.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1441","_score":1,"_source":{"id":1441,"sku":"WS04-M-Green","name":"Layla Tee-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"layla-tee-m-green-1441","links":{},"stock":{"item_id":1441,"product_id":1441,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-m-green-1441.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1428","_score":1,"_source":{"id":1428,"sku":"WS03-L-Green","name":"Iris Workout Top-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"iris-workout-top-l-green-1428","links":{},"stock":{"item_id":1428,"product_id":1428,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-l-green-1428.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1418","_score":1,"_source":{"id":1418,"sku":"WS03-XS-Blue","name":"Iris Workout Top-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"iris-workout-top-xs-blue-1418","links":{},"stock":{"item_id":1418,"product_id":1418,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xs-blue-1418.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1426","_score":1,"_source":{"id":1426,"sku":"WS03-M-Red","name":"Iris Workout Top-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"iris-workout-top-m-red-1426","links":{},"stock":{"item_id":1426,"product_id":1426,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-m-red-1426.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1438","_score":1,"_source":{"id":1438,"sku":"WS04-S-Green","name":"Layla Tee-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"layla-tee-s-green-1438","links":{},"stock":{"item_id":1438,"product_id":1438,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-s-green-1438.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1422","_score":1,"_source":{"id":1422,"sku":"WS03-S-Green","name":"Iris Workout Top-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"iris-workout-top-s-green-1422","links":{},"stock":{"item_id":1422,"product_id":1422,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-s-green-1422.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1429","_score":1,"_source":{"id":1429,"sku":"WS03-L-Red","name":"Iris Workout Top-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"iris-workout-top-l-red-1429","links":{},"stock":{"item_id":1429,"product_id":1429,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-l-red-1429.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1421","_score":1,"_source":{"id":1421,"sku":"WS03-S-Blue","name":"Iris Workout Top-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"iris-workout-top-s-blue-1421","links":{},"stock":{"item_id":1421,"product_id":1421,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-s-blue-1421.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1419","_score":1,"_source":{"id":1419,"sku":"WS03-XS-Green","name":"Iris Workout Top-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"iris-workout-top-xs-green-1419","links":{},"stock":{"item_id":1419,"product_id":1419,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xs-green-1419.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1402","_score":1,"_source":{"id":1402,"sku":"WS02-XS-Blue","name":"Gabrielle Micro Sleeve Top-XS-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gabrielle-micro-sleeve-top-xs-blue-1402","links":{},"stock":{"item_id":1402,"product_id":1402,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xs-blue-1402.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1440","_score":1,"_source":{"id":1440,"sku":"WS04-M-Blue","name":"Layla Tee-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"layla-tee-m-blue-1440","links":{},"stock":{"item_id":1440,"product_id":1440,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-m-blue-1440.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1445","_score":1,"_source":{"id":1445,"sku":"WS04-L-Red","name":"Layla Tee-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"layla-tee-l-red-1445","links":{},"stock":{"item_id":1445,"product_id":1445,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-l-red-1445.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1427","_score":1,"_source":{"id":1427,"sku":"WS03-L-Blue","name":"Iris Workout Top-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"iris-workout-top-l-blue-1427","links":{},"stock":{"item_id":1427,"product_id":1427,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-l-blue-1427.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1448","_score":1,"_source":{"id":1448,"sku":"WS04-XL-Red","name":"Layla Tee-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"layla-tee-xl-red-1448","links":{},"stock":{"item_id":1448,"product_id":1448,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xl-red-1448.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1444","_score":1,"_source":{"id":1444,"sku":"WS04-L-Green","name":"Layla Tee-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"layla-tee-l-green-1444","links":{},"stock":{"item_id":1444,"product_id":1444,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-l-green-1444.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1437","_score":1,"_source":{"id":1437,"sku":"WS04-S-Blue","name":"Layla Tee-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"layla-tee-s-blue-1437","links":{},"stock":{"item_id":1437,"product_id":1437,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-s-blue-1437.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1435","_score":1,"_source":{"id":1435,"sku":"WS04-XS-Green","name":"Layla Tee-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"layla-tee-xs-green-1435","links":{},"stock":{"item_id":1435,"product_id":1435,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xs-green-1435.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1450","_score":1,"_source":{"id":1450,"sku":"WS06-XS-Gray","name":"Elisa EverCool™ Tee-XS-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"elisa-evercool-and-trade-tee-xs-gray-1450","links":{},"stock":{"item_id":1450,"product_id":1450,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-01-09 15:01:40","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xs-gray-1450.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1443","_score":1,"_source":{"id":1443,"sku":"WS04-L-Blue","name":"Layla Tee-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"layla-tee-l-blue-1443","links":{},"stock":{"item_id":1443,"product_id":1443,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-l-blue-1443.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1439","_score":1,"_source":{"id":1439,"sku":"WS04-S-Red","name":"Layla Tee-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"layla-tee-s-red-1439","links":{},"stock":{"item_id":1439,"product_id":1439,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-s-red-1439.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1423","_score":1,"_source":{"id":1423,"sku":"WS03-S-Red","name":"Iris Workout Top-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"iris-workout-top-s-red-1423","links":{},"stock":{"item_id":1423,"product_id":1423,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-s-red-1423.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1446","_score":1,"_source":{"id":1446,"sku":"WS04-XL-Blue","name":"Layla Tee-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"layla-tee-xl-blue-1446","links":{},"stock":{"item_id":1446,"product_id":1446,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xl-blue-1446.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1436","_score":1,"_source":{"id":1436,"sku":"WS04-XS-Red","name":"Layla Tee-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"layla-tee-xs-red-1436","links":{},"stock":{"item_id":1436,"product_id":1436,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xs-red-1436.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1424","_score":1,"_source":{"id":1424,"sku":"WS03-M-Blue","name":"Iris Workout Top-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"iris-workout-top-m-blue-1424","links":{},"stock":{"item_id":1424,"product_id":1424,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-m-blue-1424.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1434","_score":1,"_source":{"id":1434,"sku":"WS04-XS-Blue","name":"Layla Tee-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"layla-tee-xs-blue-1434","links":{},"stock":{"item_id":1434,"product_id":1434,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xs-blue-1434.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1447","_score":1,"_source":{"id":1447,"sku":"WS04-XL-Green","name":"Layla Tee-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"layla-tee-xl-green-1447","links":{},"stock":{"item_id":1447,"product_id":1447,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xl-green-1447.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1442","_score":1,"_source":{"id":1442,"sku":"WS04-M-Red","name":"Layla Tee-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"layla-tee-m-red-1442","links":{},"stock":{"item_id":1442,"product_id":1442,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-m-red-1442.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1385","_score":1,"_source":{"id":1385,"sku":"WJ06","name":"Juno Jacket","attribute_set_id":9,"price":77,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"juno-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,145],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[117,118,122,124,129,130],"pattern":"197","climate":[203,204,208,210,211],"slug":"juno-jacket-1385","links":{},"stock":{"item_id":1385,"product_id":1385,"stock_id":1,"qty":5,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ06-XS-Blue","id":1370,"status":1,"name":"Juno Jacket-XS-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"167","color":"50","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","url_key":"juno-jacket-xs-blue","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-XS-Green","id":1371,"status":1,"name":"Juno Jacket-XS-Green","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"167","color":"53","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","url_key":"juno-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-XS-Purple","id":1372,"status":1,"name":"Juno Jacket-XS-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"167","color":"57","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","url_key":"juno-jacket-xs-purple","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-S-Blue","id":1373,"status":1,"name":"Juno Jacket-S-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"168","color":"50","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","url_key":"juno-jacket-s-blue","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-S-Green","id":1374,"status":1,"name":"Juno Jacket-S-Green","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"168","color":"53","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","url_key":"juno-jacket-s-green","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-S-Purple","id":1375,"status":1,"name":"Juno Jacket-S-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"168","color":"57","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","url_key":"juno-jacket-s-purple","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-M-Blue","id":1376,"status":1,"name":"Juno Jacket-M-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"169","color":"50","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","url_key":"juno-jacket-m-blue","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-M-Green","id":1377,"status":1,"name":"Juno Jacket-M-Green","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"169","color":"53","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","url_key":"juno-jacket-m-green","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-M-Purple","id":1378,"status":1,"name":"Juno Jacket-M-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"169","color":"57","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","url_key":"juno-jacket-m-purple","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-L-Blue","id":1379,"status":1,"name":"Juno Jacket-L-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"170","color":"50","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","url_key":"juno-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-L-Green","id":1380,"status":1,"name":"Juno Jacket-L-Green","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"170","color":"53","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","url_key":"juno-jacket-l-green","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-L-Purple","id":1381,"status":1,"name":"Juno Jacket-L-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"170","color":"57","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","url_key":"juno-jacket-l-purple","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-XL-Blue","id":1382,"status":1,"name":"Juno Jacket-XL-Blue","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"171","color":"50","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","url_key":"juno-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-XL-Green","id":1383,"status":1,"name":"Juno Jacket-XL-Green","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"171","color":"53","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","url_key":"juno-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77},{"sku":"WJ06-XL-Purple","id":1384,"status":1,"name":"Juno Jacket-XL-Purple","price":77,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","35","2"],"size":"171","color":"57","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","url_key":"juno-jacket-xl-purple","msrp_display_actual_price_type":"0","final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77}],"configurable_options":[{"id":191,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"}],"product_id":1385,"attribute_code":"color"},{"id":190,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1385,"attribute_code":"size"}],"color_options":[50,53,57],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-1385.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1406","_score":1,"_source":{"id":1406,"sku":"WS02-S-Green","name":"Gabrielle Micro Sleeve Top-S-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gabrielle-micro-sleeve-top-s-green-1406","links":{},"stock":{"item_id":1406,"product_id":1406,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-s-green-1406.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1412","_score":1,"_source":{"id":1412,"sku":"WS02-L-Green","name":"Gabrielle Micro Sleeve Top-L-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gabrielle-micro-sleeve-top-l-green-1412","links":{},"stock":{"item_id":1412,"product_id":1412,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-l-green-1412.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1431","_score":1,"_source":{"id":1431,"sku":"WS03-XL-Green","name":"Iris Workout Top-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"iris-workout-top-xl-green-1431","links":{},"stock":{"item_id":1431,"product_id":1431,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xl-green-1431.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1416","_score":1,"_source":{"id":1416,"sku":"WS02-XL-Red","name":"Gabrielle Micro Sleeve Top-XL-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gabrielle-micro-sleeve-top-xl-red-1416","links":{},"stock":{"item_id":1416,"product_id":1416,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xl-red-1416.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1409","_score":1,"_source":{"id":1409,"sku":"WS02-M-Green","name":"Gabrielle Micro Sleeve Top-M-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gabrielle-micro-sleeve-top-m-green-1409","links":{},"stock":{"item_id":1409,"product_id":1409,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-m-green-1409.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1415","_score":1,"_source":{"id":1415,"sku":"WS02-XL-Green","name":"Gabrielle Micro Sleeve Top-XL-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gabrielle-micro-sleeve-top-xl-green-1415","links":{},"stock":{"item_id":1415,"product_id":1415,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xl-green-1415.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1405","_score":1,"_source":{"id":1405,"sku":"WS02-S-Blue","name":"Gabrielle Micro Sleeve Top-S-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gabrielle-micro-sleeve-top-s-blue-1405","links":{},"stock":{"item_id":1405,"product_id":1405,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-s-blue-1405.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1410","_score":1,"_source":{"id":1410,"sku":"WS02-M-Red","name":"Gabrielle Micro Sleeve Top-M-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gabrielle-micro-sleeve-top-m-red-1410","links":{},"stock":{"item_id":1410,"product_id":1410,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-m-red-1410.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1413","_score":1,"_source":{"id":1413,"sku":"WS02-L-Red","name":"Gabrielle Micro Sleeve Top-L-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gabrielle-micro-sleeve-top-l-red-1413","links":{},"stock":{"item_id":1413,"product_id":1413,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-l-red-1413.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1420","_score":1,"_source":{"id":1420,"sku":"WS03-XS-Red","name":"Iris Workout Top-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"iris-workout-top-xs-red-1420","links":{},"stock":{"item_id":1420,"product_id":1420,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xs-red-1420.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1403","_score":1,"_source":{"id":1403,"sku":"WS02-XS-Green","name":"Gabrielle Micro Sleeve Top-XS-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gabrielle-micro-sleeve-top-xs-green-1403","links":{},"stock":{"item_id":1403,"product_id":1403,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xs-green-1403.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1404","_score":1,"_source":{"id":1404,"sku":"WS02-XS-Red","name":"Gabrielle Micro Sleeve Top-XS-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gabrielle-micro-sleeve-top-xs-red-1404","links":{},"stock":{"item_id":1404,"product_id":1404,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xs-red-1404.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1411","_score":1,"_source":{"id":1411,"sku":"WS02-L-Blue","name":"Gabrielle Micro Sleeve Top-L-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gabrielle-micro-sleeve-top-l-blue-1411","links":{},"stock":{"item_id":1411,"product_id":1411,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-l-blue-1411.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1432","_score":1,"_source":{"id":1432,"sku":"WS03-XL-Red","name":"Iris Workout Top-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"iris-workout-top-xl-red-1432","links":{},"stock":{"item_id":1432,"product_id":1432,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xl-red-1432.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1425","_score":1,"_source":{"id":1425,"sku":"WS03-M-Green","name":"Iris Workout Top-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"iris-workout-top-m-green-1425","links":{},"stock":{"item_id":1425,"product_id":1425,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-m-green-1425.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1407","_score":1,"_source":{"id":1407,"sku":"WS02-S-Red","name":"Gabrielle Micro Sleeve Top-S-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gabrielle-micro-sleeve-top-s-red-1407","links":{},"stock":{"item_id":1407,"product_id":1407,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-s-red-1407.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1430","_score":1,"_source":{"id":1430,"sku":"WS03-XL-Blue","name":"Iris Workout Top-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"iris-workout-top-xl-blue-1430","links":{},"stock":{"item_id":1430,"product_id":1430,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xl-blue-1430.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1414","_score":1,"_source":{"id":1414,"sku":"WS02-XL-Blue","name":"Gabrielle Micro Sleeve Top-XL-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gabrielle-micro-sleeve-top-xl-blue-1414","links":{},"stock":{"item_id":1414,"product_id":1414,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xl-blue-1414.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1408","_score":1,"_source":{"id":1408,"sku":"WS02-M-Blue","name":"Gabrielle Micro Sleeve Top-M-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gabrielle-micro-sleeve-top-m-blue-1408","links":{},"stock":{"item_id":1408,"product_id":1408,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-m-blue-1408.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1394","_score":1,"_source":{"id":1394,"sku":"WJ12-M-Purple","name":"Olivia 1/4 Zip Light Jacket-M-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"olivia-14-zip-light-jacket-m-purple-1394","links":{},"stock":{"item_id":1394,"product_id":1394,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-m-purple-1394.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1388","_score":1,"_source":{"id":1388,"sku":"WJ12-XS-Purple","name":"Olivia 1/4 Zip Light Jacket-XS-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"olivia-14-zip-light-jacket-xs-purple-1388","links":{},"stock":{"item_id":1388,"product_id":1388,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xs-purple-1388.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1387","_score":1,"_source":{"id":1387,"sku":"WJ12-XS-Blue","name":"Olivia 1/4 Zip Light Jacket-XS-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"olivia-14-zip-light-jacket-xs-blue-1387","links":{},"stock":{"item_id":1387,"product_id":1387,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xs-blue-1387.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1357","_score":1,"_source":{"id":1357,"sku":"WJ11-S-Black","name":"Neve Studio Dance Jacket-S-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"neve-studio-dance-jacket-s-black-1357","links":{},"stock":{"item_id":1357,"product_id":1357,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-s-black-1357.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1397","_score":1,"_source":{"id":1397,"sku":"WJ12-L-Purple","name":"Olivia 1/4 Zip Light Jacket-L-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"olivia-14-zip-light-jacket-l-purple-1397","links":{},"stock":{"item_id":1397,"product_id":1397,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-l-purple-1397.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1399","_score":1,"_source":{"id":1399,"sku":"WJ12-XL-Blue","name":"Olivia 1/4 Zip Light Jacket-XL-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"olivia-14-zip-light-jacket-xl-blue-1399","links":{},"stock":{"item_id":1399,"product_id":1399,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xl-blue-1399.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1393","_score":1,"_source":{"id":1393,"sku":"WJ12-M-Blue","name":"Olivia 1/4 Zip Light Jacket-M-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"olivia-14-zip-light-jacket-m-blue-1393","links":{},"stock":{"item_id":1393,"product_id":1393,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-m-blue-1393.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1400","_score":1,"_source":{"id":1400,"sku":"WJ12-XL-Purple","name":"Olivia 1/4 Zip Light Jacket-XL-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"olivia-14-zip-light-jacket-xl-purple-1400","links":{},"stock":{"item_id":1400,"product_id":1400,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xl-purple-1400.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1386","_score":1,"_source":{"id":1386,"sku":"WJ12-XS-Black","name":"Olivia 1/4 Zip Light Jacket-XS-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"olivia-14-zip-light-jacket-xs-black-1386","links":{},"stock":{"item_id":1386,"product_id":1386,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-05-10 04:47:58","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xs-black-1386.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1391","_score":1,"_source":{"id":1391,"sku":"WJ12-S-Purple","name":"Olivia 1/4 Zip Light Jacket-S-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"olivia-14-zip-light-jacket-s-purple-1391","links":{},"stock":{"item_id":1391,"product_id":1391,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-s-purple-1391.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1383","_score":1,"_source":{"id":1383,"sku":"WJ06-XL-Green","name":"Juno Jacket-XL-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juno-jacket-xl-green-1383","links":{},"stock":{"item_id":1383,"product_id":1383,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xl-green-1383.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1384","_score":1,"_source":{"id":1384,"sku":"WJ06-XL-Purple","name":"Juno Jacket-XL-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juno-jacket-xl-purple-1384","links":{},"stock":{"item_id":1384,"product_id":1384,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xl-purple-1384.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1398","_score":1,"_source":{"id":1398,"sku":"WJ12-XL-Black","name":"Olivia 1/4 Zip Light Jacket-XL-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"olivia-14-zip-light-jacket-xl-black-1398","links":{},"stock":{"item_id":1398,"product_id":1398,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xl-black-1398.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1392","_score":1,"_source":{"id":1392,"sku":"WJ12-M-Black","name":"Olivia 1/4 Zip Light Jacket-M-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"olivia-14-zip-light-jacket-m-black-1392","links":{},"stock":{"item_id":1392,"product_id":1392,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-m-black-1392.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1458","_score":1,"_source":{"id":1458,"sku":"WS06-M-Red","name":"Elisa EverCool™ Tee-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"elisa-evercool-and-trade-tee-m-red-1458","links":{},"stock":{"item_id":1458,"product_id":1458,"stock_id":1,"qty":49,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-m-red-1458.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1468","_score":1,"_source":{"id":1468,"sku":"WS07-XS-Yellow","name":"Juliana Short-Sleeve Tee-XS-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juliana-short-sleeve-tee-xs-yellow-1468","links":{},"stock":{"item_id":1468,"product_id":1468,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xs-yellow-1468.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1455","_score":1,"_source":{"id":1455,"sku":"WS06-S-Red","name":"Elisa EverCool™ Tee-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"elisa-evercool-and-trade-tee-s-red-1455","links":{},"stock":{"item_id":1455,"product_id":1455,"stock_id":1,"qty":80,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-s-red-1455.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1456","_score":1,"_source":{"id":1456,"sku":"WS06-M-Gray","name":"Elisa EverCool™ Tee-M-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"elisa-evercool-and-trade-tee-m-gray-1456","links":{},"stock":{"item_id":1456,"product_id":1456,"stock_id":1,"qty":60,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-m-gray-1456.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1452","_score":1,"_source":{"id":1452,"sku":"WS06-XS-Red","name":"Elisa EverCool™ Tee-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"elisa-evercool-and-trade-tee-xs-red-1452","links":{},"stock":{"item_id":1452,"product_id":1452,"stock_id":1,"qty":74,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xs-red-1452.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1451","_score":1,"_source":{"id":1451,"sku":"WS06-XS-Purple","name":"Elisa EverCool™ Tee-XS-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"elisa-evercool-and-trade-tee-xs-purple-1451","links":{},"stock":{"item_id":1451,"product_id":1451,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xs-purple-1451.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1459","_score":1,"_source":{"id":1459,"sku":"WS06-L-Gray","name":"Elisa EverCool™ Tee-L-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"elisa-evercool-and-trade-tee-l-gray-1459","links":{},"stock":{"item_id":1459,"product_id":1459,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-l-gray-1459.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1457","_score":1,"_source":{"id":1457,"sku":"WS06-M-Purple","name":"Elisa EverCool™ Tee-M-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"elisa-evercool-and-trade-tee-m-purple-1457","links":{},"stock":{"item_id":1457,"product_id":1457,"stock_id":1,"qty":55,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-m-purple-1457.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1461","_score":1,"_source":{"id":1461,"sku":"WS06-L-Red","name":"Elisa EverCool™ Tee-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"elisa-evercool-and-trade-tee-l-red-1461","links":{},"stock":{"item_id":1461,"product_id":1461,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-l-red-1461.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1467","_score":1,"_source":{"id":1467,"sku":"WS07-XS-White","name":"Juliana Short-Sleeve Tee-XS-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juliana-short-sleeve-tee-xs-white-1467","links":{},"stock":{"item_id":1467,"product_id":1467,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xs-white-1467.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1460","_score":1,"_source":{"id":1460,"sku":"WS06-L-Purple","name":"Elisa EverCool™ Tee-L-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"elisa-evercool-and-trade-tee-l-purple-1460","links":{},"stock":{"item_id":1460,"product_id":1460,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-l-purple-1460.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1469","_score":1,"_source":{"id":1469,"sku":"WS07-S-Black","name":"Juliana Short-Sleeve Tee-S-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juliana-short-sleeve-tee-s-black-1469","links":{},"stock":{"item_id":1469,"product_id":1469,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-s-black-1469.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1462","_score":1,"_source":{"id":1462,"sku":"WS06-XL-Gray","name":"Elisa EverCool™ Tee-XL-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"elisa-evercool-and-trade-tee-xl-gray-1462","links":{},"stock":{"item_id":1462,"product_id":1462,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xl-gray-1462.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1453","_score":1,"_source":{"id":1453,"sku":"WS06-S-Gray","name":"Elisa EverCool™ Tee-S-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"elisa-evercool-and-trade-tee-s-gray-1453","links":{},"stock":{"item_id":1453,"product_id":1453,"stock_id":1,"qty":78,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-s-gray-1453.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1696","_score":1,"_source":{"id":1696,"sku":"WT02-M-Green","name":"Zoe Tank-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoe-tank-m-green-1696","links":{},"stock":{"item_id":1696,"product_id":1696,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-m-green-1696.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1697","_score":1,"_source":{"id":1697,"sku":"WT02-M-Orange","name":"Zoe Tank-M-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoe-tank-m-orange-1697","links":{},"stock":{"item_id":1697,"product_id":1697,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-m-orange-1697.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1693","_score":1,"_source":{"id":1693,"sku":"WT02-S-Green","name":"Zoe Tank-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoe-tank-s-green-1693","links":{},"stock":{"item_id":1693,"product_id":1693,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-s-green-1693.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1695","_score":1,"_source":{"id":1695,"sku":"WT02-S-Yellow","name":"Zoe Tank-S-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoe-tank-s-yellow-1695","links":{},"stock":{"item_id":1695,"product_id":1695,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-s-yellow-1695.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1700","_score":1,"_source":{"id":1700,"sku":"WT02-L-Orange","name":"Zoe Tank-L-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoe-tank-l-orange-1700","links":{},"stock":{"item_id":1700,"product_id":1700,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-l-orange-1700.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1688","_score":1,"_source":{"id":1688,"sku":"WT01-XL-Orange","name":"Bella Tank-XL-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bella-tank-xl-orange-1688","links":{},"stock":{"item_id":1688,"product_id":1688,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xl-orange-1688.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1657","_score":1,"_source":{"id":1657,"sku":"WB04","name":"Prima Compete Bra Top","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"prima-compete-bra-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,154,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"131","pattern":"197","climate":[205,209],"slug":"prima-compete-bra-top-1657","links":{},"stock":{"item_id":1657,"product_id":1657,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WB04-XS-Blue","id":1642,"status":1,"name":"Prima Compete Bra Top-XS-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"50","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","url_key":"prima-compete-bra-top-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WB04-XS-Purple","id":1643,"status":1,"name":"Prima Compete Bra Top-XS-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"57","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","url_key":"prima-compete-bra-top-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WB04-XS-Yellow","id":1644,"status":1,"name":"Prima Compete Bra Top-XS-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"60","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","url_key":"prima-compete-bra-top-xs-yellow","msrp_display_actual_price_type":"0"},{"sku":"WB04-S-Blue","id":1645,"status":1,"name":"Prima Compete Bra Top-S-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"50","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","url_key":"prima-compete-bra-top-s-blue","msrp_display_actual_price_type":"0"},{"sku":"WB04-S-Purple","id":1646,"status":1,"name":"Prima Compete Bra Top-S-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"57","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","url_key":"prima-compete-bra-top-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WB04-S-Yellow","id":1647,"status":1,"name":"Prima Compete Bra Top-S-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"60","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","url_key":"prima-compete-bra-top-s-yellow","msrp_display_actual_price_type":"0"},{"sku":"WB04-M-Blue","id":1648,"status":1,"name":"Prima Compete Bra Top-M-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"50","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","url_key":"prima-compete-bra-top-m-blue","msrp_display_actual_price_type":"0"},{"sku":"WB04-M-Purple","id":1649,"status":1,"name":"Prima Compete Bra Top-M-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"57","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","url_key":"prima-compete-bra-top-m-purple","msrp_display_actual_price_type":"0"},{"sku":"WB04-M-Yellow","id":1650,"status":1,"name":"Prima Compete Bra Top-M-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"60","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","url_key":"prima-compete-bra-top-m-yellow","msrp_display_actual_price_type":"0"},{"sku":"WB04-L-Blue","id":1651,"status":1,"name":"Prima Compete Bra Top-L-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"50","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","url_key":"prima-compete-bra-top-l-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WB04-L-Purple","id":1652,"status":1,"name":"Prima Compete Bra Top-L-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"57","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","url_key":"prima-compete-bra-top-l-purple","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WB04-L-Yellow","id":1653,"status":1,"name":"Prima Compete Bra Top-L-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"60","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","url_key":"prima-compete-bra-top-l-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WB04-XL-Blue","id":1654,"status":1,"name":"Prima Compete Bra Top-XL-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"50","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","url_key":"prima-compete-bra-top-xl-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WB04-XL-Purple","id":1655,"status":1,"name":"Prima Compete Bra Top-XL-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"57","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","url_key":"prima-compete-bra-top-xl-purple","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WB04-XL-Yellow","id":1656,"status":1,"name":"Prima Compete Bra Top-XL-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"60","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","url_key":"prima-compete-bra-top-xl-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24}],"configurable_options":[{"id":225,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"},{"value_index":60,"label":"Yellow"}],"product_id":1657,"attribute_code":"color"},{"id":224,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1657,"attribute_code":"size"}],"color_options":[50,57,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-1657.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1689","_score":1,"_source":{"id":1689,"sku":"WT01","name":"Bella Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"bella-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"bella-tank-1689","links":{},"stock":{"item_id":1689,"product_id":1689,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT01-XS-Black","id":1674,"status":1,"name":"Bella Tank-XS-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"167","color":"49","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","url_key":"bella-tank-xs-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-XS-Blue","id":1675,"status":1,"name":"Bella Tank-XS-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"167","color":"50","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","url_key":"bella-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-XS-Orange","id":1676,"status":1,"name":"Bella Tank-XS-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"167","color":"56","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","url_key":"bella-tank-xs-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-S-Black","id":1677,"status":1,"name":"Bella Tank-S-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"168","color":"49","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","url_key":"bella-tank-s-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-S-Blue","id":1678,"status":1,"name":"Bella Tank-S-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"168","color":"50","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","url_key":"bella-tank-s-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-S-Orange","id":1679,"status":1,"name":"Bella Tank-S-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"168","color":"56","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","url_key":"bella-tank-s-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-M-Black","id":1680,"status":1,"name":"Bella Tank-M-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"169","color":"49","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","url_key":"bella-tank-m-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-M-Blue","id":1681,"status":1,"name":"Bella Tank-M-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"169","color":"50","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","url_key":"bella-tank-m-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-M-Orange","id":1682,"status":1,"name":"Bella Tank-M-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"169","color":"56","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","url_key":"bella-tank-m-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-L-Black","id":1683,"status":1,"name":"Bella Tank-L-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"170","color":"49","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","url_key":"bella-tank-l-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-L-Blue","id":1684,"status":1,"name":"Bella Tank-L-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"170","color":"50","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","url_key":"bella-tank-l-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-L-Orange","id":1685,"status":1,"name":"Bella Tank-L-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"170","color":"56","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","url_key":"bella-tank-l-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-XL-Black","id":1686,"status":1,"name":"Bella Tank-XL-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"171","color":"49","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","url_key":"bella-tank-xl-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-XL-Blue","id":1687,"status":1,"name":"Bella Tank-XL-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"171","color":"50","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","url_key":"bella-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT01-XL-Orange","id":1688,"status":1,"name":"Bella Tank-XL-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","36","2"],"size":"171","color":"56","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","url_key":"bella-tank-xl-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":229,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":1689,"attribute_code":"color"},{"id":228,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1689,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-1689.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1673","_score":1,"_source":{"id":1673,"sku":"WB05","name":"Lucia Cross-Fit Bra ","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"lucia-cross-fit-bra","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[150,37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"131","pattern":"194","climate":[205,209],"slug":"lucia-cross-fit-bra-1673","links":{},"stock":{"item_id":1673,"product_id":1673,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WB05-XS-Black","id":1658,"status":1,"name":"Lucia Cross-Fit Bra -XS-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"49","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","url_key":"lucia-cross-fit-bra-xs-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-XS-Orange","id":1659,"status":1,"name":"Lucia Cross-Fit Bra -XS-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"56","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","url_key":"lucia-cross-fit-bra-xs-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-XS-Purple","id":1660,"status":1,"name":"Lucia Cross-Fit Bra -XS-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"57","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","url_key":"lucia-cross-fit-bra-xs-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-S-Black","id":1661,"status":1,"name":"Lucia Cross-Fit Bra -S-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"49","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","url_key":"lucia-cross-fit-bra-s-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-S-Orange","id":1662,"status":1,"name":"Lucia Cross-Fit Bra -S-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"56","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","url_key":"lucia-cross-fit-bra-s-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-S-Purple","id":1663,"status":1,"name":"Lucia Cross-Fit Bra -S-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"57","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","url_key":"lucia-cross-fit-bra-s-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-M-Black","id":1664,"status":1,"name":"Lucia Cross-Fit Bra -M-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"49","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","url_key":"lucia-cross-fit-bra-m-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-M-Orange","id":1665,"status":1,"name":"Lucia Cross-Fit Bra -M-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"56","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","url_key":"lucia-cross-fit-bra-m-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-M-Purple","id":1666,"status":1,"name":"Lucia Cross-Fit Bra -M-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"57","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","url_key":"lucia-cross-fit-bra-m-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-L-Black","id":1667,"status":1,"name":"Lucia Cross-Fit Bra -L-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"49","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","url_key":"lucia-cross-fit-bra-l-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-L-Orange","id":1668,"status":1,"name":"Lucia Cross-Fit Bra -L-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"56","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","url_key":"lucia-cross-fit-bra-l-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-L-Purple","id":1669,"status":1,"name":"Lucia Cross-Fit Bra -L-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"57","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","url_key":"lucia-cross-fit-bra-l-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-XL-Black","id":1670,"status":1,"name":"Lucia Cross-Fit Bra -XL-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"49","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","url_key":"lucia-cross-fit-bra-xl-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-XL-Orange","id":1671,"status":1,"name":"Lucia Cross-Fit Bra -XL-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"56","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","url_key":"lucia-cross-fit-bra-xl-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB05-XL-Purple","id":1672,"status":1,"name":"Lucia Cross-Fit Bra -XL-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"57","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","url_key":"lucia-cross-fit-bra-xl-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39}],"configurable_options":[{"id":227,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1673,"attribute_code":"color"},{"id":226,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1673,"attribute_code":"size"}],"color_options":[49,56,57],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-1673.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1711","_score":1,"_source":{"id":1711,"sku":"WT03-S-Red","name":"Nora Practice Tank-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nora-practice-tank-s-red-1711","links":{},"stock":{"item_id":1711,"product_id":1711,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-s-red-1711.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1703","_score":1,"_source":{"id":1703,"sku":"WT02-XL-Orange","name":"Zoe Tank-XL-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoe-tank-xl-orange-1703","links":{},"stock":{"item_id":1703,"product_id":1703,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xl-orange-1703.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1735","_score":1,"_source":{"id":1735,"sku":"WT04-XL-Purple","name":"Nona Fitness Tank-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nona-fitness-tank-xl-purple-1735","links":{},"stock":{"item_id":1735,"product_id":1735,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xl-purple-1735.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1731","_score":1,"_source":{"id":1731,"sku":"WT04-L-Blue","name":"Nona Fitness Tank-L-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nona-fitness-tank-l-blue-1731","links":{},"stock":{"item_id":1731,"product_id":1731,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-l-blue-1731.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1719","_score":1,"_source":{"id":1719,"sku":"WT03-XL-Purple","name":"Nora Practice Tank-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nora-practice-tank-xl-purple-1719","links":{},"stock":{"item_id":1719,"product_id":1719,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xl-purple-1719.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1739","_score":1,"_source":{"id":1739,"sku":"WT05-XS-Purple","name":"Leah Yoga Top-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"leah-yoga-top-xs-purple-1739","links":{},"stock":{"item_id":1739,"product_id":1739,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xs-purple-1739.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1725","_score":1,"_source":{"id":1725,"sku":"WT04-S-Blue","name":"Nona Fitness Tank-S-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nona-fitness-tank-s-blue-1725","links":{},"stock":{"item_id":1725,"product_id":1725,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-s-blue-1725.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1716","_score":1,"_source":{"id":1716,"sku":"WT03-L-Purple","name":"Nora Practice Tank-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nora-practice-tank-l-purple-1716","links":{},"stock":{"item_id":1716,"product_id":1716,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-l-purple-1716.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1730","_score":1,"_source":{"id":1730,"sku":"WT04-M-Red","name":"Nona Fitness Tank-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nona-fitness-tank-m-red-1730","links":{},"stock":{"item_id":1730,"product_id":1730,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-m-red-1730.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1718","_score":1,"_source":{"id":1718,"sku":"WT03-XL-Orange","name":"Nora Practice Tank-XL-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nora-practice-tank-xl-orange-1718","links":{},"stock":{"item_id":1718,"product_id":1718,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xl-orange-1718.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1709","_score":1,"_source":{"id":1709,"sku":"WT03-S-Orange","name":"Nora Practice Tank-S-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nora-practice-tank-s-orange-1709","links":{},"stock":{"item_id":1709,"product_id":1709,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-s-orange-1709.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1744","_score":1,"_source":{"id":1744,"sku":"WT05-M-Orange","name":"Leah Yoga Top-M-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"leah-yoga-top-m-orange-1744","links":{},"stock":{"item_id":1744,"product_id":1744,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-m-orange-1744.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1742","_score":1,"_source":{"id":1742,"sku":"WT05-S-Purple","name":"Leah Yoga Top-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"leah-yoga-top-s-purple-1742","links":{},"stock":{"item_id":1742,"product_id":1742,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-s-purple-1742.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1750","_score":1,"_source":{"id":1750,"sku":"WT05-XL-Orange","name":"Leah Yoga Top-XL-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"leah-yoga-top-xl-orange-1750","links":{},"stock":{"item_id":1750,"product_id":1750,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xl-orange-1750.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1710","_score":1,"_source":{"id":1710,"sku":"WT03-S-Purple","name":"Nora Practice Tank-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nora-practice-tank-s-purple-1710","links":{},"stock":{"item_id":1710,"product_id":1710,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-s-purple-1710.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1729","_score":1,"_source":{"id":1729,"sku":"WT04-M-Purple","name":"Nona Fitness Tank-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nona-fitness-tank-m-purple-1729","links":{},"stock":{"item_id":1729,"product_id":1729,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-m-purple-1729.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1713","_score":1,"_source":{"id":1713,"sku":"WT03-M-Purple","name":"Nora Practice Tank-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nora-practice-tank-m-purple-1713","links":{},"stock":{"item_id":1713,"product_id":1713,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-m-purple-1713.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1724","_score":1,"_source":{"id":1724,"sku":"WT04-XS-Red","name":"Nona Fitness Tank-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nona-fitness-tank-xs-red-1724","links":{},"stock":{"item_id":1724,"product_id":1724,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xs-red-1724.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1741","_score":1,"_source":{"id":1741,"sku":"WT05-S-Orange","name":"Leah Yoga Top-S-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"leah-yoga-top-s-orange-1741","links":{},"stock":{"item_id":1741,"product_id":1741,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-s-orange-1741.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1715","_score":1,"_source":{"id":1715,"sku":"WT03-L-Orange","name":"Nora Practice Tank-L-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nora-practice-tank-l-orange-1715","links":{},"stock":{"item_id":1715,"product_id":1715,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-l-orange-1715.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1723","_score":1,"_source":{"id":1723,"sku":"WT04-XS-Purple","name":"Nona Fitness Tank-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nona-fitness-tank-xs-purple-1723","links":{},"stock":{"item_id":1723,"product_id":1723,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xs-purple-1723.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1734","_score":1,"_source":{"id":1734,"sku":"WT04-XL-Blue","name":"Nona Fitness Tank-XL-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nona-fitness-tank-xl-blue-1734","links":{},"stock":{"item_id":1734,"product_id":1734,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xl-blue-1734.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1747","_score":1,"_source":{"id":1747,"sku":"WT05-L-Orange","name":"Leah Yoga Top-L-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"leah-yoga-top-l-orange-1747","links":{},"stock":{"item_id":1747,"product_id":1747,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-l-orange-1747.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1740","_score":1,"_source":{"id":1740,"sku":"WT05-XS-White","name":"Leah Yoga Top-XS-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"leah-yoga-top-xs-white-1740","links":{},"stock":{"item_id":1740,"product_id":1740,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xs-white-1740.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1736","_score":1,"_source":{"id":1736,"sku":"WT04-XL-Red","name":"Nona Fitness Tank-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nona-fitness-tank-xl-red-1736","links":{},"stock":{"item_id":1736,"product_id":1736,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xl-red-1736.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1727","_score":1,"_source":{"id":1727,"sku":"WT04-S-Red","name":"Nona Fitness Tank-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nona-fitness-tank-s-red-1727","links":{},"stock":{"item_id":1727,"product_id":1727,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-s-red-1727.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1732","_score":1,"_source":{"id":1732,"sku":"WT04-L-Purple","name":"Nona Fitness Tank-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nona-fitness-tank-l-purple-1732","links":{},"stock":{"item_id":1732,"product_id":1732,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-l-purple-1732.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1738","_score":1,"_source":{"id":1738,"sku":"WT05-XS-Orange","name":"Leah Yoga Top-XS-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"leah-yoga-top-xs-orange-1738","links":{},"stock":{"item_id":1738,"product_id":1738,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xs-orange-1738.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1720","_score":1,"_source":{"id":1720,"sku":"WT03-XL-Red","name":"Nora Practice Tank-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nora-practice-tank-xl-red-1720","links":{},"stock":{"item_id":1720,"product_id":1720,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xl-red-1720.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1728","_score":1,"_source":{"id":1728,"sku":"WT04-M-Blue","name":"Nona Fitness Tank-M-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nona-fitness-tank-m-blue-1728","links":{},"stock":{"item_id":1728,"product_id":1728,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-m-blue-1728.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1733","_score":1,"_source":{"id":1733,"sku":"WT04-L-Red","name":"Nona Fitness Tank-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nona-fitness-tank-l-red-1733","links":{},"stock":{"item_id":1733,"product_id":1733,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-l-red-1733.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1745","_score":1,"_source":{"id":1745,"sku":"WT05-M-Purple","name":"Leah Yoga Top-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"leah-yoga-top-m-purple-1745","links":{},"stock":{"item_id":1745,"product_id":1745,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-m-purple-1745.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1746","_score":1,"_source":{"id":1746,"sku":"WT05-M-White","name":"Leah Yoga Top-M-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"leah-yoga-top-m-white-1746","links":{},"stock":{"item_id":1746,"product_id":1746,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-m-white-1746.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1664","_score":1,"_source":{"id":1664,"sku":"WB05-M-Black","name":"Lucia Cross-Fit Bra -M-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lucia-cross-fit-bra-m-black-1664","links":{},"stock":{"item_id":1664,"product_id":1664,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-m-black-1664.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1659","_score":1,"_source":{"id":1659,"sku":"WB05-XS-Orange","name":"Lucia Cross-Fit Bra -XS-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lucia-cross-fit-bra-xs-orange-1659","links":{},"stock":{"item_id":1659,"product_id":1659,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xs-orange-1659.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1655","_score":1,"_source":{"id":1655,"sku":"WB04-XL-Purple","name":"Prima Compete Bra Top-XL-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"prima-compete-bra-top-xl-purple-1655","links":{},"stock":{"item_id":1655,"product_id":1655,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xl-purple-1655.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1665","_score":1,"_source":{"id":1665,"sku":"WB05-M-Orange","name":"Lucia Cross-Fit Bra -M-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lucia-cross-fit-bra-m-orange-1665","links":{},"stock":{"item_id":1665,"product_id":1665,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-m-orange-1665.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1652","_score":1,"_source":{"id":1652,"sku":"WB04-L-Purple","name":"Prima Compete Bra Top-L-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"prima-compete-bra-top-l-purple-1652","links":{},"stock":{"item_id":1652,"product_id":1652,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-l-purple-1652.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1679","_score":1,"_source":{"id":1679,"sku":"WT01-S-Orange","name":"Bella Tank-S-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bella-tank-s-orange-1679","links":{},"stock":{"item_id":1679,"product_id":1679,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-s-orange-1679.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1662","_score":1,"_source":{"id":1662,"sku":"WB05-S-Orange","name":"Lucia Cross-Fit Bra -S-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lucia-cross-fit-bra-s-orange-1662","links":{},"stock":{"item_id":1662,"product_id":1662,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-s-orange-1662.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1653","_score":1,"_source":{"id":1653,"sku":"WB04-L-Yellow","name":"Prima Compete Bra Top-L-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"prima-compete-bra-top-l-yellow-1653","links":{},"stock":{"item_id":1653,"product_id":1653,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-l-yellow-1653.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1674","_score":1,"_source":{"id":1674,"sku":"WT01-XS-Black","name":"Bella Tank-XS-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bella-tank-xs-black-1674","links":{},"stock":{"item_id":1674,"product_id":1674,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xs-black-1674.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1676","_score":1,"_source":{"id":1676,"sku":"WT01-XS-Orange","name":"Bella Tank-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bella-tank-xs-orange-1676","links":{},"stock":{"item_id":1676,"product_id":1676,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xs-orange-1676.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1683","_score":1,"_source":{"id":1683,"sku":"WT01-L-Black","name":"Bella Tank-L-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bella-tank-l-black-1683","links":{},"stock":{"item_id":1683,"product_id":1683,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-l-black-1683.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1687","_score":1,"_source":{"id":1687,"sku":"WT01-XL-Blue","name":"Bella Tank-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bella-tank-xl-blue-1687","links":{},"stock":{"item_id":1687,"product_id":1687,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xl-blue-1687.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1663","_score":1,"_source":{"id":1663,"sku":"WB05-S-Purple","name":"Lucia Cross-Fit Bra -S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lucia-cross-fit-bra-s-purple-1663","links":{},"stock":{"item_id":1663,"product_id":1663,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-s-purple-1663.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1682","_score":1,"_source":{"id":1682,"sku":"WT01-M-Orange","name":"Bella Tank-M-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bella-tank-m-orange-1682","links":{},"stock":{"item_id":1682,"product_id":1682,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-m-orange-1682.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1668","_score":1,"_source":{"id":1668,"sku":"WB05-L-Orange","name":"Lucia Cross-Fit Bra -L-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lucia-cross-fit-bra-l-orange-1668","links":{},"stock":{"item_id":1668,"product_id":1668,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-l-orange-1668.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1672","_score":1,"_source":{"id":1672,"sku":"WB05-XL-Purple","name":"Lucia Cross-Fit Bra -XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lucia-cross-fit-bra-xl-purple-1672","links":{},"stock":{"item_id":1672,"product_id":1672,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xl-purple-1672.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1656","_score":1,"_source":{"id":1656,"sku":"WB04-XL-Yellow","name":"Prima Compete Bra Top-XL-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"prima-compete-bra-top-xl-yellow-1656","links":{},"stock":{"item_id":1656,"product_id":1656,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xl-yellow-1656.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1658","_score":1,"_source":{"id":1658,"sku":"WB05-XS-Black","name":"Lucia Cross-Fit Bra -XS-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lucia-cross-fit-bra-xs-black-1658","links":{},"stock":{"item_id":1658,"product_id":1658,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xs-black-1658.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1694","_score":1,"_source":{"id":1694,"sku":"WT02-S-Orange","name":"Zoe Tank-S-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoe-tank-s-orange-1694","links":{},"stock":{"item_id":1694,"product_id":1694,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-s-orange-1694.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1680","_score":1,"_source":{"id":1680,"sku":"WT01-M-Black","name":"Bella Tank-M-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bella-tank-m-black-1680","links":{},"stock":{"item_id":1680,"product_id":1680,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-m-black-1680.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1681","_score":1,"_source":{"id":1681,"sku":"WT01-M-Blue","name":"Bella Tank-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bella-tank-m-blue-1681","links":{},"stock":{"item_id":1681,"product_id":1681,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-m-blue-1681.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1684","_score":1,"_source":{"id":1684,"sku":"WT01-L-Blue","name":"Bella Tank-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bella-tank-l-blue-1684","links":{},"stock":{"item_id":1684,"product_id":1684,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-l-blue-1684.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1685","_score":1,"_source":{"id":1685,"sku":"WT01-L-Orange","name":"Bella Tank-L-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bella-tank-l-orange-1685","links":{},"stock":{"item_id":1685,"product_id":1685,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-l-orange-1685.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1686","_score":1,"_source":{"id":1686,"sku":"WT01-XL-Black","name":"Bella Tank-XL-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bella-tank-xl-black-1686","links":{},"stock":{"item_id":1686,"product_id":1686,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xl-black-1686.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1698","_score":1,"_source":{"id":1698,"sku":"WT02-M-Yellow","name":"Zoe Tank-M-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoe-tank-m-yellow-1698","links":{},"stock":{"item_id":1698,"product_id":1698,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-m-yellow-1698.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1690","_score":1,"_source":{"id":1690,"sku":"WT02-XS-Green","name":"Zoe Tank-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoe-tank-xs-green-1690","links":{},"stock":{"item_id":1690,"product_id":1690,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xs-green-1690.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1677","_score":1,"_source":{"id":1677,"sku":"WT01-S-Black","name":"Bella Tank-S-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bella-tank-s-black-1677","links":{},"stock":{"item_id":1677,"product_id":1677,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-s-black-1677.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1691","_score":1,"_source":{"id":1691,"sku":"WT02-XS-Orange","name":"Zoe Tank-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoe-tank-xs-orange-1691","links":{},"stock":{"item_id":1691,"product_id":1691,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xs-orange-1691.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1699","_score":1,"_source":{"id":1699,"sku":"WT02-L-Green","name":"Zoe Tank-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoe-tank-l-green-1699","links":{},"stock":{"item_id":1699,"product_id":1699,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-l-green-1699.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1692","_score":1,"_source":{"id":1692,"sku":"WT02-XS-Yellow","name":"Zoe Tank-XS-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoe-tank-xs-yellow-1692","links":{},"stock":{"item_id":1692,"product_id":1692,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xs-yellow-1692.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1678","_score":1,"_source":{"id":1678,"sku":"WT01-S-Blue","name":"Bella Tank-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bella-tank-s-blue-1678","links":{},"stock":{"item_id":1678,"product_id":1678,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-s-blue-1678.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1667","_score":1,"_source":{"id":1667,"sku":"WB05-L-Black","name":"Lucia Cross-Fit Bra -L-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lucia-cross-fit-bra-l-black-1667","links":{},"stock":{"item_id":1667,"product_id":1667,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-l-black-1667.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1721","_score":1,"_source":{"id":1721,"sku":"WT03","name":"Nora Practice Tank","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"nora-practice-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"nora-practice-tank-1721","links":{},"stock":{"item_id":1721,"product_id":1721,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT03-XS-Orange","id":1706,"status":1,"name":"Nora Practice Tank-XS-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"167","color":"56","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","url_key":"nora-practice-tank-xs-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-XS-Purple","id":1707,"status":1,"name":"Nora Practice Tank-XS-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"167","color":"57","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","url_key":"nora-practice-tank-xs-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-XS-Red","id":1708,"status":1,"name":"Nora Practice Tank-XS-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"167","color":"58","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","url_key":"nora-practice-tank-xs-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-S-Orange","id":1709,"status":1,"name":"Nora Practice Tank-S-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"168","color":"56","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","url_key":"nora-practice-tank-s-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-S-Purple","id":1710,"status":1,"name":"Nora Practice Tank-S-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"168","color":"57","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","url_key":"nora-practice-tank-s-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-S-Red","id":1711,"status":1,"name":"Nora Practice Tank-S-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"168","color":"58","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","url_key":"nora-practice-tank-s-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-M-Orange","id":1712,"status":1,"name":"Nora Practice Tank-M-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"169","color":"56","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","url_key":"nora-practice-tank-m-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-M-Purple","id":1713,"status":1,"name":"Nora Practice Tank-M-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"169","color":"57","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","url_key":"nora-practice-tank-m-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-M-Red","id":1714,"status":1,"name":"Nora Practice Tank-M-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"169","color":"58","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","url_key":"nora-practice-tank-m-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-L-Orange","id":1715,"status":1,"name":"Nora Practice Tank-L-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"170","color":"56","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","url_key":"nora-practice-tank-l-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-L-Purple","id":1716,"status":1,"name":"Nora Practice Tank-L-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"170","color":"57","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","url_key":"nora-practice-tank-l-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-L-Red","id":1717,"status":1,"name":"Nora Practice Tank-L-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"170","color":"58","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","url_key":"nora-practice-tank-l-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-XL-Orange","id":1718,"status":1,"name":"Nora Practice Tank-XL-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"171","color":"56","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","url_key":"nora-practice-tank-xl-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-XL-Purple","id":1719,"status":1,"name":"Nora Practice Tank-XL-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"171","color":"57","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","url_key":"nora-practice-tank-xl-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT03-XL-Red","id":1720,"status":1,"name":"Nora Practice Tank-XL-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","34","2"],"size":"171","color":"58","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","url_key":"nora-practice-tank-xl-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39}],"configurable_options":[{"id":233,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1721,"attribute_code":"color"},{"id":232,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1721,"attribute_code":"size"}],"color_options":[56,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-1721.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1737","_score":1,"_source":{"id":1737,"sku":"WT04","name":"Nona Fitness Tank","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"nona-fitness-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,151],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"199","climate":[205,209],"slug":"nona-fitness-tank-1737","links":{},"stock":{"item_id":1737,"product_id":1737,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT04-XS-Blue","id":1722,"status":1,"name":"Nona Fitness Tank-XS-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"167","color":"50","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","url_key":"nona-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-XS-Purple","id":1723,"status":1,"name":"Nona Fitness Tank-XS-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"167","color":"57","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","url_key":"nona-fitness-tank-xs-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-XS-Red","id":1724,"status":1,"name":"Nona Fitness Tank-XS-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"167","color":"58","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","url_key":"nona-fitness-tank-xs-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-S-Blue","id":1725,"status":1,"name":"Nona Fitness Tank-S-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"168","color":"50","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","url_key":"nona-fitness-tank-s-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-S-Purple","id":1726,"status":1,"name":"Nona Fitness Tank-S-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"168","color":"57","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","url_key":"nona-fitness-tank-s-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-S-Red","id":1727,"status":1,"name":"Nona Fitness Tank-S-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"168","color":"58","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","url_key":"nona-fitness-tank-s-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-M-Blue","id":1728,"status":1,"name":"Nona Fitness Tank-M-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"169","color":"50","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","url_key":"nona-fitness-tank-m-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-M-Purple","id":1729,"status":1,"name":"Nona Fitness Tank-M-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"169","color":"57","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","url_key":"nona-fitness-tank-m-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-M-Red","id":1730,"status":1,"name":"Nona Fitness Tank-M-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"169","color":"58","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","url_key":"nona-fitness-tank-m-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-L-Blue","id":1731,"status":1,"name":"Nona Fitness Tank-L-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"170","color":"50","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","url_key":"nona-fitness-tank-l-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-L-Purple","id":1732,"status":1,"name":"Nona Fitness Tank-L-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"170","color":"57","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","url_key":"nona-fitness-tank-l-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-L-Red","id":1733,"status":1,"name":"Nona Fitness Tank-L-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"170","color":"58","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","url_key":"nona-fitness-tank-l-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-XL-Blue","id":1734,"status":1,"name":"Nona Fitness Tank-XL-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"171","color":"50","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","url_key":"nona-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-XL-Purple","id":1735,"status":1,"name":"Nona Fitness Tank-XL-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"171","color":"57","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","url_key":"nona-fitness-tank-xl-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT04-XL-Red","id":1736,"status":1,"name":"Nona Fitness Tank-XL-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"171","color":"58","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","url_key":"nona-fitness-tank-xl-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39}],"configurable_options":[{"id":235,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1737,"attribute_code":"color"},{"id":234,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1737,"attribute_code":"size"}],"color_options":[50,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-1737.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1705","_score":1,"_source":{"id":1705,"sku":"WT02","name":"Zoe Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"zoe-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,33],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"zoe-tank-1705","links":{},"stock":{"item_id":1705,"product_id":1705,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT02-XS-Green","id":1690,"status":1,"name":"Zoe Tank-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"53","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","url_key":"zoe-tank-xs-green","msrp_display_actual_price_type":"0"},{"sku":"WT02-XS-Orange","id":1691,"status":1,"name":"Zoe Tank-XS-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"56","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","url_key":"zoe-tank-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WT02-XS-Yellow","id":1692,"status":1,"name":"Zoe Tank-XS-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"60","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","url_key":"zoe-tank-xs-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT02-S-Green","id":1693,"status":1,"name":"Zoe Tank-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"53","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","url_key":"zoe-tank-s-green","msrp_display_actual_price_type":"0"},{"sku":"WT02-S-Orange","id":1694,"status":1,"name":"Zoe Tank-S-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"56","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","url_key":"zoe-tank-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WT02-S-Yellow","id":1695,"status":1,"name":"Zoe Tank-S-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"60","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","url_key":"zoe-tank-s-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT02-M-Green","id":1696,"status":1,"name":"Zoe Tank-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"53","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","url_key":"zoe-tank-m-green","msrp_display_actual_price_type":"0"},{"sku":"WT02-M-Orange","id":1697,"status":1,"name":"Zoe Tank-M-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"56","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","url_key":"zoe-tank-m-orange","msrp_display_actual_price_type":"0"},{"sku":"WT02-M-Yellow","id":1698,"status":1,"name":"Zoe Tank-M-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"60","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","url_key":"zoe-tank-m-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT02-L-Green","id":1699,"status":1,"name":"Zoe Tank-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"53","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","url_key":"zoe-tank-l-green","msrp_display_actual_price_type":"0"},{"sku":"WT02-L-Orange","id":1700,"status":1,"name":"Zoe Tank-L-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"56","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","url_key":"zoe-tank-l-orange","msrp_display_actual_price_type":"0"},{"sku":"WT02-L-Yellow","id":1701,"status":1,"name":"Zoe Tank-L-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"60","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","url_key":"zoe-tank-l-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT02-XL-Green","id":1702,"status":1,"name":"Zoe Tank-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"53","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","url_key":"zoe-tank-xl-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT02-XL-Orange","id":1703,"status":1,"name":"Zoe Tank-XL-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"56","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","url_key":"zoe-tank-xl-orange","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT02-XL-Yellow","id":1704,"status":1,"name":"Zoe Tank-XL-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"60","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","url_key":"zoe-tank-xl-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":231,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1705,"attribute_code":"color"},{"id":230,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1705,"attribute_code":"size"}],"color_options":[53,56,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-1705.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1651","_score":1,"_source":{"id":1651,"sku":"WB04-L-Blue","name":"Prima Compete Bra Top-L-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"prima-compete-bra-top-l-blue-1651","links":{},"stock":{"item_id":1651,"product_id":1651,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-l-blue-1651.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1660","_score":1,"_source":{"id":1660,"sku":"WB05-XS-Purple","name":"Lucia Cross-Fit Bra -XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lucia-cross-fit-bra-xs-purple-1660","links":{},"stock":{"item_id":1660,"product_id":1660,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xs-purple-1660.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1669","_score":1,"_source":{"id":1669,"sku":"WB05-L-Purple","name":"Lucia Cross-Fit Bra -L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lucia-cross-fit-bra-l-purple-1669","links":{},"stock":{"item_id":1669,"product_id":1669,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-l-purple-1669.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1670","_score":1,"_source":{"id":1670,"sku":"WB05-XL-Black","name":"Lucia Cross-Fit Bra -XL-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lucia-cross-fit-bra-xl-black-1670","links":{},"stock":{"item_id":1670,"product_id":1670,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xl-black-1670.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1671","_score":1,"_source":{"id":1671,"sku":"WB05-XL-Orange","name":"Lucia Cross-Fit Bra -XL-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lucia-cross-fit-bra-xl-orange-1671","links":{},"stock":{"item_id":1671,"product_id":1671,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xl-orange-1671.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1661","_score":1,"_source":{"id":1661,"sku":"WB05-S-Black","name":"Lucia Cross-Fit Bra -S-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lucia-cross-fit-bra-s-black-1661","links":{},"stock":{"item_id":1661,"product_id":1661,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-s-black-1661.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1675","_score":1,"_source":{"id":1675,"sku":"WT01-XS-Blue","name":"Bella Tank-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bella-tank-xs-blue-1675","links":{},"stock":{"item_id":1675,"product_id":1675,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xs-blue-1675.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1666","_score":1,"_source":{"id":1666,"sku":"WB05-M-Purple","name":"Lucia Cross-Fit Bra -M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lucia-cross-fit-bra-m-purple-1666","links":{},"stock":{"item_id":1666,"product_id":1666,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-m-purple-1666.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1654","_score":1,"_source":{"id":1654,"sku":"WB04-XL-Blue","name":"Prima Compete Bra Top-XL-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"prima-compete-bra-top-xl-blue-1654","links":{},"stock":{"item_id":1654,"product_id":1654,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xl-blue-1654.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1706","_score":1,"_source":{"id":1706,"sku":"WT03-XS-Orange","name":"Nora Practice Tank-XS-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nora-practice-tank-xs-orange-1706","links":{},"stock":{"item_id":1706,"product_id":1706,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xs-orange-1706.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1702","_score":1,"_source":{"id":1702,"sku":"WT02-XL-Green","name":"Zoe Tank-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoe-tank-xl-green-1702","links":{},"stock":{"item_id":1702,"product_id":1702,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xl-green-1702.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1707","_score":1,"_source":{"id":1707,"sku":"WT03-XS-Purple","name":"Nora Practice Tank-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nora-practice-tank-xs-purple-1707","links":{},"stock":{"item_id":1707,"product_id":1707,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xs-purple-1707.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1712","_score":1,"_source":{"id":1712,"sku":"WT03-M-Orange","name":"Nora Practice Tank-M-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nora-practice-tank-m-orange-1712","links":{},"stock":{"item_id":1712,"product_id":1712,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-m-orange-1712.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1708","_score":1,"_source":{"id":1708,"sku":"WT03-XS-Red","name":"Nora Practice Tank-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nora-practice-tank-xs-red-1708","links":{},"stock":{"item_id":1708,"product_id":1708,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xs-red-1708.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1701","_score":1,"_source":{"id":1701,"sku":"WT02-L-Yellow","name":"Zoe Tank-L-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoe-tank-l-yellow-1701","links":{},"stock":{"item_id":1701,"product_id":1701,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-l-yellow-1701.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1726","_score":1,"_source":{"id":1726,"sku":"WT04-S-Purple","name":"Nona Fitness Tank-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nona-fitness-tank-s-purple-1726","links":{},"stock":{"item_id":1726,"product_id":1726,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-s-purple-1726.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1704","_score":1,"_source":{"id":1704,"sku":"WT02-XL-Yellow","name":"Zoe Tank-XL-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoe-tank-xl-yellow-1704","links":{},"stock":{"item_id":1704,"product_id":1704,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xl-yellow-1704.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1714","_score":1,"_source":{"id":1714,"sku":"WT03-M-Red","name":"Nora Practice Tank-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nora-practice-tank-m-red-1714","links":{},"stock":{"item_id":1714,"product_id":1714,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-m-red-1714.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1717","_score":1,"_source":{"id":1717,"sku":"WT03-L-Red","name":"Nora Practice Tank-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nora-practice-tank-l-red-1717","links":{},"stock":{"item_id":1717,"product_id":1717,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-l-red-1717.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1722","_score":1,"_source":{"id":1722,"sku":"WT04-XS-Blue","name":"Nona Fitness Tank-XS-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nona-fitness-tank-xs-blue-1722","links":{},"stock":{"item_id":1722,"product_id":1722,"stock_id":1,"qty":73,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xs-blue-1722.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1743","_score":1,"_source":{"id":1743,"sku":"WT05-S-White","name":"Leah Yoga Top-S-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"leah-yoga-top-s-white-1743","links":{},"stock":{"item_id":1743,"product_id":1743,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-s-white-1743.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1748","_score":1,"_source":{"id":1748,"sku":"WT05-L-Purple","name":"Leah Yoga Top-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"leah-yoga-top-l-purple-1748","links":{},"stock":{"item_id":1748,"product_id":1748,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-l-purple-1748.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1749","_score":1,"_source":{"id":1749,"sku":"WT05-L-White","name":"Leah Yoga Top-L-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"leah-yoga-top-l-white-1749","links":{},"stock":{"item_id":1749,"product_id":1749,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-l-white-1749.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1821","_score":1,"_source":{"id":1821,"sku":"WP01-29-Black","name":"Karmen Yoga Pant-29-Black","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                            \n

                            • Light blue parachute pants.
                            • Power mesh internal waistband for support.
                            • Internal waistband pocket.
                            • Antimicrobial finish.

                            ","image":"/w/p/wp01-black_main.jpg","small_image":"/w/p/wp01-black_main.jpg","thumbnail":"/w/p/wp01-black_main.jpg","color":"49","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"karmen-yoga-pant-29-black-1821","links":{},"stock":{"item_id":1821,"product_id":1821,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-29-black-1821.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1840","_score":1,"_source":{"id":1840,"sku":"WP04-28-Blue","name":"Cora Parachute Pant-28-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                            \n

                            • Light blue parachute pants.
                            • Power mesh internal waistband for support.
                            • Internal waistband pocket.
                            • Antimicrobial finish.

                            ","image":"/w/p/wp04-blue_main.jpg","small_image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"cora-parachute-pant-28-blue-1840","links":{},"stock":{"item_id":1840,"product_id":1840,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-28-blue-1840.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1829","_score":1,"_source":{"id":1829,"sku":"WP02-29-Purple","name":"Emma Leggings-29-Purple","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                            \n

                            • Light blue heather yoga pants.
                            • Body hugging fit.
                            • Low rise fit.

                            ","image":"/w/p/wp02-purple_main.jpg","small_image":"/w/p/wp02-purple_main.jpg","thumbnail":"/w/p/wp02-purple_main.jpg","color":"57","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"emma-leggings-29-purple-1829","links":{},"stock":{"item_id":1829,"product_id":1829,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-29-purple-1829.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1837","_score":1,"_source":{"id":1837,"sku":"WP03-29-Purple","name":"Ida Workout Parachute Pant-29-Purple","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                            \n

                            • Royal blue parachute pants.
                            • Contrast stripe.
                            • Relaxed fit.
                            • Drawstring closure.
                            • Machine wash/dry.

                            ","image":"/w/p/wp03-purple_main.jpg","small_image":"/w/p/wp03-purple_main.jpg","thumbnail":"/w/p/wp03-purple_main.jpg","color":"57","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ida-workout-parachute-pant-29-purple-1837","links":{},"stock":{"item_id":1837,"product_id":1837,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-29-purple-1837.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1841","_score":1,"_source":{"id":1841,"sku":"WP04-28-White","name":"Cora Parachute Pant-28-White","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                            \n

                            • Light blue parachute pants.
                            • Power mesh internal waistband for support.
                            • Internal waistband pocket.
                            • Antimicrobial finish.

                            ","image":"/w/p/wp04-white_main.jpg","small_image":"/w/p/wp04-white_main.jpg","thumbnail":"/w/p/wp04-white_main.jpg","color":"59","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"cora-parachute-pant-28-white-1841","links":{},"stock":{"item_id":1841,"product_id":1841,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-28-white-1841.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1833","_score":1,"_source":{"id":1833,"sku":"WP03-28-Blue","name":"Ida Workout Parachute Pant-28-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                            \n

                            • Royal blue parachute pants.
                            • Contrast stripe.
                            • Relaxed fit.
                            • Drawstring closure.
                            • Machine wash/dry.

                            ","image":"/w/p/wp03-blue_main.jpg","small_image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","color":"50","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ida-workout-parachute-pant-28-blue-1833","links":{},"stock":{"item_id":1833,"product_id":1833,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-28-blue-1833.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1850","_score":1,"_source":{"id":1850,"sku":"WP05-29-Gray","name":"Sahara Leggings-29-Gray","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                            \n

                            • Pinstripe legging with rouched ankles.
                            • Secret pocket at waistband.
                            • Flat seams for comfort.
                            • Shaped fit with low rise.
                            • 4-way stretch, moisture-wicking material.

                            ","image":"/w/p/wp05-gray_main.jpg","small_image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","color":"52","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sahara-leggings-29-gray-1850","links":{},"stock":{"item_id":1850,"product_id":1850,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-29-gray-1850.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1830","_score":1,"_source":{"id":1830,"sku":"WP02-29-Red","name":"Emma Leggings-29-Red","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                            \n

                            • Light blue heather yoga pants.
                            • Body hugging fit.
                            • Low rise fit.

                            ","image":"/w/p/wp02-red_main.jpg","small_image":"/w/p/wp02-red_main.jpg","thumbnail":"/w/p/wp02-red_main.jpg","color":"58","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"emma-leggings-29-red-1830","links":{},"stock":{"item_id":1830,"product_id":1830,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-29-red-1830.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1843","_score":1,"_source":{"id":1843,"sku":"WP04-29-Blue","name":"Cora Parachute Pant-29-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                            \n

                            • Light blue parachute pants.
                            • Power mesh internal waistband for support.
                            • Internal waistband pocket.
                            • Antimicrobial finish.

                            ","image":"/w/p/wp04-blue_main.jpg","small_image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"cora-parachute-pant-29-blue-1843","links":{},"stock":{"item_id":1843,"product_id":1843,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-29-blue-1843.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1848","_score":1,"_source":{"id":1848,"sku":"WP05-28-Red","name":"Sahara Leggings-28-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                            \n

                            • Pinstripe legging with rouched ankles.
                            • Secret pocket at waistband.
                            • Flat seams for comfort.
                            • Shaped fit with low rise.
                            • 4-way stretch, moisture-wicking material.

                            ","image":"/w/p/wp05-red_main.jpg","small_image":"/w/p/wp05-red_main.jpg","thumbnail":"/w/p/wp05-red_main.jpg","color":"58","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sahara-leggings-28-red-1848","links":{},"stock":{"item_id":1848,"product_id":1848,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-28-red-1848.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1838","_score":1,"_source":{"id":1838,"sku":"WP03","name":"Ida Workout Parachute Pant","attribute_set_id":10,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                            \n

                            • Royal blue parachute pants.
                            • Contrast stripe.
                            • Relaxed fit.
                            • Drawstring closure.
                            • Machine wash/dry.

                            ","image":"/w/p/wp03-blue_main.jpg","small_image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ida-workout-parachute-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,37,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[110,115],"pattern":"195","climate":[205,212,206,208,209],"slug":"ida-workout-parachute-pant-1838","links":{},"stock":{"item_id":1838,"product_id":1838,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP03-28-Black","id":1832,"status":1,"name":"Ida Workout Parachute Pant-28-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","8","2"],"size":"172","color":"49","image":"/w/p/wp03-black_main.jpg","small_image":"/w/p/wp03-black_main.jpg","thumbnail":"/w/p/wp03-black_main.jpg","url_key":"ida-workout-parachute-pant-28-black","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP03-28-Blue","id":1833,"status":1,"name":"Ida Workout Parachute Pant-28-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","8","2"],"size":"172","color":"50","image":"/w/p/wp03-blue_main.jpg","small_image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","url_key":"ida-workout-parachute-pant-28-blue","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP03-28-Purple","id":1834,"status":1,"name":"Ida Workout Parachute Pant-28-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","8","2"],"size":"172","color":"57","image":"/w/p/wp03-purple_main.jpg","small_image":"/w/p/wp03-purple_main.jpg","thumbnail":"/w/p/wp03-purple_main.jpg","url_key":"ida-workout-parachute-pant-28-purple","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP03-29-Black","id":1835,"status":1,"name":"Ida Workout Parachute Pant-29-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","8","2"],"size":"173","color":"49","image":"/w/p/wp03-black_main.jpg","small_image":"/w/p/wp03-black_main.jpg","thumbnail":"/w/p/wp03-black_main.jpg","url_key":"ida-workout-parachute-pant-29-black","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP03-29-Blue","id":1836,"status":1,"name":"Ida Workout Parachute Pant-29-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","8","2"],"size":"173","color":"50","image":"/w/p/wp03-blue_main.jpg","small_image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","url_key":"ida-workout-parachute-pant-29-blue","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP03-29-Purple","id":1837,"status":1,"name":"Ida Workout Parachute Pant-29-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","8","2"],"size":"173","color":"57","image":"/w/p/wp03-purple_main.jpg","small_image":"/w/p/wp03-purple_main.jpg","thumbnail":"/w/p/wp03-purple_main.jpg","url_key":"ida-workout-parachute-pant-29-purple","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48}],"configurable_options":[{"id":251,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":1838,"attribute_code":"color"},{"id":250,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1838,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-1838.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1824","_score":1,"_source":{"id":1824,"sku":"WP01","name":"Karmen Yoga Pant","attribute_set_id":10,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                            \n

                            • Light blue parachute pants.
                            • Power mesh internal waistband for support.
                            • Internal waistband pocket.
                            • Antimicrobial finish.

                            ","image":"/w/p/wp01-gray_main.jpg","small_image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"karmen-yoga-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,154],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"113","pattern":"197","climate":[205,206],"slug":"karmen-yoga-pant-1824","links":{},"stock":{"item_id":1824,"product_id":1824,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp01-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP01-28-Black","id":1818,"status":1,"name":"Karmen Yoga Pant-28-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"49","image":"/w/p/wp01-black_main.jpg","small_image":"/w/p/wp01-black_main.jpg","thumbnail":"/w/p/wp01-black_main.jpg","url_key":"karmen-yoga-pant-28-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WP01-28-Gray","id":1819,"status":1,"name":"Karmen Yoga Pant-28-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"52","image":"/w/p/wp01-gray_main.jpg","small_image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","url_key":"karmen-yoga-pant-28-gray","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WP01-28-White","id":1820,"status":1,"name":"Karmen Yoga Pant-28-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"59","image":"/w/p/wp01-white_main.jpg","small_image":"/w/p/wp01-white_main.jpg","thumbnail":"/w/p/wp01-white_main.jpg","url_key":"karmen-yoga-pant-28-white","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WP01-29-Black","id":1821,"status":1,"name":"Karmen Yoga Pant-29-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"49","image":"/w/p/wp01-black_main.jpg","small_image":"/w/p/wp01-black_main.jpg","thumbnail":"/w/p/wp01-black_main.jpg","url_key":"karmen-yoga-pant-29-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WP01-29-Gray","id":1822,"status":1,"name":"Karmen Yoga Pant-29-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"52","image":"/w/p/wp01-gray_main.jpg","small_image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","url_key":"karmen-yoga-pant-29-gray","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WP01-29-White","id":1823,"status":1,"name":"Karmen Yoga Pant-29-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"59","image":"/w/p/wp01-white_main.jpg","small_image":"/w/p/wp01-white_main.jpg","thumbnail":"/w/p/wp01-white_main.jpg","url_key":"karmen-yoga-pant-29-white","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39}],"configurable_options":[{"id":247,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":59,"label":"White"}],"product_id":1824,"attribute_code":"color"},{"id":246,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1824,"attribute_code":"size"}],"color_options":[49,52,59],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-1824.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1817","_score":1,"_source":{"id":1817,"sku":"WT09","name":"Breathe-Easy Tank","attribute_set_id":9,"price":34,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                            \n

                            • Machine wash/dry.
                            • Cocona® fabric.

                            ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"breathe-easy-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,33],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[205,209],"slug":"breathe-easy-tank-1817","links":{},"stock":{"item_id":1817,"product_id":1817,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT09-XS-Purple","id":1802,"status":1,"name":"Breathe-Easy Tank-XS-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"167","color":"57","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","url_key":"breathe-easy-tank-xs-purple","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-XS-White","id":1803,"status":1,"name":"Breathe-Easy Tank-XS-White","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"167","color":"59","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","url_key":"breathe-easy-tank-xs-white","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-XS-Yellow","id":1804,"status":1,"name":"Breathe-Easy Tank-XS-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"167","color":"60","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","url_key":"breathe-easy-tank-xs-yellow","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-S-Purple","id":1805,"status":1,"name":"Breathe-Easy Tank-S-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"168","color":"57","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","url_key":"breathe-easy-tank-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WT09-S-White","id":1806,"status":1,"name":"Breathe-Easy Tank-S-White","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"168","color":"59","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","url_key":"breathe-easy-tank-s-white","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-S-Yellow","id":1807,"status":1,"name":"Breathe-Easy Tank-S-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"168","color":"60","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","url_key":"breathe-easy-tank-s-yellow","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-M-Purple","id":1808,"status":1,"name":"Breathe-Easy Tank-M-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"169","color":"57","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","url_key":"breathe-easy-tank-m-purple","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-M-White","id":1809,"status":1,"name":"Breathe-Easy Tank-M-White","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"169","color":"59","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","url_key":"breathe-easy-tank-m-white","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-M-Yellow","id":1810,"status":1,"name":"Breathe-Easy Tank-M-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"169","color":"60","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","url_key":"breathe-easy-tank-m-yellow","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-L-Purple","id":1811,"status":1,"name":"Breathe-Easy Tank-L-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"170","color":"57","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","url_key":"breathe-easy-tank-l-purple","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-L-White","id":1812,"status":1,"name":"Breathe-Easy Tank-L-White","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"170","color":"59","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","url_key":"breathe-easy-tank-l-white","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-L-Yellow","id":1813,"status":1,"name":"Breathe-Easy Tank-L-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"170","color":"60","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","url_key":"breathe-easy-tank-l-yellow","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-XL-Purple","id":1814,"status":1,"name":"Breathe-Easy Tank-XL-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"171","color":"57","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","url_key":"breathe-easy-tank-xl-purple","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-XL-White","id":1815,"status":1,"name":"Breathe-Easy Tank-XL-White","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"171","color":"59","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","url_key":"breathe-easy-tank-xl-white","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34},{"sku":"WT09-XL-Yellow","id":1816,"status":1,"name":"Breathe-Easy Tank-XL-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","34","2"],"size":"171","color":"60","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","url_key":"breathe-easy-tank-xl-yellow","msrp_display_actual_price_type":"0","final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34}],"configurable_options":[{"id":245,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":1817,"attribute_code":"color"},{"id":244,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1817,"attribute_code":"size"}],"color_options":[57,59,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-1817.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1801","_score":1,"_source":{"id":1801,"sku":"WT08","name":"Antonia Racer Tank","attribute_set_id":9,"price":34,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                            \n

                            • Machine wash.
                            • Line dry.

                            ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"antonia-racer-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[152,37,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[205,209],"slug":"antonia-racer-tank-1801","links":{},"stock":{"item_id":1801,"product_id":1801,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT08-XS-Black","id":1786,"status":1,"name":"Antonia Racer Tank-XS-Black","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"167","color":"49","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","url_key":"antonia-racer-tank-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WT08-XS-Purple","id":1787,"status":1,"name":"Antonia Racer Tank-XS-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"167","color":"57","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","url_key":"antonia-racer-tank-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WT08-XS-Yellow","id":1788,"status":1,"name":"Antonia Racer Tank-XS-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"167","color":"60","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","url_key":"antonia-racer-tank-xs-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT08-S-Black","id":1789,"status":1,"name":"Antonia Racer Tank-S-Black","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"168","color":"49","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","url_key":"antonia-racer-tank-s-black","msrp_display_actual_price_type":"0"},{"sku":"WT08-S-Purple","id":1790,"status":1,"name":"Antonia Racer Tank-S-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"168","color":"57","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","url_key":"antonia-racer-tank-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WT08-S-Yellow","id":1791,"status":1,"name":"Antonia Racer Tank-S-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"168","color":"60","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","url_key":"antonia-racer-tank-s-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT08-M-Black","id":1792,"status":1,"name":"Antonia Racer Tank-M-Black","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"169","color":"49","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","url_key":"antonia-racer-tank-m-black","msrp_display_actual_price_type":"0"},{"sku":"WT08-M-Purple","id":1793,"status":1,"name":"Antonia Racer Tank-M-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"169","color":"57","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","url_key":"antonia-racer-tank-m-purple","msrp_display_actual_price_type":"0"},{"sku":"WT08-M-Yellow","id":1794,"status":1,"name":"Antonia Racer Tank-M-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"169","color":"60","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","url_key":"antonia-racer-tank-m-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT08-L-Black","id":1795,"status":1,"name":"Antonia Racer Tank-L-Black","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"170","color":"49","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","url_key":"antonia-racer-tank-l-black","msrp_display_actual_price_type":"0"},{"sku":"WT08-L-Purple","id":1796,"status":1,"name":"Antonia Racer Tank-L-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"170","color":"57","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","url_key":"antonia-racer-tank-l-purple","msrp_display_actual_price_type":"0"},{"sku":"WT08-L-Yellow","id":1797,"status":1,"name":"Antonia Racer Tank-L-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"170","color":"60","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","url_key":"antonia-racer-tank-l-yellow","msrp_display_actual_price_type":"0"},{"sku":"WT08-XL-Black","id":1798,"status":1,"name":"Antonia Racer Tank-XL-Black","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"171","color":"49","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","url_key":"antonia-racer-tank-xl-black","msrp_display_actual_price_type":"0"},{"sku":"WT08-XL-Purple","id":1799,"status":1,"name":"Antonia Racer Tank-XL-Purple","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"171","color":"57","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","url_key":"antonia-racer-tank-xl-purple","msrp_display_actual_price_type":"0"},{"sku":"WT08-XL-Yellow","id":1800,"status":1,"name":"Antonia Racer Tank-XL-Yellow","price":34,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","35","2"],"size":"171","color":"60","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","url_key":"antonia-racer-tank-xl-yellow","msrp_display_actual_price_type":"0"}],"configurable_options":[{"id":243,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":57,"label":"Purple"},{"value_index":60,"label":"Yellow"}],"product_id":1801,"attribute_code":"color"},{"id":242,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1801,"attribute_code":"size"}],"color_options":[49,57,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-1801.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1831","_score":1,"_source":{"id":1831,"sku":"WP02","name":"Emma Leggings","attribute_set_id":10,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                            \n

                            • Light blue heather yoga pants.
                            • Body hugging fit.
                            • Low rise fit.

                            ","image":"/w/p/wp02-blue_main.jpg","small_image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"emma-leggings","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"113","pattern":"197","climate":[204,205,206,208],"slug":"emma-leggings-1831","links":{},"stock":{"item_id":1831,"product_id":1831,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp02-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP02-28-Blue","id":1825,"status":1,"name":"Emma Leggings-28-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"50","image":"/w/p/wp02-blue_main.jpg","small_image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","url_key":"emma-leggings-28-blue","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WP02-28-Purple","id":1826,"status":1,"name":"Emma Leggings-28-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"57","image":"/w/p/wp02-purple_main.jpg","small_image":"/w/p/wp02-purple_main.jpg","thumbnail":"/w/p/wp02-purple_main.jpg","url_key":"emma-leggings-28-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WP02-28-Red","id":1827,"status":1,"name":"Emma Leggings-28-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"58","image":"/w/p/wp02-red_main.jpg","small_image":"/w/p/wp02-red_main.jpg","thumbnail":"/w/p/wp02-red_main.jpg","url_key":"emma-leggings-28-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WP02-29-Blue","id":1828,"status":1,"name":"Emma Leggings-29-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"50","image":"/w/p/wp02-blue_main.jpg","small_image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","url_key":"emma-leggings-29-blue","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WP02-29-Purple","id":1829,"status":1,"name":"Emma Leggings-29-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"57","image":"/w/p/wp02-purple_main.jpg","small_image":"/w/p/wp02-purple_main.jpg","thumbnail":"/w/p/wp02-purple_main.jpg","url_key":"emma-leggings-29-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WP02-29-Red","id":1830,"status":1,"name":"Emma Leggings-29-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"58","image":"/w/p/wp02-red_main.jpg","small_image":"/w/p/wp02-red_main.jpg","thumbnail":"/w/p/wp02-red_main.jpg","url_key":"emma-leggings-29-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42}],"configurable_options":[{"id":249,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1831,"attribute_code":"color"},{"id":248,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1831,"attribute_code":"size"}],"color_options":[50,57,58],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-1831.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1845","_score":1,"_source":{"id":1845,"sku":"WP04","name":"Cora Parachute Pant","attribute_set_id":10,"price":75,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                            \n

                            • Light blue parachute pants.
                            • Power mesh internal waistband for support.
                            • Internal waistband pocket.
                            • Antimicrobial finish.

                            ","image":"/w/p/wp04-blue_main.jpg","small_image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cora-parachute-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,37,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[110,115],"pattern":"197","climate":[205,212,206,208,209],"slug":"cora-parachute-pant-1845","links":{},"stock":{"item_id":1845,"product_id":1845,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP04-28-Black","id":1839,"status":1,"name":"Cora Parachute Pant-28-Black","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"49","image":"/w/p/wp04-black_main.jpg","small_image":"/w/p/wp04-black_main.jpg","thumbnail":"/w/p/wp04-black_main.jpg","url_key":"cora-parachute-pant-28-black","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WP04-28-Blue","id":1840,"status":1,"name":"Cora Parachute Pant-28-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"50","image":"/w/p/wp04-blue_main.jpg","small_image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","url_key":"cora-parachute-pant-28-blue","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WP04-28-White","id":1841,"status":1,"name":"Cora Parachute Pant-28-White","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"59","image":"/w/p/wp04-white_main.jpg","small_image":"/w/p/wp04-white_main.jpg","thumbnail":"/w/p/wp04-white_main.jpg","url_key":"cora-parachute-pant-28-white","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WP04-29-Black","id":1842,"status":1,"name":"Cora Parachute Pant-29-Black","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"49","image":"/w/p/wp04-black_main.jpg","small_image":"/w/p/wp04-black_main.jpg","thumbnail":"/w/p/wp04-black_main.jpg","url_key":"cora-parachute-pant-29-black","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WP04-29-Blue","id":1843,"status":1,"name":"Cora Parachute Pant-29-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"50","image":"/w/p/wp04-blue_main.jpg","small_image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","url_key":"cora-parachute-pant-29-blue","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WP04-29-White","id":1844,"status":1,"name":"Cora Parachute Pant-29-White","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"59","image":"/w/p/wp04-white_main.jpg","small_image":"/w/p/wp04-white_main.jpg","thumbnail":"/w/p/wp04-white_main.jpg","url_key":"cora-parachute-pant-29-white","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75}],"configurable_options":[{"id":253,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":59,"label":"White"}],"product_id":1845,"attribute_code":"color"},{"id":252,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1845,"attribute_code":"size"}],"color_options":[49,50,59],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-1845.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1800","_score":1,"_source":{"id":1800,"sku":"WT08-XL-Yellow","name":"Antonia Racer Tank-XL-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                            \n

                            • Machine wash.
                            • Line dry.

                            ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"antonia-racer-tank-xl-yellow-1800","links":{},"stock":{"item_id":1800,"product_id":1800,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xl-yellow-1800.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1788","_score":1,"_source":{"id":1788,"sku":"WT08-XS-Yellow","name":"Antonia Racer Tank-XS-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                            \n

                            • Machine wash.
                            • Line dry.

                            ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"antonia-racer-tank-xs-yellow-1788","links":{},"stock":{"item_id":1788,"product_id":1788,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xs-yellow-1788.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1776","_score":1,"_source":{"id":1776,"sku":"WT07-M-Green","name":"Maya Tunic-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                            \n

                            • Mint green heather tunic-style tank.
                            • Wrapped back with cut out detail.
                            • Drawcord detail at end.
                            • Abutted seams.

                            ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"maya-tunic-m-green-1776","links":{},"stock":{"item_id":1776,"product_id":1776,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-m-green-1776.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1793","_score":1,"_source":{"id":1793,"sku":"WT08-M-Purple","name":"Antonia Racer Tank-M-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                            \n

                            • Machine wash.
                            • Line dry.

                            ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"antonia-racer-tank-m-purple-1793","links":{},"stock":{"item_id":1793,"product_id":1793,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-m-purple-1793.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1796","_score":1,"_source":{"id":1796,"sku":"WT08-L-Purple","name":"Antonia Racer Tank-L-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                            \n

                            • Machine wash.
                            • Line dry.

                            ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"antonia-racer-tank-l-purple-1796","links":{},"stock":{"item_id":1796,"product_id":1796,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-l-purple-1796.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1792","_score":1,"_source":{"id":1792,"sku":"WT08-M-Black","name":"Antonia Racer Tank-M-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                            \n

                            • Machine wash.
                            • Line dry.

                            ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"antonia-racer-tank-m-black-1792","links":{},"stock":{"item_id":1792,"product_id":1792,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-m-black-1792.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1798","_score":1,"_source":{"id":1798,"sku":"WT08-XL-Black","name":"Antonia Racer Tank-XL-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                            \n

                            • Machine wash.
                            • Line dry.

                            ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"antonia-racer-tank-xl-black-1798","links":{},"stock":{"item_id":1798,"product_id":1798,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xl-black-1798.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1769","_score":1,"_source":{"id":1769,"sku":"WT06","name":"Chloe Compete Tank","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:24","updated_at":"2018-08-22 10:34:49","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                            \r\n

                            • Royal blue tank top - nylon/spandex.
                            • Flatlock stitching.
                            • Moisture-wicking fabric.
                            • Ergonomic seaming.
                            • Machine wash/dry.

                            ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"1","has_options":"1","url_key":"chloe-compete-tank","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":[36,37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"chloe-compete-tank-1769","links":{},"stock":{"item_id":1769,"product_id":1769,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"configurable_children":[{"sku":"WT06-XS-Blue","id":1754,"status":1,"name":"Chloe Compete Tank-XS-Blue - tier price","price":39,"tier_prices":[{"customer_group_id":1,"qty":1,"value":30,"extension_attributes":{"website_id":0}}],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"50","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","url_key":"chloe-compete-tank-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WT06-XS-Red","id":1755,"status":1,"name":"Chloe Compete Tank-XS-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"58","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","url_key":"chloe-compete-tank-xs-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-XS-Yellow","id":1756,"status":1,"name":"Chloe Compete Tank-XS-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"60","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","url_key":"chloe-compete-tank-xs-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-S-Blue","id":1757,"status":1,"name":"Chloe Compete Tank-S-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"50","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","url_key":"chloe-compete-tank-s-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-S-Red","id":1758,"status":1,"name":"Chloe Compete Tank-S-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"58","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","url_key":"chloe-compete-tank-s-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-S-Yellow","id":1759,"status":1,"name":"Chloe Compete Tank-S-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"60","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","url_key":"chloe-compete-tank-s-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-M-Blue","id":1760,"status":1,"name":"Chloe Compete Tank-M-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"50","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","url_key":"chloe-compete-tank-m-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-M-Red","id":1761,"status":1,"name":"Chloe Compete Tank-M-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"58","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","url_key":"chloe-compete-tank-m-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-M-Yellow","id":1762,"status":1,"name":"Chloe Compete Tank-M-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"60","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","url_key":"chloe-compete-tank-m-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-L-Blue","id":1763,"status":1,"name":"Chloe Compete Tank-L-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"50","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","url_key":"chloe-compete-tank-l-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-L-Red","id":1764,"status":1,"name":"Chloe Compete Tank-L-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"58","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","url_key":"chloe-compete-tank-l-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-L-Yellow","id":1765,"status":1,"name":"Chloe Compete Tank-L-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"60","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","url_key":"chloe-compete-tank-l-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-XL-Blue","id":1766,"status":1,"name":"Chloe Compete Tank-XL-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"50","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","url_key":"chloe-compete-tank-xl-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-XL-Red","id":1767,"status":1,"name":"Chloe Compete Tank-XL-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"58","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","url_key":"chloe-compete-tank-xl-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT06-XL-Yellow","id":1768,"status":1,"name":"Chloe Compete Tank-XL-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"60","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","url_key":"chloe-compete-tank-xl-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39}],"configurable_options":[{"id":300,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":1769,"attribute_code":"color"},{"id":301,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1769,"attribute_code":"size"}],"color_options":[50,58,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-1769.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1785","_score":1,"_source":{"id":1785,"sku":"WT07","name":"Maya Tunic","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                            \n

                            • Mint green heather tunic-style tank.
                            • Wrapped back with cut out detail.
                            • Drawcord detail at end.
                            • Abutted seams.

                            ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"maya-tunic","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"maya-tunic-1785","links":{},"stock":{"item_id":1785,"product_id":1785,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT07-XS-Green","id":1770,"status":1,"name":"Maya Tunic-XS-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"167","color":"53","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","url_key":"maya-tunic-xs-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-XS-White","id":1771,"status":1,"name":"Maya Tunic-XS-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"167","color":"59","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","url_key":"maya-tunic-xs-white","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-XS-Yellow","id":1772,"status":1,"name":"Maya Tunic-XS-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"167","color":"60","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","url_key":"maya-tunic-xs-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-S-Green","id":1773,"status":1,"name":"Maya Tunic-S-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"168","color":"53","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","url_key":"maya-tunic-s-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-S-White","id":1774,"status":1,"name":"Maya Tunic-S-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"168","color":"59","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","url_key":"maya-tunic-s-white","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-S-Yellow","id":1775,"status":1,"name":"Maya Tunic-S-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"168","color":"60","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","url_key":"maya-tunic-s-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-M-Green","id":1776,"status":1,"name":"Maya Tunic-M-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"169","color":"53","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","url_key":"maya-tunic-m-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-M-White","id":1777,"status":1,"name":"Maya Tunic-M-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"169","color":"59","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","url_key":"maya-tunic-m-white","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-M-Yellow","id":1778,"status":1,"name":"Maya Tunic-M-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"169","color":"60","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","url_key":"maya-tunic-m-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-L-Green","id":1779,"status":1,"name":"Maya Tunic-L-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"170","color":"53","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","url_key":"maya-tunic-l-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-L-White","id":1780,"status":1,"name":"Maya Tunic-L-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"170","color":"59","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","url_key":"maya-tunic-l-white","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-L-Yellow","id":1781,"status":1,"name":"Maya Tunic-L-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"170","color":"60","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","url_key":"maya-tunic-l-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-XL-Green","id":1782,"status":1,"name":"Maya Tunic-XL-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"171","color":"53","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","url_key":"maya-tunic-xl-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-XL-White","id":1783,"status":1,"name":"Maya Tunic-XL-White","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"171","color":"59","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","url_key":"maya-tunic-xl-white","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WT07-XL-Yellow","id":1784,"status":1,"name":"Maya Tunic-XL-Yellow","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","35","2"],"size":"171","color":"60","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","url_key":"maya-tunic-xl-yellow","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":241,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":1785,"attribute_code":"color"},{"id":240,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1785,"attribute_code":"size"}],"color_options":[53,59,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-1785.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1753","_score":1,"_source":{"id":1753,"sku":"WT05","name":"Leah Yoga Top","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"leah-yoga-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[135,142],"pattern":"197","climate":[205,209],"slug":"leah-yoga-top-1753","links":{},"stock":{"item_id":1753,"product_id":1753,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WT05-XS-Orange","id":1738,"status":1,"name":"Leah Yoga Top-XS-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"167","color":"56","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","url_key":"leah-yoga-top-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WT05-XS-Purple","id":1739,"status":1,"name":"Leah Yoga Top-XS-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"167","color":"57","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","url_key":"leah-yoga-top-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WT05-XS-White","id":1740,"status":1,"name":"Leah Yoga Top-XS-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"167","color":"59","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","url_key":"leah-yoga-top-xs-white","msrp_display_actual_price_type":"0"},{"sku":"WT05-S-Orange","id":1741,"status":1,"name":"Leah Yoga Top-S-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"168","color":"56","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","url_key":"leah-yoga-top-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WT05-S-Purple","id":1742,"status":1,"name":"Leah Yoga Top-S-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"168","color":"57","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","url_key":"leah-yoga-top-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WT05-S-White","id":1743,"status":1,"name":"Leah Yoga Top-S-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"168","color":"59","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","url_key":"leah-yoga-top-s-white","msrp_display_actual_price_type":"0"},{"sku":"WT05-M-Orange","id":1744,"status":1,"name":"Leah Yoga Top-M-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"169","color":"56","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","url_key":"leah-yoga-top-m-orange","msrp_display_actual_price_type":"0"},{"sku":"WT05-M-Purple","id":1745,"status":1,"name":"Leah Yoga Top-M-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"169","color":"57","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","url_key":"leah-yoga-top-m-purple","msrp_display_actual_price_type":"0"},{"sku":"WT05-M-White","id":1746,"status":1,"name":"Leah Yoga Top-M-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"169","color":"59","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","url_key":"leah-yoga-top-m-white","msrp_display_actual_price_type":"0"},{"sku":"WT05-L-Orange","id":1747,"status":1,"name":"Leah Yoga Top-L-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"170","color":"56","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","url_key":"leah-yoga-top-l-orange","msrp_display_actual_price_type":"0"},{"sku":"WT05-L-Purple","id":1748,"status":1,"name":"Leah Yoga Top-L-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"170","color":"57","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","url_key":"leah-yoga-top-l-purple","msrp_display_actual_price_type":"0"},{"sku":"WT05-L-White","id":1749,"status":1,"name":"Leah Yoga Top-L-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"170","color":"59","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","url_key":"leah-yoga-top-l-white","msrp_display_actual_price_type":"0"},{"sku":"WT05-XL-Orange","id":1750,"status":1,"name":"Leah Yoga Top-XL-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"171","color":"56","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","url_key":"leah-yoga-top-xl-orange","msrp_display_actual_price_type":"0"},{"sku":"WT05-XL-Purple","id":1751,"status":1,"name":"Leah Yoga Top-XL-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"171","color":"57","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","url_key":"leah-yoga-top-xl-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WT05-XL-White","id":1752,"status":1,"name":"Leah Yoga Top-XL-White","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","34","2"],"size":"171","color":"59","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","url_key":"leah-yoga-top-xl-white","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39}],"configurable_options":[{"id":237,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"}],"product_id":1753,"attribute_code":"color"},{"id":236,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1753,"attribute_code":"size"}],"color_options":[56,57,59],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-1753.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1757","_score":1,"_source":{"id":1757,"sku":"WT06-S-Blue","name":"Chloe Compete Tank-S-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                            \n

                            • Royal blue tank top - nylon/spandex.
                            • Flatlock stitching.
                            • Moisture-wicking fabric.
                            • Ergonomic seaming.
                            • Machine wash/dry.

                            ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chloe-compete-tank-s-blue-1757","links":{},"stock":{"item_id":1757,"product_id":1757,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-s-blue-1757.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1765","_score":1,"_source":{"id":1765,"sku":"WT06-L-Yellow","name":"Chloe Compete Tank-L-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                            \n

                            • Royal blue tank top - nylon/spandex.
                            • Flatlock stitching.
                            • Moisture-wicking fabric.
                            • Ergonomic seaming.
                            • Machine wash/dry.

                            ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chloe-compete-tank-l-yellow-1765","links":{},"stock":{"item_id":1765,"product_id":1765,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-l-yellow-1765.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1752","_score":1,"_source":{"id":1752,"sku":"WT05-XL-White","name":"Leah Yoga Top-XL-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"leah-yoga-top-xl-white-1752","links":{},"stock":{"item_id":1752,"product_id":1752,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xl-white-1752.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1766","_score":1,"_source":{"id":1766,"sku":"WT06-XL-Blue","name":"Chloe Compete Tank-XL-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                            \n

                            • Royal blue tank top - nylon/spandex.
                            • Flatlock stitching.
                            • Moisture-wicking fabric.
                            • Ergonomic seaming.
                            • Machine wash/dry.

                            ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chloe-compete-tank-xl-blue-1766","links":{},"stock":{"item_id":1766,"product_id":1766,"stock_id":1,"qty":70,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xl-blue-1766.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1758","_score":1,"_source":{"id":1758,"sku":"WT06-S-Red","name":"Chloe Compete Tank-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                            \n

                            • Royal blue tank top - nylon/spandex.
                            • Flatlock stitching.
                            • Moisture-wicking fabric.
                            • Ergonomic seaming.
                            • Machine wash/dry.

                            ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chloe-compete-tank-s-red-1758","links":{},"stock":{"item_id":1758,"product_id":1758,"stock_id":1,"qty":32,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-s-red-1758.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1754","_score":1,"_source":{"id":1754,"sku":"WT06-XS-Blue","name":"Chloe Compete Tank-XS-Blue - tier price","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2018-08-22 09:33:22","weight":1,"product_links":[],"tier_prices":[{"customer_group_id":1,"qty":1,"value":30,"extension_attributes":{"website_id":0}}],"custom_attributes":null,"description":"

                            You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                            \r\n

                            • Royal blue tank top - nylon/spandex.
                            • Flatlock stitching.
                            • Moisture-wicking fabric.
                            • Ergonomic seaming.
                            • Machine wash/dry.

                            ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xs-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"167","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"chloe-compete-tank-xs-blue-tier-price-1754","links":{},"stock":{"item_id":1754,"product_id":1754,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-12-11 12:02:37","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xs-blue-tier-price-1754.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1770","_score":1,"_source":{"id":1770,"sku":"WT07-XS-Green","name":"Maya Tunic-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                            \n

                            • Mint green heather tunic-style tank.
                            • Wrapped back with cut out detail.
                            • Drawcord detail at end.
                            • Abutted seams.

                            ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"maya-tunic-xs-green-1770","links":{},"stock":{"item_id":1770,"product_id":1770,"stock_id":1,"qty":71,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xs-green-1770.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1763","_score":1,"_source":{"id":1763,"sku":"WT06-L-Blue","name":"Chloe Compete Tank-L-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                            \n

                            • Royal blue tank top - nylon/spandex.
                            • Flatlock stitching.
                            • Moisture-wicking fabric.
                            • Ergonomic seaming.
                            • Machine wash/dry.

                            ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chloe-compete-tank-l-blue-1763","links":{},"stock":{"item_id":1763,"product_id":1763,"stock_id":1,"qty":61,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-l-blue-1763.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1764","_score":1,"_source":{"id":1764,"sku":"WT06-L-Red","name":"Chloe Compete Tank-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                            \n

                            • Royal blue tank top - nylon/spandex.
                            • Flatlock stitching.
                            • Moisture-wicking fabric.
                            • Ergonomic seaming.
                            • Machine wash/dry.

                            ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chloe-compete-tank-l-red-1764","links":{},"stock":{"item_id":1764,"product_id":1764,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-l-red-1764.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1784","_score":1,"_source":{"id":1784,"sku":"WT07-XL-Yellow","name":"Maya Tunic-XL-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                            \n

                            • Mint green heather tunic-style tank.
                            • Wrapped back with cut out detail.
                            • Drawcord detail at end.
                            • Abutted seams.

                            ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"maya-tunic-xl-yellow-1784","links":{},"stock":{"item_id":1784,"product_id":1784,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xl-yellow-1784.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1761","_score":1,"_source":{"id":1761,"sku":"WT06-M-Red","name":"Chloe Compete Tank-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                            \n

                            • Royal blue tank top - nylon/spandex.
                            • Flatlock stitching.
                            • Moisture-wicking fabric.
                            • Ergonomic seaming.
                            • Machine wash/dry.

                            ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chloe-compete-tank-m-red-1761","links":{},"stock":{"item_id":1761,"product_id":1761,"stock_id":1,"qty":71,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-m-red-1761.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1768","_score":1,"_source":{"id":1768,"sku":"WT06-XL-Yellow","name":"Chloe Compete Tank-XL-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                            \n

                            • Royal blue tank top - nylon/spandex.
                            • Flatlock stitching.
                            • Moisture-wicking fabric.
                            • Ergonomic seaming.
                            • Machine wash/dry.

                            ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chloe-compete-tank-xl-yellow-1768","links":{},"stock":{"item_id":1768,"product_id":1768,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xl-yellow-1768.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1756","_score":1,"_source":{"id":1756,"sku":"WT06-XS-Yellow","name":"Chloe Compete Tank-XS-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                            \n

                            • Royal blue tank top - nylon/spandex.
                            • Flatlock stitching.
                            • Moisture-wicking fabric.
                            • Ergonomic seaming.
                            • Machine wash/dry.

                            ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chloe-compete-tank-xs-yellow-1756","links":{},"stock":{"item_id":1756,"product_id":1756,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xs-yellow-1756.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1751","_score":1,"_source":{"id":1751,"sku":"WT05-XL-Purple","name":"Leah Yoga Top-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"leah-yoga-top-xl-purple-1751","links":{},"stock":{"item_id":1751,"product_id":1751,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xl-purple-1751.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1773","_score":1,"_source":{"id":1773,"sku":"WT07-S-Green","name":"Maya Tunic-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                            \n

                            • Mint green heather tunic-style tank.
                            • Wrapped back with cut out detail.
                            • Drawcord detail at end.
                            • Abutted seams.

                            ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"maya-tunic-s-green-1773","links":{},"stock":{"item_id":1773,"product_id":1773,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-s-green-1773.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1791","_score":1,"_source":{"id":1791,"sku":"WT08-S-Yellow","name":"Antonia Racer Tank-S-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                            \n

                            • Machine wash.
                            • Line dry.

                            ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"antonia-racer-tank-s-yellow-1791","links":{},"stock":{"item_id":1791,"product_id":1791,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-s-yellow-1791.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1760","_score":1,"_source":{"id":1760,"sku":"WT06-M-Blue","name":"Chloe Compete Tank-M-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                            \n

                            • Royal blue tank top - nylon/spandex.
                            • Flatlock stitching.
                            • Moisture-wicking fabric.
                            • Ergonomic seaming.
                            • Machine wash/dry.

                            ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chloe-compete-tank-m-blue-1760","links":{},"stock":{"item_id":1760,"product_id":1760,"stock_id":1,"qty":3,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-m-blue-1760.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1775","_score":1,"_source":{"id":1775,"sku":"WT07-S-Yellow","name":"Maya Tunic-S-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                            \n

                            • Mint green heather tunic-style tank.
                            • Wrapped back with cut out detail.
                            • Drawcord detail at end.
                            • Abutted seams.

                            ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"maya-tunic-s-yellow-1775","links":{},"stock":{"item_id":1775,"product_id":1775,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-s-yellow-1775.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1772","_score":1,"_source":{"id":1772,"sku":"WT07-XS-Yellow","name":"Maya Tunic-XS-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                            \n

                            • Mint green heather tunic-style tank.
                            • Wrapped back with cut out detail.
                            • Drawcord detail at end.
                            • Abutted seams.

                            ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"maya-tunic-xs-yellow-1772","links":{},"stock":{"item_id":1772,"product_id":1772,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xs-yellow-1772.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1795","_score":1,"_source":{"id":1795,"sku":"WT08-L-Black","name":"Antonia Racer Tank-L-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                            \n

                            • Machine wash.
                            • Line dry.

                            ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"antonia-racer-tank-l-black-1795","links":{},"stock":{"item_id":1795,"product_id":1795,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-l-black-1795.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1780","_score":1,"_source":{"id":1780,"sku":"WT07-L-White","name":"Maya Tunic-L-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                            \n

                            • Mint green heather tunic-style tank.
                            • Wrapped back with cut out detail.
                            • Drawcord detail at end.
                            • Abutted seams.

                            ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"maya-tunic-l-white-1780","links":{},"stock":{"item_id":1780,"product_id":1780,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-l-white-1780.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1778","_score":1,"_source":{"id":1778,"sku":"WT07-M-Yellow","name":"Maya Tunic-M-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                            \n

                            • Mint green heather tunic-style tank.
                            • Wrapped back with cut out detail.
                            • Drawcord detail at end.
                            • Abutted seams.

                            ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"maya-tunic-m-yellow-1778","links":{},"stock":{"item_id":1778,"product_id":1778,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-m-yellow-1778.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1759","_score":1,"_source":{"id":1759,"sku":"WT06-S-Yellow","name":"Chloe Compete Tank-S-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                            \n

                            • Royal blue tank top - nylon/spandex.
                            • Flatlock stitching.
                            • Moisture-wicking fabric.
                            • Ergonomic seaming.
                            • Machine wash/dry.

                            ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chloe-compete-tank-s-yellow-1759","links":{},"stock":{"item_id":1759,"product_id":1759,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-s-yellow-1759.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1771","_score":1,"_source":{"id":1771,"sku":"WT07-XS-White","name":"Maya Tunic-XS-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                            \n

                            • Mint green heather tunic-style tank.
                            • Wrapped back with cut out detail.
                            • Drawcord detail at end.
                            • Abutted seams.

                            ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"maya-tunic-xs-white-1771","links":{},"stock":{"item_id":1771,"product_id":1771,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xs-white-1771.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1797","_score":1,"_source":{"id":1797,"sku":"WT08-L-Yellow","name":"Antonia Racer Tank-L-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                            \n

                            • Machine wash.
                            • Line dry.

                            ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"antonia-racer-tank-l-yellow-1797","links":{},"stock":{"item_id":1797,"product_id":1797,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-l-yellow-1797.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1781","_score":1,"_source":{"id":1781,"sku":"WT07-L-Yellow","name":"Maya Tunic-L-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                            \n

                            • Mint green heather tunic-style tank.
                            • Wrapped back with cut out detail.
                            • Drawcord detail at end.
                            • Abutted seams.

                            ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"maya-tunic-l-yellow-1781","links":{},"stock":{"item_id":1781,"product_id":1781,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-l-yellow-1781.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1816","_score":1,"_source":{"id":1816,"sku":"WT09-XL-Yellow","name":"Breathe-Easy Tank-XL-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                            \n

                            • Machine wash/dry.
                            • Cocona® fabric.

                            ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"breathe-easy-tank-xl-yellow-1816","links":{},"stock":{"item_id":1816,"product_id":1816,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xl-yellow-1816.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1808","_score":1,"_source":{"id":1808,"sku":"WT09-M-Purple","name":"Breathe-Easy Tank-M-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                            \n

                            • Machine wash/dry.
                            • Cocona® fabric.

                            ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"breathe-easy-tank-m-purple-1808","links":{},"stock":{"item_id":1808,"product_id":1808,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-m-purple-1808.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1812","_score":1,"_source":{"id":1812,"sku":"WT09-L-White","name":"Breathe-Easy Tank-L-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                            \n

                            • Machine wash/dry.
                            • Cocona® fabric.

                            ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"breathe-easy-tank-l-white-1812","links":{},"stock":{"item_id":1812,"product_id":1812,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-l-white-1812.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1805","_score":1,"_source":{"id":1805,"sku":"WT09-S-Purple","name":"Breathe-Easy Tank-S-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                            \n

                            • Machine wash/dry.
                            • Cocona® fabric.

                            ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"breathe-easy-tank-s-purple-1805","links":{},"stock":{"item_id":1805,"product_id":1805,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-03-06 13:46:27","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-s-purple-1805.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1836","_score":1,"_source":{"id":1836,"sku":"WP03-29-Blue","name":"Ida Workout Parachute Pant-29-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                            \n

                            • Royal blue parachute pants.
                            • Contrast stripe.
                            • Relaxed fit.
                            • Drawstring closure.
                            • Machine wash/dry.

                            ","image":"/w/p/wp03-blue_main.jpg","small_image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","color":"50","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ida-workout-parachute-pant-29-blue-1836","links":{},"stock":{"item_id":1836,"product_id":1836,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-29-blue-1836.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1820","_score":1,"_source":{"id":1820,"sku":"WP01-28-White","name":"Karmen Yoga Pant-28-White","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                            \n

                            • Light blue parachute pants.
                            • Power mesh internal waistband for support.
                            • Internal waistband pocket.
                            • Antimicrobial finish.

                            ","image":"/w/p/wp01-white_main.jpg","small_image":"/w/p/wp01-white_main.jpg","thumbnail":"/w/p/wp01-white_main.jpg","color":"59","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"karmen-yoga-pant-28-white-1820","links":{},"stock":{"item_id":1820,"product_id":1820,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-28-white-1820.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1806","_score":1,"_source":{"id":1806,"sku":"WT09-S-White","name":"Breathe-Easy Tank-S-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                            \n

                            • Machine wash/dry.
                            • Cocona® fabric.

                            ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"breathe-easy-tank-s-white-1806","links":{},"stock":{"item_id":1806,"product_id":1806,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-s-white-1806.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1826","_score":1,"_source":{"id":1826,"sku":"WP02-28-Purple","name":"Emma Leggings-28-Purple","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                            \n

                            • Light blue heather yoga pants.
                            • Body hugging fit.
                            • Low rise fit.

                            ","image":"/w/p/wp02-purple_main.jpg","small_image":"/w/p/wp02-purple_main.jpg","thumbnail":"/w/p/wp02-purple_main.jpg","color":"57","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"emma-leggings-28-purple-1826","links":{},"stock":{"item_id":1826,"product_id":1826,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-28-purple-1826.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1818","_score":1,"_source":{"id":1818,"sku":"WP01-28-Black","name":"Karmen Yoga Pant-28-Black","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                            \n

                            • Light blue parachute pants.
                            • Power mesh internal waistband for support.
                            • Internal waistband pocket.
                            • Antimicrobial finish.

                            ","image":"/w/p/wp01-black_main.jpg","small_image":"/w/p/wp01-black_main.jpg","thumbnail":"/w/p/wp01-black_main.jpg","color":"49","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"karmen-yoga-pant-28-black-1818","links":{},"stock":{"item_id":1818,"product_id":1818,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-28-black-1818.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1822","_score":1,"_source":{"id":1822,"sku":"WP01-29-Gray","name":"Karmen Yoga Pant-29-Gray","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                            \n

                            • Light blue parachute pants.
                            • Power mesh internal waistband for support.
                            • Internal waistband pocket.
                            • Antimicrobial finish.

                            ","image":"/w/p/wp01-gray_main.jpg","small_image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","color":"52","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"karmen-yoga-pant-29-gray-1822","links":{},"stock":{"item_id":1822,"product_id":1822,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp01-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-29-gray-1822.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1814","_score":1,"_source":{"id":1814,"sku":"WT09-XL-Purple","name":"Breathe-Easy Tank-XL-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                            \n

                            • Machine wash/dry.
                            • Cocona® fabric.

                            ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"breathe-easy-tank-xl-purple-1814","links":{},"stock":{"item_id":1814,"product_id":1814,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xl-purple-1814.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1810","_score":1,"_source":{"id":1810,"sku":"WT09-M-Yellow","name":"Breathe-Easy Tank-M-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                            \n

                            • Machine wash/dry.
                            • Cocona® fabric.

                            ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"breathe-easy-tank-m-yellow-1810","links":{},"stock":{"item_id":1810,"product_id":1810,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-m-yellow-1810.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1832","_score":1,"_source":{"id":1832,"sku":"WP03-28-Black","name":"Ida Workout Parachute Pant-28-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                            \n

                            • Royal blue parachute pants.
                            • Contrast stripe.
                            • Relaxed fit.
                            • Drawstring closure.
                            • Machine wash/dry.

                            ","image":"/w/p/wp03-black_main.jpg","small_image":"/w/p/wp03-black_main.jpg","thumbnail":"/w/p/wp03-black_main.jpg","color":"49","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ida-workout-parachute-pant-28-black-1832","links":{},"stock":{"item_id":1832,"product_id":1832,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-28-black-1832.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1825","_score":1,"_source":{"id":1825,"sku":"WP02-28-Blue","name":"Emma Leggings-28-Blue","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                            \n

                            • Light blue heather yoga pants.
                            • Body hugging fit.
                            • Low rise fit.

                            ","image":"/w/p/wp02-blue_main.jpg","small_image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"emma-leggings-28-blue-1825","links":{},"stock":{"item_id":1825,"product_id":1825,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp02-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-28-blue-1825.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1823","_score":1,"_source":{"id":1823,"sku":"WP01-29-White","name":"Karmen Yoga Pant-29-White","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                            \n

                            • Light blue parachute pants.
                            • Power mesh internal waistband for support.
                            • Internal waistband pocket.
                            • Antimicrobial finish.

                            ","image":"/w/p/wp01-white_main.jpg","small_image":"/w/p/wp01-white_main.jpg","thumbnail":"/w/p/wp01-white_main.jpg","color":"59","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"karmen-yoga-pant-29-white-1823","links":{},"stock":{"item_id":1823,"product_id":1823,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-29-white-1823.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1802","_score":1,"_source":{"id":1802,"sku":"WT09-XS-Purple","name":"Breathe-Easy Tank-XS-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                            \n

                            • Machine wash/dry.
                            • Cocona® fabric.

                            ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"breathe-easy-tank-xs-purple-1802","links":{},"stock":{"item_id":1802,"product_id":1802,"stock_id":1,"qty":41,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xs-purple-1802.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1834","_score":1,"_source":{"id":1834,"sku":"WP03-28-Purple","name":"Ida Workout Parachute Pant-28-Purple","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                            \n

                            • Royal blue parachute pants.
                            • Contrast stripe.
                            • Relaxed fit.
                            • Drawstring closure.
                            • Machine wash/dry.

                            ","image":"/w/p/wp03-purple_main.jpg","small_image":"/w/p/wp03-purple_main.jpg","thumbnail":"/w/p/wp03-purple_main.jpg","color":"57","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ida-workout-parachute-pant-28-purple-1834","links":{},"stock":{"item_id":1834,"product_id":1834,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-28-purple-1834.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1849","_score":1,"_source":{"id":1849,"sku":"WP05-29-Blue","name":"Sahara Leggings-29-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                            \n

                            • Pinstripe legging with rouched ankles.
                            • Secret pocket at waistband.
                            • Flat seams for comfort.
                            • Shaped fit with low rise.
                            • 4-way stretch, moisture-wicking material.

                            ","image":"/w/p/wp05-blue_main.jpg","small_image":"/w/p/wp05-blue_main.jpg","thumbnail":"/w/p/wp05-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sahara-leggings-29-blue-1849","links":{},"stock":{"item_id":1849,"product_id":1849,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-29-blue-1849.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1815","_score":1,"_source":{"id":1815,"sku":"WT09-XL-White","name":"Breathe-Easy Tank-XL-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                            \n

                            • Machine wash/dry.
                            • Cocona® fabric.

                            ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"breathe-easy-tank-xl-white-1815","links":{},"stock":{"item_id":1815,"product_id":1815,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xl-white-1815.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1827","_score":1,"_source":{"id":1827,"sku":"WP02-28-Red","name":"Emma Leggings-28-Red","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                            \n

                            • Light blue heather yoga pants.
                            • Body hugging fit.
                            • Low rise fit.

                            ","image":"/w/p/wp02-red_main.jpg","small_image":"/w/p/wp02-red_main.jpg","thumbnail":"/w/p/wp02-red_main.jpg","color":"58","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"emma-leggings-28-red-1827","links":{},"stock":{"item_id":1827,"product_id":1827,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-28-red-1827.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1813","_score":1,"_source":{"id":1813,"sku":"WT09-L-Yellow","name":"Breathe-Easy Tank-L-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                            \n

                            • Machine wash/dry.
                            • Cocona® fabric.

                            ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"breathe-easy-tank-l-yellow-1813","links":{},"stock":{"item_id":1813,"product_id":1813,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-l-yellow-1813.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1819","_score":1,"_source":{"id":1819,"sku":"WP01-28-Gray","name":"Karmen Yoga Pant-28-Gray","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                            \n

                            • Light blue parachute pants.
                            • Power mesh internal waistband for support.
                            • Internal waistband pocket.
                            • Antimicrobial finish.

                            ","image":"/w/p/wp01-gray_main.jpg","small_image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","color":"52","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"karmen-yoga-pant-28-gray-1819","links":{},"stock":{"item_id":1819,"product_id":1819,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp01-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-28-gray-1819.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1847","_score":1,"_source":{"id":1847,"sku":"WP05-28-Gray","name":"Sahara Leggings-28-Gray","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                            \n

                            • Pinstripe legging with rouched ankles.
                            • Secret pocket at waistband.
                            • Flat seams for comfort.
                            • Shaped fit with low rise.
                            • 4-way stretch, moisture-wicking material.

                            ","image":"/w/p/wp05-gray_main.jpg","small_image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","color":"52","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sahara-leggings-28-gray-1847","links":{},"stock":{"item_id":1847,"product_id":1847,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-28-gray-1847.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1835","_score":1,"_source":{"id":1835,"sku":"WP03-29-Black","name":"Ida Workout Parachute Pant-29-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                            \n

                            • Royal blue parachute pants.
                            • Contrast stripe.
                            • Relaxed fit.
                            • Drawstring closure.
                            • Machine wash/dry.

                            ","image":"/w/p/wp03-black_main.jpg","small_image":"/w/p/wp03-black_main.jpg","thumbnail":"/w/p/wp03-black_main.jpg","color":"49","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ida-workout-parachute-pant-29-black-1835","links":{},"stock":{"item_id":1835,"product_id":1835,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-29-black-1835.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1846","_score":1,"_source":{"id":1846,"sku":"WP05-28-Blue","name":"Sahara Leggings-28-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                            \n

                            • Pinstripe legging with rouched ankles.
                            • Secret pocket at waistband.
                            • Flat seams for comfort.
                            • Shaped fit with low rise.
                            • 4-way stretch, moisture-wicking material.

                            ","image":"/w/p/wp05-blue_main.jpg","small_image":"/w/p/wp05-blue_main.jpg","thumbnail":"/w/p/wp05-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sahara-leggings-28-blue-1846","links":{},"stock":{"item_id":1846,"product_id":1846,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-28-blue-1846.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1828","_score":1,"_source":{"id":1828,"sku":"WP02-29-Blue","name":"Emma Leggings-29-Blue","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                            \n

                            • Light blue heather yoga pants.
                            • Body hugging fit.
                            • Low rise fit.

                            ","image":"/w/p/wp02-blue_main.jpg","small_image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"emma-leggings-29-blue-1828","links":{},"stock":{"item_id":1828,"product_id":1828,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp02-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-29-blue-1828.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1844","_score":1,"_source":{"id":1844,"sku":"WP04-29-White","name":"Cora Parachute Pant-29-White","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                            \n

                            • Light blue parachute pants.
                            • Power mesh internal waistband for support.
                            • Internal waistband pocket.
                            • Antimicrobial finish.

                            ","image":"/w/p/wp04-white_main.jpg","small_image":"/w/p/wp04-white_main.jpg","thumbnail":"/w/p/wp04-white_main.jpg","color":"59","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"cora-parachute-pant-29-white-1844","links":{},"stock":{"item_id":1844,"product_id":1844,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-29-white-1844.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1839","_score":1,"_source":{"id":1839,"sku":"WP04-28-Black","name":"Cora Parachute Pant-28-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                            \n

                            • Light blue parachute pants.
                            • Power mesh internal waistband for support.
                            • Internal waistband pocket.
                            • Antimicrobial finish.

                            ","image":"/w/p/wp04-black_main.jpg","small_image":"/w/p/wp04-black_main.jpg","thumbnail":"/w/p/wp04-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"cora-parachute-pant-28-black-1839","links":{},"stock":{"item_id":1839,"product_id":1839,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-28-black-1839.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1842","_score":1,"_source":{"id":1842,"sku":"WP04-29-Black","name":"Cora Parachute Pant-29-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                            \n

                            • Light blue parachute pants.
                            • Power mesh internal waistband for support.
                            • Internal waistband pocket.
                            • Antimicrobial finish.

                            ","image":"/w/p/wp04-black_main.jpg","small_image":"/w/p/wp04-black_main.jpg","thumbnail":"/w/p/wp04-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"cora-parachute-pant-29-black-1842","links":{},"stock":{"item_id":1842,"product_id":1842,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-29-black-1842.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1789","_score":1,"_source":{"id":1789,"sku":"WT08-S-Black","name":"Antonia Racer Tank-S-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                            \n

                            • Machine wash.
                            • Line dry.

                            ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"antonia-racer-tank-s-black-1789","links":{},"stock":{"item_id":1789,"product_id":1789,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-s-black-1789.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1767","_score":1,"_source":{"id":1767,"sku":"WT06-XL-Red","name":"Chloe Compete Tank-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                            \n

                            • Royal blue tank top - nylon/spandex.
                            • Flatlock stitching.
                            • Moisture-wicking fabric.
                            • Ergonomic seaming.
                            • Machine wash/dry.

                            ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chloe-compete-tank-xl-red-1767","links":{},"stock":{"item_id":1767,"product_id":1767,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xl-red-1767.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1782","_score":1,"_source":{"id":1782,"sku":"WT07-XL-Green","name":"Maya Tunic-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                            \n

                            • Mint green heather tunic-style tank.
                            • Wrapped back with cut out detail.
                            • Drawcord detail at end.
                            • Abutted seams.

                            ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"maya-tunic-xl-green-1782","links":{},"stock":{"item_id":1782,"product_id":1782,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xl-green-1782.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1790","_score":1,"_source":{"id":1790,"sku":"WT08-S-Purple","name":"Antonia Racer Tank-S-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                            \n

                            • Machine wash.
                            • Line dry.

                            ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"antonia-racer-tank-s-purple-1790","links":{},"stock":{"item_id":1790,"product_id":1790,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-s-purple-1790.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1774","_score":1,"_source":{"id":1774,"sku":"WT07-S-White","name":"Maya Tunic-S-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                            \n

                            • Mint green heather tunic-style tank.
                            • Wrapped back with cut out detail.
                            • Drawcord detail at end.
                            • Abutted seams.

                            ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"maya-tunic-s-white-1774","links":{},"stock":{"item_id":1774,"product_id":1774,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-s-white-1774.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1777","_score":1,"_source":{"id":1777,"sku":"WT07-M-White","name":"Maya Tunic-M-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                            \n

                            • Mint green heather tunic-style tank.
                            • Wrapped back with cut out detail.
                            • Drawcord detail at end.
                            • Abutted seams.

                            ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"maya-tunic-m-white-1777","links":{},"stock":{"item_id":1777,"product_id":1777,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-m-white-1777.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1779","_score":1,"_source":{"id":1779,"sku":"WT07-L-Green","name":"Maya Tunic-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                            \n

                            • Mint green heather tunic-style tank.
                            • Wrapped back with cut out detail.
                            • Drawcord detail at end.
                            • Abutted seams.

                            ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"maya-tunic-l-green-1779","links":{},"stock":{"item_id":1779,"product_id":1779,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-l-green-1779.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1799","_score":1,"_source":{"id":1799,"sku":"WT08-XL-Purple","name":"Antonia Racer Tank-XL-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                            \n

                            • Machine wash.
                            • Line dry.

                            ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"antonia-racer-tank-xl-purple-1799","links":{},"stock":{"item_id":1799,"product_id":1799,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xl-purple-1799.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1786","_score":1,"_source":{"id":1786,"sku":"WT08-XS-Black","name":"Antonia Racer Tank-XS-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                            \n

                            • Machine wash.
                            • Line dry.

                            ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"antonia-racer-tank-xs-black-1786","links":{},"stock":{"item_id":1786,"product_id":1786,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-03-30 21:09:00","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xs-black-1786.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1794","_score":1,"_source":{"id":1794,"sku":"WT08-M-Yellow","name":"Antonia Racer Tank-M-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                            \n

                            • Machine wash.
                            • Line dry.

                            ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"antonia-racer-tank-m-yellow-1794","links":{},"stock":{"item_id":1794,"product_id":1794,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-m-yellow-1794.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1787","_score":1,"_source":{"id":1787,"sku":"WT08-XS-Purple","name":"Antonia Racer Tank-XS-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                            \n

                            • Machine wash.
                            • Line dry.

                            ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"antonia-racer-tank-xs-purple-1787","links":{},"stock":{"item_id":1787,"product_id":1787,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xs-purple-1787.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1807","_score":1,"_source":{"id":1807,"sku":"WT09-S-Yellow","name":"Breathe-Easy Tank-S-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                            \n

                            • Machine wash/dry.
                            • Cocona® fabric.

                            ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"breathe-easy-tank-s-yellow-1807","links":{},"stock":{"item_id":1807,"product_id":1807,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-s-yellow-1807.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1803","_score":1,"_source":{"id":1803,"sku":"WT09-XS-White","name":"Breathe-Easy Tank-XS-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                            \n

                            • Machine wash/dry.
                            • Cocona® fabric.

                            ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"breathe-easy-tank-xs-white-1803","links":{},"stock":{"item_id":1803,"product_id":1803,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xs-white-1803.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1804","_score":1,"_source":{"id":1804,"sku":"WT09-XS-Yellow","name":"Breathe-Easy Tank-XS-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                            \n

                            • Machine wash/dry.
                            • Cocona® fabric.

                            ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"breathe-easy-tank-xs-yellow-1804","links":{},"stock":{"item_id":1804,"product_id":1804,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xs-yellow-1804.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1809","_score":1,"_source":{"id":1809,"sku":"WT09-M-White","name":"Breathe-Easy Tank-M-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                            \n

                            • Machine wash/dry.
                            • Cocona® fabric.

                            ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"breathe-easy-tank-m-white-1809","links":{},"stock":{"item_id":1809,"product_id":1809,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-m-white-1809.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1811","_score":1,"_source":{"id":1811,"sku":"WT09-L-Purple","name":"Breathe-Easy Tank-L-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                            The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                            \n

                            • Machine wash/dry.
                            • Cocona® fabric.

                            ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"breathe-easy-tank-l-purple-1811","links":{},"stock":{"item_id":1811,"product_id":1811,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-l-purple-1811.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1755","_score":1,"_source":{"id":1755,"sku":"WT06-XS-Red","name":"Chloe Compete Tank-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                            \n

                            • Royal blue tank top - nylon/spandex.
                            • Flatlock stitching.
                            • Moisture-wicking fabric.
                            • Ergonomic seaming.
                            • Machine wash/dry.

                            ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chloe-compete-tank-xs-red-1755","links":{},"stock":{"item_id":1755,"product_id":1755,"stock_id":1,"qty":30,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xs-red-1755.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1783","_score":1,"_source":{"id":1783,"sku":"WT07-XL-White","name":"Maya Tunic-XL-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                            \n

                            • Mint green heather tunic-style tank.
                            • Wrapped back with cut out detail.
                            • Drawcord detail at end.
                            • Abutted seams.

                            ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"maya-tunic-xl-white-1783","links":{},"stock":{"item_id":1783,"product_id":1783,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xl-white-1783.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1762","_score":1,"_source":{"id":1762,"sku":"WT06-M-Yellow","name":"Chloe Compete Tank-M-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                            \n

                            • Royal blue tank top - nylon/spandex.
                            • Flatlock stitching.
                            • Moisture-wicking fabric.
                            • Ergonomic seaming.
                            • Machine wash/dry.

                            ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chloe-compete-tank-m-yellow-1762","links":{},"stock":{"item_id":1762,"product_id":1762,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-m-yellow-1762.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"54","_score":1,"_source":{"id":54,"sku":"MH01-XS-Orange","name":"Chaz Kangeroo Hoodie-XS-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                            \n

                            • Two-tone gray heather hoodie.
                            • Drawstring-adjustable hood.
                            • Machine wash/dry.

                            ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chaz-kangeroo-hoodie-xs-orange-54","links":{},"stock":{"item_id":54,"product_id":54,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xs-orange-54.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"51","_score":1,"_source":{"id":51,"sku":"240-LV09","name":"Luma Yoga For Life","attribute_set_id":14,"price":10,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:34","updated_at":"2019-05-16 19:49:54","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":10,"max_price":10,"max_regular_price":10,"minimal_regular_price":10,"special_price":null,"minimal_price":10,"regular_price":10,"description":"
                            • Increase strength + flexibility + metabolism
                            • Burn calories + feel great
                            • Gain energy + youthfulness + mental wellness

                            Download description

                            Tone up mind and bodyPro Yoga Instructor and Master Practitioner Marie Peale helps tone and sculpt your physique with her invigorating yet gentle approach.

                            You'll learn to use yoga to relax, control stress and increase your calorie-burning capacity, all while exploring traditional and new yoga poses that lengthen and strengthen your full muscular structure.

                            • Easy download
                            • Audio options: Music and instruction or instruction only
                            • Heart rate techniques explained
                            • Breathing techniques explained
                            • Move through exercises at your own pace

                            Two 25-minute workout episodes and one 40-minute workout episode with warm-up and cool down:

                            Episode 1Creative, fun session geared toward opening your lungs. Combines stretching and breathing with a focus on hips and shoulders.

                            Episode 2Ramp up the tempo and energy with calorie-burning flows. A stimulating workout introducing the body-sculpting power of yoga.

                            Episode 3Push your fitness reach and stamina with an intense series of standing and floor exercises and poses. End this extra-length session with a meditative cool down.

                            instructor bio

                            About MarieMarie is a trained martial artist and dancer with a BS in Biological Engineering and over 10 years as a certified yoga teacher. Marie has studied yoga in England, India and, in 2009, at the Ashraqat Ashram Yoga Farm in the United States. She has been teaching full time since then. Her focus on strength and wellness combines a deep knowledge of human biology and motivation guided by unconditional love for her audience.

                            ","short_description":"

                            \r\nLuma founder Erin Renny on yoga and longevity: \"I won't promise you'll live longer with yoga. No one can promise that. But your life will be healthier, less stressful, and more physically in tune when you focus on connecting your mind and body or a regular basis. Yoga is my favorite way to express this connection. I want to share the secrets of lifelong yoga with anyone willing to breathe and learn with me.\"\r\n

                            ","meta_description":"You'll learn to use yoga to relax, control stress and increase your calorie-burning capacity, all while exploring traditional and new yoga poses that lengthen and strengthen your full muscular structure.","image":"/l/t/lt06.jpg","small_image":"/l/t/lt06.jpg","thumbnail":"/l/t/lt06.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"luma-yoga-for-life","msrp_display_actual_price_type":"0","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","gift_message_available":"0","tax_class_id":"2","activity":[8,16],"format":"102","slug":"luma-yoga-for-life-51","links":{},"stock":{"item_id":51,"product_id":51,"stock_id":1,"qty":10,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/t/lt06.jpg","pos":1,"typ":"image","lab":"Image","vid":null},{"image":"/6/5/654598283_640.jpg","pos":2,"typ":"external-video","lab":null,"vid":{"url":"https://vimeo.com/233305101","title":"Yoga For Life","desc":"Creative, fun session geared toward opening your lungs. Combines stretching and breathing with a focus on hips and shoulders.","meta":"","video_id":"233305101","type":"vimeo"}},{"image":"/h/q/hqdefault_1.jpg","pos":5,"typ":"external-video","lab":null,"vid":{"url":"https://youtu.be/L4K-mq9JoaQ","title":"Vue Storefront - Open Source PWA eCommerce Solution Demo","desc":"Vue Storefront is a progressive web application for eCommerce based on Vuejs.\r\n\r\nhttps://vuestorefront.io/\r\n\r\nWe created Vue Storefront to improve the shopping experience by making the storefront ultra fast, off-line ready and impervious to traffic overloads.\r\n\r\nVue Storefront is 100% open source and distributed under the MIT license. You can take the source code from GitHub, customize your template and use it for your eCommerce as a PWA.\r\n\r\nPlatforms we work with right now: Magento ( Magento2 and Magento 1 ), PrestaShop. \r\nYou can easily connect our Storefront to: hybris, spryker, shopify, demandware, sylius.\r\n\r\n--\r\nâ–º Subscribe to Divante Channel Here: \r\nhttps://www.youtube.com/channel/UCXELY-WzF41oJlM-8qt5z8g?sub_confirmation=1 \r\n\r\n--\r\nAs one of the biggest eCommerce Software Houses in Europe, headquartered in Poland and employing about 150 people, our core competencies are built around Magento. This is the leading eCommerce platform for medium to large companies. We have been operating since 2008 and we are part of the OEX Group which is listed on the Warsaw Stock Exchange. Our annual revenue has been growing at a minimum of about 30% y/y.\r\n\r\n----\r\nFollow Divante Online Here:\r\n\r\n\r\nFacebook: http://facebook.com/Divante.co\r\nWebsite: http://divante.co\r\nTwitter: http://twitter.com/DivanteLTD\r\nCEO Twitter: http://twitter.com/tomik99\r\nGitHub: https://github.com/DivanteLtd\r\nBehance: http://behance.net/behancead24\r\nLinkedIn: https://www.linkedin.com/company-beta/600853\r\n\r\n-","meta":"","video_id":"L4K-mq9JoaQ","type":"youtube"}}],"category":[{"category_id":9,"name":"Training","slug":"training-9","path":"training/training-9"},{"category_id":10,"name":"Video Download","slug":"video-download-10","path":"training/training-video/video-download-10"}],"url_path":"training/training-9/luma-yoga-for-life-51.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"53","_score":1,"_source":{"id":53,"sku":"MH01-XS-Gray","name":"Chaz Kangeroo Hoodie-XS-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                            \n

                            • Two-tone gray heather hoodie.
                            • Drawstring-adjustable hood.
                            • Machine wash/dry.

                            ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chaz-kangeroo-hoodie-xs-gray-53","links":{},"stock":{"item_id":53,"product_id":53,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xs-gray-53.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"61","_score":1,"_source":{"id":61,"sku":"MH01-L-Black","name":"Chaz Kangeroo Hoodie-L-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                            \n

                            • Two-tone gray heather hoodie.
                            • Drawstring-adjustable hood.
                            • Machine wash/dry.

                            ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chaz-kangeroo-hoodie-l-black-61","links":{},"stock":{"item_id":61,"product_id":61,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-l-black-61.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"52","_score":1,"_source":{"id":52,"sku":"MH01-XS-Black","name":"Chaz Kangeroo Hoodie-XS-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                            \n

                            • Two-tone gray heather hoodie.
                            • Drawstring-adjustable hood.
                            • Machine wash/dry.

                            ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chaz-kangeroo-hoodie-xs-black-52","links":{},"stock":{"item_id":52,"product_id":52,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xs-black-52.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"58","_score":1,"_source":{"id":58,"sku":"MH01-M-Black","name":"Chaz Kangeroo Hoodie-M-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                            \n

                            • Two-tone gray heather hoodie.
                            • Drawstring-adjustable hood.
                            • Machine wash/dry.

                            ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chaz-kangeroo-hoodie-m-black-58","links":{},"stock":{"item_id":58,"product_id":58,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-m-black-58.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"62","_score":1,"_source":{"id":62,"sku":"MH01-L-Gray","name":"Chaz Kangeroo Hoodie-L-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                            \n

                            • Two-tone gray heather hoodie.
                            • Drawstring-adjustable hood.
                            • Machine wash/dry.

                            ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chaz-kangeroo-hoodie-l-gray-62","links":{},"stock":{"item_id":62,"product_id":62,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-l-gray-62.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"69","_score":1,"_source":{"id":69,"sku":"MH02-XS-Purple","name":"Teton Pullover Hoodie-XS-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                            This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                            \n

                            • Black pullover hoodie.
                            • Soft, brushed interior.
                            • Front hand pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"teton-pullover-hoodie-xs-purple-69","links":{},"stock":{"item_id":69,"product_id":69,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xs-purple-69.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"73","_score":1,"_source":{"id":73,"sku":"MH02-S-Red","name":"Teton Pullover Hoodie-S-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                            This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                            \n

                            • Black pullover hoodie.
                            • Soft, brushed interior.
                            • Front hand pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"teton-pullover-hoodie-s-red-73","links":{},"stock":{"item_id":73,"product_id":73,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-s-red-73.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"68","_score":1,"_source":{"id":68,"sku":"MH02-XS-Black","name":"Teton Pullover Hoodie-XS-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                            This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                            \n

                            • Black pullover hoodie.
                            • Soft, brushed interior.
                            • Front hand pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"teton-pullover-hoodie-xs-black-68","links":{},"stock":{"item_id":68,"product_id":68,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xs-black-68.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"81","_score":1,"_source":{"id":81,"sku":"MH02-XL-Purple","name":"Teton Pullover Hoodie-XL-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                            This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                            \n

                            • Black pullover hoodie.
                            • Soft, brushed interior.
                            • Front hand pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"teton-pullover-hoodie-xl-purple-81","links":{},"stock":{"item_id":81,"product_id":81,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xl-purple-81.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"74","_score":1,"_source":{"id":74,"sku":"MH02-M-Black","name":"Teton Pullover Hoodie-M-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                            This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                            \n

                            • Black pullover hoodie.
                            • Soft, brushed interior.
                            • Front hand pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"teton-pullover-hoodie-m-black-74","links":{},"stock":{"item_id":74,"product_id":74,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-m-black-74.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"66","_score":1,"_source":{"id":66,"sku":"MH01-XL-Orange","name":"Chaz Kangeroo Hoodie-XL-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                            \n

                            • Two-tone gray heather hoodie.
                            • Drawstring-adjustable hood.
                            • Machine wash/dry.

                            ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chaz-kangeroo-hoodie-xl-orange-66","links":{},"stock":{"item_id":66,"product_id":66,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xl-orange-66.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"64","_score":1,"_source":{"id":64,"sku":"MH01-XL-Black","name":"Chaz Kangeroo Hoodie-XL-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                            \n

                            • Two-tone gray heather hoodie.
                            • Drawstring-adjustable hood.
                            • Machine wash/dry.

                            ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chaz-kangeroo-hoodie-xl-black-64","links":{},"stock":{"item_id":64,"product_id":64,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xl-black-64.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"75","_score":1,"_source":{"id":75,"sku":"MH02-M-Purple","name":"Teton Pullover Hoodie-M-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                            This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                            \n

                            • Black pullover hoodie.
                            • Soft, brushed interior.
                            • Front hand pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"teton-pullover-hoodie-m-purple-75","links":{},"stock":{"item_id":75,"product_id":75,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-m-purple-75.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"59","_score":1,"_source":{"id":59,"sku":"MH01-M-Gray","name":"Chaz Kangeroo Hoodie-M-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                            \n

                            • Two-tone gray heather hoodie.
                            • Drawstring-adjustable hood.
                            • Machine wash/dry.

                            ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chaz-kangeroo-hoodie-m-gray-59","links":{},"stock":{"item_id":59,"product_id":59,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-m-gray-59.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"65","_score":1,"_source":{"id":65,"sku":"MH01-XL-Gray","name":"Chaz Kangeroo Hoodie-XL-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                            \n

                            • Two-tone gray heather hoodie.
                            • Drawstring-adjustable hood.
                            • Machine wash/dry.

                            ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chaz-kangeroo-hoodie-xl-gray-65","links":{},"stock":{"item_id":65,"product_id":65,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xl-gray-65.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"100","_score":1,"_source":{"id":100,"sku":"MH04-XS-Green","name":"Frankie Sweatshirt-XS-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                            \n

                            • Light green crewneck sweatshirt.
                            • Hand pockets.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"frankie-sweatshirt-xs-green-100","links":{},"stock":{"item_id":100,"product_id":100,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xs-green-100.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"87","_score":1,"_source":{"id":87,"sku":"MH03-S-Black","name":"Bruno Compete Hoodie-S-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                            Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                            \n

                            • Full zip black hoodie pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Kangaroo pocket.
                            • Machine wash/dry.

                            ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bruno-compete-hoodie-s-black-87","links":{},"stock":{"item_id":87,"product_id":87,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-s-black-87.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"72","_score":1,"_source":{"id":72,"sku":"MH02-S-Purple","name":"Teton Pullover Hoodie-S-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                            This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                            \n

                            • Black pullover hoodie.
                            • Soft, brushed interior.
                            • Front hand pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"teton-pullover-hoodie-s-purple-72","links":{},"stock":{"item_id":72,"product_id":72,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-s-purple-72.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"70","_score":1,"_source":{"id":70,"sku":"MH02-XS-Red","name":"Teton Pullover Hoodie-XS-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                            This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                            \n

                            • Black pullover hoodie.
                            • Soft, brushed interior.
                            • Front hand pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"teton-pullover-hoodie-xs-red-70","links":{},"stock":{"item_id":70,"product_id":70,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xs-red-70.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"55","_score":1,"_source":{"id":55,"sku":"MH01-S-Black","name":"Chaz Kangeroo Hoodie-S-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                            \n

                            • Two-tone gray heather hoodie.
                            • Drawstring-adjustable hood.
                            • Machine wash/dry.

                            ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chaz-kangeroo-hoodie-s-black-55","links":{},"stock":{"item_id":55,"product_id":55,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-s-black-55.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"82","_score":1,"_source":{"id":82,"sku":"MH02-XL-Red","name":"Teton Pullover Hoodie-XL-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                            This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                            \n

                            • Black pullover hoodie.
                            • Soft, brushed interior.
                            • Front hand pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"teton-pullover-hoodie-xl-red-82","links":{},"stock":{"item_id":82,"product_id":82,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xl-red-82.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"85","_score":1,"_source":{"id":85,"sku":"MH03-XS-Blue","name":"Bruno Compete Hoodie-XS-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                            Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                            \n

                            • Full zip black hoodie pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Kangaroo pocket.
                            • Machine wash/dry.

                            ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bruno-compete-hoodie-xs-blue-85","links":{},"stock":{"item_id":85,"product_id":85,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xs-blue-85.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"84","_score":1,"_source":{"id":84,"sku":"MH03-XS-Black","name":"Bruno Compete Hoodie-XS-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                            Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                            \n

                            • Full zip black hoodie pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Kangaroo pocket.
                            • Machine wash/dry.

                            ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bruno-compete-hoodie-xs-black-84","links":{},"stock":{"item_id":84,"product_id":84,"stock_id":1,"qty":42,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xs-black-84.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"78","_score":1,"_source":{"id":78,"sku":"MH02-L-Purple","name":"Teton Pullover Hoodie-L-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                            This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                            \n

                            • Black pullover hoodie.
                            • Soft, brushed interior.
                            • Front hand pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"teton-pullover-hoodie-l-purple-78","links":{},"stock":{"item_id":78,"product_id":78,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-l-purple-78.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"86","_score":1,"_source":{"id":86,"sku":"MH03-XS-Green","name":"Bruno Compete Hoodie-XS-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                            Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                            \n

                            • Full zip black hoodie pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Kangaroo pocket.
                            • Machine wash/dry.

                            ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bruno-compete-hoodie-xs-green-86","links":{},"stock":{"item_id":86,"product_id":86,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xs-green-86.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"98","_score":1,"_source":{"id":98,"sku":"MH03-XL-Green","name":"Bruno Compete Hoodie-XL-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                            Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                            \n

                            • Full zip black hoodie pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Kangaroo pocket.
                            • Machine wash/dry.

                            ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bruno-compete-hoodie-xl-green-98","links":{},"stock":{"item_id":98,"product_id":98,"stock_id":1,"qty":49,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xl-green-98.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"63","_score":1,"_source":{"id":63,"sku":"MH01-L-Orange","name":"Chaz Kangeroo Hoodie-L-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                            \n

                            • Two-tone gray heather hoodie.
                            • Drawstring-adjustable hood.
                            • Machine wash/dry.

                            ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chaz-kangeroo-hoodie-l-orange-63","links":{},"stock":{"item_id":63,"product_id":63,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-l-orange-63.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"79","_score":1,"_source":{"id":79,"sku":"MH02-L-Red","name":"Teton Pullover Hoodie-L-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                            This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                            \n

                            • Black pullover hoodie.
                            • Soft, brushed interior.
                            • Front hand pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"teton-pullover-hoodie-l-red-79","links":{},"stock":{"item_id":79,"product_id":79,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-l-red-79.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"96","_score":1,"_source":{"id":96,"sku":"MH03-XL-Black","name":"Bruno Compete Hoodie-XL-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                            Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                            \n

                            • Full zip black hoodie pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Kangaroo pocket.
                            • Machine wash/dry.

                            ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bruno-compete-hoodie-xl-black-96","links":{},"stock":{"item_id":96,"product_id":96,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xl-black-96.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"88","_score":1,"_source":{"id":88,"sku":"MH03-S-Blue","name":"Bruno Compete Hoodie-S-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                            Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                            \n

                            • Full zip black hoodie pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Kangaroo pocket.
                            • Machine wash/dry.

                            ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bruno-compete-hoodie-s-blue-88","links":{},"stock":{"item_id":88,"product_id":88,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-s-blue-88.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"89","_score":1,"_source":{"id":89,"sku":"MH03-S-Green","name":"Bruno Compete Hoodie-S-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                            Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                            \n

                            • Full zip black hoodie pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Kangaroo pocket.
                            • Machine wash/dry.

                            ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bruno-compete-hoodie-s-green-89","links":{},"stock":{"item_id":89,"product_id":89,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-s-green-89.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"188","_score":1,"_source":{"id":188,"sku":"MH09-M-Red","name":"Abominable Hoodie-M-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                            \n

                            • Blue heather hoodie.
                            • Relaxed fit.
                            • Moisture-wicking.
                            • Machine wash/dry.

                            ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"abominable-hoodie-m-red-188","links":{},"stock":{"item_id":188,"product_id":188,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-m-red-188.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"194","_score":1,"_source":{"id":194,"sku":"MH09-XL-Red","name":"Abominable Hoodie-XL-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                            \n

                            • Blue heather hoodie.
                            • Relaxed fit.
                            • Moisture-wicking.
                            • Machine wash/dry.

                            ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"abominable-hoodie-xl-red-194","links":{},"stock":{"item_id":194,"product_id":194,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xl-red-194.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"197","_score":1,"_source":{"id":197,"sku":"MH10-XS-Blue","name":"Mach Street Sweatshirt -XS-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                            From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                            \n

                            • Navy heather crewneck sweatshirt.
                            • LumaTech™ moisture-wicking fabric.
                            • Antimicrobial, odor-resistant.
                            • Zip hand pockets.
                            • Chafe-resistant flatlock seams.
                            • Rib-knit cuffs and hem.

                            ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mach-street-sweatshirt-xs-blue-197","links":{},"stock":{"item_id":197,"product_id":197,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xs-blue-197.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"180","_score":1,"_source":{"id":180,"sku":"MH09-XS-Blue","name":"Abominable Hoodie-XS-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-12-01 13:03:34","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":"20.0000","minimal_price":69,"regular_price":69,"description":"

                            It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                            \r\n

                            • Blue heather hoodie.
                            • Relaxed fit.
                            • Moisture-wicking.
                            • Machine wash/dry.

                            ","special_from_date":"2017-11-15 00:00:00","special_to_date":"2017-12-11 00:00:00","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xs-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"167","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"abominable-hoodie-xs-blue-180","links":{},"stock":{"item_id":180,"product_id":180,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":null,"vid":null},{"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xs-blue-180.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"191","_score":1,"_source":{"id":191,"sku":"MH09-L-Red","name":"Abominable Hoodie-L-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                            \n

                            • Blue heather hoodie.
                            • Relaxed fit.
                            • Moisture-wicking.
                            • Machine wash/dry.

                            ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"abominable-hoodie-l-red-191","links":{},"stock":{"item_id":191,"product_id":191,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-l-red-191.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"185","_score":1,"_source":{"id":185,"sku":"MH09-S-Red","name":"Abominable Hoodie-S-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                            \n

                            • Blue heather hoodie.
                            • Relaxed fit.
                            • Moisture-wicking.
                            • Machine wash/dry.

                            ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"abominable-hoodie-s-red-185","links":{},"stock":{"item_id":185,"product_id":185,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-s-red-185.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"192","_score":1,"_source":{"id":192,"sku":"MH09-XL-Blue","name":"Abominable Hoodie-XL-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                            \n

                            • Blue heather hoodie.
                            • Relaxed fit.
                            • Moisture-wicking.
                            • Machine wash/dry.

                            ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"abominable-hoodie-xl-blue-192","links":{},"stock":{"item_id":192,"product_id":192,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xl-blue-192.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"176","_score":1,"_source":{"id":176,"sku":"MH08-XL-Brown","name":"Oslo Trek Hoodie-XL-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                            \n

                            • Brown hoodie with black detail.
                            • Pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Machine wash/dry.

                            ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xl-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"oslo-trek-hoodie-xl-brown-176","links":{},"stock":{"item_id":176,"product_id":176,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xl-brown-176.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"181","_score":1,"_source":{"id":181,"sku":"MH09-XS-Green","name":"Abominable Hoodie-XS-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                            \n

                            • Blue heather hoodie.
                            • Relaxed fit.
                            • Moisture-wicking.
                            • Machine wash/dry.

                            ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"abominable-hoodie-xs-green-181","links":{},"stock":{"item_id":181,"product_id":181,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xs-green-181.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"199","_score":1,"_source":{"id":199,"sku":"MH10-S-Black","name":"Mach Street Sweatshirt -S-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                            From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                            \n

                            • Navy heather crewneck sweatshirt.
                            • LumaTech™ moisture-wicking fabric.
                            • Antimicrobial, odor-resistant.
                            • Zip hand pockets.
                            • Chafe-resistant flatlock seams.
                            • Rib-knit cuffs and hem.

                            ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mach-street-sweatshirt-s-black-199","links":{},"stock":{"item_id":199,"product_id":199,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-s-black-199.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"198","_score":1,"_source":{"id":198,"sku":"MH10-XS-Red","name":"Mach Street Sweatshirt -XS-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                            From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                            \n

                            • Navy heather crewneck sweatshirt.
                            • LumaTech™ moisture-wicking fabric.
                            • Antimicrobial, odor-resistant.
                            • Zip hand pockets.
                            • Chafe-resistant flatlock seams.
                            • Rib-knit cuffs and hem.

                            ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mach-street-sweatshirt-xs-red-198","links":{},"stock":{"item_id":198,"product_id":198,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xs-red-198.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"190","_score":1,"_source":{"id":190,"sku":"MH09-L-Green","name":"Abominable Hoodie-L-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                            \n

                            • Blue heather hoodie.
                            • Relaxed fit.
                            • Moisture-wicking.
                            • Machine wash/dry.

                            ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"abominable-hoodie-l-green-190","links":{},"stock":{"item_id":190,"product_id":190,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-l-green-190.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"200","_score":1,"_source":{"id":200,"sku":"MH10-S-Blue","name":"Mach Street Sweatshirt -S-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                            From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                            \n

                            • Navy heather crewneck sweatshirt.
                            • LumaTech™ moisture-wicking fabric.
                            • Antimicrobial, odor-resistant.
                            • Zip hand pockets.
                            • Chafe-resistant flatlock seams.
                            • Rib-knit cuffs and hem.

                            ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mach-street-sweatshirt-s-blue-200","links":{},"stock":{"item_id":200,"product_id":200,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-s-blue-200.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"183","_score":1,"_source":{"id":183,"sku":"MH09-S-Blue","name":"Abominable Hoodie-S-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                            \n

                            • Blue heather hoodie.
                            • Relaxed fit.
                            • Moisture-wicking.
                            • Machine wash/dry.

                            ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"abominable-hoodie-s-blue-183","links":{},"stock":{"item_id":183,"product_id":183,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-s-blue-183.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"196","_score":1,"_source":{"id":196,"sku":"MH10-XS-Black","name":"Mach Street Sweatshirt -XS-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                            From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                            \n

                            • Navy heather crewneck sweatshirt.
                            • LumaTech™ moisture-wicking fabric.
                            • Antimicrobial, odor-resistant.
                            • Zip hand pockets.
                            • Chafe-resistant flatlock seams.
                            • Rib-knit cuffs and hem.

                            ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mach-street-sweatshirt-xs-black-196","links":{},"stock":{"item_id":196,"product_id":196,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xs-black-196.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"163","_score":1,"_source":{"id":163,"sku":"MH07","name":"Hero Hoodie","attribute_set_id":9,"price":54,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                            \n

                            • Full-zip gray and black hoodie.
                            • Ribbed hem.
                            • Standard fit.
                            • Drawcord hood cinch.
                            • Water-resistant coating.

                            ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hero-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,146,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","pattern":"195","climate":"208","slug":"hero-hoodie-163","links":{},"stock":{"item_id":163,"product_id":163,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH07-XS-Black","id":148,"status":1,"name":"Hero Hoodie-XS-Black","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"49","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","url_key":"hero-hoodie-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MH07-XS-Gray","id":149,"status":1,"name":"Hero Hoodie-XS-Gray","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"52","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","url_key":"hero-hoodie-xs-gray","msrp_display_actual_price_type":"0"},{"sku":"MH07-XS-Green","id":150,"status":1,"name":"Hero Hoodie-XS-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"53","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","url_key":"hero-hoodie-xs-green","msrp_display_actual_price_type":"0"},{"sku":"MH07-S-Black","id":151,"status":1,"name":"Hero Hoodie-S-Black","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"49","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","url_key":"hero-hoodie-s-black","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"MH07-S-Gray","id":152,"status":1,"name":"Hero Hoodie-S-Gray","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"52","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","url_key":"hero-hoodie-s-gray","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"MH07-S-Green","id":153,"status":1,"name":"Hero Hoodie-S-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"53","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","url_key":"hero-hoodie-s-green","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"MH07-M-Black","id":154,"status":1,"name":"Hero Hoodie-M-Black","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"49","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","url_key":"hero-hoodie-m-black","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"MH07-M-Gray","id":155,"status":1,"name":"Hero Hoodie-M-Gray","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"52","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","url_key":"hero-hoodie-m-gray","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"MH07-M-Green","id":156,"status":1,"name":"Hero Hoodie-M-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"53","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","url_key":"hero-hoodie-m-green","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"MH07-L-Black","id":157,"status":1,"name":"Hero Hoodie-L-Black","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"49","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","url_key":"hero-hoodie-l-black","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"MH07-L-Gray","id":158,"status":1,"name":"Hero Hoodie-L-Gray","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"52","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","url_key":"hero-hoodie-l-gray","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"MH07-L-Green","id":159,"status":1,"name":"Hero Hoodie-L-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"53","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","url_key":"hero-hoodie-l-green","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"MH07-XL-Black","id":160,"status":1,"name":"Hero Hoodie-XL-Black","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"49","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","url_key":"hero-hoodie-xl-black","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"MH07-XL-Gray","id":161,"status":1,"name":"Hero Hoodie-XL-Gray","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"52","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","url_key":"hero-hoodie-xl-gray","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"MH07-XL-Green","id":162,"status":1,"name":"Hero Hoodie-XL-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"53","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","url_key":"hero-hoodie-xl-green","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54}],"configurable_options":[{"id":15,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":163,"attribute_code":"color"},{"id":14,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":163,"attribute_code":"size"}],"color_options":[49,52,53],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-163.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"179","_score":1,"_source":{"id":179,"sku":"MH08","name":"Oslo Trek Hoodie","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":30,"max_price":30,"max_regular_price":30,"minimal_regular_price":30,"special_price":null,"minimal_price":30,"regular_price":42,"description":"

                            Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                            \n

                            • Brown hoodie with black detail.
                            • Pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Machine wash/dry.

                            ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"oslo-trek-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"197","climate":[210,204],"slug":"oslo-trek-hoodie-179","links":{},"stock":{"item_id":179,"product_id":179,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH08-XS-Brown","id":164,"status":1,"name":"Oslo Trek Hoodie-XS-Brown","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"51","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","url_key":"oslo-trek-hoodie-xs-brown","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-XS-Purple","id":165,"status":1,"name":"Oslo Trek Hoodie-XS-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"57","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","url_key":"oslo-trek-hoodie-xs-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-XS-Red","id":166,"status":1,"name":"Oslo Trek Hoodie-XS-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","url_key":"oslo-trek-hoodie-xs-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-S-Brown","id":167,"status":1,"name":"Oslo Trek Hoodie-S-Brown","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"51","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","url_key":"oslo-trek-hoodie-s-brown","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-S-Purple","id":168,"status":1,"name":"Oslo Trek Hoodie-S-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"57","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","url_key":"oslo-trek-hoodie-s-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-S-Red","id":169,"status":1,"name":"Oslo Trek Hoodie-S-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","url_key":"oslo-trek-hoodie-s-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-M-Brown","id":170,"status":1,"name":"Oslo Trek Hoodie-M-Brown","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"51","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","url_key":"oslo-trek-hoodie-m-brown","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-M-Purple","id":171,"status":1,"name":"Oslo Trek Hoodie-M-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"57","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","url_key":"oslo-trek-hoodie-m-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-M-Red","id":172,"status":1,"name":"Oslo Trek Hoodie-M-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","url_key":"oslo-trek-hoodie-m-red","special_price":30,"special_from_date":"2019-03-22 08:35:33","msrp_display_actual_price_type":"0","final_price":30,"max_price":30,"max_regular_price":30,"minimal_regular_price":30,"minimal_price":30,"regular_price":42},{"sku":"MH08-L-Brown","id":173,"status":1,"name":"Oslo Trek Hoodie-L-Brown","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"51","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","url_key":"oslo-trek-hoodie-l-brown","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-L-Purple","id":174,"status":1,"name":"Oslo Trek Hoodie-L-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"57","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","url_key":"oslo-trek-hoodie-l-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-L-Red","id":175,"status":1,"name":"Oslo Trek Hoodie-L-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","url_key":"oslo-trek-hoodie-l-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-XL-Brown","id":176,"status":1,"name":"Oslo Trek Hoodie-XL-Brown","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"51","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","url_key":"oslo-trek-hoodie-xl-brown","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-XL-Purple","id":177,"status":1,"name":"Oslo Trek Hoodie-XL-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"57","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","url_key":"oslo-trek-hoodie-xl-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH08-XL-Red","id":178,"status":1,"name":"Oslo Trek Hoodie-XL-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","url_key":"oslo-trek-hoodie-xl-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42}],"configurable_options":[{"id":17,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":51,"label":"Brown"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":179,"attribute_code":"color"},{"id":16,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":179,"attribute_code":"size"}],"color_options":[51,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-179.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"145","_score":1,"_source":{"id":145,"sku":"MH06-XL-Blue","name":"Stark Fundamental Hoodie-XL-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                            \n

                            • Navy specked full zip hoodie.
                            • Ribbed cuffs, banded waist.
                            • Side pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"stark-fundamental-hoodie-xl-blue-145","links":{},"stock":{"item_id":145,"product_id":145,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xl-blue-145.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"139","_score":1,"_source":{"id":139,"sku":"MH06-M-Blue","name":"Stark Fundamental Hoodie-M-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                            \n

                            • Navy specked full zip hoodie.
                            • Ribbed cuffs, banded waist.
                            • Side pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stark-fundamental-hoodie-m-blue-139","links":{},"stock":{"item_id":139,"product_id":139,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-m-blue-139.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"146","_score":1,"_source":{"id":146,"sku":"MH06-XL-Purple","name":"Stark Fundamental Hoodie-XL-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                            \n

                            • Navy specked full zip hoodie.
                            • Ribbed cuffs, banded waist.
                            • Side pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"stark-fundamental-hoodie-xl-purple-146","links":{},"stock":{"item_id":146,"product_id":146,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xl-purple-146.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"131","_score":1,"_source":{"id":131,"sku":"MH05","name":"Hollister Backyard Sweatshirt","attribute_set_id":9,"price":52,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                            \n

                            • Cream crewneck sweatshirt with navy sleeves/trim.
                            • Relaxed fit.
                            • Ribbed cuffs and hem.
                            • Machine wash/dry.

                            ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hollister-backyard-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,38,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"195","climate":"204","slug":"hollister-backyard-sweatshirt-131","links":{},"stock":{"item_id":131,"product_id":131,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH05-XS-Green","id":116,"status":1,"name":"Hollister Backyard Sweatshirt-XS-Green","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"53","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","url_key":"hollister-backyard-sweatshirt-xs-green","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-XS-Red","id":117,"status":1,"name":"Hollister Backyard Sweatshirt-XS-Red","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","url_key":"hollister-backyard-sweatshirt-xs-red","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-XS-White","id":118,"status":1,"name":"Hollister Backyard Sweatshirt-XS-White","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"59","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","url_key":"hollister-backyard-sweatshirt-xs-white","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-S-Green","id":119,"status":1,"name":"Hollister Backyard Sweatshirt-S-Green","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"53","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","url_key":"hollister-backyard-sweatshirt-s-green","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-S-Red","id":120,"status":1,"name":"Hollister Backyard Sweatshirt-S-Red","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","url_key":"hollister-backyard-sweatshirt-s-red","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-S-White","id":121,"status":1,"name":"Hollister Backyard Sweatshirt-S-White","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"59","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","url_key":"hollister-backyard-sweatshirt-s-white","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-M-Green","id":122,"status":1,"name":"Hollister Backyard Sweatshirt-M-Green","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"53","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","url_key":"hollister-backyard-sweatshirt-m-green","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-M-Red","id":123,"status":1,"name":"Hollister Backyard Sweatshirt-M-Red","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","url_key":"hollister-backyard-sweatshirt-m-red","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-M-White","id":124,"status":1,"name":"Hollister Backyard Sweatshirt-M-White","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"59","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","url_key":"hollister-backyard-sweatshirt-m-white","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-L-Green","id":125,"status":1,"name":"Hollister Backyard Sweatshirt-L-Green","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"53","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","url_key":"hollister-backyard-sweatshirt-l-green","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-L-Red","id":126,"status":1,"name":"Hollister Backyard Sweatshirt-L-Red","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","url_key":"hollister-backyard-sweatshirt-l-red","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-L-White","id":127,"status":1,"name":"Hollister Backyard Sweatshirt-L-White","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"59","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","url_key":"hollister-backyard-sweatshirt-l-white","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-XL-Green","id":128,"status":1,"name":"Hollister Backyard Sweatshirt-XL-Green","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"53","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","url_key":"hollister-backyard-sweatshirt-xl-green","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-XL-Red","id":129,"status":1,"name":"Hollister Backyard Sweatshirt-XL-Red","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","url_key":"hollister-backyard-sweatshirt-xl-red","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52},{"sku":"MH05-XL-White","id":130,"status":1,"name":"Hollister Backyard Sweatshirt-XL-White","price":52,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"59","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","url_key":"hollister-backyard-sweatshirt-xl-white","msrp_display_actual_price_type":"0","final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52}],"configurable_options":[{"id":11,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":131,"attribute_code":"color"},{"id":10,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":131,"attribute_code":"size"}],"color_options":[53,58,59],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-131.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"115","_score":1,"_source":{"id":115,"sku":"MH04","name":"Frankie Sweatshirt","attribute_set_id":9,"price":60,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                            \n

                            • Light green crewneck sweatshirt.
                            • Hand pockets.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"frankie-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","pattern":"197","climate":[202,204,205,208,210],"slug":"frankie-sweatshirt-115","links":{},"stock":{"item_id":115,"product_id":115,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH04-XS-Green","id":100,"status":1,"name":"Frankie Sweatshirt-XS-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"53","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","url_key":"frankie-sweatshirt-xs-green","msrp_display_actual_price_type":"0"},{"sku":"MH04-XS-White","id":101,"status":1,"name":"Frankie Sweatshirt-XS-White","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"59","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","url_key":"frankie-sweatshirt-xs-white","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-XS-Yellow","id":102,"status":1,"name":"Frankie Sweatshirt-XS-Yellow","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"167","color":"60","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","url_key":"frankie-sweatshirt-xs-yellow","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-S-Green","id":103,"status":1,"name":"Frankie Sweatshirt-S-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"53","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","url_key":"frankie-sweatshirt-s-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-S-White","id":104,"status":1,"name":"Frankie Sweatshirt-S-White","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"59","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","url_key":"frankie-sweatshirt-s-white","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-S-Yellow","id":105,"status":1,"name":"Frankie Sweatshirt-S-Yellow","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"168","color":"60","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","url_key":"frankie-sweatshirt-s-yellow","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-M-Green","id":106,"status":1,"name":"Frankie Sweatshirt-M-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"53","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","url_key":"frankie-sweatshirt-m-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-M-White","id":107,"status":1,"name":"Frankie Sweatshirt-M-White","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"59","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","url_key":"frankie-sweatshirt-m-white","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-M-Yellow","id":108,"status":1,"name":"Frankie Sweatshirt-M-Yellow","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"169","color":"60","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","url_key":"frankie-sweatshirt-m-yellow","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-L-Green","id":109,"status":1,"name":"Frankie Sweatshirt-L-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"53","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","url_key":"frankie-sweatshirt-l-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-L-White","id":110,"status":1,"name":"Frankie Sweatshirt-L-White","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"59","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","url_key":"frankie-sweatshirt-l-white","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-L-Yellow","id":111,"status":1,"name":"Frankie Sweatshirt-L-Yellow","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"170","color":"60","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","url_key":"frankie-sweatshirt-l-yellow","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-XL-Green","id":112,"status":1,"name":"Frankie Sweatshirt-XL-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"53","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","url_key":"frankie-sweatshirt-xl-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-XL-White","id":113,"status":1,"name":"Frankie Sweatshirt-XL-White","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"59","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","url_key":"frankie-sweatshirt-xl-white","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MH04-XL-Yellow","id":114,"status":1,"name":"Frankie Sweatshirt-XL-Yellow","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15","36","2"],"size":"171","color":"60","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","url_key":"frankie-sweatshirt-xl-yellow","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60}],"configurable_options":[{"id":9,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":115,"attribute_code":"color"},{"id":8,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":115,"attribute_code":"size"}],"color_options":[53,59,60],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-115.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"147","_score":1,"_source":{"id":147,"sku":"MH06","name":"Stark Fundamental Hoodie","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                            \n

                            • Navy specked full zip hoodie.
                            • Ribbed cuffs, banded waist.
                            • Side pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"stark-fundamental-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,38,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"197","climate":[202,204,205,208],"slug":"stark-fundamental-hoodie-147","links":{},"stock":{"item_id":147,"product_id":147,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH06-XS-Black","id":132,"status":1,"name":"Stark Fundamental Hoodie-XS-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"49","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","url_key":"stark-fundamental-hoodie-xs-black","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-XS-Blue","id":133,"status":1,"name":"Stark Fundamental Hoodie-XS-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"50","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","url_key":"stark-fundamental-hoodie-xs-blue","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-XS-Purple","id":134,"status":1,"name":"Stark Fundamental Hoodie-XS-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"57","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","url_key":"stark-fundamental-hoodie-xs-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-S-Black","id":135,"status":1,"name":"Stark Fundamental Hoodie-S-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"49","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","url_key":"stark-fundamental-hoodie-s-black","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-S-Blue","id":136,"status":1,"name":"Stark Fundamental Hoodie-S-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"50","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","url_key":"stark-fundamental-hoodie-s-blue","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-S-Purple","id":137,"status":1,"name":"Stark Fundamental Hoodie-S-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"57","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","url_key":"stark-fundamental-hoodie-s-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-M-Black","id":138,"status":1,"name":"Stark Fundamental Hoodie-M-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"49","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","url_key":"stark-fundamental-hoodie-m-black","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-M-Blue","id":139,"status":1,"name":"Stark Fundamental Hoodie-M-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"50","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","url_key":"stark-fundamental-hoodie-m-blue","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-M-Purple","id":140,"status":1,"name":"Stark Fundamental Hoodie-M-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"57","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","url_key":"stark-fundamental-hoodie-m-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-L-Black","id":141,"status":1,"name":"Stark Fundamental Hoodie-L-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"49","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","url_key":"stark-fundamental-hoodie-l-black","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-L-Blue","id":142,"status":1,"name":"Stark Fundamental Hoodie-L-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"50","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","url_key":"stark-fundamental-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-L-Purple","id":143,"status":1,"name":"Stark Fundamental Hoodie-L-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"57","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","url_key":"stark-fundamental-hoodie-l-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-XL-Black","id":144,"status":1,"name":"Stark Fundamental Hoodie-XL-Black","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"49","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","url_key":"stark-fundamental-hoodie-xl-black","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-XL-Blue","id":145,"status":1,"name":"Stark Fundamental Hoodie-XL-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"50","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","url_key":"stark-fundamental-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"MH06-XL-Purple","id":146,"status":1,"name":"Stark Fundamental Hoodie-XL-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"57","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","url_key":"stark-fundamental-hoodie-xl-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42}],"configurable_options":[{"id":13,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":147,"attribute_code":"color"},{"id":12,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":147,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-147.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"116","_score":1,"_source":{"id":116,"sku":"MH05-XS-Green","name":"Hollister Backyard Sweatshirt-XS-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                            \n

                            • Cream crewneck sweatshirt with navy sleeves/trim.
                            • Relaxed fit.
                            • Ribbed cuffs and hem.
                            • Machine wash/dry.

                            ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hollister-backyard-sweatshirt-xs-green-116","links":{},"stock":{"item_id":116,"product_id":116,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xs-green-116.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"103","_score":1,"_source":{"id":103,"sku":"MH04-S-Green","name":"Frankie Sweatshirt-S-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                            \n

                            • Light green crewneck sweatshirt.
                            • Hand pockets.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"frankie-sweatshirt-s-green-103","links":{},"stock":{"item_id":103,"product_id":103,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-s-green-103.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"121","_score":1,"_source":{"id":121,"sku":"MH05-S-White","name":"Hollister Backyard Sweatshirt-S-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                            \n

                            • Cream crewneck sweatshirt with navy sleeves/trim.
                            • Relaxed fit.
                            • Ribbed cuffs and hem.
                            • Machine wash/dry.

                            ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hollister-backyard-sweatshirt-s-white-121","links":{},"stock":{"item_id":121,"product_id":121,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-s-white-121.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"107","_score":1,"_source":{"id":107,"sku":"MH04-M-White","name":"Frankie Sweatshirt-M-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                            \n

                            • Light green crewneck sweatshirt.
                            • Hand pockets.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"frankie-sweatshirt-m-white-107","links":{},"stock":{"item_id":107,"product_id":107,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-m-white-107.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"126","_score":1,"_source":{"id":126,"sku":"MH05-L-Red","name":"Hollister Backyard Sweatshirt-L-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                            \n

                            • Cream crewneck sweatshirt with navy sleeves/trim.
                            • Relaxed fit.
                            • Ribbed cuffs and hem.
                            • Machine wash/dry.

                            ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hollister-backyard-sweatshirt-l-red-126","links":{},"stock":{"item_id":126,"product_id":126,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-l-red-126.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"122","_score":1,"_source":{"id":122,"sku":"MH05-M-Green","name":"Hollister Backyard Sweatshirt-M-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                            \n

                            • Cream crewneck sweatshirt with navy sleeves/trim.
                            • Relaxed fit.
                            • Ribbed cuffs and hem.
                            • Machine wash/dry.

                            ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hollister-backyard-sweatshirt-m-green-122","links":{},"stock":{"item_id":122,"product_id":122,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-m-green-122.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"128","_score":1,"_source":{"id":128,"sku":"MH05-XL-Green","name":"Hollister Backyard Sweatshirt-XL-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                            \n

                            • Cream crewneck sweatshirt with navy sleeves/trim.
                            • Relaxed fit.
                            • Ribbed cuffs and hem.
                            • Machine wash/dry.

                            ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hollister-backyard-sweatshirt-xl-green-128","links":{},"stock":{"item_id":128,"product_id":128,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xl-green-128.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"127","_score":1,"_source":{"id":127,"sku":"MH05-L-White","name":"Hollister Backyard Sweatshirt-L-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                            \n

                            • Cream crewneck sweatshirt with navy sleeves/trim.
                            • Relaxed fit.
                            • Ribbed cuffs and hem.
                            • Machine wash/dry.

                            ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hollister-backyard-sweatshirt-l-white-127","links":{},"stock":{"item_id":127,"product_id":127,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-l-white-127.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"109","_score":1,"_source":{"id":109,"sku":"MH04-L-Green","name":"Frankie Sweatshirt-L-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                            \n

                            • Light green crewneck sweatshirt.
                            • Hand pockets.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"frankie-sweatshirt-l-green-109","links":{},"stock":{"item_id":109,"product_id":109,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-l-green-109.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"124","_score":1,"_source":{"id":124,"sku":"MH05-M-White","name":"Hollister Backyard Sweatshirt-M-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                            \n

                            • Cream crewneck sweatshirt with navy sleeves/trim.
                            • Relaxed fit.
                            • Ribbed cuffs and hem.
                            • Machine wash/dry.

                            ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hollister-backyard-sweatshirt-m-white-124","links":{},"stock":{"item_id":124,"product_id":124,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-m-white-124.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"112","_score":1,"_source":{"id":112,"sku":"MH04-XL-Green","name":"Frankie Sweatshirt-XL-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                            \n

                            • Light green crewneck sweatshirt.
                            • Hand pockets.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"frankie-sweatshirt-xl-green-112","links":{},"stock":{"item_id":112,"product_id":112,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xl-green-112.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"130","_score":1,"_source":{"id":130,"sku":"MH05-XL-White","name":"Hollister Backyard Sweatshirt-XL-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                            \n

                            • Cream crewneck sweatshirt with navy sleeves/trim.
                            • Relaxed fit.
                            • Ribbed cuffs and hem.
                            • Machine wash/dry.

                            ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hollister-backyard-sweatshirt-xl-white-130","links":{},"stock":{"item_id":130,"product_id":130,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xl-white-130.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"119","_score":1,"_source":{"id":119,"sku":"MH05-S-Green","name":"Hollister Backyard Sweatshirt-S-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                            \n

                            • Cream crewneck sweatshirt with navy sleeves/trim.
                            • Relaxed fit.
                            • Ribbed cuffs and hem.
                            • Machine wash/dry.

                            ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hollister-backyard-sweatshirt-s-green-119","links":{},"stock":{"item_id":119,"product_id":119,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-s-green-119.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"111","_score":1,"_source":{"id":111,"sku":"MH04-L-Yellow","name":"Frankie Sweatshirt-L-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                            \n

                            • Light green crewneck sweatshirt.
                            • Hand pockets.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"frankie-sweatshirt-l-yellow-111","links":{},"stock":{"item_id":111,"product_id":111,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-l-yellow-111.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"129","_score":1,"_source":{"id":129,"sku":"MH05-XL-Red","name":"Hollister Backyard Sweatshirt-XL-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                            \n

                            • Cream crewneck sweatshirt with navy sleeves/trim.
                            • Relaxed fit.
                            • Ribbed cuffs and hem.
                            • Machine wash/dry.

                            ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hollister-backyard-sweatshirt-xl-red-129","links":{},"stock":{"item_id":129,"product_id":129,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xl-red-129.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"113","_score":1,"_source":{"id":113,"sku":"MH04-XL-White","name":"Frankie Sweatshirt-XL-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                            \n

                            • Light green crewneck sweatshirt.
                            • Hand pockets.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"frankie-sweatshirt-xl-white-113","links":{},"stock":{"item_id":113,"product_id":113,"stock_id":1,"qty":73,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xl-white-113.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"149","_score":1,"_source":{"id":149,"sku":"MH07-XS-Gray","name":"Hero Hoodie-XS-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                            \n

                            • Full-zip gray and black hoodie.
                            • Ribbed hem.
                            • Standard fit.
                            • Drawcord hood cinch.
                            • Water-resistant coating.

                            ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hero-hoodie-xs-gray-149","links":{},"stock":{"item_id":149,"product_id":149,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xs-gray-149.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"125","_score":1,"_source":{"id":125,"sku":"MH05-L-Green","name":"Hollister Backyard Sweatshirt-L-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                            \n

                            • Cream crewneck sweatshirt with navy sleeves/trim.
                            • Relaxed fit.
                            • Ribbed cuffs and hem.
                            • Machine wash/dry.

                            ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hollister-backyard-sweatshirt-l-green-125","links":{},"stock":{"item_id":125,"product_id":125,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-l-green-125.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"123","_score":1,"_source":{"id":123,"sku":"MH05-M-Red","name":"Hollister Backyard Sweatshirt-M-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                            \n

                            • Cream crewneck sweatshirt with navy sleeves/trim.
                            • Relaxed fit.
                            • Ribbed cuffs and hem.
                            • Machine wash/dry.

                            ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hollister-backyard-sweatshirt-m-red-123","links":{},"stock":{"item_id":123,"product_id":123,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-m-red-123.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"135","_score":1,"_source":{"id":135,"sku":"MH06-S-Black","name":"Stark Fundamental Hoodie-S-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                            \n

                            • Navy specked full zip hoodie.
                            • Ribbed cuffs, banded waist.
                            • Side pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stark-fundamental-hoodie-s-black-135","links":{},"stock":{"item_id":135,"product_id":135,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-s-black-135.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"132","_score":1,"_source":{"id":132,"sku":"MH06-XS-Black","name":"Stark Fundamental Hoodie-XS-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                            \n

                            • Navy specked full zip hoodie.
                            • Ribbed cuffs, banded waist.
                            • Side pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"stark-fundamental-hoodie-xs-black-132","links":{},"stock":{"item_id":132,"product_id":132,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xs-black-132.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"134","_score":1,"_source":{"id":134,"sku":"MH06-XS-Purple","name":"Stark Fundamental Hoodie-XS-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                            \n

                            • Navy specked full zip hoodie.
                            • Ribbed cuffs, banded waist.
                            • Side pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"stark-fundamental-hoodie-xs-purple-134","links":{},"stock":{"item_id":134,"product_id":134,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xs-purple-134.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"141","_score":1,"_source":{"id":141,"sku":"MH06-L-Black","name":"Stark Fundamental Hoodie-L-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                            \n

                            • Navy specked full zip hoodie.
                            • Ribbed cuffs, banded waist.
                            • Side pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stark-fundamental-hoodie-l-black-141","links":{},"stock":{"item_id":141,"product_id":141,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-l-black-141.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"137","_score":1,"_source":{"id":137,"sku":"MH06-S-Purple","name":"Stark Fundamental Hoodie-S-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                            \n

                            • Navy specked full zip hoodie.
                            • Ribbed cuffs, banded waist.
                            • Side pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stark-fundamental-hoodie-s-purple-137","links":{},"stock":{"item_id":137,"product_id":137,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-s-purple-137.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"136","_score":1,"_source":{"id":136,"sku":"MH06-S-Blue","name":"Stark Fundamental Hoodie-S-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                            \n

                            • Navy specked full zip hoodie.
                            • Ribbed cuffs, banded waist.
                            • Side pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stark-fundamental-hoodie-s-blue-136","links":{},"stock":{"item_id":136,"product_id":136,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-s-blue-136.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"133","_score":1,"_source":{"id":133,"sku":"MH06-XS-Blue","name":"Stark Fundamental Hoodie-XS-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                            \n

                            • Navy specked full zip hoodie.
                            • Ribbed cuffs, banded waist.
                            • Side pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"stark-fundamental-hoodie-xs-blue-133","links":{},"stock":{"item_id":133,"product_id":133,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xs-blue-133.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"144","_score":1,"_source":{"id":144,"sku":"MH06-XL-Black","name":"Stark Fundamental Hoodie-XL-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                            \n

                            • Navy specked full zip hoodie.
                            • Ribbed cuffs, banded waist.
                            • Side pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"stark-fundamental-hoodie-xl-black-144","links":{},"stock":{"item_id":144,"product_id":144,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xl-black-144.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"140","_score":1,"_source":{"id":140,"sku":"MH06-M-Purple","name":"Stark Fundamental Hoodie-M-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                            \n

                            • Navy specked full zip hoodie.
                            • Ribbed cuffs, banded waist.
                            • Side pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stark-fundamental-hoodie-m-purple-140","links":{},"stock":{"item_id":140,"product_id":140,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-m-purple-140.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"138","_score":1,"_source":{"id":138,"sku":"MH06-M-Black","name":"Stark Fundamental Hoodie-M-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                            \n

                            • Navy specked full zip hoodie.
                            • Ribbed cuffs, banded waist.
                            • Side pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stark-fundamental-hoodie-m-black-138","links":{},"stock":{"item_id":138,"product_id":138,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-m-black-138.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"143","_score":1,"_source":{"id":143,"sku":"MH06-L-Purple","name":"Stark Fundamental Hoodie-L-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                            \n

                            • Navy specked full zip hoodie.
                            • Ribbed cuffs, banded waist.
                            • Side pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stark-fundamental-hoodie-l-purple-143","links":{},"stock":{"item_id":143,"product_id":143,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-l-purple-143.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"150","_score":1,"_source":{"id":150,"sku":"MH07-XS-Green","name":"Hero Hoodie-XS-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                            \n

                            • Full-zip gray and black hoodie.
                            • Ribbed hem.
                            • Standard fit.
                            • Drawcord hood cinch.
                            • Water-resistant coating.

                            ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hero-hoodie-xs-green-150","links":{},"stock":{"item_id":150,"product_id":150,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xs-green-150.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"142","_score":1,"_source":{"id":142,"sku":"MH06-L-Blue","name":"Stark Fundamental Hoodie-L-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                            \n

                            • Navy specked full zip hoodie.
                            • Ribbed cuffs, banded waist.
                            • Side pockets.
                            • Machine wash/dry.

                            ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stark-fundamental-hoodie-l-blue-142","links":{},"stock":{"item_id":142,"product_id":142,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-l-blue-142.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"148","_score":1,"_source":{"id":148,"sku":"MH07-XS-Black","name":"Hero Hoodie-XS-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                            \n

                            • Full-zip gray and black hoodie.
                            • Ribbed hem.
                            • Standard fit.
                            • Drawcord hood cinch.
                            • Water-resistant coating.

                            ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hero-hoodie-xs-black-148","links":{},"stock":{"item_id":148,"product_id":148,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xs-black-148.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"207","_score":1,"_source":{"id":207,"sku":"MH10-L-Red","name":"Mach Street Sweatshirt -L-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                            From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                            \n

                            • Navy heather crewneck sweatshirt.
                            • LumaTech™ moisture-wicking fabric.
                            • Antimicrobial, odor-resistant.
                            • Zip hand pockets.
                            • Chafe-resistant flatlock seams.
                            • Rib-knit cuffs and hem.

                            ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mach-street-sweatshirt-l-red-207","links":{},"stock":{"item_id":207,"product_id":207,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-l-red-207.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"212","_score":1,"_source":{"id":212,"sku":"MH11-XS-Orange","name":"Grayson Crewneck Sweatshirt -XS-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                            The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                            \n

                            • Cream crewneck sweatshirt with black accents.
                            • 80% cotton/20% polyester fleece.
                            • Patterned knit hood lining.
                            • Knit cuffs and waist.
                            • Pouch pocket.
                            • Curl edged seam detail

                            ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"grayson-crewneck-sweatshirt-xs-orange-212","links":{},"stock":{"item_id":212,"product_id":212,"stock_id":1,"qty":17,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xs-orange-212.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"201","_score":1,"_source":{"id":201,"sku":"MH10-S-Red","name":"Mach Street Sweatshirt -S-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                            From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                            \n

                            • Navy heather crewneck sweatshirt.
                            • LumaTech™ moisture-wicking fabric.
                            • Antimicrobial, odor-resistant.
                            • Zip hand pockets.
                            • Chafe-resistant flatlock seams.
                            • Rib-knit cuffs and hem.

                            ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mach-street-sweatshirt-s-red-201","links":{},"stock":{"item_id":201,"product_id":201,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-s-red-201.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"209","_score":1,"_source":{"id":209,"sku":"MH10-XL-Blue","name":"Mach Street Sweatshirt -XL-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                            From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                            \n

                            • Navy heather crewneck sweatshirt.
                            • LumaTech™ moisture-wicking fabric.
                            • Antimicrobial, odor-resistant.
                            • Zip hand pockets.
                            • Chafe-resistant flatlock seams.
                            • Rib-knit cuffs and hem.

                            ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mach-street-sweatshirt-xl-blue-209","links":{},"stock":{"item_id":209,"product_id":209,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xl-blue-209.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"202","_score":1,"_source":{"id":202,"sku":"MH10-M-Black","name":"Mach Street Sweatshirt -M-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                            From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                            \n

                            • Navy heather crewneck sweatshirt.
                            • LumaTech™ moisture-wicking fabric.
                            • Antimicrobial, odor-resistant.
                            • Zip hand pockets.
                            • Chafe-resistant flatlock seams.
                            • Rib-knit cuffs and hem.

                            ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mach-street-sweatshirt-m-black-202","links":{},"stock":{"item_id":202,"product_id":202,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-m-black-202.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"206","_score":1,"_source":{"id":206,"sku":"MH10-L-Blue","name":"Mach Street Sweatshirt -L-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                            From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                            \n

                            • Navy heather crewneck sweatshirt.
                            • LumaTech™ moisture-wicking fabric.
                            • Antimicrobial, odor-resistant.
                            • Zip hand pockets.
                            • Chafe-resistant flatlock seams.
                            • Rib-knit cuffs and hem.

                            ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mach-street-sweatshirt-l-blue-206","links":{},"stock":{"item_id":206,"product_id":206,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-l-blue-206.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"210","_score":1,"_source":{"id":210,"sku":"MH10-XL-Red","name":"Mach Street Sweatshirt -XL-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                            From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                            \n

                            • Navy heather crewneck sweatshirt.
                            • LumaTech™ moisture-wicking fabric.
                            • Antimicrobial, odor-resistant.
                            • Zip hand pockets.
                            • Chafe-resistant flatlock seams.
                            • Rib-knit cuffs and hem.

                            ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mach-street-sweatshirt-xl-red-210","links":{},"stock":{"item_id":210,"product_id":210,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xl-red-210.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"208","_score":1,"_source":{"id":208,"sku":"MH10-XL-Black","name":"Mach Street Sweatshirt -XL-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                            From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                            \n

                            • Navy heather crewneck sweatshirt.
                            • LumaTech™ moisture-wicking fabric.
                            • Antimicrobial, odor-resistant.
                            • Zip hand pockets.
                            • Chafe-resistant flatlock seams.
                            • Rib-knit cuffs and hem.

                            ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mach-street-sweatshirt-xl-black-208","links":{},"stock":{"item_id":208,"product_id":208,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xl-black-208.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"214","_score":1,"_source":{"id":214,"sku":"MH11-XS-White","name":"Grayson Crewneck Sweatshirt -XS-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                            The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                            \n

                            • Cream crewneck sweatshirt with black accents.
                            • 80% cotton/20% polyester fleece.
                            • Patterned knit hood lining.
                            • Knit cuffs and waist.
                            • Pouch pocket.
                            • Curl edged seam detail

                            ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"grayson-crewneck-sweatshirt-xs-white-214","links":{},"stock":{"item_id":214,"product_id":214,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xs-white-214.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"216","_score":1,"_source":{"id":216,"sku":"MH11-S-Red","name":"Grayson Crewneck Sweatshirt -S-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                            The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                            \n

                            • Cream crewneck sweatshirt with black accents.
                            • 80% cotton/20% polyester fleece.
                            • Patterned knit hood lining.
                            • Knit cuffs and waist.
                            • Pouch pocket.
                            • Curl edged seam detail

                            ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"grayson-crewneck-sweatshirt-s-red-216","links":{},"stock":{"item_id":216,"product_id":216,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-s-red-216.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"213","_score":1,"_source":{"id":213,"sku":"MH11-XS-Red","name":"Grayson Crewneck Sweatshirt -XS-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                            The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                            \n

                            • Cream crewneck sweatshirt with black accents.
                            • 80% cotton/20% polyester fleece.
                            • Patterned knit hood lining.
                            • Knit cuffs and waist.
                            • Pouch pocket.
                            • Curl edged seam detail

                            ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"grayson-crewneck-sweatshirt-xs-red-213","links":{},"stock":{"item_id":213,"product_id":213,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xs-red-213.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"204","_score":1,"_source":{"id":204,"sku":"MH10-M-Red","name":"Mach Street Sweatshirt -M-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                            From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                            \n

                            • Navy heather crewneck sweatshirt.
                            • LumaTech™ moisture-wicking fabric.
                            • Antimicrobial, odor-resistant.
                            • Zip hand pockets.
                            • Chafe-resistant flatlock seams.
                            • Rib-knit cuffs and hem.

                            ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mach-street-sweatshirt-m-red-204","links":{},"stock":{"item_id":204,"product_id":204,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-m-red-204.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"205","_score":1,"_source":{"id":205,"sku":"MH10-L-Black","name":"Mach Street Sweatshirt -L-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                            From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                            \n

                            • Navy heather crewneck sweatshirt.
                            • LumaTech™ moisture-wicking fabric.
                            • Antimicrobial, odor-resistant.
                            • Zip hand pockets.
                            • Chafe-resistant flatlock seams.
                            • Rib-knit cuffs and hem.

                            ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mach-street-sweatshirt-l-black-205","links":{},"stock":{"item_id":205,"product_id":205,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-l-black-205.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"224","_score":1,"_source":{"id":224,"sku":"MH11-XL-Orange","name":"Grayson Crewneck Sweatshirt -XL-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                            The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                            \n

                            • Cream crewneck sweatshirt with black accents.
                            • 80% cotton/20% polyester fleece.
                            • Patterned knit hood lining.
                            • Knit cuffs and waist.
                            • Pouch pocket.
                            • Curl edged seam detail

                            ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"grayson-crewneck-sweatshirt-xl-orange-224","links":{},"stock":{"item_id":224,"product_id":224,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xl-orange-224.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"203","_score":1,"_source":{"id":203,"sku":"MH10-M-Blue","name":"Mach Street Sweatshirt -M-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                            From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                            \n

                            • Navy heather crewneck sweatshirt.
                            • LumaTech™ moisture-wicking fabric.
                            • Antimicrobial, odor-resistant.
                            • Zip hand pockets.
                            • Chafe-resistant flatlock seams.
                            • Rib-knit cuffs and hem.

                            ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mach-street-sweatshirt-m-blue-203","links":{},"stock":{"item_id":203,"product_id":203,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-m-blue-203.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"215","_score":1,"_source":{"id":215,"sku":"MH11-S-Orange","name":"Grayson Crewneck Sweatshirt -S-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                            The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                            \n

                            • Cream crewneck sweatshirt with black accents.
                            • 80% cotton/20% polyester fleece.
                            • Patterned knit hood lining.
                            • Knit cuffs and waist.
                            • Pouch pocket.
                            • Curl edged seam detail

                            ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"grayson-crewneck-sweatshirt-s-orange-215","links":{},"stock":{"item_id":215,"product_id":215,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-s-orange-215.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"218","_score":1,"_source":{"id":218,"sku":"MH11-M-Orange","name":"Grayson Crewneck Sweatshirt -M-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                            The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                            \n

                            • Cream crewneck sweatshirt with black accents.
                            • 80% cotton/20% polyester fleece.
                            • Patterned knit hood lining.
                            • Knit cuffs and waist.
                            • Pouch pocket.
                            • Curl edged seam detail

                            ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"grayson-crewneck-sweatshirt-m-orange-218","links":{},"stock":{"item_id":218,"product_id":218,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-m-orange-218.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"221","_score":1,"_source":{"id":221,"sku":"MH11-L-Orange","name":"Grayson Crewneck Sweatshirt -L-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                            The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                            \n

                            • Cream crewneck sweatshirt with black accents.
                            • 80% cotton/20% polyester fleece.
                            • Patterned knit hood lining.
                            • Knit cuffs and waist.
                            • Pouch pocket.
                            • Curl edged seam detail

                            ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"grayson-crewneck-sweatshirt-l-orange-221","links":{},"stock":{"item_id":221,"product_id":221,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-l-orange-221.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"226","_score":1,"_source":{"id":226,"sku":"MH11-XL-White","name":"Grayson Crewneck Sweatshirt -XL-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                            The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                            \n

                            • Cream crewneck sweatshirt with black accents.
                            • 80% cotton/20% polyester fleece.
                            • Patterned knit hood lining.
                            • Knit cuffs and waist.
                            • Pouch pocket.
                            • Curl edged seam detail

                            ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"grayson-crewneck-sweatshirt-xl-white-226","links":{},"stock":{"item_id":226,"product_id":226,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xl-white-226.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"222","_score":1,"_source":{"id":222,"sku":"MH11-L-Red","name":"Grayson Crewneck Sweatshirt -L-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                            The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                            \n

                            • Cream crewneck sweatshirt with black accents.
                            • 80% cotton/20% polyester fleece.
                            • Patterned knit hood lining.
                            • Knit cuffs and waist.
                            • Pouch pocket.
                            • Curl edged seam detail

                            ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"grayson-crewneck-sweatshirt-l-red-222","links":{},"stock":{"item_id":222,"product_id":222,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-l-red-222.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"219","_score":1,"_source":{"id":219,"sku":"MH11-M-Red","name":"Grayson Crewneck Sweatshirt -M-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                            The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                            \n

                            • Cream crewneck sweatshirt with black accents.
                            • 80% cotton/20% polyester fleece.
                            • Patterned knit hood lining.
                            • Knit cuffs and waist.
                            • Pouch pocket.
                            • Curl edged seam detail

                            ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"grayson-crewneck-sweatshirt-m-red-219","links":{},"stock":{"item_id":219,"product_id":219,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-m-red-219.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"217","_score":1,"_source":{"id":217,"sku":"MH11-S-White","name":"Grayson Crewneck Sweatshirt -S-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                            The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                            \n

                            • Cream crewneck sweatshirt with black accents.
                            • 80% cotton/20% polyester fleece.
                            • Patterned knit hood lining.
                            • Knit cuffs and waist.
                            • Pouch pocket.
                            • Curl edged seam detail

                            ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"grayson-crewneck-sweatshirt-s-white-217","links":{},"stock":{"item_id":217,"product_id":217,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-s-white-217.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"223","_score":1,"_source":{"id":223,"sku":"MH11-L-White","name":"Grayson Crewneck Sweatshirt -L-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                            The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                            \n

                            • Cream crewneck sweatshirt with black accents.
                            • 80% cotton/20% polyester fleece.
                            • Patterned knit hood lining.
                            • Knit cuffs and waist.
                            • Pouch pocket.
                            • Curl edged seam detail

                            ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"grayson-crewneck-sweatshirt-l-white-223","links":{},"stock":{"item_id":223,"product_id":223,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-l-white-223.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"225","_score":1,"_source":{"id":225,"sku":"MH11-XL-Red","name":"Grayson Crewneck Sweatshirt -XL-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                            The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                            \n

                            • Cream crewneck sweatshirt with black accents.
                            • 80% cotton/20% polyester fleece.
                            • Patterned knit hood lining.
                            • Knit cuffs and waist.
                            • Pouch pocket.
                            • Curl edged seam detail

                            ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"grayson-crewneck-sweatshirt-xl-red-225","links":{},"stock":{"item_id":225,"product_id":225,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xl-red-225.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"228","_score":1,"_source":{"id":228,"sku":"MH12-XS-Blue","name":"Ajax Full-Zip Sweatshirt -XS-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                            \n

                            • Mint striped full zip hoodie.
                            • 100% bonded polyester fleece.
                            • Pouch pocket.
                            • Rib cuffs and hem.
                            • Machine washable.

                            ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ajax-full-zip-sweatshirt-xs-blue-228","links":{},"stock":{"item_id":228,"product_id":228,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xs-blue-228.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"220","_score":1,"_source":{"id":220,"sku":"MH11-M-White","name":"Grayson Crewneck Sweatshirt -M-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                            The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                            \n

                            • Cream crewneck sweatshirt with black accents.
                            • 80% cotton/20% polyester fleece.
                            • Patterned knit hood lining.
                            • Knit cuffs and waist.
                            • Pouch pocket.
                            • Curl edged seam detail

                            ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"grayson-crewneck-sweatshirt-m-white-220","links":{},"stock":{"item_id":220,"product_id":220,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-m-white-220.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"229","_score":1,"_source":{"id":229,"sku":"MH12-XS-Green","name":"Ajax Full-Zip Sweatshirt -XS-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                            \n

                            • Mint striped full zip hoodie.
                            • 100% bonded polyester fleece.
                            • Pouch pocket.
                            • Rib cuffs and hem.
                            • Machine washable.

                            ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ajax-full-zip-sweatshirt-xs-green-229","links":{},"stock":{"item_id":229,"product_id":229,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xs-green-229.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"234","_score":1,"_source":{"id":234,"sku":"MH12-M-Blue","name":"Ajax Full-Zip Sweatshirt -M-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                            \n

                            • Mint striped full zip hoodie.
                            • 100% bonded polyester fleece.
                            • Pouch pocket.
                            • Rib cuffs and hem.
                            • Machine washable.

                            ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ajax-full-zip-sweatshirt-m-blue-234","links":{},"stock":{"item_id":234,"product_id":234,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-m-blue-234.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"195","_score":1,"_source":{"id":195,"sku":"MH09","name":"Abominable Hoodie","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                            \n

                            • Blue heather hoodie.
                            • Relaxed fit.
                            • Moisture-wicking.
                            • Machine wash/dry.

                            ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"abominable-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,159,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","pattern":"197","climate":[208,210],"slug":"abominable-hoodie-195","links":{},"stock":{"item_id":195,"product_id":195,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MH09-XS-Blue","id":180,"status":1,"name":"Abominable Hoodie-XS-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"50","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","url_key":"abominable-hoodie-xs-blue","special_price":null,"special_from_date":"2017-11-15 00:00:00","special_to_date":"2017-12-11 00:00:00","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"minimal_price":69,"regular_price":69},{"sku":"MH09-XS-Green","id":181,"status":1,"name":"Abominable Hoodie-XS-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"53","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","url_key":"abominable-hoodie-xs-green","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-XS-Red","id":182,"status":1,"name":"Abominable Hoodie-XS-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"167","color":"58","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","url_key":"abominable-hoodie-xs-red","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-S-Blue","id":183,"status":1,"name":"Abominable Hoodie-S-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"50","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","url_key":"abominable-hoodie-s-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-S-Green","id":184,"status":1,"name":"Abominable Hoodie-S-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"53","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","url_key":"abominable-hoodie-s-green","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-S-Red","id":185,"status":1,"name":"Abominable Hoodie-S-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"168","color":"58","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","url_key":"abominable-hoodie-s-red","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-M-Blue","id":186,"status":1,"name":"Abominable Hoodie-M-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"50","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","url_key":"abominable-hoodie-m-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-M-Green","id":187,"status":1,"name":"Abominable Hoodie-M-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"53","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","url_key":"abominable-hoodie-m-green","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-M-Red","id":188,"status":1,"name":"Abominable Hoodie-M-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"169","color":"58","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","url_key":"abominable-hoodie-m-red","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-L-Blue","id":189,"status":1,"name":"Abominable Hoodie-L-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"50","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","url_key":"abominable-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-L-Green","id":190,"status":1,"name":"Abominable Hoodie-L-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"53","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","url_key":"abominable-hoodie-l-green","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-L-Red","id":191,"status":1,"name":"Abominable Hoodie-L-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"170","color":"58","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","url_key":"abominable-hoodie-l-red","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-XL-Blue","id":192,"status":1,"name":"Abominable Hoodie-XL-Blue","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"50","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","url_key":"abominable-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-XL-Green","id":193,"status":1,"name":"Abominable Hoodie-XL-Green","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"53","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","url_key":"abominable-hoodie-xl-green","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69},{"sku":"MH09-XL-Red","id":194,"status":1,"name":"Abominable Hoodie-XL-Red","price":69,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["15"],"size":"171","color":"58","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","url_key":"abominable-hoodie-xl-red","msrp_display_actual_price_type":"0","final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69}],"configurable_options":[{"id":19,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":195,"attribute_code":"color"},{"id":18,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":195,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-195.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"162","_score":1,"_source":{"id":162,"sku":"MH07-XL-Green","name":"Hero Hoodie-XL-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                            \n

                            • Full-zip gray and black hoodie.
                            • Ribbed hem.
                            • Standard fit.
                            • Drawcord hood cinch.
                            • Water-resistant coating.

                            ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hero-hoodie-xl-green-162","links":{},"stock":{"item_id":162,"product_id":162,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xl-green-162.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"168","_score":1,"_source":{"id":168,"sku":"MH08-S-Purple","name":"Oslo Trek Hoodie-S-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                            \n

                            • Brown hoodie with black detail.
                            • Pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Machine wash/dry.

                            ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"oslo-trek-hoodie-s-purple-168","links":{},"stock":{"item_id":168,"product_id":168,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-s-purple-168.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"157","_score":1,"_source":{"id":157,"sku":"MH07-L-Black","name":"Hero Hoodie-L-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                            \n

                            • Full-zip gray and black hoodie.
                            • Ribbed hem.
                            • Standard fit.
                            • Drawcord hood cinch.
                            • Water-resistant coating.

                            ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hero-hoodie-l-black-157","links":{},"stock":{"item_id":157,"product_id":157,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-l-black-157.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"187","_score":1,"_source":{"id":187,"sku":"MH09-M-Green","name":"Abominable Hoodie-M-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                            \n

                            • Blue heather hoodie.
                            • Relaxed fit.
                            • Moisture-wicking.
                            • Machine wash/dry.

                            ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"abominable-hoodie-m-green-187","links":{},"stock":{"item_id":187,"product_id":187,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-m-green-187.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"193","_score":1,"_source":{"id":193,"sku":"MH09-XL-Green","name":"Abominable Hoodie-XL-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                            \n

                            • Blue heather hoodie.
                            • Relaxed fit.
                            • Moisture-wicking.
                            • Machine wash/dry.

                            ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"abominable-hoodie-xl-green-193","links":{},"stock":{"item_id":193,"product_id":193,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xl-green-193.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"174","_score":1,"_source":{"id":174,"sku":"MH08-L-Purple","name":"Oslo Trek Hoodie-L-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                            \n

                            • Brown hoodie with black detail.
                            • Pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Machine wash/dry.

                            ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"oslo-trek-hoodie-l-purple-174","links":{},"stock":{"item_id":174,"product_id":174,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-l-purple-174.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"170","_score":1,"_source":{"id":170,"sku":"MH08-M-Brown","name":"Oslo Trek Hoodie-M-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                            \n

                            • Brown hoodie with black detail.
                            • Pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Machine wash/dry.

                            ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-m-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"oslo-trek-hoodie-m-brown-170","links":{},"stock":{"item_id":170,"product_id":170,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-m-brown-170.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"169","_score":1,"_source":{"id":169,"sku":"MH08-S-Red","name":"Oslo Trek Hoodie-S-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                            \n

                            • Brown hoodie with black detail.
                            • Pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Machine wash/dry.

                            ","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"oslo-trek-hoodie-s-red-169","links":{},"stock":{"item_id":169,"product_id":169,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-s-red-169.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"186","_score":1,"_source":{"id":186,"sku":"MH09-M-Blue","name":"Abominable Hoodie-M-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                            \n

                            • Blue heather hoodie.
                            • Relaxed fit.
                            • Moisture-wicking.
                            • Machine wash/dry.

                            ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"abominable-hoodie-m-blue-186","links":{},"stock":{"item_id":186,"product_id":186,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-m-blue-186.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"158","_score":1,"_source":{"id":158,"sku":"MH07-L-Gray","name":"Hero Hoodie-L-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                            \n

                            • Full-zip gray and black hoodie.
                            • Ribbed hem.
                            • Standard fit.
                            • Drawcord hood cinch.
                            • Water-resistant coating.

                            ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hero-hoodie-l-gray-158","links":{},"stock":{"item_id":158,"product_id":158,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-l-gray-158.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"175","_score":1,"_source":{"id":175,"sku":"MH08-L-Red","name":"Oslo Trek Hoodie-L-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                            \n

                            • Brown hoodie with black detail.
                            • Pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Machine wash/dry.

                            ","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"oslo-trek-hoodie-l-red-175","links":{},"stock":{"item_id":175,"product_id":175,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-l-red-175.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"177","_score":1,"_source":{"id":177,"sku":"MH08-XL-Purple","name":"Oslo Trek Hoodie-XL-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                            \n

                            • Brown hoodie with black detail.
                            • Pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Machine wash/dry.

                            ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"oslo-trek-hoodie-xl-purple-177","links":{},"stock":{"item_id":177,"product_id":177,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xl-purple-177.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"159","_score":1,"_source":{"id":159,"sku":"MH07-L-Green","name":"Hero Hoodie-L-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                            \n

                            • Full-zip gray and black hoodie.
                            • Ribbed hem.
                            • Standard fit.
                            • Drawcord hood cinch.
                            • Water-resistant coating.

                            ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hero-hoodie-l-green-159","links":{},"stock":{"item_id":159,"product_id":159,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-l-green-159.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"161","_score":1,"_source":{"id":161,"sku":"MH07-XL-Gray","name":"Hero Hoodie-XL-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                            \n

                            • Full-zip gray and black hoodie.
                            • Ribbed hem.
                            • Standard fit.
                            • Drawcord hood cinch.
                            • Water-resistant coating.

                            ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hero-hoodie-xl-gray-161","links":{},"stock":{"item_id":161,"product_id":161,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xl-gray-161.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"156","_score":1,"_source":{"id":156,"sku":"MH07-M-Green","name":"Hero Hoodie-M-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                            \n

                            • Full-zip gray and black hoodie.
                            • Ribbed hem.
                            • Standard fit.
                            • Drawcord hood cinch.
                            • Water-resistant coating.

                            ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hero-hoodie-m-green-156","links":{},"stock":{"item_id":156,"product_id":156,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-m-green-156.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"153","_score":1,"_source":{"id":153,"sku":"MH07-S-Green","name":"Hero Hoodie-S-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                            \n

                            • Full-zip gray and black hoodie.
                            • Ribbed hem.
                            • Standard fit.
                            • Drawcord hood cinch.
                            • Water-resistant coating.

                            ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hero-hoodie-s-green-153","links":{},"stock":{"item_id":153,"product_id":153,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-s-green-153.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"152","_score":1,"_source":{"id":152,"sku":"MH07-S-Gray","name":"Hero Hoodie-S-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                            \n

                            • Full-zip gray and black hoodie.
                            • Ribbed hem.
                            • Standard fit.
                            • Drawcord hood cinch.
                            • Water-resistant coating.

                            ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hero-hoodie-s-gray-152","links":{},"stock":{"item_id":152,"product_id":152,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-s-gray-152.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"154","_score":1,"_source":{"id":154,"sku":"MH07-M-Black","name":"Hero Hoodie-M-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                            \n

                            • Full-zip gray and black hoodie.
                            • Ribbed hem.
                            • Standard fit.
                            • Drawcord hood cinch.
                            • Water-resistant coating.

                            ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hero-hoodie-m-black-154","links":{},"stock":{"item_id":154,"product_id":154,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-m-black-154.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"151","_score":1,"_source":{"id":151,"sku":"MH07-S-Black","name":"Hero Hoodie-S-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                            \n

                            • Full-zip gray and black hoodie.
                            • Ribbed hem.
                            • Standard fit.
                            • Drawcord hood cinch.
                            • Water-resistant coating.

                            ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hero-hoodie-s-black-151","links":{},"stock":{"item_id":151,"product_id":151,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-s-black-151.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"160","_score":1,"_source":{"id":160,"sku":"MH07-XL-Black","name":"Hero Hoodie-XL-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                            \n

                            • Full-zip gray and black hoodie.
                            • Ribbed hem.
                            • Standard fit.
                            • Drawcord hood cinch.
                            • Water-resistant coating.

                            ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hero-hoodie-xl-black-160","links":{},"stock":{"item_id":160,"product_id":160,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xl-black-160.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"166","_score":1,"_source":{"id":166,"sku":"MH08-XS-Red","name":"Oslo Trek Hoodie-XS-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                            \n

                            • Brown hoodie with black detail.
                            • Pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Machine wash/dry.

                            ","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"oslo-trek-hoodie-xs-red-166","links":{},"stock":{"item_id":166,"product_id":166,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xs-red-166.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"171","_score":1,"_source":{"id":171,"sku":"MH08-M-Purple","name":"Oslo Trek Hoodie-M-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                            \n

                            • Brown hoodie with black detail.
                            • Pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Machine wash/dry.

                            ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"oslo-trek-hoodie-m-purple-171","links":{},"stock":{"item_id":171,"product_id":171,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-m-purple-171.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"165","_score":1,"_source":{"id":165,"sku":"MH08-XS-Purple","name":"Oslo Trek Hoodie-XS-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                            \n

                            • Brown hoodie with black detail.
                            • Pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Machine wash/dry.

                            ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"oslo-trek-hoodie-xs-purple-165","links":{},"stock":{"item_id":165,"product_id":165,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xs-purple-165.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"155","_score":1,"_source":{"id":155,"sku":"MH07-M-Gray","name":"Hero Hoodie-M-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                            \n

                            • Full-zip gray and black hoodie.
                            • Ribbed hem.
                            • Standard fit.
                            • Drawcord hood cinch.
                            • Water-resistant coating.

                            ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hero-hoodie-m-gray-155","links":{},"stock":{"item_id":155,"product_id":155,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-m-gray-155.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"164","_score":1,"_source":{"id":164,"sku":"MH08-XS-Brown","name":"Oslo Trek Hoodie-XS-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                            \n

                            • Brown hoodie with black detail.
                            • Pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Machine wash/dry.

                            ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xs-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"oslo-trek-hoodie-xs-brown-164","links":{},"stock":{"item_id":164,"product_id":164,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xs-brown-164.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"178","_score":1,"_source":{"id":178,"sku":"MH08-XL-Red","name":"Oslo Trek Hoodie-XL-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                            \n

                            • Brown hoodie with black detail.
                            • Pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Machine wash/dry.

                            ","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"oslo-trek-hoodie-xl-red-178","links":{},"stock":{"item_id":178,"product_id":178,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xl-red-178.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"182","_score":1,"_source":{"id":182,"sku":"MH09-XS-Red","name":"Abominable Hoodie-XS-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                            \n

                            • Blue heather hoodie.
                            • Relaxed fit.
                            • Moisture-wicking.
                            • Machine wash/dry.

                            ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"abominable-hoodie-xs-red-182","links":{},"stock":{"item_id":182,"product_id":182,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xs-red-182.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"189","_score":1,"_source":{"id":189,"sku":"MH09-L-Blue","name":"Abominable Hoodie-L-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                            \n

                            • Blue heather hoodie.
                            • Relaxed fit.
                            • Moisture-wicking.
                            • Machine wash/dry.

                            ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"abominable-hoodie-l-blue-189","links":{},"stock":{"item_id":189,"product_id":189,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-l-blue-189.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"167","_score":1,"_source":{"id":167,"sku":"MH08-S-Brown","name":"Oslo Trek Hoodie-S-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                            \n

                            • Brown hoodie with black detail.
                            • Pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Machine wash/dry.

                            ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-s-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"oslo-trek-hoodie-s-brown-167","links":{},"stock":{"item_id":167,"product_id":167,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-s-brown-167.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"172","_score":1,"_source":{"id":172,"sku":"MH08-M-Red","name":"Oslo Trek Hoodie-M-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2019-03-22 08:35:33","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":30,"max_price":30,"max_regular_price":30,"minimal_regular_price":30,"special_price":"30.0000","minimal_price":30,"regular_price":42,"description":"

                            Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                            \r\n

                            • Brown hoodie with black detail.
                            • Pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Machine wash/dry.

                            ","special_from_date":"2019-03-22 08:35:33","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-m-red","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"169","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"oslo-trek-hoodie-m-red-172","links":{},"stock":{"item_id":172,"product_id":172,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-m-red-172.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"173","_score":1,"_source":{"id":173,"sku":"MH08-L-Brown","name":"Oslo Trek Hoodie-L-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                            \n

                            • Brown hoodie with black detail.
                            • Pullover.
                            • Adjustable drawstring hood.
                            • Ribbed cuffs/waistband.
                            • Machine wash/dry.

                            ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-l-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"oslo-trek-hoodie-l-brown-173","links":{},"stock":{"item_id":173,"product_id":173,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-l-brown-173.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"184","_score":1,"_source":{"id":184,"sku":"MH09-S-Green","name":"Abominable Hoodie-S-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                            \n

                            • Blue heather hoodie.
                            • Relaxed fit.
                            • Moisture-wicking.
                            • Machine wash/dry.

                            ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"abominable-hoodie-s-green-184","links":{},"stock":{"item_id":184,"product_id":184,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-s-green-184.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"104","_score":1,"_source":{"id":104,"sku":"MH04-S-White","name":"Frankie Sweatshirt-S-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                            \n

                            • Light green crewneck sweatshirt.
                            • Hand pockets.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"frankie-sweatshirt-s-white-104","links":{},"stock":{"item_id":104,"product_id":104,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-s-white-104.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"118","_score":1,"_source":{"id":118,"sku":"MH05-XS-White","name":"Hollister Backyard Sweatshirt-XS-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                            \n

                            • Cream crewneck sweatshirt with navy sleeves/trim.
                            • Relaxed fit.
                            • Ribbed cuffs and hem.
                            • Machine wash/dry.

                            ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hollister-backyard-sweatshirt-xs-white-118","links":{},"stock":{"item_id":118,"product_id":118,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xs-white-118.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"120","_score":1,"_source":{"id":120,"sku":"MH05-S-Red","name":"Hollister Backyard Sweatshirt-S-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                            Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                            \n

                            • Cream crewneck sweatshirt with navy sleeves/trim.
                            • Relaxed fit.
                            • Ribbed cuffs and hem.
                            • Machine wash/dry.

                            ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hollister-backyard-sweatshirt-s-red-120","links":{},"stock":{"item_id":120,"product_id":120,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15","path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-s-red-120.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"450","_score":1,"_source":{"id":450,"sku":"MS04-XL-Red","name":"Gobi HeatTec® Tee-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                            \n

                            • Orange micropolyester shirt.
                            • HeatTec® wicking fabric.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gobi-heattec-and-reg-tee-xl-red-450","links":{},"stock":{"item_id":450,"product_id":450,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xl-red-450.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"433","_score":1,"_source":{"id":433,"sku":"MJ12-XL-Blue","name":"Proteus Fitness Jackshirt-XL-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                            \n

                            • 1/4 zip. Stand-up collar.
                            • Machine wash/dry.
                            • Quilted inner layer.

                            ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"proteus-fitness-jackshirt-xl-blue-433","links":{},"stock":{"item_id":433,"product_id":433,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xl-blue-433.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"432","_score":1,"_source":{"id":432,"sku":"MJ12-XL-Black","name":"Proteus Fitness Jackshirt-XL-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                            \n

                            • 1/4 zip. Stand-up collar.
                            • Machine wash/dry.
                            • Quilted inner layer.

                            ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"proteus-fitness-jackshirt-xl-black-432","links":{},"stock":{"item_id":432,"product_id":432,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xl-black-432.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"428","_score":1,"_source":{"id":428,"sku":"MJ12-M-Orange","name":"Proteus Fitness Jackshirt-M-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                            \n

                            • 1/4 zip. Stand-up collar.
                            • Machine wash/dry.
                            • Quilted inner layer.

                            ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"proteus-fitness-jackshirt-m-orange-428","links":{},"stock":{"item_id":428,"product_id":428,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-m-orange-428.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"446","_score":1,"_source":{"id":446,"sku":"MS04-L-Orange","name":"Gobi HeatTec® Tee-L-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                            \n

                            • Orange micropolyester shirt.
                            • HeatTec® wicking fabric.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gobi-heattec-and-reg-tee-l-orange-446","links":{},"stock":{"item_id":446,"product_id":446,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-l-orange-446.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"444","_score":1,"_source":{"id":444,"sku":"MS04-M-Red","name":"Gobi HeatTec® Tee-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                            \n

                            • Orange micropolyester shirt.
                            • HeatTec® wicking fabric.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gobi-heattec-and-reg-tee-m-red-444","links":{},"stock":{"item_id":444,"product_id":444,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-m-red-444.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"441","_score":1,"_source":{"id":441,"sku":"MS04-S-Red","name":"Gobi HeatTec® Tee-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                            \n

                            • Orange micropolyester shirt.
                            • HeatTec® wicking fabric.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gobi-heattec-and-reg-tee-s-red-441","links":{},"stock":{"item_id":441,"product_id":441,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-s-red-441.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"447","_score":1,"_source":{"id":447,"sku":"MS04-L-Red","name":"Gobi HeatTec® Tee-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                            \n

                            • Orange micropolyester shirt.
                            • HeatTec® wicking fabric.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gobi-heattec-and-reg-tee-l-red-447","links":{},"stock":{"item_id":447,"product_id":447,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-l-red-447.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"418","_score":1,"_source":{"id":418,"sku":"MJ03-XL-Red","name":"Montana Wind Jacket-XL-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                            \n

                            Adjustable hood.
                            Split pocket.
                            Thumb holes.
                            Machine wash/hang to dry.

                            ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"montana-wind-jacket-xl-red-418","links":{},"stock":{"item_id":418,"product_id":418,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xl-red-418.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"436","_score":1,"_source":{"id":436,"sku":"MS04-XS-Black","name":"Gobi HeatTec® Tee-XS-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                            \n

                            • Orange micropolyester shirt.
                            • HeatTec® wicking fabric.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gobi-heattec-and-reg-tee-xs-black-436","links":{},"stock":{"item_id":436,"product_id":436,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xs-black-436.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"439","_score":1,"_source":{"id":439,"sku":"MS04-S-Black","name":"Gobi HeatTec® Tee-S-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                            \n

                            • Orange micropolyester shirt.
                            • HeatTec® wicking fabric.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gobi-heattec-and-reg-tee-s-black-439","links":{},"stock":{"item_id":439,"product_id":439,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-s-black-439.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"445","_score":1,"_source":{"id":445,"sku":"MS04-L-Black","name":"Gobi HeatTec® Tee-L-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                            \n

                            • Orange micropolyester shirt.
                            • HeatTec® wicking fabric.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gobi-heattec-and-reg-tee-l-black-445","links":{},"stock":{"item_id":445,"product_id":445,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-l-black-445.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"442","_score":1,"_source":{"id":442,"sku":"MS04-M-Black","name":"Gobi HeatTec® Tee-M-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                            \n

                            • Orange micropolyester shirt.
                            • HeatTec® wicking fabric.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gobi-heattec-and-reg-tee-m-black-442","links":{},"stock":{"item_id":442,"product_id":442,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-m-black-442.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"449","_score":1,"_source":{"id":449,"sku":"MS04-XL-Orange","name":"Gobi HeatTec® Tee-XL-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                            \n

                            • Orange micropolyester shirt.
                            • HeatTec® wicking fabric.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gobi-heattec-and-reg-tee-xl-orange-449","links":{},"stock":{"item_id":449,"product_id":449,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xl-orange-449.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"419","_score":1,"_source":{"id":419,"sku":"MJ03","name":"Montana Wind Jacket","attribute_set_id":9,"price":49,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                            \n

                            Adjustable hood.
                            Split pocket.
                            Thumb holes.
                            Machine wash/hang to dry.

                            ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"montana-wind-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":[120,121,124,126,129],"pattern":"197","climate":[204,206,208,210],"slug":"montana-wind-jacket-419","links":{},"stock":{"item_id":419,"product_id":419,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ03-XS-Black","id":404,"status":1,"name":"Montana Wind Jacket-XS-Black","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"49","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","url_key":"montana-wind-jacket-xs-black","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-XS-Green","id":405,"status":1,"name":"Montana Wind Jacket-XS-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"53","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","url_key":"montana-wind-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-XS-Red","id":406,"status":1,"name":"Montana Wind Jacket-XS-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"58","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","url_key":"montana-wind-jacket-xs-red","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-S-Black","id":407,"status":1,"name":"Montana Wind Jacket-S-Black","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"49","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","url_key":"montana-wind-jacket-s-black","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-S-Green","id":408,"status":1,"name":"Montana Wind Jacket-S-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"53","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","url_key":"montana-wind-jacket-s-green","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-S-Red","id":409,"status":1,"name":"Montana Wind Jacket-S-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"58","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","url_key":"montana-wind-jacket-s-red","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-M-Black","id":410,"status":1,"name":"Montana Wind Jacket-M-Black","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"49","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","url_key":"montana-wind-jacket-m-black","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-M-Green","id":411,"status":1,"name":"Montana Wind Jacket-M-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"53","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","url_key":"montana-wind-jacket-m-green","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-M-Red","id":412,"status":1,"name":"Montana Wind Jacket-M-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"58","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","url_key":"montana-wind-jacket-m-red","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-L-Black","id":413,"status":1,"name":"Montana Wind Jacket-L-Black","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"49","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","url_key":"montana-wind-jacket-l-black","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-L-Green","id":414,"status":1,"name":"Montana Wind Jacket-L-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"53","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","url_key":"montana-wind-jacket-l-green","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-L-Red","id":415,"status":1,"name":"Montana Wind Jacket-L-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"58","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","url_key":"montana-wind-jacket-l-red","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-XL-Black","id":416,"status":1,"name":"Montana Wind Jacket-XL-Black","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"49","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","url_key":"montana-wind-jacket-xl-black","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-XL-Green","id":417,"status":1,"name":"Montana Wind Jacket-XL-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"53","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","url_key":"montana-wind-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"MJ03-XL-Red","id":418,"status":1,"name":"Montana Wind Jacket-XL-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"58","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","url_key":"montana-wind-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49}],"configurable_options":[{"id":47,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":419,"attribute_code":"color"},{"id":46,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":419,"attribute_code":"size"}],"color_options":[49,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-419.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"435","_score":1,"_source":{"id":435,"sku":"MJ12","name":"Proteus Fitness Jackshirt","attribute_set_id":9,"price":45,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                            \n

                            • 1/4 zip. Stand-up collar.
                            • Machine wash/dry.
                            • Quilted inner layer.

                            ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"proteus-fitness-jackshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,145,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[117,122,125,128],"pattern":"197","climate":[202,204,205,208],"slug":"proteus-fitness-jackshirt-435","links":{},"stock":{"item_id":435,"product_id":435,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ12-XS-Black","id":420,"status":1,"name":"Proteus Fitness Jackshirt-XS-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"49","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","url_key":"proteus-fitness-jackshirt-xs-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-XS-Blue","id":421,"status":1,"name":"Proteus Fitness Jackshirt-XS-Blue","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"50","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","url_key":"proteus-fitness-jackshirt-xs-blue","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-XS-Orange","id":422,"status":1,"name":"Proteus Fitness Jackshirt-XS-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"56","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","url_key":"proteus-fitness-jackshirt-xs-orange","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-S-Black","id":423,"status":1,"name":"Proteus Fitness Jackshirt-S-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"49","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","url_key":"proteus-fitness-jackshirt-s-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-S-Blue","id":424,"status":1,"name":"Proteus Fitness Jackshirt-S-Blue","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"50","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","url_key":"proteus-fitness-jackshirt-s-blue","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-S-Orange","id":425,"status":1,"name":"Proteus Fitness Jackshirt-S-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"56","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","url_key":"proteus-fitness-jackshirt-s-orange","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-M-Black","id":426,"status":1,"name":"Proteus Fitness Jackshirt-M-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"49","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","url_key":"proteus-fitness-jackshirt-m-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-M-Blue","id":427,"status":1,"name":"Proteus Fitness Jackshirt-M-Blue","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"50","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","url_key":"proteus-fitness-jackshirt-m-blue","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-M-Orange","id":428,"status":1,"name":"Proteus Fitness Jackshirt-M-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"56","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","url_key":"proteus-fitness-jackshirt-m-orange","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-L-Black","id":429,"status":1,"name":"Proteus Fitness Jackshirt-L-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"49","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","url_key":"proteus-fitness-jackshirt-l-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-L-Blue","id":430,"status":1,"name":"Proteus Fitness Jackshirt-L-Blue","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"50","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","url_key":"proteus-fitness-jackshirt-l-blue","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-L-Orange","id":431,"status":1,"name":"Proteus Fitness Jackshirt-L-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"56","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","url_key":"proteus-fitness-jackshirt-l-orange","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-XL-Black","id":432,"status":1,"name":"Proteus Fitness Jackshirt-XL-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"49","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","url_key":"proteus-fitness-jackshirt-xl-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-XL-Blue","id":433,"status":1,"name":"Proteus Fitness Jackshirt-XL-Blue","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"50","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","url_key":"proteus-fitness-jackshirt-xl-blue","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MJ12-XL-Orange","id":434,"status":1,"name":"Proteus Fitness Jackshirt-XL-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"56","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","url_key":"proteus-fitness-jackshirt-xl-orange","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45}],"configurable_options":[{"id":49,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":435,"attribute_code":"color"},{"id":48,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":435,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-435.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"389","_score":1,"_source":{"id":389,"sku":"MJ06-XS-Green","name":"Jupiter All-Weather Trainer -XS-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                            Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                            \n

                            • Relaxed fit.
                            • Hand pockets.
                            • Machine wash/dry.
                            • Reflective safety trim.

                            ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jupiter-all-weather-trainer-xs-green-389","links":{},"stock":{"item_id":389,"product_id":389,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xs-green-389.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"388","_score":1,"_source":{"id":388,"sku":"MJ06-XS-Blue","name":"Jupiter All-Weather Trainer -XS-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                            Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                            \n

                            • Relaxed fit.
                            • Hand pockets.
                            • Machine wash/dry.
                            • Reflective safety trim.

                            ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jupiter-all-weather-trainer-xs-blue-388","links":{},"stock":{"item_id":388,"product_id":388,"stock_id":1,"qty":49,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xs-blue-388.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"399","_score":1,"_source":{"id":399,"sku":"MJ06-L-Purple","name":"Jupiter All-Weather Trainer -L-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                            Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                            \n

                            • Relaxed fit.
                            • Hand pockets.
                            • Machine wash/dry.
                            • Reflective safety trim.

                            ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jupiter-all-weather-trainer-l-purple-399","links":{},"stock":{"item_id":399,"product_id":399,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-l-purple-399.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"355","_score":1,"_source":{"id":355,"sku":"MJ09","name":"Taurus Elements Shell","attribute_set_id":9,"price":65,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                            What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                            \n

                            • Yellow 1/4 zip pullover.
                            • Two chest pockets.
                            • Standard fit.
                            • Waterproof, breathable, seam sealed.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"taurus-elements-shell","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,149,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[118,120,123,126,128],"pattern":"197","climate":[204,206,207,208,210],"slug":"taurus-elements-shell-355","links":{},"stock":{"item_id":355,"product_id":355,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ09-XS-Blue","id":340,"status":1,"name":"Taurus Elements Shell-XS-Blue","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"50","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","url_key":"taurus-elements-shell-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ09-XS-White","id":341,"status":1,"name":"Taurus Elements Shell-XS-White","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"59","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","url_key":"taurus-elements-shell-xs-white","msrp_display_actual_price_type":"0"},{"sku":"MJ09-XS-Yellow","id":342,"status":1,"name":"Taurus Elements Shell-XS-Yellow","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"60","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","url_key":"taurus-elements-shell-xs-yellow","msrp_display_actual_price_type":"0"},{"sku":"MJ09-S-Blue","id":343,"status":1,"name":"Taurus Elements Shell-S-Blue","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"50","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","url_key":"taurus-elements-shell-s-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ09-S-White","id":344,"status":1,"name":"Taurus Elements Shell-S-White","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"59","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","url_key":"taurus-elements-shell-s-white","msrp_display_actual_price_type":"0"},{"sku":"MJ09-S-Yellow","id":345,"status":1,"name":"Taurus Elements Shell-S-Yellow","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"60","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","url_key":"taurus-elements-shell-s-yellow","msrp_display_actual_price_type":"0"},{"sku":"MJ09-M-Blue","id":346,"status":1,"name":"Taurus Elements Shell-M-Blue","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"50","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","url_key":"taurus-elements-shell-m-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ09-M-White","id":347,"status":1,"name":"Taurus Elements Shell-M-White","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"59","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","url_key":"taurus-elements-shell-m-white","msrp_display_actual_price_type":"0"},{"sku":"MJ09-M-Yellow","id":348,"status":1,"name":"Taurus Elements Shell-M-Yellow","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"60","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","url_key":"taurus-elements-shell-m-yellow","msrp_display_actual_price_type":"0"},{"sku":"MJ09-L-Blue","id":349,"status":1,"name":"Taurus Elements Shell-L-Blue","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"50","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","url_key":"taurus-elements-shell-l-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ09-L-White","id":350,"status":1,"name":"Taurus Elements Shell-L-White","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"59","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","url_key":"taurus-elements-shell-l-white","msrp_display_actual_price_type":"0"},{"sku":"MJ09-L-Yellow","id":351,"status":1,"name":"Taurus Elements Shell-L-Yellow","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"60","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","url_key":"taurus-elements-shell-l-yellow","msrp_display_actual_price_type":"0","final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65},{"sku":"MJ09-XL-Blue","id":352,"status":1,"name":"Taurus Elements Shell-XL-Blue","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"50","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","url_key":"taurus-elements-shell-xl-blue","msrp_display_actual_price_type":"0","final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65},{"sku":"MJ09-XL-White","id":353,"status":1,"name":"Taurus Elements Shell-XL-White","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"59","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","url_key":"taurus-elements-shell-xl-white","msrp_display_actual_price_type":"0","final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65},{"sku":"MJ09-XL-Yellow","id":354,"status":1,"name":"Taurus Elements Shell-XL-Yellow","price":65,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"60","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","url_key":"taurus-elements-shell-xl-yellow","msrp_display_actual_price_type":"0","final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65}],"configurable_options":[{"id":39,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":355,"attribute_code":"color"},{"id":38,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":355,"attribute_code":"size"}],"color_options":[50,59,60],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-355.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"371","_score":1,"_source":{"id":371,"sku":"MJ10","name":"Mars HeatTech™ Pullover","attribute_set_id":9,"price":66,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                            \n

                            • Red 1/4 zip pullover.
                            • Adjustable VELCRO® sleeve cuffs.
                            • Two hand pockets.
                            • Napoleon pocket.
                            • Machine wash/dry

                            ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mars-heattech-trade-pullover","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[120,123,124,126,128],"pattern":"197","climate":[202,204,206,207,208,210],"slug":"mars-heattech-and-trade-pullover-371","links":{},"stock":{"item_id":371,"product_id":371,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ10-XS-Black","id":356,"status":1,"name":"Mars HeatTech™ Pullover-XS-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"49","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","url_key":"mars-heattech-trade-pullover-xs-black","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-XS-Orange","id":357,"status":1,"name":"Mars HeatTech™ Pullover-XS-Orange","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"56","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","url_key":"mars-heattech-trade-pullover-xs-orange","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-XS-Red","id":358,"status":1,"name":"Mars HeatTech™ Pullover-XS-Red","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"58","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","url_key":"mars-heattech-trade-pullover-xs-red","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-S-Black","id":359,"status":1,"name":"Mars HeatTech™ Pullover-S-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"49","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","url_key":"mars-heattech-trade-pullover-s-black","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-S-Orange","id":360,"status":1,"name":"Mars HeatTech™ Pullover-S-Orange","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"56","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","url_key":"mars-heattech-trade-pullover-s-orange","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-S-Red","id":361,"status":1,"name":"Mars HeatTech™ Pullover-S-Red","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"58","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","url_key":"mars-heattech-trade-pullover-s-red","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-M-Black","id":362,"status":1,"name":"Mars HeatTech™ Pullover-M-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"49","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","url_key":"mars-heattech-trade-pullover-m-black","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-M-Orange","id":363,"status":1,"name":"Mars HeatTech™ Pullover-M-Orange","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"56","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","url_key":"mars-heattech-trade-pullover-m-orange","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-M-Red","id":364,"status":1,"name":"Mars HeatTech™ Pullover-M-Red","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"58","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","url_key":"mars-heattech-trade-pullover-m-red","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-L-Black","id":365,"status":1,"name":"Mars HeatTech™ Pullover-L-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"49","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","url_key":"mars-heattech-trade-pullover-l-black","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-L-Orange","id":366,"status":1,"name":"Mars HeatTech™ Pullover-L-Orange","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"56","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","url_key":"mars-heattech-trade-pullover-l-orange","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-L-Red","id":367,"status":1,"name":"Mars HeatTech™ Pullover-L-Red","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"58","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","url_key":"mars-heattech-trade-pullover-l-red","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-XL-Black","id":368,"status":1,"name":"Mars HeatTech™ Pullover-XL-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"49","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","url_key":"mars-heattech-trade-pullover-xl-black","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-XL-Orange","id":369,"status":1,"name":"Mars HeatTech™ Pullover-XL-Orange","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"56","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","url_key":"mars-heattech-trade-pullover-xl-orange","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MJ10-XL-Red","id":370,"status":1,"name":"Mars HeatTech™ Pullover-XL-Red","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"58","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","url_key":"mars-heattech-trade-pullover-xl-red","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66}],"configurable_options":[{"id":41,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":371,"attribute_code":"color"},{"id":40,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":371,"attribute_code":"size"}],"color_options":[49,56,58],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-371.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"387","_score":1,"_source":{"id":387,"sku":"MJ11","name":"Typhon Performance Fleece-lined Jacket","attribute_set_id":9,"price":60,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                            \n

                            • Black full-zip flight jacket.
                            • Cocona® wicking fiber.
                            • Machine wash/dry.

                            ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"typhon-performance-fleece-lined-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,37,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[117,122,124,126,129],"pattern":"197","climate":[202,208,210,211],"slug":"typhon-performance-fleece-lined-jacket-387","links":{},"stock":{"item_id":387,"product_id":387,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ11-XS-Black","id":372,"status":1,"name":"Typhon Performance Fleece-lined Jacket-XS-Black","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"49","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MJ11-XS-Green","id":373,"status":1,"name":"Typhon Performance Fleece-lined Jacket-XS-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"53","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-XS-Red","id":374,"status":1,"name":"Typhon Performance Fleece-lined Jacket-XS-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"58","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-xs-red","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-S-Black","id":375,"status":1,"name":"Typhon Performance Fleece-lined Jacket-S-Black","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"49","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-s-black","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-S-Green","id":376,"status":1,"name":"Typhon Performance Fleece-lined Jacket-S-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"53","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-s-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-S-Red","id":377,"status":1,"name":"Typhon Performance Fleece-lined Jacket-S-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"58","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-s-red","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-M-Black","id":378,"status":1,"name":"Typhon Performance Fleece-lined Jacket-M-Black","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"49","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-m-black","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-M-Green","id":379,"status":1,"name":"Typhon Performance Fleece-lined Jacket-M-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"53","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-m-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-M-Red","id":380,"status":1,"name":"Typhon Performance Fleece-lined Jacket-M-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"58","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-m-red","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-L-Black","id":381,"status":1,"name":"Typhon Performance Fleece-lined Jacket-L-Black","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"49","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-l-black","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-L-Green","id":382,"status":1,"name":"Typhon Performance Fleece-lined Jacket-L-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"53","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-l-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-L-Red","id":383,"status":1,"name":"Typhon Performance Fleece-lined Jacket-L-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"58","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-l-red","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-XL-Black","id":384,"status":1,"name":"Typhon Performance Fleece-lined Jacket-XL-Black","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"49","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-xl-black","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-XL-Green","id":385,"status":1,"name":"Typhon Performance Fleece-lined Jacket-XL-Green","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"53","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60},{"sku":"MJ11-XL-Red","id":386,"status":1,"name":"Typhon Performance Fleece-lined Jacket-XL-Red","price":60,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"58","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","url_key":"typhon-performance-fleece-lined-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60}],"configurable_options":[{"id":43,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":387,"attribute_code":"color"},{"id":42,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":387,"attribute_code":"size"}],"color_options":[49,53,58],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-387.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"329","_score":1,"_source":{"id":329,"sku":"MJ08-S-Green","name":"Lando Gym Jacket-S-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                            The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                            \n

                            • Gray polyester/spandex full zip jacket with orange lining.
                            • Right pocket device storage.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lando-gym-jacket-s-green-329","links":{},"stock":{"item_id":329,"product_id":329,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-s-green-329.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"327","_score":1,"_source":{"id":327,"sku":"MJ08-S-Blue","name":"Lando Gym Jacket-S-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                            The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                            \n

                            • Gray polyester/spandex full zip jacket with orange lining.
                            • Right pocket device storage.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lando-gym-jacket-s-blue-327","links":{},"stock":{"item_id":327,"product_id":327,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-s-blue-327.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"346","_score":1,"_source":{"id":346,"sku":"MJ09-M-Blue","name":"Taurus Elements Shell-M-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                            What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                            \n

                            • Yellow 1/4 zip pullover.
                            • Two chest pockets.
                            • Standard fit.
                            • Waterproof, breathable, seam sealed.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"taurus-elements-shell-m-blue-346","links":{},"stock":{"item_id":346,"product_id":346,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-m-blue-346.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"333","_score":1,"_source":{"id":333,"sku":"MJ08-L-Blue","name":"Lando Gym Jacket-L-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                            The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                            \n

                            • Gray polyester/spandex full zip jacket with orange lining.
                            • Right pocket device storage.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lando-gym-jacket-l-blue-333","links":{},"stock":{"item_id":333,"product_id":333,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-l-blue-333.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"337","_score":1,"_source":{"id":337,"sku":"MJ08-XL-Gray","name":"Lando Gym Jacket-XL-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                            The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                            \n

                            • Gray polyester/spandex full zip jacket with orange lining.
                            • Right pocket device storage.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lando-gym-jacket-xl-gray-337","links":{},"stock":{"item_id":337,"product_id":337,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xl-gray-337.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"340","_score":1,"_source":{"id":340,"sku":"MJ09-XS-Blue","name":"Taurus Elements Shell-XS-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                            What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                            \n

                            • Yellow 1/4 zip pullover.
                            • Two chest pockets.
                            • Standard fit.
                            • Waterproof, breathable, seam sealed.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"taurus-elements-shell-xs-blue-340","links":{},"stock":{"item_id":340,"product_id":340,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xs-blue-340.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"342","_score":1,"_source":{"id":342,"sku":"MJ09-XS-Yellow","name":"Taurus Elements Shell-XS-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                            What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                            \n

                            • Yellow 1/4 zip pullover.
                            • Two chest pockets.
                            • Standard fit.
                            • Waterproof, breathable, seam sealed.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"taurus-elements-shell-xs-yellow-342","links":{},"stock":{"item_id":342,"product_id":342,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xs-yellow-342.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"349","_score":1,"_source":{"id":349,"sku":"MJ09-L-Blue","name":"Taurus Elements Shell-L-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                            What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                            \n

                            • Yellow 1/4 zip pullover.
                            • Two chest pockets.
                            • Standard fit.
                            • Waterproof, breathable, seam sealed.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"taurus-elements-shell-l-blue-349","links":{},"stock":{"item_id":349,"product_id":349,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-l-blue-349.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"341","_score":1,"_source":{"id":341,"sku":"MJ09-XS-White","name":"Taurus Elements Shell-XS-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                            What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                            \n

                            • Yellow 1/4 zip pullover.
                            • Two chest pockets.
                            • Standard fit.
                            • Waterproof, breathable, seam sealed.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"taurus-elements-shell-xs-white-341","links":{},"stock":{"item_id":341,"product_id":341,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xs-white-341.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"347","_score":1,"_source":{"id":347,"sku":"MJ09-M-White","name":"Taurus Elements Shell-M-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                            What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                            \n

                            • Yellow 1/4 zip pullover.
                            • Two chest pockets.
                            • Standard fit.
                            • Waterproof, breathable, seam sealed.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"taurus-elements-shell-m-white-347","links":{},"stock":{"item_id":347,"product_id":347,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-m-white-347.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"344","_score":1,"_source":{"id":344,"sku":"MJ09-S-White","name":"Taurus Elements Shell-S-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                            What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                            \n

                            • Yellow 1/4 zip pullover.
                            • Two chest pockets.
                            • Standard fit.
                            • Waterproof, breathable, seam sealed.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"taurus-elements-shell-s-white-344","links":{},"stock":{"item_id":344,"product_id":344,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-s-white-344.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"343","_score":1,"_source":{"id":343,"sku":"MJ09-S-Blue","name":"Taurus Elements Shell-S-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                            What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                            \n

                            • Yellow 1/4 zip pullover.
                            • Two chest pockets.
                            • Standard fit.
                            • Waterproof, breathable, seam sealed.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"taurus-elements-shell-s-blue-343","links":{},"stock":{"item_id":343,"product_id":343,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-s-blue-343.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"350","_score":1,"_source":{"id":350,"sku":"MJ09-L-White","name":"Taurus Elements Shell-L-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                            What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                            \n

                            • Yellow 1/4 zip pullover.
                            • Two chest pockets.
                            • Standard fit.
                            • Waterproof, breathable, seam sealed.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"taurus-elements-shell-l-white-350","links":{},"stock":{"item_id":350,"product_id":350,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-l-white-350.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"348","_score":1,"_source":{"id":348,"sku":"MJ09-M-Yellow","name":"Taurus Elements Shell-M-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                            What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                            \n

                            • Yellow 1/4 zip pullover.
                            • Two chest pockets.
                            • Standard fit.
                            • Waterproof, breathable, seam sealed.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"taurus-elements-shell-m-yellow-348","links":{},"stock":{"item_id":348,"product_id":348,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-m-yellow-348.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"345","_score":1,"_source":{"id":345,"sku":"MJ09-S-Yellow","name":"Taurus Elements Shell-S-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                            What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                            \n

                            • Yellow 1/4 zip pullover.
                            • Two chest pockets.
                            • Standard fit.
                            • Waterproof, breathable, seam sealed.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"taurus-elements-shell-s-yellow-345","links":{},"stock":{"item_id":345,"product_id":345,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-s-yellow-345.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"307","_score":1,"_source":{"id":307,"sku":"MJ04","name":"Kenobi Trail Jacket","attribute_set_id":9,"price":47,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                            Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                            \n

                            • Black 1/4 zip pullover with royal zipper.
                            • Adjustable hood and sleeve cuffs.
                            • Machine wash/air dry.

                            ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"kenobi-trail-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,145,37],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[117,125,128],"pattern":"197","climate":[203,204,208,210,211],"slug":"kenobi-trail-jacket-307","links":{},"stock":{"item_id":307,"product_id":307,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ04-XS-Black","id":292,"status":1,"name":"Kenobi Trail Jacket-XS-Black","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"167","color":"49","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","url_key":"kenobi-trail-jacket-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MJ04-XS-Blue","id":293,"status":1,"name":"Kenobi Trail Jacket-XS-Blue","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"167","color":"50","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","url_key":"kenobi-trail-jacket-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ04-XS-Purple","id":294,"status":1,"name":"Kenobi Trail Jacket-XS-Purple","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"167","color":"57","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","url_key":"kenobi-trail-jacket-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ04-S-Black","id":295,"status":1,"name":"Kenobi Trail Jacket-S-Black","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"168","color":"49","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","url_key":"kenobi-trail-jacket-s-black","msrp_display_actual_price_type":"0"},{"sku":"MJ04-S-Blue","id":296,"status":1,"name":"Kenobi Trail Jacket-S-Blue","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"168","color":"50","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","url_key":"kenobi-trail-jacket-s-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ04-S-Purple","id":297,"status":1,"name":"Kenobi Trail Jacket-S-Purple","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"168","color":"57","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","url_key":"kenobi-trail-jacket-s-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ04-M-Black","id":298,"status":1,"name":"Kenobi Trail Jacket-M-Black","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"169","color":"49","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","url_key":"kenobi-trail-jacket-m-black","msrp_display_actual_price_type":"0"},{"sku":"MJ04-M-Blue","id":299,"status":1,"name":"Kenobi Trail Jacket-M-Blue","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"169","color":"50","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","url_key":"kenobi-trail-jacket-m-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ04-M-Purple","id":300,"status":1,"name":"Kenobi Trail Jacket-M-Purple","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"169","color":"57","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","url_key":"kenobi-trail-jacket-m-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ04-L-Black","id":301,"status":1,"name":"Kenobi Trail Jacket-L-Black","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"170","color":"49","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","url_key":"kenobi-trail-jacket-l-black","msrp_display_actual_price_type":"0","final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47},{"sku":"MJ04-L-Blue","id":302,"status":1,"name":"Kenobi Trail Jacket-L-Blue","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"170","color":"50","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","url_key":"kenobi-trail-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47},{"sku":"MJ04-L-Purple","id":303,"status":1,"name":"Kenobi Trail Jacket-L-Purple","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"170","color":"57","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","url_key":"kenobi-trail-jacket-l-purple","msrp_display_actual_price_type":"0","final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47},{"sku":"MJ04-XL-Black","id":304,"status":1,"name":"Kenobi Trail Jacket-XL-Black","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"171","color":"49","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","url_key":"kenobi-trail-jacket-xl-black","msrp_display_actual_price_type":"0","final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47},{"sku":"MJ04-XL-Blue","id":305,"status":1,"name":"Kenobi Trail Jacket-XL-Blue","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"171","color":"50","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","url_key":"kenobi-trail-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47},{"sku":"MJ04-XL-Purple","id":306,"status":1,"name":"Kenobi Trail Jacket-XL-Purple","price":47,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"171","color":"57","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","url_key":"kenobi-trail-jacket-xl-purple","msrp_display_actual_price_type":"0","final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47}],"configurable_options":[{"id":33,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":307,"attribute_code":"color"},{"id":32,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":307,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-307.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"351","_score":1,"_source":{"id":351,"sku":"MJ09-L-Yellow","name":"Taurus Elements Shell-L-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                            What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                            \n

                            • Yellow 1/4 zip pullover.
                            • Two chest pockets.
                            • Standard fit.
                            • Waterproof, breathable, seam sealed.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"taurus-elements-shell-l-yellow-351","links":{},"stock":{"item_id":351,"product_id":351,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-l-yellow-351.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"377","_score":1,"_source":{"id":377,"sku":"MJ11-S-Red","name":"Typhon Performance Fleece-lined Jacket-S-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                            \n

                            • Black full-zip flight jacket.
                            • Cocona® wicking fiber.
                            • Machine wash/dry.

                            ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"typhon-performance-fleece-lined-jacket-s-red-377","links":{},"stock":{"item_id":377,"product_id":377,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-s-red-377.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"352","_score":1,"_source":{"id":352,"sku":"MJ09-XL-Blue","name":"Taurus Elements Shell-XL-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                            What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                            \n

                            • Yellow 1/4 zip pullover.
                            • Two chest pockets.
                            • Standard fit.
                            • Waterproof, breathable, seam sealed.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"taurus-elements-shell-xl-blue-352","links":{},"stock":{"item_id":352,"product_id":352,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xl-blue-352.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"374","_score":1,"_source":{"id":374,"sku":"MJ11-XS-Red","name":"Typhon Performance Fleece-lined Jacket-XS-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                            \n

                            • Black full-zip flight jacket.
                            • Cocona® wicking fiber.
                            • Machine wash/dry.

                            ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"typhon-performance-fleece-lined-jacket-xs-red-374","links":{},"stock":{"item_id":374,"product_id":374,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xs-red-374.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"363","_score":1,"_source":{"id":363,"sku":"MJ10-M-Orange","name":"Mars HeatTech™ Pullover-M-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                            \n

                            • Red 1/4 zip pullover.
                            • Adjustable VELCRO® sleeve cuffs.
                            • Two hand pockets.
                            • Napoleon pocket.
                            • Machine wash/dry

                            ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mars-heattech-and-trade-pullover-m-orange-363","links":{},"stock":{"item_id":363,"product_id":363,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-m-orange-363.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"378","_score":1,"_source":{"id":378,"sku":"MJ11-M-Black","name":"Typhon Performance Fleece-lined Jacket-M-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                            \n

                            • Black full-zip flight jacket.
                            • Cocona® wicking fiber.
                            • Machine wash/dry.

                            ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"typhon-performance-fleece-lined-jacket-m-black-378","links":{},"stock":{"item_id":378,"product_id":378,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-m-black-378.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"381","_score":1,"_source":{"id":381,"sku":"MJ11-L-Black","name":"Typhon Performance Fleece-lined Jacket-L-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                            \n

                            • Black full-zip flight jacket.
                            • Cocona® wicking fiber.
                            • Machine wash/dry.

                            ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"typhon-performance-fleece-lined-jacket-l-black-381","links":{},"stock":{"item_id":381,"product_id":381,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-l-black-381.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"357","_score":1,"_source":{"id":357,"sku":"MJ10-XS-Orange","name":"Mars HeatTech™ Pullover-XS-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                            \n

                            • Red 1/4 zip pullover.
                            • Adjustable VELCRO® sleeve cuffs.
                            • Two hand pockets.
                            • Napoleon pocket.
                            • Machine wash/dry

                            ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mars-heattech-and-trade-pullover-xs-orange-357","links":{},"stock":{"item_id":357,"product_id":357,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xs-orange-357.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"372","_score":1,"_source":{"id":372,"sku":"MJ11-XS-Black","name":"Typhon Performance Fleece-lined Jacket-XS-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                            \n

                            • Black full-zip flight jacket.
                            • Cocona® wicking fiber.
                            • Machine wash/dry.

                            ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"typhon-performance-fleece-lined-jacket-xs-black-372","links":{},"stock":{"item_id":372,"product_id":372,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-07-03 11:29:59","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xs-black-372.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"384","_score":1,"_source":{"id":384,"sku":"MJ11-XL-Black","name":"Typhon Performance Fleece-lined Jacket-XL-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                            \n

                            • Black full-zip flight jacket.
                            • Cocona® wicking fiber.
                            • Machine wash/dry.

                            ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"typhon-performance-fleece-lined-jacket-xl-black-384","links":{},"stock":{"item_id":384,"product_id":384,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xl-black-384.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"367","_score":1,"_source":{"id":367,"sku":"MJ10-L-Red","name":"Mars HeatTech™ Pullover-L-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                            \n

                            • Red 1/4 zip pullover.
                            • Adjustable VELCRO® sleeve cuffs.
                            • Two hand pockets.
                            • Napoleon pocket.
                            • Machine wash/dry

                            ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mars-heattech-and-trade-pullover-l-red-367","links":{},"stock":{"item_id":367,"product_id":367,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-l-red-367.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"359","_score":1,"_source":{"id":359,"sku":"MJ10-S-Black","name":"Mars HeatTech™ Pullover-S-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                            \n

                            • Red 1/4 zip pullover.
                            • Adjustable VELCRO® sleeve cuffs.
                            • Two hand pockets.
                            • Napoleon pocket.
                            • Machine wash/dry

                            ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mars-heattech-and-trade-pullover-s-black-359","links":{},"stock":{"item_id":359,"product_id":359,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-s-black-359.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"353","_score":1,"_source":{"id":353,"sku":"MJ09-XL-White","name":"Taurus Elements Shell-XL-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                            What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                            \n

                            • Yellow 1/4 zip pullover.
                            • Two chest pockets.
                            • Standard fit.
                            • Waterproof, breathable, seam sealed.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"taurus-elements-shell-xl-white-353","links":{},"stock":{"item_id":353,"product_id":353,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xl-white-353.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"373","_score":1,"_source":{"id":373,"sku":"MJ11-XS-Green","name":"Typhon Performance Fleece-lined Jacket-XS-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                            \n

                            • Black full-zip flight jacket.
                            • Cocona® wicking fiber.
                            • Machine wash/dry.

                            ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"typhon-performance-fleece-lined-jacket-xs-green-373","links":{},"stock":{"item_id":373,"product_id":373,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xs-green-373.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"356","_score":1,"_source":{"id":356,"sku":"MJ10-XS-Black","name":"Mars HeatTech™ Pullover-XS-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                            \n

                            • Red 1/4 zip pullover.
                            • Adjustable VELCRO® sleeve cuffs.
                            • Two hand pockets.
                            • Napoleon pocket.
                            • Machine wash/dry

                            ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mars-heattech-and-trade-pullover-xs-black-356","links":{},"stock":{"item_id":356,"product_id":356,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xs-black-356.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"358","_score":1,"_source":{"id":358,"sku":"MJ10-XS-Red","name":"Mars HeatTech™ Pullover-XS-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                            \n

                            • Red 1/4 zip pullover.
                            • Adjustable VELCRO® sleeve cuffs.
                            • Two hand pockets.
                            • Napoleon pocket.
                            • Machine wash/dry

                            ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mars-heattech-and-trade-pullover-xs-red-358","links":{},"stock":{"item_id":358,"product_id":358,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xs-red-358.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"362","_score":1,"_source":{"id":362,"sku":"MJ10-M-Black","name":"Mars HeatTech™ Pullover-M-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                            \n

                            • Red 1/4 zip pullover.
                            • Adjustable VELCRO® sleeve cuffs.
                            • Two hand pockets.
                            • Napoleon pocket.
                            • Machine wash/dry

                            ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mars-heattech-and-trade-pullover-m-black-362","links":{},"stock":{"item_id":362,"product_id":362,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-m-black-362.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"393","_score":1,"_source":{"id":393,"sku":"MJ06-S-Purple","name":"Jupiter All-Weather Trainer -S-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                            Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                            \n

                            • Relaxed fit.
                            • Hand pockets.
                            • Machine wash/dry.
                            • Reflective safety trim.

                            ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jupiter-all-weather-trainer-s-purple-393","links":{},"stock":{"item_id":393,"product_id":393,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-s-purple-393.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"361","_score":1,"_source":{"id":361,"sku":"MJ10-S-Red","name":"Mars HeatTech™ Pullover-S-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                            \n

                            • Red 1/4 zip pullover.
                            • Adjustable VELCRO® sleeve cuffs.
                            • Two hand pockets.
                            • Napoleon pocket.
                            • Machine wash/dry

                            ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mars-heattech-and-trade-pullover-s-red-361","links":{},"stock":{"item_id":361,"product_id":361,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-s-red-361.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"396","_score":1,"_source":{"id":396,"sku":"MJ06-M-Purple","name":"Jupiter All-Weather Trainer -M-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                            Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                            \n

                            • Relaxed fit.
                            • Hand pockets.
                            • Machine wash/dry.
                            • Reflective safety trim.

                            ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jupiter-all-weather-trainer-m-purple-396","links":{},"stock":{"item_id":396,"product_id":396,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-m-purple-396.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"390","_score":1,"_source":{"id":390,"sku":"MJ06-XS-Purple","name":"Jupiter All-Weather Trainer -XS-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                            Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                            \n

                            • Relaxed fit.
                            • Hand pockets.
                            • Machine wash/dry.
                            • Reflective safety trim.

                            ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jupiter-all-weather-trainer-xs-purple-390","links":{},"stock":{"item_id":390,"product_id":390,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xs-purple-390.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"370","_score":1,"_source":{"id":370,"sku":"MJ10-XL-Red","name":"Mars HeatTech™ Pullover-XL-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                            \n

                            • Red 1/4 zip pullover.
                            • Adjustable VELCRO® sleeve cuffs.
                            • Two hand pockets.
                            • Napoleon pocket.
                            • Machine wash/dry

                            ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mars-heattech-and-trade-pullover-xl-red-370","links":{},"stock":{"item_id":370,"product_id":370,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xl-red-370.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"392","_score":1,"_source":{"id":392,"sku":"MJ06-S-Green","name":"Jupiter All-Weather Trainer -S-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                            Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                            \n

                            • Relaxed fit.
                            • Hand pockets.
                            • Machine wash/dry.
                            • Reflective safety trim.

                            ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jupiter-all-weather-trainer-s-green-392","links":{},"stock":{"item_id":392,"product_id":392,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-s-green-392.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"376","_score":1,"_source":{"id":376,"sku":"MJ11-S-Green","name":"Typhon Performance Fleece-lined Jacket-S-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                            \n

                            • Black full-zip flight jacket.
                            • Cocona® wicking fiber.
                            • Machine wash/dry.

                            ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"typhon-performance-fleece-lined-jacket-s-green-376","links":{},"stock":{"item_id":376,"product_id":376,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-s-green-376.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"398","_score":1,"_source":{"id":398,"sku":"MJ06-L-Green","name":"Jupiter All-Weather Trainer -L-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                            Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                            \n

                            • Relaxed fit.
                            • Hand pockets.
                            • Machine wash/dry.
                            • Reflective safety trim.

                            ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jupiter-all-weather-trainer-l-green-398","links":{},"stock":{"item_id":398,"product_id":398,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-l-green-398.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"380","_score":1,"_source":{"id":380,"sku":"MJ11-M-Red","name":"Typhon Performance Fleece-lined Jacket-M-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                            \n

                            • Black full-zip flight jacket.
                            • Cocona® wicking fiber.
                            • Machine wash/dry.

                            ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"typhon-performance-fleece-lined-jacket-m-red-380","links":{},"stock":{"item_id":380,"product_id":380,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-m-red-380.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"369","_score":1,"_source":{"id":369,"sku":"MJ10-XL-Orange","name":"Mars HeatTech™ Pullover-XL-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                            \n

                            • Red 1/4 zip pullover.
                            • Adjustable VELCRO® sleeve cuffs.
                            • Two hand pockets.
                            • Napoleon pocket.
                            • Machine wash/dry

                            ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mars-heattech-and-trade-pullover-xl-orange-369","links":{},"stock":{"item_id":369,"product_id":369,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xl-orange-369.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"385","_score":1,"_source":{"id":385,"sku":"MJ11-XL-Green","name":"Typhon Performance Fleece-lined Jacket-XL-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                            \n

                            • Black full-zip flight jacket.
                            • Cocona® wicking fiber.
                            • Machine wash/dry.

                            ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"typhon-performance-fleece-lined-jacket-xl-green-385","links":{},"stock":{"item_id":385,"product_id":385,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xl-green-385.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"394","_score":1,"_source":{"id":394,"sku":"MJ06-M-Blue","name":"Jupiter All-Weather Trainer -M-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                            Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                            \n

                            • Relaxed fit.
                            • Hand pockets.
                            • Machine wash/dry.
                            • Reflective safety trim.

                            ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jupiter-all-weather-trainer-m-blue-394","links":{},"stock":{"item_id":394,"product_id":394,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-m-blue-394.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"383","_score":1,"_source":{"id":383,"sku":"MJ11-L-Red","name":"Typhon Performance Fleece-lined Jacket-L-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                            \n

                            • Black full-zip flight jacket.
                            • Cocona® wicking fiber.
                            • Machine wash/dry.

                            ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"typhon-performance-fleece-lined-jacket-l-red-383","links":{},"stock":{"item_id":383,"product_id":383,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-l-red-383.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"375","_score":1,"_source":{"id":375,"sku":"MJ11-S-Black","name":"Typhon Performance Fleece-lined Jacket-S-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                            \n

                            • Black full-zip flight jacket.
                            • Cocona® wicking fiber.
                            • Machine wash/dry.

                            ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"typhon-performance-fleece-lined-jacket-s-black-375","links":{},"stock":{"item_id":375,"product_id":375,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-s-black-375.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"426","_score":1,"_source":{"id":426,"sku":"MJ12-M-Black","name":"Proteus Fitness Jackshirt-M-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                            \n

                            • 1/4 zip. Stand-up collar.
                            • Machine wash/dry.
                            • Quilted inner layer.

                            ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"proteus-fitness-jackshirt-m-black-426","links":{},"stock":{"item_id":426,"product_id":426,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-m-black-426.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"430","_score":1,"_source":{"id":430,"sku":"MJ12-L-Blue","name":"Proteus Fitness Jackshirt-L-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                            \n

                            • 1/4 zip. Stand-up collar.
                            • Machine wash/dry.
                            • Quilted inner layer.

                            ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"proteus-fitness-jackshirt-l-blue-430","links":{},"stock":{"item_id":430,"product_id":430,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-l-blue-430.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"401","_score":1,"_source":{"id":401,"sku":"MJ06-XL-Green","name":"Jupiter All-Weather Trainer -XL-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                            Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                            \n

                            • Relaxed fit.
                            • Hand pockets.
                            • Machine wash/dry.
                            • Reflective safety trim.

                            ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jupiter-all-weather-trainer-xl-green-401","links":{},"stock":{"item_id":401,"product_id":401,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xl-green-401.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"425","_score":1,"_source":{"id":425,"sku":"MJ12-S-Orange","name":"Proteus Fitness Jackshirt-S-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                            \n

                            • 1/4 zip. Stand-up collar.
                            • Machine wash/dry.
                            • Quilted inner layer.

                            ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"proteus-fitness-jackshirt-s-orange-425","links":{},"stock":{"item_id":425,"product_id":425,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-s-orange-425.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"413","_score":1,"_source":{"id":413,"sku":"MJ03-L-Black","name":"Montana Wind Jacket-L-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                            \n

                            Adjustable hood.
                            Split pocket.
                            Thumb holes.
                            Machine wash/hang to dry.

                            ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"montana-wind-jacket-l-black-413","links":{},"stock":{"item_id":413,"product_id":413,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-l-black-413.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"405","_score":1,"_source":{"id":405,"sku":"MJ03-XS-Green","name":"Montana Wind Jacket-XS-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                            \n

                            Adjustable hood.
                            Split pocket.
                            Thumb holes.
                            Machine wash/hang to dry.

                            ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"montana-wind-jacket-xs-green-405","links":{},"stock":{"item_id":405,"product_id":405,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xs-green-405.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"427","_score":1,"_source":{"id":427,"sku":"MJ12-M-Blue","name":"Proteus Fitness Jackshirt-M-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                            \n

                            • 1/4 zip. Stand-up collar.
                            • Machine wash/dry.
                            • Quilted inner layer.

                            ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"proteus-fitness-jackshirt-m-blue-427","links":{},"stock":{"item_id":427,"product_id":427,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-m-blue-427.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"421","_score":1,"_source":{"id":421,"sku":"MJ12-XS-Blue","name":"Proteus Fitness Jackshirt-XS-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                            \n

                            • 1/4 zip. Stand-up collar.
                            • Machine wash/dry.
                            • Quilted inner layer.

                            ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"proteus-fitness-jackshirt-xs-blue-421","links":{},"stock":{"item_id":421,"product_id":421,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xs-blue-421.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"407","_score":1,"_source":{"id":407,"sku":"MJ03-S-Black","name":"Montana Wind Jacket-S-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                            \n

                            Adjustable hood.
                            Split pocket.
                            Thumb holes.
                            Machine wash/hang to dry.

                            ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"montana-wind-jacket-s-black-407","links":{},"stock":{"item_id":407,"product_id":407,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-s-black-407.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"410","_score":1,"_source":{"id":410,"sku":"MJ03-M-Black","name":"Montana Wind Jacket-M-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                            \n

                            Adjustable hood.
                            Split pocket.
                            Thumb holes.
                            Machine wash/hang to dry.

                            ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"montana-wind-jacket-m-black-410","links":{},"stock":{"item_id":410,"product_id":410,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-m-black-410.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"414","_score":1,"_source":{"id":414,"sku":"MJ03-L-Green","name":"Montana Wind Jacket-L-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                            \n

                            Adjustable hood.
                            Split pocket.
                            Thumb holes.
                            Machine wash/hang to dry.

                            ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"montana-wind-jacket-l-green-414","links":{},"stock":{"item_id":414,"product_id":414,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-l-green-414.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"412","_score":1,"_source":{"id":412,"sku":"MJ03-M-Red","name":"Montana Wind Jacket-M-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                            \n

                            Adjustable hood.
                            Split pocket.
                            Thumb holes.
                            Machine wash/hang to dry.

                            ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"montana-wind-jacket-m-red-412","links":{},"stock":{"item_id":412,"product_id":412,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-m-red-412.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"406","_score":1,"_source":{"id":406,"sku":"MJ03-XS-Red","name":"Montana Wind Jacket-XS-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                            \n

                            Adjustable hood.
                            Split pocket.
                            Thumb holes.
                            Machine wash/hang to dry.

                            ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"montana-wind-jacket-xs-red-406","links":{},"stock":{"item_id":406,"product_id":406,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xs-red-406.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"404","_score":1,"_source":{"id":404,"sku":"MJ03-XS-Black","name":"Montana Wind Jacket-XS-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                            \n

                            Adjustable hood.
                            Split pocket.
                            Thumb holes.
                            Machine wash/hang to dry.

                            ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"montana-wind-jacket-xs-black-404","links":{},"stock":{"item_id":404,"product_id":404,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xs-black-404.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"408","_score":1,"_source":{"id":408,"sku":"MJ03-S-Green","name":"Montana Wind Jacket-S-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                            \n

                            Adjustable hood.
                            Split pocket.
                            Thumb holes.
                            Machine wash/hang to dry.

                            ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"montana-wind-jacket-s-green-408","links":{},"stock":{"item_id":408,"product_id":408,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-s-green-408.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"431","_score":1,"_source":{"id":431,"sku":"MJ12-L-Orange","name":"Proteus Fitness Jackshirt-L-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                            \n

                            • 1/4 zip. Stand-up collar.
                            • Machine wash/dry.
                            • Quilted inner layer.

                            ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"proteus-fitness-jackshirt-l-orange-431","links":{},"stock":{"item_id":431,"product_id":431,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-l-orange-431.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"411","_score":1,"_source":{"id":411,"sku":"MJ03-M-Green","name":"Montana Wind Jacket-M-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                            \n

                            Adjustable hood.
                            Split pocket.
                            Thumb holes.
                            Machine wash/hang to dry.

                            ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"montana-wind-jacket-m-green-411","links":{},"stock":{"item_id":411,"product_id":411,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-m-green-411.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"420","_score":1,"_source":{"id":420,"sku":"MJ12-XS-Black","name":"Proteus Fitness Jackshirt-XS-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                            \n

                            • 1/4 zip. Stand-up collar.
                            • Machine wash/dry.
                            • Quilted inner layer.

                            ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"proteus-fitness-jackshirt-xs-black-420","links":{},"stock":{"item_id":420,"product_id":420,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xs-black-420.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"416","_score":1,"_source":{"id":416,"sku":"MJ03-XL-Black","name":"Montana Wind Jacket-XL-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                            \n

                            Adjustable hood.
                            Split pocket.
                            Thumb holes.
                            Machine wash/hang to dry.

                            ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"montana-wind-jacket-xl-black-416","links":{},"stock":{"item_id":416,"product_id":416,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xl-black-416.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"437","_score":1,"_source":{"id":437,"sku":"MS04-XS-Orange","name":"Gobi HeatTec® Tee-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                            \n

                            • Orange micropolyester shirt.
                            • HeatTec® wicking fabric.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gobi-heattec-and-reg-tee-xs-orange-437","links":{},"stock":{"item_id":437,"product_id":437,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xs-orange-437.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"409","_score":1,"_source":{"id":409,"sku":"MJ03-S-Red","name":"Montana Wind Jacket-S-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                            \n

                            Adjustable hood.
                            Split pocket.
                            Thumb holes.
                            Machine wash/hang to dry.

                            ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"montana-wind-jacket-s-red-409","links":{},"stock":{"item_id":409,"product_id":409,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-s-red-409.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"415","_score":1,"_source":{"id":415,"sku":"MJ03-L-Red","name":"Montana Wind Jacket-L-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                            \n

                            Adjustable hood.
                            Split pocket.
                            Thumb holes.
                            Machine wash/hang to dry.

                            ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"montana-wind-jacket-l-red-415","links":{},"stock":{"item_id":415,"product_id":415,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-l-red-415.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"402","_score":1,"_source":{"id":402,"sku":"MJ06-XL-Purple","name":"Jupiter All-Weather Trainer -XL-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                            Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                            \n

                            • Relaxed fit.
                            • Hand pockets.
                            • Machine wash/dry.
                            • Reflective safety trim.

                            ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jupiter-all-weather-trainer-xl-purple-402","links":{},"stock":{"item_id":402,"product_id":402,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xl-purple-402.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"423","_score":1,"_source":{"id":423,"sku":"MJ12-S-Black","name":"Proteus Fitness Jackshirt-S-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                            \n

                            • 1/4 zip. Stand-up collar.
                            • Machine wash/dry.
                            • Quilted inner layer.

                            ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"proteus-fitness-jackshirt-s-black-423","links":{},"stock":{"item_id":423,"product_id":423,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-s-black-423.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"417","_score":1,"_source":{"id":417,"sku":"MJ03-XL-Green","name":"Montana Wind Jacket-XL-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                            \n

                            Adjustable hood.
                            Split pocket.
                            Thumb holes.
                            Machine wash/hang to dry.

                            ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"montana-wind-jacket-xl-green-417","links":{},"stock":{"item_id":417,"product_id":417,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xl-green-417.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"438","_score":1,"_source":{"id":438,"sku":"MS04-XS-Red","name":"Gobi HeatTec® Tee-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                            \n

                            • Orange micropolyester shirt.
                            • HeatTec® wicking fabric.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gobi-heattec-and-reg-tee-xs-red-438","links":{},"stock":{"item_id":438,"product_id":438,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xs-red-438.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"429","_score":1,"_source":{"id":429,"sku":"MJ12-L-Black","name":"Proteus Fitness Jackshirt-L-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                            \n

                            • 1/4 zip. Stand-up collar.
                            • Machine wash/dry.
                            • Quilted inner layer.

                            ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"proteus-fitness-jackshirt-l-black-429","links":{},"stock":{"item_id":429,"product_id":429,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-l-black-429.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"434","_score":1,"_source":{"id":434,"sku":"MJ12-XL-Orange","name":"Proteus Fitness Jackshirt-XL-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                            \n

                            • 1/4 zip. Stand-up collar.
                            • Machine wash/dry.
                            • Quilted inner layer.

                            ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"proteus-fitness-jackshirt-xl-orange-434","links":{},"stock":{"item_id":434,"product_id":434,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xl-orange-434.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"440","_score":1,"_source":{"id":440,"sku":"MS04-S-Orange","name":"Gobi HeatTec® Tee-S-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                            \n

                            • Orange micropolyester shirt.
                            • HeatTec® wicking fabric.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gobi-heattec-and-reg-tee-s-orange-440","links":{},"stock":{"item_id":440,"product_id":440,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-s-orange-440.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"448","_score":1,"_source":{"id":448,"sku":"MS04-XL-Black","name":"Gobi HeatTec® Tee-XL-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                            \n

                            • Orange micropolyester shirt.
                            • HeatTec® wicking fabric.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gobi-heattec-and-reg-tee-xl-black-448","links":{},"stock":{"item_id":448,"product_id":448,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xl-black-448.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"424","_score":1,"_source":{"id":424,"sku":"MJ12-S-Blue","name":"Proteus Fitness Jackshirt-S-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                            \n

                            • 1/4 zip. Stand-up collar.
                            • Machine wash/dry.
                            • Quilted inner layer.

                            ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"proteus-fitness-jackshirt-s-blue-424","links":{},"stock":{"item_id":424,"product_id":424,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-s-blue-424.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"443","_score":1,"_source":{"id":443,"sku":"MS04-M-Orange","name":"Gobi HeatTec® Tee-M-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                            \n

                            • Orange micropolyester shirt.
                            • HeatTec® wicking fabric.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gobi-heattec-and-reg-tee-m-orange-443","links":{},"stock":{"item_id":443,"product_id":443,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-m-orange-443.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"422","_score":1,"_source":{"id":422,"sku":"MJ12-XS-Orange","name":"Proteus Fitness Jackshirt-XS-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                            \n

                            • 1/4 zip. Stand-up collar.
                            • Machine wash/dry.
                            • Quilted inner layer.

                            ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"proteus-fitness-jackshirt-xs-orange-422","links":{},"stock":{"item_id":422,"product_id":422,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xs-orange-422.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"323","_score":1,"_source":{"id":323,"sku":"MJ07","name":"Orion Two-Tone Fitted Jacket","attribute_set_id":9,"price":72,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                            While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                            \n

                            • Red full zip fleece with gray insets.
                            • Double-knit construction.
                            • Full athletic cut.
                            • Set in sleeves.
                            • Front pouch pocket.

                            ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"orion-two-tone-fitted-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[120,121,123,125,129],"pattern":"197","climate":[202,204,207,208,210],"slug":"orion-two-tone-fitted-jacket-323","links":{},"stock":{"item_id":323,"product_id":323,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ07-XS-Black","id":308,"status":1,"name":"Orion Two-Tone Fitted Jacket-XS-Black","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"49","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","url_key":"orion-two-tone-fitted-jacket-xs-black","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-XS-Red","id":309,"status":1,"name":"Orion Two-Tone Fitted Jacket-XS-Red","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"58","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","url_key":"orion-two-tone-fitted-jacket-xs-red","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-XS-Yellow","id":310,"status":1,"name":"Orion Two-Tone Fitted Jacket-XS-Yellow","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"60","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","url_key":"orion-two-tone-fitted-jacket-xs-yellow","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-S-Black","id":311,"status":1,"name":"Orion Two-Tone Fitted Jacket-S-Black","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"49","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","url_key":"orion-two-tone-fitted-jacket-s-black","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-S-Red","id":312,"status":1,"name":"Orion Two-Tone Fitted Jacket-S-Red","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"58","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","url_key":"orion-two-tone-fitted-jacket-s-red","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-S-Yellow","id":313,"status":1,"name":"Orion Two-Tone Fitted Jacket-S-Yellow","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"60","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","url_key":"orion-two-tone-fitted-jacket-s-yellow","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-M-Black","id":314,"status":1,"name":"Orion Two-Tone Fitted Jacket-M-Black","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"49","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","url_key":"orion-two-tone-fitted-jacket-m-black","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-M-Red","id":315,"status":1,"name":"Orion Two-Tone Fitted Jacket-M-Red","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"58","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","url_key":"orion-two-tone-fitted-jacket-m-red","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-M-Yellow","id":316,"status":1,"name":"Orion Two-Tone Fitted Jacket-M-Yellow","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"60","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","url_key":"orion-two-tone-fitted-jacket-m-yellow","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-L-Black","id":317,"status":1,"name":"Orion Two-Tone Fitted Jacket-L-Black","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"49","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","url_key":"orion-two-tone-fitted-jacket-l-black","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-L-Red","id":318,"status":1,"name":"Orion Two-Tone Fitted Jacket-L-Red","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"58","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","url_key":"orion-two-tone-fitted-jacket-l-red","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-L-Yellow","id":319,"status":1,"name":"Orion Two-Tone Fitted Jacket-L-Yellow","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"60","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","url_key":"orion-two-tone-fitted-jacket-l-yellow","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-XL-Black","id":320,"status":1,"name":"Orion Two-Tone Fitted Jacket-XL-Black","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"49","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","url_key":"orion-two-tone-fitted-jacket-xl-black","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-XL-Red","id":321,"status":1,"name":"Orion Two-Tone Fitted Jacket-XL-Red","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"58","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","url_key":"orion-two-tone-fitted-jacket-xl-red","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72},{"sku":"MJ07-XL-Yellow","id":322,"status":1,"name":"Orion Two-Tone Fitted Jacket-XL-Yellow","price":72,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"60","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","url_key":"orion-two-tone-fitted-jacket-xl-yellow","msrp_display_actual_price_type":"0","final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72}],"configurable_options":[{"id":35,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":323,"attribute_code":"color"},{"id":34,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":323,"attribute_code":"size"}],"color_options":[49,58,60],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-323.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"339","_score":1,"_source":{"id":339,"sku":"MJ08","name":"Lando Gym Jacket","attribute_set_id":9,"price":99,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                            The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                            \n

                            • Gray polyester/spandex full zip jacket with orange lining.
                            • Right pocket device storage.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"lando-gym-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[151,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[125,128,129],"pattern":"197","climate":[203,204,210,211],"slug":"lando-gym-jacket-339","links":{},"stock":{"item_id":339,"product_id":339,"stock_id":1,"qty":10,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ08-XS-Blue","id":324,"status":1,"name":"Lando Gym Jacket-XS-Blue","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"50","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","url_key":"lando-gym-jacket-xs-blue","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-XS-Gray","id":325,"status":1,"name":"Lando Gym Jacket-XS-Gray","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"52","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","url_key":"lando-gym-jacket-xs-gray","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-XS-Green","id":326,"status":1,"name":"Lando Gym Jacket-XS-Green","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"167","color":"53","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","url_key":"lando-gym-jacket-xs-green","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-S-Blue","id":327,"status":1,"name":"Lando Gym Jacket-S-Blue","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"50","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","url_key":"lando-gym-jacket-s-blue","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-S-Gray","id":328,"status":1,"name":"Lando Gym Jacket-S-Gray","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"52","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","url_key":"lando-gym-jacket-s-gray","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-S-Green","id":329,"status":1,"name":"Lando Gym Jacket-S-Green","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"168","color":"53","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","url_key":"lando-gym-jacket-s-green","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-M-Blue","id":330,"status":1,"name":"Lando Gym Jacket-M-Blue","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"50","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","url_key":"lando-gym-jacket-m-blue","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-M-Gray","id":331,"status":1,"name":"Lando Gym Jacket-M-Gray","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"52","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","url_key":"lando-gym-jacket-m-gray","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-M-Green","id":332,"status":1,"name":"Lando Gym Jacket-M-Green","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"169","color":"53","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","url_key":"lando-gym-jacket-m-green","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-L-Blue","id":333,"status":1,"name":"Lando Gym Jacket-L-Blue","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"50","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","url_key":"lando-gym-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-L-Gray","id":334,"status":1,"name":"Lando Gym Jacket-L-Gray","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"52","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","url_key":"lando-gym-jacket-l-gray","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-L-Green","id":335,"status":1,"name":"Lando Gym Jacket-L-Green","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"170","color":"53","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","url_key":"lando-gym-jacket-l-green","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-XL-Blue","id":336,"status":1,"name":"Lando Gym Jacket-XL-Blue","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"50","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","url_key":"lando-gym-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-XL-Gray","id":337,"status":1,"name":"Lando Gym Jacket-XL-Gray","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"52","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","url_key":"lando-gym-jacket-xl-gray","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99},{"sku":"MJ08-XL-Green","id":338,"status":1,"name":"Lando Gym Jacket-XL-Green","price":99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14"],"size":"171","color":"53","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","url_key":"lando-gym-jacket-xl-green","msrp_display_actual_price_type":"0","final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99}],"configurable_options":[{"id":37,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":339,"attribute_code":"color"},{"id":36,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":339,"attribute_code":"size"}],"color_options":[50,52,53],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-339.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"403","_score":1,"_source":{"id":403,"sku":"MJ06","name":"Jupiter All-Weather Trainer ","attribute_set_id":9,"price":56.99,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                            Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                            \n

                            • Relaxed fit.
                            • Hand pockets.
                            • Machine wash/dry.
                            • Reflective safety trim.

                            ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"jupiter-all-weather-trainer","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,146,37],"eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[117,120,125,129],"pattern":"197","climate":[202,205,206,208,209],"slug":"jupiter-all-weather-trainer-403","links":{},"stock":{"item_id":403,"product_id":403,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MJ06-XS-Blue","id":388,"status":1,"name":"Jupiter All-Weather Trainer -XS-Blue","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"167","color":"50","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","url_key":"jupiter-all-weather-trainer-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ06-XS-Green","id":389,"status":1,"name":"Jupiter All-Weather Trainer -XS-Green","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"167","color":"53","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","url_key":"jupiter-all-weather-trainer-xs-green","msrp_display_actual_price_type":"0"},{"sku":"MJ06-XS-Purple","id":390,"status":1,"name":"Jupiter All-Weather Trainer -XS-Purple","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"167","color":"57","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","url_key":"jupiter-all-weather-trainer-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ06-S-Blue","id":391,"status":1,"name":"Jupiter All-Weather Trainer -S-Blue","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"168","color":"50","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","url_key":"jupiter-all-weather-trainer-s-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ06-S-Green","id":392,"status":1,"name":"Jupiter All-Weather Trainer -S-Green","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"168","color":"53","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","url_key":"jupiter-all-weather-trainer-s-green","msrp_display_actual_price_type":"0"},{"sku":"MJ06-S-Purple","id":393,"status":1,"name":"Jupiter All-Weather Trainer -S-Purple","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"168","color":"57","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","url_key":"jupiter-all-weather-trainer-s-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ06-M-Blue","id":394,"status":1,"name":"Jupiter All-Weather Trainer -M-Blue","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"169","color":"50","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","url_key":"jupiter-all-weather-trainer-m-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ06-M-Green","id":395,"status":1,"name":"Jupiter All-Weather Trainer -M-Green","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"169","color":"53","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","url_key":"jupiter-all-weather-trainer-m-green","msrp_display_actual_price_type":"0"},{"sku":"MJ06-M-Purple","id":396,"status":1,"name":"Jupiter All-Weather Trainer -M-Purple","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"169","color":"57","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","url_key":"jupiter-all-weather-trainer-m-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ06-L-Blue","id":397,"status":1,"name":"Jupiter All-Weather Trainer -L-Blue","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"170","color":"50","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","url_key":"jupiter-all-weather-trainer-l-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ06-L-Green","id":398,"status":1,"name":"Jupiter All-Weather Trainer -L-Green","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"170","color":"53","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","url_key":"jupiter-all-weather-trainer-l-green","msrp_display_actual_price_type":"0"},{"sku":"MJ06-L-Purple","id":399,"status":1,"name":"Jupiter All-Weather Trainer -L-Purple","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"170","color":"57","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","url_key":"jupiter-all-weather-trainer-l-purple","msrp_display_actual_price_type":"0"},{"sku":"MJ06-XL-Blue","id":400,"status":1,"name":"Jupiter All-Weather Trainer -XL-Blue","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"171","color":"50","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","url_key":"jupiter-all-weather-trainer-xl-blue","msrp_display_actual_price_type":"0"},{"sku":"MJ06-XL-Green","id":401,"status":1,"name":"Jupiter All-Weather Trainer -XL-Green","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"171","color":"53","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","url_key":"jupiter-all-weather-trainer-xl-green","msrp_display_actual_price_type":"0","final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99},{"sku":"MJ06-XL-Purple","id":402,"status":1,"name":"Jupiter All-Weather Trainer -XL-Purple","price":56.99,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["14","36","2"],"size":"171","color":"57","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","url_key":"jupiter-all-weather-trainer-xl-purple","msrp_display_actual_price_type":"0","final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99}],"configurable_options":[{"id":45,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"}],"product_id":403,"attribute_code":"color"},{"id":44,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":403,"attribute_code":"size"}],"color_options":[50,53,57],"size_options":[167,168,169,170,171],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-403.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"360","_score":1,"_source":{"id":360,"sku":"MJ10-S-Orange","name":"Mars HeatTech™ Pullover-S-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                            \n

                            • Red 1/4 zip pullover.
                            • Adjustable VELCRO® sleeve cuffs.
                            • Two hand pockets.
                            • Napoleon pocket.
                            • Machine wash/dry

                            ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mars-heattech-and-trade-pullover-s-orange-360","links":{},"stock":{"item_id":360,"product_id":360,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-s-orange-360.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"366","_score":1,"_source":{"id":366,"sku":"MJ10-L-Orange","name":"Mars HeatTech™ Pullover-L-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                            \n

                            • Red 1/4 zip pullover.
                            • Adjustable VELCRO® sleeve cuffs.
                            • Two hand pockets.
                            • Napoleon pocket.
                            • Machine wash/dry

                            ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mars-heattech-and-trade-pullover-l-orange-366","links":{},"stock":{"item_id":366,"product_id":366,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-l-orange-366.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"364","_score":1,"_source":{"id":364,"sku":"MJ10-M-Red","name":"Mars HeatTech™ Pullover-M-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                            \n

                            • Red 1/4 zip pullover.
                            • Adjustable VELCRO® sleeve cuffs.
                            • Two hand pockets.
                            • Napoleon pocket.
                            • Machine wash/dry

                            ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mars-heattech-and-trade-pullover-m-red-364","links":{},"stock":{"item_id":364,"product_id":364,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-m-red-364.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"368","_score":1,"_source":{"id":368,"sku":"MJ10-XL-Black","name":"Mars HeatTech™ Pullover-XL-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                            \n

                            • Red 1/4 zip pullover.
                            • Adjustable VELCRO® sleeve cuffs.
                            • Two hand pockets.
                            • Napoleon pocket.
                            • Machine wash/dry

                            ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mars-heattech-and-trade-pullover-xl-black-368","links":{},"stock":{"item_id":368,"product_id":368,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xl-black-368.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"354","_score":1,"_source":{"id":354,"sku":"MJ09-XL-Yellow","name":"Taurus Elements Shell-XL-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                            What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                            \n

                            • Yellow 1/4 zip pullover.
                            • Two chest pockets.
                            • Standard fit.
                            • Waterproof, breathable, seam sealed.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"taurus-elements-shell-xl-yellow-354","links":{},"stock":{"item_id":354,"product_id":354,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xl-yellow-354.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"365","_score":1,"_source":{"id":365,"sku":"MJ10-L-Black","name":"Mars HeatTech™ Pullover-L-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                            \n

                            • Red 1/4 zip pullover.
                            • Adjustable VELCRO® sleeve cuffs.
                            • Two hand pockets.
                            • Napoleon pocket.
                            • Machine wash/dry

                            ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mars-heattech-and-trade-pullover-l-black-365","links":{},"stock":{"item_id":365,"product_id":365,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-l-black-365.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"382","_score":1,"_source":{"id":382,"sku":"MJ11-L-Green","name":"Typhon Performance Fleece-lined Jacket-L-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                            \n

                            • Black full-zip flight jacket.
                            • Cocona® wicking fiber.
                            • Machine wash/dry.

                            ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"typhon-performance-fleece-lined-jacket-l-green-382","links":{},"stock":{"item_id":382,"product_id":382,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-l-green-382.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"391","_score":1,"_source":{"id":391,"sku":"MJ06-S-Blue","name":"Jupiter All-Weather Trainer -S-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                            Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                            \n

                            • Relaxed fit.
                            • Hand pockets.
                            • Machine wash/dry.
                            • Reflective safety trim.

                            ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jupiter-all-weather-trainer-s-blue-391","links":{},"stock":{"item_id":391,"product_id":391,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-s-blue-391.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"386","_score":1,"_source":{"id":386,"sku":"MJ11-XL-Red","name":"Typhon Performance Fleece-lined Jacket-XL-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                            \n

                            • Black full-zip flight jacket.
                            • Cocona® wicking fiber.
                            • Machine wash/dry.

                            ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"typhon-performance-fleece-lined-jacket-xl-red-386","links":{},"stock":{"item_id":386,"product_id":386,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xl-red-386.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"397","_score":1,"_source":{"id":397,"sku":"MJ06-L-Blue","name":"Jupiter All-Weather Trainer -L-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                            Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                            \n

                            • Relaxed fit.
                            • Hand pockets.
                            • Machine wash/dry.
                            • Reflective safety trim.

                            ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jupiter-all-weather-trainer-l-blue-397","links":{},"stock":{"item_id":397,"product_id":397,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-l-blue-397.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"379","_score":1,"_source":{"id":379,"sku":"MJ11-M-Green","name":"Typhon Performance Fleece-lined Jacket-M-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                            \n

                            • Black full-zip flight jacket.
                            • Cocona® wicking fiber.
                            • Machine wash/dry.

                            ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"typhon-performance-fleece-lined-jacket-m-green-379","links":{},"stock":{"item_id":379,"product_id":379,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-m-green-379.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"395","_score":1,"_source":{"id":395,"sku":"MJ06-M-Green","name":"Jupiter All-Weather Trainer -M-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                            Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                            \n

                            • Relaxed fit.
                            • Hand pockets.
                            • Machine wash/dry.
                            • Reflective safety trim.

                            ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jupiter-all-weather-trainer-m-green-395","links":{},"stock":{"item_id":395,"product_id":395,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-m-green-395.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"400","_score":1,"_source":{"id":400,"sku":"MJ06-XL-Blue","name":"Jupiter All-Weather Trainer -XL-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                            Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                            \n

                            • Relaxed fit.
                            • Hand pockets.
                            • Machine wash/dry.
                            • Reflective safety trim.

                            ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jupiter-all-weather-trainer-xl-blue-400","links":{},"stock":{"item_id":400,"product_id":400,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":14,"name":"Jackets","slug":"jackets-14","path":"men/tops-men/jackets-men/jackets-14"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xl-blue-400.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"451","_score":1,"_source":{"id":451,"sku":"MS04","name":"Gobi HeatTec® Tee","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                            \n

                            • Orange micropolyester shirt.
                            • HeatTec® wicking fabric.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"gobi-heattec-reg-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,152,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"gobi-heattec-and-reg-tee-451","links":{},"stock":{"item_id":451,"product_id":451,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS04-XS-Black","id":436,"status":1,"name":"Gobi HeatTec® Tee-XS-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","url_key":"gobi-heattec-reg-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"MS04-XS-Orange","id":437,"status":1,"name":"Gobi HeatTec® Tee-XS-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"56","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","url_key":"gobi-heattec-reg-tee-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"MS04-XS-Red","id":438,"status":1,"name":"Gobi HeatTec® Tee-XS-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"58","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","url_key":"gobi-heattec-reg-tee-xs-red","msrp_display_actual_price_type":"0"},{"sku":"MS04-S-Black","id":439,"status":1,"name":"Gobi HeatTec® Tee-S-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","url_key":"gobi-heattec-reg-tee-s-black","msrp_display_actual_price_type":"0"},{"sku":"MS04-S-Orange","id":440,"status":1,"name":"Gobi HeatTec® Tee-S-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"56","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","url_key":"gobi-heattec-reg-tee-s-orange","msrp_display_actual_price_type":"0"},{"sku":"MS04-S-Red","id":441,"status":1,"name":"Gobi HeatTec® Tee-S-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"58","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","url_key":"gobi-heattec-reg-tee-s-red","msrp_display_actual_price_type":"0"},{"sku":"MS04-M-Black","id":442,"status":1,"name":"Gobi HeatTec® Tee-M-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","url_key":"gobi-heattec-reg-tee-m-black","msrp_display_actual_price_type":"0"},{"sku":"MS04-M-Orange","id":443,"status":1,"name":"Gobi HeatTec® Tee-M-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"56","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","url_key":"gobi-heattec-reg-tee-m-orange","msrp_display_actual_price_type":"0"},{"sku":"MS04-M-Red","id":444,"status":1,"name":"Gobi HeatTec® Tee-M-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"58","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","url_key":"gobi-heattec-reg-tee-m-red","msrp_display_actual_price_type":"0"},{"sku":"MS04-L-Black","id":445,"status":1,"name":"Gobi HeatTec® Tee-L-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","url_key":"gobi-heattec-reg-tee-l-black","msrp_display_actual_price_type":"0"},{"sku":"MS04-L-Orange","id":446,"status":1,"name":"Gobi HeatTec® Tee-L-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"56","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","url_key":"gobi-heattec-reg-tee-l-orange","msrp_display_actual_price_type":"0"},{"sku":"MS04-L-Red","id":447,"status":1,"name":"Gobi HeatTec® Tee-L-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"58","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","url_key":"gobi-heattec-reg-tee-l-red","msrp_display_actual_price_type":"0"},{"sku":"MS04-XL-Black","id":448,"status":1,"name":"Gobi HeatTec® Tee-XL-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","url_key":"gobi-heattec-reg-tee-xl-black","msrp_display_actual_price_type":"0"},{"sku":"MS04-XL-Orange","id":449,"status":1,"name":"Gobi HeatTec® Tee-XL-Orange","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"56","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","url_key":"gobi-heattec-reg-tee-xl-orange","msrp_display_actual_price_type":"0"},{"sku":"MS04-XL-Red","id":450,"status":1,"name":"Gobi HeatTec® Tee-XL-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"58","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","url_key":"gobi-heattec-reg-tee-xl-red","msrp_display_actual_price_type":"0"}],"configurable_options":[{"id":51,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":451,"attribute_code":"color"},{"id":50,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":451,"attribute_code":"size"}],"color_options":[49,56,58],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-451.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"483","_score":1,"_source":{"id":483,"sku":"MS09","name":"Ryker LumaTech™ Tee (Crew-neck)","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                            \n

                            • Royal polyester tee with black accents.
                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ryker-lumatech-trade-tee-crew-neck","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"ryker-lumatech-and-trade-tee-crew-neck-483","links":{},"stock":{"item_id":483,"product_id":483,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS09-XS-Black","id":468,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"49","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-black","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-XS-Blue","id":469,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-XS-Red","id":470,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"58","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-S-Black","id":471,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-S-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"49","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-s-black","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-S-Blue","id":472,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-S-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-s-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-S-Red","id":473,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-S-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"58","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-s-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-M-Black","id":474,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-M-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"49","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-m-black","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-M-Blue","id":475,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-M-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-m-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-M-Red","id":476,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-M-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"58","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-m-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-L-Black","id":477,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-L-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"49","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-l-black","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-L-Blue","id":478,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-L-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-l-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-L-Red","id":479,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-L-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"58","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-l-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-XL-Black","id":480,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Black","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"49","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-black","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-XL-Blue","id":481,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MS09-XL-Red","id":482,"status":1,"name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"58","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32}],"configurable_options":[{"id":55,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":483,"attribute_code":"color"},{"id":54,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":483,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-483.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"467","_score":1,"_source":{"id":467,"sku":"MS05","name":"Helios EverCool™ Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                            \n

                            • Teal quick dry tee.
                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"helios-evercool-trade-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,149,154],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"helios-evercool-and-trade-tee-467","links":{},"stock":{"item_id":467,"product_id":467,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS05-XS-Black","id":452,"status":1,"name":"Helios EverCool™ Tee-XS-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"167","color":"49","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","url_key":"helios-evercool-trade-tee-xs-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-XS-Blue","id":453,"status":1,"name":"Helios EverCool™ Tee-XS-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"167","color":"50","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","url_key":"helios-evercool-trade-tee-xs-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-XS-Purple","id":454,"status":1,"name":"Helios EverCool™ Tee-XS-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"167","color":"57","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","url_key":"helios-evercool-trade-tee-xs-purple","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-S-Black","id":455,"status":1,"name":"Helios EverCool™ Tee-S-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"168","color":"49","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","url_key":"helios-evercool-trade-tee-s-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-S-Blue","id":456,"status":1,"name":"Helios EverCool™ Tee-S-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"168","color":"50","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","url_key":"helios-evercool-trade-tee-s-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-S-Purple","id":457,"status":1,"name":"Helios EverCool™ Tee-S-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"168","color":"57","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","url_key":"helios-evercool-trade-tee-s-purple","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-M-Black","id":458,"status":1,"name":"Helios EverCool™ Tee-M-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"169","color":"49","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","url_key":"helios-evercool-trade-tee-m-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-M-Blue","id":459,"status":1,"name":"Helios EverCool™ Tee-M-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"169","color":"50","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","url_key":"helios-evercool-trade-tee-m-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-M-Purple","id":460,"status":1,"name":"Helios EverCool™ Tee-M-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"169","color":"57","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","url_key":"helios-evercool-trade-tee-m-purple","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-L-Black","id":461,"status":1,"name":"Helios EverCool™ Tee-L-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"170","color":"49","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","url_key":"helios-evercool-trade-tee-l-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-L-Blue","id":462,"status":1,"name":"Helios EverCool™ Tee-L-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"170","color":"50","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","url_key":"helios-evercool-trade-tee-l-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-L-Purple","id":463,"status":1,"name":"Helios EverCool™ Tee-L-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"170","color":"57","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","url_key":"helios-evercool-trade-tee-l-purple","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-XL-Black","id":464,"status":1,"name":"Helios EverCool™ Tee-XL-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"171","color":"49","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","url_key":"helios-evercool-trade-tee-xl-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-XL-Blue","id":465,"status":1,"name":"Helios EverCool™ Tee-XL-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"171","color":"50","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","url_key":"helios-evercool-trade-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MS05-XL-Purple","id":466,"status":1,"name":"Helios EverCool™ Tee-XL-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16","36","2"],"size":"171","color":"57","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","url_key":"helios-evercool-trade-tee-xl-purple","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24}],"configurable_options":[{"id":53,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":467,"attribute_code":"color"},{"id":52,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":467,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-467.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"499","_score":1,"_source":{"id":499,"sku":"MS11","name":"Atomic Endurance Running Tee (V-neck)","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                            \n

                            • Lime heathered v-neck tee.
                            • Ultra-lightweight.
                            • Moisture-wicking Cocona® fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"atomic-endurance-running-tee-v-neck","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"atomic-endurance-running-tee-v-neck-499","links":{},"stock":{"item_id":499,"product_id":499,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MS11-XS-Blue","id":484,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-XS-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"50","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-xs-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-XS-Green","id":485,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-XS-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"53","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-xs-green","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-XS-Yellow","id":486,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-XS-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"167","color":"60","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-xs-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-S-Blue","id":487,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-S-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"50","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-s-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-S-Green","id":488,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-S-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"53","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-s-green","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-S-Yellow","id":489,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-S-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"168","color":"60","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-s-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-M-Blue","id":490,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-M-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"50","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-m-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-M-Green","id":491,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-M-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"53","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-m-green","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-M-Yellow","id":492,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-M-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"169","color":"60","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-m-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-L-Blue","id":493,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-L-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"50","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-l-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-L-Green","id":494,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-L-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"53","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-l-green","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-L-Yellow","id":495,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-L-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"170","color":"60","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-l-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-XL-Blue","id":496,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-XL-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"50","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-xl-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-XL-Green","id":497,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-XL-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"53","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-xl-green","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MS11-XL-Yellow","id":498,"status":1,"name":"Atomic Endurance Running Tee (V-neck)-XL-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["16"],"size":"171","color":"60","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","url_key":"atomic-endurance-running-tee-v-neck-xl-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28}],"configurable_options":[{"id":57,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":60,"label":"Yellow"}],"product_id":499,"attribute_code":"color"},{"id":56,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":499,"attribute_code":"size"}],"color_options":[50,53,60],"size_options":[167,168,169,170,171],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-499.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"546","_score":1,"_source":{"id":546,"sku":"MS06-XL-Yellow","name":"Zoltan Gym Tee-XL-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                            \n

                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoltan-gym-tee-xl-yellow-546","links":{},"stock":{"item_id":546,"product_id":546,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xl-yellow-546.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"530","_score":1,"_source":{"id":530,"sku":"MS03-XL-Orange","name":"Balboa Persistence Tee-XL-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                            \n

                            • Crew neckline.
                            • Semi-fitted.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"balboa-persistence-tee-xl-orange-530","links":{},"stock":{"item_id":530,"product_id":530,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xl-orange-530.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"501","_score":1,"_source":{"id":501,"sku":"MS12-XS-Blue","name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                            \n

                            • Red polyester tee.
                            • Crew neckline.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-crew-neck-xs-blue-501","links":{},"stock":{"item_id":501,"product_id":501,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xs-blue-501.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"507","_score":1,"_source":{"id":507,"sku":"MS12-M-Blue","name":"Atomic Endurance Running Tee (Crew-Neck)-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                            \n

                            • Red polyester tee.
                            • Crew neckline.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-crew-neck-m-blue-507","links":{},"stock":{"item_id":507,"product_id":507,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-m-blue-507.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"519","_score":1,"_source":{"id":519,"sku":"MS03-S-Gray","name":"Balboa Persistence Tee-S-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                            \n

                            • Crew neckline.
                            • Semi-fitted.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"balboa-persistence-tee-s-gray-519","links":{},"stock":{"item_id":519,"product_id":519,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-s-gray-519.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"510","_score":1,"_source":{"id":510,"sku":"MS12-L-Blue","name":"Atomic Endurance Running Tee (Crew-Neck)-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                            \n

                            • Red polyester tee.
                            • Crew neckline.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-crew-neck-l-blue-510","links":{},"stock":{"item_id":510,"product_id":510,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-l-blue-510.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"521","_score":1,"_source":{"id":521,"sku":"MS03-S-Orange","name":"Balboa Persistence Tee-S-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                            \n

                            • Crew neckline.
                            • Semi-fitted.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"balboa-persistence-tee-s-orange-521","links":{},"stock":{"item_id":521,"product_id":521,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-s-orange-521.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"533","_score":1,"_source":{"id":533,"sku":"MS06-XS-Green","name":"Zoltan Gym Tee-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                            \n

                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoltan-gym-tee-xs-green-533","links":{},"stock":{"item_id":533,"product_id":533,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xs-green-533.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"524","_score":1,"_source":{"id":524,"sku":"MS03-M-Orange","name":"Balboa Persistence Tee-M-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                            \n

                            • Crew neckline.
                            • Semi-fitted.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"balboa-persistence-tee-m-orange-524","links":{},"stock":{"item_id":524,"product_id":524,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-m-orange-524.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"518","_score":1,"_source":{"id":518,"sku":"MS03-XS-Orange","name":"Balboa Persistence Tee-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                            \n

                            • Crew neckline.
                            • Semi-fitted.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"balboa-persistence-tee-xs-orange-518","links":{},"stock":{"item_id":518,"product_id":518,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xs-orange-518.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"532","_score":1,"_source":{"id":532,"sku":"MS06-XS-Blue","name":"Zoltan Gym Tee-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                            \n

                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoltan-gym-tee-xs-blue-532","links":{},"stock":{"item_id":532,"product_id":532,"stock_id":1,"qty":77,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xs-blue-532.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"549","_score":1,"_source":{"id":549,"sku":"MS01-XS-Brown","name":"Aero Daily Fitness Tee-XS-Brown","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xs-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"aero-daily-fitness-tee-xs-brown-549","links":{},"stock":{"item_id":549,"product_id":549,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms01-brown_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xs-brown-549.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"508","_score":1,"_source":{"id":508,"sku":"MS12-M-Red","name":"Atomic Endurance Running Tee (Crew-Neck)-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                            \n

                            • Red polyester tee.
                            • Crew neckline.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-crew-neck-m-red-508","links":{},"stock":{"item_id":508,"product_id":508,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-m-red-508.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"528","_score":1,"_source":{"id":528,"sku":"MS03-XL-Gray","name":"Balboa Persistence Tee-XL-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                            \n

                            • Crew neckline.
                            • Semi-fitted.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"balboa-persistence-tee-xl-gray-528","links":{},"stock":{"item_id":528,"product_id":528,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xl-gray-528.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"525","_score":1,"_source":{"id":525,"sku":"MS03-L-Gray","name":"Balboa Persistence Tee-L-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                            \n

                            • Crew neckline.
                            • Semi-fitted.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"balboa-persistence-tee-l-gray-525","links":{},"stock":{"item_id":525,"product_id":525,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-l-gray-525.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"526","_score":1,"_source":{"id":526,"sku":"MS03-L-Green","name":"Balboa Persistence Tee-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                            \n

                            • Crew neckline.
                            • Semi-fitted.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"balboa-persistence-tee-l-green-526","links":{},"stock":{"item_id":526,"product_id":526,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-l-green-526.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"527","_score":1,"_source":{"id":527,"sku":"MS03-L-Orange","name":"Balboa Persistence Tee-L-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                            \n

                            • Crew neckline.
                            • Semi-fitted.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"balboa-persistence-tee-l-orange-527","links":{},"stock":{"item_id":527,"product_id":527,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-l-orange-527.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"504","_score":1,"_source":{"id":504,"sku":"MS12-S-Blue","name":"Atomic Endurance Running Tee (Crew-Neck)-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                            \n

                            • Red polyester tee.
                            • Crew neckline.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-crew-neck-s-blue-504","links":{},"stock":{"item_id":504,"product_id":504,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-s-blue-504.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"536","_score":1,"_source":{"id":536,"sku":"MS06-S-Green","name":"Zoltan Gym Tee-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                            \n

                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoltan-gym-tee-s-green-536","links":{},"stock":{"item_id":536,"product_id":536,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-s-green-536.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"540","_score":1,"_source":{"id":540,"sku":"MS06-M-Yellow","name":"Zoltan Gym Tee-M-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                            \n

                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoltan-gym-tee-m-yellow-540","links":{},"stock":{"item_id":540,"product_id":540,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-m-yellow-540.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"512","_score":1,"_source":{"id":512,"sku":"MS12-XL-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                            \n

                            • Red polyester tee.
                            • Crew neckline.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-crew-neck-xl-black-512","links":{},"stock":{"item_id":512,"product_id":512,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xl-black-512.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"544","_score":1,"_source":{"id":544,"sku":"MS06-XL-Blue","name":"Zoltan Gym Tee-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                            \n

                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoltan-gym-tee-xl-blue-544","links":{},"stock":{"item_id":544,"product_id":544,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xl-blue-544.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"534","_score":1,"_source":{"id":534,"sku":"MS06-XS-Yellow","name":"Zoltan Gym Tee-XS-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                            \n

                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoltan-gym-tee-xs-yellow-534","links":{},"stock":{"item_id":534,"product_id":534,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xs-yellow-534.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"543","_score":1,"_source":{"id":543,"sku":"MS06-L-Yellow","name":"Zoltan Gym Tee-L-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                            \n

                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoltan-gym-tee-l-yellow-543","links":{},"stock":{"item_id":543,"product_id":543,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-l-yellow-543.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"550","_score":1,"_source":{"id":550,"sku":"MS01-XS-Yellow","name":"Aero Daily Fitness Tee-XS-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"aero-daily-fitness-tee-xs-yellow-550","links":{},"stock":{"item_id":550,"product_id":550,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xs-yellow-550.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"537","_score":1,"_source":{"id":537,"sku":"MS06-S-Yellow","name":"Zoltan Gym Tee-S-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                            \n

                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoltan-gym-tee-s-yellow-537","links":{},"stock":{"item_id":537,"product_id":537,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-s-yellow-537.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"522","_score":1,"_source":{"id":522,"sku":"MS03-M-Gray","name":"Balboa Persistence Tee-M-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                            \n

                            • Crew neckline.
                            • Semi-fitted.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"balboa-persistence-tee-m-gray-522","links":{},"stock":{"item_id":522,"product_id":522,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-m-gray-522.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"516","_score":1,"_source":{"id":516,"sku":"MS03-XS-Gray","name":"Balboa Persistence Tee-XS-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                            \n

                            • Crew neckline.
                            • Semi-fitted.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"balboa-persistence-tee-xs-gray-516","links":{},"stock":{"item_id":516,"product_id":516,"stock_id":1,"qty":36,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xs-gray-516.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"523","_score":1,"_source":{"id":523,"sku":"MS03-M-Green","name":"Balboa Persistence Tee-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                            \n

                            • Crew neckline.
                            • Semi-fitted.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"balboa-persistence-tee-m-green-523","links":{},"stock":{"item_id":523,"product_id":523,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-m-green-523.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"545","_score":1,"_source":{"id":545,"sku":"MS06-XL-Green","name":"Zoltan Gym Tee-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                            \n

                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoltan-gym-tee-xl-green-545","links":{},"stock":{"item_id":545,"product_id":545,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xl-green-545.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"539","_score":1,"_source":{"id":539,"sku":"MS06-M-Green","name":"Zoltan Gym Tee-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                            \n

                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoltan-gym-tee-m-green-539","links":{},"stock":{"item_id":539,"product_id":539,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-m-green-539.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"541","_score":1,"_source":{"id":541,"sku":"MS06-L-Blue","name":"Zoltan Gym Tee-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                            \n

                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoltan-gym-tee-l-blue-541","links":{},"stock":{"item_id":541,"product_id":541,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-l-blue-541.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"548","_score":1,"_source":{"id":548,"sku":"MS01-XS-Black","name":"Aero Daily Fitness Tee-XS-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"aero-daily-fitness-tee-xs-black-548","links":{},"stock":{"item_id":548,"product_id":548,"stock_id":1,"qty":67,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xs-black-548.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"458","_score":1,"_source":{"id":458,"sku":"MS05-M-Black","name":"Helios EverCool™ Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                            \n

                            • Teal quick dry tee.
                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helios-evercool-and-trade-tee-m-black-458","links":{},"stock":{"item_id":458,"product_id":458,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-m-black-458.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"474","_score":1,"_source":{"id":474,"sku":"MS09-M-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-M-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                            \n

                            • Royal polyester tee with black accents.
                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-crew-neck-m-black-474","links":{},"stock":{"item_id":474,"product_id":474,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-m-black-474.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"482","_score":1,"_source":{"id":482,"sku":"MS09-XL-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                            \n

                            • Royal polyester tee with black accents.
                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-crew-neck-xl-red-482","links":{},"stock":{"item_id":482,"product_id":482,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xl-red-482.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"462","_score":1,"_source":{"id":462,"sku":"MS05-L-Blue","name":"Helios EverCool™ Tee-L-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                            \n

                            • Teal quick dry tee.
                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helios-evercool-and-trade-tee-l-blue-462","links":{},"stock":{"item_id":462,"product_id":462,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-l-blue-462.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"476","_score":1,"_source":{"id":476,"sku":"MS09-M-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-M-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                            \n

                            • Royal polyester tee with black accents.
                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-crew-neck-m-red-476","links":{},"stock":{"item_id":476,"product_id":476,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-m-red-476.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"484","_score":1,"_source":{"id":484,"sku":"MS11-XS-Blue","name":"Atomic Endurance Running Tee (V-neck)-XS-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                            \n

                            • Lime heathered v-neck tee.
                            • Ultra-lightweight.
                            • Moisture-wicking Cocona® fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-v-neck-xs-blue-484","links":{},"stock":{"item_id":484,"product_id":484,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xs-blue-484.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"455","_score":1,"_source":{"id":455,"sku":"MS05-S-Black","name":"Helios EverCool™ Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                            \n

                            • Teal quick dry tee.
                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helios-evercool-and-trade-tee-s-black-455","links":{},"stock":{"item_id":455,"product_id":455,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-s-black-455.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"485","_score":1,"_source":{"id":485,"sku":"MS11-XS-Green","name":"Atomic Endurance Running Tee (V-neck)-XS-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                            \n

                            • Lime heathered v-neck tee.
                            • Ultra-lightweight.
                            • Moisture-wicking Cocona® fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-v-neck-xs-green-485","links":{},"stock":{"item_id":485,"product_id":485,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xs-green-485.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"488","_score":1,"_source":{"id":488,"sku":"MS11-S-Green","name":"Atomic Endurance Running Tee (V-neck)-S-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                            \n

                            • Lime heathered v-neck tee.
                            • Ultra-lightweight.
                            • Moisture-wicking Cocona® fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-v-neck-s-green-488","links":{},"stock":{"item_id":488,"product_id":488,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-s-green-488.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"459","_score":1,"_source":{"id":459,"sku":"MS05-M-Blue","name":"Helios EverCool™ Tee-M-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                            \n

                            • Teal quick dry tee.
                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helios-evercool-and-trade-tee-m-blue-459","links":{},"stock":{"item_id":459,"product_id":459,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-m-blue-459.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"469","_score":1,"_source":{"id":469,"sku":"MS09-XS-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                            \n

                            • Royal polyester tee with black accents.
                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-crew-neck-xs-blue-469","links":{},"stock":{"item_id":469,"product_id":469,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xs-blue-469.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"486","_score":1,"_source":{"id":486,"sku":"MS11-XS-Yellow","name":"Atomic Endurance Running Tee (V-neck)-XS-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                            \n

                            • Lime heathered v-neck tee.
                            • Ultra-lightweight.
                            • Moisture-wicking Cocona® fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-v-neck-xs-yellow-486","links":{},"stock":{"item_id":486,"product_id":486,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xs-yellow-486.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"491","_score":1,"_source":{"id":491,"sku":"MS11-M-Green","name":"Atomic Endurance Running Tee (V-neck)-M-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                            \n

                            • Lime heathered v-neck tee.
                            • Ultra-lightweight.
                            • Moisture-wicking Cocona® fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-v-neck-m-green-491","links":{},"stock":{"item_id":491,"product_id":491,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-m-green-491.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"471","_score":1,"_source":{"id":471,"sku":"MS09-S-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-S-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                            \n

                            • Royal polyester tee with black accents.
                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-crew-neck-s-black-471","links":{},"stock":{"item_id":471,"product_id":471,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-s-black-471.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"477","_score":1,"_source":{"id":477,"sku":"MS09-L-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-L-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                            \n

                            • Royal polyester tee with black accents.
                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-crew-neck-l-black-477","links":{},"stock":{"item_id":477,"product_id":477,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-l-black-477.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"490","_score":1,"_source":{"id":490,"sku":"MS11-M-Blue","name":"Atomic Endurance Running Tee (V-neck)-M-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                            \n

                            • Lime heathered v-neck tee.
                            • Ultra-lightweight.
                            • Moisture-wicking Cocona® fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-v-neck-m-blue-490","links":{},"stock":{"item_id":490,"product_id":490,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-m-blue-490.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"464","_score":1,"_source":{"id":464,"sku":"MS05-XL-Black","name":"Helios EverCool™ Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                            \n

                            • Teal quick dry tee.
                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helios-evercool-and-trade-tee-xl-black-464","links":{},"stock":{"item_id":464,"product_id":464,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xl-black-464.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"478","_score":1,"_source":{"id":478,"sku":"MS09-L-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-L-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                            \n

                            • Royal polyester tee with black accents.
                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-crew-neck-l-blue-478","links":{},"stock":{"item_id":478,"product_id":478,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-l-blue-478.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"480","_score":1,"_source":{"id":480,"sku":"MS09-XL-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                            \n

                            • Royal polyester tee with black accents.
                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-crew-neck-xl-black-480","links":{},"stock":{"item_id":480,"product_id":480,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xl-black-480.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"498","_score":1,"_source":{"id":498,"sku":"MS11-XL-Yellow","name":"Atomic Endurance Running Tee (V-neck)-XL-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                            \n

                            • Lime heathered v-neck tee.
                            • Ultra-lightweight.
                            • Moisture-wicking Cocona® fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-v-neck-xl-yellow-498","links":{},"stock":{"item_id":498,"product_id":498,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xl-yellow-498.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"481","_score":1,"_source":{"id":481,"sku":"MS09-XL-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                            \n

                            • Royal polyester tee with black accents.
                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-crew-neck-xl-blue-481","links":{},"stock":{"item_id":481,"product_id":481,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xl-blue-481.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"473","_score":1,"_source":{"id":473,"sku":"MS09-S-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-S-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                            \n

                            • Royal polyester tee with black accents.
                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-crew-neck-s-red-473","links":{},"stock":{"item_id":473,"product_id":473,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-s-red-473.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"494","_score":1,"_source":{"id":494,"sku":"MS11-L-Green","name":"Atomic Endurance Running Tee (V-neck)-L-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                            \n

                            • Lime heathered v-neck tee.
                            • Ultra-lightweight.
                            • Moisture-wicking Cocona® fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-v-neck-l-green-494","links":{},"stock":{"item_id":494,"product_id":494,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-l-green-494.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"487","_score":1,"_source":{"id":487,"sku":"MS11-S-Blue","name":"Atomic Endurance Running Tee (V-neck)-S-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                            \n

                            • Lime heathered v-neck tee.
                            • Ultra-lightweight.
                            • Moisture-wicking Cocona® fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-v-neck-s-blue-487","links":{},"stock":{"item_id":487,"product_id":487,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-s-blue-487.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"489","_score":1,"_source":{"id":489,"sku":"MS11-S-Yellow","name":"Atomic Endurance Running Tee (V-neck)-S-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                            \n

                            • Lime heathered v-neck tee.
                            • Ultra-lightweight.
                            • Moisture-wicking Cocona® fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-v-neck-s-yellow-489","links":{},"stock":{"item_id":489,"product_id":489,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-s-yellow-489.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"502","_score":1,"_source":{"id":502,"sku":"MS12-XS-Red","name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                            \n

                            • Red polyester tee.
                            • Crew neckline.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-crew-neck-xs-red-502","links":{},"stock":{"item_id":502,"product_id":502,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xs-red-502.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"509","_score":1,"_source":{"id":509,"sku":"MS12-L-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-L-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                            \n

                            • Red polyester tee.
                            • Crew neckline.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-crew-neck-l-black-509","links":{},"stock":{"item_id":509,"product_id":509,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-l-black-509.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"511","_score":1,"_source":{"id":511,"sku":"MS12-L-Red","name":"Atomic Endurance Running Tee (Crew-Neck)-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                            \n

                            • Red polyester tee.
                            • Crew neckline.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-crew-neck-l-red-511","links":{},"stock":{"item_id":511,"product_id":511,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-l-red-511.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"517","_score":1,"_source":{"id":517,"sku":"MS03-XS-Green","name":"Balboa Persistence Tee-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                            \n

                            • Crew neckline.
                            • Semi-fitted.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"balboa-persistence-tee-xs-green-517","links":{},"stock":{"item_id":517,"product_id":517,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xs-green-517.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"513","_score":1,"_source":{"id":513,"sku":"MS12-XL-Blue","name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                            \n

                            • Red polyester tee.
                            • Crew neckline.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-crew-neck-xl-blue-513","links":{},"stock":{"item_id":513,"product_id":513,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xl-blue-513.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"503","_score":1,"_source":{"id":503,"sku":"MS12-S-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-S-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                            \n

                            • Red polyester tee.
                            • Crew neckline.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-crew-neck-s-black-503","links":{},"stock":{"item_id":503,"product_id":503,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-s-black-503.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"529","_score":1,"_source":{"id":529,"sku":"MS03-XL-Green","name":"Balboa Persistence Tee-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                            \n

                            • Crew neckline.
                            • Semi-fitted.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"balboa-persistence-tee-xl-green-529","links":{},"stock":{"item_id":529,"product_id":529,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xl-green-529.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"505","_score":1,"_source":{"id":505,"sku":"MS12-S-Red","name":"Atomic Endurance Running Tee (Crew-Neck)-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                            \n

                            • Red polyester tee.
                            • Crew neckline.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-crew-neck-s-red-505","links":{},"stock":{"item_id":505,"product_id":505,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-s-red-505.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"538","_score":1,"_source":{"id":538,"sku":"MS06-M-Blue","name":"Zoltan Gym Tee-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                            \n

                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoltan-gym-tee-m-blue-538","links":{},"stock":{"item_id":538,"product_id":538,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-m-blue-538.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"514","_score":1,"_source":{"id":514,"sku":"MS12-XL-Red","name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                            \n

                            • Red polyester tee.
                            • Crew neckline.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-crew-neck-xl-red-514","links":{},"stock":{"item_id":514,"product_id":514,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xl-red-514.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"506","_score":1,"_source":{"id":506,"sku":"MS12-M-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-M-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                            \n

                            • Red polyester tee.
                            • Crew neckline.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-crew-neck-m-black-506","links":{},"stock":{"item_id":506,"product_id":506,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-m-black-506.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"452","_score":1,"_source":{"id":452,"sku":"MS05-XS-Black","name":"Helios EverCool™ Tee-XS-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                            \n

                            • Teal quick dry tee.
                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helios-evercool-and-trade-tee-xs-black-452","links":{},"stock":{"item_id":452,"product_id":452,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xs-black-452.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"463","_score":1,"_source":{"id":463,"sku":"MS05-L-Purple","name":"Helios EverCool™ Tee-L-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                            \n

                            • Teal quick dry tee.
                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helios-evercool-and-trade-tee-l-purple-463","links":{},"stock":{"item_id":463,"product_id":463,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-l-purple-463.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"468","_score":1,"_source":{"id":468,"sku":"MS09-XS-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                            \n

                            • Royal polyester tee with black accents.
                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-crew-neck-xs-black-468","links":{},"stock":{"item_id":468,"product_id":468,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xs-black-468.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"461","_score":1,"_source":{"id":461,"sku":"MS05-L-Black","name":"Helios EverCool™ Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                            \n

                            • Teal quick dry tee.
                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helios-evercool-and-trade-tee-l-black-461","links":{},"stock":{"item_id":461,"product_id":461,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-l-black-461.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"453","_score":1,"_source":{"id":453,"sku":"MS05-XS-Blue","name":"Helios EverCool™ Tee-XS-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                            \n

                            • Teal quick dry tee.
                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helios-evercool-and-trade-tee-xs-blue-453","links":{},"stock":{"item_id":453,"product_id":453,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xs-blue-453.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"475","_score":1,"_source":{"id":475,"sku":"MS09-M-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-M-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                            \n

                            • Royal polyester tee with black accents.
                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-crew-neck-m-blue-475","links":{},"stock":{"item_id":475,"product_id":475,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-m-blue-475.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"472","_score":1,"_source":{"id":472,"sku":"MS09-S-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-S-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                            \n

                            • Royal polyester tee with black accents.
                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-crew-neck-s-blue-472","links":{},"stock":{"item_id":472,"product_id":472,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-s-blue-472.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"465","_score":1,"_source":{"id":465,"sku":"MS05-XL-Blue","name":"Helios EverCool™ Tee-XL-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                            \n

                            • Teal quick dry tee.
                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helios-evercool-and-trade-tee-xl-blue-465","links":{},"stock":{"item_id":465,"product_id":465,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xl-blue-465.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"495","_score":1,"_source":{"id":495,"sku":"MS11-L-Yellow","name":"Atomic Endurance Running Tee (V-neck)-L-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                            \n

                            • Lime heathered v-neck tee.
                            • Ultra-lightweight.
                            • Moisture-wicking Cocona® fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-v-neck-l-yellow-495","links":{},"stock":{"item_id":495,"product_id":495,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-l-yellow-495.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"479","_score":1,"_source":{"id":479,"sku":"MS09-L-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-L-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                            \n

                            • Royal polyester tee with black accents.
                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-crew-neck-l-red-479","links":{},"stock":{"item_id":479,"product_id":479,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-l-red-479.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"500","_score":1,"_source":{"id":500,"sku":"MS12-XS-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                            \n

                            • Red polyester tee.
                            • Crew neckline.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-crew-neck-xs-black-500","links":{},"stock":{"item_id":500,"product_id":500,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xs-black-500.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"492","_score":1,"_source":{"id":492,"sku":"MS11-M-Yellow","name":"Atomic Endurance Running Tee (V-neck)-M-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                            \n

                            • Lime heathered v-neck tee.
                            • Ultra-lightweight.
                            • Moisture-wicking Cocona® fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-v-neck-m-yellow-492","links":{},"stock":{"item_id":492,"product_id":492,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-m-yellow-492.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"493","_score":1,"_source":{"id":493,"sku":"MS11-L-Blue","name":"Atomic Endurance Running Tee (V-neck)-L-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                            \n

                            • Lime heathered v-neck tee.
                            • Ultra-lightweight.
                            • Moisture-wicking Cocona® fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-v-neck-l-blue-493","links":{},"stock":{"item_id":493,"product_id":493,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-l-blue-493.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"497","_score":1,"_source":{"id":497,"sku":"MS11-XL-Green","name":"Atomic Endurance Running Tee (V-neck)-XL-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                            \n

                            • Lime heathered v-neck tee.
                            • Ultra-lightweight.
                            • Moisture-wicking Cocona® fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-v-neck-xl-green-497","links":{},"stock":{"item_id":497,"product_id":497,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xl-green-497.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"496","_score":1,"_source":{"id":496,"sku":"MS11-XL-Blue","name":"Atomic Endurance Running Tee (V-neck)-XL-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                            \n

                            • Lime heathered v-neck tee.
                            • Ultra-lightweight.
                            • Moisture-wicking Cocona® fabric.
                            • Machine wash/dry.

                            ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-v-neck-xl-blue-496","links":{},"stock":{"item_id":496,"product_id":496,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xl-blue-496.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"470","_score":1,"_source":{"id":470,"sku":"MS09-XS-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                            \n

                            • Royal polyester tee with black accents.
                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-crew-neck-xs-red-470","links":{},"stock":{"item_id":470,"product_id":470,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xs-red-470.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"454","_score":1,"_source":{"id":454,"sku":"MS05-XS-Purple","name":"Helios EverCool™ Tee-XS-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                            \n

                            • Teal quick dry tee.
                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helios-evercool-and-trade-tee-xs-purple-454","links":{},"stock":{"item_id":454,"product_id":454,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xs-purple-454.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"457","_score":1,"_source":{"id":457,"sku":"MS05-S-Purple","name":"Helios EverCool™ Tee-S-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                            \n

                            • Teal quick dry tee.
                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helios-evercool-and-trade-tee-s-purple-457","links":{},"stock":{"item_id":457,"product_id":457,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-s-purple-457.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"466","_score":1,"_source":{"id":466,"sku":"MS05-XL-Purple","name":"Helios EverCool™ Tee-XL-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                            \n

                            • Teal quick dry tee.
                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helios-evercool-and-trade-tee-xl-purple-466","links":{},"stock":{"item_id":466,"product_id":466,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xl-purple-466.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"456","_score":1,"_source":{"id":456,"sku":"MS05-S-Blue","name":"Helios EverCool™ Tee-S-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                            \n

                            • Teal quick dry tee.
                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helios-evercool-and-trade-tee-s-blue-456","links":{},"stock":{"item_id":456,"product_id":456,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-s-blue-456.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"460","_score":1,"_source":{"id":460,"sku":"MS05-M-Purple","name":"Helios EverCool™ Tee-M-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                            \n

                            • Teal quick dry tee.
                            • Relaxed fit.
                            • Crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helios-evercool-and-trade-tee-m-purple-460","links":{},"stock":{"item_id":460,"product_id":460,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":16,"name":"Tees","slug":"tees-16","path":"men/tops-men/tees-men/tees-16"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-m-purple-460.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"849","_score":1,"_source":{"id":849,"sku":"MP10-32-Green","name":"Orestes Yoga Pant -32-Green","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-yoga-pant-32-green-849","links":{},"stock":{"item_id":849,"product_id":849,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-32-green-849.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"827","_score":1,"_source":{"id":827,"sku":"MP08-34-Blue","name":"Zeppelin Yoga Pant-34-Blue","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"zeppelin-yoga-pant-34-blue-827","links":{},"stock":{"item_id":827,"product_id":827,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-34-blue-827.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"845","_score":1,"_source":{"id":845,"sku":"MP09-36-Red","name":"Livingston All-Purpose Tight-36-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","color":"58","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"livingston-all-purpose-tight-36-red-845","links":{},"stock":{"item_id":845,"product_id":845,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-36-red-845.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"835","_score":1,"_source":{"id":835,"sku":"MP09-32-Blue","name":"Livingston All-Purpose Tight-32-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","color":"50","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"livingston-all-purpose-tight-32-blue-835","links":{},"stock":{"item_id":835,"product_id":835,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-32-blue-835.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"831","_score":1,"_source":{"id":831,"sku":"MP08-36-Green","name":"Zeppelin Yoga Pant-36-Green","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"zeppelin-yoga-pant-36-green-831","links":{},"stock":{"item_id":831,"product_id":831,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-36-green-831.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"843","_score":1,"_source":{"id":843,"sku":"MP09-36-Black","name":"Livingston All-Purpose Tight-36-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","color":"49","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"livingston-all-purpose-tight-36-black-843","links":{},"stock":{"item_id":843,"product_id":843,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-36-black-843.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"847","_score":1,"_source":{"id":847,"sku":"MP10-32-Black","name":"Orestes Yoga Pant -32-Black","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","color":"49","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-yoga-pant-32-black-847","links":{},"stock":{"item_id":847,"product_id":847,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-32-black-847.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"832","_score":1,"_source":{"id":832,"sku":"MP08-36-Red","name":"Zeppelin Yoga Pant-36-Red","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"zeppelin-yoga-pant-36-red-832","links":{},"stock":{"item_id":832,"product_id":832,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-36-red-832.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"837","_score":1,"_source":{"id":837,"sku":"MP09-33-Black","name":"Livingston All-Purpose Tight-33-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","color":"49","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"livingston-all-purpose-tight-33-black-837","links":{},"stock":{"item_id":837,"product_id":837,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-33-black-837.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"850","_score":1,"_source":{"id":850,"sku":"MP10-33-Black","name":"Orestes Yoga Pant -33-Black","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","color":"49","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-yoga-pant-33-black-850","links":{},"stock":{"item_id":850,"product_id":850,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-33-black-850.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"838","_score":1,"_source":{"id":838,"sku":"MP09-33-Blue","name":"Livingston All-Purpose Tight-33-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","color":"50","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"livingston-all-purpose-tight-33-blue-838","links":{},"stock":{"item_id":838,"product_id":838,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-33-blue-838.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"842","_score":1,"_source":{"id":842,"sku":"MP09-34-Red","name":"Livingston All-Purpose Tight-34-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","color":"58","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"livingston-all-purpose-tight-34-red-842","links":{},"stock":{"item_id":842,"product_id":842,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-34-red-842.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"844","_score":1,"_source":{"id":844,"sku":"MP09-36-Blue","name":"Livingston All-Purpose Tight-36-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","color":"50","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"livingston-all-purpose-tight-36-blue-844","links":{},"stock":{"item_id":844,"product_id":844,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-36-blue-844.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"841","_score":1,"_source":{"id":841,"sku":"MP09-34-Blue","name":"Livingston All-Purpose Tight-34-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","color":"50","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"livingston-all-purpose-tight-34-blue-841","links":{},"stock":{"item_id":841,"product_id":841,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-34-blue-841.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"833","_score":1,"_source":{"id":833,"sku":"MP08","name":"Zeppelin Yoga Pant","attribute_set_id":10,"price":82,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"zeppelin-yoga-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,148,151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,113,105,115,109],"pattern":"197","climate":[202,204,208,210,211],"slug":"zeppelin-yoga-pant-833","links":{},"stock":{"item_id":833,"product_id":833,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP08-32-Blue","id":821,"status":1,"name":"Zeppelin Yoga Pant-32-Blue","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"50","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","url_key":"zeppelin-yoga-pant-32-blue","msrp_display_actual_price_type":"0","final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82},{"sku":"MP08-32-Green","id":822,"status":1,"name":"Zeppelin Yoga Pant-32-Green","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"53","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","url_key":"zeppelin-yoga-pant-32-green","msrp_display_actual_price_type":"0","final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82},{"sku":"MP08-32-Red","id":823,"status":1,"name":"Zeppelin Yoga Pant-32-Red","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"58","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","url_key":"zeppelin-yoga-pant-32-red","msrp_display_actual_price_type":"0","final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82},{"sku":"MP08-33-Blue","id":824,"status":1,"name":"Zeppelin Yoga Pant-33-Blue","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"50","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","url_key":"zeppelin-yoga-pant-33-blue","msrp_display_actual_price_type":"0","final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82},{"sku":"MP08-33-Green","id":825,"status":1,"name":"Zeppelin Yoga Pant-33-Green","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"53","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","url_key":"zeppelin-yoga-pant-33-green","msrp_display_actual_price_type":"0","final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82},{"sku":"MP08-33-Red","id":826,"status":1,"name":"Zeppelin Yoga Pant-33-Red","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"58","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","url_key":"zeppelin-yoga-pant-33-red","msrp_display_actual_price_type":"0","final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82},{"sku":"MP08-34-Blue","id":827,"status":1,"name":"Zeppelin Yoga Pant-34-Blue","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"50","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","url_key":"zeppelin-yoga-pant-34-blue","msrp_display_actual_price_type":"0","final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82},{"sku":"MP08-34-Green","id":828,"status":1,"name":"Zeppelin Yoga Pant-34-Green","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"53","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","url_key":"zeppelin-yoga-pant-34-green","msrp_display_actual_price_type":"0","final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82},{"sku":"MP08-34-Red","id":829,"status":1,"name":"Zeppelin Yoga Pant-34-Red","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"58","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","url_key":"zeppelin-yoga-pant-34-red","msrp_display_actual_price_type":"0","final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82},{"sku":"MP08-36-Blue","id":830,"status":1,"name":"Zeppelin Yoga Pant-36-Blue","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"50","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","url_key":"zeppelin-yoga-pant-36-blue","msrp_display_actual_price_type":"0","final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82},{"sku":"MP08-36-Green","id":831,"status":1,"name":"Zeppelin Yoga Pant-36-Green","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"53","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","url_key":"zeppelin-yoga-pant-36-green","msrp_display_actual_price_type":"0","final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82},{"sku":"MP08-36-Red","id":832,"status":1,"name":"Zeppelin Yoga Pant-36-Red","price":82,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"58","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","url_key":"zeppelin-yoga-pant-36-red","msrp_display_actual_price_type":"0","final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82}],"configurable_options":[{"id":113,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":833,"attribute_code":"color"},{"id":112,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":833,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-833.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"807","_score":1,"_source":{"id":807,"sku":"MP06","name":"Mithra Warmup Pant","attribute_set_id":10,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mithra-warmup-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,146,154,38,159],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,113],"pattern":"197","climate":[202,203,204,206,210,211],"slug":"mithra-warmup-pant-807","links":{},"stock":{"item_id":807,"product_id":807,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP06-32-Gray","id":795,"status":1,"name":"Mithra Warmup Pant-32-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"176","color":"52","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","url_key":"mithra-warmup-pant-32-gray","msrp_display_actual_price_type":"0"},{"sku":"MP06-32-Green","id":796,"status":1,"name":"Mithra Warmup Pant-32-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"176","color":"53","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","url_key":"mithra-warmup-pant-32-green","msrp_display_actual_price_type":"0"},{"sku":"MP06-32-Orange","id":797,"status":1,"name":"Mithra Warmup Pant-32-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"176","color":"56","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","url_key":"mithra-warmup-pant-32-orange","msrp_display_actual_price_type":"0"},{"sku":"MP06-33-Gray","id":798,"status":1,"name":"Mithra Warmup Pant-33-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"177","color":"52","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","url_key":"mithra-warmup-pant-33-gray","msrp_display_actual_price_type":"0"},{"sku":"MP06-33-Green","id":799,"status":1,"name":"Mithra Warmup Pant-33-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"177","color":"53","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","url_key":"mithra-warmup-pant-33-green","msrp_display_actual_price_type":"0"},{"sku":"MP06-33-Orange","id":800,"status":1,"name":"Mithra Warmup Pant-33-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"177","color":"56","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","url_key":"mithra-warmup-pant-33-orange","msrp_display_actual_price_type":"0"},{"sku":"MP06-34-Gray","id":801,"status":1,"name":"Mithra Warmup Pant-34-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"178","color":"52","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","url_key":"mithra-warmup-pant-34-gray","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MP06-34-Green","id":802,"status":1,"name":"Mithra Warmup Pant-34-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"178","color":"53","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","url_key":"mithra-warmup-pant-34-green","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MP06-34-Orange","id":803,"status":1,"name":"Mithra Warmup Pant-34-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"178","color":"56","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","url_key":"mithra-warmup-pant-34-orange","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MP06-36-Gray","id":804,"status":1,"name":"Mithra Warmup Pant-36-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"179","color":"52","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","url_key":"mithra-warmup-pant-36-gray","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MP06-36-Green","id":805,"status":1,"name":"Mithra Warmup Pant-36-Green","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"179","color":"53","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","url_key":"mithra-warmup-pant-36-green","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"MP06-36-Orange","id":806,"status":1,"name":"Mithra Warmup Pant-36-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","36","2"],"size":"179","color":"56","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","url_key":"mithra-warmup-pant-36-orange","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28}],"configurable_options":[{"id":109,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":807,"attribute_code":"color"},{"id":108,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":807,"attribute_code":"size"}],"color_options":[52,53,56],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-807.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"820","_score":1,"_source":{"id":820,"sku":"MP07","name":"Thorpe Track Pant","attribute_set_id":10,"price":68,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"thorpe-track-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38,39,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[202,203,204,208,211],"slug":"thorpe-track-pant-820","links":{},"stock":{"item_id":820,"product_id":820,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP07-32-Black","id":808,"status":1,"name":"Thorpe Track Pant-32-Black","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"49","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","url_key":"thorpe-track-pant-32-black","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"MP07-32-Blue","id":809,"status":1,"name":"Thorpe Track Pant-32-Blue","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"50","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","url_key":"thorpe-track-pant-32-blue","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"MP07-32-Purple","id":810,"status":1,"name":"Thorpe Track Pant-32-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"57","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","url_key":"thorpe-track-pant-32-purple","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"MP07-33-Black","id":811,"status":1,"name":"Thorpe Track Pant-33-Black","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"49","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","url_key":"thorpe-track-pant-33-black","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"MP07-33-Blue","id":812,"status":1,"name":"Thorpe Track Pant-33-Blue","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"50","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","url_key":"thorpe-track-pant-33-blue","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"MP07-33-Purple","id":813,"status":1,"name":"Thorpe Track Pant-33-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"57","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","url_key":"thorpe-track-pant-33-purple","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"MP07-34-Black","id":814,"status":1,"name":"Thorpe Track Pant-34-Black","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"49","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","url_key":"thorpe-track-pant-34-black","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"MP07-34-Blue","id":815,"status":1,"name":"Thorpe Track Pant-34-Blue","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"50","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","url_key":"thorpe-track-pant-34-blue","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"MP07-34-Purple","id":816,"status":1,"name":"Thorpe Track Pant-34-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"57","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","url_key":"thorpe-track-pant-34-purple","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"MP07-36-Black","id":817,"status":1,"name":"Thorpe Track Pant-36-Black","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"49","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","url_key":"thorpe-track-pant-36-black","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"MP07-36-Blue","id":818,"status":1,"name":"Thorpe Track Pant-36-Blue","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"50","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","url_key":"thorpe-track-pant-36-blue","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"MP07-36-Purple","id":819,"status":1,"name":"Thorpe Track Pant-36-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"57","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","url_key":"thorpe-track-pant-36-purple","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68}],"configurable_options":[{"id":111,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":820,"attribute_code":"color"},{"id":110,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":820,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-820.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"846","_score":1,"_source":{"id":846,"sku":"MP09","name":"Livingston All-Purpose Tight","attribute_set_id":10,"price":75,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"livingston-all-purpose-tight","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,145,38,39],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"1","sale":"0","style_bottom":[113,105,108,115,109],"pattern":"197","climate":[202,203,204,210,211],"slug":"livingston-all-purpose-tight-846","links":{},"stock":{"item_id":846,"product_id":846,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP09-32-Black","id":834,"status":1,"name":"Livingston All-Purpose Tight-32-Black","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"176","color":"49","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","url_key":"livingston-all-purpose-tight-32-black","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"MP09-32-Blue","id":835,"status":1,"name":"Livingston All-Purpose Tight-32-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"176","color":"50","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","url_key":"livingston-all-purpose-tight-32-blue","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"MP09-32-Red","id":836,"status":1,"name":"Livingston All-Purpose Tight-32-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"176","color":"58","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","url_key":"livingston-all-purpose-tight-32-red","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"MP09-33-Black","id":837,"status":1,"name":"Livingston All-Purpose Tight-33-Black","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"177","color":"49","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","url_key":"livingston-all-purpose-tight-33-black","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"MP09-33-Blue","id":838,"status":1,"name":"Livingston All-Purpose Tight-33-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"177","color":"50","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","url_key":"livingston-all-purpose-tight-33-blue","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"MP09-33-Red","id":839,"status":1,"name":"Livingston All-Purpose Tight-33-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"177","color":"58","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","url_key":"livingston-all-purpose-tight-33-red","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"MP09-34-Black","id":840,"status":1,"name":"Livingston All-Purpose Tight-34-Black","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"178","color":"49","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","url_key":"livingston-all-purpose-tight-34-black","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"MP09-34-Blue","id":841,"status":1,"name":"Livingston All-Purpose Tight-34-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"178","color":"50","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","url_key":"livingston-all-purpose-tight-34-blue","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"MP09-34-Red","id":842,"status":1,"name":"Livingston All-Purpose Tight-34-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"178","color":"58","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","url_key":"livingston-all-purpose-tight-34-red","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"MP09-36-Black","id":843,"status":1,"name":"Livingston All-Purpose Tight-36-Black","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"179","color":"49","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","url_key":"livingston-all-purpose-tight-36-black","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"MP09-36-Blue","id":844,"status":1,"name":"Livingston All-Purpose Tight-36-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"179","color":"50","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","url_key":"livingston-all-purpose-tight-36-blue","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"MP09-36-Red","id":845,"status":1,"name":"Livingston All-Purpose Tight-36-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","34","2"],"size":"179","color":"58","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","url_key":"livingston-all-purpose-tight-36-red","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75}],"configurable_options":[{"id":115,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":846,"attribute_code":"color"},{"id":114,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":846,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-846.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"793","_score":1,"_source":{"id":793,"sku":"MP05-36-Green","name":"Kratos Gym Pant-36-Green","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"kratos-gym-pant-36-green-793","links":{},"stock":{"item_id":793,"product_id":793,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-36-green-793.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"765","_score":1,"_source":{"id":765,"sku":"MP03-36-Blue","name":"Geo Insulated Jogging Pant-36-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"geo-insulated-jogging-pant-36-blue-765","links":{},"stock":{"item_id":765,"product_id":765,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-36-blue-765.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"798","_score":1,"_source":{"id":798,"sku":"MP06-33-Gray","name":"Mithra Warmup Pant-33-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","color":"52","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"mithra-warmup-pant-33-gray-798","links":{},"stock":{"item_id":798,"product_id":798,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-33-gray-798.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"779","_score":1,"_source":{"id":779,"sku":"MP04-36-Gray","name":"Supernova Sport Pant-36-Gray","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"supernova-sport-pant-36-gray-779","links":{},"stock":{"item_id":779,"product_id":779,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-36-gray-779.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"799","_score":1,"_source":{"id":799,"sku":"MP06-33-Green","name":"Mithra Warmup Pant-33-Green","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","color":"53","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"mithra-warmup-pant-33-green-799","links":{},"stock":{"item_id":799,"product_id":799,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-33-green-799.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"790","_score":1,"_source":{"id":790,"sku":"MP05-34-Green","name":"Kratos Gym Pant-34-Green","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"kratos-gym-pant-34-green-790","links":{},"stock":{"item_id":790,"product_id":790,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-34-green-790.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"795","_score":1,"_source":{"id":795,"sku":"MP06-32-Gray","name":"Mithra Warmup Pant-32-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","color":"52","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"mithra-warmup-pant-32-gray-795","links":{},"stock":{"item_id":795,"product_id":795,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-32-gray-795.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"768","_score":1,"_source":{"id":768,"sku":"MP03","name":"Geo Insulated Jogging Pant","attribute_set_id":10,"price":51,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-black_main.jpg","small_image":"/m/p/mp03-black_main.jpg","thumbnail":"/m/p/mp03-black_main.jpg","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"geo-insulated-jogging-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,38,39,151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[202,204,205,210,211],"slug":"geo-insulated-jogging-pant-768","links":{},"stock":{"item_id":768,"product_id":768,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp03-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp03-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP03-32-Blue","id":756,"status":1,"name":"Geo Insulated Jogging Pant-32-Blue","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"50","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","url_key":"geo-insulated-jogging-pant-32-blue","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MP03-32-Green","id":757,"status":1,"name":"Geo Insulated Jogging Pant-32-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"53","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","url_key":"geo-insulated-jogging-pant-32-green","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MP03-32-Red","id":758,"status":1,"name":"Geo Insulated Jogging Pant-32-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"58","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","url_key":"geo-insulated-jogging-pant-32-red","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MP03-33-Blue","id":759,"status":1,"name":"Geo Insulated Jogging Pant-33-Blue","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"50","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","url_key":"geo-insulated-jogging-pant-33-blue","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MP03-33-Green","id":760,"status":1,"name":"Geo Insulated Jogging Pant-33-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"53","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","url_key":"geo-insulated-jogging-pant-33-green","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MP03-33-Red","id":761,"status":1,"name":"Geo Insulated Jogging Pant-33-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"58","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","url_key":"geo-insulated-jogging-pant-33-red","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MP03-34-Blue","id":762,"status":1,"name":"Geo Insulated Jogging Pant-34-Blue","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"50","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","url_key":"geo-insulated-jogging-pant-34-blue","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MP03-34-Green","id":763,"status":1,"name":"Geo Insulated Jogging Pant-34-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"53","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","url_key":"geo-insulated-jogging-pant-34-green","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MP03-34-Red","id":764,"status":1,"name":"Geo Insulated Jogging Pant-34-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"58","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","url_key":"geo-insulated-jogging-pant-34-red","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MP03-36-Blue","id":765,"status":1,"name":"Geo Insulated Jogging Pant-36-Blue","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"50","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","url_key":"geo-insulated-jogging-pant-36-blue","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MP03-36-Green","id":766,"status":1,"name":"Geo Insulated Jogging Pant-36-Green","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"53","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","url_key":"geo-insulated-jogging-pant-36-green","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"MP03-36-Red","id":767,"status":1,"name":"Geo Insulated Jogging Pant-36-Red","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"58","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","url_key":"geo-insulated-jogging-pant-36-red","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51}],"configurable_options":[{"id":103,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":768,"attribute_code":"color"},{"id":102,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":768,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-768.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"781","_score":1,"_source":{"id":781,"sku":"MP04","name":"Supernova Sport Pant","attribute_set_id":10,"price":45,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"supernova-sport-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[202,203,204,208,210,211],"slug":"supernova-sport-pant-781","links":{},"stock":{"item_id":781,"product_id":781,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP04-32-Black","id":769,"status":1,"name":"Supernova Sport Pant-32-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"49","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","url_key":"supernova-sport-pant-32-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MP04-32-Gray","id":770,"status":1,"name":"Supernova Sport Pant-32-Gray","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"52","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","url_key":"supernova-sport-pant-32-gray","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MP04-32-Green","id":771,"status":1,"name":"Supernova Sport Pant-32-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"53","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","url_key":"supernova-sport-pant-32-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MP04-33-Black","id":772,"status":1,"name":"Supernova Sport Pant-33-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"49","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","url_key":"supernova-sport-pant-33-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MP04-33-Gray","id":773,"status":1,"name":"Supernova Sport Pant-33-Gray","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"52","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","url_key":"supernova-sport-pant-33-gray","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MP04-33-Green","id":774,"status":1,"name":"Supernova Sport Pant-33-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"53","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","url_key":"supernova-sport-pant-33-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MP04-34-Black","id":775,"status":1,"name":"Supernova Sport Pant-34-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"49","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","url_key":"supernova-sport-pant-34-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MP04-34-Gray","id":776,"status":1,"name":"Supernova Sport Pant-34-Gray","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"52","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","url_key":"supernova-sport-pant-34-gray","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MP04-34-Green","id":777,"status":1,"name":"Supernova Sport Pant-34-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"53","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","url_key":"supernova-sport-pant-34-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MP04-36-Black","id":778,"status":1,"name":"Supernova Sport Pant-36-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"49","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","url_key":"supernova-sport-pant-36-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MP04-36-Gray","id":779,"status":1,"name":"Supernova Sport Pant-36-Gray","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"52","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","url_key":"supernova-sport-pant-36-gray","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"MP04-36-Green","id":780,"status":1,"name":"Supernova Sport Pant-36-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"53","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","url_key":"supernova-sport-pant-36-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45}],"configurable_options":[{"id":105,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":781,"attribute_code":"color"},{"id":104,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":781,"attribute_code":"size"}],"color_options":[49,52,53],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-781.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"755","_score":1,"_source":{"id":755,"sku":"MP02","name":"Viktor LumaTech™ Pant","attribute_set_id":10,"price":46,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"viktor-lumatech-trade-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38,151],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,115],"pattern":"197","climate":[203,204,211],"slug":"viktor-lumatech-and-trade-pant-755","links":{},"stock":{"item_id":755,"product_id":755,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP02-32-Blue","id":743,"status":1,"name":"Viktor LumaTech™ Pant-32-Blue","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"176","color":"50","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","url_key":"viktor-lumatech-trade-pant-32-blue","msrp_display_actual_price_type":"0"},{"sku":"MP02-32-Gray","id":744,"status":1,"name":"Viktor LumaTech™ Pant-32-Gray","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"176","color":"52","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","url_key":"viktor-lumatech-trade-pant-32-gray","msrp_display_actual_price_type":"0"},{"sku":"MP02-32-Red","id":745,"status":1,"name":"Viktor LumaTech™ Pant-32-Red","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"176","color":"58","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","url_key":"viktor-lumatech-trade-pant-32-red","msrp_display_actual_price_type":"0"},{"sku":"MP02-33-Blue","id":746,"status":1,"name":"Viktor LumaTech™ Pant-33-Blue","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"177","color":"50","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","url_key":"viktor-lumatech-trade-pant-33-blue","msrp_display_actual_price_type":"0"},{"sku":"MP02-33-Gray","id":747,"status":1,"name":"Viktor LumaTech™ Pant-33-Gray","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"177","color":"52","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","url_key":"viktor-lumatech-trade-pant-33-gray","msrp_display_actual_price_type":"0"},{"sku":"MP02-33-Red","id":748,"status":1,"name":"Viktor LumaTech™ Pant-33-Red","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"177","color":"58","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","url_key":"viktor-lumatech-trade-pant-33-red","msrp_display_actual_price_type":"0"},{"sku":"MP02-34-Blue","id":749,"status":1,"name":"Viktor LumaTech™ Pant-34-Blue","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"178","color":"50","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","url_key":"viktor-lumatech-trade-pant-34-blue","msrp_display_actual_price_type":"0"},{"sku":"MP02-34-Gray","id":750,"status":1,"name":"Viktor LumaTech™ Pant-34-Gray","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"178","color":"52","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","url_key":"viktor-lumatech-trade-pant-34-gray","msrp_display_actual_price_type":"0"},{"sku":"MP02-34-Red","id":751,"status":1,"name":"Viktor LumaTech™ Pant-34-Red","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"178","color":"58","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","url_key":"viktor-lumatech-trade-pant-34-red","msrp_display_actual_price_type":"0","final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46},{"sku":"MP02-36-Blue","id":752,"status":1,"name":"Viktor LumaTech™ Pant-36-Blue","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"179","color":"50","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","url_key":"viktor-lumatech-trade-pant-36-blue","msrp_display_actual_price_type":"0","final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46},{"sku":"MP02-36-Gray","id":753,"status":1,"name":"Viktor LumaTech™ Pant-36-Gray","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"179","color":"52","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","url_key":"viktor-lumatech-trade-pant-36-gray","msrp_display_actual_price_type":"0","final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46},{"sku":"MP02-36-Red","id":754,"status":1,"name":"Viktor LumaTech™ Pant-36-Red","price":46,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","35","2"],"size":"179","color":"58","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","url_key":"viktor-lumatech-trade-pant-36-red","msrp_display_actual_price_type":"0","final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46}],"configurable_options":[{"id":101,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"}],"product_id":755,"attribute_code":"color"},{"id":100,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":755,"attribute_code":"size"}],"color_options":[50,52,58],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-755.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"794","_score":1,"_source":{"id":794,"sku":"MP05","name":"Kratos Gym Pant","attribute_set_id":10,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"kratos-gym-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38,39],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[208,210,211],"slug":"kratos-gym-pant-794","links":{},"stock":{"item_id":794,"product_id":794,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP05-32-Black","id":782,"status":1,"name":"Kratos Gym Pant-32-Black","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"49","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","url_key":"kratos-gym-pant-32-black","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"MP05-32-Blue","id":783,"status":1,"name":"Kratos Gym Pant-32-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"50","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","url_key":"kratos-gym-pant-32-blue","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"MP05-32-Green","id":784,"status":1,"name":"Kratos Gym Pant-32-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"176","color":"53","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","url_key":"kratos-gym-pant-32-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"MP05-33-Black","id":785,"status":1,"name":"Kratos Gym Pant-33-Black","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"49","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","url_key":"kratos-gym-pant-33-black","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"MP05-33-Blue","id":786,"status":1,"name":"Kratos Gym Pant-33-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"50","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","url_key":"kratos-gym-pant-33-blue","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"MP05-33-Green","id":787,"status":1,"name":"Kratos Gym Pant-33-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"177","color":"53","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","url_key":"kratos-gym-pant-33-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"MP05-34-Black","id":788,"status":1,"name":"Kratos Gym Pant-34-Black","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"49","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","url_key":"kratos-gym-pant-34-black","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"MP05-34-Blue","id":789,"status":1,"name":"Kratos Gym Pant-34-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"50","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","url_key":"kratos-gym-pant-34-blue","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"MP05-34-Green","id":790,"status":1,"name":"Kratos Gym Pant-34-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"178","color":"53","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","url_key":"kratos-gym-pant-34-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"MP05-36-Black","id":791,"status":1,"name":"Kratos Gym Pant-36-Black","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"49","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","url_key":"kratos-gym-pant-36-black","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"MP05-36-Blue","id":792,"status":1,"name":"Kratos Gym Pant-36-Blue","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"50","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","url_key":"kratos-gym-pant-36-blue","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57},{"sku":"MP05-36-Green","id":793,"status":1,"name":"Kratos Gym Pant-36-Green","price":57,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","8","2"],"size":"179","color":"53","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","url_key":"kratos-gym-pant-36-green","msrp_display_actual_price_type":"0","final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57}],"configurable_options":[{"id":107,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":794,"attribute_code":"color"},{"id":106,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":794,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-794.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"874","_score":1,"_source":{"id":874,"sku":"MP12-32-Blue","name":"Cronus Yoga Pant -32-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","color":"50","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cronus-yoga-pant-32-blue-874","links":{},"stock":{"item_id":874,"product_id":874,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-32-blue-874.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"856","_score":1,"_source":{"id":856,"sku":"MP10-36-Black","name":"Orestes Yoga Pant -36-Black","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","color":"49","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-yoga-pant-36-black-856","links":{},"stock":{"item_id":856,"product_id":856,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-36-black-856.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"857","_score":1,"_source":{"id":857,"sku":"MP10-36-Blue","name":"Orestes Yoga Pant -36-Blue","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-yoga-pant-36-blue-857","links":{},"stock":{"item_id":857,"product_id":857,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-36-blue-857.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"868","_score":1,"_source":{"id":868,"sku":"MP11-34-Green","name":"Aether Gym Pant -34-Green","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"aether-gym-pant-34-green-868","links":{},"stock":{"item_id":868,"product_id":868,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-34-green-868.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"869","_score":1,"_source":{"id":869,"sku":"MP11-36-Blue","name":"Aether Gym Pant -36-Blue","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2019-05-17 10:37:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \r\n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-36-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"179","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"aether-gym-pant-36-blue-869","links":{},"stock":{"item_id":869,"product_id":869,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-36-blue-869.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"879","_score":1,"_source":{"id":879,"sku":"MP12-34-Black","name":"Cronus Yoga Pant -34-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cronus-yoga-pant-34-black-879","links":{},"stock":{"item_id":879,"product_id":879,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-34-black-879.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"889","_score":1,"_source":{"id":889,"sku":"MSH01-33-Black","name":"Cobalt CoolTech™ Fitness Short-33-Black","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","color":"49","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cobalt-cooltech-and-trade-fitness-short-33-black-889","links":{},"stock":{"item_id":889,"product_id":889,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-33-black-889.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"875","_score":1,"_source":{"id":875,"sku":"MP12-32-Red","name":"Cronus Yoga Pant -32-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","color":"58","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cronus-yoga-pant-32-red-875","links":{},"stock":{"item_id":875,"product_id":875,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-32-red-875.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"865","_score":1,"_source":{"id":865,"sku":"MP11-33-Green","name":"Aether Gym Pant -33-Green","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"aether-gym-pant-33-green-865","links":{},"stock":{"item_id":865,"product_id":865,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-33-green-865.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"883","_score":1,"_source":{"id":883,"sku":"MP12-36-Blue","name":"Cronus Yoga Pant -36-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","color":"50","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cronus-yoga-pant-36-blue-883","links":{},"stock":{"item_id":883,"product_id":883,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-36-blue-883.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"900","_score":1,"_source":{"id":900,"sku":"MSH02-33-Black","name":"Apollo Running Short-33-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

                            \n

                            • Black shorts with green accents.
                            • Side pockets.
                            • 4\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"apollo-running-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"apollo-running-short-33-black-900","links":{},"stock":{"item_id":900,"product_id":900,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-33-black-900.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"877","_score":1,"_source":{"id":877,"sku":"MP12-33-Blue","name":"Cronus Yoga Pant -33-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","color":"50","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cronus-yoga-pant-33-blue-877","links":{},"stock":{"item_id":877,"product_id":877,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-33-blue-877.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"867","_score":1,"_source":{"id":867,"sku":"MP11-34-Brown","name":"Aether Gym Pant -34-Brown","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","color":"51","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-34-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"aether-gym-pant-34-brown-867","links":{},"stock":{"item_id":867,"product_id":867,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-34-brown-867.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"888","_score":1,"_source":{"id":888,"sku":"MSH01-32-Red","name":"Cobalt CoolTech™ Fitness Short-32-Red","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","color":"58","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cobalt-cooltech-and-trade-fitness-short-32-red-888","links":{},"stock":{"item_id":888,"product_id":888,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-32-red-888.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"878","_score":1,"_source":{"id":878,"sku":"MP12-33-Red","name":"Cronus Yoga Pant -33-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","color":"58","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cronus-yoga-pant-33-red-878","links":{},"stock":{"item_id":878,"product_id":878,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-33-red-878.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"891","_score":1,"_source":{"id":891,"sku":"MSH01-33-Red","name":"Cobalt CoolTech™ Fitness Short-33-Red","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","color":"58","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cobalt-cooltech-and-trade-fitness-short-33-red-891","links":{},"stock":{"item_id":891,"product_id":891,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-33-red-891.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"884","_score":1,"_source":{"id":884,"sku":"MP12-36-Red","name":"Cronus Yoga Pant -36-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","color":"58","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cronus-yoga-pant-36-red-884","links":{},"stock":{"item_id":884,"product_id":884,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-36-red-884.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"890","_score":1,"_source":{"id":890,"sku":"MSH01-33-Blue","name":"Cobalt CoolTech™ Fitness Short-33-Blue","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","color":"50","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cobalt-cooltech-and-trade-fitness-short-33-blue-890","links":{},"stock":{"item_id":890,"product_id":890,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-33-blue-890.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"881","_score":1,"_source":{"id":881,"sku":"MP12-34-Red","name":"Cronus Yoga Pant -34-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","color":"58","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cronus-yoga-pant-34-red-881","links":{},"stock":{"item_id":881,"product_id":881,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-34-red-881.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"880","_score":1,"_source":{"id":880,"sku":"MP12-34-Blue","name":"Cronus Yoga Pant -34-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","color":"50","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cronus-yoga-pant-34-blue-880","links":{},"stock":{"item_id":880,"product_id":880,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-34-blue-880.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"871","_score":1,"_source":{"id":871,"sku":"MP11-36-Green","name":"Aether Gym Pant -36-Green","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2019-05-14 08:20:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \r\n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-36-green","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"179","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"aether-gym-pant-36-green-871","links":{},"stock":{"item_id":871,"product_id":871,"stock_id":1,"qty":100,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-green_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-36-green-871.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"899","_score":1,"_source":{"id":899,"sku":"MSH02-32-Black","name":"Apollo Running Short-32-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

                            \n

                            • Black shorts with green accents.
                            • Side pockets.
                            • 4\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"apollo-running-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"apollo-running-short-32-black-899","links":{},"stock":{"item_id":899,"product_id":899,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-32-black-899.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"893","_score":1,"_source":{"id":893,"sku":"MSH01-34-Blue","name":"Cobalt CoolTech™ Fitness Short-34-Blue","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","color":"50","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cobalt-cooltech-and-trade-fitness-short-34-blue-893","links":{},"stock":{"item_id":893,"product_id":893,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-34-blue-893.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"876","_score":1,"_source":{"id":876,"sku":"MP12-33-Black","name":"Cronus Yoga Pant -33-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cronus-yoga-pant-33-black-876","links":{},"stock":{"item_id":876,"product_id":876,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-33-black-876.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"882","_score":1,"_source":{"id":882,"sku":"MP12-36-Black","name":"Cronus Yoga Pant -36-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cronus-yoga-pant-36-black-882","links":{},"stock":{"item_id":882,"product_id":882,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-36-black-882.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"887","_score":1,"_source":{"id":887,"sku":"MSH01-32-Blue","name":"Cobalt CoolTech™ Fitness Short-32-Blue","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","color":"50","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cobalt-cooltech-and-trade-fitness-short-32-blue-887","links":{},"stock":{"item_id":887,"product_id":887,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-32-blue-887.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"894","_score":1,"_source":{"id":894,"sku":"MSH01-34-Red","name":"Cobalt CoolTech™ Fitness Short-34-Red","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","color":"58","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cobalt-cooltech-and-trade-fitness-short-34-red-894","links":{},"stock":{"item_id":894,"product_id":894,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-34-red-894.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"896","_score":1,"_source":{"id":896,"sku":"MSH01-36-Blue","name":"Cobalt CoolTech™ Fitness Short-36-Blue","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","color":"50","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cobalt-cooltech-and-trade-fitness-short-36-blue-896","links":{},"stock":{"item_id":896,"product_id":896,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-36-blue-896.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"895","_score":1,"_source":{"id":895,"sku":"MSH01-36-Black","name":"Cobalt CoolTech™ Fitness Short-36-Black","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","color":"49","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cobalt-cooltech-and-trade-fitness-short-36-black-895","links":{},"stock":{"item_id":895,"product_id":895,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-36-black-895.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"892","_score":1,"_source":{"id":892,"sku":"MSH01-34-Black","name":"Cobalt CoolTech™ Fitness Short-34-Black","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","color":"49","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cobalt-cooltech-and-trade-fitness-short-34-black-892","links":{},"stock":{"item_id":892,"product_id":892,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-34-black-892.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"886","_score":1,"_source":{"id":886,"sku":"MSH01-32-Black","name":"Cobalt CoolTech™ Fitness Short-32-Black","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","color":"49","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cobalt-cooltech-and-trade-fitness-short-32-black-886","links":{},"stock":{"item_id":886,"product_id":886,"stock_id":1,"qty":78,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-32-black-886.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"897","_score":1,"_source":{"id":897,"sku":"MSH01-36-Red","name":"Cobalt CoolTech™ Fitness Short-36-Red","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","color":"58","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cobalt-cooltech-and-trade-fitness-short-36-red-897","links":{},"stock":{"item_id":897,"product_id":897,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-36-red-897.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"813","_score":1,"_source":{"id":813,"sku":"MP07-33-Purple","name":"Thorpe Track Pant-33-Purple","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","color":"57","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"thorpe-track-pant-33-purple-813","links":{},"stock":{"item_id":813,"product_id":813,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-33-purple-813.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"809","_score":1,"_source":{"id":809,"sku":"MP07-32-Blue","name":"Thorpe Track Pant-32-Blue","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"thorpe-track-pant-32-blue-809","links":{},"stock":{"item_id":809,"product_id":809,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-32-blue-809.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"804","_score":1,"_source":{"id":804,"sku":"MP06-36-Gray","name":"Mithra Warmup Pant-36-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","color":"52","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"mithra-warmup-pant-36-gray-804","links":{},"stock":{"item_id":804,"product_id":804,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-36-gray-804.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"826","_score":1,"_source":{"id":826,"sku":"MP08-33-Red","name":"Zeppelin Yoga Pant-33-Red","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"zeppelin-yoga-pant-33-red-826","links":{},"stock":{"item_id":826,"product_id":826,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-33-red-826.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"806","_score":1,"_source":{"id":806,"sku":"MP06-36-Orange","name":"Mithra Warmup Pant-36-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","color":"56","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-36-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"mithra-warmup-pant-36-orange-806","links":{},"stock":{"item_id":806,"product_id":806,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-36-orange-806.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"829","_score":1,"_source":{"id":829,"sku":"MP08-34-Red","name":"Zeppelin Yoga Pant-34-Red","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"zeppelin-yoga-pant-34-red-829","links":{},"stock":{"item_id":829,"product_id":829,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-34-red-829.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"816","_score":1,"_source":{"id":816,"sku":"MP07-34-Purple","name":"Thorpe Track Pant-34-Purple","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","color":"57","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"thorpe-track-pant-34-purple-816","links":{},"stock":{"item_id":816,"product_id":816,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-34-purple-816.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"823","_score":1,"_source":{"id":823,"sku":"MP08-32-Red","name":"Zeppelin Yoga Pant-32-Red","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"zeppelin-yoga-pant-32-red-823","links":{},"stock":{"item_id":823,"product_id":823,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-32-red-823.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"836","_score":1,"_source":{"id":836,"sku":"MP09-32-Red","name":"Livingston All-Purpose Tight-32-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","color":"58","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"livingston-all-purpose-tight-32-red-836","links":{},"stock":{"item_id":836,"product_id":836,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-32-red-836.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"802","_score":1,"_source":{"id":802,"sku":"MP06-34-Green","name":"Mithra Warmup Pant-34-Green","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","color":"53","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"mithra-warmup-pant-34-green-802","links":{},"stock":{"item_id":802,"product_id":802,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-34-green-802.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"818","_score":1,"_source":{"id":818,"sku":"MP07-36-Blue","name":"Thorpe Track Pant-36-Blue","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"thorpe-track-pant-36-blue-818","links":{},"stock":{"item_id":818,"product_id":818,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-36-blue-818.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"821","_score":1,"_source":{"id":821,"sku":"MP08-32-Blue","name":"Zeppelin Yoga Pant-32-Blue","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"zeppelin-yoga-pant-32-blue-821","links":{},"stock":{"item_id":821,"product_id":821,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-32-blue-821.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"828","_score":1,"_source":{"id":828,"sku":"MP08-34-Green","name":"Zeppelin Yoga Pant-34-Green","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"zeppelin-yoga-pant-34-green-828","links":{},"stock":{"item_id":828,"product_id":828,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-34-green-828.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"817","_score":1,"_source":{"id":817,"sku":"MP07-36-Black","name":"Thorpe Track Pant-36-Black","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"thorpe-track-pant-36-black-817","links":{},"stock":{"item_id":817,"product_id":817,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-36-black-817.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"805","_score":1,"_source":{"id":805,"sku":"MP06-36-Green","name":"Mithra Warmup Pant-36-Green","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","color":"53","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"mithra-warmup-pant-36-green-805","links":{},"stock":{"item_id":805,"product_id":805,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-36-green-805.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"812","_score":1,"_source":{"id":812,"sku":"MP07-33-Blue","name":"Thorpe Track Pant-33-Blue","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"thorpe-track-pant-33-blue-812","links":{},"stock":{"item_id":812,"product_id":812,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-33-blue-812.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"848","_score":1,"_source":{"id":848,"sku":"MP10-32-Blue","name":"Orestes Yoga Pant -32-Blue","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-yoga-pant-32-blue-848","links":{},"stock":{"item_id":848,"product_id":848,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-32-blue-848.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"824","_score":1,"_source":{"id":824,"sku":"MP08-33-Blue","name":"Zeppelin Yoga Pant-33-Blue","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"zeppelin-yoga-pant-33-blue-824","links":{},"stock":{"item_id":824,"product_id":824,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-33-blue-824.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"834","_score":1,"_source":{"id":834,"sku":"MP09-32-Black","name":"Livingston All-Purpose Tight-32-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","color":"49","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"livingston-all-purpose-tight-32-black-834","links":{},"stock":{"item_id":834,"product_id":834,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-32-black-834.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"819","_score":1,"_source":{"id":819,"sku":"MP07-36-Purple","name":"Thorpe Track Pant-36-Purple","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","color":"57","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"thorpe-track-pant-36-purple-819","links":{},"stock":{"item_id":819,"product_id":819,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-36-purple-819.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"801","_score":1,"_source":{"id":801,"sku":"MP06-34-Gray","name":"Mithra Warmup Pant-34-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","color":"52","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"mithra-warmup-pant-34-gray-801","links":{},"stock":{"item_id":801,"product_id":801,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-34-gray-801.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"825","_score":1,"_source":{"id":825,"sku":"MP08-33-Green","name":"Zeppelin Yoga Pant-33-Green","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"zeppelin-yoga-pant-33-green-825","links":{},"stock":{"item_id":825,"product_id":825,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-33-green-825.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"811","_score":1,"_source":{"id":811,"sku":"MP07-33-Black","name":"Thorpe Track Pant-33-Black","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"thorpe-track-pant-33-black-811","links":{},"stock":{"item_id":811,"product_id":811,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-33-black-811.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"839","_score":1,"_source":{"id":839,"sku":"MP09-33-Red","name":"Livingston All-Purpose Tight-33-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","color":"58","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"livingston-all-purpose-tight-33-red-839","links":{},"stock":{"item_id":839,"product_id":839,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-33-red-839.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"808","_score":1,"_source":{"id":808,"sku":"MP07-32-Black","name":"Thorpe Track Pant-32-Black","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"thorpe-track-pant-32-black-808","links":{},"stock":{"item_id":808,"product_id":808,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-32-black-808.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"815","_score":1,"_source":{"id":815,"sku":"MP07-34-Blue","name":"Thorpe Track Pant-34-Blue","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"thorpe-track-pant-34-blue-815","links":{},"stock":{"item_id":815,"product_id":815,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-34-blue-815.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"840","_score":1,"_source":{"id":840,"sku":"MP09-34-Black","name":"Livingston All-Purpose Tight-34-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","color":"49","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"livingston-all-purpose-tight-34-black-840","links":{},"stock":{"item_id":840,"product_id":840,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-34-black-840.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"859","_score":1,"_source":{"id":859,"sku":"MP10","name":"Orestes Yoga Pant ","attribute_set_id":10,"price":66,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"orestes-yoga-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,154,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[116,115,109],"pattern":"197","climate":[204,205,206,210,211],"slug":"orestes-yoga-pant-859","links":{},"stock":{"item_id":859,"product_id":859,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP10-32-Black","id":847,"status":1,"name":"Orestes Yoga Pant -32-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"176","color":"49","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","url_key":"orestes-yoga-pant-32-black","msrp_display_actual_price_type":"0"},{"sku":"MP10-32-Blue","id":848,"status":1,"name":"Orestes Yoga Pant -32-Blue","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"176","color":"50","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","url_key":"orestes-yoga-pant-32-blue","msrp_display_actual_price_type":"0"},{"sku":"MP10-32-Green","id":849,"status":1,"name":"Orestes Yoga Pant -32-Green","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"176","color":"53","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","url_key":"orestes-yoga-pant-32-green","msrp_display_actual_price_type":"0"},{"sku":"MP10-33-Black","id":850,"status":1,"name":"Orestes Yoga Pant -33-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"177","color":"49","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","url_key":"orestes-yoga-pant-33-black","msrp_display_actual_price_type":"0"},{"sku":"MP10-33-Blue","id":851,"status":1,"name":"Orestes Yoga Pant -33-Blue","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"177","color":"50","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","url_key":"orestes-yoga-pant-33-blue","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MP10-33-Green","id":852,"status":1,"name":"Orestes Yoga Pant -33-Green","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"177","color":"53","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","url_key":"orestes-yoga-pant-33-green","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MP10-34-Black","id":853,"status":1,"name":"Orestes Yoga Pant -34-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"178","color":"49","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","url_key":"orestes-yoga-pant-34-black","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MP10-34-Blue","id":854,"status":1,"name":"Orestes Yoga Pant -34-Blue","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"178","color":"50","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","url_key":"orestes-yoga-pant-34-blue","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MP10-34-Green","id":855,"status":1,"name":"Orestes Yoga Pant -34-Green","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"178","color":"53","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","url_key":"orestes-yoga-pant-34-green","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MP10-36-Black","id":856,"status":1,"name":"Orestes Yoga Pant -36-Black","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"179","color":"49","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","url_key":"orestes-yoga-pant-36-black","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MP10-36-Blue","id":857,"status":1,"name":"Orestes Yoga Pant -36-Blue","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"179","color":"50","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","url_key":"orestes-yoga-pant-36-blue","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66},{"sku":"MP10-36-Green","id":858,"status":1,"name":"Orestes Yoga Pant -36-Green","price":66,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"179","color":"53","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","url_key":"orestes-yoga-pant-36-green","msrp_display_actual_price_type":"0","final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66}],"configurable_options":[{"id":117,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":859,"attribute_code":"color"},{"id":116,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":859,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-859.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"864","_score":1,"_source":{"id":864,"sku":"MP11-33-Brown","name":"Aether Gym Pant -33-Brown","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","color":"51","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-33-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"aether-gym-pant-33-brown-864","links":{},"stock":{"item_id":864,"product_id":864,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-33-brown-864.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"870","_score":1,"_source":{"id":870,"sku":"MP11-36-Brown","name":"Aether Gym Pant -36-Brown","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","color":"51","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-36-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"aether-gym-pant-36-brown-870","links":{},"stock":{"item_id":870,"product_id":870,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-36-brown-870.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"861","_score":1,"_source":{"id":861,"sku":"MP11-32-Brown","name":"Aether Gym Pant -32-Brown","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","color":"51","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-32-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"aether-gym-pant-32-brown-861","links":{},"stock":{"item_id":861,"product_id":861,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-32-brown-861.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"854","_score":1,"_source":{"id":854,"sku":"MP10-34-Blue","name":"Orestes Yoga Pant -34-Blue","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-yoga-pant-34-blue-854","links":{},"stock":{"item_id":854,"product_id":854,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-34-blue-854.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"860","_score":1,"_source":{"id":860,"sku":"MP11-32-Blue","name":"Aether Gym Pant -32-Blue","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2019-05-17 10:36:33","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \r\n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-32-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"176","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"aether-gym-pant-32-blue-860","links":{},"stock":{"item_id":860,"product_id":860,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-32-blue-860.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"855","_score":1,"_source":{"id":855,"sku":"MP10-34-Green","name":"Orestes Yoga Pant -34-Green","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-yoga-pant-34-green-855","links":{},"stock":{"item_id":855,"product_id":855,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-34-green-855.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"858","_score":1,"_source":{"id":858,"sku":"MP10-36-Green","name":"Orestes Yoga Pant -36-Green","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-yoga-pant-36-green-858","links":{},"stock":{"item_id":858,"product_id":858,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-36-green-858.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"853","_score":1,"_source":{"id":853,"sku":"MP10-34-Black","name":"Orestes Yoga Pant -34-Black","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","color":"49","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-yoga-pant-34-black-853","links":{},"stock":{"item_id":853,"product_id":853,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-34-black-853.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"863","_score":1,"_source":{"id":863,"sku":"MP11-33-Blue","name":"Aether Gym Pant -33-Blue","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2019-05-17 10:37:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \r\n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-33-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"177","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"aether-gym-pant-33-blue-863","links":{},"stock":{"item_id":863,"product_id":863,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-33-blue-863.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"862","_score":1,"_source":{"id":862,"sku":"MP11-32-Green","name":"Aether Gym Pant -32-Green","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"aether-gym-pant-32-green-862","links":{},"stock":{"item_id":862,"product_id":862,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-32-green-862.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"852","_score":1,"_source":{"id":852,"sku":"MP10-33-Green","name":"Orestes Yoga Pant -33-Green","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-yoga-pant-33-green-852","links":{},"stock":{"item_id":852,"product_id":852,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-33-green-852.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"873","_score":1,"_source":{"id":873,"sku":"MP12-32-Black","name":"Cronus Yoga Pant -32-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cronus-yoga-pant-32-black-873","links":{},"stock":{"item_id":873,"product_id":873,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-32-black-873.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"866","_score":1,"_source":{"id":866,"sku":"MP11-34-Blue","name":"Aether Gym Pant -34-Blue","attribute_set_id":10,"price":74,"status":2,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2019-05-14 08:09:40","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \r\n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-34-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"178","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"aether-gym-pant-34-blue-866","links":{},"stock":{"item_id":866,"product_id":866,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-blue_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-34-blue-866.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"851","_score":1,"_source":{"id":851,"sku":"MP10-33-Blue","name":"Orestes Yoga Pant -33-Blue","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-yoga-pant-33-blue-851","links":{},"stock":{"item_id":851,"product_id":851,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-33-blue-851.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"872","_score":1,"_source":{"id":872,"sku":"MP11","name":"Aether Gym Pant ","attribute_set_id":10,"price":74,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2019-05-17 10:35:29","product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \r\n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","category_ids":[18,32,34,2],"options_container":"container2","required_options":"1","has_options":"1","url_key":"aether-gym-pant","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":[143,151,159],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[202,203,204,205,206,207,208,210],"slug":"aether-gym-pant-872","links":{},"stock":{"item_id":872,"product_id":872,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":null,"vid":null},{"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":null,"vid":null}],"configurable_children":[{"sku":"MP11-32-Blue","id":860,"status":1,"name":"Aether Gym Pant -32-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"176","color":"50","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","url_key":"aether-gym-pant-32-blue","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MP11-32-Brown","id":861,"status":1,"name":"Aether Gym Pant -32-Brown","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"176","color":"51","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","url_key":"aether-gym-pant-32-brown","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MP11-32-Green","id":862,"status":1,"name":"Aether Gym Pant -32-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"176","color":"53","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","url_key":"aether-gym-pant-32-green","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MP11-33-Blue","id":863,"status":1,"name":"Aether Gym Pant -33-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"177","color":"50","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","url_key":"aether-gym-pant-33-blue","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MP11-33-Brown","id":864,"status":1,"name":"Aether Gym Pant -33-Brown","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"177","color":"51","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","url_key":"aether-gym-pant-33-brown","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MP11-33-Green","id":865,"status":1,"name":"Aether Gym Pant -33-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"177","color":"53","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","url_key":"aether-gym-pant-33-green","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MP11-34-Blue","id":866,"status":2,"name":"Aether Gym Pant -34-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"178","color":"50","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","url_key":"aether-gym-pant-34-blue","msrp_display_actual_price_type":"0"},{"sku":"MP11-34-Brown","id":867,"status":1,"name":"Aether Gym Pant -34-Brown","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"178","color":"51","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","url_key":"aether-gym-pant-34-brown","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MP11-34-Green","id":868,"status":1,"name":"Aether Gym Pant -34-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"178","color":"53","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","url_key":"aether-gym-pant-34-green","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MP11-36-Blue","id":869,"status":1,"name":"Aether Gym Pant -36-Blue","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"179","color":"50","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","url_key":"aether-gym-pant-36-blue","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MP11-36-Brown","id":870,"status":1,"name":"Aether Gym Pant -36-Brown","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"179","color":"51","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","url_key":"aether-gym-pant-36-brown","msrp_display_actual_price_type":"0","final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74},{"sku":"MP11-36-Green","id":871,"status":1,"name":"Aether Gym Pant -36-Green","price":74,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","34","2"],"size":"179","color":"53","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","url_key":"aether-gym-pant-36-green","msrp_display_actual_price_type":"0"}],"configurable_options":[{"id":316,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":51,"label":"Brown"},{"value_index":53,"label":"Green"}],"product_id":872,"attribute_code":"color"},{"id":317,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":872,"attribute_code":"size"}],"color_options":[50,51,53],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-872.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"803","_score":1,"_source":{"id":803,"sku":"MP06-34-Orange","name":"Mithra Warmup Pant-34-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","color":"56","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-34-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"mithra-warmup-pant-34-orange-803","links":{},"stock":{"item_id":803,"product_id":803,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-34-orange-803.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"814","_score":1,"_source":{"id":814,"sku":"MP07-34-Black","name":"Thorpe Track Pant-34-Black","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"thorpe-track-pant-34-black-814","links":{},"stock":{"item_id":814,"product_id":814,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-34-black-814.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"822","_score":1,"_source":{"id":822,"sku":"MP08-32-Green","name":"Zeppelin Yoga Pant-32-Green","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"zeppelin-yoga-pant-32-green-822","links":{},"stock":{"item_id":822,"product_id":822,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-32-green-822.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"810","_score":1,"_source":{"id":810,"sku":"MP07-32-Purple","name":"Thorpe Track Pant-32-Purple","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","color":"57","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"thorpe-track-pant-32-purple-810","links":{},"stock":{"item_id":810,"product_id":810,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-32-purple-810.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"830","_score":1,"_source":{"id":830,"sku":"MP08-36-Blue","name":"Zeppelin Yoga Pant-36-Blue","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"zeppelin-yoga-pant-36-blue-830","links":{},"stock":{"item_id":830,"product_id":830,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-36-blue-830.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"905","_score":1,"_source":{"id":905,"sku":"MSH03-32-Blue","name":"Meteor Workout Short-32-Blue","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"meteor-workout-short-32-blue-905","links":{},"stock":{"item_id":905,"product_id":905,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-32-blue-905.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"946","_score":1,"_source":{"id":946,"sku":"MSH06-33-Blue","name":"Lono Yoga Short-33-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"lono-yoga-short-33-blue-946","links":{},"stock":{"item_id":946,"product_id":946,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-33-blue-946.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"949","_score":1,"_source":{"id":949,"sku":"MSH06-34-Blue","name":"Lono Yoga Short-34-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"lono-yoga-short-34-blue-949","links":{},"stock":{"item_id":949,"product_id":949,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-34-blue-949.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"927","_score":1,"_source":{"id":927,"sku":"MSH04-36-Purple","name":"Torque Power Short-36-Purple","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","color":"57","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"torque-power-short-36-purple-927","links":{},"stock":{"item_id":927,"product_id":927,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-36-purple-927.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"944","_score":1,"_source":{"id":944,"sku":"MSH06-32-Gray","name":"Lono Yoga Short-32-Gray","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","color":"52","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"lono-yoga-short-32-gray-944","links":{},"stock":{"item_id":944,"product_id":944,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-32-gray-944.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"923","_score":1,"_source":{"id":923,"sku":"MSH04-34-Gray","name":"Torque Power Short-34-Gray","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","color":"52","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"torque-power-short-34-gray-923","links":{},"stock":{"item_id":923,"product_id":923,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-34-gray-923.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"936","_score":1,"_source":{"id":936,"sku":"MSH05-34-Black","name":"Hawkeye Yoga Short-34-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"hawkeye-yoga-short-34-black-936","links":{},"stock":{"item_id":936,"product_id":936,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-34-black-936.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"931","_score":1,"_source":{"id":931,"sku":"MSH05-32-Blue","name":"Hawkeye Yoga Short-32-Blue","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"hawkeye-yoga-short-32-blue-931","links":{},"stock":{"item_id":931,"product_id":931,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-32-blue-931.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"926","_score":1,"_source":{"id":926,"sku":"MSH04-36-Gray","name":"Torque Power Short-36-Gray","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","color":"52","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"torque-power-short-36-gray-926","links":{},"stock":{"item_id":926,"product_id":926,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-36-gray-926.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"933","_score":1,"_source":{"id":933,"sku":"MSH05-33-Black","name":"Hawkeye Yoga Short-33-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"hawkeye-yoga-short-33-black-933","links":{},"stock":{"item_id":933,"product_id":933,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-33-black-933.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"948","_score":1,"_source":{"id":948,"sku":"MSH06-33-Red","name":"Lono Yoga Short-33-Red","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","color":"58","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"lono-yoga-short-33-red-948","links":{},"stock":{"item_id":948,"product_id":948,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-33-red-948.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"925","_score":1,"_source":{"id":925,"sku":"MSH04-34-Yellow","name":"Torque Power Short-34-Yellow","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","color":"60","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-34-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"torque-power-short-34-yellow-925","links":{},"stock":{"item_id":925,"product_id":925,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-34-yellow-925.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"940","_score":1,"_source":{"id":940,"sku":"MSH05-36-Blue","name":"Hawkeye Yoga Short-36-Blue","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"hawkeye-yoga-short-36-blue-940","links":{},"stock":{"item_id":940,"product_id":940,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-36-blue-940.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"934","_score":1,"_source":{"id":934,"sku":"MSH05-33-Blue","name":"Hawkeye Yoga Short-33-Blue","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"hawkeye-yoga-short-33-blue-934","links":{},"stock":{"item_id":934,"product_id":934,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-33-blue-934.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"937","_score":1,"_source":{"id":937,"sku":"MSH05-34-Blue","name":"Hawkeye Yoga Short-34-Blue","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"hawkeye-yoga-short-34-blue-937","links":{},"stock":{"item_id":937,"product_id":937,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-34-blue-937.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"932","_score":1,"_source":{"id":932,"sku":"MSH05-32-Gray","name":"Hawkeye Yoga Short-32-Gray","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","color":"52","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"hawkeye-yoga-short-32-gray-932","links":{},"stock":{"item_id":932,"product_id":932,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-32-gray-932.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"945","_score":1,"_source":{"id":945,"sku":"MSH06-32-Red","name":"Lono Yoga Short-32-Red","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","color":"58","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"lono-yoga-short-32-red-945","links":{},"stock":{"item_id":945,"product_id":945,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-32-red-945.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"939","_score":1,"_source":{"id":939,"sku":"MSH05-36-Black","name":"Hawkeye Yoga Short-36-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"hawkeye-yoga-short-36-black-939","links":{},"stock":{"item_id":939,"product_id":939,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-36-black-939.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"930","_score":1,"_source":{"id":930,"sku":"MSH05-32-Black","name":"Hawkeye Yoga Short-32-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"hawkeye-yoga-short-32-black-930","links":{},"stock":{"item_id":930,"product_id":930,"stock_id":1,"qty":70,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-32-black-930.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"950","_score":1,"_source":{"id":950,"sku":"MSH06-34-Gray","name":"Lono Yoga Short-34-Gray","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","color":"52","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"lono-yoga-short-34-gray-950","links":{},"stock":{"item_id":950,"product_id":950,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-34-gray-950.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"943","_score":1,"_source":{"id":943,"sku":"MSH06-32-Blue","name":"Lono Yoga Short-32-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"lono-yoga-short-32-blue-943","links":{},"stock":{"item_id":943,"product_id":943,"stock_id":1,"qty":24,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-32-blue-943.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"947","_score":1,"_source":{"id":947,"sku":"MSH06-33-Gray","name":"Lono Yoga Short-33-Gray","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","color":"52","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"lono-yoga-short-33-gray-947","links":{},"stock":{"item_id":947,"product_id":947,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-33-gray-947.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"903","_score":1,"_source":{"id":903,"sku":"MSH02","name":"Apollo Running Short","attribute_set_id":10,"price":32.5,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

                            \n

                            • Black shorts with green accents.
                            • Side pockets.
                            • 4\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"apollo-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[38,39],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[202,205,209],"slug":"apollo-running-short-903","links":{},"stock":{"item_id":903,"product_id":903,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH02-32-Black","id":899,"status":1,"name":"Apollo Running Short-32-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"49","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","url_key":"apollo-running-short-32-black","msrp_display_actual_price_type":"0"},{"sku":"MSH02-33-Black","id":900,"status":1,"name":"Apollo Running Short-33-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"49","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","url_key":"apollo-running-short-33-black","msrp_display_actual_price_type":"0"},{"sku":"MSH02-34-Black","id":901,"status":1,"name":"Apollo Running Short-34-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"49","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","url_key":"apollo-running-short-34-black","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH02-36-Black","id":902,"status":1,"name":"Apollo Running Short-36-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"49","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","url_key":"apollo-running-short-36-black","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5}],"configurable_options":[{"id":125,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"}],"product_id":903,"attribute_code":"color"},{"id":124,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":903,"attribute_code":"size"}],"color_options":[49],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-903.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"916","_score":1,"_source":{"id":916,"sku":"MSH03","name":"Meteor Workout Short","attribute_set_id":10,"price":32.5,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"meteor-workout-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[202,208,209],"slug":"meteor-workout-short-916","links":{},"stock":{"item_id":916,"product_id":916,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH03-32-Black","id":904,"status":1,"name":"Meteor Workout Short-32-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"49","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","url_key":"meteor-workout-short-32-black","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH03-32-Blue","id":905,"status":1,"name":"Meteor Workout Short-32-Blue","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"50","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","url_key":"meteor-workout-short-32-blue","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH03-32-Green","id":906,"status":1,"name":"Meteor Workout Short-32-Green","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"53","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","url_key":"meteor-workout-short-32-green","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH03-33-Black","id":907,"status":1,"name":"Meteor Workout Short-33-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"49","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","url_key":"meteor-workout-short-33-black","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH03-33-Blue","id":908,"status":1,"name":"Meteor Workout Short-33-Blue","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"50","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","url_key":"meteor-workout-short-33-blue","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH03-33-Green","id":909,"status":1,"name":"Meteor Workout Short-33-Green","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"53","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","url_key":"meteor-workout-short-33-green","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH03-34-Black","id":910,"status":1,"name":"Meteor Workout Short-34-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"49","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","url_key":"meteor-workout-short-34-black","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH03-34-Blue","id":911,"status":1,"name":"Meteor Workout Short-34-Blue","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"50","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","url_key":"meteor-workout-short-34-blue","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH03-34-Green","id":912,"status":1,"name":"Meteor Workout Short-34-Green","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"53","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","url_key":"meteor-workout-short-34-green","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH03-36-Black","id":913,"status":1,"name":"Meteor Workout Short-36-Black","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"49","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","url_key":"meteor-workout-short-36-black","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH03-36-Blue","id":914,"status":1,"name":"Meteor Workout Short-36-Blue","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"50","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","url_key":"meteor-workout-short-36-blue","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH03-36-Green","id":915,"status":1,"name":"Meteor Workout Short-36-Green","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"53","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","url_key":"meteor-workout-short-36-green","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5}],"configurable_options":[{"id":127,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":916,"attribute_code":"color"},{"id":126,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":916,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-916.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"929","_score":1,"_source":{"id":929,"sku":"MSH04","name":"Torque Power Short","attribute_set_id":10,"price":32.5,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"torque-power-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[205,212,206,208,209],"slug":"torque-power-short-929","links":{},"stock":{"item_id":929,"product_id":929,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH04-32-Gray","id":917,"status":1,"name":"Torque Power Short-32-Gray","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"52","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","url_key":"torque-power-short-32-gray","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH04-32-Purple","id":918,"status":1,"name":"Torque Power Short-32-Purple","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"57","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","url_key":"torque-power-short-32-purple","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH04-32-Yellow","id":919,"status":1,"name":"Torque Power Short-32-Yellow","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"176","color":"60","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","url_key":"torque-power-short-32-yellow","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH04-33-Gray","id":920,"status":1,"name":"Torque Power Short-33-Gray","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"52","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","url_key":"torque-power-short-33-gray","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH04-33-Purple","id":921,"status":1,"name":"Torque Power Short-33-Purple","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"57","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","url_key":"torque-power-short-33-purple","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH04-33-Yellow","id":922,"status":1,"name":"Torque Power Short-33-Yellow","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"177","color":"60","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","url_key":"torque-power-short-33-yellow","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH04-34-Gray","id":923,"status":1,"name":"Torque Power Short-34-Gray","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"52","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","url_key":"torque-power-short-34-gray","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH04-34-Purple","id":924,"status":1,"name":"Torque Power Short-34-Purple","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"57","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","url_key":"torque-power-short-34-purple","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH04-34-Yellow","id":925,"status":1,"name":"Torque Power Short-34-Yellow","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"178","color":"60","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","url_key":"torque-power-short-34-yellow","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH04-36-Gray","id":926,"status":1,"name":"Torque Power Short-36-Gray","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"52","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","url_key":"torque-power-short-36-gray","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH04-36-Purple","id":927,"status":1,"name":"Torque Power Short-36-Purple","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"57","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","url_key":"torque-power-short-36-purple","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5},{"sku":"MSH04-36-Yellow","id":928,"status":1,"name":"Torque Power Short-36-Yellow","price":32.5,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19"],"size":"179","color":"60","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","url_key":"torque-power-short-36-yellow","msrp_display_actual_price_type":"0","final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5}],"configurable_options":[{"id":129,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"},{"value_index":60,"label":"Yellow"}],"product_id":929,"attribute_code":"color"},{"id":128,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":929,"attribute_code":"size"}],"color_options":[52,57,60],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-929.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"995","_score":1,"_source":{"id":995,"sku":"MSH10-32-Blue","name":"Sol Active Short-32-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"sol-active-short-32-blue-995","links":{},"stock":{"item_id":995,"product_id":995,"stock_id":1,"qty":10,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-32-blue-995.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"981","_score":1,"_source":{"id":981,"sku":"MSH08","name":"Orestes Fitness Short","attribute_set_id":10,"price":35,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"orestes-fitness-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_bottom":[116,105],"pattern":"197","climate":[202,205,212],"slug":"orestes-fitness-short-981","links":{},"stock":{"item_id":981,"product_id":981,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH08-32-Black","id":969,"status":1,"name":"Orestes Fitness Short-32-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"176","color":"49","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","url_key":"orestes-fitness-short-32-black","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH08-32-Blue","id":970,"status":1,"name":"Orestes Fitness Short-32-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"176","color":"50","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","url_key":"orestes-fitness-short-32-blue","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH08-32-Green","id":971,"status":1,"name":"Orestes Fitness Short-32-Green","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"176","color":"53","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","url_key":"orestes-fitness-short-32-green","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH08-33-Black","id":972,"status":1,"name":"Orestes Fitness Short-33-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"177","color":"49","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","url_key":"orestes-fitness-short-33-black","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH08-33-Blue","id":973,"status":1,"name":"Orestes Fitness Short-33-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"177","color":"50","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","url_key":"orestes-fitness-short-33-blue","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH08-33-Green","id":974,"status":1,"name":"Orestes Fitness Short-33-Green","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"177","color":"53","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","url_key":"orestes-fitness-short-33-green","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH08-34-Black","id":975,"status":1,"name":"Orestes Fitness Short-34-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"178","color":"49","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","url_key":"orestes-fitness-short-34-black","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH08-34-Blue","id":976,"status":1,"name":"Orestes Fitness Short-34-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"178","color":"50","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","url_key":"orestes-fitness-short-34-blue","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH08-34-Green","id":977,"status":1,"name":"Orestes Fitness Short-34-Green","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"178","color":"53","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","url_key":"orestes-fitness-short-34-green","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH08-36-Black","id":978,"status":1,"name":"Orestes Fitness Short-36-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"179","color":"49","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","url_key":"orestes-fitness-short-36-black","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH08-36-Blue","id":979,"status":1,"name":"Orestes Fitness Short-36-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"179","color":"50","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","url_key":"orestes-fitness-short-36-blue","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH08-36-Green","id":980,"status":1,"name":"Orestes Fitness Short-36-Green","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","2"],"size":"179","color":"53","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","url_key":"orestes-fitness-short-36-green","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35}],"configurable_options":[{"id":137,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":981,"attribute_code":"color"},{"id":136,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":981,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-981.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"968","_score":1,"_source":{"id":968,"sku":"MSH07","name":"Rapha Sports Short","attribute_set_id":10,"price":35,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"rapha-sports-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,36,38,39],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"1","style_bottom":[116,105,108],"pattern":[197,199],"climate":[205,208,209],"slug":"rapha-sports-short-968","links":{},"stock":{"item_id":968,"product_id":968,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH07-32-Black","id":956,"status":1,"name":"Rapha Sports Short-32-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"176","color":"49","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","url_key":"rapha-sports-short-32-black","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH07-32-Blue","id":957,"status":1,"name":"Rapha Sports Short-32-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"176","color":"50","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","url_key":"rapha-sports-short-32-blue","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH07-32-Purple","id":958,"status":1,"name":"Rapha Sports Short-32-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"176","color":"57","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","url_key":"rapha-sports-short-32-purple","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH07-33-Black","id":959,"status":1,"name":"Rapha Sports Short-33-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"177","color":"49","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","url_key":"rapha-sports-short-33-black","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH07-33-Blue","id":960,"status":1,"name":"Rapha Sports Short-33-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"177","color":"50","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","url_key":"rapha-sports-short-33-blue","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH07-33-Purple","id":961,"status":1,"name":"Rapha Sports Short-33-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"177","color":"57","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","url_key":"rapha-sports-short-33-purple","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH07-34-Black","id":962,"status":1,"name":"Rapha Sports Short-34-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"178","color":"49","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","url_key":"rapha-sports-short-34-black","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH07-34-Blue","id":963,"status":1,"name":"Rapha Sports Short-34-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"178","color":"50","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","url_key":"rapha-sports-short-34-blue","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH07-34-Purple","id":964,"status":1,"name":"Rapha Sports Short-34-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"178","color":"57","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","url_key":"rapha-sports-short-34-purple","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH07-36-Black","id":965,"status":1,"name":"Rapha Sports Short-36-Black","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"179","color":"49","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","url_key":"rapha-sports-short-36-black","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH07-36-Blue","id":966,"status":1,"name":"Rapha Sports Short-36-Blue","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"179","color":"50","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","url_key":"rapha-sports-short-36-blue","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35},{"sku":"MSH07-36-Purple","id":967,"status":1,"name":"Rapha Sports Short-36-Purple","price":35,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","31","34","2"],"size":"179","color":"57","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","url_key":"rapha-sports-short-36-purple","msrp_display_actual_price_type":"0","final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35}],"configurable_options":[{"id":135,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":968,"attribute_code":"color"},{"id":134,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":968,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-968.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"955","_score":1,"_source":{"id":955,"sku":"MSH06","name":"Lono Yoga Short","attribute_set_id":10,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"lono-yoga-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38,39],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,105,108],"pattern":"197","climate":[202,205,212,209],"slug":"lono-yoga-short-955","links":{},"stock":{"item_id":955,"product_id":955,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH06-32-Blue","id":943,"status":1,"name":"Lono Yoga Short-32-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"176","color":"50","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","url_key":"lono-yoga-short-32-blue","msrp_display_actual_price_type":"0"},{"sku":"MSH06-32-Gray","id":944,"status":1,"name":"Lono Yoga Short-32-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"176","color":"52","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","url_key":"lono-yoga-short-32-gray","msrp_display_actual_price_type":"0"},{"sku":"MSH06-32-Red","id":945,"status":1,"name":"Lono Yoga Short-32-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"176","color":"58","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","url_key":"lono-yoga-short-32-red","msrp_display_actual_price_type":"0"},{"sku":"MSH06-33-Blue","id":946,"status":1,"name":"Lono Yoga Short-33-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"177","color":"50","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","url_key":"lono-yoga-short-33-blue","msrp_display_actual_price_type":"0"},{"sku":"MSH06-33-Gray","id":947,"status":1,"name":"Lono Yoga Short-33-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"177","color":"52","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","url_key":"lono-yoga-short-33-gray","msrp_display_actual_price_type":"0"},{"sku":"MSH06-33-Red","id":948,"status":1,"name":"Lono Yoga Short-33-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"177","color":"58","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","url_key":"lono-yoga-short-33-red","msrp_display_actual_price_type":"0"},{"sku":"MSH06-34-Blue","id":949,"status":1,"name":"Lono Yoga Short-34-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"178","color":"50","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","url_key":"lono-yoga-short-34-blue","msrp_display_actual_price_type":"0"},{"sku":"MSH06-34-Gray","id":950,"status":1,"name":"Lono Yoga Short-34-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"178","color":"52","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","url_key":"lono-yoga-short-34-gray","msrp_display_actual_price_type":"0"},{"sku":"MSH06-34-Red","id":951,"status":1,"name":"Lono Yoga Short-34-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"178","color":"58","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","url_key":"lono-yoga-short-34-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MSH06-36-Blue","id":952,"status":1,"name":"Lono Yoga Short-36-Blue","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"179","color":"50","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","url_key":"lono-yoga-short-36-blue","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MSH06-36-Gray","id":953,"status":1,"name":"Lono Yoga Short-36-Gray","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"179","color":"52","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","url_key":"lono-yoga-short-36-gray","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"MSH06-36-Red","id":954,"status":1,"name":"Lono Yoga Short-36-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","8","2"],"size":"179","color":"58","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","url_key":"lono-yoga-short-36-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32}],"configurable_options":[{"id":133,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"}],"product_id":955,"attribute_code":"color"},{"id":132,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":955,"attribute_code":"size"}],"color_options":[50,52,58],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-955.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"994","_score":1,"_source":{"id":994,"sku":"MSH09","name":"Troy Yoga Short","attribute_set_id":10,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"troy-yoga-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,37,148,151],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[205,212,209],"slug":"troy-yoga-short-994","links":{},"stock":{"item_id":994,"product_id":994,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH09-32-Black","id":982,"status":1,"name":"Troy Yoga Short-32-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"49","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","url_key":"troy-yoga-short-32-black","msrp_display_actual_price_type":"0"},{"sku":"MSH09-32-Blue","id":983,"status":1,"name":"Troy Yoga Short-32-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"50","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","url_key":"troy-yoga-short-32-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MSH09-32-Green","id":984,"status":1,"name":"Troy Yoga Short-32-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"53","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","url_key":"troy-yoga-short-32-green","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MSH09-33-Black","id":985,"status":1,"name":"Troy Yoga Short-33-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"49","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","url_key":"troy-yoga-short-33-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MSH09-33-Blue","id":986,"status":1,"name":"Troy Yoga Short-33-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"50","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","url_key":"troy-yoga-short-33-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MSH09-33-Green","id":987,"status":1,"name":"Troy Yoga Short-33-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"53","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","url_key":"troy-yoga-short-33-green","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MSH09-34-Black","id":988,"status":1,"name":"Troy Yoga Short-34-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"49","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","url_key":"troy-yoga-short-34-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MSH09-34-Blue","id":989,"status":1,"name":"Troy Yoga Short-34-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"50","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","url_key":"troy-yoga-short-34-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MSH09-34-Green","id":990,"status":1,"name":"Troy Yoga Short-34-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"53","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","url_key":"troy-yoga-short-34-green","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MSH09-36-Black","id":991,"status":1,"name":"Troy Yoga Short-36-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"49","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","url_key":"troy-yoga-short-36-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MSH09-36-Blue","id":992,"status":1,"name":"Troy Yoga Short-36-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"50","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","url_key":"troy-yoga-short-36-blue","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"MSH09-36-Green","id":993,"status":1,"name":"Troy Yoga Short-36-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"53","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","url_key":"troy-yoga-short-36-green","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24}],"configurable_options":[{"id":139,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":994,"attribute_code":"color"},{"id":138,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":994,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-994.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"953","_score":1,"_source":{"id":953,"sku":"MSH06-36-Gray","name":"Lono Yoga Short-36-Gray","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","color":"52","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"lono-yoga-short-36-gray-953","links":{},"stock":{"item_id":953,"product_id":953,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-36-gray-953.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"982","_score":1,"_source":{"id":982,"sku":"MSH09-32-Black","name":"Troy Yoga Short-32-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"troy-yoga-short-32-black-982","links":{},"stock":{"item_id":982,"product_id":982,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-03-21 13:14:03","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/m/s/msh09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-32-black-982.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"956","_score":1,"_source":{"id":956,"sku":"MSH07-32-Black","name":"Rapha Sports Short-32-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","color":"49","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"rapha-sports-short-32-black-956","links":{},"stock":{"item_id":956,"product_id":956,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-32-black-956.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"976","_score":1,"_source":{"id":976,"sku":"MSH08-34-Blue","name":"Orestes Fitness Short-34-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","color":"50","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-fitness-short-34-blue-976","links":{},"stock":{"item_id":976,"product_id":976,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-34-blue-976.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"966","_score":1,"_source":{"id":966,"sku":"MSH07-36-Blue","name":"Rapha Sports Short-36-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","color":"50","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"rapha-sports-short-36-blue-966","links":{},"stock":{"item_id":966,"product_id":966,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-36-blue-966.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"996","_score":1,"_source":{"id":996,"sku":"MSH10-32-Green","name":"Sol Active Short-32-Green","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","color":"53","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"sol-active-short-32-green-996","links":{},"stock":{"item_id":996,"product_id":996,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-32-green-996.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"983","_score":1,"_source":{"id":983,"sku":"MSH09-32-Blue","name":"Troy Yoga Short-32-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"troy-yoga-short-32-blue-983","links":{},"stock":{"item_id":983,"product_id":983,"stock_id":1,"qty":58,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-32-blue-983.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"980","_score":1,"_source":{"id":980,"sku":"MSH08-36-Green","name":"Orestes Fitness Short-36-Green","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","color":"53","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-fitness-short-36-green-980","links":{},"stock":{"item_id":980,"product_id":980,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-36-green-980.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"989","_score":1,"_source":{"id":989,"sku":"MSH09-34-Blue","name":"Troy Yoga Short-34-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"troy-yoga-short-34-blue-989","links":{},"stock":{"item_id":989,"product_id":989,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-34-blue-989.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"973","_score":1,"_source":{"id":973,"sku":"MSH08-33-Blue","name":"Orestes Fitness Short-33-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","color":"50","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-fitness-short-33-blue-973","links":{},"stock":{"item_id":973,"product_id":973,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-33-blue-973.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"959","_score":1,"_source":{"id":959,"sku":"MSH07-33-Black","name":"Rapha Sports Short-33-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","color":"49","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"rapha-sports-short-33-black-959","links":{},"stock":{"item_id":959,"product_id":959,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-33-black-959.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"972","_score":1,"_source":{"id":972,"sku":"MSH08-33-Black","name":"Orestes Fitness Short-33-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-fitness-short-33-black-972","links":{},"stock":{"item_id":972,"product_id":972,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-33-black-972.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"988","_score":1,"_source":{"id":988,"sku":"MSH09-34-Black","name":"Troy Yoga Short-34-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"troy-yoga-short-34-black-988","links":{},"stock":{"item_id":988,"product_id":988,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-34-black-988.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"984","_score":1,"_source":{"id":984,"sku":"MSH09-32-Green","name":"Troy Yoga Short-32-Green","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"troy-yoga-short-32-green-984","links":{},"stock":{"item_id":984,"product_id":984,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-32-green-984.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"978","_score":1,"_source":{"id":978,"sku":"MSH08-36-Black","name":"Orestes Fitness Short-36-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-fitness-short-36-black-978","links":{},"stock":{"item_id":978,"product_id":978,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-36-black-978.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1000","_score":1,"_source":{"id":1000,"sku":"MSH10-33-Purple","name":"Sol Active Short-33-Purple","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","color":"57","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"sol-active-short-33-purple-1000","links":{},"stock":{"item_id":1000,"product_id":1000,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-33-purple-1000.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"997","_score":1,"_source":{"id":997,"sku":"MSH10-32-Purple","name":"Sol Active Short-32-Purple","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","color":"57","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"sol-active-short-32-purple-997","links":{},"stock":{"item_id":997,"product_id":997,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-32-purple-997.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"985","_score":1,"_source":{"id":985,"sku":"MSH09-33-Black","name":"Troy Yoga Short-33-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"troy-yoga-short-33-black-985","links":{},"stock":{"item_id":985,"product_id":985,"stock_id":1,"qty":71,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-33-black-985.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"965","_score":1,"_source":{"id":965,"sku":"MSH07-36-Black","name":"Rapha Sports Short-36-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","color":"49","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"rapha-sports-short-36-black-965","links":{},"stock":{"item_id":965,"product_id":965,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-36-black-965.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"992","_score":1,"_source":{"id":992,"sku":"MSH09-36-Blue","name":"Troy Yoga Short-36-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"troy-yoga-short-36-blue-992","links":{},"stock":{"item_id":992,"product_id":992,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-36-blue-992.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"987","_score":1,"_source":{"id":987,"sku":"MSH09-33-Green","name":"Troy Yoga Short-33-Green","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"troy-yoga-short-33-green-987","links":{},"stock":{"item_id":987,"product_id":987,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-33-green-987.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"986","_score":1,"_source":{"id":986,"sku":"MSH09-33-Blue","name":"Troy Yoga Short-33-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"troy-yoga-short-33-blue-986","links":{},"stock":{"item_id":986,"product_id":986,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-33-blue-986.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"990","_score":1,"_source":{"id":990,"sku":"MSH09-34-Green","name":"Troy Yoga Short-34-Green","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"troy-yoga-short-34-green-990","links":{},"stock":{"item_id":990,"product_id":990,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-34-green-990.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"999","_score":1,"_source":{"id":999,"sku":"MSH10-33-Green","name":"Sol Active Short-33-Green","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","color":"53","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"sol-active-short-33-green-999","links":{},"stock":{"item_id":999,"product_id":999,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-33-green-999.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"998","_score":1,"_source":{"id":998,"sku":"MSH10-33-Blue","name":"Sol Active Short-33-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"sol-active-short-33-blue-998","links":{},"stock":{"item_id":998,"product_id":998,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-33-blue-998.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"993","_score":1,"_source":{"id":993,"sku":"MSH09-36-Green","name":"Troy Yoga Short-36-Green","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"troy-yoga-short-36-green-993","links":{},"stock":{"item_id":993,"product_id":993,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-36-green-993.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"991","_score":1,"_source":{"id":991,"sku":"MSH09-36-Black","name":"Troy Yoga Short-36-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"troy-yoga-short-36-black-991","links":{},"stock":{"item_id":991,"product_id":991,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-36-black-991.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"898","_score":1,"_source":{"id":898,"sku":"MSH01","name":"Cobalt CoolTech™ Fitness Short","attribute_set_id":10,"price":44,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cobalt-cooltech-trade-fitness-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,37,38,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[202,205,212],"slug":"cobalt-cooltech-and-trade-fitness-short-898","links":{},"stock":{"item_id":898,"product_id":898,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH01-32-Black","id":886,"status":1,"name":"Cobalt CoolTech™ Fitness Short-32-Black","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"176","color":"49","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-32-black","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"MSH01-32-Blue","id":887,"status":1,"name":"Cobalt CoolTech™ Fitness Short-32-Blue","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"176","color":"50","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-32-blue","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"MSH01-32-Red","id":888,"status":1,"name":"Cobalt CoolTech™ Fitness Short-32-Red","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"176","color":"58","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-32-red","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"MSH01-33-Black","id":889,"status":1,"name":"Cobalt CoolTech™ Fitness Short-33-Black","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"177","color":"49","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-33-black","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"MSH01-33-Blue","id":890,"status":1,"name":"Cobalt CoolTech™ Fitness Short-33-Blue","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"177","color":"50","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-33-blue","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"MSH01-33-Red","id":891,"status":1,"name":"Cobalt CoolTech™ Fitness Short-33-Red","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"177","color":"58","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-33-red","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"MSH01-34-Black","id":892,"status":1,"name":"Cobalt CoolTech™ Fitness Short-34-Black","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"178","color":"49","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-34-black","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"MSH01-34-Blue","id":893,"status":1,"name":"Cobalt CoolTech™ Fitness Short-34-Blue","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"178","color":"50","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-34-blue","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"MSH01-34-Red","id":894,"status":1,"name":"Cobalt CoolTech™ Fitness Short-34-Red","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"178","color":"58","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-34-red","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"MSH01-36-Black","id":895,"status":1,"name":"Cobalt CoolTech™ Fitness Short-36-Black","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"179","color":"49","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-36-black","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"MSH01-36-Blue","id":896,"status":1,"name":"Cobalt CoolTech™ Fitness Short-36-Blue","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"179","color":"50","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-36-blue","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"MSH01-36-Red","id":897,"status":1,"name":"Cobalt CoolTech™ Fitness Short-36-Red","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","34","2"],"size":"179","color":"58","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","url_key":"cobalt-cooltech-trade-fitness-short-36-red","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44}],"configurable_options":[{"id":123,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":898,"attribute_code":"color"},{"id":122,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":898,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-898.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"885","_score":1,"_source":{"id":885,"sku":"MP12","name":"Cronus Yoga Pant ","attribute_set_id":10,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cronus-yoga-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[38,33,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,115,109],"pattern":"197","climate":[204,205,206,208,210,211],"slug":"cronus-yoga-pant-885","links":{},"stock":{"item_id":885,"product_id":885,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MP12-32-Black","id":873,"status":1,"name":"Cronus Yoga Pant -32-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"49","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","url_key":"cronus-yoga-pant-32-black","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"MP12-32-Blue","id":874,"status":1,"name":"Cronus Yoga Pant -32-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"50","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","url_key":"cronus-yoga-pant-32-blue","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"MP12-32-Red","id":875,"status":1,"name":"Cronus Yoga Pant -32-Red","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"176","color":"58","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","url_key":"cronus-yoga-pant-32-red","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"MP12-33-Black","id":876,"status":1,"name":"Cronus Yoga Pant -33-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"49","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","url_key":"cronus-yoga-pant-33-black","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"MP12-33-Blue","id":877,"status":1,"name":"Cronus Yoga Pant -33-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"50","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","url_key":"cronus-yoga-pant-33-blue","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"MP12-33-Red","id":878,"status":1,"name":"Cronus Yoga Pant -33-Red","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"177","color":"58","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","url_key":"cronus-yoga-pant-33-red","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"MP12-34-Black","id":879,"status":1,"name":"Cronus Yoga Pant -34-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"49","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","url_key":"cronus-yoga-pant-34-black","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"MP12-34-Blue","id":880,"status":1,"name":"Cronus Yoga Pant -34-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"50","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","url_key":"cronus-yoga-pant-34-blue","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"MP12-34-Red","id":881,"status":1,"name":"Cronus Yoga Pant -34-Red","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"178","color":"58","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","url_key":"cronus-yoga-pant-34-red","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"MP12-36-Black","id":882,"status":1,"name":"Cronus Yoga Pant -36-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"49","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","url_key":"cronus-yoga-pant-36-black","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"MP12-36-Blue","id":883,"status":1,"name":"Cronus Yoga Pant -36-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"50","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","url_key":"cronus-yoga-pant-36-blue","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"MP12-36-Red","id":884,"status":1,"name":"Cronus Yoga Pant -36-Red","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["18","32","2"],"size":"179","color":"58","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","url_key":"cronus-yoga-pant-36-red","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48}],"configurable_options":[{"id":121,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":885,"attribute_code":"color"},{"id":120,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":885,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[176,177,178,179],"category":[{"category_id":18,"name":"Pants","slug":"pants-18","path":"men/bottoms-men/pants-men/pants-18"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-885.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"952","_score":1,"_source":{"id":952,"sku":"MSH06-36-Blue","name":"Lono Yoga Short-36-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"lono-yoga-short-36-blue-952","links":{},"stock":{"item_id":952,"product_id":952,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-36-blue-952.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"960","_score":1,"_source":{"id":960,"sku":"MSH07-33-Blue","name":"Rapha Sports Short-33-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","color":"50","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"rapha-sports-short-33-blue-960","links":{},"stock":{"item_id":960,"product_id":960,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-33-blue-960.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"964","_score":1,"_source":{"id":964,"sku":"MSH07-34-Purple","name":"Rapha Sports Short-34-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","color":"57","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"rapha-sports-short-34-purple-964","links":{},"stock":{"item_id":964,"product_id":964,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-34-purple-964.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"974","_score":1,"_source":{"id":974,"sku":"MSH08-33-Green","name":"Orestes Fitness Short-33-Green","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","color":"53","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-fitness-short-33-green-974","links":{},"stock":{"item_id":974,"product_id":974,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-33-green-974.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"971","_score":1,"_source":{"id":971,"sku":"MSH08-32-Green","name":"Orestes Fitness Short-32-Green","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","color":"53","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-fitness-short-32-green-971","links":{},"stock":{"item_id":971,"product_id":971,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-32-green-971.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"970","_score":1,"_source":{"id":970,"sku":"MSH08-32-Blue","name":"Orestes Fitness Short-32-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","color":"50","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-fitness-short-32-blue-970","links":{},"stock":{"item_id":970,"product_id":970,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-32-blue-970.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"969","_score":1,"_source":{"id":969,"sku":"MSH08-32-Black","name":"Orestes Fitness Short-32-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-fitness-short-32-black-969","links":{},"stock":{"item_id":969,"product_id":969,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-32-black-969.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"962","_score":1,"_source":{"id":962,"sku":"MSH07-34-Black","name":"Rapha Sports Short-34-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","color":"49","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"rapha-sports-short-34-black-962","links":{},"stock":{"item_id":962,"product_id":962,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-34-black-962.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"951","_score":1,"_source":{"id":951,"sku":"MSH06-34-Red","name":"Lono Yoga Short-34-Red","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","color":"58","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"lono-yoga-short-34-red-951","links":{},"stock":{"item_id":951,"product_id":951,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-34-red-951.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"957","_score":1,"_source":{"id":957,"sku":"MSH07-32-Blue","name":"Rapha Sports Short-32-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","color":"50","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"rapha-sports-short-32-blue-957","links":{},"stock":{"item_id":957,"product_id":957,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-32-blue-957.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"967","_score":1,"_source":{"id":967,"sku":"MSH07-36-Purple","name":"Rapha Sports Short-36-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","color":"57","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"rapha-sports-short-36-purple-967","links":{},"stock":{"item_id":967,"product_id":967,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-36-purple-967.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"954","_score":1,"_source":{"id":954,"sku":"MSH06-36-Red","name":"Lono Yoga Short-36-Red","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","color":"58","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"lono-yoga-short-36-red-954","links":{},"stock":{"item_id":954,"product_id":954,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh06-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-36-red-954.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"975","_score":1,"_source":{"id":975,"sku":"MSH08-34-Black","name":"Orestes Fitness Short-34-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-fitness-short-34-black-975","links":{},"stock":{"item_id":975,"product_id":975,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-34-black-975.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"977","_score":1,"_source":{"id":977,"sku":"MSH08-34-Green","name":"Orestes Fitness Short-34-Green","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","color":"53","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-fitness-short-34-green-977","links":{},"stock":{"item_id":977,"product_id":977,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-34-green-977.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"979","_score":1,"_source":{"id":979,"sku":"MSH08-36-Blue","name":"Orestes Fitness Short-36-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","color":"50","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-fitness-short-36-blue-979","links":{},"stock":{"item_id":979,"product_id":979,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh08-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-36-blue-979.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"961","_score":1,"_source":{"id":961,"sku":"MSH07-33-Purple","name":"Rapha Sports Short-33-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","color":"57","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"rapha-sports-short-33-purple-961","links":{},"stock":{"item_id":961,"product_id":961,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-33-purple-961.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"963","_score":1,"_source":{"id":963,"sku":"MSH07-34-Blue","name":"Rapha Sports Short-34-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","color":"50","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"rapha-sports-short-34-blue-963","links":{},"stock":{"item_id":963,"product_id":963,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-34-blue-963.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"958","_score":1,"_source":{"id":958,"sku":"MSH07-32-Purple","name":"Rapha Sports Short-32-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","color":"57","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"rapha-sports-short-32-purple-958","links":{},"stock":{"item_id":958,"product_id":958,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":31,"name":"Men Sale","slug":"men-sale-31","path":"promotions/men-sale/men-sale-31"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-32-purple-958.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"942","_score":1,"_source":{"id":942,"sku":"MSH05","name":"Hawkeye Yoga Short","attribute_set_id":10,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hawkeye-yoga-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,158,38,39,159],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":[197,199],"climate":[205,208,209],"slug":"hawkeye-yoga-short-942","links":{},"stock":{"item_id":942,"product_id":942,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH05-32-Black","id":930,"status":1,"name":"Hawkeye Yoga Short-32-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"49","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","url_key":"hawkeye-yoga-short-32-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-32-Blue","id":931,"status":1,"name":"Hawkeye Yoga Short-32-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"50","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","url_key":"hawkeye-yoga-short-32-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-32-Gray","id":932,"status":1,"name":"Hawkeye Yoga Short-32-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"52","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","url_key":"hawkeye-yoga-short-32-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-33-Black","id":933,"status":1,"name":"Hawkeye Yoga Short-33-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"49","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","url_key":"hawkeye-yoga-short-33-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-33-Blue","id":934,"status":1,"name":"Hawkeye Yoga Short-33-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"50","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","url_key":"hawkeye-yoga-short-33-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-33-Gray","id":935,"status":1,"name":"Hawkeye Yoga Short-33-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"52","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","url_key":"hawkeye-yoga-short-33-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-34-Black","id":936,"status":1,"name":"Hawkeye Yoga Short-34-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"49","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","url_key":"hawkeye-yoga-short-34-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-34-Blue","id":937,"status":1,"name":"Hawkeye Yoga Short-34-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"50","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","url_key":"hawkeye-yoga-short-34-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-34-Gray","id":938,"status":1,"name":"Hawkeye Yoga Short-34-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"52","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","url_key":"hawkeye-yoga-short-34-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-36-Black","id":939,"status":1,"name":"Hawkeye Yoga Short-36-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"49","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","url_key":"hawkeye-yoga-short-36-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-36-Blue","id":940,"status":1,"name":"Hawkeye Yoga Short-36-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"50","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","url_key":"hawkeye-yoga-short-36-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-36-Gray","id":941,"status":1,"name":"Hawkeye Yoga Short-36-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"52","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","url_key":"hawkeye-yoga-short-36-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":131,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"}],"product_id":942,"attribute_code":"color"},{"id":130,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":942,"attribute_code":"size"}],"color_options":[49,50,52],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-942.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"911","_score":1,"_source":{"id":911,"sku":"MSH03-34-Blue","name":"Meteor Workout Short-34-Blue","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"meteor-workout-short-34-blue-911","links":{},"stock":{"item_id":911,"product_id":911,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-34-blue-911.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"918","_score":1,"_source":{"id":918,"sku":"MSH04-32-Purple","name":"Torque Power Short-32-Purple","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","color":"57","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"torque-power-short-32-purple-918","links":{},"stock":{"item_id":918,"product_id":918,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-32-purple-918.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"908","_score":1,"_source":{"id":908,"sku":"MSH03-33-Blue","name":"Meteor Workout Short-33-Blue","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"meteor-workout-short-33-blue-908","links":{},"stock":{"item_id":908,"product_id":908,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-33-blue-908.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"906","_score":1,"_source":{"id":906,"sku":"MSH03-32-Green","name":"Meteor Workout Short-32-Green","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"meteor-workout-short-32-green-906","links":{},"stock":{"item_id":906,"product_id":906,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-32-green-906.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"914","_score":1,"_source":{"id":914,"sku":"MSH03-36-Blue","name":"Meteor Workout Short-36-Blue","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"meteor-workout-short-36-blue-914","links":{},"stock":{"item_id":914,"product_id":914,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-36-blue-914.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"935","_score":1,"_source":{"id":935,"sku":"MSH05-33-Gray","name":"Hawkeye Yoga Short-33-Gray","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","color":"52","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"hawkeye-yoga-short-33-gray-935","links":{},"stock":{"item_id":935,"product_id":935,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-33-gray-935.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"904","_score":1,"_source":{"id":904,"sku":"MSH03-32-Black","name":"Meteor Workout Short-32-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"meteor-workout-short-32-black-904","links":{},"stock":{"item_id":904,"product_id":904,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-32-black-904.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"912","_score":1,"_source":{"id":912,"sku":"MSH03-34-Green","name":"Meteor Workout Short-34-Green","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"meteor-workout-short-34-green-912","links":{},"stock":{"item_id":912,"product_id":912,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-34-green-912.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"924","_score":1,"_source":{"id":924,"sku":"MSH04-34-Purple","name":"Torque Power Short-34-Purple","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","color":"57","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"torque-power-short-34-purple-924","links":{},"stock":{"item_id":924,"product_id":924,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-34-purple-924.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"920","_score":1,"_source":{"id":920,"sku":"MSH04-33-Gray","name":"Torque Power Short-33-Gray","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","color":"52","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"torque-power-short-33-gray-920","links":{},"stock":{"item_id":920,"product_id":920,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-33-gray-920.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"902","_score":1,"_source":{"id":902,"sku":"MSH02-36-Black","name":"Apollo Running Short-36-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

                            \n

                            • Black shorts with green accents.
                            • Side pockets.
                            • 4\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"apollo-running-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"apollo-running-short-36-black-902","links":{},"stock":{"item_id":902,"product_id":902,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-36-black-902.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"938","_score":1,"_source":{"id":938,"sku":"MSH05-34-Gray","name":"Hawkeye Yoga Short-34-Gray","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","color":"52","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"hawkeye-yoga-short-34-gray-938","links":{},"stock":{"item_id":938,"product_id":938,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-34-gray-938.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"910","_score":1,"_source":{"id":910,"sku":"MSH03-34-Black","name":"Meteor Workout Short-34-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"meteor-workout-short-34-black-910","links":{},"stock":{"item_id":910,"product_id":910,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-34-black-910.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"941","_score":1,"_source":{"id":941,"sku":"MSH05-36-Gray","name":"Hawkeye Yoga Short-36-Gray","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","color":"52","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"hawkeye-yoga-short-36-gray-941","links":{},"stock":{"item_id":941,"product_id":941,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-36-gray-941.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"917","_score":1,"_source":{"id":917,"sku":"MSH04-32-Gray","name":"Torque Power Short-32-Gray","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","color":"52","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"torque-power-short-32-gray-917","links":{},"stock":{"item_id":917,"product_id":917,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-32-gray-917.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"915","_score":1,"_source":{"id":915,"sku":"MSH03-36-Green","name":"Meteor Workout Short-36-Green","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"meteor-workout-short-36-green-915","links":{},"stock":{"item_id":915,"product_id":915,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-36-green-915.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"907","_score":1,"_source":{"id":907,"sku":"MSH03-33-Black","name":"Meteor Workout Short-33-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"meteor-workout-short-33-black-907","links":{},"stock":{"item_id":907,"product_id":907,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-33-black-907.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"901","_score":1,"_source":{"id":901,"sku":"MSH02-34-Black","name":"Apollo Running Short-34-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

                            \n

                            • Black shorts with green accents.
                            • Side pockets.
                            • 4\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"apollo-running-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"apollo-running-short-34-black-901","links":{},"stock":{"item_id":901,"product_id":901,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-34-black-901.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"919","_score":1,"_source":{"id":919,"sku":"MSH04-32-Yellow","name":"Torque Power Short-32-Yellow","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","color":"60","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-32-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"torque-power-short-32-yellow-919","links":{},"stock":{"item_id":919,"product_id":919,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-32-yellow-919.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"909","_score":1,"_source":{"id":909,"sku":"MSH03-33-Green","name":"Meteor Workout Short-33-Green","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"meteor-workout-short-33-green-909","links":{},"stock":{"item_id":909,"product_id":909,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-33-green-909.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"922","_score":1,"_source":{"id":922,"sku":"MSH04-33-Yellow","name":"Torque Power Short-33-Yellow","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","color":"60","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-33-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"torque-power-short-33-yellow-922","links":{},"stock":{"item_id":922,"product_id":922,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-33-yellow-922.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"921","_score":1,"_source":{"id":921,"sku":"MSH04-33-Purple","name":"Torque Power Short-33-Purple","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","color":"57","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"torque-power-short-33-purple-921","links":{},"stock":{"item_id":921,"product_id":921,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-33-purple-921.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"913","_score":1,"_source":{"id":913,"sku":"MSH03-36-Black","name":"Meteor Workout Short-36-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"meteor-workout-short-36-black-913","links":{},"stock":{"item_id":913,"product_id":913,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh03-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-36-black-913.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"928","_score":1,"_source":{"id":928,"sku":"MSH04-36-Yellow","name":"Torque Power Short-36-Yellow","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","color":"60","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-36-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"torque-power-short-36-yellow-928","links":{},"stock":{"item_id":928,"product_id":928,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-36-yellow-928.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1189","_score":1,"_source":{"id":1189,"sku":"WH11-S-Orange","name":"Eos V-Neck Hoodie-S-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"eos-v-neck-hoodie-s-orange-1189","links":{},"stock":{"item_id":1189,"product_id":1189,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-s-orange-1189.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1180","_score":1,"_source":{"id":1180,"sku":"WH10-XL-Blue","name":"Helena Hooded Fleece-XL-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helena-hooded-fleece-xl-blue-1180","links":{},"stock":{"item_id":1180,"product_id":1180,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xl-blue-1180.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1171","_score":1,"_source":{"id":1171,"sku":"WH10-S-Blue","name":"Helena Hooded Fleece-S-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helena-hooded-fleece-s-blue-1171","links":{},"stock":{"item_id":1171,"product_id":1171,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-s-blue-1171.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1170","_score":1,"_source":{"id":1170,"sku":"WH10-XS-Yellow","name":"Helena Hooded Fleece-XS-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helena-hooded-fleece-xs-yellow-1170","links":{},"stock":{"item_id":1170,"product_id":1170,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xs-yellow-1170.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1198","_score":1,"_source":{"id":1198,"sku":"WH11-XL-Orange","name":"Eos V-Neck Hoodie-XL-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"eos-v-neck-hoodie-xl-orange-1198","links":{},"stock":{"item_id":1198,"product_id":1198,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xl-orange-1198.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1166","_score":1,"_source":{"id":1166,"sku":"WH09-XL-Red","name":"Ariel Roll Sleeve Sweatshirt-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ariel-roll-sleeve-sweatshirt-xl-red-1166","links":{},"stock":{"item_id":1166,"product_id":1166,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xl-red-1166.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1195","_score":1,"_source":{"id":1195,"sku":"WH11-L-Orange","name":"Eos V-Neck Hoodie-L-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"eos-v-neck-hoodie-l-orange-1195","links":{},"stock":{"item_id":1195,"product_id":1195,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-l-orange-1195.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1193","_score":1,"_source":{"id":1193,"sku":"WH11-L-Blue","name":"Eos V-Neck Hoodie-L-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"eos-v-neck-hoodie-l-blue-1193","links":{},"stock":{"item_id":1193,"product_id":1193,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-l-blue-1193.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1194","_score":1,"_source":{"id":1194,"sku":"WH11-L-Green","name":"Eos V-Neck Hoodie-L-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"eos-v-neck-hoodie-l-green-1194","links":{},"stock":{"item_id":1194,"product_id":1194,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-l-green-1194.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1192","_score":1,"_source":{"id":1192,"sku":"WH11-M-Orange","name":"Eos V-Neck Hoodie-M-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"eos-v-neck-hoodie-m-orange-1192","links":{},"stock":{"item_id":1192,"product_id":1192,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-m-orange-1192.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1185","_score":1,"_source":{"id":1185,"sku":"WH11-XS-Green","name":"Eos V-Neck Hoodie-XS-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"eos-v-neck-hoodie-xs-green-1185","links":{},"stock":{"item_id":1185,"product_id":1185,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xs-green-1185.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1188","_score":1,"_source":{"id":1188,"sku":"WH11-S-Green","name":"Eos V-Neck Hoodie-S-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"eos-v-neck-hoodie-s-green-1188","links":{},"stock":{"item_id":1188,"product_id":1188,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-s-green-1188.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1186","_score":1,"_source":{"id":1186,"sku":"WH11-XS-Orange","name":"Eos V-Neck Hoodie-XS-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"eos-v-neck-hoodie-xs-orange-1186","links":{},"stock":{"item_id":1186,"product_id":1186,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xs-orange-1186.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1167","_score":1,"_source":{"id":1167,"sku":"WH09","name":"Ariel Roll Sleeve Sweatshirt","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:12","updated_at":"2019-04-11 09:24:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \r\n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","category_ids":[24,36,2],"options_container":"container2","required_options":"1","has_options":"1","url_key":"ariel-roll-sleeve-sweatshirt","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":"33","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[138,137],"pattern":"195","climate":[205,206,208,209],"slug":"ariel-roll-sleeve-sweatshirt-1167","links":{},"stock":{"item_id":1167,"product_id":1167,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":null,"vid":null},{"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":null,"vid":null}],"configurable_children":[{"sku":"WH09-XS-Green","id":1152,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-XS-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"167","color":"53","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-xs-green","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-XS-Purple","id":1153,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-XS-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"167","color":"57","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-xs-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-XS-Red","id":1154,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-XS-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"167","color":"58","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-xs-red","msrp_display_actual_price_type":"0"},{"sku":"WH09-S-Green","id":1155,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-S-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"168","color":"53","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-s-green","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-S-Purple","id":1156,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-S-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"168","color":"57","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-s-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-S-Red","id":1157,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-S-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"168","color":"58","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-s-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-M-Green","id":1158,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-M-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"169","color":"53","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-m-green","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-M-Purple","id":1159,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-M-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"169","color":"57","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-m-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-M-Red","id":1160,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-M-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"169","color":"58","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-m-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-L-Green","id":1161,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-L-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"170","color":"53","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-l-green","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-L-Purple","id":1162,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-L-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"170","color":"57","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-l-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-L-Red","id":1163,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-L-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"170","color":"58","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-l-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-XL-Green","id":1164,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-XL-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"171","color":"53","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-xl-green","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-XL-Purple","id":1165,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-XL-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"171","color":"57","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-xl-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WH09-XL-Red","id":1166,"status":1,"name":"Ariel Roll Sleeve Sweatshirt-XL-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","36","2"],"size":"171","color":"58","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","url_key":"ariel-roll-sleeve-sweatshirt-xl-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39}],"configurable_options":[{"id":304,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1167,"attribute_code":"color"},{"id":305,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1167,"attribute_code":"size"}],"color_options":[53,57,58],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-1167.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1151","_score":1,"_source":{"id":1151,"sku":"WH08","name":"Cassia Funnel Sweatshirt","attribute_set_id":9,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cassia-funnel-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,33,151],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[138,129],"pattern":"197","climate":[202,204,205,206,208],"slug":"cassia-funnel-sweatshirt-1151","links":{},"stock":{"item_id":1151,"product_id":1151,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH08-XS-Orange","id":1136,"status":1,"name":"Cassia Funnel Sweatshirt-XS-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"167","color":"56","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","url_key":"cassia-funnel-sweatshirt-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WH08-XS-Purple","id":1137,"status":1,"name":"Cassia Funnel Sweatshirt-XS-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"167","color":"57","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","url_key":"cassia-funnel-sweatshirt-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WH08-XS-White","id":1138,"status":1,"name":"Cassia Funnel Sweatshirt-XS-White","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"167","color":"59","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","url_key":"cassia-funnel-sweatshirt-xs-white","msrp_display_actual_price_type":"0"},{"sku":"WH08-S-Orange","id":1139,"status":1,"name":"Cassia Funnel Sweatshirt-S-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"168","color":"56","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","url_key":"cassia-funnel-sweatshirt-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WH08-S-Purple","id":1140,"status":1,"name":"Cassia Funnel Sweatshirt-S-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"168","color":"57","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","url_key":"cassia-funnel-sweatshirt-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WH08-S-White","id":1141,"status":1,"name":"Cassia Funnel Sweatshirt-S-White","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"168","color":"59","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","url_key":"cassia-funnel-sweatshirt-s-white","msrp_display_actual_price_type":"0"},{"sku":"WH08-M-Orange","id":1142,"status":1,"name":"Cassia Funnel Sweatshirt-M-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"169","color":"56","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","url_key":"cassia-funnel-sweatshirt-m-orange","msrp_display_actual_price_type":"0"},{"sku":"WH08-M-Purple","id":1143,"status":1,"name":"Cassia Funnel Sweatshirt-M-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"169","color":"57","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","url_key":"cassia-funnel-sweatshirt-m-purple","msrp_display_actual_price_type":"0"},{"sku":"WH08-M-White","id":1144,"status":1,"name":"Cassia Funnel Sweatshirt-M-White","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"169","color":"59","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","url_key":"cassia-funnel-sweatshirt-m-white","msrp_display_actual_price_type":"0"},{"sku":"WH08-L-Orange","id":1145,"status":1,"name":"Cassia Funnel Sweatshirt-L-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"170","color":"56","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","url_key":"cassia-funnel-sweatshirt-l-orange","msrp_display_actual_price_type":"0"},{"sku":"WH08-L-Purple","id":1146,"status":1,"name":"Cassia Funnel Sweatshirt-L-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"170","color":"57","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","url_key":"cassia-funnel-sweatshirt-l-purple","msrp_display_actual_price_type":"0"},{"sku":"WH08-L-White","id":1147,"status":1,"name":"Cassia Funnel Sweatshirt-L-White","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"170","color":"59","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","url_key":"cassia-funnel-sweatshirt-l-white","msrp_display_actual_price_type":"0"},{"sku":"WH08-XL-Orange","id":1148,"status":1,"name":"Cassia Funnel Sweatshirt-XL-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"171","color":"56","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","url_key":"cassia-funnel-sweatshirt-xl-orange","msrp_display_actual_price_type":"0"},{"sku":"WH08-XL-Purple","id":1149,"status":1,"name":"Cassia Funnel Sweatshirt-XL-Purple","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"171","color":"57","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","url_key":"cassia-funnel-sweatshirt-xl-purple","msrp_display_actual_price_type":"0"},{"sku":"WH08-XL-White","id":1150,"status":1,"name":"Cassia Funnel Sweatshirt-XL-White","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","30","35","2"],"size":"171","color":"59","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","url_key":"cassia-funnel-sweatshirt-xl-white","msrp_display_actual_price_type":"0"}],"configurable_options":[{"id":161,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"}],"product_id":1151,"attribute_code":"color"},{"id":160,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1151,"attribute_code":"size"}],"color_options":[56,57,59],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-1151.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1183","_score":1,"_source":{"id":1183,"sku":"WH10","name":"Helena Hooded Fleece","attribute_set_id":9,"price":55,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"helena-hooded-fleece","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":[138,129],"pattern":"197","climate":[204,208],"slug":"helena-hooded-fleece-1183","links":{},"stock":{"item_id":1183,"product_id":1183,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH10-XS-Blue","id":1168,"status":1,"name":"Helena Hooded Fleece-XS-Blue","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"167","color":"50","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","url_key":"helena-hooded-fleece-xs-blue","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-XS-Gray","id":1169,"status":1,"name":"Helena Hooded Fleece-XS-Gray","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"167","color":"52","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","url_key":"helena-hooded-fleece-xs-gray","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-XS-Yellow","id":1170,"status":1,"name":"Helena Hooded Fleece-XS-Yellow","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"167","color":"60","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","url_key":"helena-hooded-fleece-xs-yellow","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-S-Blue","id":1171,"status":1,"name":"Helena Hooded Fleece-S-Blue","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"168","color":"50","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","url_key":"helena-hooded-fleece-s-blue","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-S-Gray","id":1172,"status":1,"name":"Helena Hooded Fleece-S-Gray","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"168","color":"52","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","url_key":"helena-hooded-fleece-s-gray","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-S-Yellow","id":1173,"status":1,"name":"Helena Hooded Fleece-S-Yellow","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"168","color":"60","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","url_key":"helena-hooded-fleece-s-yellow","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-M-Blue","id":1174,"status":1,"name":"Helena Hooded Fleece-M-Blue","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"169","color":"50","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","url_key":"helena-hooded-fleece-m-blue","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-M-Gray","id":1175,"status":1,"name":"Helena Hooded Fleece-M-Gray","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"169","color":"52","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","url_key":"helena-hooded-fleece-m-gray","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-M-Yellow","id":1176,"status":1,"name":"Helena Hooded Fleece-M-Yellow","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"169","color":"60","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","url_key":"helena-hooded-fleece-m-yellow","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-L-Blue","id":1177,"status":1,"name":"Helena Hooded Fleece-L-Blue","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"170","color":"50","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","url_key":"helena-hooded-fleece-l-blue","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-L-Gray","id":1178,"status":1,"name":"Helena Hooded Fleece-L-Gray","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"170","color":"52","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","url_key":"helena-hooded-fleece-l-gray","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-L-Yellow","id":1179,"status":1,"name":"Helena Hooded Fleece-L-Yellow","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"170","color":"60","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","url_key":"helena-hooded-fleece-l-yellow","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-XL-Blue","id":1180,"status":1,"name":"Helena Hooded Fleece-XL-Blue","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"171","color":"50","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","url_key":"helena-hooded-fleece-xl-blue","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-XL-Gray","id":1181,"status":1,"name":"Helena Hooded Fleece-XL-Gray","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"171","color":"52","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","url_key":"helena-hooded-fleece-xl-gray","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55},{"sku":"WH10-XL-Yellow","id":1182,"status":1,"name":"Helena Hooded Fleece-XL-Yellow","price":55,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","2"],"size":"171","color":"60","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","url_key":"helena-hooded-fleece-xl-yellow","msrp_display_actual_price_type":"0","final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55}],"configurable_options":[{"id":165,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":60,"label":"Yellow"}],"product_id":1183,"attribute_code":"color"},{"id":164,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1183,"attribute_code":"size"}],"color_options":[50,52,60],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-1183.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1199","_score":1,"_source":{"id":1199,"sku":"WH11","name":"Eos V-Neck Hoodie","attribute_set_id":9,"price":54,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"eos-v-neck-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[137,133],"pattern":"197","climate":[204,205,206],"slug":"eos-v-neck-hoodie-1199","links":{},"stock":{"item_id":1199,"product_id":1199,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH11-XS-Blue","id":1184,"status":1,"name":"Eos V-Neck Hoodie-XS-Blue","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"167","color":"50","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","url_key":"eos-v-neck-hoodie-xs-blue","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-XS-Green","id":1185,"status":1,"name":"Eos V-Neck Hoodie-XS-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"167","color":"53","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","url_key":"eos-v-neck-hoodie-xs-green","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-XS-Orange","id":1186,"status":1,"name":"Eos V-Neck Hoodie-XS-Orange","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"167","color":"56","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","url_key":"eos-v-neck-hoodie-xs-orange","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-S-Blue","id":1187,"status":1,"name":"Eos V-Neck Hoodie-S-Blue","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"168","color":"50","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","url_key":"eos-v-neck-hoodie-s-blue","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-S-Green","id":1188,"status":1,"name":"Eos V-Neck Hoodie-S-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"168","color":"53","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","url_key":"eos-v-neck-hoodie-s-green","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-S-Orange","id":1189,"status":1,"name":"Eos V-Neck Hoodie-S-Orange","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"168","color":"56","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","url_key":"eos-v-neck-hoodie-s-orange","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-M-Blue","id":1190,"status":1,"name":"Eos V-Neck Hoodie-M-Blue","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"169","color":"50","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","url_key":"eos-v-neck-hoodie-m-blue","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-M-Green","id":1191,"status":1,"name":"Eos V-Neck Hoodie-M-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"169","color":"53","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","url_key":"eos-v-neck-hoodie-m-green","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-M-Orange","id":1192,"status":1,"name":"Eos V-Neck Hoodie-M-Orange","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"169","color":"56","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","url_key":"eos-v-neck-hoodie-m-orange","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-L-Blue","id":1193,"status":1,"name":"Eos V-Neck Hoodie-L-Blue","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"170","color":"50","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","url_key":"eos-v-neck-hoodie-l-blue","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-L-Green","id":1194,"status":1,"name":"Eos V-Neck Hoodie-L-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"170","color":"53","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","url_key":"eos-v-neck-hoodie-l-green","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-L-Orange","id":1195,"status":1,"name":"Eos V-Neck Hoodie-L-Orange","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"170","color":"56","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","url_key":"eos-v-neck-hoodie-l-orange","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-XL-Blue","id":1196,"status":1,"name":"Eos V-Neck Hoodie-XL-Blue","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"171","color":"50","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","url_key":"eos-v-neck-hoodie-xl-blue","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-XL-Green","id":1197,"status":1,"name":"Eos V-Neck Hoodie-XL-Green","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"171","color":"53","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","url_key":"eos-v-neck-hoodie-xl-green","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54},{"sku":"WH11-XL-Orange","id":1198,"status":1,"name":"Eos V-Neck Hoodie-XL-Orange","price":54,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","34","2"],"size":"171","color":"56","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","url_key":"eos-v-neck-hoodie-xl-orange","msrp_display_actual_price_type":"0","final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54}],"configurable_options":[{"id":167,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":1199,"attribute_code":"color"},{"id":166,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1199,"attribute_code":"size"}],"color_options":[50,53,56],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-1199.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1227","_score":1,"_source":{"id":1227,"sku":"WJ02-XS-Blue","name":"Josie Yoga Jacket-XS-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"josie-yoga-jacket-xs-blue-1227","links":{},"stock":{"item_id":1227,"product_id":1227,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xs-blue-1227.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1216","_score":1,"_source":{"id":1216,"sku":"WJ01-S-Blue","name":"Stellar Solar Jacket-S-Blue","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.
                            • Deep pink jacket with front panel rouching

                            ","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","color":"50","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stellar-solar-jacket-s-blue-1216","links":{},"stock":{"item_id":1216,"product_id":1216,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-s-blue-1216.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1246","_score":1,"_source":{"id":1246,"sku":"WJ03-S-Orange","name":"Augusta Pullover Jacket-S-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"augusta-pullover-jacket-s-orange-1246","links":{},"stock":{"item_id":1246,"product_id":1246,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-s-orange-1246.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1236","_score":1,"_source":{"id":1236,"sku":"WJ02-L-Blue","name":"Josie Yoga Jacket-L-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"josie-yoga-jacket-l-blue-1236","links":{},"stock":{"item_id":1236,"product_id":1236,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-l-blue-1236.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1205","_score":1,"_source":{"id":1205,"sku":"WH12-S-Purple","name":"Circe Hooded Ice Fleece-S-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"circe-hooded-ice-fleece-s-purple-1205","links":{},"stock":{"item_id":1205,"product_id":1205,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-s-purple-1205.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1212","_score":1,"_source":{"id":1212,"sku":"WH12-XL-Gray","name":"Circe Hooded Ice Fleece-XL-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"circe-hooded-ice-fleece-xl-gray-1212","links":{},"stock":{"item_id":1212,"product_id":1212,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xl-gray-1212.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1224","_score":1,"_source":{"id":1224,"sku":"WJ01-L-Yellow","name":"Stellar Solar Jacket-L-Yellow","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.
                            • Deep pink jacket with front panel rouching

                            ","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","color":"60","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stellar-solar-jacket-l-yellow-1224","links":{},"stock":{"item_id":1224,"product_id":1224,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-l-yellow-1224.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1242","_score":1,"_source":{"id":1242,"sku":"WJ03-XS-Blue","name":"Augusta Pullover Jacket-XS-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"augusta-pullover-jacket-xs-blue-1242","links":{},"stock":{"item_id":1242,"product_id":1242,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xs-blue-1242.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1247","_score":1,"_source":{"id":1247,"sku":"WJ03-S-Red","name":"Augusta Pullover Jacket-S-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"augusta-pullover-jacket-s-red-1247","links":{},"stock":{"item_id":1247,"product_id":1247,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-s-red-1247.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1221","_score":1,"_source":{"id":1221,"sku":"WJ01-M-Yellow","name":"Stellar Solar Jacket-M-Yellow","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.
                            • Deep pink jacket with front panel rouching

                            ","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","color":"60","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stellar-solar-jacket-m-yellow-1221","links":{},"stock":{"item_id":1221,"product_id":1221,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-m-yellow-1221.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1249","_score":1,"_source":{"id":1249,"sku":"WJ03-M-Orange","name":"Augusta Pullover Jacket-M-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"augusta-pullover-jacket-m-orange-1249","links":{},"stock":{"item_id":1249,"product_id":1249,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-m-orange-1249.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1237","_score":1,"_source":{"id":1237,"sku":"WJ02-L-Gray","name":"Josie Yoga Jacket-L-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"josie-yoga-jacket-l-gray-1237","links":{},"stock":{"item_id":1237,"product_id":1237,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-l-gray-1237.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1250","_score":1,"_source":{"id":1250,"sku":"WJ03-M-Red","name":"Augusta Pullover Jacket-M-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"augusta-pullover-jacket-m-red-1250","links":{},"stock":{"item_id":1250,"product_id":1250,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-m-red-1250.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1238","_score":1,"_source":{"id":1238,"sku":"WJ02-XL-Black","name":"Josie Yoga Jacket-XL-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"josie-yoga-jacket-xl-black-1238","links":{},"stock":{"item_id":1238,"product_id":1238,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xl-black-1238.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1231","_score":1,"_source":{"id":1231,"sku":"WJ02-S-Gray","name":"Josie Yoga Jacket-S-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"josie-yoga-jacket-s-gray-1231","links":{},"stock":{"item_id":1231,"product_id":1231,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-s-gray-1231.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1239","_score":1,"_source":{"id":1239,"sku":"WJ02-XL-Blue","name":"Josie Yoga Jacket-XL-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"josie-yoga-jacket-xl-blue-1239","links":{},"stock":{"item_id":1239,"product_id":1239,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xl-blue-1239.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1215","_score":1,"_source":{"id":1215,"sku":"WH12","name":"Circe Hooded Ice Fleece","attribute_set_id":9,"price":68,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"circe-hooded-ice-fleece","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,156],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":[138,133,129],"pattern":"197","climate":[203,204,211],"slug":"circe-hooded-ice-fleece-1215","links":{},"stock":{"item_id":1215,"product_id":1215,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH12-XS-Gray","id":1200,"status":1,"name":"Circe Hooded Ice Fleece-XS-Gray","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"167","color":"52","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","url_key":"circe-hooded-ice-fleece-xs-gray","msrp_display_actual_price_type":"0"},{"sku":"WH12-XS-Green","id":1201,"status":1,"name":"Circe Hooded Ice Fleece-XS-Green","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"167","color":"53","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","url_key":"circe-hooded-ice-fleece-xs-green","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-XS-Purple","id":1202,"status":1,"name":"Circe Hooded Ice Fleece-XS-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"167","color":"57","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","url_key":"circe-hooded-ice-fleece-xs-purple","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-S-Gray","id":1203,"status":1,"name":"Circe Hooded Ice Fleece-S-Gray","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"168","color":"52","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","url_key":"circe-hooded-ice-fleece-s-gray","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-S-Green","id":1204,"status":1,"name":"Circe Hooded Ice Fleece-S-Green","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"168","color":"53","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","url_key":"circe-hooded-ice-fleece-s-green","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-S-Purple","id":1205,"status":1,"name":"Circe Hooded Ice Fleece-S-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"168","color":"57","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","url_key":"circe-hooded-ice-fleece-s-purple","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-M-Gray","id":1206,"status":1,"name":"Circe Hooded Ice Fleece-M-Gray","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"169","color":"52","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","url_key":"circe-hooded-ice-fleece-m-gray","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-M-Green","id":1207,"status":1,"name":"Circe Hooded Ice Fleece-M-Green","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"169","color":"53","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","url_key":"circe-hooded-ice-fleece-m-green","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-M-Purple","id":1208,"status":1,"name":"Circe Hooded Ice Fleece-M-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"169","color":"57","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","url_key":"circe-hooded-ice-fleece-m-purple","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-L-Gray","id":1209,"status":1,"name":"Circe Hooded Ice Fleece-L-Gray","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"170","color":"52","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","url_key":"circe-hooded-ice-fleece-l-gray","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-L-Green","id":1210,"status":1,"name":"Circe Hooded Ice Fleece-L-Green","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"170","color":"53","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","url_key":"circe-hooded-ice-fleece-l-green","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-L-Purple","id":1211,"status":1,"name":"Circe Hooded Ice Fleece-L-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"170","color":"57","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","url_key":"circe-hooded-ice-fleece-l-purple","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-XL-Gray","id":1212,"status":1,"name":"Circe Hooded Ice Fleece-XL-Gray","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"171","color":"52","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","url_key":"circe-hooded-ice-fleece-xl-gray","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-XL-Green","id":1213,"status":1,"name":"Circe Hooded Ice Fleece-XL-Green","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"171","color":"53","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","url_key":"circe-hooded-ice-fleece-xl-green","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68},{"sku":"WH12-XL-Purple","id":1214,"status":1,"name":"Circe Hooded Ice Fleece-XL-Purple","price":68,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","35","2"],"size":"171","color":"57","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","url_key":"circe-hooded-ice-fleece-xl-purple","msrp_display_actual_price_type":"0","final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68}],"configurable_options":[{"id":169,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"}],"product_id":1215,"attribute_code":"color"},{"id":168,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1215,"attribute_code":"size"}],"color_options":[52,53,57],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-1215.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1225","_score":1,"_source":{"id":1225,"sku":"WJ01","name":"Stellar Solar Jacket","attribute_set_id":9,"price":75,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.
                            • Deep pink jacket with front panel rouching

                            ","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"stellar-solar-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,159,145],"eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":[118,121,125,129],"pattern":"197","climate":[202,206,208,210],"slug":"stellar-solar-jacket-1225","links":{},"stock":{"item_id":1225,"product_id":1225,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ01-S-Blue","id":1216,"status":1,"name":"Stellar Solar Jacket-S-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"168","color":"50","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","url_key":"stellar-solar-jacket-s-blue","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WJ01-S-Red","id":1217,"status":1,"name":"Stellar Solar Jacket-S-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"168","color":"58","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","url_key":"stellar-solar-jacket-s-red","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WJ01-S-Yellow","id":1218,"status":1,"name":"Stellar Solar Jacket-S-Yellow","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"168","color":"60","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","url_key":"stellar-solar-jacket-s-yellow","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WJ01-M-Blue","id":1219,"status":1,"name":"Stellar Solar Jacket-M-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"169","color":"50","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","url_key":"stellar-solar-jacket-m-blue","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WJ01-M-Red","id":1220,"status":1,"name":"Stellar Solar Jacket-M-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"169","color":"58","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","url_key":"stellar-solar-jacket-m-red","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WJ01-M-Yellow","id":1221,"status":1,"name":"Stellar Solar Jacket-M-Yellow","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"169","color":"60","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","url_key":"stellar-solar-jacket-m-yellow","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WJ01-L-Blue","id":1222,"status":1,"name":"Stellar Solar Jacket-L-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"170","color":"50","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","url_key":"stellar-solar-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WJ01-L-Red","id":1223,"status":1,"name":"Stellar Solar Jacket-L-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"170","color":"58","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","url_key":"stellar-solar-jacket-l-red","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75},{"sku":"WJ01-L-Yellow","id":1224,"status":1,"name":"Stellar Solar Jacket-L-Yellow","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","8","34","2"],"size":"170","color":"60","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","url_key":"stellar-solar-jacket-l-yellow","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75}],"configurable_options":[{"id":171,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":1225,"attribute_code":"color"},{"id":170,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"}],"product_id":1225,"attribute_code":"size"}],"color_options":[50,58,60],"size_options":[168,169,170],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-1225.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1241","_score":1,"_source":{"id":1241,"sku":"WJ02","name":"Josie Yoga Jacket","attribute_set_id":9,"price":56.25,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"josie-yoga-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[38,151,156],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":[118,137,120,125],"pattern":"197","climate":[205,206,208],"slug":"josie-yoga-jacket-1241","links":{},"stock":{"item_id":1241,"product_id":1241,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WJ02-XS-Black","id":1226,"status":1,"name":"Josie Yoga Jacket-XS-Black","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"167","color":"49","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","url_key":"josie-yoga-jacket-xs-black","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-XS-Blue","id":1227,"status":1,"name":"Josie Yoga Jacket-XS-Blue","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"167","color":"50","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","url_key":"josie-yoga-jacket-xs-blue","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-XS-Gray","id":1228,"status":1,"name":"Josie Yoga Jacket-XS-Gray","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"167","color":"52","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","url_key":"josie-yoga-jacket-xs-gray","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-S-Black","id":1229,"status":1,"name":"Josie Yoga Jacket-S-Black","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"168","color":"49","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","url_key":"josie-yoga-jacket-s-black","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-S-Blue","id":1230,"status":1,"name":"Josie Yoga Jacket-S-Blue","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"168","color":"50","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","url_key":"josie-yoga-jacket-s-blue","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-S-Gray","id":1231,"status":1,"name":"Josie Yoga Jacket-S-Gray","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"168","color":"52","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","url_key":"josie-yoga-jacket-s-gray","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-M-Black","id":1232,"status":1,"name":"Josie Yoga Jacket-M-Black","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"169","color":"49","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","url_key":"josie-yoga-jacket-m-black","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-M-Blue","id":1233,"status":1,"name":"Josie Yoga Jacket-M-Blue","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"169","color":"50","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","url_key":"josie-yoga-jacket-m-blue","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-M-Gray","id":1234,"status":1,"name":"Josie Yoga Jacket-M-Gray","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"169","color":"52","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","url_key":"josie-yoga-jacket-m-gray","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-L-Black","id":1235,"status":1,"name":"Josie Yoga Jacket-L-Black","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"170","color":"49","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","url_key":"josie-yoga-jacket-l-black","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-L-Blue","id":1236,"status":1,"name":"Josie Yoga Jacket-L-Blue","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"170","color":"50","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","url_key":"josie-yoga-jacket-l-blue","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-L-Gray","id":1237,"status":1,"name":"Josie Yoga Jacket-L-Gray","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"170","color":"52","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","url_key":"josie-yoga-jacket-l-gray","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-XL-Black","id":1238,"status":1,"name":"Josie Yoga Jacket-XL-Black","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"171","color":"49","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","url_key":"josie-yoga-jacket-xl-black","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-XL-Blue","id":1239,"status":1,"name":"Josie Yoga Jacket-XL-Blue","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"171","color":"50","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","url_key":"josie-yoga-jacket-xl-blue","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25},{"sku":"WJ02-XL-Gray","id":1240,"status":1,"name":"Josie Yoga Jacket-XL-Gray","price":56.25,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["23","30","2"],"size":"171","color":"52","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","url_key":"josie-yoga-jacket-xl-gray","msrp_display_actual_price_type":"0","final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25}],"configurable_options":[{"id":173,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"}],"product_id":1241,"attribute_code":"color"},{"id":172,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1241,"attribute_code":"size"}],"color_options":[49,50,52],"size_options":[167,168,169,170,171],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-1241.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1154","_score":1,"_source":{"id":1154,"sku":"WH09-XS-Red","name":"Ariel Roll Sleeve Sweatshirt-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2019-04-11 10:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \r\n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xs-red","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"167","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","slug":"ariel-roll-sleeve-sweatshirt-xs-red-1154","links":{},"stock":{"item_id":1154,"product_id":1154,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-04-11 10:16:50","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xs-red-1154.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1153","_score":1,"_source":{"id":1153,"sku":"WH09-XS-Purple","name":"Ariel Roll Sleeve Sweatshirt-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ariel-roll-sleeve-sweatshirt-xs-purple-1153","links":{},"stock":{"item_id":1153,"product_id":1153,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xs-purple-1153.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1187","_score":1,"_source":{"id":1187,"sku":"WH11-S-Blue","name":"Eos V-Neck Hoodie-S-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"eos-v-neck-hoodie-s-blue-1187","links":{},"stock":{"item_id":1187,"product_id":1187,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-s-blue-1187.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1156","_score":1,"_source":{"id":1156,"sku":"WH09-S-Purple","name":"Ariel Roll Sleeve Sweatshirt-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ariel-roll-sleeve-sweatshirt-s-purple-1156","links":{},"stock":{"item_id":1156,"product_id":1156,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-s-purple-1156.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1152","_score":1,"_source":{"id":1152,"sku":"WH09-XS-Green","name":"Ariel Roll Sleeve Sweatshirt-XS-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ariel-roll-sleeve-sweatshirt-xs-green-1152","links":{},"stock":{"item_id":1152,"product_id":1152,"stock_id":1,"qty":4,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xs-green-1152.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1157","_score":1,"_source":{"id":1157,"sku":"WH09-S-Red","name":"Ariel Roll Sleeve Sweatshirt-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ariel-roll-sleeve-sweatshirt-s-red-1157","links":{},"stock":{"item_id":1157,"product_id":1157,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-s-red-1157.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1165","_score":1,"_source":{"id":1165,"sku":"WH09-XL-Purple","name":"Ariel Roll Sleeve Sweatshirt-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ariel-roll-sleeve-sweatshirt-xl-purple-1165","links":{},"stock":{"item_id":1165,"product_id":1165,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xl-purple-1165.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1155","_score":1,"_source":{"id":1155,"sku":"WH09-S-Green","name":"Ariel Roll Sleeve Sweatshirt-S-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ariel-roll-sleeve-sweatshirt-s-green-1155","links":{},"stock":{"item_id":1155,"product_id":1155,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-s-green-1155.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1161","_score":1,"_source":{"id":1161,"sku":"WH09-L-Green","name":"Ariel Roll Sleeve Sweatshirt-L-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ariel-roll-sleeve-sweatshirt-l-green-1161","links":{},"stock":{"item_id":1161,"product_id":1161,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-l-green-1161.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1162","_score":1,"_source":{"id":1162,"sku":"WH09-L-Purple","name":"Ariel Roll Sleeve Sweatshirt-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ariel-roll-sleeve-sweatshirt-l-purple-1162","links":{},"stock":{"item_id":1162,"product_id":1162,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-l-purple-1162.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1191","_score":1,"_source":{"id":1191,"sku":"WH11-M-Green","name":"Eos V-Neck Hoodie-M-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"eos-v-neck-hoodie-m-green-1191","links":{},"stock":{"item_id":1191,"product_id":1191,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-m-green-1191.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1159","_score":1,"_source":{"id":1159,"sku":"WH09-M-Purple","name":"Ariel Roll Sleeve Sweatshirt-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ariel-roll-sleeve-sweatshirt-m-purple-1159","links":{},"stock":{"item_id":1159,"product_id":1159,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-m-purple-1159.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1168","_score":1,"_source":{"id":1168,"sku":"WH10-XS-Blue","name":"Helena Hooded Fleece-XS-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helena-hooded-fleece-xs-blue-1168","links":{},"stock":{"item_id":1168,"product_id":1168,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xs-blue-1168.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1174","_score":1,"_source":{"id":1174,"sku":"WH10-M-Blue","name":"Helena Hooded Fleece-M-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helena-hooded-fleece-m-blue-1174","links":{},"stock":{"item_id":1174,"product_id":1174,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-m-blue-1174.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1200","_score":1,"_source":{"id":1200,"sku":"WH12-XS-Gray","name":"Circe Hooded Ice Fleece-XS-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"circe-hooded-ice-fleece-xs-gray-1200","links":{},"stock":{"item_id":1200,"product_id":1200,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xs-gray-1200.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1177","_score":1,"_source":{"id":1177,"sku":"WH10-L-Blue","name":"Helena Hooded Fleece-L-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helena-hooded-fleece-l-blue-1177","links":{},"stock":{"item_id":1177,"product_id":1177,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-l-blue-1177.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1175","_score":1,"_source":{"id":1175,"sku":"WH10-M-Gray","name":"Helena Hooded Fleece-M-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helena-hooded-fleece-m-gray-1175","links":{},"stock":{"item_id":1175,"product_id":1175,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-m-gray-1175.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1169","_score":1,"_source":{"id":1169,"sku":"WH10-XS-Gray","name":"Helena Hooded Fleece-XS-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helena-hooded-fleece-xs-gray-1169","links":{},"stock":{"item_id":1169,"product_id":1169,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xs-gray-1169.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1178","_score":1,"_source":{"id":1178,"sku":"WH10-L-Gray","name":"Helena Hooded Fleece-L-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helena-hooded-fleece-l-gray-1178","links":{},"stock":{"item_id":1178,"product_id":1178,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-l-gray-1178.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1179","_score":1,"_source":{"id":1179,"sku":"WH10-L-Yellow","name":"Helena Hooded Fleece-L-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helena-hooded-fleece-l-yellow-1179","links":{},"stock":{"item_id":1179,"product_id":1179,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-l-yellow-1179.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1190","_score":1,"_source":{"id":1190,"sku":"WH11-M-Blue","name":"Eos V-Neck Hoodie-M-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"eos-v-neck-hoodie-m-blue-1190","links":{},"stock":{"item_id":1190,"product_id":1190,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-m-blue-1190.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1172","_score":1,"_source":{"id":1172,"sku":"WH10-S-Gray","name":"Helena Hooded Fleece-S-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helena-hooded-fleece-s-gray-1172","links":{},"stock":{"item_id":1172,"product_id":1172,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-s-gray-1172.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1160","_score":1,"_source":{"id":1160,"sku":"WH09-M-Red","name":"Ariel Roll Sleeve Sweatshirt-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ariel-roll-sleeve-sweatshirt-m-red-1160","links":{},"stock":{"item_id":1160,"product_id":1160,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-m-red-1160.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1182","_score":1,"_source":{"id":1182,"sku":"WH10-XL-Yellow","name":"Helena Hooded Fleece-XL-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helena-hooded-fleece-xl-yellow-1182","links":{},"stock":{"item_id":1182,"product_id":1182,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xl-yellow-1182.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1158","_score":1,"_source":{"id":1158,"sku":"WH09-M-Green","name":"Ariel Roll Sleeve Sweatshirt-M-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ariel-roll-sleeve-sweatshirt-m-green-1158","links":{},"stock":{"item_id":1158,"product_id":1158,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-m-green-1158.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1164","_score":1,"_source":{"id":1164,"sku":"WH09-XL-Green","name":"Ariel Roll Sleeve Sweatshirt-XL-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ariel-roll-sleeve-sweatshirt-xl-green-1164","links":{},"stock":{"item_id":1164,"product_id":1164,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xl-green-1164.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1173","_score":1,"_source":{"id":1173,"sku":"WH10-S-Yellow","name":"Helena Hooded Fleece-S-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helena-hooded-fleece-s-yellow-1173","links":{},"stock":{"item_id":1173,"product_id":1173,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-s-yellow-1173.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1196","_score":1,"_source":{"id":1196,"sku":"WH11-XL-Blue","name":"Eos V-Neck Hoodie-XL-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"eos-v-neck-hoodie-xl-blue-1196","links":{},"stock":{"item_id":1196,"product_id":1196,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xl-blue-1196.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1197","_score":1,"_source":{"id":1197,"sku":"WH11-XL-Green","name":"Eos V-Neck Hoodie-XL-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"eos-v-neck-hoodie-xl-green-1197","links":{},"stock":{"item_id":1197,"product_id":1197,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xl-green-1197.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1148","_score":1,"_source":{"id":1148,"sku":"WH08-XL-Orange","name":"Cassia Funnel Sweatshirt-XL-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"cassia-funnel-sweatshirt-xl-orange-1148","links":{},"stock":{"item_id":1148,"product_id":1148,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xl-orange-1148.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1144","_score":1,"_source":{"id":1144,"sku":"WH08-M-White","name":"Cassia Funnel Sweatshirt-M-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"cassia-funnel-sweatshirt-m-white-1144","links":{},"stock":{"item_id":1144,"product_id":1144,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-m-white-1144.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1119","_score":1,"_source":{"id":1119,"sku":"WH06","name":"Daphne Full-Zip Hoodie","attribute_set_id":9,"price":59,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

                            \n

                            • Purple full zip hoodie with pink accents.
                            • Heather texture.
                            • 4-way stretch.
                            • Pre-shrunk.
                            • Hood lined in vegan Sherpa for added warmth.
                            • Ribbed hem on hood and front pouch pocket.
                            • 60% Cotton / 40% Polyester.

                            ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"daphne-full-zip-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[138,129],"pattern":"197","climate":[202,203,204,208,210,211],"slug":"daphne-full-zip-hoodie-1119","links":{},"stock":{"item_id":1119,"product_id":1119,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH06-XS-Purple","id":1114,"status":1,"name":"Daphne Full-Zip Hoodie-XS-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"57","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","url_key":"daphne-full-zip-hoodie-xs-purple","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH06-S-Purple","id":1115,"status":1,"name":"Daphne Full-Zip Hoodie-S-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"57","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","url_key":"daphne-full-zip-hoodie-s-purple","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH06-M-Purple","id":1116,"status":1,"name":"Daphne Full-Zip Hoodie-M-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"57","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","url_key":"daphne-full-zip-hoodie-m-purple","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH06-L-Purple","id":1117,"status":1,"name":"Daphne Full-Zip Hoodie-L-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"57","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","url_key":"daphne-full-zip-hoodie-l-purple","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH06-XL-Purple","id":1118,"status":1,"name":"Daphne Full-Zip Hoodie-XL-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"57","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","url_key":"daphne-full-zip-hoodie-xl-purple","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59}],"configurable_options":[{"id":157,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":57,"label":"Purple"}],"product_id":1119,"attribute_code":"color"},{"id":156,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1119,"attribute_code":"size"}],"color_options":[57],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-1119.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1113","_score":1,"_source":{"id":1113,"sku":"WH05","name":"Selene Yoga Hoodie","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"selene-yoga-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[138,129],"pattern":"197","climate":[205,206,208],"slug":"selene-yoga-hoodie-1113","links":{},"stock":{"item_id":1113,"product_id":1113,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH05-XS-Orange","id":1098,"status":1,"name":"Selene Yoga Hoodie-XS-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"56","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","url_key":"selene-yoga-hoodie-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WH05-XS-Purple","id":1099,"status":1,"name":"Selene Yoga Hoodie-XS-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"57","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","url_key":"selene-yoga-hoodie-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WH05-XS-White","id":1100,"status":1,"name":"Selene Yoga Hoodie-XS-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"167","color":"59","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","url_key":"selene-yoga-hoodie-xs-white","msrp_display_actual_price_type":"0"},{"sku":"WH05-S-Orange","id":1101,"status":1,"name":"Selene Yoga Hoodie-S-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"56","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","url_key":"selene-yoga-hoodie-s-orange","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WH05-S-Purple","id":1102,"status":1,"name":"Selene Yoga Hoodie-S-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"57","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","url_key":"selene-yoga-hoodie-s-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WH05-S-White","id":1103,"status":1,"name":"Selene Yoga Hoodie-S-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"168","color":"59","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","url_key":"selene-yoga-hoodie-s-white","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WH05-M-Orange","id":1104,"status":1,"name":"Selene Yoga Hoodie-M-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"56","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","url_key":"selene-yoga-hoodie-m-orange","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WH05-M-Purple","id":1105,"status":1,"name":"Selene Yoga Hoodie-M-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"57","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","url_key":"selene-yoga-hoodie-m-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WH05-M-White","id":1106,"status":1,"name":"Selene Yoga Hoodie-M-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"169","color":"59","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","url_key":"selene-yoga-hoodie-m-white","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WH05-L-Orange","id":1107,"status":1,"name":"Selene Yoga Hoodie-L-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"56","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","url_key":"selene-yoga-hoodie-l-orange","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WH05-L-Purple","id":1108,"status":1,"name":"Selene Yoga Hoodie-L-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"57","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","url_key":"selene-yoga-hoodie-l-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WH05-L-White","id":1109,"status":1,"name":"Selene Yoga Hoodie-L-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"170","color":"59","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","url_key":"selene-yoga-hoodie-l-white","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WH05-XL-Orange","id":1110,"status":1,"name":"Selene Yoga Hoodie-XL-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"56","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","url_key":"selene-yoga-hoodie-xl-orange","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WH05-XL-Purple","id":1111,"status":1,"name":"Selene Yoga Hoodie-XL-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"57","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","url_key":"selene-yoga-hoodie-xl-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WH05-XL-White","id":1112,"status":1,"name":"Selene Yoga Hoodie-XL-White","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24"],"size":"171","color":"59","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","url_key":"selene-yoga-hoodie-xl-white","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42}],"configurable_options":[{"id":155,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"}],"product_id":1113,"attribute_code":"color"},{"id":154,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1113,"attribute_code":"size"}],"color_options":[56,57,59],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-1113.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1135","_score":1,"_source":{"id":1135,"sku":"WH07","name":"Phoebe Zipper Sweatshirt","attribute_set_id":9,"price":59,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"phoebe-zipper-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":[138,133,129],"pattern":"197","climate":[204,205,206],"slug":"phoebe-zipper-sweatshirt-1135","links":{},"stock":{"item_id":1135,"product_id":1135,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WH07-XS-Gray","id":1120,"status":1,"name":"Phoebe Zipper Sweatshirt-XS-Gray","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"167","color":"52","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","url_key":"phoebe-zipper-sweatshirt-xs-gray","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-XS-Purple","id":1121,"status":1,"name":"Phoebe Zipper Sweatshirt-XS-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"167","color":"57","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","url_key":"phoebe-zipper-sweatshirt-xs-purple","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-XS-White","id":1122,"status":1,"name":"Phoebe Zipper Sweatshirt-XS-White","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"167","color":"59","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","url_key":"phoebe-zipper-sweatshirt-xs-white","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-S-Gray","id":1123,"status":1,"name":"Phoebe Zipper Sweatshirt-S-Gray","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"168","color":"52","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","url_key":"phoebe-zipper-sweatshirt-s-gray","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-S-Purple","id":1124,"status":1,"name":"Phoebe Zipper Sweatshirt-S-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"168","color":"57","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","url_key":"phoebe-zipper-sweatshirt-s-purple","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-S-White","id":1125,"status":1,"name":"Phoebe Zipper Sweatshirt-S-White","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"168","color":"59","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","url_key":"phoebe-zipper-sweatshirt-s-white","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-M-Gray","id":1126,"status":1,"name":"Phoebe Zipper Sweatshirt-M-Gray","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"169","color":"52","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","url_key":"phoebe-zipper-sweatshirt-m-gray","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-M-Purple","id":1127,"status":1,"name":"Phoebe Zipper Sweatshirt-M-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"169","color":"57","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","url_key":"phoebe-zipper-sweatshirt-m-purple","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-M-White","id":1128,"status":1,"name":"Phoebe Zipper Sweatshirt-M-White","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"169","color":"59","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","url_key":"phoebe-zipper-sweatshirt-m-white","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-L-Gray","id":1129,"status":1,"name":"Phoebe Zipper Sweatshirt-L-Gray","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"170","color":"52","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","url_key":"phoebe-zipper-sweatshirt-l-gray","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-L-Purple","id":1130,"status":1,"name":"Phoebe Zipper Sweatshirt-L-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"170","color":"57","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","url_key":"phoebe-zipper-sweatshirt-l-purple","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-L-White","id":1131,"status":1,"name":"Phoebe Zipper Sweatshirt-L-White","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"170","color":"59","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","url_key":"phoebe-zipper-sweatshirt-l-white","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-XL-Gray","id":1132,"status":1,"name":"Phoebe Zipper Sweatshirt-XL-Gray","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"171","color":"52","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","url_key":"phoebe-zipper-sweatshirt-xl-gray","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-XL-Purple","id":1133,"status":1,"name":"Phoebe Zipper Sweatshirt-XL-Purple","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"171","color":"57","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","url_key":"phoebe-zipper-sweatshirt-xl-purple","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WH07-XL-White","id":1134,"status":1,"name":"Phoebe Zipper Sweatshirt-XL-White","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["24","8","34","2"],"size":"171","color":"59","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","url_key":"phoebe-zipper-sweatshirt-xl-white","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59}],"configurable_options":[{"id":159,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"}],"product_id":1135,"attribute_code":"color"},{"id":158,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1135,"attribute_code":"size"}],"color_options":[52,57,59],"size_options":[167,168,169,170,171],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-1135.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1203","_score":1,"_source":{"id":1203,"sku":"WH12-S-Gray","name":"Circe Hooded Ice Fleece-S-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"circe-hooded-ice-fleece-s-gray-1203","links":{},"stock":{"item_id":1203,"product_id":1203,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-s-gray-1203.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1226","_score":1,"_source":{"id":1226,"sku":"WJ02-XS-Black","name":"Josie Yoga Jacket-XS-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"josie-yoga-jacket-xs-black-1226","links":{},"stock":{"item_id":1226,"product_id":1226,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xs-black-1226.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1207","_score":1,"_source":{"id":1207,"sku":"WH12-M-Green","name":"Circe Hooded Ice Fleece-M-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"circe-hooded-ice-fleece-m-green-1207","links":{},"stock":{"item_id":1207,"product_id":1207,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-m-green-1207.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1209","_score":1,"_source":{"id":1209,"sku":"WH12-L-Gray","name":"Circe Hooded Ice Fleece-L-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"circe-hooded-ice-fleece-l-gray-1209","links":{},"stock":{"item_id":1209,"product_id":1209,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-l-gray-1209.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1211","_score":1,"_source":{"id":1211,"sku":"WH12-L-Purple","name":"Circe Hooded Ice Fleece-L-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"circe-hooded-ice-fleece-l-purple-1211","links":{},"stock":{"item_id":1211,"product_id":1211,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-l-purple-1211.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1201","_score":1,"_source":{"id":1201,"sku":"WH12-XS-Green","name":"Circe Hooded Ice Fleece-XS-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"circe-hooded-ice-fleece-xs-green-1201","links":{},"stock":{"item_id":1201,"product_id":1201,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xs-green-1201.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1228","_score":1,"_source":{"id":1228,"sku":"WJ02-XS-Gray","name":"Josie Yoga Jacket-XS-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"josie-yoga-jacket-xs-gray-1228","links":{},"stock":{"item_id":1228,"product_id":1228,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xs-gray-1228.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1206","_score":1,"_source":{"id":1206,"sku":"WH12-M-Gray","name":"Circe Hooded Ice Fleece-M-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"circe-hooded-ice-fleece-m-gray-1206","links":{},"stock":{"item_id":1206,"product_id":1206,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-m-gray-1206.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1220","_score":1,"_source":{"id":1220,"sku":"WJ01-M-Red","name":"Stellar Solar Jacket-M-Red","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.
                            • Deep pink jacket with front panel rouching

                            ","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","color":"58","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stellar-solar-jacket-m-red-1220","links":{},"stock":{"item_id":1220,"product_id":1220,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-m-red-1220.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1210","_score":1,"_source":{"id":1210,"sku":"WH12-L-Green","name":"Circe Hooded Ice Fleece-L-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"circe-hooded-ice-fleece-l-green-1210","links":{},"stock":{"item_id":1210,"product_id":1210,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-l-green-1210.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1213","_score":1,"_source":{"id":1213,"sku":"WH12-XL-Green","name":"Circe Hooded Ice Fleece-XL-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"circe-hooded-ice-fleece-xl-green-1213","links":{},"stock":{"item_id":1213,"product_id":1213,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xl-green-1213.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1223","_score":1,"_source":{"id":1223,"sku":"WJ01-L-Red","name":"Stellar Solar Jacket-L-Red","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.
                            • Deep pink jacket with front panel rouching

                            ","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","color":"58","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stellar-solar-jacket-l-red-1223","links":{},"stock":{"item_id":1223,"product_id":1223,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-l-red-1223.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1214","_score":1,"_source":{"id":1214,"sku":"WH12-XL-Purple","name":"Circe Hooded Ice Fleece-XL-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"circe-hooded-ice-fleece-xl-purple-1214","links":{},"stock":{"item_id":1214,"product_id":1214,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xl-purple-1214.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1208","_score":1,"_source":{"id":1208,"sku":"WH12-M-Purple","name":"Circe Hooded Ice Fleece-M-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"circe-hooded-ice-fleece-m-purple-1208","links":{},"stock":{"item_id":1208,"product_id":1208,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-m-purple-1208.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1217","_score":1,"_source":{"id":1217,"sku":"WJ01-S-Red","name":"Stellar Solar Jacket-S-Red","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.
                            • Deep pink jacket with front panel rouching

                            ","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","color":"58","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stellar-solar-jacket-s-red-1217","links":{},"stock":{"item_id":1217,"product_id":1217,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj01-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-s-red-1217.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1222","_score":1,"_source":{"id":1222,"sku":"WJ01-L-Blue","name":"Stellar Solar Jacket-L-Blue","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.
                            • Deep pink jacket with front panel rouching

                            ","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","color":"50","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stellar-solar-jacket-l-blue-1222","links":{},"stock":{"item_id":1222,"product_id":1222,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-l-blue-1222.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1219","_score":1,"_source":{"id":1219,"sku":"WJ01-M-Blue","name":"Stellar Solar Jacket-M-Blue","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.
                            • Deep pink jacket with front panel rouching

                            ","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","color":"50","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stellar-solar-jacket-m-blue-1219","links":{},"stock":{"item_id":1219,"product_id":1219,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-m-blue-1219.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1232","_score":1,"_source":{"id":1232,"sku":"WJ02-M-Black","name":"Josie Yoga Jacket-M-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"josie-yoga-jacket-m-black-1232","links":{},"stock":{"item_id":1232,"product_id":1232,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-m-black-1232.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1229","_score":1,"_source":{"id":1229,"sku":"WJ02-S-Black","name":"Josie Yoga Jacket-S-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"josie-yoga-jacket-s-black-1229","links":{},"stock":{"item_id":1229,"product_id":1229,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-s-black-1229.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1204","_score":1,"_source":{"id":1204,"sku":"WH12-S-Green","name":"Circe Hooded Ice Fleece-S-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"circe-hooded-ice-fleece-s-green-1204","links":{},"stock":{"item_id":1204,"product_id":1204,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-s-green-1204.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1248","_score":1,"_source":{"id":1248,"sku":"WJ03-M-Blue","name":"Augusta Pullover Jacket-M-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"augusta-pullover-jacket-m-blue-1248","links":{},"stock":{"item_id":1248,"product_id":1248,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-m-blue-1248.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1230","_score":1,"_source":{"id":1230,"sku":"WJ02-S-Blue","name":"Josie Yoga Jacket-S-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"josie-yoga-jacket-s-blue-1230","links":{},"stock":{"item_id":1230,"product_id":1230,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-s-blue-1230.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1202","_score":1,"_source":{"id":1202,"sku":"WH12-XS-Purple","name":"Circe Hooded Ice Fleece-XS-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"circe-hooded-ice-fleece-xs-purple-1202","links":{},"stock":{"item_id":1202,"product_id":1202,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xs-purple-1202.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1233","_score":1,"_source":{"id":1233,"sku":"WJ02-M-Blue","name":"Josie Yoga Jacket-M-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"josie-yoga-jacket-m-blue-1233","links":{},"stock":{"item_id":1233,"product_id":1233,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-m-blue-1233.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1218","_score":1,"_source":{"id":1218,"sku":"WJ01-S-Yellow","name":"Stellar Solar Jacket-S-Yellow","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.
                            • Deep pink jacket with front panel rouching

                            ","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","color":"60","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stellar-solar-jacket-s-yellow-1218","links":{},"stock":{"item_id":1218,"product_id":1218,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-s-yellow-1218.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1234","_score":1,"_source":{"id":1234,"sku":"WJ02-M-Gray","name":"Josie Yoga Jacket-M-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"josie-yoga-jacket-m-gray-1234","links":{},"stock":{"item_id":1234,"product_id":1234,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-m-gray-1234.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1244","_score":1,"_source":{"id":1244,"sku":"WJ03-XS-Red","name":"Augusta Pullover Jacket-XS-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"augusta-pullover-jacket-xs-red-1244","links":{},"stock":{"item_id":1244,"product_id":1244,"stock_id":1,"qty":49,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xs-red-1244.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1235","_score":1,"_source":{"id":1235,"sku":"WJ02-L-Black","name":"Josie Yoga Jacket-L-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"josie-yoga-jacket-l-black-1235","links":{},"stock":{"item_id":1235,"product_id":1235,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-l-black-1235.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1243","_score":1,"_source":{"id":1243,"sku":"WJ03-XS-Orange","name":"Augusta Pullover Jacket-XS-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"augusta-pullover-jacket-xs-orange-1243","links":{},"stock":{"item_id":1243,"product_id":1243,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xs-orange-1243.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1258","_score":1,"_source":{"id":1258,"sku":"WJ04-XS-Orange","name":"Ingrid Running Jacket-XS-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ingrid-running-jacket-xs-orange-1258","links":{},"stock":{"item_id":1258,"product_id":1258,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xs-orange-1258.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1261","_score":1,"_source":{"id":1261,"sku":"WJ04-S-Orange","name":"Ingrid Running Jacket-S-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ingrid-running-jacket-s-orange-1261","links":{},"stock":{"item_id":1261,"product_id":1261,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-s-orange-1261.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1265","_score":1,"_source":{"id":1265,"sku":"WJ04-M-Red","name":"Ingrid Running Jacket-M-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ingrid-running-jacket-m-red-1265","links":{},"stock":{"item_id":1265,"product_id":1265,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-m-red-1265.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1252","_score":1,"_source":{"id":1252,"sku":"WJ03-L-Orange","name":"Augusta Pullover Jacket-L-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"augusta-pullover-jacket-l-orange-1252","links":{},"stock":{"item_id":1252,"product_id":1252,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-l-orange-1252.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1276","_score":1,"_source":{"id":1276,"sku":"WJ05-XS-Red","name":"Riona Full Zip Jacket-XS-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"riona-full-zip-jacket-xs-red-1276","links":{},"stock":{"item_id":1276,"product_id":1276,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xs-red-1276.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1256","_score":1,"_source":{"id":1256,"sku":"WJ03-XL-Red","name":"Augusta Pullover Jacket-XL-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"augusta-pullover-jacket-xl-red-1256","links":{},"stock":{"item_id":1256,"product_id":1256,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xl-red-1256.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1251","_score":1,"_source":{"id":1251,"sku":"WJ03-L-Blue","name":"Augusta Pullover Jacket-L-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"augusta-pullover-jacket-l-blue-1251","links":{},"stock":{"item_id":1251,"product_id":1251,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-l-blue-1251.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1266","_score":1,"_source":{"id":1266,"sku":"WJ04-M-White","name":"Ingrid Running Jacket-M-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ingrid-running-jacket-m-white-1266","links":{},"stock":{"item_id":1266,"product_id":1266,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-m-white-1266.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1272","_score":1,"_source":{"id":1272,"sku":"WJ04-XL-White","name":"Ingrid Running Jacket-XL-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ingrid-running-jacket-xl-white-1272","links":{},"stock":{"item_id":1272,"product_id":1272,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xl-white-1272.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1254","_score":1,"_source":{"id":1254,"sku":"WJ03-XL-Blue","name":"Augusta Pullover Jacket-XL-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"augusta-pullover-jacket-xl-blue-1254","links":{},"stock":{"item_id":1254,"product_id":1254,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xl-blue-1254.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1262","_score":1,"_source":{"id":1262,"sku":"WJ04-S-Red","name":"Ingrid Running Jacket-S-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ingrid-running-jacket-s-red-1262","links":{},"stock":{"item_id":1262,"product_id":1262,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-s-red-1262.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1264","_score":1,"_source":{"id":1264,"sku":"WJ04-M-Orange","name":"Ingrid Running Jacket-M-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ingrid-running-jacket-m-orange-1264","links":{},"stock":{"item_id":1264,"product_id":1264,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-m-orange-1264.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1253","_score":1,"_source":{"id":1253,"sku":"WJ03-L-Red","name":"Augusta Pullover Jacket-L-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"augusta-pullover-jacket-l-red-1253","links":{},"stock":{"item_id":1253,"product_id":1253,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-l-red-1253.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1255","_score":1,"_source":{"id":1255,"sku":"WJ03-XL-Orange","name":"Augusta Pullover Jacket-XL-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"augusta-pullover-jacket-xl-orange-1255","links":{},"stock":{"item_id":1255,"product_id":1255,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xl-orange-1255.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1268","_score":1,"_source":{"id":1268,"sku":"WJ04-L-Red","name":"Ingrid Running Jacket-L-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ingrid-running-jacket-l-red-1268","links":{},"stock":{"item_id":1268,"product_id":1268,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-l-red-1268.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1259","_score":1,"_source":{"id":1259,"sku":"WJ04-XS-Red","name":"Ingrid Running Jacket-XS-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ingrid-running-jacket-xs-red-1259","links":{},"stock":{"item_id":1259,"product_id":1259,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xs-red-1259.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1260","_score":1,"_source":{"id":1260,"sku":"WJ04-XS-White","name":"Ingrid Running Jacket-XS-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ingrid-running-jacket-xs-white-1260","links":{},"stock":{"item_id":1260,"product_id":1260,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xs-white-1260.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1263","_score":1,"_source":{"id":1263,"sku":"WJ04-S-White","name":"Ingrid Running Jacket-S-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ingrid-running-jacket-s-white-1263","links":{},"stock":{"item_id":1263,"product_id":1263,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-s-white-1263.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1270","_score":1,"_source":{"id":1270,"sku":"WJ04-XL-Orange","name":"Ingrid Running Jacket-XL-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ingrid-running-jacket-xl-orange-1270","links":{},"stock":{"item_id":1270,"product_id":1270,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xl-orange-1270.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1274","_score":1,"_source":{"id":1274,"sku":"WJ05-XS-Brown","name":"Riona Full Zip Jacket-XS-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xs-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"riona-full-zip-jacket-xs-brown-1274","links":{},"stock":{"item_id":1274,"product_id":1274,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xs-brown-1274.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1271","_score":1,"_source":{"id":1271,"sku":"WJ04-XL-Red","name":"Ingrid Running Jacket-XL-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ingrid-running-jacket-xl-red-1271","links":{},"stock":{"item_id":1271,"product_id":1271,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xl-red-1271.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1279","_score":1,"_source":{"id":1279,"sku":"WJ05-S-Red","name":"Riona Full Zip Jacket-S-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"riona-full-zip-jacket-s-red-1279","links":{},"stock":{"item_id":1279,"product_id":1279,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-s-red-1279.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1291","_score":1,"_source":{"id":1291,"sku":"WJ07-XS-Purple","name":"Inez Full Zip Jacket-XS-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"inez-full-zip-jacket-xs-purple-1291","links":{},"stock":{"item_id":1291,"product_id":1291,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xs-purple-1291.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1277","_score":1,"_source":{"id":1277,"sku":"WJ05-S-Brown","name":"Riona Full Zip Jacket-S-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-s-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"riona-full-zip-jacket-s-brown-1277","links":{},"stock":{"item_id":1277,"product_id":1277,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-s-brown-1277.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1281","_score":1,"_source":{"id":1281,"sku":"WJ05-M-Green","name":"Riona Full Zip Jacket-M-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"riona-full-zip-jacket-m-green-1281","links":{},"stock":{"item_id":1281,"product_id":1281,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-m-green-1281.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1296","_score":1,"_source":{"id":1296,"sku":"WJ07-M-Orange","name":"Inez Full Zip Jacket-M-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"inez-full-zip-jacket-m-orange-1296","links":{},"stock":{"item_id":1296,"product_id":1296,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-m-orange-1296.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1267","_score":1,"_source":{"id":1267,"sku":"WJ04-L-Orange","name":"Ingrid Running Jacket-L-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ingrid-running-jacket-l-orange-1267","links":{},"stock":{"item_id":1267,"product_id":1267,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-l-orange-1267.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1130","_score":1,"_source":{"id":1130,"sku":"WH07-L-Purple","name":"Phoebe Zipper Sweatshirt-L-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"phoebe-zipper-sweatshirt-l-purple-1130","links":{},"stock":{"item_id":1130,"product_id":1130,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-l-purple-1130.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1109","_score":1,"_source":{"id":1109,"sku":"WH05-L-White","name":"Selene Yoga Hoodie-L-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"selene-yoga-hoodie-l-white-1109","links":{},"stock":{"item_id":1109,"product_id":1109,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-l-white-1109.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1108","_score":1,"_source":{"id":1108,"sku":"WH05-L-Purple","name":"Selene Yoga Hoodie-L-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"selene-yoga-hoodie-l-purple-1108","links":{},"stock":{"item_id":1108,"product_id":1108,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-l-purple-1108.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1131","_score":1,"_source":{"id":1131,"sku":"WH07-L-White","name":"Phoebe Zipper Sweatshirt-L-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"phoebe-zipper-sweatshirt-l-white-1131","links":{},"stock":{"item_id":1131,"product_id":1131,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-l-white-1131.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1125","_score":1,"_source":{"id":1125,"sku":"WH07-S-White","name":"Phoebe Zipper Sweatshirt-S-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"phoebe-zipper-sweatshirt-s-white-1125","links":{},"stock":{"item_id":1125,"product_id":1125,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-s-white-1125.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1140","_score":1,"_source":{"id":1140,"sku":"WH08-S-Purple","name":"Cassia Funnel Sweatshirt-S-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"cassia-funnel-sweatshirt-s-purple-1140","links":{},"stock":{"item_id":1140,"product_id":1140,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-s-purple-1140.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1136","_score":1,"_source":{"id":1136,"sku":"WH08-XS-Orange","name":"Cassia Funnel Sweatshirt-XS-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"cassia-funnel-sweatshirt-xs-orange-1136","links":{},"stock":{"item_id":1136,"product_id":1136,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xs-orange-1136.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1127","_score":1,"_source":{"id":1127,"sku":"WH07-M-Purple","name":"Phoebe Zipper Sweatshirt-M-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"phoebe-zipper-sweatshirt-m-purple-1127","links":{},"stock":{"item_id":1127,"product_id":1127,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-m-purple-1127.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1133","_score":1,"_source":{"id":1133,"sku":"WH07-XL-Purple","name":"Phoebe Zipper Sweatshirt-XL-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"phoebe-zipper-sweatshirt-xl-purple-1133","links":{},"stock":{"item_id":1133,"product_id":1133,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xl-purple-1133.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1134","_score":1,"_source":{"id":1134,"sku":"WH07-XL-White","name":"Phoebe Zipper Sweatshirt-XL-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"phoebe-zipper-sweatshirt-xl-white-1134","links":{},"stock":{"item_id":1134,"product_id":1134,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xl-white-1134.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1145","_score":1,"_source":{"id":1145,"sku":"WH08-L-Orange","name":"Cassia Funnel Sweatshirt-L-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"cassia-funnel-sweatshirt-l-orange-1145","links":{},"stock":{"item_id":1145,"product_id":1145,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-l-orange-1145.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1142","_score":1,"_source":{"id":1142,"sku":"WH08-M-Orange","name":"Cassia Funnel Sweatshirt-M-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"cassia-funnel-sweatshirt-m-orange-1142","links":{},"stock":{"item_id":1142,"product_id":1142,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-m-orange-1142.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1138","_score":1,"_source":{"id":1138,"sku":"WH08-XS-White","name":"Cassia Funnel Sweatshirt-XS-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"cassia-funnel-sweatshirt-xs-white-1138","links":{},"stock":{"item_id":1138,"product_id":1138,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xs-white-1138.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1143","_score":1,"_source":{"id":1143,"sku":"WH08-M-Purple","name":"Cassia Funnel Sweatshirt-M-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"cassia-funnel-sweatshirt-m-purple-1143","links":{},"stock":{"item_id":1143,"product_id":1143,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-m-purple-1143.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1141","_score":1,"_source":{"id":1141,"sku":"WH08-S-White","name":"Cassia Funnel Sweatshirt-S-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"cassia-funnel-sweatshirt-s-white-1141","links":{},"stock":{"item_id":1141,"product_id":1141,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-s-white-1141.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1147","_score":1,"_source":{"id":1147,"sku":"WH08-L-White","name":"Cassia Funnel Sweatshirt-L-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"cassia-funnel-sweatshirt-l-white-1147","links":{},"stock":{"item_id":1147,"product_id":1147,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-l-white-1147.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1146","_score":1,"_source":{"id":1146,"sku":"WH08-L-Purple","name":"Cassia Funnel Sweatshirt-L-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"cassia-funnel-sweatshirt-l-purple-1146","links":{},"stock":{"item_id":1146,"product_id":1146,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-l-purple-1146.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1150","_score":1,"_source":{"id":1150,"sku":"WH08-XL-White","name":"Cassia Funnel Sweatshirt-XL-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"cassia-funnel-sweatshirt-xl-white-1150","links":{},"stock":{"item_id":1150,"product_id":1150,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xl-white-1150.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1139","_score":1,"_source":{"id":1139,"sku":"WH08-S-Orange","name":"Cassia Funnel Sweatshirt-S-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"cassia-funnel-sweatshirt-s-orange-1139","links":{},"stock":{"item_id":1139,"product_id":1139,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-s-orange-1139.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1163","_score":1,"_source":{"id":1163,"sku":"WH09-L-Red","name":"Ariel Roll Sleeve Sweatshirt-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ariel-roll-sleeve-sweatshirt-l-red-1163","links":{},"stock":{"item_id":1163,"product_id":1163,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-l-red-1163.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1181","_score":1,"_source":{"id":1181,"sku":"WH10-XL-Gray","name":"Helena Hooded Fleece-XL-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helena-hooded-fleece-xl-gray-1181","links":{},"stock":{"item_id":1181,"product_id":1181,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xl-gray-1181.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1184","_score":1,"_source":{"id":1184,"sku":"WH11-XS-Blue","name":"Eos V-Neck Hoodie-XS-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"eos-v-neck-hoodie-xs-blue-1184","links":{},"stock":{"item_id":1184,"product_id":1184,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xs-blue-1184.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1176","_score":1,"_source":{"id":1176,"sku":"WH10-M-Yellow","name":"Helena Hooded Fleece-M-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helena-hooded-fleece-m-yellow-1176","links":{},"stock":{"item_id":1176,"product_id":1176,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24","path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-m-yellow-1176.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1240","_score":1,"_source":{"id":1240,"sku":"WJ02-XL-Gray","name":"Josie Yoga Jacket-XL-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"josie-yoga-jacket-xl-gray-1240","links":{},"stock":{"item_id":1240,"product_id":1240,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xl-gray-1240.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1245","_score":1,"_source":{"id":1245,"sku":"WJ03-S-Blue","name":"Augusta Pullover Jacket-S-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"augusta-pullover-jacket-s-blue-1245","links":{},"stock":{"item_id":1245,"product_id":1245,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":23,"name":"Jackets","slug":"jackets-23","path":"women/tops-women/jackets-women/jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-s-blue-1245.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1596","_score":1,"_source":{"id":1596,"sku":"WB01-XS-Purple","name":"Electra Bra Top-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"electra-bra-top-xs-purple-1596","links":{},"stock":{"item_id":1596,"product_id":1596,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xs-purple-1596.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1592","_score":1,"_source":{"id":1592,"sku":"WS05-XL-Yellow","name":"Desiree Fitness Tee-XL-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"desiree-fitness-tee-xl-yellow-1592","links":{},"stock":{"item_id":1592,"product_id":1592,"stock_id":1,"qty":78,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xl-yellow-1592.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1581","_score":1,"_source":{"id":1581,"sku":"WS05-S-Black","name":"Desiree Fitness Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"desiree-fitness-tee-s-black-1581","links":{},"stock":{"item_id":1581,"product_id":1581,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-09-10 08:57:54","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-s-black-1581.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1598","_score":1,"_source":{"id":1598,"sku":"WB01-S-Gray","name":"Electra Bra Top-S-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"electra-bra-top-s-gray-1598","links":{},"stock":{"item_id":1598,"product_id":1598,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-s-gray-1598.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1591","_score":1,"_source":{"id":1591,"sku":"WS05-XL-Orange","name":"Desiree Fitness Tee-XL-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"desiree-fitness-tee-xl-orange-1591","links":{},"stock":{"item_id":1591,"product_id":1591,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xl-orange-1591.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1576","_score":1,"_source":{"id":1576,"sku":"WS01-XL-Yellow","name":"Gwyn Endurance Tee-XL-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gwyn-endurance-tee-xl-yellow-1576","links":{},"stock":{"item_id":1576,"product_id":1576,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xl-yellow-1576.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1587","_score":1,"_source":{"id":1587,"sku":"WS05-L-Black","name":"Desiree Fitness Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"desiree-fitness-tee-l-black-1587","links":{},"stock":{"item_id":1587,"product_id":1587,"stock_id":1,"qty":40,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-l-black-1587.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1583","_score":1,"_source":{"id":1583,"sku":"WS05-S-Yellow","name":"Desiree Fitness Tee-S-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"desiree-fitness-tee-s-yellow-1583","links":{},"stock":{"item_id":1583,"product_id":1583,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-s-yellow-1583.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1597","_score":1,"_source":{"id":1597,"sku":"WB01-S-Black","name":"Electra Bra Top-S-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"electra-bra-top-s-black-1597","links":{},"stock":{"item_id":1597,"product_id":1597,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-s-black-1597.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1585","_score":1,"_source":{"id":1585,"sku":"WS05-M-Orange","name":"Desiree Fitness Tee-M-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"desiree-fitness-tee-m-orange-1585","links":{},"stock":{"item_id":1585,"product_id":1585,"stock_id":1,"qty":63,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-m-orange-1585.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1590","_score":1,"_source":{"id":1590,"sku":"WS05-XL-Black","name":"Desiree Fitness Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"desiree-fitness-tee-xl-black-1590","links":{},"stock":{"item_id":1590,"product_id":1590,"stock_id":1,"qty":50,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xl-black-1590.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1600","_score":1,"_source":{"id":1600,"sku":"WB01-M-Black","name":"Electra Bra Top-M-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"electra-bra-top-m-black-1600","links":{},"stock":{"item_id":1600,"product_id":1600,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-m-black-1600.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1582","_score":1,"_source":{"id":1582,"sku":"WS05-S-Orange","name":"Desiree Fitness Tee-S-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"desiree-fitness-tee-s-orange-1582","links":{},"stock":{"item_id":1582,"product_id":1582,"stock_id":1,"qty":44,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-s-orange-1582.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1599","_score":1,"_source":{"id":1599,"sku":"WB01-S-Purple","name":"Electra Bra Top-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"electra-bra-top-s-purple-1599","links":{},"stock":{"item_id":1599,"product_id":1599,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-s-purple-1599.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1586","_score":1,"_source":{"id":1586,"sku":"WS05-M-Yellow","name":"Desiree Fitness Tee-M-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"desiree-fitness-tee-m-yellow-1586","links":{},"stock":{"item_id":1586,"product_id":1586,"stock_id":1,"qty":47,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-m-yellow-1586.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1589","_score":1,"_source":{"id":1589,"sku":"WS05-L-Yellow","name":"Desiree Fitness Tee-L-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"desiree-fitness-tee-l-yellow-1589","links":{},"stock":{"item_id":1589,"product_id":1589,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-l-yellow-1589.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1594","_score":1,"_source":{"id":1594,"sku":"WB01-XS-Black","name":"Electra Bra Top-XS-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"electra-bra-top-xs-black-1594","links":{},"stock":{"item_id":1594,"product_id":1594,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xs-black-1594.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1577","_score":1,"_source":{"id":1577,"sku":"WS01","name":"Gwyn Endurance Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"gwyn-endurance-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[152,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"gwyn-endurance-tee-1577","links":{},"stock":{"item_id":1577,"product_id":1577,"stock_id":1,"qty":8,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS01-XS-Black","id":1562,"status":1,"name":"Gwyn Endurance Tee-XS-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"167","color":"49","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","url_key":"gwyn-endurance-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WS01-XS-Green","id":1563,"status":1,"name":"Gwyn Endurance Tee-XS-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"167","color":"53","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","url_key":"gwyn-endurance-tee-xs-green","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS01-XS-Yellow","id":1564,"status":1,"name":"Gwyn Endurance Tee-XS-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"167","color":"60","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","url_key":"gwyn-endurance-tee-xs-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS01-S-Black","id":1565,"status":1,"name":"Gwyn Endurance Tee-S-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"168","color":"49","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","url_key":"gwyn-endurance-tee-s-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS01-S-Green","id":1566,"status":1,"name":"Gwyn Endurance Tee-S-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"168","color":"53","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","url_key":"gwyn-endurance-tee-s-green","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS01-S-Yellow","id":1567,"status":1,"name":"Gwyn Endurance Tee-S-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"168","color":"60","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","url_key":"gwyn-endurance-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS01-M-Black","id":1568,"status":1,"name":"Gwyn Endurance Tee-M-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"169","color":"49","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","url_key":"gwyn-endurance-tee-m-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS01-M-Green","id":1569,"status":1,"name":"Gwyn Endurance Tee-M-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"169","color":"53","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","url_key":"gwyn-endurance-tee-m-green","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS01-M-Yellow","id":1570,"status":1,"name":"Gwyn Endurance Tee-M-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"169","color":"60","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","url_key":"gwyn-endurance-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS01-L-Black","id":1571,"status":1,"name":"Gwyn Endurance Tee-L-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"170","color":"49","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","url_key":"gwyn-endurance-tee-l-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS01-L-Green","id":1572,"status":1,"name":"Gwyn Endurance Tee-L-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"170","color":"53","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","url_key":"gwyn-endurance-tee-l-green","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS01-L-Yellow","id":1573,"status":1,"name":"Gwyn Endurance Tee-L-Yellow","price":24,"tier_prices":[{"customer_group_id":0,"qty":2,"value":22,"extension_attributes":{"website_id":0}}],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"170","color":"60","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","url_key":"gwyn-endurance-tee-l-yellow","special_price":20,"special_from_date":"2019-05-13 00:00:00","msrp_display_actual_price_type":"0","final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"minimal_price":20,"regular_price":24},{"sku":"WS01-XL-Black","id":1574,"status":1,"name":"Gwyn Endurance Tee-XL-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"171","color":"49","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","url_key":"gwyn-endurance-tee-xl-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS01-XL-Green","id":1575,"status":1,"name":"Gwyn Endurance Tee-XL-Green","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"171","color":"53","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","url_key":"gwyn-endurance-tee-xl-green","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS01-XL-Yellow","id":1576,"status":1,"name":"Gwyn Endurance Tee-XL-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"171","color":"60","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","url_key":"gwyn-endurance-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24}],"configurable_options":[{"id":215,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":60,"label":"Yellow"}],"product_id":1577,"attribute_code":"color"},{"id":214,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1577,"attribute_code":"size"}],"color_options":[49,53,60],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-1577.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1593","_score":1,"_source":{"id":1593,"sku":"WS05","name":"Desiree Fitness Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"desiree-fitness-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[152,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"desiree-fitness-tee-1593","links":{},"stock":{"item_id":1593,"product_id":1593,"stock_id":1,"qty":24,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS05-XS-Black","id":1578,"status":1,"name":"Desiree Fitness Tee-XS-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"167","color":"49","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","url_key":"desiree-fitness-tee-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WS05-XS-Orange","id":1579,"status":1,"name":"Desiree Fitness Tee-XS-Orange","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"167","color":"56","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","url_key":"desiree-fitness-tee-xs-orange","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS05-XS-Yellow","id":1580,"status":1,"name":"Desiree Fitness Tee-XS-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"167","color":"60","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","url_key":"desiree-fitness-tee-xs-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS05-S-Black","id":1581,"status":1,"name":"Desiree Fitness Tee-S-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"168","color":"49","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","url_key":"desiree-fitness-tee-s-black","msrp_display_actual_price_type":"0"},{"sku":"WS05-S-Orange","id":1582,"status":1,"name":"Desiree Fitness Tee-S-Orange","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"168","color":"56","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","url_key":"desiree-fitness-tee-s-orange","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS05-S-Yellow","id":1583,"status":1,"name":"Desiree Fitness Tee-S-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"168","color":"60","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","url_key":"desiree-fitness-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS05-M-Black","id":1584,"status":1,"name":"Desiree Fitness Tee-M-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"169","color":"49","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","url_key":"desiree-fitness-tee-m-black","msrp_display_actual_price_type":"0"},{"sku":"WS05-M-Orange","id":1585,"status":1,"name":"Desiree Fitness Tee-M-Orange","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"169","color":"56","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","url_key":"desiree-fitness-tee-m-orange","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS05-M-Yellow","id":1586,"status":1,"name":"Desiree Fitness Tee-M-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"169","color":"60","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","url_key":"desiree-fitness-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS05-L-Black","id":1587,"status":1,"name":"Desiree Fitness Tee-L-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"170","color":"49","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","url_key":"desiree-fitness-tee-l-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS05-L-Orange","id":1588,"status":1,"name":"Desiree Fitness Tee-L-Orange","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"170","color":"56","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","url_key":"desiree-fitness-tee-l-orange","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS05-L-Yellow","id":1589,"status":1,"name":"Desiree Fitness Tee-L-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"170","color":"60","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","url_key":"desiree-fitness-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS05-XL-Black","id":1590,"status":1,"name":"Desiree Fitness Tee-XL-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"171","color":"49","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","url_key":"desiree-fitness-tee-xl-black","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS05-XL-Orange","id":1591,"status":1,"name":"Desiree Fitness Tee-XL-Orange","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"171","color":"56","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","url_key":"desiree-fitness-tee-xl-orange","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24},{"sku":"WS05-XL-Yellow","id":1592,"status":1,"name":"Desiree Fitness Tee-XL-Yellow","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","2"],"size":"171","color":"60","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","url_key":"desiree-fitness-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24}],"configurable_options":[{"id":217,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1593,"attribute_code":"color"},{"id":216,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1593,"attribute_code":"size"}],"color_options":[49,56,60],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-1593.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1561","_score":1,"_source":{"id":1561,"sku":"WS12","name":"Radiant Tee","attribute_set_id":9,"price":22,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"radiant-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[146,154,151],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"radiant-tee-1561","links":{},"stock":{"item_id":1561,"product_id":1561,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS12-XS-Blue","id":1546,"status":1,"name":"Radiant Tee-XS-Blue","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"50","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","url_key":"radiant-tee-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WS12-XS-Orange","id":1547,"status":1,"name":"Radiant Tee-XS-Orange","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"56","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","url_key":"radiant-tee-xs-orange","msrp_display_actual_price_type":"0"},{"sku":"WS12-XS-Purple","id":1548,"status":1,"name":"Radiant Tee-XS-Purple","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"57","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","url_key":"radiant-tee-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WS12-S-Blue","id":1549,"status":1,"name":"Radiant Tee-S-Blue","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"50","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","url_key":"radiant-tee-s-blue","msrp_display_actual_price_type":"0"},{"sku":"WS12-S-Orange","id":1550,"status":1,"name":"Radiant Tee-S-Orange","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"56","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","url_key":"radiant-tee-s-orange","msrp_display_actual_price_type":"0"},{"sku":"WS12-S-Purple","id":1551,"status":1,"name":"Radiant Tee-S-Purple","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"57","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","url_key":"radiant-tee-s-purple","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"WS12-M-Blue","id":1552,"status":1,"name":"Radiant Tee-M-Blue","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"50","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","url_key":"radiant-tee-m-blue","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"WS12-M-Orange","id":1553,"status":1,"name":"Radiant Tee-M-Orange","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"56","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","url_key":"radiant-tee-m-orange","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"WS12-M-Purple","id":1554,"status":1,"name":"Radiant Tee-M-Purple","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"57","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","url_key":"radiant-tee-m-purple","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"WS12-L-Blue","id":1555,"status":1,"name":"Radiant Tee-L-Blue","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"50","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","url_key":"radiant-tee-l-blue","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"WS12-L-Orange","id":1556,"status":1,"name":"Radiant Tee-L-Orange","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"56","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","url_key":"radiant-tee-l-orange","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"WS12-L-Purple","id":1557,"status":1,"name":"Radiant Tee-L-Purple","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"57","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","url_key":"radiant-tee-l-purple","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"WS12-XL-Blue","id":1558,"status":1,"name":"Radiant Tee-XL-Blue","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"50","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","url_key":"radiant-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"WS12-XL-Orange","id":1559,"status":1,"name":"Radiant Tee-XL-Orange","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"56","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","url_key":"radiant-tee-xl-orange","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22},{"sku":"WS12-XL-Purple","id":1560,"status":1,"name":"Radiant Tee-XL-Purple","price":22,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"57","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","url_key":"radiant-tee-xl-purple","msrp_display_actual_price_type":"0","final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22}],"configurable_options":[{"id":213,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1561,"attribute_code":"color"},{"id":212,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1561,"attribute_code":"size"}],"color_options":[50,56,57],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-1561.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1638","_score":1,"_source":{"id":1638,"sku":"WB03-XL-Green","name":"Celeste Sports Bra-XL-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"celeste-sports-bra-xl-green-1638","links":{},"stock":{"item_id":1638,"product_id":1638,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xl-green-1638.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1646","_score":1,"_source":{"id":1646,"sku":"WB04-S-Purple","name":"Prima Compete Bra Top-S-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"prima-compete-bra-top-s-purple-1646","links":{},"stock":{"item_id":1646,"product_id":1646,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-s-purple-1646.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1644","_score":1,"_source":{"id":1644,"sku":"WB04-XS-Yellow","name":"Prima Compete Bra Top-XS-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"prima-compete-bra-top-xs-yellow-1644","links":{},"stock":{"item_id":1644,"product_id":1644,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xs-yellow-1644.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1632","_score":1,"_source":{"id":1632,"sku":"WB03-M-Green","name":"Celeste Sports Bra-M-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"celeste-sports-bra-m-green-1632","links":{},"stock":{"item_id":1632,"product_id":1632,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-m-green-1632.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1642","_score":1,"_source":{"id":1642,"sku":"WB04-XS-Blue","name":"Prima Compete Bra Top-XS-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"prima-compete-bra-top-xs-blue-1642","links":{},"stock":{"item_id":1642,"product_id":1642,"stock_id":1,"qty":80,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xs-blue-1642.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1643","_score":1,"_source":{"id":1643,"sku":"WB04-XS-Purple","name":"Prima Compete Bra Top-XS-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"prima-compete-bra-top-xs-purple-1643","links":{},"stock":{"item_id":1643,"product_id":1643,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xs-purple-1643.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1645","_score":1,"_source":{"id":1645,"sku":"WB04-S-Blue","name":"Prima Compete Bra Top-S-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"prima-compete-bra-top-s-blue-1645","links":{},"stock":{"item_id":1645,"product_id":1645,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-s-blue-1645.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1649","_score":1,"_source":{"id":1649,"sku":"WB04-M-Purple","name":"Prima Compete Bra Top-M-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"prima-compete-bra-top-m-purple-1649","links":{},"stock":{"item_id":1649,"product_id":1649,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-m-purple-1649.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1647","_score":1,"_source":{"id":1647,"sku":"WB04-S-Yellow","name":"Prima Compete Bra Top-S-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"prima-compete-bra-top-s-yellow-1647","links":{},"stock":{"item_id":1647,"product_id":1647,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-s-yellow-1647.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1609","_score":1,"_source":{"id":1609,"sku":"WB01","name":"Electra Bra Top","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"electra-bra-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,154,38],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"131","pattern":"197","climate":[205,209],"slug":"electra-bra-top-1609","links":{},"stock":{"item_id":1609,"product_id":1609,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WB01-XS-Black","id":1594,"status":1,"name":"Electra Bra Top-XS-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"167","color":"49","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","url_key":"electra-bra-top-xs-black","msrp_display_actual_price_type":"0"},{"sku":"WB01-XS-Gray","id":1595,"status":1,"name":"Electra Bra Top-XS-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"167","color":"52","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","url_key":"electra-bra-top-xs-gray","msrp_display_actual_price_type":"0"},{"sku":"WB01-XS-Purple","id":1596,"status":1,"name":"Electra Bra Top-XS-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"167","color":"57","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","url_key":"electra-bra-top-xs-purple","msrp_display_actual_price_type":"0"},{"sku":"WB01-S-Black","id":1597,"status":1,"name":"Electra Bra Top-S-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"168","color":"49","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","url_key":"electra-bra-top-s-black","msrp_display_actual_price_type":"0"},{"sku":"WB01-S-Gray","id":1598,"status":1,"name":"Electra Bra Top-S-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"168","color":"52","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","url_key":"electra-bra-top-s-gray","msrp_display_actual_price_type":"0"},{"sku":"WB01-S-Purple","id":1599,"status":1,"name":"Electra Bra Top-S-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"168","color":"57","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","url_key":"electra-bra-top-s-purple","msrp_display_actual_price_type":"0"},{"sku":"WB01-M-Black","id":1600,"status":1,"name":"Electra Bra Top-M-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"169","color":"49","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","url_key":"electra-bra-top-m-black","msrp_display_actual_price_type":"0"},{"sku":"WB01-M-Gray","id":1601,"status":1,"name":"Electra Bra Top-M-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"169","color":"52","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","url_key":"electra-bra-top-m-gray","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB01-M-Purple","id":1602,"status":1,"name":"Electra Bra Top-M-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"169","color":"57","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","url_key":"electra-bra-top-m-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB01-L-Black","id":1603,"status":1,"name":"Electra Bra Top-L-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"170","color":"49","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","url_key":"electra-bra-top-l-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB01-L-Gray","id":1604,"status":1,"name":"Electra Bra Top-L-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"170","color":"52","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","url_key":"electra-bra-top-l-gray","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB01-L-Purple","id":1605,"status":1,"name":"Electra Bra Top-L-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"170","color":"57","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","url_key":"electra-bra-top-l-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB01-XL-Black","id":1606,"status":1,"name":"Electra Bra Top-XL-Black","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"171","color":"49","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","url_key":"electra-bra-top-xl-black","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB01-XL-Gray","id":1607,"status":1,"name":"Electra Bra Top-XL-Gray","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"171","color":"52","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","url_key":"electra-bra-top-xl-gray","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB01-XL-Purple","id":1608,"status":1,"name":"Electra Bra Top-XL-Purple","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","30","36","2"],"size":"171","color":"57","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","url_key":"electra-bra-top-xl-purple","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39}],"configurable_options":[{"id":219,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"}],"product_id":1609,"attribute_code":"color"},{"id":218,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1609,"attribute_code":"size"}],"color_options":[49,52,57],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-1609.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1625","_score":1,"_source":{"id":1625,"sku":"WB02","name":"Erica Evercool Sports Bra","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"erica-evercool-sports-bra","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,149],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"131","pattern":"197","climate":[205,209],"slug":"erica-evercool-sports-bra-1625","links":{},"stock":{"item_id":1625,"product_id":1625,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WB02-XS-Blue","id":1610,"status":1,"name":"Erica Evercool Sports Bra-XS-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"50","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","url_key":"erica-evercool-sports-bra-xs-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-XS-Orange","id":1611,"status":1,"name":"Erica Evercool Sports Bra-XS-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"56","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","url_key":"erica-evercool-sports-bra-xs-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-XS-Yellow","id":1612,"status":1,"name":"Erica Evercool Sports Bra-XS-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"167","color":"60","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","url_key":"erica-evercool-sports-bra-xs-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-S-Blue","id":1613,"status":1,"name":"Erica Evercool Sports Bra-S-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"50","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","url_key":"erica-evercool-sports-bra-s-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-S-Orange","id":1614,"status":1,"name":"Erica Evercool Sports Bra-S-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"56","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","url_key":"erica-evercool-sports-bra-s-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-S-Yellow","id":1615,"status":1,"name":"Erica Evercool Sports Bra-S-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"168","color":"60","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","url_key":"erica-evercool-sports-bra-s-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-M-Blue","id":1616,"status":1,"name":"Erica Evercool Sports Bra-M-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"50","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","url_key":"erica-evercool-sports-bra-m-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-M-Orange","id":1617,"status":1,"name":"Erica Evercool Sports Bra-M-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"56","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","url_key":"erica-evercool-sports-bra-m-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-M-Yellow","id":1618,"status":1,"name":"Erica Evercool Sports Bra-M-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"169","color":"60","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","url_key":"erica-evercool-sports-bra-m-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-L-Blue","id":1619,"status":1,"name":"Erica Evercool Sports Bra-L-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"50","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","url_key":"erica-evercool-sports-bra-l-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-L-Orange","id":1620,"status":1,"name":"Erica Evercool Sports Bra-L-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"56","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","url_key":"erica-evercool-sports-bra-l-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-L-Yellow","id":1621,"status":1,"name":"Erica Evercool Sports Bra-L-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"170","color":"60","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","url_key":"erica-evercool-sports-bra-l-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-XL-Blue","id":1622,"status":1,"name":"Erica Evercool Sports Bra-XL-Blue","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"50","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","url_key":"erica-evercool-sports-bra-xl-blue","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-XL-Orange","id":1623,"status":1,"name":"Erica Evercool Sports Bra-XL-Orange","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"56","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","url_key":"erica-evercool-sports-bra-xl-orange","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB02-XL-Yellow","id":1624,"status":1,"name":"Erica Evercool Sports Bra-XL-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26"],"size":"171","color":"60","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","url_key":"erica-evercool-sports-bra-xl-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39}],"configurable_options":[{"id":221,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1625,"attribute_code":"color"},{"id":220,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1625,"attribute_code":"size"}],"color_options":[50,56,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-1625.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1641","_score":1,"_source":{"id":1641,"sku":"WB03","name":"Celeste Sports Bra","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:21","updated_at":"2019-04-16 07:59:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":9.99,"max_price":9.99,"max_regular_price":9.99,"minimal_regular_price":9.99,"special_price":null,"minimal_price":9.99,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \r\n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","category_ids":[26,8,35,2],"options_container":"container2","required_options":"1","has_options":"1","url_key":"celeste-sports-bra","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":[143,154],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":"131","pattern":"197","climate":[205,209],"slug":"celeste-sports-bra-1641","links":{},"stock":{"item_id":1641,"product_id":1641,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":null,"vid":null},{"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":null,"vid":null}],"configurable_children":[{"sku":"WB03-XS-Green","id":1626,"status":1,"name":"Celeste Sports Bra-XS-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"167","color":"53","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","url_key":"celeste-sports-bra-xs-green","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-XS-Red","id":1627,"status":1,"name":"Celeste Sports Bra-XS-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"167","color":"58","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","url_key":"celeste-sports-bra-xs-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-XS-Yellow","id":1628,"status":1,"name":"Celeste Sports Bra-XS-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"167","color":"60","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","url_key":"celeste-sports-bra-xs-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-S-Green","id":1629,"status":1,"name":"Celeste Sports Bra-S-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"168","color":"53","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","url_key":"celeste-sports-bra-s-green","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-S-Red","id":1630,"status":1,"name":"Celeste Sports Bra-S-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"168","color":"58","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","url_key":"celeste-sports-bra-s-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-S-Yellow","id":1631,"status":1,"name":"Celeste Sports Bra-S-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"168","color":"60","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","url_key":"celeste-sports-bra-s-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-M-Green","id":1632,"status":1,"name":"Celeste Sports Bra-M-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"169","color":"53","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","url_key":"celeste-sports-bra-m-green","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-M-Red","id":1633,"status":1,"name":"Celeste Sports Bra-M-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"169","color":"58","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","url_key":"celeste-sports-bra-m-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-M-Yellow","id":1634,"status":1,"name":"Celeste Sports Bra-M-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"169","color":"60","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","url_key":"celeste-sports-bra-m-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-L-Green","id":1635,"status":1,"name":"Celeste Sports Bra-L-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"0","category_ids":["26","8","35","2"],"size":"170","color":"53","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","url_key":"celeste-sports-bra-l-green","special_price":9.99,"special_from_date":"2019-04-18 00:00:00","msrp_display_actual_price_type":"0","final_price":9.99,"max_price":9.99,"max_regular_price":9.99,"minimal_regular_price":9.99,"minimal_price":9.99,"regular_price":39},{"sku":"WB03-L-Red","id":1636,"status":1,"name":"Celeste Sports Bra-L-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"170","color":"58","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","url_key":"celeste-sports-bra-l-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-L-Yellow","id":1637,"status":1,"name":"Celeste Sports Bra-L-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"170","color":"60","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","url_key":"celeste-sports-bra-l-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-XL-Green","id":1638,"status":1,"name":"Celeste Sports Bra-XL-Green","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"171","color":"53","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","url_key":"celeste-sports-bra-xl-green","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-XL-Red","id":1639,"status":1,"name":"Celeste Sports Bra-XL-Red","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"171","color":"58","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","url_key":"celeste-sports-bra-xl-red","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39},{"sku":"WB03-XL-Yellow","id":1640,"status":1,"name":"Celeste Sports Bra-XL-Yellow","price":39,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["26","8","35","2"],"size":"171","color":"60","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","url_key":"celeste-sports-bra-xl-yellow","msrp_display_actual_price_type":"0","final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39}],"configurable_options":[{"id":314,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":1641,"attribute_code":"color"},{"id":315,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1641,"attribute_code":"size"}],"color_options":[53,58,60],"size_options":[167,168,169,170,171],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-1641.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1532","_score":1,"_source":{"id":1532,"sku":"WS11-XS-Yellow","name":"Diva Gym Tee-XS-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"diva-gym-tee-xs-yellow-1532","links":{},"stock":{"item_id":1532,"product_id":1532,"stock_id":1,"qty":79,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xs-yellow-1532.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1539","_score":1,"_source":{"id":1539,"sku":"WS11-L-Green","name":"Diva Gym Tee-L-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"diva-gym-tee-l-green-1539","links":{},"stock":{"item_id":1539,"product_id":1539,"stock_id":1,"qty":77,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-l-green-1539.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1542","_score":1,"_source":{"id":1542,"sku":"WS11-XL-Green","name":"Diva Gym Tee-XL-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"diva-gym-tee-xl-green-1542","links":{},"stock":{"item_id":1542,"product_id":1542,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xl-green-1542.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1540","_score":1,"_source":{"id":1540,"sku":"WS11-L-Orange","name":"Diva Gym Tee-L-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"diva-gym-tee-l-orange-1540","links":{},"stock":{"item_id":1540,"product_id":1540,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-l-orange-1540.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1549","_score":1,"_source":{"id":1549,"sku":"WS12-S-Blue","name":"Radiant Tee-S-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"radiant-tee-s-blue-1549","links":{},"stock":{"item_id":1549,"product_id":1549,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-07-06 12:24:12","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-s-blue-1549.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1547","_score":1,"_source":{"id":1547,"sku":"WS12-XS-Orange","name":"Radiant Tee-XS-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"radiant-tee-xs-orange-1547","links":{},"stock":{"item_id":1547,"product_id":1547,"stock_id":1,"qty":71,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xs-orange-1547.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1533","_score":1,"_source":{"id":1533,"sku":"WS11-S-Green","name":"Diva Gym Tee-S-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"diva-gym-tee-s-green-1533","links":{},"stock":{"item_id":1533,"product_id":1533,"stock_id":1,"qty":11,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-s-green-1533.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1546","_score":1,"_source":{"id":1546,"sku":"WS12-XS-Blue","name":"Radiant Tee-XS-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"radiant-tee-xs-blue-1546","links":{},"stock":{"item_id":1546,"product_id":1546,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-10 16:42:32","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xs-blue-1546.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1529","_score":1,"_source":{"id":1529,"sku":"WS10","name":"Karissa V-Neck Tee","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"karissa-v-neck-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,153],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"karissa-v-neck-tee-1529","links":{},"stock":{"item_id":1529,"product_id":1529,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS10-XS-Green","id":1514,"status":1,"name":"Karissa V-Neck Tee-XS-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"53","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","url_key":"karissa-v-neck-tee-xs-green","msrp_display_actual_price_type":"0"},{"sku":"WS10-XS-Red","id":1515,"status":1,"name":"Karissa V-Neck Tee-XS-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"58","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","url_key":"karissa-v-neck-tee-xs-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-XS-Yellow","id":1516,"status":1,"name":"Karissa V-Neck Tee-XS-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"167","color":"60","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","url_key":"karissa-v-neck-tee-xs-yellow","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-S-Green","id":1517,"status":1,"name":"Karissa V-Neck Tee-S-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"53","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","url_key":"karissa-v-neck-tee-s-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-S-Red","id":1518,"status":1,"name":"Karissa V-Neck Tee-S-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"58","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","url_key":"karissa-v-neck-tee-s-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-S-Yellow","id":1519,"status":1,"name":"Karissa V-Neck Tee-S-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"168","color":"60","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","url_key":"karissa-v-neck-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-M-Green","id":1520,"status":1,"name":"Karissa V-Neck Tee-M-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"53","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","url_key":"karissa-v-neck-tee-m-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-M-Red","id":1521,"status":1,"name":"Karissa V-Neck Tee-M-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"58","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","url_key":"karissa-v-neck-tee-m-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-M-Yellow","id":1522,"status":1,"name":"Karissa V-Neck Tee-M-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"169","color":"60","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","url_key":"karissa-v-neck-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-L-Green","id":1523,"status":1,"name":"Karissa V-Neck Tee-L-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"53","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","url_key":"karissa-v-neck-tee-l-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-L-Red","id":1524,"status":1,"name":"Karissa V-Neck Tee-L-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"58","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","url_key":"karissa-v-neck-tee-l-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-L-Yellow","id":1525,"status":1,"name":"Karissa V-Neck Tee-L-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"170","color":"60","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","url_key":"karissa-v-neck-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-XL-Green","id":1526,"status":1,"name":"Karissa V-Neck Tee-XL-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"53","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","url_key":"karissa-v-neck-tee-xl-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-XL-Red","id":1527,"status":1,"name":"Karissa V-Neck Tee-XL-Red","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"58","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","url_key":"karissa-v-neck-tee-xl-red","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS10-XL-Yellow","id":1528,"status":1,"name":"Karissa V-Neck Tee-XL-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","35","2"],"size":"171","color":"60","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","url_key":"karissa-v-neck-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32}],"configurable_options":[{"id":209,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":1529,"attribute_code":"color"},{"id":208,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1529,"attribute_code":"size"}],"color_options":[53,58,60],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-1529.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1513","_score":1,"_source":{"id":1513,"sku":"WS09","name":"Tiffany Fitness Tee","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"tiffany-fitness-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"136","pattern":"197","climate":[205,209],"slug":"tiffany-fitness-tee-1513","links":{},"stock":{"item_id":1513,"product_id":1513,"stock_id":1,"qty":2,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS09-XS-Blue","id":1498,"status":1,"name":"Tiffany Fitness Tee-XS-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"167","color":"50","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","url_key":"tiffany-fitness-tee-xs-blue","msrp_display_actual_price_type":"0"},{"sku":"WS09-XS-Red","id":1499,"status":1,"name":"Tiffany Fitness Tee-XS-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"167","color":"58","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","url_key":"tiffany-fitness-tee-xs-red","msrp_display_actual_price_type":"0"},{"sku":"WS09-XS-White","id":1500,"status":1,"name":"Tiffany Fitness Tee-XS-White","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"167","color":"59","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","url_key":"tiffany-fitness-tee-xs-white","msrp_display_actual_price_type":"0"},{"sku":"WS09-S-Blue","id":1501,"status":1,"name":"Tiffany Fitness Tee-S-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"168","color":"50","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","url_key":"tiffany-fitness-tee-s-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS09-S-Red","id":1502,"status":1,"name":"Tiffany Fitness Tee-S-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"168","color":"58","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","url_key":"tiffany-fitness-tee-s-red","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS09-S-White","id":1503,"status":1,"name":"Tiffany Fitness Tee-S-White","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"168","color":"59","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","url_key":"tiffany-fitness-tee-s-white","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS09-M-Blue","id":1504,"status":1,"name":"Tiffany Fitness Tee-M-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"169","color":"50","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","url_key":"tiffany-fitness-tee-m-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS09-M-Red","id":1505,"status":1,"name":"Tiffany Fitness Tee-M-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"169","color":"58","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","url_key":"tiffany-fitness-tee-m-red","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS09-M-White","id":1506,"status":1,"name":"Tiffany Fitness Tee-M-White","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"169","color":"59","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","url_key":"tiffany-fitness-tee-m-white","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS09-L-Blue","id":1507,"status":1,"name":"Tiffany Fitness Tee-L-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"170","color":"50","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","url_key":"tiffany-fitness-tee-l-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS09-L-Red","id":1508,"status":1,"name":"Tiffany Fitness Tee-L-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"170","color":"58","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","url_key":"tiffany-fitness-tee-l-red","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS09-L-White","id":1509,"status":1,"name":"Tiffany Fitness Tee-L-White","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"170","color":"59","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","url_key":"tiffany-fitness-tee-l-white","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS09-XL-Blue","id":1510,"status":1,"name":"Tiffany Fitness Tee-XL-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"171","color":"50","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","url_key":"tiffany-fitness-tee-xl-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS09-XL-Red","id":1511,"status":1,"name":"Tiffany Fitness Tee-XL-Red","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"171","color":"58","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","url_key":"tiffany-fitness-tee-xl-red","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WS09-XL-White","id":1512,"status":1,"name":"Tiffany Fitness Tee-XL-White","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","36","2"],"size":"171","color":"59","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","url_key":"tiffany-fitness-tee-xl-white","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28}],"configurable_options":[{"id":207,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":1513,"attribute_code":"color"},{"id":206,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1513,"attribute_code":"size"}],"color_options":[50,58,59],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-1513.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1545","_score":1,"_source":{"id":1545,"sku":"WS11","name":"Diva Gym Tee","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"diva-gym-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"1","style_general":"136","pattern":"197","climate":[205,209],"slug":"diva-gym-tee-1545","links":{},"stock":{"item_id":1545,"product_id":1545,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WS11-XS-Green","id":1530,"status":1,"name":"Diva Gym Tee-XS-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"167","color":"53","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","url_key":"diva-gym-tee-xs-green","msrp_display_actual_price_type":"0"},{"sku":"WS11-XS-Orange","id":1531,"status":1,"name":"Diva Gym Tee-XS-Orange","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"167","color":"56","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","url_key":"diva-gym-tee-xs-orange","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS11-XS-Yellow","id":1532,"status":1,"name":"Diva Gym Tee-XS-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"167","color":"60","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","url_key":"diva-gym-tee-xs-yellow","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS11-S-Green","id":1533,"status":1,"name":"Diva Gym Tee-S-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"168","color":"53","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","url_key":"diva-gym-tee-s-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS11-S-Orange","id":1534,"status":1,"name":"Diva Gym Tee-S-Orange","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"168","color":"56","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","url_key":"diva-gym-tee-s-orange","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS11-S-Yellow","id":1535,"status":1,"name":"Diva Gym Tee-S-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"168","color":"60","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","url_key":"diva-gym-tee-s-yellow","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS11-M-Green","id":1536,"status":1,"name":"Diva Gym Tee-M-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"169","color":"53","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","url_key":"diva-gym-tee-m-green","msrp_display_actual_price_type":"0"},{"sku":"WS11-M-Orange","id":1537,"status":1,"name":"Diva Gym Tee-M-Orange","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"169","color":"56","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","url_key":"diva-gym-tee-m-orange","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS11-M-Yellow","id":1538,"status":1,"name":"Diva Gym Tee-M-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"169","color":"60","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","url_key":"diva-gym-tee-m-yellow","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS11-L-Green","id":1539,"status":1,"name":"Diva Gym Tee-L-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"170","color":"53","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","url_key":"diva-gym-tee-l-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS11-L-Orange","id":1540,"status":1,"name":"Diva Gym Tee-L-Orange","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"170","color":"56","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","url_key":"diva-gym-tee-l-orange","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS11-L-Yellow","id":1541,"status":1,"name":"Diva Gym Tee-L-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"170","color":"60","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","url_key":"diva-gym-tee-l-yellow","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS11-XL-Green","id":1542,"status":1,"name":"Diva Gym Tee-XL-Green","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"171","color":"53","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","url_key":"diva-gym-tee-xl-green","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS11-XL-Orange","id":1543,"status":1,"name":"Diva Gym Tee-XL-Orange","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"171","color":"56","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","url_key":"diva-gym-tee-xl-orange","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32},{"sku":"WS11-XL-Yellow","id":1544,"status":1,"name":"Diva Gym Tee-XL-Yellow","price":32,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["25","33","30","34","2"],"size":"171","color":"60","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","url_key":"diva-gym-tee-xl-yellow","msrp_display_actual_price_type":"0","final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32}],"configurable_options":[{"id":211,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1545,"attribute_code":"color"},{"id":210,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1545,"attribute_code":"size"}],"color_options":[53,56,60],"size_options":[167,168,169,170,171],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-1545.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1623","_score":1,"_source":{"id":1623,"sku":"WB02-XL-Orange","name":"Erica Evercool Sports Bra-XL-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erica-evercool-sports-bra-xl-orange-1623","links":{},"stock":{"item_id":1623,"product_id":1623,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xl-orange-1623.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1626","_score":1,"_source":{"id":1626,"sku":"WB03-XS-Green","name":"Celeste Sports Bra-XS-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"celeste-sports-bra-xs-green-1626","links":{},"stock":{"item_id":1626,"product_id":1626,"stock_id":1,"qty":73,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xs-green-1626.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1615","_score":1,"_source":{"id":1615,"sku":"WB02-S-Yellow","name":"Erica Evercool Sports Bra-S-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erica-evercool-sports-bra-s-yellow-1615","links":{},"stock":{"item_id":1615,"product_id":1615,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-s-yellow-1615.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1636","_score":1,"_source":{"id":1636,"sku":"WB03-L-Red","name":"Celeste Sports Bra-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"celeste-sports-bra-l-red-1636","links":{},"stock":{"item_id":1636,"product_id":1636,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-l-red-1636.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1612","_score":1,"_source":{"id":1612,"sku":"WB02-XS-Yellow","name":"Erica Evercool Sports Bra-XS-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erica-evercool-sports-bra-xs-yellow-1612","links":{},"stock":{"item_id":1612,"product_id":1612,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xs-yellow-1612.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1606","_score":1,"_source":{"id":1606,"sku":"WB01-XL-Black","name":"Electra Bra Top-XL-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"electra-bra-top-xl-black-1606","links":{},"stock":{"item_id":1606,"product_id":1606,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xl-black-1606.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1631","_score":1,"_source":{"id":1631,"sku":"WB03-S-Yellow","name":"Celeste Sports Bra-S-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"celeste-sports-bra-s-yellow-1631","links":{},"stock":{"item_id":1631,"product_id":1631,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-s-yellow-1631.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1628","_score":1,"_source":{"id":1628,"sku":"WB03-XS-Yellow","name":"Celeste Sports Bra-XS-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"celeste-sports-bra-xs-yellow-1628","links":{},"stock":{"item_id":1628,"product_id":1628,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xs-yellow-1628.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1619","_score":1,"_source":{"id":1619,"sku":"WB02-L-Blue","name":"Erica Evercool Sports Bra-L-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erica-evercool-sports-bra-l-blue-1619","links":{},"stock":{"item_id":1619,"product_id":1619,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-l-blue-1619.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1611","_score":1,"_source":{"id":1611,"sku":"WB02-XS-Orange","name":"Erica Evercool Sports Bra-XS-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erica-evercool-sports-bra-xs-orange-1611","links":{},"stock":{"item_id":1611,"product_id":1611,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xs-orange-1611.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1616","_score":1,"_source":{"id":1616,"sku":"WB02-M-Blue","name":"Erica Evercool Sports Bra-M-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erica-evercool-sports-bra-m-blue-1616","links":{},"stock":{"item_id":1616,"product_id":1616,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-m-blue-1616.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1630","_score":1,"_source":{"id":1630,"sku":"WB03-S-Red","name":"Celeste Sports Bra-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"celeste-sports-bra-s-red-1630","links":{},"stock":{"item_id":1630,"product_id":1630,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-s-red-1630.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1610","_score":1,"_source":{"id":1610,"sku":"WB02-XS-Blue","name":"Erica Evercool Sports Bra-XS-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erica-evercool-sports-bra-xs-blue-1610","links":{},"stock":{"item_id":1610,"product_id":1610,"stock_id":1,"qty":77,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xs-blue-1610.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1637","_score":1,"_source":{"id":1637,"sku":"WB03-L-Yellow","name":"Celeste Sports Bra-L-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2019-04-15 12:13:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \r\n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-l-yellow","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"170","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"celeste-sports-bra-l-yellow-1637","links":{},"stock":{"item_id":1637,"product_id":1637,"stock_id":1,"qty":7,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-l-yellow-1637.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1621","_score":1,"_source":{"id":1621,"sku":"WB02-L-Yellow","name":"Erica Evercool Sports Bra-L-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erica-evercool-sports-bra-l-yellow-1621","links":{},"stock":{"item_id":1621,"product_id":1621,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-l-yellow-1621.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1620","_score":1,"_source":{"id":1620,"sku":"WB02-L-Orange","name":"Erica Evercool Sports Bra-L-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erica-evercool-sports-bra-l-orange-1620","links":{},"stock":{"item_id":1620,"product_id":1620,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-l-orange-1620.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1617","_score":1,"_source":{"id":1617,"sku":"WB02-M-Orange","name":"Erica Evercool Sports Bra-M-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erica-evercool-sports-bra-m-orange-1617","links":{},"stock":{"item_id":1617,"product_id":1617,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-m-orange-1617.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1613","_score":1,"_source":{"id":1613,"sku":"WB02-S-Blue","name":"Erica Evercool Sports Bra-S-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erica-evercool-sports-bra-s-blue-1613","links":{},"stock":{"item_id":1613,"product_id":1613,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-s-blue-1613.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1624","_score":1,"_source":{"id":1624,"sku":"WB02-XL-Yellow","name":"Erica Evercool Sports Bra-XL-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erica-evercool-sports-bra-xl-yellow-1624","links":{},"stock":{"item_id":1624,"product_id":1624,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xl-yellow-1624.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1614","_score":1,"_source":{"id":1614,"sku":"WB02-S-Orange","name":"Erica Evercool Sports Bra-S-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erica-evercool-sports-bra-s-orange-1614","links":{},"stock":{"item_id":1614,"product_id":1614,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-s-orange-1614.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1608","_score":1,"_source":{"id":1608,"sku":"WB01-XL-Purple","name":"Electra Bra Top-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"electra-bra-top-xl-purple-1608","links":{},"stock":{"item_id":1608,"product_id":1608,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xl-purple-1608.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1622","_score":1,"_source":{"id":1622,"sku":"WB02-XL-Blue","name":"Erica Evercool Sports Bra-XL-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erica-evercool-sports-bra-xl-blue-1622","links":{},"stock":{"item_id":1622,"product_id":1622,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xl-blue-1622.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1633","_score":1,"_source":{"id":1633,"sku":"WB03-M-Red","name":"Celeste Sports Bra-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"celeste-sports-bra-m-red-1633","links":{},"stock":{"item_id":1633,"product_id":1633,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-m-red-1633.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1627","_score":1,"_source":{"id":1627,"sku":"WB03-XS-Red","name":"Celeste Sports Bra-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"celeste-sports-bra-xs-red-1627","links":{},"stock":{"item_id":1627,"product_id":1627,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xs-red-1627.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1605","_score":1,"_source":{"id":1605,"sku":"WB01-L-Purple","name":"Electra Bra Top-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"electra-bra-top-l-purple-1605","links":{},"stock":{"item_id":1605,"product_id":1605,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-l-purple-1605.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1629","_score":1,"_source":{"id":1629,"sku":"WB03-S-Green","name":"Celeste Sports Bra-S-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"celeste-sports-bra-s-green-1629","links":{},"stock":{"item_id":1629,"product_id":1629,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-s-green-1629.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1648","_score":1,"_source":{"id":1648,"sku":"WB04-M-Blue","name":"Prima Compete Bra Top-M-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"prima-compete-bra-top-m-blue-1648","links":{},"stock":{"item_id":1648,"product_id":1648,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-m-blue-1648.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1640","_score":1,"_source":{"id":1640,"sku":"WB03-XL-Yellow","name":"Celeste Sports Bra-XL-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"celeste-sports-bra-xl-yellow-1640","links":{},"stock":{"item_id":1640,"product_id":1640,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xl-yellow-1640.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1639","_score":1,"_source":{"id":1639,"sku":"WB03-XL-Red","name":"Celeste Sports Bra-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"celeste-sports-bra-xl-red-1639","links":{},"stock":{"item_id":1639,"product_id":1639,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xl-red-1639.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1634","_score":1,"_source":{"id":1634,"sku":"WB03-M-Yellow","name":"Celeste Sports Bra-M-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"celeste-sports-bra-m-yellow-1634","links":{},"stock":{"item_id":1634,"product_id":1634,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-m-yellow-1634.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1635","_score":1,"_source":{"id":1635,"sku":"WB03-L-Green","name":"Celeste Sports Bra-L-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2019-04-18 09:54:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":9.99,"max_price":9.99,"max_regular_price":9.99,"minimal_regular_price":9.99,"special_price":"9.9900","minimal_price":9.99,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \r\n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","special_from_date":"2019-04-18 00:00:00","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-l-green","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"0","size":"170","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"celeste-sports-bra-l-green-1635","links":{},"stock":{"item_id":1635,"product_id":1635,"stock_id":1,"qty":9,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":null,"vid":null},{"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-l-green-1635.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1650","_score":1,"_source":{"id":1650,"sku":"WB04-M-Yellow","name":"Prima Compete Bra Top-M-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"prima-compete-bra-top-m-yellow-1650","links":{},"stock":{"item_id":1650,"product_id":1650,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-m-yellow-1650.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1551","_score":1,"_source":{"id":1551,"sku":"WS12-S-Purple","name":"Radiant Tee-S-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"radiant-tee-s-purple-1551","links":{},"stock":{"item_id":1551,"product_id":1551,"stock_id":1,"qty":73,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-s-purple-1551.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1565","_score":1,"_source":{"id":1565,"sku":"WS01-S-Black","name":"Gwyn Endurance Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gwyn-endurance-tee-s-black-1565","links":{},"stock":{"item_id":1565,"product_id":1565,"stock_id":1,"qty":8,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-s-black-1565.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1554","_score":1,"_source":{"id":1554,"sku":"WS12-M-Purple","name":"Radiant Tee-M-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"radiant-tee-m-purple-1554","links":{},"stock":{"item_id":1554,"product_id":1554,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-m-purple-1554.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1568","_score":1,"_source":{"id":1568,"sku":"WS01-M-Black","name":"Gwyn Endurance Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gwyn-endurance-tee-m-black-1568","links":{},"stock":{"item_id":1568,"product_id":1568,"stock_id":1,"qty":24,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-m-black-1568.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1553","_score":1,"_source":{"id":1553,"sku":"WS12-M-Orange","name":"Radiant Tee-M-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"radiant-tee-m-orange-1553","links":{},"stock":{"item_id":1553,"product_id":1553,"stock_id":1,"qty":74,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-m-orange-1553.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1558","_score":1,"_source":{"id":1558,"sku":"WS12-XL-Blue","name":"Radiant Tee-XL-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"radiant-tee-xl-blue-1558","links":{},"stock":{"item_id":1558,"product_id":1558,"stock_id":1,"qty":69,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xl-blue-1558.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1563","_score":1,"_source":{"id":1563,"sku":"WS01-XS-Green","name":"Gwyn Endurance Tee-XS-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gwyn-endurance-tee-xs-green-1563","links":{},"stock":{"item_id":1563,"product_id":1563,"stock_id":1,"qty":46,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xs-green-1563.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1555","_score":1,"_source":{"id":1555,"sku":"WS12-L-Blue","name":"Radiant Tee-L-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"radiant-tee-l-blue-1555","links":{},"stock":{"item_id":1555,"product_id":1555,"stock_id":1,"qty":73,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-l-blue-1555.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1556","_score":1,"_source":{"id":1556,"sku":"WS12-L-Orange","name":"Radiant Tee-L-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"radiant-tee-l-orange-1556","links":{},"stock":{"item_id":1556,"product_id":1556,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-l-orange-1556.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1564","_score":1,"_source":{"id":1564,"sku":"WS01-XS-Yellow","name":"Gwyn Endurance Tee-XS-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gwyn-endurance-tee-xs-yellow-1564","links":{},"stock":{"item_id":1564,"product_id":1564,"stock_id":1,"qty":16,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xs-yellow-1564.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1569","_score":1,"_source":{"id":1569,"sku":"WS01-M-Green","name":"Gwyn Endurance Tee-M-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gwyn-endurance-tee-m-green-1569","links":{},"stock":{"item_id":1569,"product_id":1569,"stock_id":1,"qty":54,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-m-green-1569.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1566","_score":1,"_source":{"id":1566,"sku":"WS01-S-Green","name":"Gwyn Endurance Tee-S-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gwyn-endurance-tee-s-green-1566","links":{},"stock":{"item_id":1566,"product_id":1566,"stock_id":1,"qty":53,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-s-green-1566.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1570","_score":1,"_source":{"id":1570,"sku":"WS01-M-Yellow","name":"Gwyn Endurance Tee-M-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2019-06-18 10:57:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \r\n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-m-yellow","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"169","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"gwyn-endurance-tee-m-yellow-1570","links":{},"stock":{"item_id":1570,"product_id":1570,"stock_id":1,"qty":26,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-m-yellow-1570.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1572","_score":1,"_source":{"id":1572,"sku":"WS01-L-Green","name":"Gwyn Endurance Tee-L-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gwyn-endurance-tee-l-green-1572","links":{},"stock":{"item_id":1572,"product_id":1572,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-l-green-1572.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1562","_score":1,"_source":{"id":1562,"sku":"WS01-XS-Black","name":"Gwyn Endurance Tee-XS-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gwyn-endurance-tee-xs-black-1562","links":{},"stock":{"item_id":1562,"product_id":1562,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-29 15:00:20","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xs-black-1562.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1557","_score":1,"_source":{"id":1557,"sku":"WS12-L-Purple","name":"Radiant Tee-L-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"radiant-tee-l-purple-1557","links":{},"stock":{"item_id":1557,"product_id":1557,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-l-purple-1557.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1580","_score":1,"_source":{"id":1580,"sku":"WS05-XS-Yellow","name":"Desiree Fitness Tee-XS-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"desiree-fitness-tee-xs-yellow-1580","links":{},"stock":{"item_id":1580,"product_id":1580,"stock_id":1,"qty":2,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xs-yellow-1580.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1575","_score":1,"_source":{"id":1575,"sku":"WS01-XL-Green","name":"Gwyn Endurance Tee-XL-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gwyn-endurance-tee-xl-green-1575","links":{},"stock":{"item_id":1575,"product_id":1575,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xl-green-1575.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1559","_score":1,"_source":{"id":1559,"sku":"WS12-XL-Orange","name":"Radiant Tee-XL-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"radiant-tee-xl-orange-1559","links":{},"stock":{"item_id":1559,"product_id":1559,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xl-orange-1559.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1578","_score":1,"_source":{"id":1578,"sku":"WS05-XS-Black","name":"Desiree Fitness Tee-XS-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"desiree-fitness-tee-xs-black-1578","links":{},"stock":{"item_id":1578,"product_id":1578,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-07 12:11:20","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xs-black-1578.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1584","_score":1,"_source":{"id":1584,"sku":"WS05-M-Black","name":"Desiree Fitness Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"desiree-fitness-tee-m-black-1584","links":{},"stock":{"item_id":1584,"product_id":1584,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-07-22 07:24:29","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-m-black-1584.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1573","_score":1,"_source":{"id":1573,"sku":"WS01-L-Yellow","name":"Gwyn Endurance Tee-L-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2019-05-13 09:57:42","weight":1,"product_links":[],"tier_prices":[{"customer_group_id":0,"qty":2,"value":22,"extension_attributes":{"website_id":0}}],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":"20.0000","minimal_price":20,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \r\n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","special_from_date":"2019-05-13 00:00:00","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-l-yellow","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"170","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"gwyn-endurance-tee-l-yellow-1573","links":{},"stock":{"item_id":1573,"product_id":1573,"stock_id":1,"qty":66,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":null,"vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-l-yellow-1573.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1552","_score":1,"_source":{"id":1552,"sku":"WS12-M-Blue","name":"Radiant Tee-M-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"radiant-tee-m-blue-1552","links":{},"stock":{"item_id":1552,"product_id":1552,"stock_id":1,"qty":37,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-m-blue-1552.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1560","_score":1,"_source":{"id":1560,"sku":"WS12-XL-Purple","name":"Radiant Tee-XL-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"radiant-tee-xl-purple-1560","links":{},"stock":{"item_id":1560,"product_id":1560,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xl-purple-1560.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1595","_score":1,"_source":{"id":1595,"sku":"WB01-XS-Gray","name":"Electra Bra Top-XS-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"electra-bra-top-xs-gray-1595","links":{},"stock":{"item_id":1595,"product_id":1595,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xs-gray-1595.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1567","_score":1,"_source":{"id":1567,"sku":"WS01-S-Yellow","name":"Gwyn Endurance Tee-S-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gwyn-endurance-tee-s-yellow-1567","links":{},"stock":{"item_id":1567,"product_id":1567,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-s-yellow-1567.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1574","_score":1,"_source":{"id":1574,"sku":"WS01-XL-Black","name":"Gwyn Endurance Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gwyn-endurance-tee-xl-black-1574","links":{},"stock":{"item_id":1574,"product_id":1574,"stock_id":1,"qty":54,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xl-black-1574.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1588","_score":1,"_source":{"id":1588,"sku":"WS05-L-Orange","name":"Desiree Fitness Tee-L-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"desiree-fitness-tee-l-orange-1588","links":{},"stock":{"item_id":1588,"product_id":1588,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-l-orange-1588.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1571","_score":1,"_source":{"id":1571,"sku":"WS01-L-Black","name":"Gwyn Endurance Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gwyn-endurance-tee-l-black-1571","links":{},"stock":{"item_id":1571,"product_id":1571,"stock_id":1,"qty":59,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-l-black-1571.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1579","_score":1,"_source":{"id":1579,"sku":"WS05-XS-Orange","name":"Desiree Fitness Tee-XS-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"desiree-fitness-tee-xs-orange-1579","links":{},"stock":{"item_id":1579,"product_id":1579,"stock_id":1,"qty":51,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xs-orange-1579.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1509","_score":1,"_source":{"id":1509,"sku":"WS09-L-White","name":"Tiffany Fitness Tee-L-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tiffany-fitness-tee-l-white-1509","links":{},"stock":{"item_id":1509,"product_id":1509,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-l-white-1509.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1503","_score":1,"_source":{"id":1503,"sku":"WS09-S-White","name":"Tiffany Fitness Tee-S-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tiffany-fitness-tee-s-white-1503","links":{},"stock":{"item_id":1503,"product_id":1503,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-s-white-1503.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1504","_score":1,"_source":{"id":1504,"sku":"WS09-M-Blue","name":"Tiffany Fitness Tee-M-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tiffany-fitness-tee-m-blue-1504","links":{},"stock":{"item_id":1504,"product_id":1504,"stock_id":1,"qty":54,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-m-blue-1504.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1507","_score":1,"_source":{"id":1507,"sku":"WS09-L-Blue","name":"Tiffany Fitness Tee-L-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tiffany-fitness-tee-l-blue-1507","links":{},"stock":{"item_id":1507,"product_id":1507,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-l-blue-1507.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1523","_score":1,"_source":{"id":1523,"sku":"WS10-L-Green","name":"Karissa V-Neck Tee-L-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"karissa-v-neck-tee-l-green-1523","links":{},"stock":{"item_id":1523,"product_id":1523,"stock_id":1,"qty":61,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-l-green-1523.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1501","_score":1,"_source":{"id":1501,"sku":"WS09-S-Blue","name":"Tiffany Fitness Tee-S-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tiffany-fitness-tee-s-blue-1501","links":{},"stock":{"item_id":1501,"product_id":1501,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-s-blue-1501.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1505","_score":1,"_source":{"id":1505,"sku":"WS09-M-Red","name":"Tiffany Fitness Tee-M-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tiffany-fitness-tee-m-red-1505","links":{},"stock":{"item_id":1505,"product_id":1505,"stock_id":1,"qty":44,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-m-red-1505.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1544","_score":1,"_source":{"id":1544,"sku":"WS11-XL-Yellow","name":"Diva Gym Tee-XL-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"diva-gym-tee-xl-yellow-1544","links":{},"stock":{"item_id":1544,"product_id":1544,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xl-yellow-1544.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1528","_score":1,"_source":{"id":1528,"sku":"WS10-XL-Yellow","name":"Karissa V-Neck Tee-XL-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"karissa-v-neck-tee-xl-yellow-1528","links":{},"stock":{"item_id":1528,"product_id":1528,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xl-yellow-1528.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1520","_score":1,"_source":{"id":1520,"sku":"WS10-M-Green","name":"Karissa V-Neck Tee-M-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"karissa-v-neck-tee-m-green-1520","links":{},"stock":{"item_id":1520,"product_id":1520,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-m-green-1520.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1527","_score":1,"_source":{"id":1527,"sku":"WS10-XL-Red","name":"Karissa V-Neck Tee-XL-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"karissa-v-neck-tee-xl-red-1527","links":{},"stock":{"item_id":1527,"product_id":1527,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xl-red-1527.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1535","_score":1,"_source":{"id":1535,"sku":"WS11-S-Yellow","name":"Diva Gym Tee-S-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"diva-gym-tee-s-yellow-1535","links":{},"stock":{"item_id":1535,"product_id":1535,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-s-yellow-1535.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1531","_score":1,"_source":{"id":1531,"sku":"WS11-XS-Orange","name":"Diva Gym Tee-XS-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"diva-gym-tee-xs-orange-1531","links":{},"stock":{"item_id":1531,"product_id":1531,"stock_id":1,"qty":45,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xs-orange-1531.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1521","_score":1,"_source":{"id":1521,"sku":"WS10-M-Red","name":"Karissa V-Neck Tee-M-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"karissa-v-neck-tee-m-red-1521","links":{},"stock":{"item_id":1521,"product_id":1521,"stock_id":1,"qty":41,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-m-red-1521.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1512","_score":1,"_source":{"id":1512,"sku":"WS09-XL-White","name":"Tiffany Fitness Tee-XL-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tiffany-fitness-tee-xl-white-1512","links":{},"stock":{"item_id":1512,"product_id":1512,"stock_id":1,"qty":39,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xl-white-1512.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1550","_score":1,"_source":{"id":1550,"sku":"WS12-S-Orange","name":"Radiant Tee-S-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"radiant-tee-s-orange-1550","links":{},"stock":{"item_id":1550,"product_id":1550,"stock_id":1,"qty":66,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-s-orange-1550.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1541","_score":1,"_source":{"id":1541,"sku":"WS11-L-Yellow","name":"Diva Gym Tee-L-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"diva-gym-tee-l-yellow-1541","links":{},"stock":{"item_id":1541,"product_id":1541,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-l-yellow-1541.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1519","_score":1,"_source":{"id":1519,"sku":"WS10-S-Yellow","name":"Karissa V-Neck Tee-S-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"karissa-v-neck-tee-s-yellow-1519","links":{},"stock":{"item_id":1519,"product_id":1519,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-s-yellow-1519.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1510","_score":1,"_source":{"id":1510,"sku":"WS09-XL-Blue","name":"Tiffany Fitness Tee-XL-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tiffany-fitness-tee-xl-blue-1510","links":{},"stock":{"item_id":1510,"product_id":1510,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xl-blue-1510.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1536","_score":1,"_source":{"id":1536,"sku":"WS11-M-Green","name":"Diva Gym Tee-M-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"diva-gym-tee-m-green-1536","links":{},"stock":{"item_id":1536,"product_id":1536,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-08-07 19:27:21","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-m-green-1536.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1530","_score":1,"_source":{"id":1530,"sku":"WS11-XS-Green","name":"Diva Gym Tee-XS-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"diva-gym-tee-xs-green-1530","links":{},"stock":{"item_id":1530,"product_id":1530,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-29 11:29:03","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xs-green-1530.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1524","_score":1,"_source":{"id":1524,"sku":"WS10-L-Red","name":"Karissa V-Neck Tee-L-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"karissa-v-neck-tee-l-red-1524","links":{},"stock":{"item_id":1524,"product_id":1524,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-l-red-1524.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1526","_score":1,"_source":{"id":1526,"sku":"WS10-XL-Green","name":"Karissa V-Neck Tee-XL-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"karissa-v-neck-tee-xl-green-1526","links":{},"stock":{"item_id":1526,"product_id":1526,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xl-green-1526.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1538","_score":1,"_source":{"id":1538,"sku":"WS11-M-Yellow","name":"Diva Gym Tee-M-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"diva-gym-tee-m-yellow-1538","links":{},"stock":{"item_id":1538,"product_id":1538,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-m-yellow-1538.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1548","_score":1,"_source":{"id":1548,"sku":"WS12-XS-Purple","name":"Radiant Tee-XS-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"radiant-tee-xs-purple-1548","links":{},"stock":{"item_id":1548,"product_id":1548,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xs-purple-1548.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1537","_score":1,"_source":{"id":1537,"sku":"WS11-M-Orange","name":"Diva Gym Tee-M-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"diva-gym-tee-m-orange-1537","links":{},"stock":{"item_id":1537,"product_id":1537,"stock_id":1,"qty":65,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-m-orange-1537.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1543","_score":1,"_source":{"id":1543,"sku":"WS11-XL-Orange","name":"Diva Gym Tee-XL-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"diva-gym-tee-xl-orange-1543","links":{},"stock":{"item_id":1543,"product_id":1543,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xl-orange-1543.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1534","_score":1,"_source":{"id":1534,"sku":"WS11-S-Orange","name":"Diva Gym Tee-S-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"diva-gym-tee-s-orange-1534","links":{},"stock":{"item_id":1534,"product_id":1534,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-s-orange-1534.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1516","_score":1,"_source":{"id":1516,"sku":"WS10-XS-Yellow","name":"Karissa V-Neck Tee-XS-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"karissa-v-neck-tee-xs-yellow-1516","links":{},"stock":{"item_id":1516,"product_id":1516,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xs-yellow-1516.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1525","_score":1,"_source":{"id":1525,"sku":"WS10-L-Yellow","name":"Karissa V-Neck Tee-L-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"karissa-v-neck-tee-l-yellow-1525","links":{},"stock":{"item_id":1525,"product_id":1525,"stock_id":1,"qty":78,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-l-yellow-1525.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1506","_score":1,"_source":{"id":1506,"sku":"WS09-M-White","name":"Tiffany Fitness Tee-M-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tiffany-fitness-tee-m-white-1506","links":{},"stock":{"item_id":1506,"product_id":1506,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-m-white-1506.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1517","_score":1,"_source":{"id":1517,"sku":"WS10-S-Green","name":"Karissa V-Neck Tee-S-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"karissa-v-neck-tee-s-green-1517","links":{},"stock":{"item_id":1517,"product_id":1517,"stock_id":1,"qty":58,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-s-green-1517.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1515","_score":1,"_source":{"id":1515,"sku":"WS10-XS-Red","name":"Karissa V-Neck Tee-XS-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"karissa-v-neck-tee-xs-red-1515","links":{},"stock":{"item_id":1515,"product_id":1515,"stock_id":1,"qty":42,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xs-red-1515.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1514","_score":1,"_source":{"id":1514,"sku":"WS10-XS-Green","name":"Karissa V-Neck Tee-XS-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"karissa-v-neck-tee-xs-green-1514","links":{},"stock":{"item_id":1514,"product_id":1514,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-28 11:56:40","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xs-green-1514.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1511","_score":1,"_source":{"id":1511,"sku":"WS09-XL-Red","name":"Tiffany Fitness Tee-XL-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tiffany-fitness-tee-xl-red-1511","links":{},"stock":{"item_id":1511,"product_id":1511,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xl-red-1511.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1502","_score":1,"_source":{"id":1502,"sku":"WS09-S-Red","name":"Tiffany Fitness Tee-S-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tiffany-fitness-tee-s-red-1502","links":{},"stock":{"item_id":1502,"product_id":1502,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-s-red-1502.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1522","_score":1,"_source":{"id":1522,"sku":"WS10-M-Yellow","name":"Karissa V-Neck Tee-M-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"karissa-v-neck-tee-m-yellow-1522","links":{},"stock":{"item_id":1522,"product_id":1522,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-m-yellow-1522.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1603","_score":1,"_source":{"id":1603,"sku":"WB01-L-Black","name":"Electra Bra Top-L-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"electra-bra-top-l-black-1603","links":{},"stock":{"item_id":1603,"product_id":1603,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-l-black-1603.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1604","_score":1,"_source":{"id":1604,"sku":"WB01-L-Gray","name":"Electra Bra Top-L-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"electra-bra-top-l-gray-1604","links":{},"stock":{"item_id":1604,"product_id":1604,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-l-gray-1604.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1602","_score":1,"_source":{"id":1602,"sku":"WB01-M-Purple","name":"Electra Bra Top-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"electra-bra-top-m-purple-1602","links":{},"stock":{"item_id":1602,"product_id":1602,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-m-purple-1602.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1618","_score":1,"_source":{"id":1618,"sku":"WB02-M-Yellow","name":"Erica Evercool Sports Bra-M-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erica-evercool-sports-bra-m-yellow-1618","links":{},"stock":{"item_id":1618,"product_id":1618,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-m-yellow-1618.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1607","_score":1,"_source":{"id":1607,"sku":"WB01-XL-Gray","name":"Electra Bra Top-XL-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"electra-bra-top-xl-gray-1607","links":{},"stock":{"item_id":1607,"product_id":1607,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xl-gray-1607.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1601","_score":1,"_source":{"id":1601,"sku":"WB01-M-Gray","name":"Electra Bra Top-M-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"electra-bra-top-m-gray-1601","links":{},"stock":{"item_id":1601,"product_id":1601,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26","path":"women/tops-women/tanks-women/bras-and-tanks-26"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-m-gray-1601.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1518","_score":1,"_source":{"id":1518,"sku":"WS10-S-Red","name":"Karissa V-Neck Tee-S-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"karissa-v-neck-tee-s-red-1518","links":{},"stock":{"item_id":1518,"product_id":1518,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-s-red-1518.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1508","_score":1,"_source":{"id":1508,"sku":"WS09-L-Red","name":"Tiffany Fitness Tee-L-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tiffany-fitness-tee-l-red-1508","links":{},"stock":{"item_id":1508,"product_id":1508,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-l-red-1508.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1918","_score":1,"_source":{"id":1918,"sku":"WSH01-31-Black","name":"Fiona Fitness Short-31-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                            \n

                            • Black run shorts
                            - cotton/spandex.
                            • 5” inseam.
                            • Machine wash/Line dry.

                            ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-31-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"fiona-fitness-short-31-black-1918","links":{},"stock":{"item_id":1918,"product_id":1918,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-31-black-1918.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1931","_score":1,"_source":{"id":1931,"sku":"WSH02-30-Gray","name":"Maxima Drawstring Short-30-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                            \n

                            • Light gray run shorts
                            - cotton polyester.
                            • Contrast binding.
                            • 3\" inseam.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-30-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"maxima-drawstring-short-30-gray-1931","links":{},"stock":{"item_id":1931,"product_id":1931,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-30-gray-1931.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1913","_score":1,"_source":{"id":1913,"sku":"WSH01-29-Green","name":"Fiona Fitness Short-29-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                            \n

                            • Black run shorts
                            - cotton/spandex.
                            • 5” inseam.
                            • Machine wash/Line dry.

                            ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"fiona-fitness-short-29-green-1913","links":{},"stock":{"item_id":1913,"product_id":1913,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-29-green-1913.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1909","_score":1,"_source":{"id":1909,"sku":"WSH01-28-Black","name":"Fiona Fitness Short-28-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                            \n

                            • Black run shorts
                            - cotton/spandex.
                            • 5” inseam.
                            • Machine wash/Line dry.

                            ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"fiona-fitness-short-28-black-1909","links":{},"stock":{"item_id":1909,"product_id":1909,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-28-black-1909.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1922","_score":1,"_source":{"id":1922,"sku":"WSH01-32-Green","name":"Fiona Fitness Short-32-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                            \n

                            • Black run shorts
                            - cotton/spandex.
                            • 5” inseam.
                            • Machine wash/Line dry.

                            ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"fiona-fitness-short-32-green-1922","links":{},"stock":{"item_id":1922,"product_id":1922,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-32-green-1922.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1942","_score":1,"_source":{"id":1942,"sku":"WSH03-28-Gray","name":"Gwen Drawstring Bike Short-28-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                            For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                            \n

                            • Dark heather gray rouched bike shorts.
                            • Fitted. Inseam: 2\".
                            • Machine wash/dry.

                            ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"gwen-drawstring-bike-short-28-gray-1942","links":{},"stock":{"item_id":1942,"product_id":1942,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-28-gray-1942.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1933","_score":1,"_source":{"id":1933,"sku":"WSH02-30-Yellow","name":"Maxima Drawstring Short-30-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                            \n

                            • Light gray run shorts
                            - cotton polyester.
                            • Contrast binding.
                            • 3\" inseam.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-30-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"maxima-drawstring-short-30-yellow-1933","links":{},"stock":{"item_id":1933,"product_id":1933,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-30-yellow-1933.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1919","_score":1,"_source":{"id":1919,"sku":"WSH01-31-Green","name":"Fiona Fitness Short-31-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                            \n

                            • Black run shorts
                            - cotton/spandex.
                            • 5” inseam.
                            • Machine wash/Line dry.

                            ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-31-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"fiona-fitness-short-31-green-1919","links":{},"stock":{"item_id":1919,"product_id":1919,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-31-green-1919.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1948","_score":1,"_source":{"id":1948,"sku":"WSH03-30-Gray","name":"Gwen Drawstring Bike Short-30-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                            For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                            \n

                            • Dark heather gray rouched bike shorts.
                            • Fitted. Inseam: 2\".
                            • Machine wash/dry.

                            ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-30-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"gwen-drawstring-bike-short-30-gray-1948","links":{},"stock":{"item_id":1948,"product_id":1948,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-30-gray-1948.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1903","_score":1,"_source":{"id":1903,"sku":"WP13-28-Green","name":"Portia Capri-28-Green","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                            \n

                            • Salmon heather capri sweats.
                            • Relaxed fit, high waist.
                            • Inseam: 21\".
                            • Wide elastic waistband.
                            • Machine wash/dry.

                            ","image":"/w/p/wp13-green_main.jpg","small_image":"/w/p/wp13-green_main.jpg","thumbnail":"/w/p/wp13-green_main.jpg","color":"53","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"portia-capri-28-green-1903","links":{},"stock":{"item_id":1903,"product_id":1903,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-28-green-1903.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1937","_score":1,"_source":{"id":1937,"sku":"WSH02-32-Gray","name":"Maxima Drawstring Short-32-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                            \n

                            • Light gray run shorts
                            - cotton polyester.
                            • Contrast binding.
                            • 3\" inseam.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"maxima-drawstring-short-32-gray-1937","links":{},"stock":{"item_id":1937,"product_id":1937,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-32-gray-1937.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1927","_score":1,"_source":{"id":1927,"sku":"WSH02-28-Yellow","name":"Maxima Drawstring Short-28-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                            \n

                            • Light gray run shorts
                            - cotton polyester.
                            • Contrast binding.
                            • 3\" inseam.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-28-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"maxima-drawstring-short-28-yellow-1927","links":{},"stock":{"item_id":1927,"product_id":1927,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-28-yellow-1927.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1929","_score":1,"_source":{"id":1929,"sku":"WSH02-29-Orange","name":"Maxima Drawstring Short-29-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                            \n

                            • Light gray run shorts
                            - cotton polyester.
                            • Contrast binding.
                            • 3\" inseam.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"maxima-drawstring-short-29-orange-1929","links":{},"stock":{"item_id":1929,"product_id":1929,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-29-orange-1929.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1938","_score":1,"_source":{"id":1938,"sku":"WSH02-32-Orange","name":"Maxima Drawstring Short-32-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                            \n

                            • Light gray run shorts
                            - cotton polyester.
                            • Contrast binding.
                            • 3\" inseam.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-32-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"maxima-drawstring-short-32-orange-1938","links":{},"stock":{"item_id":1938,"product_id":1938,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-32-orange-1938.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1944","_score":1,"_source":{"id":1944,"sku":"WSH03-29-Blue","name":"Gwen Drawstring Bike Short-29-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                            For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                            \n

                            • Dark heather gray rouched bike shorts.
                            • Fitted. Inseam: 2\".
                            • Machine wash/dry.

                            ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"gwen-drawstring-bike-short-29-blue-1944","links":{},"stock":{"item_id":1944,"product_id":1944,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-29-blue-1944.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1932","_score":1,"_source":{"id":1932,"sku":"WSH02-30-Orange","name":"Maxima Drawstring Short-30-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                            \n

                            • Light gray run shorts
                            - cotton polyester.
                            • Contrast binding.
                            • 3\" inseam.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-30-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"maxima-drawstring-short-30-orange-1932","links":{},"stock":{"item_id":1932,"product_id":1932,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-30-orange-1932.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1934","_score":1,"_source":{"id":1934,"sku":"WSH02-31-Gray","name":"Maxima Drawstring Short-31-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                            \n

                            • Light gray run shorts
                            - cotton polyester.
                            • Contrast binding.
                            • 3\" inseam.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-31-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"maxima-drawstring-short-31-gray-1934","links":{},"stock":{"item_id":1934,"product_id":1934,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-31-gray-1934.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1936","_score":1,"_source":{"id":1936,"sku":"WSH02-31-Yellow","name":"Maxima Drawstring Short-31-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                            \n

                            • Light gray run shorts
                            - cotton polyester.
                            • Contrast binding.
                            • 3\" inseam.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-31-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"maxima-drawstring-short-31-yellow-1936","links":{},"stock":{"item_id":1936,"product_id":1936,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-31-yellow-1936.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1943","_score":1,"_source":{"id":1943,"sku":"WSH03-28-Orange","name":"Gwen Drawstring Bike Short-28-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                            For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                            \n

                            • Dark heather gray rouched bike shorts.
                            • Fitted. Inseam: 2\".
                            • Machine wash/dry.

                            ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"gwen-drawstring-bike-short-28-orange-1943","links":{},"stock":{"item_id":1943,"product_id":1943,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-28-orange-1943.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1945","_score":1,"_source":{"id":1945,"sku":"WSH03-29-Gray","name":"Gwen Drawstring Bike Short-29-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                            For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                            \n

                            • Dark heather gray rouched bike shorts.
                            • Fitted. Inseam: 2\".
                            • Machine wash/dry.

                            ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"gwen-drawstring-bike-short-29-gray-1945","links":{},"stock":{"item_id":1945,"product_id":1945,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-29-gray-1945.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1949","_score":1,"_source":{"id":1949,"sku":"WSH03-30-Orange","name":"Gwen Drawstring Bike Short-30-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                            For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                            \n

                            • Dark heather gray rouched bike shorts.
                            • Fitted. Inseam: 2\".
                            • Machine wash/dry.

                            ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-30-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"gwen-drawstring-bike-short-30-orange-1949","links":{},"stock":{"item_id":1949,"product_id":1949,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-30-orange-1949.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1947","_score":1,"_source":{"id":1947,"sku":"WSH03-30-Blue","name":"Gwen Drawstring Bike Short-30-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                            For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                            \n

                            • Dark heather gray rouched bike shorts.
                            • Fitted. Inseam: 2\".
                            • Machine wash/dry.

                            ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-30-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"gwen-drawstring-bike-short-30-blue-1947","links":{},"stock":{"item_id":1947,"product_id":1947,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-30-blue-1947.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1941","_score":1,"_source":{"id":1941,"sku":"WSH03-28-Blue","name":"Gwen Drawstring Bike Short-28-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                            For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                            \n

                            • Dark heather gray rouched bike shorts.
                            • Fitted. Inseam: 2\".
                            • Machine wash/dry.

                            ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"gwen-drawstring-bike-short-28-blue-1941","links":{},"stock":{"item_id":1941,"product_id":1941,"stock_id":1,"qty":21,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-28-blue-1941.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1950","_score":1,"_source":{"id":1950,"sku":"WSH03-31-Blue","name":"Gwen Drawstring Bike Short-31-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                            For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                            \n

                            • Dark heather gray rouched bike shorts.
                            • Fitted. Inseam: 2\".
                            • Machine wash/dry.

                            ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-31-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"gwen-drawstring-bike-short-31-blue-1950","links":{},"stock":{"item_id":1950,"product_id":1950,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-31-blue-1950.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1901","_score":1,"_source":{"id":1901,"sku":"WP12","name":"Deirdre Relaxed-Fit Capri","attribute_set_id":10,"price":63,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                            Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                            \n

                            • Heather gray capris with mint green waist & accents.
                            • Comfortable, relaxed fit with high rise.
                            • Moisture-wicking, 4-way stretch construction.
                            • Lined with mesh for better support.
                            • Hidden pocket at waistband.
                            • Flatlock seams and lined gusset for comfort.

                            ","image":"/w/p/wp12-gray_main.jpg","small_image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"deirdre-relaxed-fit-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154,39],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"107","pattern":"195","climate":[205,212,206],"slug":"deirdre-relaxed-fit-capri-1901","links":{},"stock":{"item_id":1901,"product_id":1901,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP12-28-Blue","id":1895,"status":1,"name":"Deirdre Relaxed-Fit Capri-28-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"50","image":"/w/p/wp12-blue_main.jpg","small_image":"/w/p/wp12-blue_main.jpg","thumbnail":"/w/p/wp12-blue_main.jpg","url_key":"deirdre-relaxed-fit-capri-28-blue","msrp_display_actual_price_type":"0"},{"sku":"WP12-28-Gray","id":1896,"status":1,"name":"Deirdre Relaxed-Fit Capri-28-Gray","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"52","image":"/w/p/wp12-gray_main.jpg","small_image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","url_key":"deirdre-relaxed-fit-capri-28-gray","msrp_display_actual_price_type":"0"},{"sku":"WP12-28-Green","id":1897,"status":1,"name":"Deirdre Relaxed-Fit Capri-28-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"53","image":"/w/p/wp12-green_main.jpg","small_image":"/w/p/wp12-green_main.jpg","thumbnail":"/w/p/wp12-green_main.jpg","url_key":"deirdre-relaxed-fit-capri-28-green","msrp_display_actual_price_type":"0"},{"sku":"WP12-29-Blue","id":1898,"status":1,"name":"Deirdre Relaxed-Fit Capri-29-Blue","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"50","image":"/w/p/wp12-blue_main.jpg","small_image":"/w/p/wp12-blue_main.jpg","thumbnail":"/w/p/wp12-blue_main.jpg","url_key":"deirdre-relaxed-fit-capri-29-blue","msrp_display_actual_price_type":"0"},{"sku":"WP12-29-Gray","id":1899,"status":1,"name":"Deirdre Relaxed-Fit Capri-29-Gray","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"52","image":"/w/p/wp12-gray_main.jpg","small_image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","url_key":"deirdre-relaxed-fit-capri-29-gray","msrp_display_actual_price_type":"0"},{"sku":"WP12-29-Green","id":1900,"status":1,"name":"Deirdre Relaxed-Fit Capri-29-Green","price":63,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"53","image":"/w/p/wp12-green_main.jpg","small_image":"/w/p/wp12-green_main.jpg","thumbnail":"/w/p/wp12-green_main.jpg","url_key":"deirdre-relaxed-fit-capri-29-green","msrp_display_actual_price_type":"0"}],"configurable_options":[{"id":269,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":1901,"attribute_code":"color"},{"id":268,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1901,"attribute_code":"size"}],"color_options":[50,52,53],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-1901.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1908","_score":1,"_source":{"id":1908,"sku":"WP13","name":"Portia Capri","attribute_set_id":10,"price":49,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                            \n

                            • Salmon heather capri sweats.
                            • Relaxed fit, high waist.
                            • Inseam: 21\".
                            • Wide elastic waistband.
                            • Machine wash/dry.

                            ","image":"/w/p/wp13-orange_main.jpg","small_image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"portia-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":"107","pattern":"197","climate":[205,212,206],"slug":"portia-capri-1908","links":{},"stock":{"item_id":1908,"product_id":1908,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp13-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP13-28-Blue","id":1902,"status":1,"name":"Portia Capri-28-Blue","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"50","image":"/w/p/wp13-blue_main.jpg","small_image":"/w/p/wp13-blue_main.jpg","thumbnail":"/w/p/wp13-blue_main.jpg","url_key":"portia-capri-28-blue","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"WP13-28-Green","id":1903,"status":1,"name":"Portia Capri-28-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"53","image":"/w/p/wp13-green_main.jpg","small_image":"/w/p/wp13-green_main.jpg","thumbnail":"/w/p/wp13-green_main.jpg","url_key":"portia-capri-28-green","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"WP13-28-Orange","id":1904,"status":1,"name":"Portia Capri-28-Orange","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"56","image":"/w/p/wp13-orange_main.jpg","small_image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","url_key":"portia-capri-28-orange","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"WP13-29-Blue","id":1905,"status":1,"name":"Portia Capri-29-Blue","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"50","image":"/w/p/wp13-blue_main.jpg","small_image":"/w/p/wp13-blue_main.jpg","thumbnail":"/w/p/wp13-blue_main.jpg","url_key":"portia-capri-29-blue","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"WP13-29-Green","id":1906,"status":1,"name":"Portia Capri-29-Green","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"53","image":"/w/p/wp13-green_main.jpg","small_image":"/w/p/wp13-green_main.jpg","thumbnail":"/w/p/wp13-green_main.jpg","url_key":"portia-capri-29-green","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"WP13-29-Orange","id":1907,"status":1,"name":"Portia Capri-29-Orange","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"56","image":"/w/p/wp13-orange_main.jpg","small_image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","url_key":"portia-capri-29-orange","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49}],"configurable_options":[{"id":271,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":1908,"attribute_code":"color"},{"id":270,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1908,"attribute_code":"size"}],"color_options":[50,53,56],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-1908.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1924","_score":1,"_source":{"id":1924,"sku":"WSH01","name":"Fiona Fitness Short","attribute_set_id":10,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                            \n

                            • Black run shorts
                            - cotton/spandex.
                            • 5” inseam.
                            • Machine wash/Line dry.

                            ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"fiona-fitness-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,151],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[106,105],"pattern":"197","climate":[205,212,206,209],"slug":"fiona-fitness-short-1924","links":{},"stock":{"item_id":1924,"product_id":1924,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH01-28-Black","id":1909,"status":1,"name":"Fiona Fitness Short-28-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"172","color":"49","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","url_key":"fiona-fitness-short-28-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-28-Green","id":1910,"status":1,"name":"Fiona Fitness Short-28-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"172","color":"53","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","url_key":"fiona-fitness-short-28-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-28-Red","id":1911,"status":1,"name":"Fiona Fitness Short-28-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"172","color":"58","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","url_key":"fiona-fitness-short-28-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-29-Black","id":1912,"status":1,"name":"Fiona Fitness Short-29-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"173","color":"49","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","url_key":"fiona-fitness-short-29-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-29-Green","id":1913,"status":1,"name":"Fiona Fitness Short-29-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"173","color":"53","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","url_key":"fiona-fitness-short-29-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-29-Red","id":1914,"status":1,"name":"Fiona Fitness Short-29-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"173","color":"58","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","url_key":"fiona-fitness-short-29-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-30-Black","id":1915,"status":1,"name":"Fiona Fitness Short-30-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"174","color":"49","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","url_key":"fiona-fitness-short-30-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-30-Green","id":1916,"status":1,"name":"Fiona Fitness Short-30-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"174","color":"53","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","url_key":"fiona-fitness-short-30-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-30-Red","id":1917,"status":1,"name":"Fiona Fitness Short-30-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"174","color":"58","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","url_key":"fiona-fitness-short-30-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-31-Black","id":1918,"status":1,"name":"Fiona Fitness Short-31-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"175","color":"49","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","url_key":"fiona-fitness-short-31-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-31-Green","id":1919,"status":1,"name":"Fiona Fitness Short-31-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"175","color":"53","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","url_key":"fiona-fitness-short-31-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-31-Red","id":1920,"status":1,"name":"Fiona Fitness Short-31-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"175","color":"58","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","url_key":"fiona-fitness-short-31-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-32-Black","id":1921,"status":1,"name":"Fiona Fitness Short-32-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"176","color":"49","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","url_key":"fiona-fitness-short-32-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-32-Green","id":1922,"status":1,"name":"Fiona Fitness Short-32-Green","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"176","color":"53","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","url_key":"fiona-fitness-short-32-green","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"WSH01-32-Red","id":1923,"status":1,"name":"Fiona Fitness Short-32-Red","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","36","2"],"size":"176","color":"58","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","url_key":"fiona-fitness-short-32-red","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":273,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1924,"attribute_code":"color"},{"id":272,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1924,"attribute_code":"size"}],"color_options":[49,53,58],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-1924.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1852","_score":1,"_source":{"id":1852,"sku":"WP05","name":"Sahara Leggings","attribute_set_id":10,"price":75,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                            \n

                            • Pinstripe legging with rouched ankles.
                            • Secret pocket at waistband.
                            • Flat seams for comfort.
                            • Shaped fit with low rise.
                            • 4-way stretch, moisture-wicking material.

                            ","image":"/w/p/wp05-gray_main.jpg","small_image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sahara-leggings","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[109,113,115],"pattern":"197","climate":[204,205,208],"slug":"sahara-leggings-1852","links":{},"stock":{"item_id":1852,"product_id":1852,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP05-28-Blue","id":1846,"status":1,"name":"Sahara Leggings-28-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"50","image":"/w/p/wp05-blue_main.jpg","small_image":"/w/p/wp05-blue_main.jpg","thumbnail":"/w/p/wp05-blue_main.jpg","url_key":"sahara-leggings-28-blue","msrp_display_actual_price_type":"0"},{"sku":"WP05-28-Gray","id":1847,"status":1,"name":"Sahara Leggings-28-Gray","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"52","image":"/w/p/wp05-gray_main.jpg","small_image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","url_key":"sahara-leggings-28-gray","msrp_display_actual_price_type":"0"},{"sku":"WP05-28-Red","id":1848,"status":1,"name":"Sahara Leggings-28-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"58","image":"/w/p/wp05-red_main.jpg","small_image":"/w/p/wp05-red_main.jpg","thumbnail":"/w/p/wp05-red_main.jpg","url_key":"sahara-leggings-28-red","msrp_display_actual_price_type":"0"},{"sku":"WP05-29-Blue","id":1849,"status":1,"name":"Sahara Leggings-29-Blue","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"50","image":"/w/p/wp05-blue_main.jpg","small_image":"/w/p/wp05-blue_main.jpg","thumbnail":"/w/p/wp05-blue_main.jpg","url_key":"sahara-leggings-29-blue","msrp_display_actual_price_type":"0"},{"sku":"WP05-29-Gray","id":1850,"status":1,"name":"Sahara Leggings-29-Gray","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"52","image":"/w/p/wp05-gray_main.jpg","small_image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","url_key":"sahara-leggings-29-gray","msrp_display_actual_price_type":"0"},{"sku":"WP05-29-Red","id":1851,"status":1,"name":"Sahara Leggings-29-Red","price":75,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"58","image":"/w/p/wp05-red_main.jpg","small_image":"/w/p/wp05-red_main.jpg","thumbnail":"/w/p/wp05-red_main.jpg","url_key":"sahara-leggings-29-red","msrp_display_actual_price_type":"0","final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75}],"configurable_options":[{"id":255,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"}],"product_id":1852,"attribute_code":"color"},{"id":254,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1852,"attribute_code":"size"}],"color_options":[50,52,58],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-1852.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1887","_score":1,"_source":{"id":1887,"sku":"WP10","name":"Daria Bikram Pant","attribute_set_id":10,"price":51,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                            \n

                            • Heather gray capris with pink striped waist.
                            • Flatlock seams.
                            • Interior pocket.

                            ","image":"/w/p/wp10-gray_main.jpg","small_image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"daria-bikram-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,151],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"107","pattern":"195","climate":[202,205,206,208,209],"slug":"daria-bikram-pant-1887","links":{},"stock":{"item_id":1887,"product_id":1887,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP10-28-Black","id":1881,"status":1,"name":"Daria Bikram Pant-28-Black","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","36","2"],"size":"172","color":"49","image":"/w/p/wp10-black_main.jpg","small_image":"/w/p/wp10-black_main.jpg","thumbnail":"/w/p/wp10-black_main.jpg","url_key":"daria-bikram-pant-28-black","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"WP10-28-Gray","id":1882,"status":1,"name":"Daria Bikram Pant-28-Gray","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","36","2"],"size":"172","color":"52","image":"/w/p/wp10-gray_main.jpg","small_image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","url_key":"daria-bikram-pant-28-gray","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"WP10-28-White","id":1883,"status":1,"name":"Daria Bikram Pant-28-White","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","36","2"],"size":"172","color":"59","image":"/w/p/wp10-white_main.jpg","small_image":"/w/p/wp10-white_main.jpg","thumbnail":"/w/p/wp10-white_main.jpg","url_key":"daria-bikram-pant-28-white","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"WP10-29-Black","id":1884,"status":1,"name":"Daria Bikram Pant-29-Black","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","36","2"],"size":"173","color":"49","image":"/w/p/wp10-black_main.jpg","small_image":"/w/p/wp10-black_main.jpg","thumbnail":"/w/p/wp10-black_main.jpg","url_key":"daria-bikram-pant-29-black","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"WP10-29-Gray","id":1885,"status":1,"name":"Daria Bikram Pant-29-Gray","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","36","2"],"size":"173","color":"52","image":"/w/p/wp10-gray_main.jpg","small_image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","url_key":"daria-bikram-pant-29-gray","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"WP10-29-White","id":1886,"status":1,"name":"Daria Bikram Pant-29-White","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","36","2"],"size":"173","color":"59","image":"/w/p/wp10-white_main.jpg","small_image":"/w/p/wp10-white_main.jpg","thumbnail":"/w/p/wp10-white_main.jpg","url_key":"daria-bikram-pant-29-white","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51}],"configurable_options":[{"id":265,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":59,"label":"White"}],"product_id":1887,"attribute_code":"color"},{"id":264,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1887,"attribute_code":"size"}],"color_options":[49,52,59],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-1887.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1866","_score":1,"_source":{"id":1866,"sku":"WP07","name":"Aeon Capri","attribute_set_id":10,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                            \n

                            • Black capris with teal accents.
                            • Thick, 3\" flattering waistband.
                            • Media pocket on inner waistband.
                            • Dry wick finish for ultimate comfort and dryness.

                            ","image":"/w/p/wp07-black_main.jpg","small_image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"aeon-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,150,154],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"107","pattern":"195","climate":[205,212,206],"slug":"aeon-capri-1866","links":{},"stock":{"item_id":1866,"product_id":1866,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP07-28-Black","id":1860,"status":1,"name":"Aeon Capri-28-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"49","image":"/w/p/wp07-black_main.jpg","small_image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","url_key":"aeon-capri-28-black","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP07-28-Blue","id":1861,"status":1,"name":"Aeon Capri-28-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"50","image":"/w/p/wp07-blue_main.jpg","small_image":"/w/p/wp07-blue_main.jpg","thumbnail":"/w/p/wp07-blue_main.jpg","url_key":"aeon-capri-28-blue","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP07-28-Orange","id":1862,"status":1,"name":"Aeon Capri-28-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"172","color":"56","image":"/w/p/wp07-orange_main.jpg","small_image":"/w/p/wp07-orange_main.jpg","thumbnail":"/w/p/wp07-orange_main.jpg","url_key":"aeon-capri-28-orange","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP07-29-Black","id":1863,"status":1,"name":"Aeon Capri-29-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"49","image":"/w/p/wp07-black_main.jpg","small_image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","url_key":"aeon-capri-29-black","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP07-29-Blue","id":1864,"status":1,"name":"Aeon Capri-29-Blue","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"50","image":"/w/p/wp07-blue_main.jpg","small_image":"/w/p/wp07-blue_main.jpg","thumbnail":"/w/p/wp07-blue_main.jpg","url_key":"aeon-capri-29-blue","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP07-29-Orange","id":1865,"status":1,"name":"Aeon Capri-29-Orange","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","35","2"],"size":"173","color":"56","image":"/w/p/wp07-orange_main.jpg","small_image":"/w/p/wp07-orange_main.jpg","thumbnail":"/w/p/wp07-orange_main.jpg","url_key":"aeon-capri-29-orange","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48}],"configurable_options":[{"id":259,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":1866,"attribute_code":"color"},{"id":258,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1866,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-1866.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1880","_score":1,"_source":{"id":1880,"sku":"WP09","name":"Carina Basic Capri","attribute_set_id":10,"price":51,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                            \n

                            • Black capris with rouching detail.
                            • 93% cotton, 7% spandex.
                            • Elasticized waistband.
                            • Reinforced seams with exposed topstitching.
                            • Soft, medium-weight jersey with added stretch.

                            ","image":"/w/p/wp09-black_main.jpg","small_image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"carina-basic-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[107,108,109],"pattern":"197","climate":[202,205,206,208,209],"slug":"carina-basic-capri-1880","links":{},"stock":{"item_id":1880,"product_id":1880,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_outfit.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP09-28-Black","id":1874,"status":1,"name":"Carina Basic Capri-28-Black","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"49","image":"/w/p/wp09-black_main.jpg","small_image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","url_key":"carina-basic-capri-28-black","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"WP09-28-Blue","id":1875,"status":1,"name":"Carina Basic Capri-28-Blue","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"50","image":"/w/p/wp09-blue_main.jpg","small_image":"/w/p/wp09-blue_main.jpg","thumbnail":"/w/p/wp09-blue_main.jpg","url_key":"carina-basic-capri-28-blue","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"WP09-28-Purple","id":1876,"status":1,"name":"Carina Basic Capri-28-Purple","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"57","image":"/w/p/wp09-purple_main.jpg","small_image":"/w/p/wp09-purple_main.jpg","thumbnail":"/w/p/wp09-purple_main.jpg","url_key":"carina-basic-capri-28-purple","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"WP09-29-Black","id":1877,"status":1,"name":"Carina Basic Capri-29-Black","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"49","image":"/w/p/wp09-black_main.jpg","small_image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","url_key":"carina-basic-capri-29-black","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"WP09-29-Blue","id":1878,"status":1,"name":"Carina Basic Capri-29-Blue","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"50","image":"/w/p/wp09-blue_main.jpg","small_image":"/w/p/wp09-blue_main.jpg","thumbnail":"/w/p/wp09-blue_main.jpg","url_key":"carina-basic-capri-29-blue","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51},{"sku":"WP09-29-Purple","id":1879,"status":1,"name":"Carina Basic Capri-29-Purple","price":51,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"57","image":"/w/p/wp09-purple_main.jpg","small_image":"/w/p/wp09-purple_main.jpg","thumbnail":"/w/p/wp09-purple_main.jpg","url_key":"carina-basic-capri-29-purple","msrp_display_actual_price_type":"0","final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51}],"configurable_options":[{"id":263,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":1880,"attribute_code":"color"},{"id":262,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1880,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-1880.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1894","_score":1,"_source":{"id":1894,"sku":"WP11","name":"Sylvia Capri","attribute_set_id":10,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                            \n

                            • Green striped capri.
                            • Strategic side seam
                            • Comfort gusset with lining.
                            • Flat seaming.
                            • Wide waistband.
                            • Moisture wicking.

                            ","image":"/w/p/wp11-green_main.jpg","small_image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sylvia-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,154,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"107","pattern":"199","climate":"205","slug":"sylvia-capri-1894","links":{},"stock":{"item_id":1894,"product_id":1894,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP11-28-Blue","id":1888,"status":1,"name":"Sylvia Capri-28-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"50","image":"/w/p/wp11-blue_main.jpg","small_image":"/w/p/wp11-blue_main.jpg","thumbnail":"/w/p/wp11-blue_main.jpg","url_key":"sylvia-capri-28-blue","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WP11-28-Green","id":1889,"status":1,"name":"Sylvia Capri-28-Green","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"53","image":"/w/p/wp11-green_main.jpg","small_image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","url_key":"sylvia-capri-28-green","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WP11-28-Red","id":1890,"status":1,"name":"Sylvia Capri-28-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"58","image":"/w/p/wp11-red_main.jpg","small_image":"/w/p/wp11-red_main.jpg","thumbnail":"/w/p/wp11-red_main.jpg","url_key":"sylvia-capri-28-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WP11-29-Blue","id":1891,"status":1,"name":"Sylvia Capri-29-Blue","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"50","image":"/w/p/wp11-blue_main.jpg","small_image":"/w/p/wp11-blue_main.jpg","thumbnail":"/w/p/wp11-blue_main.jpg","url_key":"sylvia-capri-29-blue","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WP11-29-Green","id":1892,"status":1,"name":"Sylvia Capri-29-Green","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"53","image":"/w/p/wp11-green_main.jpg","small_image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","url_key":"sylvia-capri-29-green","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WP11-29-Red","id":1893,"status":1,"name":"Sylvia Capri-29-Red","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"58","image":"/w/p/wp11-red_main.jpg","small_image":"/w/p/wp11-red_main.jpg","thumbnail":"/w/p/wp11-red_main.jpg","url_key":"sylvia-capri-29-red","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42}],"configurable_options":[{"id":267,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1894,"attribute_code":"color"},{"id":266,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1894,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-1894.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1877","_score":1,"_source":{"id":1877,"sku":"WP09-29-Black","name":"Carina Basic Capri-29-Black","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                            \n

                            • Black capris with rouching detail.
                            • 93% cotton, 7% spandex.
                            • Elasticized waistband.
                            • Reinforced seams with exposed topstitching.
                            • Soft, medium-weight jersey with added stretch.

                            ","image":"/w/p/wp09-black_main.jpg","small_image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"carina-basic-capri-29-black-1877","links":{},"stock":{"item_id":1877,"product_id":1877,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_outfit.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-29-black-1877.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1886","_score":1,"_source":{"id":1886,"sku":"WP10-29-White","name":"Daria Bikram Pant-29-White","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                            \n

                            • Heather gray capris with pink striped waist.
                            • Flatlock seams.
                            • Interior pocket.

                            ","image":"/w/p/wp10-white_main.jpg","small_image":"/w/p/wp10-white_main.jpg","thumbnail":"/w/p/wp10-white_main.jpg","color":"59","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"daria-bikram-pant-29-white-1886","links":{},"stock":{"item_id":1886,"product_id":1886,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-29-white-1886.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1876","_score":1,"_source":{"id":1876,"sku":"WP09-28-Purple","name":"Carina Basic Capri-28-Purple","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                            \n

                            • Black capris with rouching detail.
                            • 93% cotton, 7% spandex.
                            • Elasticized waistband.
                            • Reinforced seams with exposed topstitching.
                            • Soft, medium-weight jersey with added stretch.

                            ","image":"/w/p/wp09-purple_main.jpg","small_image":"/w/p/wp09-purple_main.jpg","thumbnail":"/w/p/wp09-purple_main.jpg","color":"57","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"carina-basic-capri-28-purple-1876","links":{},"stock":{"item_id":1876,"product_id":1876,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-28-purple-1876.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1874","_score":1,"_source":{"id":1874,"sku":"WP09-28-Black","name":"Carina Basic Capri-28-Black","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                            \n

                            • Black capris with rouching detail.
                            • 93% cotton, 7% spandex.
                            • Elasticized waistband.
                            • Reinforced seams with exposed topstitching.
                            • Soft, medium-weight jersey with added stretch.

                            ","image":"/w/p/wp09-black_main.jpg","small_image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"carina-basic-capri-28-black-1874","links":{},"stock":{"item_id":1874,"product_id":1874,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp09-black_outfit.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-28-black-1874.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1871","_score":1,"_source":{"id":1871,"sku":"WP08-29-Green","name":"Bardot Capri-29-Green","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                            \n

                            • Black capris with pink waistband.
                            • Cropped leggings.
                            • Waistband drawcord.
                            • Flat, thin and flattering.
                            • Made with organic fabric.

                            ","image":"/w/p/wp08-green_main.jpg","small_image":"/w/p/wp08-green_main.jpg","thumbnail":"/w/p/wp08-green_main.jpg","color":"53","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bardot-capri-29-green-1871","links":{},"stock":{"item_id":1871,"product_id":1871,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-29-green-1871.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1881","_score":1,"_source":{"id":1881,"sku":"WP10-28-Black","name":"Daria Bikram Pant-28-Black","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                            \n

                            • Heather gray capris with pink striped waist.
                            • Flatlock seams.
                            • Interior pocket.

                            ","image":"/w/p/wp10-black_main.jpg","small_image":"/w/p/wp10-black_main.jpg","thumbnail":"/w/p/wp10-black_main.jpg","color":"49","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"daria-bikram-pant-28-black-1881","links":{},"stock":{"item_id":1881,"product_id":1881,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-28-black-1881.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1868","_score":1,"_source":{"id":1868,"sku":"WP08-28-Green","name":"Bardot Capri-28-Green","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                            \n

                            • Black capris with pink waistband.
                            • Cropped leggings.
                            • Waistband drawcord.
                            • Flat, thin and flattering.
                            • Made with organic fabric.

                            ","image":"/w/p/wp08-green_main.jpg","small_image":"/w/p/wp08-green_main.jpg","thumbnail":"/w/p/wp08-green_main.jpg","color":"53","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bardot-capri-28-green-1868","links":{},"stock":{"item_id":1868,"product_id":1868,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-28-green-1868.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1884","_score":1,"_source":{"id":1884,"sku":"WP10-29-Black","name":"Daria Bikram Pant-29-Black","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                            \n

                            • Heather gray capris with pink striped waist.
                            • Flatlock seams.
                            • Interior pocket.

                            ","image":"/w/p/wp10-black_main.jpg","small_image":"/w/p/wp10-black_main.jpg","thumbnail":"/w/p/wp10-black_main.jpg","color":"49","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"daria-bikram-pant-29-black-1884","links":{},"stock":{"item_id":1884,"product_id":1884,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-29-black-1884.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1888","_score":1,"_source":{"id":1888,"sku":"WP11-28-Blue","name":"Sylvia Capri-28-Blue","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                            \n

                            • Green striped capri.
                            • Strategic side seam
                            • Comfort gusset with lining.
                            • Flat seaming.
                            • Wide waistband.
                            • Moisture wicking.

                            ","image":"/w/p/wp11-blue_main.jpg","small_image":"/w/p/wp11-blue_main.jpg","thumbnail":"/w/p/wp11-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sylvia-capri-28-blue-1888","links":{},"stock":{"item_id":1888,"product_id":1888,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-28-blue-1888.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1878","_score":1,"_source":{"id":1878,"sku":"WP09-29-Blue","name":"Carina Basic Capri-29-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                            \n

                            • Black capris with rouching detail.
                            • 93% cotton, 7% spandex.
                            • Elasticized waistband.
                            • Reinforced seams with exposed topstitching.
                            • Soft, medium-weight jersey with added stretch.

                            ","image":"/w/p/wp09-blue_main.jpg","small_image":"/w/p/wp09-blue_main.jpg","thumbnail":"/w/p/wp09-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"carina-basic-capri-29-blue-1878","links":{},"stock":{"item_id":1878,"product_id":1878,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-29-blue-1878.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1883","_score":1,"_source":{"id":1883,"sku":"WP10-28-White","name":"Daria Bikram Pant-28-White","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                            \n

                            • Heather gray capris with pink striped waist.
                            • Flatlock seams.
                            • Interior pocket.

                            ","image":"/w/p/wp10-white_main.jpg","small_image":"/w/p/wp10-white_main.jpg","thumbnail":"/w/p/wp10-white_main.jpg","color":"59","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"daria-bikram-pant-28-white-1883","links":{},"stock":{"item_id":1883,"product_id":1883,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-28-white-1883.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1899","_score":1,"_source":{"id":1899,"sku":"WP12-29-Gray","name":"Deirdre Relaxed-Fit Capri-29-Gray","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                            Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                            \n

                            • Heather gray capris with mint green waist & accents.
                            • Comfortable, relaxed fit with high rise.
                            • Moisture-wicking, 4-way stretch construction.
                            • Lined with mesh for better support.
                            • Hidden pocket at waistband.
                            • Flatlock seams and lined gusset for comfort.

                            ","image":"/w/p/wp12-gray_main.jpg","small_image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","color":"52","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"deirdre-relaxed-fit-capri-29-gray-1899","links":{},"stock":{"item_id":1899,"product_id":1899,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-29-gray-1899.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1893","_score":1,"_source":{"id":1893,"sku":"WP11-29-Red","name":"Sylvia Capri-29-Red","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                            \n

                            • Green striped capri.
                            • Strategic side seam
                            • Comfort gusset with lining.
                            • Flat seaming.
                            • Wide waistband.
                            • Moisture wicking.

                            ","image":"/w/p/wp11-red_main.jpg","small_image":"/w/p/wp11-red_main.jpg","thumbnail":"/w/p/wp11-red_main.jpg","color":"58","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sylvia-capri-29-red-1893","links":{},"stock":{"item_id":1893,"product_id":1893,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-29-red-1893.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1890","_score":1,"_source":{"id":1890,"sku":"WP11-28-Red","name":"Sylvia Capri-28-Red","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                            \n

                            • Green striped capri.
                            • Strategic side seam
                            • Comfort gusset with lining.
                            • Flat seaming.
                            • Wide waistband.
                            • Moisture wicking.

                            ","image":"/w/p/wp11-red_main.jpg","small_image":"/w/p/wp11-red_main.jpg","thumbnail":"/w/p/wp11-red_main.jpg","color":"58","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sylvia-capri-28-red-1890","links":{},"stock":{"item_id":1890,"product_id":1890,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-28-red-1890.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1875","_score":1,"_source":{"id":1875,"sku":"WP09-28-Blue","name":"Carina Basic Capri-28-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                            \n

                            • Black capris with rouching detail.
                            • 93% cotton, 7% spandex.
                            • Elasticized waistband.
                            • Reinforced seams with exposed topstitching.
                            • Soft, medium-weight jersey with added stretch.

                            ","image":"/w/p/wp09-blue_main.jpg","small_image":"/w/p/wp09-blue_main.jpg","thumbnail":"/w/p/wp09-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"carina-basic-capri-28-blue-1875","links":{},"stock":{"item_id":1875,"product_id":1875,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-28-blue-1875.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1856","_score":1,"_source":{"id":1856,"sku":"WP06-29-Black","name":"Diana Tights-29-Black","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                            \n

                            • Black legging with slate details.
                            • Flat-lock, chafe-free side seams.
                            • Vented gusset.
                            • Secret interior pocket.
                            • Sustainable and recycled fabric.

                            ","image":"/w/p/wp06-black_main.jpg","small_image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","color":"49","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"diana-tights-29-black-1856","links":{},"stock":{"item_id":1856,"product_id":1856,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_outfit.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-29-black-1856.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1885","_score":1,"_source":{"id":1885,"sku":"WP10-29-Gray","name":"Daria Bikram Pant-29-Gray","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                            \n

                            • Heather gray capris with pink striped waist.
                            • Flatlock seams.
                            • Interior pocket.

                            ","image":"/w/p/wp10-gray_main.jpg","small_image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","color":"52","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"daria-bikram-pant-29-gray-1885","links":{},"stock":{"item_id":1885,"product_id":1885,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-29-gray-1885.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1892","_score":1,"_source":{"id":1892,"sku":"WP11-29-Green","name":"Sylvia Capri-29-Green","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                            \n

                            • Green striped capri.
                            • Strategic side seam
                            • Comfort gusset with lining.
                            • Flat seaming.
                            • Wide waistband.
                            • Moisture wicking.

                            ","image":"/w/p/wp11-green_main.jpg","small_image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","color":"53","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sylvia-capri-29-green-1892","links":{},"stock":{"item_id":1892,"product_id":1892,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-29-green-1892.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1895","_score":1,"_source":{"id":1895,"sku":"WP12-28-Blue","name":"Deirdre Relaxed-Fit Capri-28-Blue","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                            Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                            \n

                            • Heather gray capris with mint green waist & accents.
                            • Comfortable, relaxed fit with high rise.
                            • Moisture-wicking, 4-way stretch construction.
                            • Lined with mesh for better support.
                            • Hidden pocket at waistband.
                            • Flatlock seams and lined gusset for comfort.

                            ","image":"/w/p/wp12-blue_main.jpg","small_image":"/w/p/wp12-blue_main.jpg","thumbnail":"/w/p/wp12-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"deirdre-relaxed-fit-capri-28-blue-1895","links":{},"stock":{"item_id":1895,"product_id":1895,"stock_id":1,"qty":80,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-28-blue-1895.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1898","_score":1,"_source":{"id":1898,"sku":"WP12-29-Blue","name":"Deirdre Relaxed-Fit Capri-29-Blue","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                            Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                            \n

                            • Heather gray capris with mint green waist & accents.
                            • Comfortable, relaxed fit with high rise.
                            • Moisture-wicking, 4-way stretch construction.
                            • Lined with mesh for better support.
                            • Hidden pocket at waistband.
                            • Flatlock seams and lined gusset for comfort.

                            ","image":"/w/p/wp12-blue_main.jpg","small_image":"/w/p/wp12-blue_main.jpg","thumbnail":"/w/p/wp12-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"deirdre-relaxed-fit-capri-29-blue-1898","links":{},"stock":{"item_id":1898,"product_id":1898,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-29-blue-1898.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1897","_score":1,"_source":{"id":1897,"sku":"WP12-28-Green","name":"Deirdre Relaxed-Fit Capri-28-Green","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                            Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                            \n

                            • Heather gray capris with mint green waist & accents.
                            • Comfortable, relaxed fit with high rise.
                            • Moisture-wicking, 4-way stretch construction.
                            • Lined with mesh for better support.
                            • Hidden pocket at waistband.
                            • Flatlock seams and lined gusset for comfort.

                            ","image":"/w/p/wp12-green_main.jpg","small_image":"/w/p/wp12-green_main.jpg","thumbnail":"/w/p/wp12-green_main.jpg","color":"53","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"deirdre-relaxed-fit-capri-28-green-1897","links":{},"stock":{"item_id":1897,"product_id":1897,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-28-green-1897.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1900","_score":1,"_source":{"id":1900,"sku":"WP12-29-Green","name":"Deirdre Relaxed-Fit Capri-29-Green","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                            Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                            \n

                            • Heather gray capris with mint green waist & accents.
                            • Comfortable, relaxed fit with high rise.
                            • Moisture-wicking, 4-way stretch construction.
                            • Lined with mesh for better support.
                            • Hidden pocket at waistband.
                            • Flatlock seams and lined gusset for comfort.

                            ","image":"/w/p/wp12-green_main.jpg","small_image":"/w/p/wp12-green_main.jpg","thumbnail":"/w/p/wp12-green_main.jpg","color":"53","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"deirdre-relaxed-fit-capri-29-green-1900","links":{},"stock":{"item_id":1900,"product_id":1900,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-29-green-1900.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1889","_score":1,"_source":{"id":1889,"sku":"WP11-28-Green","name":"Sylvia Capri-28-Green","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                            \n

                            • Green striped capri.
                            • Strategic side seam
                            • Comfort gusset with lining.
                            • Flat seaming.
                            • Wide waistband.
                            • Moisture wicking.

                            ","image":"/w/p/wp11-green_main.jpg","small_image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","color":"53","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sylvia-capri-28-green-1889","links":{},"stock":{"item_id":1889,"product_id":1889,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp11-green_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-28-green-1889.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1891","_score":1,"_source":{"id":1891,"sku":"WP11-29-Blue","name":"Sylvia Capri-29-Blue","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                            \n

                            • Green striped capri.
                            • Strategic side seam
                            • Comfort gusset with lining.
                            • Flat seaming.
                            • Wide waistband.
                            • Moisture wicking.

                            ","image":"/w/p/wp11-blue_main.jpg","small_image":"/w/p/wp11-blue_main.jpg","thumbnail":"/w/p/wp11-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sylvia-capri-29-blue-1891","links":{},"stock":{"item_id":1891,"product_id":1891,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-29-blue-1891.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1896","_score":1,"_source":{"id":1896,"sku":"WP12-28-Gray","name":"Deirdre Relaxed-Fit Capri-28-Gray","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                            Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                            \n

                            • Heather gray capris with mint green waist & accents.
                            • Comfortable, relaxed fit with high rise.
                            • Moisture-wicking, 4-way stretch construction.
                            • Lined with mesh for better support.
                            • Hidden pocket at waistband.
                            • Flatlock seams and lined gusset for comfort.

                            ","image":"/w/p/wp12-gray_main.jpg","small_image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","color":"52","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"deirdre-relaxed-fit-capri-28-gray-1896","links":{},"stock":{"item_id":1896,"product_id":1896,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp12-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp12-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-28-gray-1896.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1902","_score":1,"_source":{"id":1902,"sku":"WP13-28-Blue","name":"Portia Capri-28-Blue","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                            \n

                            • Salmon heather capri sweats.
                            • Relaxed fit, high waist.
                            • Inseam: 21\".
                            • Wide elastic waistband.
                            • Machine wash/dry.

                            ","image":"/w/p/wp13-blue_main.jpg","small_image":"/w/p/wp13-blue_main.jpg","thumbnail":"/w/p/wp13-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"portia-capri-28-blue-1902","links":{},"stock":{"item_id":1902,"product_id":1902,"stock_id":1,"qty":63,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-28-blue-1902.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1923","_score":1,"_source":{"id":1923,"sku":"WSH01-32-Red","name":"Fiona Fitness Short-32-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                            \n

                            • Black run shorts
                            - cotton/spandex.
                            • 5” inseam.
                            • Machine wash/Line dry.

                            ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"fiona-fitness-short-32-red-1923","links":{},"stock":{"item_id":1923,"product_id":1923,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-32-red-1923.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1914","_score":1,"_source":{"id":1914,"sku":"WSH01-29-Red","name":"Fiona Fitness Short-29-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                            \n

                            • Black run shorts
                            - cotton/spandex.
                            • 5” inseam.
                            • Machine wash/Line dry.

                            ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"fiona-fitness-short-29-red-1914","links":{},"stock":{"item_id":1914,"product_id":1914,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-29-red-1914.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1907","_score":1,"_source":{"id":1907,"sku":"WP13-29-Orange","name":"Portia Capri-29-Orange","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                            \n

                            • Salmon heather capri sweats.
                            • Relaxed fit, high waist.
                            • Inseam: 21\".
                            • Wide elastic waistband.
                            • Machine wash/dry.

                            ","image":"/w/p/wp13-orange_main.jpg","small_image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","color":"56","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"portia-capri-29-orange-1907","links":{},"stock":{"item_id":1907,"product_id":1907,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp13-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-29-orange-1907.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1911","_score":1,"_source":{"id":1911,"sku":"WSH01-28-Red","name":"Fiona Fitness Short-28-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                            \n

                            • Black run shorts
                            - cotton/spandex.
                            • 5” inseam.
                            • Machine wash/Line dry.

                            ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"fiona-fitness-short-28-red-1911","links":{},"stock":{"item_id":1911,"product_id":1911,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-28-red-1911.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1912","_score":1,"_source":{"id":1912,"sku":"WSH01-29-Black","name":"Fiona Fitness Short-29-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                            \n

                            • Black run shorts
                            - cotton/spandex.
                            • 5” inseam.
                            • Machine wash/Line dry.

                            ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"fiona-fitness-short-29-black-1912","links":{},"stock":{"item_id":1912,"product_id":1912,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-29-black-1912.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1915","_score":1,"_source":{"id":1915,"sku":"WSH01-30-Black","name":"Fiona Fitness Short-30-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                            \n

                            • Black run shorts
                            - cotton/spandex.
                            • 5” inseam.
                            • Machine wash/Line dry.

                            ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-30-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"fiona-fitness-short-30-black-1915","links":{},"stock":{"item_id":1915,"product_id":1915,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-30-black-1915.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1910","_score":1,"_source":{"id":1910,"sku":"WSH01-28-Green","name":"Fiona Fitness Short-28-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                            \n

                            • Black run shorts
                            - cotton/spandex.
                            • 5” inseam.
                            • Machine wash/Line dry.

                            ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"fiona-fitness-short-28-green-1910","links":{},"stock":{"item_id":1910,"product_id":1910,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-28-green-1910.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1916","_score":1,"_source":{"id":1916,"sku":"WSH01-30-Green","name":"Fiona Fitness Short-30-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                            \n

                            • Black run shorts
                            - cotton/spandex.
                            • 5” inseam.
                            • Machine wash/Line dry.

                            ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-30-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"fiona-fitness-short-30-green-1916","links":{},"stock":{"item_id":1916,"product_id":1916,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-30-green-1916.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1917","_score":1,"_source":{"id":1917,"sku":"WSH01-30-Red","name":"Fiona Fitness Short-30-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                            \n

                            • Black run shorts
                            - cotton/spandex.
                            • 5” inseam.
                            • Machine wash/Line dry.

                            ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-30-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"fiona-fitness-short-30-red-1917","links":{},"stock":{"item_id":1917,"product_id":1917,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-30-red-1917.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1921","_score":1,"_source":{"id":1921,"sku":"WSH01-32-Black","name":"Fiona Fitness Short-32-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                            \n

                            • Black run shorts
                            - cotton/spandex.
                            • 5” inseam.
                            • Machine wash/Line dry.

                            ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"fiona-fitness-short-32-black-1921","links":{},"stock":{"item_id":1921,"product_id":1921,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-32-black-1921.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1935","_score":1,"_source":{"id":1935,"sku":"WSH02-31-Orange","name":"Maxima Drawstring Short-31-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                            \n

                            • Light gray run shorts
                            - cotton polyester.
                            • Contrast binding.
                            • 3\" inseam.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-31-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"maxima-drawstring-short-31-orange-1935","links":{},"stock":{"item_id":1935,"product_id":1935,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-31-orange-1935.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1925","_score":1,"_source":{"id":1925,"sku":"WSH02-28-Gray","name":"Maxima Drawstring Short-28-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                            \n

                            • Light gray run shorts
                            - cotton polyester.
                            • Contrast binding.
                            • 3\" inseam.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"maxima-drawstring-short-28-gray-1925","links":{},"stock":{"item_id":1925,"product_id":1925,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-28-gray-1925.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1928","_score":1,"_source":{"id":1928,"sku":"WSH02-29-Gray","name":"Maxima Drawstring Short-29-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                            \n

                            • Light gray run shorts
                            - cotton polyester.
                            • Contrast binding.
                            • 3\" inseam.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"maxima-drawstring-short-29-gray-1928","links":{},"stock":{"item_id":1928,"product_id":1928,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-29-gray-1928.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1946","_score":1,"_source":{"id":1946,"sku":"WSH03-29-Orange","name":"Gwen Drawstring Bike Short-29-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                            For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                            \n

                            • Dark heather gray rouched bike shorts.
                            • Fitted. Inseam: 2\".
                            • Machine wash/dry.

                            ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"gwen-drawstring-bike-short-29-orange-1946","links":{},"stock":{"item_id":1946,"product_id":1946,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-29-orange-1946.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1920","_score":1,"_source":{"id":1920,"sku":"WSH01-31-Red","name":"Fiona Fitness Short-31-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                            \n

                            • Black run shorts
                            - cotton/spandex.
                            • 5” inseam.
                            • Machine wash/Line dry.

                            ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-31-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"fiona-fitness-short-31-red-1920","links":{},"stock":{"item_id":1920,"product_id":1920,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-31-red-1920.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1939","_score":1,"_source":{"id":1939,"sku":"WSH02-32-Yellow","name":"Maxima Drawstring Short-32-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                            \n

                            • Light gray run shorts
                            - cotton polyester.
                            • Contrast binding.
                            • 3\" inseam.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-32-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"maxima-drawstring-short-32-yellow-1939","links":{},"stock":{"item_id":1939,"product_id":1939,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-32-yellow-1939.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1905","_score":1,"_source":{"id":1905,"sku":"WP13-29-Blue","name":"Portia Capri-29-Blue","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                            \n

                            • Salmon heather capri sweats.
                            • Relaxed fit, high waist.
                            • Inseam: 21\".
                            • Wide elastic waistband.
                            • Machine wash/dry.

                            ","image":"/w/p/wp13-blue_main.jpg","small_image":"/w/p/wp13-blue_main.jpg","thumbnail":"/w/p/wp13-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"portia-capri-29-blue-1905","links":{},"stock":{"item_id":1905,"product_id":1905,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-29-blue-1905.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1926","_score":1,"_source":{"id":1926,"sku":"WSH02-28-Orange","name":"Maxima Drawstring Short-28-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                            \n

                            • Light gray run shorts
                            - cotton polyester.
                            • Contrast binding.
                            • 3\" inseam.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"maxima-drawstring-short-28-orange-1926","links":{},"stock":{"item_id":1926,"product_id":1926,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-28-orange-1926.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1906","_score":1,"_source":{"id":1906,"sku":"WP13-29-Green","name":"Portia Capri-29-Green","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                            \n

                            • Salmon heather capri sweats.
                            • Relaxed fit, high waist.
                            • Inseam: 21\".
                            • Wide elastic waistband.
                            • Machine wash/dry.

                            ","image":"/w/p/wp13-green_main.jpg","small_image":"/w/p/wp13-green_main.jpg","thumbnail":"/w/p/wp13-green_main.jpg","color":"53","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"portia-capri-29-green-1906","links":{},"stock":{"item_id":1906,"product_id":1906,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-29-green-1906.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1857","_score":1,"_source":{"id":1857,"sku":"WP06-29-Blue","name":"Diana Tights-29-Blue","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                            \n

                            • Black legging with slate details.
                            • Flat-lock, chafe-free side seams.
                            • Vented gusset.
                            • Secret interior pocket.
                            • Sustainable and recycled fabric.

                            ","image":"/w/p/wp06-blue_main.jpg","small_image":"/w/p/wp06-blue_main.jpg","thumbnail":"/w/p/wp06-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"diana-tights-29-blue-1857","links":{},"stock":{"item_id":1857,"product_id":1857,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-29-blue-1857.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1862","_score":1,"_source":{"id":1862,"sku":"WP07-28-Orange","name":"Aeon Capri-28-Orange","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                            \n

                            • Black capris with teal accents.
                            • Thick, 3\" flattering waistband.
                            • Media pocket on inner waistband.
                            • Dry wick finish for ultimate comfort and dryness.

                            ","image":"/w/p/wp07-orange_main.jpg","small_image":"/w/p/wp07-orange_main.jpg","thumbnail":"/w/p/wp07-orange_main.jpg","color":"56","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"aeon-capri-28-orange-1862","links":{},"stock":{"item_id":1862,"product_id":1862,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-28-orange-1862.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1865","_score":1,"_source":{"id":1865,"sku":"WP07-29-Orange","name":"Aeon Capri-29-Orange","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                            \n

                            • Black capris with teal accents.
                            • Thick, 3\" flattering waistband.
                            • Media pocket on inner waistband.
                            • Dry wick finish for ultimate comfort and dryness.

                            ","image":"/w/p/wp07-orange_main.jpg","small_image":"/w/p/wp07-orange_main.jpg","thumbnail":"/w/p/wp07-orange_main.jpg","color":"56","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"aeon-capri-29-orange-1865","links":{},"stock":{"item_id":1865,"product_id":1865,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-29-orange-1865.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1854","_score":1,"_source":{"id":1854,"sku":"WP06-28-Blue","name":"Diana Tights-28-Blue","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                            \n

                            • Black legging with slate details.
                            • Flat-lock, chafe-free side seams.
                            • Vented gusset.
                            • Secret interior pocket.
                            • Sustainable and recycled fabric.

                            ","image":"/w/p/wp06-blue_main.jpg","small_image":"/w/p/wp06-blue_main.jpg","thumbnail":"/w/p/wp06-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"diana-tights-28-blue-1854","links":{},"stock":{"item_id":1854,"product_id":1854,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-28-blue-1854.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1851","_score":1,"_source":{"id":1851,"sku":"WP05-29-Red","name":"Sahara Leggings-29-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                            \n

                            • Pinstripe legging with rouched ankles.
                            • Secret pocket at waistband.
                            • Flat seams for comfort.
                            • Shaped fit with low rise.
                            • 4-way stretch, moisture-wicking material.

                            ","image":"/w/p/wp05-red_main.jpg","small_image":"/w/p/wp05-red_main.jpg","thumbnail":"/w/p/wp05-red_main.jpg","color":"58","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sahara-leggings-29-red-1851","links":{},"stock":{"item_id":1851,"product_id":1851,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp05-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-29-red-1851.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1863","_score":1,"_source":{"id":1863,"sku":"WP07-29-Black","name":"Aeon Capri-29-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                            \n

                            • Black capris with teal accents.
                            • Thick, 3\" flattering waistband.
                            • Media pocket on inner waistband.
                            • Dry wick finish for ultimate comfort and dryness.

                            ","image":"/w/p/wp07-black_main.jpg","small_image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","color":"49","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"aeon-capri-29-black-1863","links":{},"stock":{"item_id":1863,"product_id":1863,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-29-black-1863.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1860","_score":1,"_source":{"id":1860,"sku":"WP07-28-Black","name":"Aeon Capri-28-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                            \n

                            • Black capris with teal accents.
                            • Thick, 3\" flattering waistband.
                            • Media pocket on inner waistband.
                            • Dry wick finish for ultimate comfort and dryness.

                            ","image":"/w/p/wp07-black_main.jpg","small_image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","color":"49","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"aeon-capri-28-black-1860","links":{},"stock":{"item_id":1860,"product_id":1860,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp07-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp07-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-28-black-1860.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1879","_score":1,"_source":{"id":1879,"sku":"WP09-29-Purple","name":"Carina Basic Capri-29-Purple","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                            \n

                            • Black capris with rouching detail.
                            • 93% cotton, 7% spandex.
                            • Elasticized waistband.
                            • Reinforced seams with exposed topstitching.
                            • Soft, medium-weight jersey with added stretch.

                            ","image":"/w/p/wp09-purple_main.jpg","small_image":"/w/p/wp09-purple_main.jpg","thumbnail":"/w/p/wp09-purple_main.jpg","color":"57","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"carina-basic-capri-29-purple-1879","links":{},"stock":{"item_id":1879,"product_id":1879,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp09-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-29-purple-1879.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1853","_score":1,"_source":{"id":1853,"sku":"WP06-28-Black","name":"Diana Tights-28-Black","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                            \n

                            • Black legging with slate details.
                            • Flat-lock, chafe-free side seams.
                            • Vented gusset.
                            • Secret interior pocket.
                            • Sustainable and recycled fabric.

                            ","image":"/w/p/wp06-black_main.jpg","small_image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","color":"49","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"diana-tights-28-black-1853","links":{},"stock":{"item_id":1853,"product_id":1853,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_outfit.jpg","pos":4,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-28-black-1853.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1855","_score":1,"_source":{"id":1855,"sku":"WP06-28-Orange","name":"Diana Tights-28-Orange","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                            \n

                            • Black legging with slate details.
                            • Flat-lock, chafe-free side seams.
                            • Vented gusset.
                            • Secret interior pocket.
                            • Sustainable and recycled fabric.

                            ","image":"/w/p/wp06-orange_main.jpg","small_image":"/w/p/wp06-orange_main.jpg","thumbnail":"/w/p/wp06-orange_main.jpg","color":"56","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"diana-tights-28-orange-1855","links":{},"stock":{"item_id":1855,"product_id":1855,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-28-orange-1855.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1858","_score":1,"_source":{"id":1858,"sku":"WP06-29-Orange","name":"Diana Tights-29-Orange","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                            \n

                            • Black legging with slate details.
                            • Flat-lock, chafe-free side seams.
                            • Vented gusset.
                            • Secret interior pocket.
                            • Sustainable and recycled fabric.

                            ","image":"/w/p/wp06-orange_main.jpg","small_image":"/w/p/wp06-orange_main.jpg","thumbnail":"/w/p/wp06-orange_main.jpg","color":"56","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"diana-tights-29-orange-1858","links":{},"stock":{"item_id":1858,"product_id":1858,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-29-orange-1858.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1872","_score":1,"_source":{"id":1872,"sku":"WP08-29-Red","name":"Bardot Capri-29-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                            \n

                            • Black capris with pink waistband.
                            • Cropped leggings.
                            • Waistband drawcord.
                            • Flat, thin and flattering.
                            • Made with organic fabric.

                            ","image":"/w/p/wp08-red_main.jpg","small_image":"/w/p/wp08-red_main.jpg","thumbnail":"/w/p/wp08-red_main.jpg","color":"58","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bardot-capri-29-red-1872","links":{},"stock":{"item_id":1872,"product_id":1872,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-29-red-1872.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1867","_score":1,"_source":{"id":1867,"sku":"WP08-28-Black","name":"Bardot Capri-28-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                            \n

                            • Black capris with pink waistband.
                            • Cropped leggings.
                            • Waistband drawcord.
                            • Flat, thin and flattering.
                            • Made with organic fabric.

                            ","image":"/w/p/wp08-black_main.jpg","small_image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bardot-capri-28-black-1867","links":{},"stock":{"item_id":1867,"product_id":1867,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-28-black-1867.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1882","_score":1,"_source":{"id":1882,"sku":"WP10-28-Gray","name":"Daria Bikram Pant-28-Gray","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                            \n

                            • Heather gray capris with pink striped waist.
                            • Flatlock seams.
                            • Interior pocket.

                            ","image":"/w/p/wp10-gray_main.jpg","small_image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","color":"52","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"daria-bikram-pant-28-gray-1882","links":{},"stock":{"item_id":1882,"product_id":1882,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp10-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp10-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp10-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-28-gray-1882.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1869","_score":1,"_source":{"id":1869,"sku":"WP08-28-Red","name":"Bardot Capri-28-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                            \n

                            • Black capris with pink waistband.
                            • Cropped leggings.
                            • Waistband drawcord.
                            • Flat, thin and flattering.
                            • Made with organic fabric.

                            ","image":"/w/p/wp08-red_main.jpg","small_image":"/w/p/wp08-red_main.jpg","thumbnail":"/w/p/wp08-red_main.jpg","color":"58","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bardot-capri-28-red-1869","links":{},"stock":{"item_id":1869,"product_id":1869,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-28-red-1869.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1864","_score":1,"_source":{"id":1864,"sku":"WP07-29-Blue","name":"Aeon Capri-29-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                            \n

                            • Black capris with teal accents.
                            • Thick, 3\" flattering waistband.
                            • Media pocket on inner waistband.
                            • Dry wick finish for ultimate comfort and dryness.

                            ","image":"/w/p/wp07-blue_main.jpg","small_image":"/w/p/wp07-blue_main.jpg","thumbnail":"/w/p/wp07-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"aeon-capri-29-blue-1864","links":{},"stock":{"item_id":1864,"product_id":1864,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-29-blue-1864.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1861","_score":1,"_source":{"id":1861,"sku":"WP07-28-Blue","name":"Aeon Capri-28-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                            \n

                            • Black capris with teal accents.
                            • Thick, 3\" flattering waistband.
                            • Media pocket on inner waistband.
                            • Dry wick finish for ultimate comfort and dryness.

                            ","image":"/w/p/wp07-blue_main.jpg","small_image":"/w/p/wp07-blue_main.jpg","thumbnail":"/w/p/wp07-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"aeon-capri-28-blue-1861","links":{},"stock":{"item_id":1861,"product_id":1861,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-28-blue-1861.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1870","_score":1,"_source":{"id":1870,"sku":"WP08-29-Black","name":"Bardot Capri-29-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                            \n

                            • Black capris with pink waistband.
                            • Cropped leggings.
                            • Waistband drawcord.
                            • Flat, thin and flattering.
                            • Made with organic fabric.

                            ","image":"/w/p/wp08-black_main.jpg","small_image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bardot-capri-29-black-1870","links":{},"stock":{"item_id":1870,"product_id":1870,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-29-black-1870.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1859","_score":1,"_source":{"id":1859,"sku":"WP06","name":"Diana Tights","attribute_set_id":10,"price":59,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                            \n

                            • Black legging with slate details.
                            • Flat-lock, chafe-free side seams.
                            • Vented gusset.
                            • Secret interior pocket.
                            • Sustainable and recycled fabric.

                            ","image":"/w/p/wp06-black_main.jpg","small_image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"diana-tights","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[150,38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[107,109],"pattern":"197","climate":[202,204,205,206,208,209],"slug":"diana-tights-1859","links":{},"stock":{"item_id":1859,"product_id":1859,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp06-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp06-black_outfit.jpg","pos":4,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP06-28-Black","id":1853,"status":1,"name":"Diana Tights-28-Black","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"49","image":"/w/p/wp06-black_main.jpg","small_image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","url_key":"diana-tights-28-black","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WP06-28-Blue","id":1854,"status":1,"name":"Diana Tights-28-Blue","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"50","image":"/w/p/wp06-blue_main.jpg","small_image":"/w/p/wp06-blue_main.jpg","thumbnail":"/w/p/wp06-blue_main.jpg","url_key":"diana-tights-28-blue","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WP06-28-Orange","id":1855,"status":1,"name":"Diana Tights-28-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"172","color":"56","image":"/w/p/wp06-orange_main.jpg","small_image":"/w/p/wp06-orange_main.jpg","thumbnail":"/w/p/wp06-orange_main.jpg","url_key":"diana-tights-28-orange","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WP06-29-Black","id":1856,"status":1,"name":"Diana Tights-29-Black","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"49","image":"/w/p/wp06-black_main.jpg","small_image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","url_key":"diana-tights-29-black","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WP06-29-Blue","id":1857,"status":1,"name":"Diana Tights-29-Blue","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"50","image":"/w/p/wp06-blue_main.jpg","small_image":"/w/p/wp06-blue_main.jpg","thumbnail":"/w/p/wp06-blue_main.jpg","url_key":"diana-tights-29-blue","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59},{"sku":"WP06-29-Orange","id":1858,"status":1,"name":"Diana Tights-29-Orange","price":59,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","34","2"],"size":"173","color":"56","image":"/w/p/wp06-orange_main.jpg","small_image":"/w/p/wp06-orange_main.jpg","thumbnail":"/w/p/wp06-orange_main.jpg","url_key":"diana-tights-29-orange","msrp_display_actual_price_type":"0","final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59}],"configurable_options":[{"id":257,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":1859,"attribute_code":"color"},{"id":256,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1859,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-1859.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1873","_score":1,"_source":{"id":1873,"sku":"WP08","name":"Bardot Capri","attribute_set_id":10,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                            \n

                            • Black capris with pink waistband.
                            • Cropped leggings.
                            • Waistband drawcord.
                            • Flat, thin and flattering.
                            • Made with organic fabric.

                            ","image":"/w/p/wp08-black_main.jpg","small_image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"bardot-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[150,39,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[107,109],"pattern":"195","climate":[205,212,206,209],"slug":"bardot-capri-1873","links":{},"stock":{"item_id":1873,"product_id":1873,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp08-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp08-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WP08-28-Black","id":1867,"status":1,"name":"Bardot Capri-28-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"49","image":"/w/p/wp08-black_main.jpg","small_image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","url_key":"bardot-capri-28-black","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP08-28-Green","id":1868,"status":1,"name":"Bardot Capri-28-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"53","image":"/w/p/wp08-green_main.jpg","small_image":"/w/p/wp08-green_main.jpg","thumbnail":"/w/p/wp08-green_main.jpg","url_key":"bardot-capri-28-green","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP08-28-Red","id":1869,"status":1,"name":"Bardot Capri-28-Red","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"172","color":"58","image":"/w/p/wp08-red_main.jpg","small_image":"/w/p/wp08-red_main.jpg","thumbnail":"/w/p/wp08-red_main.jpg","url_key":"bardot-capri-28-red","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP08-29-Black","id":1870,"status":1,"name":"Bardot Capri-29-Black","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"49","image":"/w/p/wp08-black_main.jpg","small_image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","url_key":"bardot-capri-29-black","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP08-29-Green","id":1871,"status":1,"name":"Bardot Capri-29-Green","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"53","image":"/w/p/wp08-green_main.jpg","small_image":"/w/p/wp08-green_main.jpg","thumbnail":"/w/p/wp08-green_main.jpg","url_key":"bardot-capri-29-green","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48},{"sku":"WP08-29-Red","id":1872,"status":1,"name":"Bardot Capri-29-Red","price":48,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["27","32","2"],"size":"173","color":"58","image":"/w/p/wp08-red_main.jpg","small_image":"/w/p/wp08-red_main.jpg","thumbnail":"/w/p/wp08-red_main.jpg","url_key":"bardot-capri-29-red","msrp_display_actual_price_type":"0","final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48}],"configurable_options":[{"id":261,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1873,"attribute_code":"color"},{"id":260,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1873,"attribute_code":"size"}],"color_options":[49,53,58],"size_options":[172,173],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-1873.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1957","_score":1,"_source":{"id":1957,"sku":"WSH04-28-Black","name":"Artemis Running Short-28-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                            \n

                            • Black rouched shorts with mint waist.
                            • Soft, lightweight construction.
                            • LumaTech™ wicking technology.
                            • Semi-fitted.

                            ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"artemis-running-short-28-black-1957","links":{},"stock":{"item_id":1957,"product_id":1957,"stock_id":1,"qty":65,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-28-black-1957.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1967","_score":1,"_source":{"id":1967,"sku":"WSH04-31-Green","name":"Artemis Running Short-31-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                            \n

                            • Black rouched shorts with mint waist.
                            • Soft, lightweight construction.
                            • LumaTech™ wicking technology.
                            • Semi-fitted.

                            ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-31-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"artemis-running-short-31-green-1967","links":{},"stock":{"item_id":1967,"product_id":1967,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-31-green-1967.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1974","_score":1,"_source":{"id":1974,"sku":"WSH05-28-Purple","name":"Bess Yoga Short-28-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                            \n

                            • Navy cotton shorts with light bue waist detail.
                            • Front shirred waistband.
                            • Flat-lock, chafe-free side seams.
                            • Vented gusset.
                            • Hidden interior pocket.
                            • Sustainable and recycled fabric.

                            ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bess-yoga-short-28-purple-1974","links":{},"stock":{"item_id":1974,"product_id":1974,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-28-purple-1974.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1951","_score":1,"_source":{"id":1951,"sku":"WSH03-31-Gray","name":"Gwen Drawstring Bike Short-31-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                            For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                            \n

                            • Dark heather gray rouched bike shorts.
                            • Fitted. Inseam: 2\".
                            • Machine wash/dry.

                            ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-31-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"gwen-drawstring-bike-short-31-gray-1951","links":{},"stock":{"item_id":1951,"product_id":1951,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-31-gray-1951.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1960","_score":1,"_source":{"id":1960,"sku":"WSH04-29-Black","name":"Artemis Running Short-29-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                            \n

                            • Black rouched shorts with mint waist.
                            • Soft, lightweight construction.
                            • LumaTech™ wicking technology.
                            • Semi-fitted.

                            ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"artemis-running-short-29-black-1960","links":{},"stock":{"item_id":1960,"product_id":1960,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-29-black-1960.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1963","_score":1,"_source":{"id":1963,"sku":"WSH04-30-Black","name":"Artemis Running Short-30-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                            \n

                            • Black rouched shorts with mint waist.
                            • Soft, lightweight construction.
                            • LumaTech™ wicking technology.
                            • Semi-fitted.

                            ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-30-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"artemis-running-short-30-black-1963","links":{},"stock":{"item_id":1963,"product_id":1963,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-30-black-1963.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1965","_score":1,"_source":{"id":1965,"sku":"WSH04-30-Orange","name":"Artemis Running Short-30-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                            \n

                            • Black rouched shorts with mint waist.
                            • Soft, lightweight construction.
                            • LumaTech™ wicking technology.
                            • Semi-fitted.

                            ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-30-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"artemis-running-short-30-orange-1965","links":{},"stock":{"item_id":1965,"product_id":1965,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-30-orange-1965.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1962","_score":1,"_source":{"id":1962,"sku":"WSH04-29-Orange","name":"Artemis Running Short-29-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                            \n

                            • Black rouched shorts with mint waist.
                            • Soft, lightweight construction.
                            • LumaTech™ wicking technology.
                            • Semi-fitted.

                            ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"artemis-running-short-29-orange-1962","links":{},"stock":{"item_id":1962,"product_id":1962,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-29-orange-1962.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1953","_score":1,"_source":{"id":1953,"sku":"WSH03-32-Blue","name":"Gwen Drawstring Bike Short-32-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                            For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                            \n

                            • Dark heather gray rouched bike shorts.
                            • Fitted. Inseam: 2\".
                            • Machine wash/dry.

                            ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"gwen-drawstring-bike-short-32-blue-1953","links":{},"stock":{"item_id":1953,"product_id":1953,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-32-blue-1953.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1958","_score":1,"_source":{"id":1958,"sku":"WSH04-28-Green","name":"Artemis Running Short-28-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                            \n

                            • Black rouched shorts with mint waist.
                            • Soft, lightweight construction.
                            • LumaTech™ wicking technology.
                            • Semi-fitted.

                            ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"artemis-running-short-28-green-1958","links":{},"stock":{"item_id":1958,"product_id":1958,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-28-green-1958.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1961","_score":1,"_source":{"id":1961,"sku":"WSH04-29-Green","name":"Artemis Running Short-29-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                            \n

                            • Black rouched shorts with mint waist.
                            • Soft, lightweight construction.
                            • LumaTech™ wicking technology.
                            • Semi-fitted.

                            ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"artemis-running-short-29-green-1961","links":{},"stock":{"item_id":1961,"product_id":1961,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-29-green-1961.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1969","_score":1,"_source":{"id":1969,"sku":"WSH04-32-Black","name":"Artemis Running Short-32-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                            \n

                            • Black rouched shorts with mint waist.
                            • Soft, lightweight construction.
                            • LumaTech™ wicking technology.
                            • Semi-fitted.

                            ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"artemis-running-short-32-black-1969","links":{},"stock":{"item_id":1969,"product_id":1969,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-32-black-1969.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1973","_score":1,"_source":{"id":1973,"sku":"WSH05-28-Blue","name":"Bess Yoga Short-28-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                            \n

                            • Navy cotton shorts with light bue waist detail.
                            • Front shirred waistband.
                            • Flat-lock, chafe-free side seams.
                            • Vented gusset.
                            • Hidden interior pocket.
                            • Sustainable and recycled fabric.

                            ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bess-yoga-short-28-blue-1973","links":{},"stock":{"item_id":1973,"product_id":1973,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-28-blue-1973.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1955","_score":1,"_source":{"id":1955,"sku":"WSH03-32-Orange","name":"Gwen Drawstring Bike Short-32-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                            For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                            \n

                            • Dark heather gray rouched bike shorts.
                            • Fitted. Inseam: 2\".
                            • Machine wash/dry.

                            ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-32-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"gwen-drawstring-bike-short-32-orange-1955","links":{},"stock":{"item_id":1955,"product_id":1955,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-32-orange-1955.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1970","_score":1,"_source":{"id":1970,"sku":"WSH04-32-Green","name":"Artemis Running Short-32-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                            \n

                            • Black rouched shorts with mint waist.
                            • Soft, lightweight construction.
                            • LumaTech™ wicking technology.
                            • Semi-fitted.

                            ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"artemis-running-short-32-green-1970","links":{},"stock":{"item_id":1970,"product_id":1970,"stock_id":1,"qty":52,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-32-green-1970.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1952","_score":1,"_source":{"id":1952,"sku":"WSH03-31-Orange","name":"Gwen Drawstring Bike Short-31-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                            For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                            \n

                            • Dark heather gray rouched bike shorts.
                            • Fitted. Inseam: 2\".
                            • Machine wash/dry.

                            ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-31-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"gwen-drawstring-bike-short-31-orange-1952","links":{},"stock":{"item_id":1952,"product_id":1952,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-31-orange-1952.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1959","_score":1,"_source":{"id":1959,"sku":"WSH04-28-Orange","name":"Artemis Running Short-28-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                            \n

                            • Black rouched shorts with mint waist.
                            • Soft, lightweight construction.
                            • LumaTech™ wicking technology.
                            • Semi-fitted.

                            ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"artemis-running-short-28-orange-1959","links":{},"stock":{"item_id":1959,"product_id":1959,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-28-orange-1959.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1940","_score":1,"_source":{"id":1940,"sku":"WSH02","name":"Maxima Drawstring Short","attribute_set_id":10,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                            \n

                            • Light gray run shorts
                            - cotton polyester.
                            • Contrast binding.
                            • 3\" inseam.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"maxima-drawstring-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_bottom":"106","pattern":"197","climate":[205,212,206,209],"slug":"maxima-drawstring-short-1940","links":{},"stock":{"item_id":1940,"product_id":1940,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH02-28-Gray","id":1925,"status":1,"name":"Maxima Drawstring Short-28-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"172","color":"52","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","url_key":"maxima-drawstring-short-28-gray","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-28-Orange","id":1926,"status":1,"name":"Maxima Drawstring Short-28-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"172","color":"56","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","url_key":"maxima-drawstring-short-28-orange","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-28-Yellow","id":1927,"status":1,"name":"Maxima Drawstring Short-28-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"172","color":"60","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","url_key":"maxima-drawstring-short-28-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-29-Gray","id":1928,"status":1,"name":"Maxima Drawstring Short-29-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"173","color":"52","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","url_key":"maxima-drawstring-short-29-gray","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-29-Orange","id":1929,"status":1,"name":"Maxima Drawstring Short-29-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"173","color":"56","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","url_key":"maxima-drawstring-short-29-orange","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-29-Yellow","id":1930,"status":1,"name":"Maxima Drawstring Short-29-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"173","color":"60","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","url_key":"maxima-drawstring-short-29-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-30-Gray","id":1931,"status":1,"name":"Maxima Drawstring Short-30-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"174","color":"52","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","url_key":"maxima-drawstring-short-30-gray","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-30-Orange","id":1932,"status":1,"name":"Maxima Drawstring Short-30-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"174","color":"56","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","url_key":"maxima-drawstring-short-30-orange","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-30-Yellow","id":1933,"status":1,"name":"Maxima Drawstring Short-30-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"174","color":"60","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","url_key":"maxima-drawstring-short-30-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-31-Gray","id":1934,"status":1,"name":"Maxima Drawstring Short-31-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"175","color":"52","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","url_key":"maxima-drawstring-short-31-gray","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-31-Orange","id":1935,"status":1,"name":"Maxima Drawstring Short-31-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"175","color":"56","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","url_key":"maxima-drawstring-short-31-orange","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-31-Yellow","id":1936,"status":1,"name":"Maxima Drawstring Short-31-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"175","color":"60","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","url_key":"maxima-drawstring-short-31-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-32-Gray","id":1937,"status":1,"name":"Maxima Drawstring Short-32-Gray","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"176","color":"52","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","url_key":"maxima-drawstring-short-32-gray","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-32-Orange","id":1938,"status":1,"name":"Maxima Drawstring Short-32-Orange","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"176","color":"56","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","url_key":"maxima-drawstring-short-32-orange","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH02-32-Yellow","id":1939,"status":1,"name":"Maxima Drawstring Short-32-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"176","color":"60","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","url_key":"maxima-drawstring-short-32-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28}],"configurable_options":[{"id":275,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1940,"attribute_code":"color"},{"id":274,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1940,"attribute_code":"size"}],"color_options":[52,56,60],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-1940.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1904","_score":1,"_source":{"id":1904,"sku":"WP13-28-Orange","name":"Portia Capri-28-Orange","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                            \n

                            • Salmon heather capri sweats.
                            • Relaxed fit, high waist.
                            • Inseam: 21\".
                            • Wide elastic waistband.
                            • Machine wash/dry.

                            ","image":"/w/p/wp13-orange_main.jpg","small_image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","color":"56","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"portia-capri-28-orange-1904","links":{},"stock":{"item_id":1904,"product_id":1904,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/p/wp13-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/p/wp13-orange_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":27,"name":"Pants","slug":"pants-27","path":"women/bottoms-women/pants-women/pants-27"},{"category_id":32,"name":"Pants","slug":"pants-32","path":"promotions/pants-all/pants-32"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-28-orange-1904.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1930","_score":1,"_source":{"id":1930,"sku":"WSH02-29-Yellow","name":"Maxima Drawstring Short-29-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                            \n

                            • Light gray run shorts
                            - cotton polyester.
                            • Contrast binding.
                            • 3\" inseam.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-29-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"maxima-drawstring-short-29-yellow-1930","links":{},"stock":{"item_id":1930,"product_id":1930,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-29-yellow-1930.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1990","_score":1,"_source":{"id":1990,"sku":"WSH06-28-Orange","name":"Angel Light Running Short-28-Orange","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                            \n

                            • Dark heather gray running shorts.
                            • Snug fit.
                            • Elastic waistband.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh06-orange_main.jpg","small_image":"/w/s/wsh06-orange_main.jpg","thumbnail":"/w/s/wsh06-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"angel-light-running-short-28-orange-1990","links":{},"stock":{"item_id":1990,"product_id":1990,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-28-orange-1990.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1997","_score":1,"_source":{"id":1997,"sku":"WSH07-28-Blue","name":"Echo Fit Compression Short-28-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                            \n

                            • Black compression shorts.
                            • High-waisted cut.
                            • Compression fit.
                            • Inseam: 1.0\".
                            • Machine wash/dry.

                            ","image":"/w/s/wsh07-blue_main.jpg","small_image":"/w/s/wsh07-blue_main.jpg","thumbnail":"/w/s/wsh07-blue_main.jpg","color":"50","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"echo-fit-compression-short-28-blue-1997","links":{},"stock":{"item_id":1997,"product_id":1997,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-28-blue-1997.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1998","_score":1,"_source":{"id":1998,"sku":"WSH07-28-Purple","name":"Echo Fit Compression Short-28-Purple","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                            \n

                            • Black compression shorts.
                            • High-waisted cut.
                            • Compression fit.
                            • Inseam: 1.0\".
                            • Machine wash/dry.

                            ","image":"/w/s/wsh07-purple_main.jpg","small_image":"/w/s/wsh07-purple_main.jpg","thumbnail":"/w/s/wsh07-purple_main.jpg","color":"57","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"echo-fit-compression-short-28-purple-1998","links":{},"stock":{"item_id":1998,"product_id":1998,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-28-purple-1998.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1956","_score":1,"_source":{"id":1956,"sku":"WSH03","name":"Gwen Drawstring Bike Short","attribute_set_id":10,"price":50,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                            For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                            \n

                            • Dark heather gray rouched bike shorts.
                            • Fitted. Inseam: 2\".
                            • Machine wash/dry.

                            ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"gwen-drawstring-bike-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,154],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_bottom":[106,112,105],"pattern":"197","climate":[202,205,212],"slug":"gwen-drawstring-bike-short-1956","links":{},"stock":{"item_id":1956,"product_id":1956,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH03-28-Blue","id":1941,"status":1,"name":"Gwen Drawstring Bike Short-28-Blue","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"172","color":"50","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","url_key":"gwen-drawstring-bike-short-28-blue","msrp_display_actual_price_type":"0"},{"sku":"WSH03-28-Gray","id":1942,"status":1,"name":"Gwen Drawstring Bike Short-28-Gray","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"172","color":"52","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","url_key":"gwen-drawstring-bike-short-28-gray","msrp_display_actual_price_type":"0"},{"sku":"WSH03-28-Orange","id":1943,"status":1,"name":"Gwen Drawstring Bike Short-28-Orange","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"172","color":"56","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","url_key":"gwen-drawstring-bike-short-28-orange","msrp_display_actual_price_type":"0"},{"sku":"WSH03-29-Blue","id":1944,"status":1,"name":"Gwen Drawstring Bike Short-29-Blue","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"173","color":"50","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","url_key":"gwen-drawstring-bike-short-29-blue","msrp_display_actual_price_type":"0"},{"sku":"WSH03-29-Gray","id":1945,"status":1,"name":"Gwen Drawstring Bike Short-29-Gray","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"173","color":"52","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","url_key":"gwen-drawstring-bike-short-29-gray","msrp_display_actual_price_type":"0"},{"sku":"WSH03-29-Orange","id":1946,"status":1,"name":"Gwen Drawstring Bike Short-29-Orange","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"173","color":"56","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","url_key":"gwen-drawstring-bike-short-29-orange","msrp_display_actual_price_type":"0"},{"sku":"WSH03-30-Blue","id":1947,"status":1,"name":"Gwen Drawstring Bike Short-30-Blue","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"174","color":"50","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","url_key":"gwen-drawstring-bike-short-30-blue","msrp_display_actual_price_type":"0"},{"sku":"WSH03-30-Gray","id":1948,"status":1,"name":"Gwen Drawstring Bike Short-30-Gray","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"174","color":"52","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","url_key":"gwen-drawstring-bike-short-30-gray","msrp_display_actual_price_type":"0"},{"sku":"WSH03-30-Orange","id":1949,"status":1,"name":"Gwen Drawstring Bike Short-30-Orange","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"174","color":"56","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","url_key":"gwen-drawstring-bike-short-30-orange","msrp_display_actual_price_type":"0"},{"sku":"WSH03-31-Blue","id":1950,"status":1,"name":"Gwen Drawstring Bike Short-31-Blue","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"175","color":"50","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","url_key":"gwen-drawstring-bike-short-31-blue","msrp_display_actual_price_type":"0"},{"sku":"WSH03-31-Gray","id":1951,"status":1,"name":"Gwen Drawstring Bike Short-31-Gray","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"175","color":"52","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","url_key":"gwen-drawstring-bike-short-31-gray","msrp_display_actual_price_type":"0","final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50},{"sku":"WSH03-31-Orange","id":1952,"status":1,"name":"Gwen Drawstring Bike Short-31-Orange","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"175","color":"56","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","url_key":"gwen-drawstring-bike-short-31-orange","msrp_display_actual_price_type":"0","final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50},{"sku":"WSH03-32-Blue","id":1953,"status":1,"name":"Gwen Drawstring Bike Short-32-Blue","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"176","color":"50","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","url_key":"gwen-drawstring-bike-short-32-blue","msrp_display_actual_price_type":"0","final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50},{"sku":"WSH03-32-Gray","id":1954,"status":1,"name":"Gwen Drawstring Bike Short-32-Gray","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"176","color":"52","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","url_key":"gwen-drawstring-bike-short-32-gray","msrp_display_actual_price_type":"0","final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50},{"sku":"WSH03-32-Orange","id":1955,"status":1,"name":"Gwen Drawstring Bike Short-32-Orange","price":50,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","35","2"],"size":"176","color":"56","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","url_key":"gwen-drawstring-bike-short-32-orange","msrp_display_actual_price_type":"0","final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50}],"configurable_options":[{"id":277,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"}],"product_id":1956,"attribute_code":"color"},{"id":276,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1956,"attribute_code":"size"}],"color_options":[50,52,56],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-1956.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1988","_score":1,"_source":{"id":1988,"sku":"WSH05","name":"Bess Yoga Short","attribute_set_id":10,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                            \n

                            • Navy cotton shorts with light bue waist detail.
                            • Front shirred waistband.
                            • Flat-lock, chafe-free side seams.
                            • Vented gusset.
                            • Hidden interior pocket.
                            • Sustainable and recycled fabric.

                            ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"bess-yoga-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,156,36],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_bottom":"106","pattern":"198","climate":[202,212,209],"slug":"bess-yoga-short-1988","links":{},"stock":{"item_id":1988,"product_id":1988,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH05-28-Blue","id":1973,"status":1,"name":"Bess Yoga Short-28-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"172","color":"50","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","url_key":"bess-yoga-short-28-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-28-Purple","id":1974,"status":1,"name":"Bess Yoga Short-28-Purple","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"172","color":"57","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","url_key":"bess-yoga-short-28-purple","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-28-Yellow","id":1975,"status":1,"name":"Bess Yoga Short-28-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"172","color":"60","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","url_key":"bess-yoga-short-28-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-29-Blue","id":1976,"status":1,"name":"Bess Yoga Short-29-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"173","color":"50","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","url_key":"bess-yoga-short-29-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-29-Purple","id":1977,"status":1,"name":"Bess Yoga Short-29-Purple","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"173","color":"57","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","url_key":"bess-yoga-short-29-purple","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-29-Yellow","id":1978,"status":1,"name":"Bess Yoga Short-29-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"173","color":"60","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","url_key":"bess-yoga-short-29-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-30-Blue","id":1979,"status":1,"name":"Bess Yoga Short-30-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"174","color":"50","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","url_key":"bess-yoga-short-30-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-30-Purple","id":1980,"status":1,"name":"Bess Yoga Short-30-Purple","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"174","color":"57","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","url_key":"bess-yoga-short-30-purple","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-30-Yellow","id":1981,"status":1,"name":"Bess Yoga Short-30-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"174","color":"60","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","url_key":"bess-yoga-short-30-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-31-Blue","id":1982,"status":1,"name":"Bess Yoga Short-31-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"175","color":"50","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","url_key":"bess-yoga-short-31-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-31-Purple","id":1983,"status":1,"name":"Bess Yoga Short-31-Purple","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"175","color":"57","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","url_key":"bess-yoga-short-31-purple","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-31-Yellow","id":1984,"status":1,"name":"Bess Yoga Short-31-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"175","color":"60","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","url_key":"bess-yoga-short-31-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-32-Blue","id":1985,"status":1,"name":"Bess Yoga Short-32-Blue","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"176","color":"50","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","url_key":"bess-yoga-short-32-blue","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-32-Purple","id":1986,"status":1,"name":"Bess Yoga Short-32-Purple","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"176","color":"57","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","url_key":"bess-yoga-short-32-purple","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28},{"sku":"WSH05-32-Yellow","id":1987,"status":1,"name":"Bess Yoga Short-32-Yellow","price":28,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","30","2"],"size":"176","color":"60","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","url_key":"bess-yoga-short-32-yellow","msrp_display_actual_price_type":"0","final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28}],"configurable_options":[{"id":281,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"},{"value_index":60,"label":"Yellow"}],"product_id":1988,"attribute_code":"color"},{"id":280,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1988,"attribute_code":"size"}],"color_options":[50,57,60],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-1988.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1992","_score":1,"_source":{"id":1992,"sku":"WSH06-29-Gray","name":"Angel Light Running Short-29-Gray","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                            \n

                            • Dark heather gray running shorts.
                            • Snug fit.
                            • Elastic waistband.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh06-gray_main.jpg","small_image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","color":"52","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"angel-light-running-short-29-gray-1992","links":{},"stock":{"item_id":1992,"product_id":1992,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-29-gray-1992.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1982","_score":1,"_source":{"id":1982,"sku":"WSH05-31-Blue","name":"Bess Yoga Short-31-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                            \n

                            • Navy cotton shorts with light bue waist detail.
                            • Front shirred waistband.
                            • Flat-lock, chafe-free side seams.
                            • Vented gusset.
                            • Hidden interior pocket.
                            • Sustainable and recycled fabric.

                            ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-31-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"bess-yoga-short-31-blue-1982","links":{},"stock":{"item_id":1982,"product_id":1982,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-31-blue-1982.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1996","_score":1,"_source":{"id":1996,"sku":"WSH07-28-Black","name":"Echo Fit Compression Short-28-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                            \n

                            • Black compression shorts.
                            • High-waisted cut.
                            • Compression fit.
                            • Inseam: 1.0\".
                            • Machine wash/dry.

                            ","image":"/w/s/wsh07-black_main.jpg","small_image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","color":"49","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"echo-fit-compression-short-28-black-1996","links":{},"stock":{"item_id":1996,"product_id":1996,"stock_id":1,"qty":70,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh07-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-28-black-1996.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2000","_score":1,"_source":{"id":2000,"sku":"WSH07-29-Blue","name":"Echo Fit Compression Short-29-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                            \n

                            • Black compression shorts.
                            • High-waisted cut.
                            • Compression fit.
                            • Inseam: 1.0\".
                            • Machine wash/dry.

                            ","image":"/w/s/wsh07-blue_main.jpg","small_image":"/w/s/wsh07-blue_main.jpg","thumbnail":"/w/s/wsh07-blue_main.jpg","color":"50","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"echo-fit-compression-short-29-blue-2000","links":{},"stock":{"item_id":2000,"product_id":2000,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-29-blue-2000.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1995","_score":1,"_source":{"id":1995,"sku":"WSH06","name":"Angel Light Running Short","attribute_set_id":10,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                            \n

                            • Dark heather gray running shorts.
                            • Snug fit.
                            • Elastic waistband.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh06-gray_main.jpg","small_image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"angel-light-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,36,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[106,112],"pattern":"197","climate":[202,205,212],"slug":"angel-light-running-short-1995","links":{},"stock":{"item_id":1995,"product_id":1995,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH06-28-Gray","id":1989,"status":1,"name":"Angel Light Running Short-28-Gray","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"52","image":"/w/s/wsh06-gray_main.jpg","small_image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","url_key":"angel-light-running-short-28-gray","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WSH06-28-Orange","id":1990,"status":1,"name":"Angel Light Running Short-28-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"56","image":"/w/s/wsh06-orange_main.jpg","small_image":"/w/s/wsh06-orange_main.jpg","thumbnail":"/w/s/wsh06-orange_main.jpg","url_key":"angel-light-running-short-28-orange","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WSH06-28-Purple","id":1991,"status":1,"name":"Angel Light Running Short-28-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"57","image":"/w/s/wsh06-purple_main.jpg","small_image":"/w/s/wsh06-purple_main.jpg","thumbnail":"/w/s/wsh06-purple_main.jpg","url_key":"angel-light-running-short-28-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WSH06-29-Gray","id":1992,"status":1,"name":"Angel Light Running Short-29-Gray","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"52","image":"/w/s/wsh06-gray_main.jpg","small_image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","url_key":"angel-light-running-short-29-gray","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WSH06-29-Orange","id":1993,"status":1,"name":"Angel Light Running Short-29-Orange","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"56","image":"/w/s/wsh06-orange_main.jpg","small_image":"/w/s/wsh06-orange_main.jpg","thumbnail":"/w/s/wsh06-orange_main.jpg","url_key":"angel-light-running-short-29-orange","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42},{"sku":"WSH06-29-Purple","id":1994,"status":1,"name":"Angel Light Running Short-29-Purple","price":42,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"57","image":"/w/s/wsh06-purple_main.jpg","small_image":"/w/s/wsh06-purple_main.jpg","thumbnail":"/w/s/wsh06-purple_main.jpg","url_key":"angel-light-running-short-29-purple","msrp_display_actual_price_type":"0","final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42}],"configurable_options":[{"id":283,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1995,"attribute_code":"color"},{"id":282,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1995,"attribute_code":"size"}],"color_options":[52,56,57],"size_options":[172,173],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-1995.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1972","_score":1,"_source":{"id":1972,"sku":"WSH04","name":"Artemis Running Short","attribute_set_id":10,"price":45,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                            \n

                            • Black rouched shorts with mint waist.
                            • Soft, lightweight construction.
                            • LumaTech™ wicking technology.
                            • Semi-fitted.

                            ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"artemis-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"106","pattern":"198","climate":[202,205,212,206,209],"slug":"artemis-running-short-1972","links":{},"stock":{"item_id":1972,"product_id":1972,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH04-28-Black","id":1957,"status":1,"name":"Artemis Running Short-28-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"49","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","url_key":"artemis-running-short-28-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-28-Green","id":1958,"status":1,"name":"Artemis Running Short-28-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"53","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","url_key":"artemis-running-short-28-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-28-Orange","id":1959,"status":1,"name":"Artemis Running Short-28-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"56","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","url_key":"artemis-running-short-28-orange","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-29-Black","id":1960,"status":1,"name":"Artemis Running Short-29-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"49","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","url_key":"artemis-running-short-29-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-29-Green","id":1961,"status":1,"name":"Artemis Running Short-29-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"53","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","url_key":"artemis-running-short-29-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-29-Orange","id":1962,"status":1,"name":"Artemis Running Short-29-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"56","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","url_key":"artemis-running-short-29-orange","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-30-Black","id":1963,"status":1,"name":"Artemis Running Short-30-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"174","color":"49","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","url_key":"artemis-running-short-30-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-30-Green","id":1964,"status":1,"name":"Artemis Running Short-30-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"174","color":"53","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","url_key":"artemis-running-short-30-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-30-Orange","id":1965,"status":1,"name":"Artemis Running Short-30-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"174","color":"56","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","url_key":"artemis-running-short-30-orange","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-31-Black","id":1966,"status":1,"name":"Artemis Running Short-31-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"175","color":"49","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","url_key":"artemis-running-short-31-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-31-Green","id":1967,"status":1,"name":"Artemis Running Short-31-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"175","color":"53","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","url_key":"artemis-running-short-31-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-31-Orange","id":1968,"status":1,"name":"Artemis Running Short-31-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"175","color":"56","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","url_key":"artemis-running-short-31-orange","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-32-Black","id":1969,"status":1,"name":"Artemis Running Short-32-Black","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"176","color":"49","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","url_key":"artemis-running-short-32-black","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-32-Green","id":1970,"status":1,"name":"Artemis Running Short-32-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"176","color":"53","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","url_key":"artemis-running-short-32-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH04-32-Orange","id":1971,"status":1,"name":"Artemis Running Short-32-Orange","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"176","color":"56","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","url_key":"artemis-running-short-32-orange","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45}],"configurable_options":[{"id":279,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":1972,"attribute_code":"color"},{"id":278,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1972,"attribute_code":"size"}],"color_options":[49,53,56],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-1972.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2001","_score":1,"_source":{"id":2001,"sku":"WSH07-29-Purple","name":"Echo Fit Compression Short-29-Purple","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                            \n

                            • Black compression shorts.
                            • High-waisted cut.
                            • Compression fit.
                            • Inseam: 1.0\".
                            • Machine wash/dry.

                            ","image":"/w/s/wsh07-purple_main.jpg","small_image":"/w/s/wsh07-purple_main.jpg","thumbnail":"/w/s/wsh07-purple_main.jpg","color":"57","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"echo-fit-compression-short-29-purple-2001","links":{},"stock":{"item_id":2001,"product_id":2001,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-29-purple-2001.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2012","_score":1,"_source":{"id":2012,"sku":"WSH09-29-Gray","name":"Mimi All-Purpose Short-29-Gray","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                            \n

                            • Gray/seafoam two-layer shorts.
                            • Water-resistant construction.
                            • Inner mesh brief for breathable support.
                            • 2.0\" inseam.
                            • Reflective trim for visibility.

                            ","image":"/w/s/wsh09-gray_main.jpg","small_image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","color":"52","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"mimi-all-purpose-short-29-gray-2012","links":{},"stock":{"item_id":2012,"product_id":2012,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh09-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh09-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-29-gray-2012.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2025","_score":1,"_source":{"id":2025,"sku":"WSH11-28-Red","name":"Ina Compression Short-28-Red","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                            \n

                            • Royal blue bike shorts.
                            • Compression fit.
                            • Moisture-wicking.
                            • Anti-microbial.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh11-red_main.jpg","small_image":"/w/s/wsh11-red_main.jpg","thumbnail":"/w/s/wsh11-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ina-compression-short-28-red-2025","links":{},"stock":{"item_id":2025,"product_id":2025,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-28-red-2025.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2011","_score":1,"_source":{"id":2011,"sku":"WSH09-28-White","name":"Mimi All-Purpose Short-28-White","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                            \n

                            • Gray/seafoam two-layer shorts.
                            • Water-resistant construction.
                            • Inner mesh brief for breathable support.
                            • 2.0\" inseam.
                            • Reflective trim for visibility.

                            ","image":"/w/s/wsh09-white_main.jpg","small_image":"/w/s/wsh09-white_main.jpg","thumbnail":"/w/s/wsh09-white_main.jpg","color":"59","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"mimi-all-purpose-short-28-white-2011","links":{},"stock":{"item_id":2011,"product_id":2011,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-28-white-2011.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2034","_score":1,"_source":{"id":2034,"sku":"WSH12-29-Purple","name":"Erika Running Short-29-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                            \n

                            • Seafoam pattern running shorts.
                            • Elastic waistband.
                            • Snug fit.
                            • 4'' inseam.
                            • 76% premium brushed Nylon / 24% Spandex.

                            ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"erika-running-short-29-purple-2034","links":{},"stock":{"item_id":2034,"product_id":2034,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-29-purple-2034.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2020","_score":1,"_source":{"id":2020,"sku":"WSH10-29-Orange","name":"Ana Running Short-29-Orange","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40,"description":"

                            Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                            \n

                            • Black/pink two-layer shorts.
                            • Low-rise elastic waistband.
                            • Relaxed fit.
                            • Ultra-lightweight fabric.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh10-orange_main.jpg","small_image":"/w/s/wsh10-orange_main.jpg","thumbnail":"/w/s/wsh10-orange_main.jpg","color":"56","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ana-running-short-29-orange-2020","links":{},"stock":{"item_id":2020,"product_id":2020,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-29-orange-2020.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2004","_score":1,"_source":{"id":2004,"sku":"WSH08-29-Purple","name":"Sybil Running Short-29-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

                            \n

                            • Blue running shorts with green waist.
                            • Drawstring-adjustable waist.
                            • 4\" inseam. Machine wash/line dry.

                            ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sybil-running-short-29-purple-2004","links":{},"stock":{"item_id":2004,"product_id":2004,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-29-purple-2004.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2003","_score":1,"_source":{"id":2003,"sku":"WSH08-28-Purple","name":"Sybil Running Short-28-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

                            \n

                            • Blue running shorts with green waist.
                            • Drawstring-adjustable waist.
                            • 4\" inseam. Machine wash/line dry.

                            ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sybil-running-short-28-purple-2003","links":{},"stock":{"item_id":2003,"product_id":2003,"stock_id":1,"qty":63,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-28-purple-2003.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2042","_score":1,"_source":{"id":2042,"sku":"WSH12-32-Green","name":"Erika Running Short-32-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                            \n

                            • Seafoam pattern running shorts.
                            • Elastic waistband.
                            • Snug fit.
                            • 4'' inseam.
                            • 76% premium brushed Nylon / 24% Spandex.

                            ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"erika-running-short-32-green-2042","links":{},"stock":{"item_id":2042,"product_id":2042,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-32-green-2042.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2014","_score":1,"_source":{"id":2014,"sku":"WSH09-29-White","name":"Mimi All-Purpose Short-29-White","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                            \n

                            • Gray/seafoam two-layer shorts.
                            • Water-resistant construction.
                            • Inner mesh brief for breathable support.
                            • 2.0\" inseam.
                            • Reflective trim for visibility.

                            ","image":"/w/s/wsh09-white_main.jpg","small_image":"/w/s/wsh09-white_main.jpg","thumbnail":"/w/s/wsh09-white_main.jpg","color":"59","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"mimi-all-purpose-short-29-white-2014","links":{},"stock":{"item_id":2014,"product_id":2014,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-29-white-2014.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2021","_score":1,"_source":{"id":2021,"sku":"WSH10-29-White","name":"Ana Running Short-29-White","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40,"description":"

                            Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                            \n

                            • Black/pink two-layer shorts.
                            • Low-rise elastic waistband.
                            • Relaxed fit.
                            • Ultra-lightweight fabric.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh10-white_main.jpg","small_image":"/w/s/wsh10-white_main.jpg","thumbnail":"/w/s/wsh10-white_main.jpg","color":"59","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ana-running-short-29-white-2021","links":{},"stock":{"item_id":2021,"product_id":2021,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-29-white-2021.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2032","_score":1,"_source":{"id":2032,"sku":"WSH12-28-Red","name":"Erika Running Short-28-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                            \n

                            • Seafoam pattern running shorts.
                            • Elastic waistband.
                            • Snug fit.
                            • 4'' inseam.
                            • 76% premium brushed Nylon / 24% Spandex.

                            ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"erika-running-short-28-red-2032","links":{},"stock":{"item_id":2032,"product_id":2032,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-28-red-2032.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2009","_score":1,"_source":{"id":2009,"sku":"WSH09-28-Gray","name":"Mimi All-Purpose Short-28-Gray","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                            \n

                            • Gray/seafoam two-layer shorts.
                            • Water-resistant construction.
                            • Inner mesh brief for breathable support.
                            • 2.0\" inseam.
                            • Reflective trim for visibility.

                            ","image":"/w/s/wsh09-gray_main.jpg","small_image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","color":"52","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"mimi-all-purpose-short-28-gray-2009","links":{},"stock":{"item_id":2009,"product_id":2009,"stock_id":1,"qty":45,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh09-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh09-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-28-gray-2009.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2027","_score":1,"_source":{"id":2027,"sku":"WSH11-29-Orange","name":"Ina Compression Short-29-Orange","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                            \n

                            • Royal blue bike shorts.
                            • Compression fit.
                            • Moisture-wicking.
                            • Anti-microbial.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh11-orange_main.jpg","small_image":"/w/s/wsh11-orange_main.jpg","thumbnail":"/w/s/wsh11-orange_main.jpg","color":"56","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ina-compression-short-29-orange-2027","links":{},"stock":{"item_id":2027,"product_id":2027,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-29-orange-2027.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2038","_score":1,"_source":{"id":2038,"sku":"WSH12-30-Red","name":"Erika Running Short-30-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                            \n

                            • Seafoam pattern running shorts.
                            • Elastic waistband.
                            • Snug fit.
                            • 4'' inseam.
                            • 76% premium brushed Nylon / 24% Spandex.

                            ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-30-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"erika-running-short-30-red-2038","links":{},"stock":{"item_id":2038,"product_id":2038,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-30-red-2038.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2024","_score":1,"_source":{"id":2024,"sku":"WSH11-28-Orange","name":"Ina Compression Short-28-Orange","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                            \n

                            • Royal blue bike shorts.
                            • Compression fit.
                            • Moisture-wicking.
                            • Anti-microbial.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh11-orange_main.jpg","small_image":"/w/s/wsh11-orange_main.jpg","thumbnail":"/w/s/wsh11-orange_main.jpg","color":"56","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ina-compression-short-28-orange-2024","links":{},"stock":{"item_id":2024,"product_id":2024,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-28-orange-2024.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2037","_score":1,"_source":{"id":2037,"sku":"WSH12-30-Purple","name":"Erika Running Short-30-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                            \n

                            • Seafoam pattern running shorts.
                            • Elastic waistband.
                            • Snug fit.
                            • 4'' inseam.
                            • 76% premium brushed Nylon / 24% Spandex.

                            ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-30-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"erika-running-short-30-purple-2037","links":{},"stock":{"item_id":2037,"product_id":2037,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-30-purple-2037.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2028","_score":1,"_source":{"id":2028,"sku":"WSH11-29-Red","name":"Ina Compression Short-29-Red","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                            \n

                            • Royal blue bike shorts.
                            • Compression fit.
                            • Moisture-wicking.
                            • Anti-microbial.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh11-red_main.jpg","small_image":"/w/s/wsh11-red_main.jpg","thumbnail":"/w/s/wsh11-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ina-compression-short-29-red-2028","links":{},"stock":{"item_id":2028,"product_id":2028,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-29-red-2028.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2023","_score":1,"_source":{"id":2023,"sku":"WSH11-28-Blue","name":"Ina Compression Short-28-Blue","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                            \n

                            • Royal blue bike shorts.
                            • Compression fit.
                            • Moisture-wicking.
                            • Anti-microbial.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh11-blue_main.jpg","small_image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","color":"50","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ina-compression-short-28-blue-2023","links":{},"stock":{"item_id":2023,"product_id":2023,"stock_id":1,"qty":3,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-28-blue-2023.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2017","_score":1,"_source":{"id":2017,"sku":"WSH10-28-Orange","name":"Ana Running Short-28-Orange","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40,"description":"

                            Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                            \n

                            • Black/pink two-layer shorts.
                            • Low-rise elastic waistband.
                            • Relaxed fit.
                            • Ultra-lightweight fabric.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh10-orange_main.jpg","small_image":"/w/s/wsh10-orange_main.jpg","thumbnail":"/w/s/wsh10-orange_main.jpg","color":"56","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ana-running-short-28-orange-2017","links":{},"stock":{"item_id":2017,"product_id":2017,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-28-orange-2017.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2035","_score":1,"_source":{"id":2035,"sku":"WSH12-29-Red","name":"Erika Running Short-29-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                            \n

                            • Seafoam pattern running shorts.
                            • Elastic waistband.
                            • Snug fit.
                            • 4'' inseam.
                            • 76% premium brushed Nylon / 24% Spandex.

                            ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"erika-running-short-29-red-2035","links":{},"stock":{"item_id":2035,"product_id":2035,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-29-red-2035.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2036","_score":1,"_source":{"id":2036,"sku":"WSH12-30-Green","name":"Erika Running Short-30-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                            \n

                            • Seafoam pattern running shorts.
                            • Elastic waistband.
                            • Snug fit.
                            • 4'' inseam.
                            • 76% premium brushed Nylon / 24% Spandex.

                            ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-30-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"erika-running-short-30-green-2036","links":{},"stock":{"item_id":2036,"product_id":2036,"stock_id":1,"qty":79,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-30-green-2036.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2043","_score":1,"_source":{"id":2043,"sku":"WSH12-32-Purple","name":"Erika Running Short-32-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                            \n

                            • Seafoam pattern running shorts.
                            • Elastic waistband.
                            • Snug fit.
                            • 4'' inseam.
                            • 76% premium brushed Nylon / 24% Spandex.

                            ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"erika-running-short-32-purple-2043","links":{},"stock":{"item_id":2043,"product_id":2043,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-32-purple-2043.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2044","_score":1,"_source":{"id":2044,"sku":"WSH12-32-Red","name":"Erika Running Short-32-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                            \n

                            • Seafoam pattern running shorts.
                            • Elastic waistband.
                            • Snug fit.
                            • 4'' inseam.
                            • 76% premium brushed Nylon / 24% Spandex.

                            ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"erika-running-short-32-red-2044","links":{},"stock":{"item_id":2044,"product_id":2044,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-32-red-2044.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2002","_score":1,"_source":{"id":2002,"sku":"WSH07","name":"Echo Fit Compression Short","attribute_set_id":10,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                            \n

                            • Black compression shorts.
                            • High-waisted cut.
                            • Compression fit.
                            • Inseam: 1.0\".
                            • Machine wash/dry.

                            ","image":"/w/s/wsh07-black_main.jpg","small_image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"echo-fit-compression-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[112,105,108],"pattern":"197","climate":[202,205,212,206,209],"slug":"echo-fit-compression-short-2002","links":{},"stock":{"item_id":2002,"product_id":2002,"stock_id":1,"qty":14,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh07-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH07-28-Black","id":1996,"status":1,"name":"Echo Fit Compression Short-28-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","2"],"size":"172","color":"49","image":"/w/s/wsh07-black_main.jpg","small_image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","url_key":"echo-fit-compression-short-28-black","msrp_display_actual_price_type":"0"},{"sku":"WSH07-28-Blue","id":1997,"status":1,"name":"Echo Fit Compression Short-28-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","2"],"size":"172","color":"50","image":"/w/s/wsh07-blue_main.jpg","small_image":"/w/s/wsh07-blue_main.jpg","thumbnail":"/w/s/wsh07-blue_main.jpg","url_key":"echo-fit-compression-short-28-blue","msrp_display_actual_price_type":"0"},{"sku":"WSH07-28-Purple","id":1998,"status":1,"name":"Echo Fit Compression Short-28-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","2"],"size":"172","color":"57","image":"/w/s/wsh07-purple_main.jpg","small_image":"/w/s/wsh07-purple_main.jpg","thumbnail":"/w/s/wsh07-purple_main.jpg","url_key":"echo-fit-compression-short-28-purple","msrp_display_actual_price_type":"0"},{"sku":"WSH07-29-Black","id":1999,"status":1,"name":"Echo Fit Compression Short-29-Black","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","2"],"size":"173","color":"49","image":"/w/s/wsh07-black_main.jpg","small_image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","url_key":"echo-fit-compression-short-29-black","msrp_display_actual_price_type":"0"},{"sku":"WSH07-29-Blue","id":2000,"status":1,"name":"Echo Fit Compression Short-29-Blue","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","2"],"size":"173","color":"50","image":"/w/s/wsh07-blue_main.jpg","small_image":"/w/s/wsh07-blue_main.jpg","thumbnail":"/w/s/wsh07-blue_main.jpg","url_key":"echo-fit-compression-short-29-blue","msrp_display_actual_price_type":"0"},{"sku":"WSH07-29-Purple","id":2001,"status":1,"name":"Echo Fit Compression Short-29-Purple","price":24,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","8","2"],"size":"173","color":"57","image":"/w/s/wsh07-purple_main.jpg","small_image":"/w/s/wsh07-purple_main.jpg","thumbnail":"/w/s/wsh07-purple_main.jpg","url_key":"echo-fit-compression-short-29-purple","msrp_display_actual_price_type":"0","final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24}],"configurable_options":[{"id":285,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":2002,"attribute_code":"color"},{"id":284,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":2002,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[172,173],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-2002.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2029","_score":1,"_source":{"id":2029,"sku":"WSH11","name":"Ina Compression Short","attribute_set_id":10,"price":49,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                            \n

                            • Royal blue bike shorts.
                            • Compression fit.
                            • Moisture-wicking.
                            • Anti-microbial.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh11-blue_main.jpg","small_image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ina-compression-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,151],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"0","style_bottom":[112,105,108],"pattern":"197","climate":[202,212,209],"slug":"ina-compression-short-2029","links":{},"stock":{"item_id":2029,"product_id":2029,"stock_id":1,"qty":9,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH11-28-Blue","id":2023,"status":1,"name":"Ina Compression Short-28-Blue","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"172","color":"50","image":"/w/s/wsh11-blue_main.jpg","small_image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","url_key":"ina-compression-short-28-blue","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"WSH11-28-Orange","id":2024,"status":1,"name":"Ina Compression Short-28-Orange","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"172","color":"56","image":"/w/s/wsh11-orange_main.jpg","small_image":"/w/s/wsh11-orange_main.jpg","thumbnail":"/w/s/wsh11-orange_main.jpg","url_key":"ina-compression-short-28-orange","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"WSH11-28-Red","id":2025,"status":1,"name":"Ina Compression Short-28-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"172","color":"58","image":"/w/s/wsh11-red_main.jpg","small_image":"/w/s/wsh11-red_main.jpg","thumbnail":"/w/s/wsh11-red_main.jpg","url_key":"ina-compression-short-28-red","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"WSH11-29-Blue","id":2026,"status":1,"name":"Ina Compression Short-29-Blue","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"173","color":"50","image":"/w/s/wsh11-blue_main.jpg","small_image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","url_key":"ina-compression-short-29-blue","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"WSH11-29-Orange","id":2027,"status":1,"name":"Ina Compression Short-29-Orange","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"173","color":"56","image":"/w/s/wsh11-orange_main.jpg","small_image":"/w/s/wsh11-orange_main.jpg","thumbnail":"/w/s/wsh11-orange_main.jpg","url_key":"ina-compression-short-29-orange","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49},{"sku":"WSH11-29-Red","id":2028,"status":1,"name":"Ina Compression Short-29-Red","price":49,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"173","color":"58","image":"/w/s/wsh11-red_main.jpg","small_image":"/w/s/wsh11-red_main.jpg","thumbnail":"/w/s/wsh11-red_main.jpg","url_key":"ina-compression-short-29-red","msrp_display_actual_price_type":"0","final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49}],"configurable_options":[{"id":293,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":2029,"attribute_code":"color"},{"id":292,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":2029,"attribute_code":"size"}],"color_options":[50,56,58],"size_options":[172,173],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-2029.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2045","_score":1,"_source":{"id":2045,"sku":"WSH12","name":"Erika Running Short","attribute_set_id":10,"price":45,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                            \n

                            • Seafoam pattern running shorts.
                            • Elastic waistband.
                            • Snug fit.
                            • 4'' inseam.
                            • 76% premium brushed Nylon / 24% Spandex.

                            ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"erika-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[106,112],"pattern":"196","climate":[212,206,209],"slug":"erika-running-short-2045","links":{},"stock":{"item_id":2045,"product_id":2045,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH12-28-Green","id":2030,"status":1,"name":"Erika Running Short-28-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"172","color":"53","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","url_key":"erika-running-short-28-green","special_price":null,"special_from_date":"2019-06-25 00:00:00","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"minimal_price":45,"regular_price":45},{"sku":"WSH12-28-Purple","id":2031,"status":1,"name":"Erika Running Short-28-Purple","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"172","color":"57","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","url_key":"erika-running-short-28-purple","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-28-Red","id":2032,"status":1,"name":"Erika Running Short-28-Red","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"172","color":"58","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","url_key":"erika-running-short-28-red","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-29-Green","id":2033,"status":1,"name":"Erika Running Short-29-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"173","color":"53","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","url_key":"erika-running-short-29-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-29-Purple","id":2034,"status":1,"name":"Erika Running Short-29-Purple","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"173","color":"57","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","url_key":"erika-running-short-29-purple","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-29-Red","id":2035,"status":1,"name":"Erika Running Short-29-Red","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"173","color":"58","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","url_key":"erika-running-short-29-red","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-30-Green","id":2036,"status":1,"name":"Erika Running Short-30-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"174","color":"53","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","url_key":"erika-running-short-30-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-30-Purple","id":2037,"status":1,"name":"Erika Running Short-30-Purple","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"174","color":"57","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","url_key":"erika-running-short-30-purple","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-30-Red","id":2038,"status":1,"name":"Erika Running Short-30-Red","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"174","color":"58","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","url_key":"erika-running-short-30-red","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-31-Green","id":2039,"status":1,"name":"Erika Running Short-31-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"175","color":"53","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","url_key":"erika-running-short-31-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-31-Purple","id":2040,"status":1,"name":"Erika Running Short-31-Purple","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"175","color":"57","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","url_key":"erika-running-short-31-purple","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-31-Red","id":2041,"status":1,"name":"Erika Running Short-31-Red","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"175","color":"58","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","url_key":"erika-running-short-31-red","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-32-Green","id":2042,"status":1,"name":"Erika Running Short-32-Green","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"176","color":"53","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","url_key":"erika-running-short-32-green","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-32-Purple","id":2043,"status":1,"name":"Erika Running Short-32-Purple","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"176","color":"57","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","url_key":"erika-running-short-32-purple","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45},{"sku":"WSH12-32-Red","id":2044,"status":1,"name":"Erika Running Short-32-Red","price":45,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","34","2"],"size":"176","color":"58","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","url_key":"erika-running-short-32-red","msrp_display_actual_price_type":"0","final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45}],"configurable_options":[{"id":295,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":2045,"attribute_code":"color"},{"id":294,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":2045,"attribute_code":"size"}],"color_options":[53,57,58],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-2045.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1968","_score":1,"_source":{"id":1968,"sku":"WSH04-31-Orange","name":"Artemis Running Short-31-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                            \n

                            • Black rouched shorts with mint waist.
                            • Soft, lightweight construction.
                            • LumaTech™ wicking technology.
                            • Semi-fitted.

                            ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-31-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"artemis-running-short-31-orange-1968","links":{},"stock":{"item_id":1968,"product_id":1968,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-31-orange-1968.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1964","_score":1,"_source":{"id":1964,"sku":"WSH04-30-Green","name":"Artemis Running Short-30-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                            \n

                            • Black rouched shorts with mint waist.
                            • Soft, lightweight construction.
                            • LumaTech™ wicking technology.
                            • Semi-fitted.

                            ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-30-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"artemis-running-short-30-green-1964","links":{},"stock":{"item_id":1964,"product_id":1964,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-30-green-1964.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1971","_score":1,"_source":{"id":1971,"sku":"WSH04-32-Orange","name":"Artemis Running Short-32-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                            \n

                            • Black rouched shorts with mint waist.
                            • Soft, lightweight construction.
                            • LumaTech™ wicking technology.
                            • Semi-fitted.

                            ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-32-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"artemis-running-short-32-orange-1971","links":{},"stock":{"item_id":1971,"product_id":1971,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-32-orange-1971.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1979","_score":1,"_source":{"id":1979,"sku":"WSH05-30-Blue","name":"Bess Yoga Short-30-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                            \n

                            • Navy cotton shorts with light bue waist detail.
                            • Front shirred waistband.
                            • Flat-lock, chafe-free side seams.
                            • Vented gusset.
                            • Hidden interior pocket.
                            • Sustainable and recycled fabric.

                            ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-30-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"bess-yoga-short-30-blue-1979","links":{},"stock":{"item_id":1979,"product_id":1979,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-30-blue-1979.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1981","_score":1,"_source":{"id":1981,"sku":"WSH05-30-Yellow","name":"Bess Yoga Short-30-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                            \n

                            • Navy cotton shorts with light bue waist detail.
                            • Front shirred waistband.
                            • Flat-lock, chafe-free side seams.
                            • Vented gusset.
                            • Hidden interior pocket.
                            • Sustainable and recycled fabric.

                            ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-30-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"bess-yoga-short-30-yellow-1981","links":{},"stock":{"item_id":1981,"product_id":1981,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-30-yellow-1981.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1977","_score":1,"_source":{"id":1977,"sku":"WSH05-29-Purple","name":"Bess Yoga Short-29-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                            \n

                            • Navy cotton shorts with light bue waist detail.
                            • Front shirred waistband.
                            • Flat-lock, chafe-free side seams.
                            • Vented gusset.
                            • Hidden interior pocket.
                            • Sustainable and recycled fabric.

                            ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bess-yoga-short-29-purple-1977","links":{},"stock":{"item_id":1977,"product_id":1977,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-29-purple-1977.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1954","_score":1,"_source":{"id":1954,"sku":"WSH03-32-Gray","name":"Gwen Drawstring Bike Short-32-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                            For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                            \n

                            • Dark heather gray rouched bike shorts.
                            • Fitted. Inseam: 2\".
                            • Machine wash/dry.

                            ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"gwen-drawstring-bike-short-32-gray-1954","links":{},"stock":{"item_id":1954,"product_id":1954,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-32-gray-1954.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1980","_score":1,"_source":{"id":1980,"sku":"WSH05-30-Purple","name":"Bess Yoga Short-30-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                            \n

                            • Navy cotton shorts with light bue waist detail.
                            • Front shirred waistband.
                            • Flat-lock, chafe-free side seams.
                            • Vented gusset.
                            • Hidden interior pocket.
                            • Sustainable and recycled fabric.

                            ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-30-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"bess-yoga-short-30-purple-1980","links":{},"stock":{"item_id":1980,"product_id":1980,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-30-purple-1980.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1975","_score":1,"_source":{"id":1975,"sku":"WSH05-28-Yellow","name":"Bess Yoga Short-28-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                            \n

                            • Navy cotton shorts with light bue waist detail.
                            • Front shirred waistband.
                            • Flat-lock, chafe-free side seams.
                            • Vented gusset.
                            • Hidden interior pocket.
                            • Sustainable and recycled fabric.

                            ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-28-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bess-yoga-short-28-yellow-1975","links":{},"stock":{"item_id":1975,"product_id":1975,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-28-yellow-1975.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1966","_score":1,"_source":{"id":1966,"sku":"WSH04-31-Black","name":"Artemis Running Short-31-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                            \n

                            • Black rouched shorts with mint waist.
                            • Soft, lightweight construction.
                            • LumaTech™ wicking technology.
                            • Semi-fitted.

                            ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-31-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"artemis-running-short-31-black-1966","links":{},"stock":{"item_id":1966,"product_id":1966,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-31-black-1966.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1985","_score":1,"_source":{"id":1985,"sku":"WSH05-32-Blue","name":"Bess Yoga Short-32-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                            \n

                            • Navy cotton shorts with light bue waist detail.
                            • Front shirred waistband.
                            • Flat-lock, chafe-free side seams.
                            • Vented gusset.
                            • Hidden interior pocket.
                            • Sustainable and recycled fabric.

                            ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"bess-yoga-short-32-blue-1985","links":{},"stock":{"item_id":1985,"product_id":1985,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-32-blue-1985.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1989","_score":1,"_source":{"id":1989,"sku":"WSH06-28-Gray","name":"Angel Light Running Short-28-Gray","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                            \n

                            • Dark heather gray running shorts.
                            • Snug fit.
                            • Elastic waistband.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh06-gray_main.jpg","small_image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","color":"52","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"angel-light-running-short-28-gray-1989","links":{},"stock":{"item_id":1989,"product_id":1989,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh06-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh06-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-28-gray-1989.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1976","_score":1,"_source":{"id":1976,"sku":"WSH05-29-Blue","name":"Bess Yoga Short-29-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                            \n

                            • Navy cotton shorts with light bue waist detail.
                            • Front shirred waistband.
                            • Flat-lock, chafe-free side seams.
                            • Vented gusset.
                            • Hidden interior pocket.
                            • Sustainable and recycled fabric.

                            ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bess-yoga-short-29-blue-1976","links":{},"stock":{"item_id":1976,"product_id":1976,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-29-blue-1976.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1986","_score":1,"_source":{"id":1986,"sku":"WSH05-32-Purple","name":"Bess Yoga Short-32-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                            \n

                            • Navy cotton shorts with light bue waist detail.
                            • Front shirred waistband.
                            • Flat-lock, chafe-free side seams.
                            • Vented gusset.
                            • Hidden interior pocket.
                            • Sustainable and recycled fabric.

                            ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"bess-yoga-short-32-purple-1986","links":{},"stock":{"item_id":1986,"product_id":1986,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-32-purple-1986.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1994","_score":1,"_source":{"id":1994,"sku":"WSH06-29-Purple","name":"Angel Light Running Short-29-Purple","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                            \n

                            • Dark heather gray running shorts.
                            • Snug fit.
                            • Elastic waistband.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh06-purple_main.jpg","small_image":"/w/s/wsh06-purple_main.jpg","thumbnail":"/w/s/wsh06-purple_main.jpg","color":"57","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"angel-light-running-short-29-purple-1994","links":{},"stock":{"item_id":1994,"product_id":1994,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-29-purple-1994.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1978","_score":1,"_source":{"id":1978,"sku":"WSH05-29-Yellow","name":"Bess Yoga Short-29-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                            \n

                            • Navy cotton shorts with light bue waist detail.
                            • Front shirred waistband.
                            • Flat-lock, chafe-free side seams.
                            • Vented gusset.
                            • Hidden interior pocket.
                            • Sustainable and recycled fabric.

                            ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-29-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bess-yoga-short-29-yellow-1978","links":{},"stock":{"item_id":1978,"product_id":1978,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-29-yellow-1978.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1993","_score":1,"_source":{"id":1993,"sku":"WSH06-29-Orange","name":"Angel Light Running Short-29-Orange","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                            \n

                            • Dark heather gray running shorts.
                            • Snug fit.
                            • Elastic waistband.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh06-orange_main.jpg","small_image":"/w/s/wsh06-orange_main.jpg","thumbnail":"/w/s/wsh06-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"angel-light-running-short-29-orange-1993","links":{},"stock":{"item_id":1993,"product_id":1993,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-orange_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-29-orange-1993.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1991","_score":1,"_source":{"id":1991,"sku":"WSH06-28-Purple","name":"Angel Light Running Short-28-Purple","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                            \n

                            • Dark heather gray running shorts.
                            • Snug fit.
                            • Elastic waistband.
                            • Cocona® performance fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh06-purple_main.jpg","small_image":"/w/s/wsh06-purple_main.jpg","thumbnail":"/w/s/wsh06-purple_main.jpg","color":"57","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"angel-light-running-short-28-purple-1991","links":{},"stock":{"item_id":1991,"product_id":1991,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh06-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-28-purple-1991.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1999","_score":1,"_source":{"id":1999,"sku":"WSH07-29-Black","name":"Echo Fit Compression Short-29-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                            \n

                            • Black compression shorts.
                            • High-waisted cut.
                            • Compression fit.
                            • Inseam: 1.0\".
                            • Machine wash/dry.

                            ","image":"/w/s/wsh07-black_main.jpg","small_image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","color":"49","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"echo-fit-compression-short-29-black-1999","links":{},"stock":{"item_id":1999,"product_id":1999,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh07-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh07-black_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8","path":"collections/yoga-new/new-luma-yoga-collection-8"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-29-black-1999.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1987","_score":1,"_source":{"id":1987,"sku":"WSH05-32-Yellow","name":"Bess Yoga Short-32-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                            \n

                            • Navy cotton shorts with light bue waist detail.
                            • Front shirred waistband.
                            • Flat-lock, chafe-free side seams.
                            • Vented gusset.
                            • Hidden interior pocket.
                            • Sustainable and recycled fabric.

                            ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-32-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"bess-yoga-short-32-yellow-1987","links":{},"stock":{"item_id":1987,"product_id":1987,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-32-yellow-1987.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2033","_score":1,"_source":{"id":2033,"sku":"WSH12-29-Green","name":"Erika Running Short-29-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                            \n

                            • Seafoam pattern running shorts.
                            • Elastic waistband.
                            • Snug fit.
                            • 4'' inseam.
                            • 76% premium brushed Nylon / 24% Spandex.

                            ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"erika-running-short-29-green-2033","links":{},"stock":{"item_id":2033,"product_id":2033,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-29-green-2033.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2039","_score":1,"_source":{"id":2039,"sku":"WSH12-31-Green","name":"Erika Running Short-31-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                            \n

                            • Seafoam pattern running shorts.
                            • Elastic waistband.
                            • Snug fit.
                            • 4'' inseam.
                            • 76% premium brushed Nylon / 24% Spandex.

                            ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-31-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"erika-running-short-31-green-2039","links":{},"stock":{"item_id":2039,"product_id":2039,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-31-green-2039.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2030","_score":1,"_source":{"id":2030,"sku":"WSH12-28-Green","name":"Erika Running Short-28-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2019-08-08 07:03:33","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":"48.0000","minimal_price":45,"regular_price":45,"description":"

                            A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                            \r\n

                            • Seafoam pattern running shorts.
                            • Elastic waistband.
                            • Snug fit.
                            • 4'' inseam.
                            • 76% premium brushed Nylon / 24% Spandex.

                            ","special_from_date":"2019-06-25 00:00:00","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-28-green","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"172","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"erika-running-short-28-green-2030","links":{},"stock":{"item_id":2030,"product_id":2030,"stock_id":1,"qty":33,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":null,"vid":null},{"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":null,"vid":null},{"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":null,"vid":null},{"image":"/2/0/20972656_640.jpg","pos":4,"typ":"external-video","lab":null,"vid":{"url":"https://vimeo.com/798022","title":"Big Buck Bunny - Official Trailer","desc":"The official trailer for BIG BUCK BUNNY\r\n\r\nwww.bigbuckbunny.org","meta":"","video_id":"798022","type":"vimeo"}}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-28-green-2030.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2046","_score":1,"_source":{"id":2046,"sku":"24-WG085_Group","name":"Set of Sprite Yoga Straps","attribute_set_id":11,"status":1,"visibility":4,"type_id":"grouped","created_at":"2017-11-06 12:17:53","updated_at":"2019-07-05 12:07:54","product_links":[{"sku":"24-WG085_Group","link_type":"associated","linked_product_sku":"24-WG085","linked_product_type":"simple","position":0,"extension_attributes":{"qty":20}},{"sku":"24-WG085_Group","link_type":"associated","linked_product_sku":"24-WG086","linked_product_type":"simple","position":1,"extension_attributes":{"qty":30}},{"sku":"24-WG085_Group","link_type":"associated","linked_product_sku":"24-WG087","linked_product_type":"simple","position":2,"extension_attributes":{"qty":40}}],"tier_prices":[],"custom_attributes":null,"final_price":14,"max_price":14,"max_regular_price":14,"minimal_regular_price":14,"special_price":null,"minimal_price":14,"regular_price":0,"description":"

                            Great set of Sprite Yoga Straps for every stretch and hold you need. There are three straps in this set: 6', 8' and 10'.

                            \r\n
                              \r\n
                            • 100% soft and durable cotton.\r\n
                            • Plastic cinch buckle is easy to use.\r\n
                            • Choice of three natural colors made from phthalate and heavy metal free dyes.\r\n
                            ","image":"/l/u/luma-yoga-strap-set.jpg","small_image":"/l/u/luma-yoga-strap-set.jpg","thumbnail":"/l/u/luma-yoga-strap-set.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"set-of-sprite-yoga-straps","gift_message_available":"0","activity":"8","material":[32,44],"category_gear":"87","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"set-of-sprite-yoga-straps-2046","links":{"associated":[{"sku":"24-WG085","pos":0},{"sku":"24-WG086","pos":1},{"sku":"24-WG087","pos":2}]},"stock":{"item_id":2046,"product_id":2046,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/l/u/luma-yoga-strap-set.jpg","pos":1,"typ":"image","lab":"Image","vid":null}],"category":[{"category_id":3,"name":"Equipaggiamento","slug":"equipaggiamento-3","path":"gear/equipaggiamento-3"},{"category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5","path":"gear/fitness-equipment/fitness-equipment-5"}],"url_path":"gear/equipaggiamento-3/set-of-sprite-yoga-straps-2046.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2040","_score":1,"_source":{"id":2040,"sku":"WSH12-31-Purple","name":"Erika Running Short-31-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                            \n

                            • Seafoam pattern running shorts.
                            • Elastic waistband.
                            • Snug fit.
                            • 4'' inseam.
                            • 76% premium brushed Nylon / 24% Spandex.

                            ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-31-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"erika-running-short-31-purple-2040","links":{},"stock":{"item_id":2040,"product_id":2040,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-31-purple-2040.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2026","_score":1,"_source":{"id":2026,"sku":"WSH11-29-Blue","name":"Ina Compression Short-29-Blue","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                            \n

                            • Royal blue bike shorts.
                            • Compression fit.
                            • Moisture-wicking.
                            • Anti-microbial.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh11-blue_main.jpg","small_image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","color":"50","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ina-compression-short-29-blue-2026","links":{},"stock":{"item_id":2026,"product_id":2026,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh11-blue_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh11-blue_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-29-blue-2026.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2031","_score":1,"_source":{"id":2031,"sku":"WSH12-28-Purple","name":"Erika Running Short-28-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                            \n

                            • Seafoam pattern running shorts.
                            • Elastic waistband.
                            • Snug fit.
                            • 4'' inseam.
                            • 76% premium brushed Nylon / 24% Spandex.

                            ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"erika-running-short-28-purple-2031","links":{},"stock":{"item_id":2031,"product_id":2031,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-28-purple-2031.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2041","_score":1,"_source":{"id":2041,"sku":"WSH12-31-Red","name":"Erika Running Short-31-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                            \n

                            • Seafoam pattern running shorts.
                            • Elastic waistband.
                            • Snug fit.
                            • 4'' inseam.
                            • 76% premium brushed Nylon / 24% Spandex.

                            ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-31-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"erika-running-short-31-red-2041","links":{},"stock":{"item_id":2041,"product_id":2041,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34","path":"collections/erin-recommends/erin-recommends-34"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-31-red-2041.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2022","_score":1,"_source":{"id":2022,"sku":"WSH10","name":"Ana Running Short","attribute_set_id":10,"price":40,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40,"description":"

                            Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                            \n

                            • Black/pink two-layer shorts.
                            • Low-rise elastic waistband.
                            • Relaxed fit.
                            • Ultra-lightweight fabric.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh10-black_main.jpg","small_image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ana-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,154,38],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"106","pattern":"198","climate":[202,209],"slug":"ana-running-short-2022","links":{},"stock":{"item_id":2022,"product_id":2022,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH10-28-Black","id":2016,"status":1,"name":"Ana Running Short-28-Black","price":40,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","36","2"],"size":"172","color":"49","image":"/w/s/wsh10-black_main.jpg","small_image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","url_key":"ana-running-short-28-black","msrp_display_actual_price_type":"0","final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40},{"sku":"WSH10-28-Orange","id":2017,"status":1,"name":"Ana Running Short-28-Orange","price":40,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","36","2"],"size":"172","color":"56","image":"/w/s/wsh10-orange_main.jpg","small_image":"/w/s/wsh10-orange_main.jpg","thumbnail":"/w/s/wsh10-orange_main.jpg","url_key":"ana-running-short-28-orange","msrp_display_actual_price_type":"0","final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40},{"sku":"WSH10-28-White","id":2018,"status":1,"name":"Ana Running Short-28-White","price":40,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","36","2"],"size":"172","color":"59","image":"/w/s/wsh10-white_main.jpg","small_image":"/w/s/wsh10-white_main.jpg","thumbnail":"/w/s/wsh10-white_main.jpg","url_key":"ana-running-short-28-white","msrp_display_actual_price_type":"0","final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40},{"sku":"WSH10-29-Black","id":2019,"status":1,"name":"Ana Running Short-29-Black","price":40,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","36","2"],"size":"173","color":"49","image":"/w/s/wsh10-black_main.jpg","small_image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","url_key":"ana-running-short-29-black","msrp_display_actual_price_type":"0","final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40},{"sku":"WSH10-29-Orange","id":2020,"status":1,"name":"Ana Running Short-29-Orange","price":40,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","36","2"],"size":"173","color":"56","image":"/w/s/wsh10-orange_main.jpg","small_image":"/w/s/wsh10-orange_main.jpg","thumbnail":"/w/s/wsh10-orange_main.jpg","url_key":"ana-running-short-29-orange","msrp_display_actual_price_type":"0","final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40},{"sku":"WSH10-29-White","id":2021,"status":1,"name":"Ana Running Short-29-White","price":40,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","36","2"],"size":"173","color":"59","image":"/w/s/wsh10-white_main.jpg","small_image":"/w/s/wsh10-white_main.jpg","thumbnail":"/w/s/wsh10-white_main.jpg","url_key":"ana-running-short-29-white","msrp_display_actual_price_type":"0","final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40}],"configurable_options":[{"id":291,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":59,"label":"White"}],"product_id":2022,"attribute_code":"color"},{"id":290,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":2022,"attribute_code":"size"}],"color_options":[49,56,59],"size_options":[172,173],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-2022.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2008","_score":1,"_source":{"id":2008,"sku":"WSH08","name":"Sybil Running Short","attribute_set_id":10,"price":44,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

                            \n

                            • Blue running shorts with green waist.
                            • Drawstring-adjustable waist.
                            • 4\" inseam. Machine wash/line dry.

                            ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sybil-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,33,36],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"106","pattern":"198","climate":[205,212],"slug":"sybil-running-short-2008","links":{},"stock":{"item_id":2008,"product_id":2008,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH08-28-Purple","id":2003,"status":1,"name":"Sybil Running Short-28-Purple","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","35","2"],"size":"172","color":"57","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","url_key":"sybil-running-short-28-purple","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"WSH08-29-Purple","id":2004,"status":1,"name":"Sybil Running Short-29-Purple","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","35","2"],"size":"173","color":"57","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","url_key":"sybil-running-short-29-purple","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"WSH08-30-Purple","id":2005,"status":1,"name":"Sybil Running Short-30-Purple","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","35","2"],"size":"174","color":"57","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","url_key":"sybil-running-short-30-purple","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"WSH08-31-Purple","id":2006,"status":1,"name":"Sybil Running Short-31-Purple","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","35","2"],"size":"175","color":"57","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","url_key":"sybil-running-short-31-purple","msrp_display_actual_price_type":"0"},{"sku":"WSH08-32-Purple","id":2007,"status":1,"name":"Sybil Running Short-32-Purple","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28","35","2"],"size":"176","color":"57","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","url_key":"sybil-running-short-32-purple","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44}],"configurable_options":[{"id":287,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":57,"label":"Purple"}],"product_id":2008,"attribute_code":"color"},{"id":286,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":2008,"attribute_code":"size"}],"color_options":[57],"size_options":[172,173,174,175,176],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-2008.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2015","_score":1,"_source":{"id":2015,"sku":"WSH09","name":"Mimi All-Purpose Short","attribute_set_id":10,"price":44,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                            \n

                            • Gray/seafoam two-layer shorts.
                            • Water-resistant construction.
                            • Inner mesh brief for breathable support.
                            • 2.0\" inseam.
                            • Reflective trim for visibility.

                            ","image":"/w/s/wsh09-gray_main.jpg","small_image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mimi-all-purpose-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,154,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"106","pattern":"198","climate":[206,209],"slug":"mimi-all-purpose-short-2015","links":{},"stock":{"item_id":2015,"product_id":2015,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh09-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh09-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"WSH09-28-Gray","id":2009,"status":1,"name":"Mimi All-Purpose Short-28-Gray","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"52","image":"/w/s/wsh09-gray_main.jpg","small_image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","url_key":"mimi-all-purpose-short-28-gray","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"WSH09-28-Green","id":2010,"status":1,"name":"Mimi All-Purpose Short-28-Green","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"53","image":"/w/s/wsh09-green_main.jpg","small_image":"/w/s/wsh09-green_main.jpg","thumbnail":"/w/s/wsh09-green_main.jpg","url_key":"mimi-all-purpose-short-28-green","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"WSH09-28-White","id":2011,"status":1,"name":"Mimi All-Purpose Short-28-White","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"172","color":"59","image":"/w/s/wsh09-white_main.jpg","small_image":"/w/s/wsh09-white_main.jpg","thumbnail":"/w/s/wsh09-white_main.jpg","url_key":"mimi-all-purpose-short-28-white","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"WSH09-29-Gray","id":2012,"status":1,"name":"Mimi All-Purpose Short-29-Gray","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"52","image":"/w/s/wsh09-gray_main.jpg","small_image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","url_key":"mimi-all-purpose-short-29-gray","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"WSH09-29-Green","id":2013,"status":1,"name":"Mimi All-Purpose Short-29-Green","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"53","image":"/w/s/wsh09-green_main.jpg","small_image":"/w/s/wsh09-green_main.jpg","thumbnail":"/w/s/wsh09-green_main.jpg","url_key":"mimi-all-purpose-short-29-green","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44},{"sku":"WSH09-29-White","id":2014,"status":1,"name":"Mimi All-Purpose Short-29-White","price":44,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["28"],"size":"173","color":"59","image":"/w/s/wsh09-white_main.jpg","small_image":"/w/s/wsh09-white_main.jpg","thumbnail":"/w/s/wsh09-white_main.jpg","url_key":"mimi-all-purpose-short-29-white","msrp_display_actual_price_type":"0","final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44}],"configurable_options":[{"id":289,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"},{"value_index":59,"label":"White"}],"product_id":2015,"attribute_code":"color"},{"id":288,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":2015,"attribute_code":"size"}],"color_options":[52,53,59],"size_options":[172,173],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-2015.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2019","_score":1,"_source":{"id":2019,"sku":"WSH10-29-Black","name":"Ana Running Short-29-Black","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40,"description":"

                            Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                            \n

                            • Black/pink two-layer shorts.
                            • Low-rise elastic waistband.
                            • Relaxed fit.
                            • Ultra-lightweight fabric.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh10-black_main.jpg","small_image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","color":"49","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ana-running-short-29-black-2019","links":{},"stock":{"item_id":2019,"product_id":2019,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-29-black-2019.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2018","_score":1,"_source":{"id":2018,"sku":"WSH10-28-White","name":"Ana Running Short-28-White","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40,"description":"

                            Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                            \n

                            • Black/pink two-layer shorts.
                            • Low-rise elastic waistband.
                            • Relaxed fit.
                            • Ultra-lightweight fabric.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh10-white_main.jpg","small_image":"/w/s/wsh10-white_main.jpg","thumbnail":"/w/s/wsh10-white_main.jpg","color":"59","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ana-running-short-28-white-2018","links":{},"stock":{"item_id":2018,"product_id":2018,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-white_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-28-white-2018.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2010","_score":1,"_source":{"id":2010,"sku":"WSH09-28-Green","name":"Mimi All-Purpose Short-28-Green","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                            \n

                            • Gray/seafoam two-layer shorts.
                            • Water-resistant construction.
                            • Inner mesh brief for breathable support.
                            • 2.0\" inseam.
                            • Reflective trim for visibility.

                            ","image":"/w/s/wsh09-green_main.jpg","small_image":"/w/s/wsh09-green_main.jpg","thumbnail":"/w/s/wsh09-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"mimi-all-purpose-short-28-green-2010","links":{},"stock":{"item_id":2010,"product_id":2010,"stock_id":1,"qty":77,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-28-green-2010.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2007","_score":1,"_source":{"id":2007,"sku":"WSH08-32-Purple","name":"Sybil Running Short-32-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

                            \n

                            • Blue running shorts with green waist.
                            • Drawstring-adjustable waist.
                            • 4\" inseam. Machine wash/line dry.

                            ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"sybil-running-short-32-purple-2007","links":{},"stock":{"item_id":2007,"product_id":2007,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-32-purple-2007.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2013","_score":1,"_source":{"id":2013,"sku":"WSH09-29-Green","name":"Mimi All-Purpose Short-29-Green","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                            \n

                            • Gray/seafoam two-layer shorts.
                            • Water-resistant construction.
                            • Inner mesh brief for breathable support.
                            • 2.0\" inseam.
                            • Reflective trim for visibility.

                            ","image":"/w/s/wsh09-green_main.jpg","small_image":"/w/s/wsh09-green_main.jpg","thumbnail":"/w/s/wsh09-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"mimi-all-purpose-short-29-green-2013","links":{},"stock":{"item_id":2013,"product_id":2013,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh09-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-29-green-2013.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2016","_score":1,"_source":{"id":2016,"sku":"WSH10-28-Black","name":"Ana Running Short-28-Black","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40,"description":"

                            Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                            \n

                            • Black/pink two-layer shorts.
                            • Low-rise elastic waistband.
                            • Relaxed fit.
                            • Ultra-lightweight fabric.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/w/s/wsh10-black_main.jpg","small_image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","color":"49","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ana-running-short-28-black-2016","links":{},"stock":{"item_id":2016,"product_id":2016,"stock_id":1,"qty":35,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh10-black_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh10-black_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh10-black_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36","path":"collections/eco-friendly/eco-friendly-36"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-28-black-2016.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2005","_score":1,"_source":{"id":2005,"sku":"WSH08-30-Purple","name":"Sybil Running Short-30-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

                            \n

                            • Blue running shorts with green waist.
                            • Drawstring-adjustable waist.
                            • 4\" inseam. Machine wash/line dry.

                            ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-30-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"sybil-running-short-30-purple-2005","links":{},"stock":{"item_id":2005,"product_id":2005,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-30-purple-2005.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"2006","_score":1,"_source":{"id":2006,"sku":"WSH08-31-Purple","name":"Sybil Running Short-31-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

                            \n

                            • Blue running shorts with green waist.
                            • Drawstring-adjustable waist.
                            • 4\" inseam. Machine wash/line dry.

                            ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-31-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"sybil-running-short-31-purple-2006","links":{},"stock":{"item_id":2006,"product_id":2006,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-01-14 09:38:48","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-31-purple-2006.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1983","_score":1,"_source":{"id":1983,"sku":"WSH05-31-Purple","name":"Bess Yoga Short-31-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                            \n

                            • Navy cotton shorts with light bue waist detail.
                            • Front shirred waistband.
                            • Flat-lock, chafe-free side seams.
                            • Vented gusset.
                            • Hidden interior pocket.
                            • Sustainable and recycled fabric.

                            ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-31-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"bess-yoga-short-31-purple-1983","links":{},"stock":{"item_id":1983,"product_id":1983,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-31-purple-1983.html","tsk":1568837766515}} +{"_index":"vue_storefront_catalog_it_product","_type":"_doc","_id":"1984","_score":1,"_source":{"id":1984,"sku":"WSH05-31-Yellow","name":"Bess Yoga Short-31-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                            \n

                            • Navy cotton shorts with light bue waist detail.
                            • Front shirred waistband.
                            • Flat-lock, chafe-free side seams.
                            • Vented gusset.
                            • Hidden interior pocket.
                            • Sustainable and recycled fabric.

                            ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-31-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"bess-yoga-short-31-yellow-1984","links":{},"stock":{"item_id":1984,"product_id":1984,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":28,"name":"Shorts","slug":"shorts-28","path":"women/bottoms-women/shorts-women/shorts-28"},{"category_id":30,"name":"Women Sale","slug":"women-sale-30","path":"promotions/women-sale/women-sale-30"},{"category_id":2,"name":"Principale","slug":"principale-2","path":"principale-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-31-yellow-1984.html","tsk":1568837766515}} diff --git a/var/catalog_it_taxrule.json b/var/catalog_it_taxrule.json new file mode 100644 index 00000000..786971a2 --- /dev/null +++ b/var/catalog_it_taxrule.json @@ -0,0 +1 @@ +{"_index":"vue_storefront_catalog_it_taxrule","_type":"_doc","_id":"2","_score":1,"_source":{"id":2,"code":"General Taxes","priority":0,"position":0,"customer_tax_class_ids":[3],"product_tax_class_ids":[2],"tax_rate_ids":[6,5,7,4],"calculate_subtotal":false,"rates":[{"id":5,"tax_country_id":"IT","tax_region_id":0,"tax_postcode":"*","rate":23,"code":"VAT23-IT","titles":[]},{"id":4,"tax_country_id":"US","tax_region_id":0,"tax_postcode":"*","rate":23,"code":"VAT23","titles":[]},{"id":6,"tax_country_id":"DE","tax_region_id":0,"tax_postcode":"*","rate":23,"code":"VAT23-DE","titles":[]},{"id":7,"tax_country_id":"PL","tax_region_id":0,"tax_postcode":"*","rate":23,"code":"VAT23-PL","titles":[]}],"tsk":1568837763644}} diff --git a/var/catalog_product.json b/var/catalog_product.json new file mode 100644 index 00000000..5131acac --- /dev/null +++ b/var/catalog_product.json @@ -0,0 +1,2016 @@ +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"613","_score":1,"_source":{"id":613,"sku":"MS08-XS-Blue","name":"Strike Endurance Tee-XS-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"strike-endurance-tee-xs-blue-613","links":{},"stock":{"item_id":613,"product_id":613,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xs-blue-613.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"617","_score":1,"_source":{"id":617,"sku":"MS08-S-Red","name":"Strike Endurance Tee-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"strike-endurance-tee-s-red-617","links":{},"stock":{"item_id":617,"product_id":617,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-s-red-617.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"633","_score":1,"_source":{"id":633,"sku":"MT01-S-Red","name":"Erikssen CoolTech™ Fitness Tank-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erikssen-cooltech-and-trade-fitness-tank-s-red-633","links":{},"stock":{"item_id":633,"product_id":633,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-s-red-633.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"649","_score":1,"_source":{"id":649,"sku":"MT02-S-White","name":"Tristan Endurance Tank-S-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tristan-endurance-tank-s-white-649","links":{},"stock":{"item_id":649,"product_id":649,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-s-white-649.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"631","_score":1,"_source":{"id":631,"sku":"MT01-S-Gray","name":"Erikssen CoolTech™ Fitness Tank-S-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erikssen-cooltech-and-trade-fitness-tank-s-gray-631","links":{},"stock":{"item_id":631,"product_id":631,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-s-gray-631.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"625","_score":1,"_source":{"id":625,"sku":"MS08-XL-Blue","name":"Strike Endurance Tee-XL-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"strike-endurance-tee-xl-blue-625","links":{},"stock":{"item_id":625,"product_id":625,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xl-blue-625.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"641","_score":1,"_source":{"id":641,"sku":"MT01-XL-Orange","name":"Erikssen CoolTech™ Fitness Tank-XL-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erikssen-cooltech-and-trade-fitness-tank-xl-orange-641","links":{},"stock":{"item_id":641,"product_id":641,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xl-orange-641.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"601","_score":1,"_source":{"id":601,"sku":"MS07-S-White","name":"Deion Long-Sleeve EverCool™ Tee-S-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"deion-long-sleeve-evercool-and-trade-tee-s-white-601","links":{},"stock":{"item_id":601,"product_id":601,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-s-white-601.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"622","_score":1,"_source":{"id":622,"sku":"MS08-L-Blue","name":"Strike Endurance Tee-L-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"strike-endurance-tee-l-blue-622","links":{},"stock":{"item_id":622,"product_id":622,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-l-blue-622.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"602","_score":1,"_source":{"id":602,"sku":"MS07-M-Black","name":"Deion Long-Sleeve EverCool™ Tee-M-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"deion-long-sleeve-evercool-and-trade-tee-m-black-602","links":{},"stock":{"item_id":602,"product_id":602,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-m-black-602.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"637","_score":1,"_source":{"id":637,"sku":"MT01-L-Gray","name":"Erikssen CoolTech™ Fitness Tank-L-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erikssen-cooltech-and-trade-fitness-tank-l-gray-637","links":{},"stock":{"item_id":637,"product_id":637,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-l-gray-637.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"636","_score":1,"_source":{"id":636,"sku":"MT01-M-Red","name":"Erikssen CoolTech™ Fitness Tank-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erikssen-cooltech-and-trade-fitness-tank-m-red-636","links":{},"stock":{"item_id":636,"product_id":636,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-m-red-636.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"639","_score":1,"_source":{"id":639,"sku":"MT01-L-Red","name":"Erikssen CoolTech™ Fitness Tank-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erikssen-cooltech-and-trade-fitness-tank-l-red-639","links":{},"stock":{"item_id":639,"product_id":639,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-l-red-639.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"648","_score":1,"_source":{"id":648,"sku":"MT02-S-Red","name":"Tristan Endurance Tank-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tristan-endurance-tank-s-red-648","links":{},"stock":{"item_id":648,"product_id":648,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-s-red-648.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"646","_score":1,"_source":{"id":646,"sku":"MT02-XS-White","name":"Tristan Endurance Tank-XS-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tristan-endurance-tank-xs-white-646","links":{},"stock":{"item_id":646,"product_id":646,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xs-white-646.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"642","_score":1,"_source":{"id":642,"sku":"MT01-XL-Red","name":"Erikssen CoolTech™ Fitness Tank-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erikssen-cooltech-and-trade-fitness-tank-xl-red-642","links":{},"stock":{"item_id":642,"product_id":642,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xl-red-642.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"608","_score":1,"_source":{"id":608,"sku":"MS07-XL-Black","name":"Deion Long-Sleeve EverCool™ Tee-XL-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"deion-long-sleeve-evercool-and-trade-tee-xl-black-608","links":{},"stock":{"item_id":608,"product_id":608,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xl-black-608.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"635","_score":1,"_source":{"id":635,"sku":"MT01-M-Orange","name":"Erikssen CoolTech™ Fitness Tank-M-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erikssen-cooltech-and-trade-fitness-tank-m-orange-635","links":{},"stock":{"item_id":635,"product_id":635,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-m-orange-635.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"611","_score":1,"_source":{"id":611,"sku":"MS07","name":"Deion Long-Sleeve EverCool™ Tee","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"deion-long-sleeve-evercool-trade-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,153,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,204,205,209],"slug":"deion-long-sleeve-evercool-and-trade-tee-611","links":{},"stock":{"item_id":611,"product_id":611,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","small_image":"/m/s/ms07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"deion-long-sleeve-evercool-trade-tee-xs-black","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":39,"name":"Deion Long-Sleeve EverCool™ Tee-XS-Black","id":596,"category_ids":["16"],"sku":"MS07-XS-Black","status":1},{"image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","small_image":"/m/s/ms07-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"deion-long-sleeve-evercool-trade-tee-xs-green","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":39,"name":"Deion Long-Sleeve EverCool™ Tee-XS-Green","id":597,"category_ids":["16"],"sku":"MS07-XS-Green","status":1},{"image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","small_image":"/m/s/ms07-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"deion-long-sleeve-evercool-trade-tee-xs-white","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":39,"name":"Deion Long-Sleeve EverCool™ Tee-XS-White","id":598,"category_ids":["16"],"sku":"MS07-XS-White","status":1},{"image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","small_image":"/m/s/ms07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"deion-long-sleeve-evercool-trade-tee-s-black","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":39,"name":"Deion Long-Sleeve EverCool™ Tee-S-Black","id":599,"category_ids":["16"],"sku":"MS07-S-Black","status":1},{"image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","small_image":"/m/s/ms07-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"deion-long-sleeve-evercool-trade-tee-s-green","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":39,"name":"Deion Long-Sleeve EverCool™ Tee-S-Green","id":600,"category_ids":["16"],"sku":"MS07-S-Green","status":1},{"image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","small_image":"/m/s/ms07-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"deion-long-sleeve-evercool-trade-tee-s-white","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Deion Long-Sleeve EverCool™ Tee-S-White","id":601,"category_ids":["16"],"sku":"MS07-S-White","max_regular_price":39,"status":1},{"image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","small_image":"/m/s/ms07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"deion-long-sleeve-evercool-trade-tee-m-black","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Deion Long-Sleeve EverCool™ Tee-M-Black","id":602,"category_ids":["16"],"sku":"MS07-M-Black","max_regular_price":39,"status":1},{"image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","small_image":"/m/s/ms07-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"deion-long-sleeve-evercool-trade-tee-m-green","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Deion Long-Sleeve EverCool™ Tee-M-Green","id":603,"category_ids":["16"],"sku":"MS07-M-Green","max_regular_price":39,"status":1},{"image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","small_image":"/m/s/ms07-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"deion-long-sleeve-evercool-trade-tee-m-white","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Deion Long-Sleeve EverCool™ Tee-M-White","id":604,"category_ids":["16"],"sku":"MS07-M-White","max_regular_price":39,"status":1},{"image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","small_image":"/m/s/ms07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"deion-long-sleeve-evercool-trade-tee-l-black","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Deion Long-Sleeve EverCool™ Tee-L-Black","id":605,"category_ids":["16"],"sku":"MS07-L-Black","max_regular_price":39,"status":1},{"image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","small_image":"/m/s/ms07-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"deion-long-sleeve-evercool-trade-tee-l-green","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Deion Long-Sleeve EverCool™ Tee-L-Green","id":606,"category_ids":["16"],"sku":"MS07-L-Green","max_regular_price":39,"status":1},{"image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","small_image":"/m/s/ms07-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"deion-long-sleeve-evercool-trade-tee-l-white","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Deion Long-Sleeve EverCool™ Tee-L-White","id":607,"category_ids":["16"],"sku":"MS07-L-White","max_regular_price":39,"status":1},{"image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","small_image":"/m/s/ms07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"deion-long-sleeve-evercool-trade-tee-xl-black","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Deion Long-Sleeve EverCool™ Tee-XL-Black","id":608,"category_ids":["16"],"sku":"MS07-XL-Black","max_regular_price":39,"status":1},{"image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","small_image":"/m/s/ms07-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"deion-long-sleeve-evercool-trade-tee-xl-green","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Deion Long-Sleeve EverCool™ Tee-XL-Green","id":609,"category_ids":["16"],"sku":"MS07-XL-Green","max_regular_price":39,"status":1},{"image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","small_image":"/m/s/ms07-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"deion-long-sleeve-evercool-trade-tee-xl-white","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Deion Long-Sleeve EverCool™ Tee-XL-White","id":610,"category_ids":["16"],"sku":"MS07-XL-White","max_regular_price":39,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":59,"label":"White"}],"product_id":611,"id":71,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":611,"id":70,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,53,59],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-611.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"563","_score":1,"_source":{"id":563,"sku":"MS01","name":"Aero Daily Fitness Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-blue_main.jpg","small_image":"/m/s/ms01-blue_main.jpg","thumbnail":"/m/s/ms01-blue_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"aero-daily-fitness-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"aero-daily-fitness-tee-563","links":{},"stock":{"item_id":563,"product_id":563,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms01-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms01-blue_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","small_image":"/m/s/ms01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aero-daily-fitness-tee-xs-black","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":24,"name":"Aero Daily Fitness Tee-XS-Black","id":548,"category_ids":["16"],"sku":"MS01-XS-Black","status":1},{"image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","small_image":"/m/s/ms01-brown_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aero-daily-fitness-tee-xs-brown","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":24,"name":"Aero Daily Fitness Tee-XS-Brown","id":549,"category_ids":["16"],"sku":"MS01-XS-Brown","status":1},{"image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","small_image":"/m/s/ms01-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aero-daily-fitness-tee-xs-yellow","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":24,"name":"Aero Daily Fitness Tee-XS-Yellow","id":550,"category_ids":["16"],"sku":"MS01-XS-Yellow","status":1},{"image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","small_image":"/m/s/ms01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aero-daily-fitness-tee-s-black","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"168","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Aero Daily Fitness Tee-S-Black","id":551,"category_ids":["16"],"sku":"MS01-S-Black","max_regular_price":24,"status":1},{"image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","small_image":"/m/s/ms01-brown_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aero-daily-fitness-tee-s-brown","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"168","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Aero Daily Fitness Tee-S-Brown","id":552,"category_ids":["16"],"sku":"MS01-S-Brown","max_regular_price":24,"status":1},{"image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","small_image":"/m/s/ms01-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aero-daily-fitness-tee-s-yellow","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"168","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Aero Daily Fitness Tee-S-Yellow","id":553,"category_ids":["16"],"sku":"MS01-S-Yellow","max_regular_price":24,"status":1},{"image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","small_image":"/m/s/ms01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aero-daily-fitness-tee-m-black","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"169","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Aero Daily Fitness Tee-M-Black","id":554,"category_ids":["16"],"sku":"MS01-M-Black","max_regular_price":24,"status":1},{"image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","small_image":"/m/s/ms01-brown_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aero-daily-fitness-tee-m-brown","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"169","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Aero Daily Fitness Tee-M-Brown","id":555,"category_ids":["16"],"sku":"MS01-M-Brown","max_regular_price":24,"status":1},{"image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","small_image":"/m/s/ms01-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aero-daily-fitness-tee-m-yellow","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"169","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Aero Daily Fitness Tee-M-Yellow","id":556,"category_ids":["16"],"sku":"MS01-M-Yellow","max_regular_price":24,"status":1},{"image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","small_image":"/m/s/ms01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aero-daily-fitness-tee-l-black","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"170","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Aero Daily Fitness Tee-L-Black","id":557,"category_ids":["16"],"sku":"MS01-L-Black","max_regular_price":24,"status":1},{"image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","small_image":"/m/s/ms01-brown_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aero-daily-fitness-tee-l-brown","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"170","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Aero Daily Fitness Tee-L-Brown","id":558,"category_ids":["16"],"sku":"MS01-L-Brown","max_regular_price":24,"status":1},{"image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","small_image":"/m/s/ms01-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aero-daily-fitness-tee-l-yellow","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"170","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Aero Daily Fitness Tee-L-Yellow","id":559,"category_ids":["16"],"sku":"MS01-L-Yellow","max_regular_price":24,"status":1},{"image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","small_image":"/m/s/ms01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aero-daily-fitness-tee-xl-black","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"171","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Aero Daily Fitness Tee-XL-Black","id":560,"category_ids":["16"],"sku":"MS01-XL-Black","max_regular_price":24,"status":1},{"image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","small_image":"/m/s/ms01-brown_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aero-daily-fitness-tee-xl-brown","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"171","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Aero Daily Fitness Tee-XL-Brown","id":561,"category_ids":["16"],"sku":"MS01-XL-Brown","max_regular_price":24,"status":1},{"image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","small_image":"/m/s/ms01-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aero-daily-fitness-tee-xl-yellow","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"171","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Aero Daily Fitness Tee-XL-Yellow","id":562,"category_ids":["16"],"sku":"MS01-XL-Yellow","max_regular_price":24,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":51,"label":"Brown"},{"value_index":60,"label":"Yellow"}],"product_id":563,"id":65,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":563,"id":64,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,51,60],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-563.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"595","_score":1,"_source":{"id":595,"sku":"MS10","name":"Logan HeatTec® Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"logan-heattec-reg-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,152],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"logan-heattec-and-reg-tee-595","links":{},"stock":{"item_id":595,"product_id":595,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","small_image":"/m/s/ms10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"logan-heattec-reg-tee-xs-black","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"167","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Logan HeatTec® Tee-XS-Black","id":580,"category_ids":["16"],"sku":"MS10-XS-Black","max_regular_price":24,"status":1},{"image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","small_image":"/m/s/ms10-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"logan-heattec-reg-tee-xs-blue","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"167","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Logan HeatTec® Tee-XS-Blue","id":581,"category_ids":["16"],"sku":"MS10-XS-Blue","max_regular_price":24,"status":1},{"image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","small_image":"/m/s/ms10-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"logan-heattec-reg-tee-xs-red","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"167","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Logan HeatTec® Tee-XS-Red","id":582,"category_ids":["16"],"sku":"MS10-XS-Red","max_regular_price":24,"status":1},{"image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","small_image":"/m/s/ms10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"logan-heattec-reg-tee-s-black","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"168","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Logan HeatTec® Tee-S-Black","id":583,"category_ids":["16"],"sku":"MS10-S-Black","max_regular_price":24,"status":1},{"image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","small_image":"/m/s/ms10-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"logan-heattec-reg-tee-s-blue","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"168","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Logan HeatTec® Tee-S-Blue","id":584,"category_ids":["16"],"sku":"MS10-S-Blue","max_regular_price":24,"status":1},{"image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","small_image":"/m/s/ms10-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"logan-heattec-reg-tee-s-red","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"168","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Logan HeatTec® Tee-S-Red","id":585,"category_ids":["16"],"sku":"MS10-S-Red","max_regular_price":24,"status":1},{"image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","small_image":"/m/s/ms10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"logan-heattec-reg-tee-m-black","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"169","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Logan HeatTec® Tee-M-Black","id":586,"category_ids":["16"],"sku":"MS10-M-Black","max_regular_price":24,"status":1},{"image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","small_image":"/m/s/ms10-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"logan-heattec-reg-tee-m-blue","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"169","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Logan HeatTec® Tee-M-Blue","id":587,"category_ids":["16"],"sku":"MS10-M-Blue","max_regular_price":24,"status":1},{"image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","small_image":"/m/s/ms10-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"logan-heattec-reg-tee-m-red","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"169","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Logan HeatTec® Tee-M-Red","id":588,"category_ids":["16"],"sku":"MS10-M-Red","max_regular_price":24,"status":1},{"image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","small_image":"/m/s/ms10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"logan-heattec-reg-tee-l-black","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"170","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Logan HeatTec® Tee-L-Black","id":589,"category_ids":["16"],"sku":"MS10-L-Black","max_regular_price":24,"status":1},{"image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","small_image":"/m/s/ms10-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"logan-heattec-reg-tee-l-blue","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"170","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Logan HeatTec® Tee-L-Blue","id":590,"category_ids":["16"],"sku":"MS10-L-Blue","max_regular_price":24,"status":1},{"image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","small_image":"/m/s/ms10-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"logan-heattec-reg-tee-l-red","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"170","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Logan HeatTec® Tee-L-Red","id":591,"category_ids":["16"],"sku":"MS10-L-Red","max_regular_price":24,"status":1},{"image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","small_image":"/m/s/ms10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"logan-heattec-reg-tee-xl-black","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"171","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Logan HeatTec® Tee-XL-Black","id":592,"category_ids":["16"],"sku":"MS10-XL-Black","max_regular_price":24,"status":1},{"image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","small_image":"/m/s/ms10-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"logan-heattec-reg-tee-xl-blue","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"171","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Logan HeatTec® Tee-XL-Blue","id":593,"category_ids":["16"],"sku":"MS10-XL-Blue","max_regular_price":24,"status":1},{"image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","small_image":"/m/s/ms10-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"logan-heattec-reg-tee-xl-red","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"171","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Logan HeatTec® Tee-XL-Red","id":594,"category_ids":["16"],"sku":"MS10-XL-Red","max_regular_price":24,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":595,"id":69,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":595,"id":68,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-595.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"579","_score":1,"_source":{"id":579,"sku":"MS02","name":"Ryker LumaTech™ Tee (V-neck)","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ryker-lumatech-trade-tee-v-neck","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,33,39],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"ryker-lumatech-and-trade-tee-v-neck-579","links":{},"stock":{"item_id":579,"product_id":579,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","small_image":"/m/s/ms02-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-v-neck-xs-black","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"167","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Ryker LumaTech™ Tee (V-neck)-XS-Black","id":564,"category_ids":["16"],"sku":"MS02-XS-Black","max_regular_price":28,"status":1},{"image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","small_image":"/m/s/ms02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-v-neck-xs-blue","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"167","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Ryker LumaTech™ Tee (V-neck)-XS-Blue","id":565,"category_ids":["16"],"sku":"MS02-XS-Blue","max_regular_price":28,"status":1},{"image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","small_image":"/m/s/ms02-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-v-neck-xs-gray","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"167","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Ryker LumaTech™ Tee (V-neck)-XS-Gray","id":566,"category_ids":["16"],"sku":"MS02-XS-Gray","max_regular_price":28,"status":1},{"image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","small_image":"/m/s/ms02-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-v-neck-s-black","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"168","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Ryker LumaTech™ Tee (V-neck)-S-Black","id":567,"category_ids":["16"],"sku":"MS02-S-Black","max_regular_price":28,"status":1},{"image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","small_image":"/m/s/ms02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-v-neck-s-blue","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"168","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Ryker LumaTech™ Tee (V-neck)-S-Blue","id":568,"category_ids":["16"],"sku":"MS02-S-Blue","max_regular_price":28,"status":1},{"image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","small_image":"/m/s/ms02-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-v-neck-s-gray","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"168","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Ryker LumaTech™ Tee (V-neck)-S-Gray","id":569,"category_ids":["16"],"sku":"MS02-S-Gray","max_regular_price":28,"status":1},{"image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","small_image":"/m/s/ms02-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-v-neck-m-black","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"169","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Ryker LumaTech™ Tee (V-neck)-M-Black","id":570,"category_ids":["16"],"sku":"MS02-M-Black","max_regular_price":28,"status":1},{"image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","small_image":"/m/s/ms02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-v-neck-m-blue","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"169","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Ryker LumaTech™ Tee (V-neck)-M-Blue","id":571,"category_ids":["16"],"sku":"MS02-M-Blue","max_regular_price":28,"status":1},{"image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","small_image":"/m/s/ms02-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-v-neck-m-gray","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"169","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Ryker LumaTech™ Tee (V-neck)-M-Gray","id":572,"category_ids":["16"],"sku":"MS02-M-Gray","max_regular_price":28,"status":1},{"image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","small_image":"/m/s/ms02-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-v-neck-l-black","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"170","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Ryker LumaTech™ Tee (V-neck)-L-Black","id":573,"category_ids":["16"],"sku":"MS02-L-Black","max_regular_price":28,"status":1},{"image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","small_image":"/m/s/ms02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-v-neck-l-blue","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"170","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Ryker LumaTech™ Tee (V-neck)-L-Blue","id":574,"category_ids":["16"],"sku":"MS02-L-Blue","max_regular_price":28,"status":1},{"image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","small_image":"/m/s/ms02-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-v-neck-l-gray","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"170","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Ryker LumaTech™ Tee (V-neck)-L-Gray","id":575,"category_ids":["16"],"sku":"MS02-L-Gray","max_regular_price":28,"status":1},{"image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","small_image":"/m/s/ms02-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-v-neck-xl-black","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"171","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Ryker LumaTech™ Tee (V-neck)-XL-Black","id":576,"category_ids":["16"],"sku":"MS02-XL-Black","max_regular_price":28,"status":1},{"image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","small_image":"/m/s/ms02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-v-neck-xl-blue","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"171","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Ryker LumaTech™ Tee (V-neck)-XL-Blue","id":577,"category_ids":["16"],"sku":"MS02-XL-Blue","max_regular_price":28,"status":1},{"image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","small_image":"/m/s/ms02-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-v-neck-xl-gray","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"171","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Ryker LumaTech™ Tee (V-neck)-XL-Gray","id":578,"category_ids":["16"],"sku":"MS02-XL-Gray","max_regular_price":28,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"}],"product_id":579,"id":67,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":579,"id":66,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,52],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-579.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"557","_score":1,"_source":{"id":557,"sku":"MS01-L-Black","name":"Aero Daily Fitness Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"aero-daily-fitness-tee-l-black-557","links":{},"stock":{"item_id":557,"product_id":557,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms01-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-l-black-557.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"577","_score":1,"_source":{"id":577,"sku":"MS02-XL-Blue","name":"Ryker LumaTech™ Tee (V-neck)-XL-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-v-neck-xl-blue-577","links":{},"stock":{"item_id":577,"product_id":577,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xl-blue-577.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"567","_score":1,"_source":{"id":567,"sku":"MS02-S-Black","name":"Ryker LumaTech™ Tee (V-neck)-S-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-v-neck-s-black-567","links":{},"stock":{"item_id":567,"product_id":567,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-s-black-567.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"569","_score":1,"_source":{"id":569,"sku":"MS02-S-Gray","name":"Ryker LumaTech™ Tee (V-neck)-S-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-v-neck-s-gray-569","links":{},"stock":{"item_id":569,"product_id":569,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-s-gray-569.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"586","_score":1,"_source":{"id":586,"sku":"MS10-M-Black","name":"Logan HeatTec® Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"logan-heattec-and-reg-tee-m-black-586","links":{},"stock":{"item_id":586,"product_id":586,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-m-black-586.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"572","_score":1,"_source":{"id":572,"sku":"MS02-M-Gray","name":"Ryker LumaTech™ Tee (V-neck)-M-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-v-neck-m-gray-572","links":{},"stock":{"item_id":572,"product_id":572,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-m-gray-572.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"580","_score":1,"_source":{"id":580,"sku":"MS10-XS-Black","name":"Logan HeatTec® Tee-XS-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"logan-heattec-and-reg-tee-xs-black-580","links":{},"stock":{"item_id":580,"product_id":580,"stock_id":1,"qty":2,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xs-black-580.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"583","_score":1,"_source":{"id":583,"sku":"MS10-S-Black","name":"Logan HeatTec® Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"logan-heattec-and-reg-tee-s-black-583","links":{},"stock":{"item_id":583,"product_id":583,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-s-black-583.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"552","_score":1,"_source":{"id":552,"sku":"MS01-S-Brown","name":"Aero Daily Fitness Tee-S-Brown","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-s-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"aero-daily-fitness-tee-s-brown-552","links":{},"stock":{"item_id":552,"product_id":552,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms01-brown_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms01-brown_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-s-brown-552.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"578","_score":1,"_source":{"id":578,"sku":"MS02-XL-Gray","name":"Ryker LumaTech™ Tee (V-neck)-XL-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-v-neck-xl-gray-578","links":{},"stock":{"item_id":578,"product_id":578,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xl-gray-578.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"591","_score":1,"_source":{"id":591,"sku":"MS10-L-Red","name":"Logan HeatTec® Tee-L-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"logan-heattec-and-reg-tee-l-red-591","links":{},"stock":{"item_id":591,"product_id":591,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-l-red-591.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"598","_score":1,"_source":{"id":598,"sku":"MS07-XS-White","name":"Deion Long-Sleeve EverCool™ Tee-XS-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"deion-long-sleeve-evercool-and-trade-tee-xs-white-598","links":{},"stock":{"item_id":598,"product_id":598,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xs-white-598.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"576","_score":1,"_source":{"id":576,"sku":"MS02-XL-Black","name":"Ryker LumaTech™ Tee (V-neck)-XL-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-v-neck-xl-black-576","links":{},"stock":{"item_id":576,"product_id":576,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xl-black-576.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"599","_score":1,"_source":{"id":599,"sku":"MS07-S-Black","name":"Deion Long-Sleeve EverCool™ Tee-S-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"deion-long-sleeve-evercool-and-trade-tee-s-black-599","links":{},"stock":{"item_id":599,"product_id":599,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-s-black-599.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"564","_score":1,"_source":{"id":564,"sku":"MS02-XS-Black","name":"Ryker LumaTech™ Tee (V-neck)-XS-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-v-neck-xs-black-564","links":{},"stock":{"item_id":564,"product_id":564,"stock_id":1,"qty":63,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xs-black-564.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"596","_score":1,"_source":{"id":596,"sku":"MS07-XS-Black","name":"Deion Long-Sleeve EverCool™ Tee-XS-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"deion-long-sleeve-evercool-and-trade-tee-xs-black-596","links":{},"stock":{"item_id":596,"product_id":596,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-06-26 15:20:32","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xs-black-596.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"573","_score":1,"_source":{"id":573,"sku":"MS02-L-Black","name":"Ryker LumaTech™ Tee (V-neck)-L-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-v-neck-l-black-573","links":{},"stock":{"item_id":573,"product_id":573,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-l-black-573.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"594","_score":1,"_source":{"id":594,"sku":"MS10-XL-Red","name":"Logan HeatTec® Tee-XL-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"logan-heattec-and-reg-tee-xl-red-594","links":{},"stock":{"item_id":594,"product_id":594,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xl-red-594.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"588","_score":1,"_source":{"id":588,"sku":"MS10-M-Red","name":"Logan HeatTec® Tee-M-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"logan-heattec-and-reg-tee-m-red-588","links":{},"stock":{"item_id":588,"product_id":588,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-m-red-588.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"574","_score":1,"_source":{"id":574,"sku":"MS02-L-Blue","name":"Ryker LumaTech™ Tee (V-neck)-L-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-v-neck-l-blue-574","links":{},"stock":{"item_id":574,"product_id":574,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-l-blue-574.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"589","_score":1,"_source":{"id":589,"sku":"MS10-L-Black","name":"Logan HeatTec® Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"logan-heattec-and-reg-tee-l-black-589","links":{},"stock":{"item_id":589,"product_id":589,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-l-black-589.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"584","_score":1,"_source":{"id":584,"sku":"MS10-S-Blue","name":"Logan HeatTec® Tee-S-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"logan-heattec-and-reg-tee-s-blue-584","links":{},"stock":{"item_id":584,"product_id":584,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-s-blue-584.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"581","_score":1,"_source":{"id":581,"sku":"MS10-XS-Blue","name":"Logan HeatTec® Tee-XS-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"logan-heattec-and-reg-tee-xs-blue-581","links":{},"stock":{"item_id":581,"product_id":581,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xs-blue-581.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"575","_score":1,"_source":{"id":575,"sku":"MS02-L-Gray","name":"Ryker LumaTech™ Tee (V-neck)-L-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-v-neck-l-gray-575","links":{},"stock":{"item_id":575,"product_id":575,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-l-gray-575.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"593","_score":1,"_source":{"id":593,"sku":"MS10-XL-Blue","name":"Logan HeatTec® Tee-XL-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"logan-heattec-and-reg-tee-xl-blue-593","links":{},"stock":{"item_id":593,"product_id":593,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xl-blue-593.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"590","_score":1,"_source":{"id":590,"sku":"MS10-L-Blue","name":"Logan HeatTec® Tee-L-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"logan-heattec-and-reg-tee-l-blue-590","links":{},"stock":{"item_id":590,"product_id":590,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-l-blue-590.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"592","_score":1,"_source":{"id":592,"sku":"MS10-XL-Black","name":"Logan HeatTec® Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-black_main.jpg","small_image":"/m/s/ms10-black_main.jpg","thumbnail":"/m/s/ms10-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"logan-heattec-and-reg-tee-xl-black-592","links":{},"stock":{"item_id":592,"product_id":592,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms10-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xl-black-592.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"600","_score":1,"_source":{"id":600,"sku":"MS07-S-Green","name":"Deion Long-Sleeve EverCool™ Tee-S-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"deion-long-sleeve-evercool-and-trade-tee-s-green-600","links":{},"stock":{"item_id":600,"product_id":600,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-s-green-600.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"597","_score":1,"_source":{"id":597,"sku":"MS07-XS-Green","name":"Deion Long-Sleeve EverCool™ Tee-XS-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"deion-long-sleeve-evercool-and-trade-tee-xs-green-597","links":{},"stock":{"item_id":597,"product_id":597,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xs-green-597.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"627","_score":1,"_source":{"id":627,"sku":"MS08","name":"Strike Endurance Tee","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"strike-endurance-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[202,204,205,209],"slug":"strike-endurance-tee-627","links":{},"stock":{"item_id":627,"product_id":627,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","small_image":"/m/s/ms08-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"strike-endurance-tee-xs-black","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":39,"name":"Strike Endurance Tee-XS-Black","id":612,"category_ids":["16"],"sku":"MS08-XS-Black","status":1},{"image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","small_image":"/m/s/ms08-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"strike-endurance-tee-xs-blue","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"167","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Strike Endurance Tee-XS-Blue","id":613,"category_ids":["16"],"sku":"MS08-XS-Blue","max_regular_price":39,"status":1},{"image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","small_image":"/m/s/ms08-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"strike-endurance-tee-xs-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"167","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Strike Endurance Tee-XS-Red","id":614,"category_ids":["16"],"sku":"MS08-XS-Red","max_regular_price":39,"status":1},{"image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","small_image":"/m/s/ms08-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"strike-endurance-tee-s-black","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Strike Endurance Tee-S-Black","id":615,"category_ids":["16"],"sku":"MS08-S-Black","max_regular_price":39,"status":1},{"image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","small_image":"/m/s/ms08-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"strike-endurance-tee-s-blue","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Strike Endurance Tee-S-Blue","id":616,"category_ids":["16"],"sku":"MS08-S-Blue","max_regular_price":39,"status":1},{"image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","small_image":"/m/s/ms08-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"strike-endurance-tee-s-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Strike Endurance Tee-S-Red","id":617,"category_ids":["16"],"sku":"MS08-S-Red","max_regular_price":39,"status":1},{"image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","small_image":"/m/s/ms08-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"strike-endurance-tee-m-black","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Strike Endurance Tee-M-Black","id":618,"category_ids":["16"],"sku":"MS08-M-Black","max_regular_price":39,"status":1},{"image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","small_image":"/m/s/ms08-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"strike-endurance-tee-m-blue","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Strike Endurance Tee-M-Blue","id":619,"category_ids":["16"],"sku":"MS08-M-Blue","max_regular_price":39,"status":1},{"image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","small_image":"/m/s/ms08-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"strike-endurance-tee-m-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Strike Endurance Tee-M-Red","id":620,"category_ids":["16"],"sku":"MS08-M-Red","max_regular_price":39,"status":1},{"image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","small_image":"/m/s/ms08-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"strike-endurance-tee-l-black","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Strike Endurance Tee-L-Black","id":621,"category_ids":["16"],"sku":"MS08-L-Black","max_regular_price":39,"status":1},{"image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","small_image":"/m/s/ms08-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"strike-endurance-tee-l-blue","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Strike Endurance Tee-L-Blue","id":622,"category_ids":["16"],"sku":"MS08-L-Blue","max_regular_price":39,"status":1},{"image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","small_image":"/m/s/ms08-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"strike-endurance-tee-l-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Strike Endurance Tee-L-Red","id":623,"category_ids":["16"],"sku":"MS08-L-Red","max_regular_price":39,"status":1},{"image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","small_image":"/m/s/ms08-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"strike-endurance-tee-xl-black","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Strike Endurance Tee-XL-Black","id":624,"category_ids":["16"],"sku":"MS08-XL-Black","max_regular_price":39,"status":1},{"image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","small_image":"/m/s/ms08-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"strike-endurance-tee-xl-blue","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Strike Endurance Tee-XL-Blue","id":625,"category_ids":["16"],"sku":"MS08-XL-Blue","max_regular_price":39,"status":1},{"image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","small_image":"/m/s/ms08-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"strike-endurance-tee-xl-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Strike Endurance Tee-XL-Red","id":626,"category_ids":["16"],"sku":"MS08-XL-Red","max_regular_price":39,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":627,"id":73,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":627,"id":72,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-627.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"643","_score":1,"_source":{"id":643,"sku":"MT01","name":"Erikssen CoolTech™ Fitness Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"erikssen-cooltech-trade-fitness-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,152,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"erikssen-cooltech-and-trade-fitness-tank-643","links":{},"stock":{"item_id":643,"product_id":643,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","small_image":"/m/t/mt01-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erikssen-cooltech-trade-fitness-tank-xs-gray","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"167","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Erikssen CoolTech™ Fitness Tank-XS-Gray","id":628,"category_ids":["17"],"sku":"MT01-XS-Gray","max_regular_price":29,"status":1},{"image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","small_image":"/m/t/mt01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erikssen-cooltech-trade-fitness-tank-xs-orange","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"167","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Erikssen CoolTech™ Fitness Tank-XS-Orange","id":629,"category_ids":["17"],"sku":"MT01-XS-Orange","max_regular_price":29,"status":1},{"image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","small_image":"/m/t/mt01-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erikssen-cooltech-trade-fitness-tank-xs-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"167","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Erikssen CoolTech™ Fitness Tank-XS-Red","id":630,"category_ids":["17"],"sku":"MT01-XS-Red","max_regular_price":29,"status":1},{"image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","small_image":"/m/t/mt01-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erikssen-cooltech-trade-fitness-tank-s-gray","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"168","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Erikssen CoolTech™ Fitness Tank-S-Gray","id":631,"category_ids":["17"],"sku":"MT01-S-Gray","max_regular_price":29,"status":1},{"image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","small_image":"/m/t/mt01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erikssen-cooltech-trade-fitness-tank-s-orange","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"168","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Erikssen CoolTech™ Fitness Tank-S-Orange","id":632,"category_ids":["17"],"sku":"MT01-S-Orange","max_regular_price":29,"status":1},{"image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","small_image":"/m/t/mt01-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erikssen-cooltech-trade-fitness-tank-s-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"168","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Erikssen CoolTech™ Fitness Tank-S-Red","id":633,"category_ids":["17"],"sku":"MT01-S-Red","max_regular_price":29,"status":1},{"image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","small_image":"/m/t/mt01-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erikssen-cooltech-trade-fitness-tank-m-gray","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Erikssen CoolTech™ Fitness Tank-M-Gray","id":634,"category_ids":["17"],"sku":"MT01-M-Gray","max_regular_price":29,"status":1},{"image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","small_image":"/m/t/mt01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erikssen-cooltech-trade-fitness-tank-m-orange","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Erikssen CoolTech™ Fitness Tank-M-Orange","id":635,"category_ids":["17"],"sku":"MT01-M-Orange","max_regular_price":29,"status":1},{"image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","small_image":"/m/t/mt01-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erikssen-cooltech-trade-fitness-tank-m-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Erikssen CoolTech™ Fitness Tank-M-Red","id":636,"category_ids":["17"],"sku":"MT01-M-Red","max_regular_price":29,"status":1},{"image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","small_image":"/m/t/mt01-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erikssen-cooltech-trade-fitness-tank-l-gray","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Erikssen CoolTech™ Fitness Tank-L-Gray","id":637,"category_ids":["17"],"sku":"MT01-L-Gray","max_regular_price":29,"status":1},{"image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","small_image":"/m/t/mt01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erikssen-cooltech-trade-fitness-tank-l-orange","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Erikssen CoolTech™ Fitness Tank-L-Orange","id":638,"category_ids":["17"],"sku":"MT01-L-Orange","max_regular_price":29,"status":1},{"image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","small_image":"/m/t/mt01-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erikssen-cooltech-trade-fitness-tank-l-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Erikssen CoolTech™ Fitness Tank-L-Red","id":639,"category_ids":["17"],"sku":"MT01-L-Red","max_regular_price":29,"status":1},{"image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","small_image":"/m/t/mt01-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erikssen-cooltech-trade-fitness-tank-xl-gray","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Erikssen CoolTech™ Fitness Tank-XL-Gray","id":640,"category_ids":["17"],"sku":"MT01-XL-Gray","max_regular_price":29,"status":1},{"image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","small_image":"/m/t/mt01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erikssen-cooltech-trade-fitness-tank-xl-orange","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Erikssen CoolTech™ Fitness Tank-XL-Orange","id":641,"category_ids":["17"],"sku":"MT01-XL-Orange","max_regular_price":29,"status":1},{"image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","small_image":"/m/t/mt01-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erikssen-cooltech-trade-fitness-tank-xl-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Erikssen CoolTech™ Fitness Tank-XL-Red","id":642,"category_ids":["17"],"sku":"MT01-XL-Red","max_regular_price":29,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":643,"id":75,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":643,"id":74,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[52,56,58],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-643.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"615","_score":1,"_source":{"id":615,"sku":"MS08-S-Black","name":"Strike Endurance Tee-S-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"strike-endurance-tee-s-black-615","links":{},"stock":{"item_id":615,"product_id":615,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-s-black-615.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"618","_score":1,"_source":{"id":618,"sku":"MS08-M-Black","name":"Strike Endurance Tee-M-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"strike-endurance-tee-m-black-618","links":{},"stock":{"item_id":618,"product_id":618,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-m-black-618.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"634","_score":1,"_source":{"id":634,"sku":"MT01-M-Gray","name":"Erikssen CoolTech™ Fitness Tank-M-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erikssen-cooltech-and-trade-fitness-tank-m-gray-634","links":{},"stock":{"item_id":634,"product_id":634,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-m-gray-634.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"605","_score":1,"_source":{"id":605,"sku":"MS07-L-Black","name":"Deion Long-Sleeve EverCool™ Tee-L-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-black_main.jpg","small_image":"/m/s/ms07-black_main.jpg","thumbnail":"/m/s/ms07-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"deion-long-sleeve-evercool-and-trade-tee-l-black-605","links":{},"stock":{"item_id":605,"product_id":605,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms07-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-l-black-605.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"614","_score":1,"_source":{"id":614,"sku":"MS08-XS-Red","name":"Strike Endurance Tee-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"strike-endurance-tee-xs-red-614","links":{},"stock":{"item_id":614,"product_id":614,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xs-red-614.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"626","_score":1,"_source":{"id":626,"sku":"MS08-XL-Red","name":"Strike Endurance Tee-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"strike-endurance-tee-xl-red-626","links":{},"stock":{"item_id":626,"product_id":626,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xl-red-626.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"610","_score":1,"_source":{"id":610,"sku":"MS07-XL-White","name":"Deion Long-Sleeve EverCool™ Tee-XL-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"deion-long-sleeve-evercool-and-trade-tee-xl-white-610","links":{},"stock":{"item_id":610,"product_id":610,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xl-white-610.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"623","_score":1,"_source":{"id":623,"sku":"MS08-L-Red","name":"Strike Endurance Tee-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"strike-endurance-tee-l-red-623","links":{},"stock":{"item_id":623,"product_id":623,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-l-red-623.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"629","_score":1,"_source":{"id":629,"sku":"MT01-XS-Orange","name":"Erikssen CoolTech™ Fitness Tank-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erikssen-cooltech-and-trade-fitness-tank-xs-orange-629","links":{},"stock":{"item_id":629,"product_id":629,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xs-orange-629.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"624","_score":1,"_source":{"id":624,"sku":"MS08-XL-Black","name":"Strike Endurance Tee-XL-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"strike-endurance-tee-xl-black-624","links":{},"stock":{"item_id":624,"product_id":624,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xl-black-624.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"603","_score":1,"_source":{"id":603,"sku":"MS07-M-Green","name":"Deion Long-Sleeve EverCool™ Tee-M-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"deion-long-sleeve-evercool-and-trade-tee-m-green-603","links":{},"stock":{"item_id":603,"product_id":603,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-m-green-603.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"604","_score":1,"_source":{"id":604,"sku":"MS07-M-White","name":"Deion Long-Sleeve EverCool™ Tee-M-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"deion-long-sleeve-evercool-and-trade-tee-m-white-604","links":{},"stock":{"item_id":604,"product_id":604,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-m-white-604.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"628","_score":1,"_source":{"id":628,"sku":"MT01-XS-Gray","name":"Erikssen CoolTech™ Fitness Tank-XS-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erikssen-cooltech-and-trade-fitness-tank-xs-gray-628","links":{},"stock":{"item_id":628,"product_id":628,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xs-gray-628.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"616","_score":1,"_source":{"id":616,"sku":"MS08-S-Blue","name":"Strike Endurance Tee-S-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"strike-endurance-tee-s-blue-616","links":{},"stock":{"item_id":616,"product_id":616,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-s-blue-616.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"606","_score":1,"_source":{"id":606,"sku":"MS07-L-Green","name":"Deion Long-Sleeve EverCool™ Tee-L-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"deion-long-sleeve-evercool-and-trade-tee-l-green-606","links":{},"stock":{"item_id":606,"product_id":606,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-l-green-606.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"609","_score":1,"_source":{"id":609,"sku":"MS07-XL-Green","name":"Deion Long-Sleeve EverCool™ Tee-XL-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-green_main.jpg","small_image":"/m/s/ms07-green_main.jpg","thumbnail":"/m/s/ms07-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"deion-long-sleeve-evercool-and-trade-tee-xl-green-609","links":{},"stock":{"item_id":609,"product_id":609,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms07-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms07-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms07-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-xl-green-609.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"619","_score":1,"_source":{"id":619,"sku":"MS08-M-Blue","name":"Strike Endurance Tee-M-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-blue_main.jpg","small_image":"/m/s/ms08-blue_main.jpg","thumbnail":"/m/s/ms08-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"strike-endurance-tee-m-blue-619","links":{},"stock":{"item_id":619,"product_id":619,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms08-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-m-blue-619.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"632","_score":1,"_source":{"id":632,"sku":"MT01-S-Orange","name":"Erikssen CoolTech™ Fitness Tank-S-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erikssen-cooltech-and-trade-fitness-tank-s-orange-632","links":{},"stock":{"item_id":632,"product_id":632,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-s-orange-632.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"621","_score":1,"_source":{"id":621,"sku":"MS08-L-Black","name":"Strike Endurance Tee-L-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"strike-endurance-tee-l-black-621","links":{},"stock":{"item_id":621,"product_id":621,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-l-black-621.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"612","_score":1,"_source":{"id":612,"sku":"MS08-XS-Black","name":"Strike Endurance Tee-XS-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-black_main.jpg","small_image":"/m/s/ms08-black_main.jpg","thumbnail":"/m/s/ms08-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"strike-endurance-tee-xs-black-612","links":{},"stock":{"item_id":612,"product_id":612,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-03-12 11:23:38","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/m/s/ms08-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms08-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-xs-black-612.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"620","_score":1,"_source":{"id":620,"sku":"MS08-M-Red","name":"Strike Endurance Tee-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

                            \n

                            • Loose fit.
                            • Ribbed cuffs/collar.
                            • Machine wash/dry.

                            ","image":"/m/s/ms08-red_main.jpg","small_image":"/m/s/ms08-red_main.jpg","thumbnail":"/m/s/ms08-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strike-endurance-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"strike-endurance-tee-m-red-620","links":{},"stock":{"item_id":620,"product_id":620,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms08-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/strike-endurance-tee-m-red-620.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"630","_score":1,"_source":{"id":630,"sku":"MT01-XS-Red","name":"Erikssen CoolTech™ Fitness Tank-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-red_main.jpg","small_image":"/m/t/mt01-red_main.jpg","thumbnail":"/m/t/mt01-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erikssen-cooltech-and-trade-fitness-tank-xs-red-630","links":{},"stock":{"item_id":630,"product_id":630,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt01-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt01-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt01-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xs-red-630.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"647","_score":1,"_source":{"id":647,"sku":"MT02-S-Gray","name":"Tristan Endurance Tank-S-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tristan-endurance-tank-s-gray-647","links":{},"stock":{"item_id":647,"product_id":647,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-s-gray-647.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"638","_score":1,"_source":{"id":638,"sku":"MT01-L-Orange","name":"Erikssen CoolTech™ Fitness Tank-L-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-orange_main.jpg","small_image":"/m/t/mt01-orange_main.jpg","thumbnail":"/m/t/mt01-orange_main.jpg","color":"56","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erikssen-cooltech-and-trade-fitness-tank-l-orange-638","links":{},"stock":{"item_id":638,"product_id":638,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-l-orange-638.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"607","_score":1,"_source":{"id":607,"sku":"MS07-L-White","name":"Deion Long-Sleeve EverCool™ Tee-L-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

                            \n

                            • Fitted.
                            • Contrast inner neck tape.
                            • Machine wash/dry.

                            ","image":"/m/s/ms07-white_main.jpg","small_image":"/m/s/ms07-white_main.jpg","thumbnail":"/m/s/ms07-white_main.jpg","color":"59","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deion-long-sleeve-evercool-trade-tee-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"deion-long-sleeve-evercool-and-trade-tee-l-white-607","links":{},"stock":{"item_id":607,"product_id":607,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms07-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/deion-long-sleeve-evercool-and-trade-tee-l-white-607.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"640","_score":1,"_source":{"id":640,"sku":"MT01-XL-Gray","name":"Erikssen CoolTech™ Fitness Tank-XL-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

                            \n

                            • Red performance tank.
                            • Slight scoop neckline.
                            • Reflectivity.
                            • Machine wash/dry.

                            ","image":"/m/t/mt01-gray_main.jpg","small_image":"/m/t/mt01-gray_main.jpg","thumbnail":"/m/t/mt01-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erikssen-cooltech-trade-fitness-tank-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erikssen-cooltech-and-trade-fitness-tank-xl-gray-640","links":{},"stock":{"item_id":640,"product_id":640,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt01-gray_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/erikssen-cooltech-and-trade-fitness-tank-xl-gray-640.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"650","_score":1,"_source":{"id":650,"sku":"MT02-M-Gray","name":"Tristan Endurance Tank-M-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tristan-endurance-tank-m-gray-650","links":{},"stock":{"item_id":650,"product_id":650,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-m-gray-650.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"645","_score":1,"_source":{"id":645,"sku":"MT02-XS-Red","name":"Tristan Endurance Tank-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tristan-endurance-tank-xs-red-645","links":{},"stock":{"item_id":645,"product_id":645,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xs-red-645.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"644","_score":1,"_source":{"id":644,"sku":"MT02-XS-Gray","name":"Tristan Endurance Tank-XS-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:57","updated_at":"2017-11-06 12:16:57","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tristan-endurance-tank-xs-gray-644","links":{},"stock":{"item_id":644,"product_id":644,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xs-gray-644.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"551","_score":1,"_source":{"id":551,"sku":"MS01-S-Black","name":"Aero Daily Fitness Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"aero-daily-fitness-tee-s-black-551","links":{},"stock":{"item_id":551,"product_id":551,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms01-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-s-black-551.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"555","_score":1,"_source":{"id":555,"sku":"MS01-M-Brown","name":"Aero Daily Fitness Tee-M-Brown","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-m-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"aero-daily-fitness-tee-m-brown-555","links":{},"stock":{"item_id":555,"product_id":555,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms01-brown_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms01-brown_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-m-brown-555.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"568","_score":1,"_source":{"id":568,"sku":"MS02-S-Blue","name":"Ryker LumaTech™ Tee (V-neck)-S-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-v-neck-s-blue-568","links":{},"stock":{"item_id":568,"product_id":568,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-s-blue-568.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"582","_score":1,"_source":{"id":582,"sku":"MS10-XS-Red","name":"Logan HeatTec® Tee-XS-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"logan-heattec-and-reg-tee-xs-red-582","links":{},"stock":{"item_id":582,"product_id":582,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-xs-red-582.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"556","_score":1,"_source":{"id":556,"sku":"MS01-M-Yellow","name":"Aero Daily Fitness Tee-M-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"aero-daily-fitness-tee-m-yellow-556","links":{},"stock":{"item_id":556,"product_id":556,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms01-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-m-yellow-556.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"562","_score":1,"_source":{"id":562,"sku":"MS01-XL-Yellow","name":"Aero Daily Fitness Tee-XL-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"aero-daily-fitness-tee-xl-yellow-562","links":{},"stock":{"item_id":562,"product_id":562,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms01-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xl-yellow-562.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"565","_score":1,"_source":{"id":565,"sku":"MS02-XS-Blue","name":"Ryker LumaTech™ Tee (V-neck)-XS-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-v-neck-xs-blue-565","links":{},"stock":{"item_id":565,"product_id":565,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xs-blue-565.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"558","_score":1,"_source":{"id":558,"sku":"MS01-L-Brown","name":"Aero Daily Fitness Tee-L-Brown","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-l-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"aero-daily-fitness-tee-l-brown-558","links":{},"stock":{"item_id":558,"product_id":558,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms01-brown_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms01-brown_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-l-brown-558.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"561","_score":1,"_source":{"id":561,"sku":"MS01-XL-Brown","name":"Aero Daily Fitness Tee-XL-Brown","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-brown_main.jpg","small_image":"/m/s/ms01-brown_main.jpg","thumbnail":"/m/s/ms01-brown_main.jpg","color":"51","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xl-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"aero-daily-fitness-tee-xl-brown-561","links":{},"stock":{"item_id":561,"product_id":561,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms01-brown_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms01-brown_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xl-brown-561.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"553","_score":1,"_source":{"id":553,"sku":"MS01-S-Yellow","name":"Aero Daily Fitness Tee-S-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"aero-daily-fitness-tee-s-yellow-553","links":{},"stock":{"item_id":553,"product_id":553,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms01-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-s-yellow-553.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"566","_score":1,"_source":{"id":566,"sku":"MS02-XS-Gray","name":"Ryker LumaTech™ Tee (V-neck)-XS-Gray","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-gray_main.jpg","small_image":"/m/s/ms02-gray_main.jpg","thumbnail":"/m/s/ms02-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-v-neck-xs-gray-566","links":{},"stock":{"item_id":566,"product_id":566,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms02-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms02-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms02-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-xs-gray-566.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"559","_score":1,"_source":{"id":559,"sku":"MS01-L-Yellow","name":"Aero Daily Fitness Tee-L-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-yellow_main.jpg","small_image":"/m/s/ms01-yellow_main.jpg","thumbnail":"/m/s/ms01-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"aero-daily-fitness-tee-l-yellow-559","links":{},"stock":{"item_id":559,"product_id":559,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms01-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-l-yellow-559.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"571","_score":1,"_source":{"id":571,"sku":"MS02-M-Blue","name":"Ryker LumaTech™ Tee (V-neck)-M-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-blue_main.jpg","small_image":"/m/s/ms02-blue_main.jpg","thumbnail":"/m/s/ms02-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-v-neck-m-blue-571","links":{},"stock":{"item_id":571,"product_id":571,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms02-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-m-blue-571.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"585","_score":1,"_source":{"id":585,"sku":"MS10-S-Red","name":"Logan HeatTec® Tee-S-Red","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-red_main.jpg","small_image":"/m/s/ms10-red_main.jpg","thumbnail":"/m/s/ms10-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"logan-heattec-and-reg-tee-s-red-585","links":{},"stock":{"item_id":585,"product_id":585,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms10-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-s-red-585.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"570","_score":1,"_source":{"id":570,"sku":"MS02-M-Black","name":"Ryker LumaTech™ Tee (V-neck)-M-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Don't be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

                            \n

                            • Relaxed fit.
                            • Short-Sleeve.
                            • Machine wash/dry.

                            ","image":"/m/s/ms02-black_main.jpg","small_image":"/m/s/ms02-black_main.jpg","thumbnail":"/m/s/ms02-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-v-neck-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-v-neck-m-black-570","links":{},"stock":{"item_id":570,"product_id":570,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms02-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-v-neck-m-black-570.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"554","_score":1,"_source":{"id":554,"sku":"MS01-M-Black","name":"Aero Daily Fitness Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"aero-daily-fitness-tee-m-black-554","links":{},"stock":{"item_id":554,"product_id":554,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms01-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-m-black-554.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"560","_score":1,"_source":{"id":560,"sku":"MS01-XL-Black","name":"Aero Daily Fitness Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don't be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

                            \n

                            Relaxed fit.
                            Short-Sleeve.
                            Machine wash/dry.

                            ","image":"/m/s/ms01-black_main.jpg","small_image":"/m/s/ms01-black_main.jpg","thumbnail":"/m/s/ms01-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aero-daily-fitness-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"aero-daily-fitness-tee-xl-black-560","links":{},"stock":{"item_id":560,"product_id":560,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms01-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/aero-daily-fitness-tee-xl-black-560.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"587","_score":1,"_source":{"id":587,"sku":"MS10-M-Blue","name":"Logan HeatTec® Tee-M-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:56","updated_at":"2017-11-06 12:16:56","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

                            \n

                            • Semi-fitted.
                            • Crew neckline.
                            • Machine wash/tumble dry.

                            ","image":"/m/s/ms10-blue_main.jpg","small_image":"/m/s/ms10-blue_main.jpg","thumbnail":"/m/s/ms10-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"logan-heattec-reg-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"logan-heattec-and-reg-tee-m-blue-587","links":{},"stock":{"item_id":587,"product_id":587,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms10-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms10-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms10-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/logan-heattec-and-reg-tee-m-blue-587.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"687","_score":1,"_source":{"id":687,"sku":"MT05","name":"Rocco Gym Tank","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

                            \n

                            • Light blue heather gray tank.
                            • Quick-drying, moisture-wicking.
                            • 4-way stretch construction.
                            • Flatlock seams prevent chafing.
                            • Mesh at back for breathability.
                            • 100% Polyester.
                            • UPF 50 protection.

                            ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"rocco-gym-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"rocco-gym-tank-687","links":{},"stock":{"item_id":687,"product_id":687,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","small_image":"/m/t/mt05-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"rocco-gym-tank-xs-blue","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"167","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Rocco Gym Tank-XS-Blue","id":682,"category_ids":["17"],"sku":"MT05-XS-Blue","max_regular_price":24,"status":1},{"image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","small_image":"/m/t/mt05-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"rocco-gym-tank-s-blue","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"168","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Rocco Gym Tank-S-Blue","id":683,"category_ids":["17"],"sku":"MT05-S-Blue","max_regular_price":24,"status":1},{"image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","small_image":"/m/t/mt05-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"rocco-gym-tank-m-blue","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"169","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Rocco Gym Tank-M-Blue","id":684,"category_ids":["17"],"sku":"MT05-M-Blue","max_regular_price":24,"status":1},{"image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","small_image":"/m/t/mt05-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"rocco-gym-tank-l-blue","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"170","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Rocco Gym Tank-L-Blue","id":685,"category_ids":["17"],"sku":"MT05-L-Blue","max_regular_price":24,"status":1},{"image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","small_image":"/m/t/mt05-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"rocco-gym-tank-xl-blue","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"171","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Rocco Gym Tank-XL-Blue","id":686,"category_ids":["17"],"sku":"MT05-XL-Blue","max_regular_price":24,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"}],"product_id":687,"id":83,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":687,"id":82,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-687.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"675","_score":1,"_source":{"id":675,"sku":"MT03","name":"Primo Endurance Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"primo-endurance-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"primo-endurance-tank-675","links":{},"stock":{"item_id":675,"product_id":675,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","small_image":"/m/t/mt03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"primo-endurance-tank-xs-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"167","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Primo Endurance Tank-XS-Blue","id":660,"category_ids":["17"],"sku":"MT03-XS-Blue","max_regular_price":29,"status":1},{"image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","small_image":"/m/t/mt03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"primo-endurance-tank-xs-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"167","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Primo Endurance Tank-XS-Red","id":661,"category_ids":["17"],"sku":"MT03-XS-Red","max_regular_price":29,"status":1},{"image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","small_image":"/m/t/mt03-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"primo-endurance-tank-xs-yellow","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"167","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Primo Endurance Tank-XS-Yellow","id":662,"category_ids":["17"],"sku":"MT03-XS-Yellow","max_regular_price":29,"status":1},{"image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","small_image":"/m/t/mt03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"primo-endurance-tank-s-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"168","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Primo Endurance Tank-S-Blue","id":663,"category_ids":["17"],"sku":"MT03-S-Blue","max_regular_price":29,"status":1},{"image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","small_image":"/m/t/mt03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"primo-endurance-tank-s-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"168","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Primo Endurance Tank-S-Red","id":664,"category_ids":["17"],"sku":"MT03-S-Red","max_regular_price":29,"status":1},{"image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","small_image":"/m/t/mt03-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"primo-endurance-tank-s-yellow","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"168","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Primo Endurance Tank-S-Yellow","id":665,"category_ids":["17"],"sku":"MT03-S-Yellow","max_regular_price":29,"status":1},{"image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","small_image":"/m/t/mt03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"primo-endurance-tank-m-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Primo Endurance Tank-M-Blue","id":666,"category_ids":["17"],"sku":"MT03-M-Blue","max_regular_price":29,"status":1},{"image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","small_image":"/m/t/mt03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"primo-endurance-tank-m-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Primo Endurance Tank-M-Red","id":667,"category_ids":["17"],"sku":"MT03-M-Red","max_regular_price":29,"status":1},{"image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","small_image":"/m/t/mt03-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"primo-endurance-tank-m-yellow","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Primo Endurance Tank-M-Yellow","id":668,"category_ids":["17"],"sku":"MT03-M-Yellow","max_regular_price":29,"status":1},{"image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","small_image":"/m/t/mt03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"primo-endurance-tank-l-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Primo Endurance Tank-L-Blue","id":669,"category_ids":["17"],"sku":"MT03-L-Blue","max_regular_price":29,"status":1},{"image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","small_image":"/m/t/mt03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"primo-endurance-tank-l-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Primo Endurance Tank-L-Red","id":670,"category_ids":["17"],"sku":"MT03-L-Red","max_regular_price":29,"status":1},{"image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","small_image":"/m/t/mt03-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"primo-endurance-tank-l-yellow","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Primo Endurance Tank-L-Yellow","id":671,"category_ids":["17"],"sku":"MT03-L-Yellow","max_regular_price":29,"status":1},{"image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","small_image":"/m/t/mt03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"primo-endurance-tank-xl-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Primo Endurance Tank-XL-Blue","id":672,"category_ids":["17"],"sku":"MT03-XL-Blue","max_regular_price":29,"status":1},{"image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","small_image":"/m/t/mt03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"primo-endurance-tank-xl-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Primo Endurance Tank-XL-Red","id":673,"category_ids":["17"],"sku":"MT03-XL-Red","max_regular_price":29,"status":1},{"image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","small_image":"/m/t/mt03-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"primo-endurance-tank-xl-yellow","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Primo Endurance Tank-XL-Yellow","id":674,"category_ids":["17"],"sku":"MT03-XL-Yellow","max_regular_price":29,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":675,"id":79,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":675,"id":78,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,58,60],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-675.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"693","_score":1,"_source":{"id":693,"sku":"MT06","name":"Vulcan Weightlifting Tank","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

                            \n

                            • Black polyester spandex tank.
                            • 100% polyester.
                            • Freedom of movement.
                            • No-chafe seams.

                            ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"vulcan-weightlifting-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"vulcan-weightlifting-tank-693","links":{},"stock":{"item_id":693,"product_id":693,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","small_image":"/m/t/mt06-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"vulcan-weightlifting-tank-xs-black","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"167","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Vulcan Weightlifting Tank-XS-Black","id":688,"category_ids":["17"],"sku":"MT06-XS-Black","max_regular_price":28,"status":1},{"image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","small_image":"/m/t/mt06-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"vulcan-weightlifting-tank-s-black","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"168","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Vulcan Weightlifting Tank-S-Black","id":689,"category_ids":["17"],"sku":"MT06-S-Black","max_regular_price":28,"status":1},{"image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","small_image":"/m/t/mt06-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"vulcan-weightlifting-tank-m-black","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"169","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Vulcan Weightlifting Tank-M-Black","id":690,"category_ids":["17"],"sku":"MT06-M-Black","max_regular_price":28,"status":1},{"image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","small_image":"/m/t/mt06-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"vulcan-weightlifting-tank-l-black","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"170","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Vulcan Weightlifting Tank-L-Black","id":691,"category_ids":["17"],"sku":"MT06-L-Black","max_regular_price":28,"status":1},{"image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","small_image":"/m/t/mt06-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"vulcan-weightlifting-tank-xl-black","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"171","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Vulcan Weightlifting Tank-XL-Black","id":692,"category_ids":["17"],"sku":"MT06-XL-Black","max_regular_price":28,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"}],"product_id":693,"id":85,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":693,"id":84,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-693.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"659","_score":1,"_source":{"id":659,"sku":"MT02","name":"Tristan Endurance Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"tristan-endurance-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,149,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"tristan-endurance-tank-659","links":{},"stock":{"item_id":659,"product_id":659,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","small_image":"/m/t/mt02-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tristan-endurance-tank-xs-gray","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":29,"name":"Tristan Endurance Tank-XS-Gray","id":644,"category_ids":["17"],"sku":"MT02-XS-Gray","status":1},{"image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","small_image":"/m/t/mt02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tristan-endurance-tank-xs-red","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":29,"name":"Tristan Endurance Tank-XS-Red","id":645,"category_ids":["17"],"sku":"MT02-XS-Red","status":1},{"image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","small_image":"/m/t/mt02-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tristan-endurance-tank-xs-white","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":29,"name":"Tristan Endurance Tank-XS-White","id":646,"category_ids":["17"],"sku":"MT02-XS-White","status":1},{"image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","small_image":"/m/t/mt02-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tristan-endurance-tank-s-gray","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":29,"name":"Tristan Endurance Tank-S-Gray","id":647,"category_ids":["17"],"sku":"MT02-S-Gray","status":1},{"image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","small_image":"/m/t/mt02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tristan-endurance-tank-s-red","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":29,"name":"Tristan Endurance Tank-S-Red","id":648,"category_ids":["17"],"sku":"MT02-S-Red","status":1},{"image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","small_image":"/m/t/mt02-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tristan-endurance-tank-s-white","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":29,"name":"Tristan Endurance Tank-S-White","id":649,"category_ids":["17"],"sku":"MT02-S-White","status":1},{"image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","small_image":"/m/t/mt02-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tristan-endurance-tank-m-gray","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":29,"name":"Tristan Endurance Tank-M-Gray","id":650,"category_ids":["17"],"sku":"MT02-M-Gray","status":1},{"image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","small_image":"/m/t/mt02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tristan-endurance-tank-m-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Tristan Endurance Tank-M-Red","id":651,"category_ids":["17"],"sku":"MT02-M-Red","max_regular_price":29,"status":1},{"image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","small_image":"/m/t/mt02-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tristan-endurance-tank-m-white","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Tristan Endurance Tank-M-White","id":652,"category_ids":["17"],"sku":"MT02-M-White","max_regular_price":29,"status":1},{"image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","small_image":"/m/t/mt02-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tristan-endurance-tank-l-gray","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Tristan Endurance Tank-L-Gray","id":653,"category_ids":["17"],"sku":"MT02-L-Gray","max_regular_price":29,"status":1},{"image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","small_image":"/m/t/mt02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tristan-endurance-tank-l-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Tristan Endurance Tank-L-Red","id":654,"category_ids":["17"],"sku":"MT02-L-Red","max_regular_price":29,"status":1},{"image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","small_image":"/m/t/mt02-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tristan-endurance-tank-l-white","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Tristan Endurance Tank-L-White","id":655,"category_ids":["17"],"sku":"MT02-L-White","max_regular_price":29,"status":1},{"image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","small_image":"/m/t/mt02-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tristan-endurance-tank-xl-gray","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Tristan Endurance Tank-XL-Gray","id":656,"category_ids":["17"],"sku":"MT02-XL-Gray","max_regular_price":29,"status":1},{"image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","small_image":"/m/t/mt02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tristan-endurance-tank-xl-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Tristan Endurance Tank-XL-Red","id":657,"category_ids":["17"],"sku":"MT02-XL-Red","max_regular_price":29,"status":1},{"image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","small_image":"/m/t/mt02-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tristan-endurance-tank-xl-white","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Tristan Endurance Tank-XL-White","id":658,"category_ids":["17"],"sku":"MT02-XL-White","max_regular_price":29,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":659,"id":77,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":659,"id":76,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[52,58,59],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-659.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"681","_score":1,"_source":{"id":681,"sku":"MT04","name":"Helios Endurance Tank","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

                            \n

                            • Blue heather tank with gray pocket.
                            • Contrast sides and back inserts.
                            • Self-fabric binding at neck and armholes.
                            • Machine wash/dry.

                            ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"helios-endurance-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"1","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"helios-endurance-tank-681","links":{},"stock":{"item_id":681,"product_id":681,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","small_image":"/m/t/mt04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helios-endurance-tank-xs-blue","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"167","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Helios Endurance Tank-XS-Blue","id":676,"category_ids":["17"],"sku":"MT04-XS-Blue","max_regular_price":32,"status":1},{"image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","small_image":"/m/t/mt04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helios-endurance-tank-s-blue","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"168","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Helios Endurance Tank-S-Blue","id":677,"category_ids":["17"],"sku":"MT04-S-Blue","max_regular_price":32,"status":1},{"image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","small_image":"/m/t/mt04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helios-endurance-tank-m-blue","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"169","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Helios Endurance Tank-M-Blue","id":678,"category_ids":["17"],"sku":"MT04-M-Blue","max_regular_price":32,"status":1},{"image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","small_image":"/m/t/mt04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helios-endurance-tank-l-blue","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"170","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Helios Endurance Tank-L-Blue","id":679,"category_ids":["17"],"sku":"MT04-L-Blue","max_regular_price":32,"status":1},{"image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","small_image":"/m/t/mt04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helios-endurance-tank-xl-blue","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"171","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Helios Endurance Tank-XL-Blue","id":680,"category_ids":["17"],"sku":"MT04-XL-Blue","max_regular_price":32,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"}],"product_id":681,"id":81,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":681,"id":80,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-681.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"699","_score":1,"_source":{"id":699,"sku":"MT07","name":"Argus All-Weather Tank","attribute_set_id":9,"price":22,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

                            \n

                            • Dark gray polyester spandex tank.
                            • Reflective details for nighttime visibility.
                            • Stash pocket.
                            • Anti-chafe flatlock seams.

                            ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"argus-all-weather-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"argus-all-weather-tank-699","links":{},"stock":{"item_id":699,"product_id":699,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","small_image":"/m/t/mt07-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"argus-all-weather-tank-xs-gray","regular_price":22,"required_options":"0","msrp_display_actual_price_type":"0","max_price":22,"minimal_regular_price":22,"size":"167","final_price":22,"special_price":null,"price":22,"minimal_price":22,"name":"Argus All-Weather Tank-XS-Gray","id":694,"category_ids":["17","36","2"],"sku":"MT07-XS-Gray","max_regular_price":22,"status":1},{"image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","small_image":"/m/t/mt07-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"argus-all-weather-tank-s-gray","regular_price":22,"required_options":"0","msrp_display_actual_price_type":"0","max_price":22,"minimal_regular_price":22,"size":"168","final_price":22,"special_price":null,"price":22,"minimal_price":22,"name":"Argus All-Weather Tank-S-Gray","id":695,"category_ids":["17","36","2"],"sku":"MT07-S-Gray","max_regular_price":22,"status":1},{"image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","small_image":"/m/t/mt07-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"argus-all-weather-tank-m-gray","regular_price":22,"required_options":"0","msrp_display_actual_price_type":"0","max_price":22,"minimal_regular_price":22,"size":"169","final_price":22,"special_price":null,"price":22,"minimal_price":22,"name":"Argus All-Weather Tank-M-Gray","id":696,"category_ids":["17","36","2"],"sku":"MT07-M-Gray","max_regular_price":22,"status":1},{"image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","small_image":"/m/t/mt07-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"argus-all-weather-tank-l-gray","regular_price":22,"required_options":"0","msrp_display_actual_price_type":"0","max_price":22,"minimal_regular_price":22,"size":"170","final_price":22,"special_price":null,"price":22,"minimal_price":22,"name":"Argus All-Weather Tank-L-Gray","id":697,"category_ids":["17","36","2"],"sku":"MT07-L-Gray","max_regular_price":22,"status":1},{"image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","small_image":"/m/t/mt07-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"argus-all-weather-tank-xl-gray","regular_price":22,"required_options":"0","msrp_display_actual_price_type":"0","max_price":22,"minimal_regular_price":22,"size":"171","final_price":22,"special_price":null,"price":22,"minimal_price":22,"name":"Argus All-Weather Tank-XL-Gray","id":698,"category_ids":["17","36","2"],"sku":"MT07-XL-Gray","max_regular_price":22,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":52,"label":"Gray"}],"product_id":699,"id":87,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":699,"id":86,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[52],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-699.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"724","_score":1,"_source":{"id":724,"sku":"MT12-XS-Blue","name":"Cassius Sparring Tank-XS-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

                            \n

                            • Royal crewneck cotton tank.
                            • Contrast stitching.
                            • Self fabric binding at neckline.
                            • Slim fit.
                            • 96% Merino / 4% LYCRA®.

                            ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"cassius-sparring-tank-xs-blue-724","links":{},"stock":{"item_id":724,"product_id":724,"stock_id":1,"qty":35,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-xs-blue-724.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"725","_score":1,"_source":{"id":725,"sku":"MT12-S-Blue","name":"Cassius Sparring Tank-S-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

                            \n

                            • Royal crewneck cotton tank.
                            • Contrast stitching.
                            • Self fabric binding at neckline.
                            • Slim fit.
                            • 96% Merino / 4% LYCRA®.

                            ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"cassius-sparring-tank-s-blue-725","links":{},"stock":{"item_id":725,"product_id":725,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-s-blue-725.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"720","_score":1,"_source":{"id":720,"sku":"MT11-M-Blue","name":"Atlas Fitness Tank-M-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

                            \n

                            • Teal scoop neck cotton tank.
                            • Triblend, soft fabric.
                            • Relaxed fit.

                            ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atlas-fitness-tank-m-blue-720","links":{},"stock":{"item_id":720,"product_id":720,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-m-blue-720.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"719","_score":1,"_source":{"id":719,"sku":"MT11-S-Blue","name":"Atlas Fitness Tank-S-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

                            \n

                            • Teal scoop neck cotton tank.
                            • Triblend, soft fabric.
                            • Relaxed fit.

                            ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atlas-fitness-tank-s-blue-719","links":{},"stock":{"item_id":719,"product_id":719,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-s-blue-719.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"715","_score":1,"_source":{"id":715,"sku":"MT10-L-Yellow","name":"Tiberius Gym Tank-L-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

                            \n

                            • Yellow scoop neck cotton tank.
                            • Comfortable, relaxed fit.
                            • 55% Hemp / 45% Organic Cotton.
                            • Pesticide- and herbicide-free hemp.

                            ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tiberius-gym-tank-l-yellow-715","links":{},"stock":{"item_id":715,"product_id":715,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-l-yellow-715.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"735","_score":1,"_source":{"id":735,"sku":"MP01-33-Purple","name":"Caesar Warm-Up Pant-33-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","color":"57","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"caesar-warm-up-pant-33-purple-735","links":{},"stock":{"item_id":735,"product_id":735,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp01-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-33-purple-735.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"718","_score":1,"_source":{"id":718,"sku":"MT11-XS-Blue","name":"Atlas Fitness Tank-XS-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

                            \n

                            • Teal scoop neck cotton tank.
                            • Triblend, soft fabric.
                            • Relaxed fit.

                            ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atlas-fitness-tank-xs-blue-718","links":{},"stock":{"item_id":718,"product_id":718,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-xs-blue-718.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"737","_score":1,"_source":{"id":737,"sku":"MP01-34-Gray","name":"Caesar Warm-Up Pant-34-Gray","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"caesar-warm-up-pant-34-gray-737","links":{},"stock":{"item_id":737,"product_id":737,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-34-gray-737.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"727","_score":1,"_source":{"id":727,"sku":"MT12-L-Blue","name":"Cassius Sparring Tank-L-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

                            \n

                            • Royal crewneck cotton tank.
                            • Contrast stitching.
                            • Self fabric binding at neckline.
                            • Slim fit.
                            • 96% Merino / 4% LYCRA®.

                            ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"cassius-sparring-tank-l-blue-727","links":{},"stock":{"item_id":727,"product_id":727,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-l-blue-727.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"733","_score":1,"_source":{"id":733,"sku":"MP01-33-Black","name":"Caesar Warm-Up Pant-33-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"caesar-warm-up-pant-33-black-733","links":{},"stock":{"item_id":733,"product_id":733,"stock_id":1,"qty":62,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp01-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-33-black-733.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"731","_score":1,"_source":{"id":731,"sku":"MP01-32-Gray","name":"Caesar Warm-Up Pant-32-Gray","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2018-02-11 12:06:30","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":23,"max_price":23,"max_regular_price":23,"minimal_regular_price":23,"special_price":"23.0000","minimal_price":23,"regular_price":35,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \r\n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","special_from_date":"2018-02-11 12:06:30","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-32-gray","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"176","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"caesar-warm-up-pant-32-gray-731","links":{},"stock":{"item_id":731,"product_id":731,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":null},{"vid":null,"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":null}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-32-gray-731.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"726","_score":1,"_source":{"id":726,"sku":"MT12-M-Blue","name":"Cassius Sparring Tank-M-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

                            \n

                            • Royal crewneck cotton tank.
                            • Contrast stitching.
                            • Self fabric binding at neckline.
                            • Slim fit.
                            • 96% Merino / 4% LYCRA®.

                            ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"cassius-sparring-tank-m-blue-726","links":{},"stock":{"item_id":726,"product_id":726,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-m-blue-726.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"734","_score":1,"_source":{"id":734,"sku":"MP01-33-Gray","name":"Caesar Warm-Up Pant-33-Gray","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"caesar-warm-up-pant-33-gray-734","links":{},"stock":{"item_id":734,"product_id":734,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-33-gray-734.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"721","_score":1,"_source":{"id":721,"sku":"MT11-L-Blue","name":"Atlas Fitness Tank-L-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

                            \n

                            • Teal scoop neck cotton tank.
                            • Triblend, soft fabric.
                            • Relaxed fit.

                            ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atlas-fitness-tank-l-blue-721","links":{},"stock":{"item_id":721,"product_id":721,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-l-blue-721.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"739","_score":1,"_source":{"id":739,"sku":"MP01-36-Black","name":"Caesar Warm-Up Pant-36-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"caesar-warm-up-pant-36-black-739","links":{},"stock":{"item_id":739,"product_id":739,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp01-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-36-black-739.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"740","_score":1,"_source":{"id":740,"sku":"MP01-36-Gray","name":"Caesar Warm-Up Pant-36-Gray","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"caesar-warm-up-pant-36-gray-740","links":{},"stock":{"item_id":740,"product_id":740,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-36-gray-740.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"748","_score":1,"_source":{"id":748,"sku":"MP02-33-Red","name":"Viktor LumaTech™ Pant-33-Red","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","color":"58","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"viktor-lumatech-and-trade-pant-33-red-748","links":{},"stock":{"item_id":748,"product_id":748,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-33-red-748.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"730","_score":1,"_source":{"id":730,"sku":"MP01-32-Black","name":"Caesar Warm-Up Pant-32-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2018-02-11 12:04:31","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \r\n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-32-black","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"176","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"caesar-warm-up-pant-32-black-730","links":{},"stock":{"item_id":730,"product_id":730,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-02-21 16:07:12","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/m/p/mp01-black_main.jpg","pos":1,"typ":"image","lab":null}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-32-black-730.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"728","_score":1,"_source":{"id":728,"sku":"MT12-XL-Blue","name":"Cassius Sparring Tank-XL-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

                            \n

                            • Royal crewneck cotton tank.
                            • Contrast stitching.
                            • Self fabric binding at neckline.
                            • Slim fit.
                            • 96% Merino / 4% LYCRA®.

                            ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassius-sparring-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"cassius-sparring-tank-xl-blue-728","links":{},"stock":{"item_id":728,"product_id":728,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-xl-blue-728.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"747","_score":1,"_source":{"id":747,"sku":"MP02-33-Gray","name":"Viktor LumaTech™ Pant-33-Gray","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","color":"52","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"viktor-lumatech-and-trade-pant-33-gray-747","links":{},"stock":{"item_id":747,"product_id":747,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-33-gray-747.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"736","_score":1,"_source":{"id":736,"sku":"MP01-34-Black","name":"Caesar Warm-Up Pant-34-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","image":"/m/p/mp01-black_main.jpg","small_image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"caesar-warm-up-pant-34-black-736","links":{},"stock":{"item_id":736,"product_id":736,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp01-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-34-black-736.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"738","_score":1,"_source":{"id":738,"sku":"MP01-34-Purple","name":"Caesar Warm-Up Pant-34-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","color":"57","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"caesar-warm-up-pant-34-purple-738","links":{},"stock":{"item_id":738,"product_id":738,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp01-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-34-purple-738.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"743","_score":1,"_source":{"id":743,"sku":"MP02-32-Blue","name":"Viktor LumaTech™ Pant-32-Blue","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","color":"50","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"viktor-lumatech-and-trade-pant-32-blue-743","links":{},"stock":{"item_id":743,"product_id":743,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp02-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-32-blue-743.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"744","_score":1,"_source":{"id":744,"sku":"MP02-32-Gray","name":"Viktor LumaTech™ Pant-32-Gray","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","color":"52","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"viktor-lumatech-and-trade-pant-32-gray-744","links":{},"stock":{"item_id":744,"product_id":744,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-32-gray-744.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"660","_score":1,"_source":{"id":660,"sku":"MT03-XS-Blue","name":"Primo Endurance Tank-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"primo-endurance-tank-xs-blue-660","links":{},"stock":{"item_id":660,"product_id":660,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xs-blue-660.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"653","_score":1,"_source":{"id":653,"sku":"MT02-L-Gray","name":"Tristan Endurance Tank-L-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tristan-endurance-tank-l-gray-653","links":{},"stock":{"item_id":653,"product_id":653,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-l-gray-653.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"672","_score":1,"_source":{"id":672,"sku":"MT03-XL-Blue","name":"Primo Endurance Tank-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"primo-endurance-tank-xl-blue-672","links":{},"stock":{"item_id":672,"product_id":672,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xl-blue-672.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"666","_score":1,"_source":{"id":666,"sku":"MT03-M-Blue","name":"Primo Endurance Tank-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"primo-endurance-tank-m-blue-666","links":{},"stock":{"item_id":666,"product_id":666,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-m-blue-666.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"669","_score":1,"_source":{"id":669,"sku":"MT03-L-Blue","name":"Primo Endurance Tank-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"primo-endurance-tank-l-blue-669","links":{},"stock":{"item_id":669,"product_id":669,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-l-blue-669.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"690","_score":1,"_source":{"id":690,"sku":"MT06-M-Black","name":"Vulcan Weightlifting Tank-M-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

                            \n

                            • Black polyester spandex tank.
                            • 100% polyester.
                            • Freedom of movement.
                            • No-chafe seams.

                            ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"vulcan-weightlifting-tank-m-black-690","links":{},"stock":{"item_id":690,"product_id":690,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-m-black-690.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"684","_score":1,"_source":{"id":684,"sku":"MT05-M-Blue","name":"Rocco Gym Tank-M-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

                            \n

                            • Light blue heather gray tank.
                            • Quick-drying, moisture-wicking.
                            • 4-way stretch construction.
                            • Flatlock seams prevent chafing.
                            • Mesh at back for breathability.
                            • 100% Polyester.
                            • UPF 50 protection.

                            ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"rocco-gym-tank-m-blue-684","links":{},"stock":{"item_id":684,"product_id":684,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-m-blue-684.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"652","_score":1,"_source":{"id":652,"sku":"MT02-M-White","name":"Tristan Endurance Tank-M-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tristan-endurance-tank-m-white-652","links":{},"stock":{"item_id":652,"product_id":652,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-m-white-652.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"651","_score":1,"_source":{"id":651,"sku":"MT02-M-Red","name":"Tristan Endurance Tank-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tristan-endurance-tank-m-red-651","links":{},"stock":{"item_id":651,"product_id":651,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-m-red-651.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"674","_score":1,"_source":{"id":674,"sku":"MT03-XL-Yellow","name":"Primo Endurance Tank-XL-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"primo-endurance-tank-xl-yellow-674","links":{},"stock":{"item_id":674,"product_id":674,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xl-yellow-674.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"685","_score":1,"_source":{"id":685,"sku":"MT05-L-Blue","name":"Rocco Gym Tank-L-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

                            \n

                            • Light blue heather gray tank.
                            • Quick-drying, moisture-wicking.
                            • 4-way stretch construction.
                            • Flatlock seams prevent chafing.
                            • Mesh at back for breathability.
                            • 100% Polyester.
                            • UPF 50 protection.

                            ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"rocco-gym-tank-l-blue-685","links":{},"stock":{"item_id":685,"product_id":685,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-l-blue-685.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"667","_score":1,"_source":{"id":667,"sku":"MT03-M-Red","name":"Primo Endurance Tank-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"primo-endurance-tank-m-red-667","links":{},"stock":{"item_id":667,"product_id":667,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-m-red-667.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"678","_score":1,"_source":{"id":678,"sku":"MT04-M-Blue","name":"Helios Endurance Tank-M-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

                            \n

                            • Blue heather tank with gray pocket.
                            • Contrast sides and back inserts.
                            • Self-fabric binding at neck and armholes.
                            • Machine wash/dry.

                            ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helios-endurance-tank-m-blue-678","links":{},"stock":{"item_id":678,"product_id":678,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-m-blue-678.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"691","_score":1,"_source":{"id":691,"sku":"MT06-L-Black","name":"Vulcan Weightlifting Tank-L-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

                            \n

                            • Black polyester spandex tank.
                            • 100% polyester.
                            • Freedom of movement.
                            • No-chafe seams.

                            ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"vulcan-weightlifting-tank-l-black-691","links":{},"stock":{"item_id":691,"product_id":691,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-l-black-691.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"671","_score":1,"_source":{"id":671,"sku":"MT03-L-Yellow","name":"Primo Endurance Tank-L-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"primo-endurance-tank-l-yellow-671","links":{},"stock":{"item_id":671,"product_id":671,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-l-yellow-671.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"679","_score":1,"_source":{"id":679,"sku":"MT04-L-Blue","name":"Helios Endurance Tank-L-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

                            \n

                            • Blue heather tank with gray pocket.
                            • Contrast sides and back inserts.
                            • Self-fabric binding at neck and armholes.
                            • Machine wash/dry.

                            ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helios-endurance-tank-l-blue-679","links":{},"stock":{"item_id":679,"product_id":679,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-l-blue-679.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"677","_score":1,"_source":{"id":677,"sku":"MT04-S-Blue","name":"Helios Endurance Tank-S-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

                            \n

                            • Blue heather tank with gray pocket.
                            • Contrast sides and back inserts.
                            • Self-fabric binding at neck and armholes.
                            • Machine wash/dry.

                            ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helios-endurance-tank-s-blue-677","links":{},"stock":{"item_id":677,"product_id":677,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-s-blue-677.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"692","_score":1,"_source":{"id":692,"sku":"MT06-XL-Black","name":"Vulcan Weightlifting Tank-XL-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

                            \n

                            • Black polyester spandex tank.
                            • 100% polyester.
                            • Freedom of movement.
                            • No-chafe seams.

                            ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"vulcan-weightlifting-tank-xl-black-692","links":{},"stock":{"item_id":692,"product_id":692,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-xl-black-692.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"697","_score":1,"_source":{"id":697,"sku":"MT07-L-Gray","name":"Argus All-Weather Tank-L-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

                            \n

                            • Dark gray polyester spandex tank.
                            • Reflective details for nighttime visibility.
                            • Stash pocket.
                            • Anti-chafe flatlock seams.

                            ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"argus-all-weather-tank-l-gray-697","links":{},"stock":{"item_id":697,"product_id":697,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-l-gray-697.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"686","_score":1,"_source":{"id":686,"sku":"MT05-XL-Blue","name":"Rocco Gym Tank-XL-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

                            \n

                            • Light blue heather gray tank.
                            • Quick-drying, moisture-wicking.
                            • 4-way stretch construction.
                            • Flatlock seams prevent chafing.
                            • Mesh at back for breathability.
                            • 100% Polyester.
                            • UPF 50 protection.

                            ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"rocco-gym-tank-xl-blue-686","links":{},"stock":{"item_id":686,"product_id":686,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-xl-blue-686.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"676","_score":1,"_source":{"id":676,"sku":"MT04-XS-Blue","name":"Helios Endurance Tank-XS-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

                            \n

                            • Blue heather tank with gray pocket.
                            • Contrast sides and back inserts.
                            • Self-fabric binding at neck and armholes.
                            • Machine wash/dry.

                            ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helios-endurance-tank-xs-blue-676","links":{},"stock":{"item_id":676,"product_id":676,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-xs-blue-676.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"700","_score":1,"_source":{"id":700,"sku":"MT08-XS-Green","name":"Sparta Gym Tank-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

                            \n

                            • Green polyester tank.
                            • Ultra lightweight.
                            • Naturally odor-resistant.
                            • Close-to-body athletic fit.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"sparta-gym-tank-xs-green-700","links":{},"stock":{"item_id":700,"product_id":700,"stock_id":1,"qty":67,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-xs-green-700.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"689","_score":1,"_source":{"id":689,"sku":"MT06-S-Black","name":"Vulcan Weightlifting Tank-S-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

                            \n

                            • Black polyester spandex tank.
                            • 100% polyester.
                            • Freedom of movement.
                            • No-chafe seams.

                            ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"vulcan-weightlifting-tank-s-black-689","links":{},"stock":{"item_id":689,"product_id":689,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-s-black-689.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"688","_score":1,"_source":{"id":688,"sku":"MT06-XS-Black","name":"Vulcan Weightlifting Tank-XS-Black","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

                            \n

                            • Black polyester spandex tank.
                            • 100% polyester.
                            • Freedom of movement.
                            • No-chafe seams.

                            ","image":"/m/t/mt06-black_main.jpg","small_image":"/m/t/mt06-black_main.jpg","thumbnail":"/m/t/mt06-black_main.jpg","color":"49","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"vulcan-weightlifting-tank-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"vulcan-weightlifting-tank-xs-black-688","links":{},"stock":{"item_id":688,"product_id":688,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt06-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt06-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/vulcan-weightlifting-tank-xs-black-688.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"683","_score":1,"_source":{"id":683,"sku":"MT05-S-Blue","name":"Rocco Gym Tank-S-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

                            \n

                            • Light blue heather gray tank.
                            • Quick-drying, moisture-wicking.
                            • 4-way stretch construction.
                            • Flatlock seams prevent chafing.
                            • Mesh at back for breathability.
                            • 100% Polyester.
                            • UPF 50 protection.

                            ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"rocco-gym-tank-s-blue-683","links":{},"stock":{"item_id":683,"product_id":683,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-s-blue-683.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"694","_score":1,"_source":{"id":694,"sku":"MT07-XS-Gray","name":"Argus All-Weather Tank-XS-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

                            \n

                            • Dark gray polyester spandex tank.
                            • Reflective details for nighttime visibility.
                            • Stash pocket.
                            • Anti-chafe flatlock seams.

                            ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"argus-all-weather-tank-xs-gray-694","links":{},"stock":{"item_id":694,"product_id":694,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-xs-gray-694.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"696","_score":1,"_source":{"id":696,"sku":"MT07-M-Gray","name":"Argus All-Weather Tank-M-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

                            \n

                            • Dark gray polyester spandex tank.
                            • Reflective details for nighttime visibility.
                            • Stash pocket.
                            • Anti-chafe flatlock seams.

                            ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"argus-all-weather-tank-m-gray-696","links":{},"stock":{"item_id":696,"product_id":696,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-m-gray-696.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"680","_score":1,"_source":{"id":680,"sku":"MT04-XL-Blue","name":"Helios Endurance Tank-XL-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

                            \n

                            • Blue heather tank with gray pocket.
                            • Contrast sides and back inserts.
                            • Self-fabric binding at neck and armholes.
                            • Machine wash/dry.

                            ","image":"/m/t/mt04-blue_main.jpg","small_image":"/m/t/mt04-blue_main.jpg","thumbnail":"/m/t/mt04-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-endurance-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helios-endurance-tank-xl-blue-680","links":{},"stock":{"item_id":680,"product_id":680,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt04-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt04-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/helios-endurance-tank-xl-blue-680.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"698","_score":1,"_source":{"id":698,"sku":"MT07-XL-Gray","name":"Argus All-Weather Tank-XL-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

                            \n

                            • Dark gray polyester spandex tank.
                            • Reflective details for nighttime visibility.
                            • Stash pocket.
                            • Anti-chafe flatlock seams.

                            ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"argus-all-weather-tank-xl-gray-698","links":{},"stock":{"item_id":698,"product_id":698,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-xl-gray-698.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"682","_score":1,"_source":{"id":682,"sku":"MT05-XS-Blue","name":"Rocco Gym Tank-XS-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Weights? Heavy Bag? Bikram? However you get sweaty, you'll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

                            \n

                            • Light blue heather gray tank.
                            • Quick-drying, moisture-wicking.
                            • 4-way stretch construction.
                            • Flatlock seams prevent chafing.
                            • Mesh at back for breathability.
                            • 100% Polyester.
                            • UPF 50 protection.

                            ","image":"/m/t/mt05-blue_main.jpg","small_image":"/m/t/mt05-blue_main.jpg","thumbnail":"/m/t/mt05-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rocco-gym-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"rocco-gym-tank-xs-blue-682","links":{},"stock":{"item_id":682,"product_id":682,"stock_id":1,"qty":55,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt05-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt05-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/rocco-gym-tank-xs-blue-682.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"695","_score":1,"_source":{"id":695,"sku":"MT07-S-Gray","name":"Argus All-Weather Tank-S-Gray","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

                            \n

                            • Dark gray polyester spandex tank.
                            • Reflective details for nighttime visibility.
                            • Stash pocket.
                            • Anti-chafe flatlock seams.

                            ","image":"/m/t/mt07-gray_main.jpg","small_image":"/m/t/mt07-gray_main.jpg","thumbnail":"/m/t/mt07-gray_main.jpg","color":"52","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"argus-all-weather-tank-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"argus-all-weather-tank-s-gray-695","links":{},"stock":{"item_id":695,"product_id":695,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt07-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt07-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/argus-all-weather-tank-s-gray-695.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"657","_score":1,"_source":{"id":657,"sku":"MT02-XL-Red","name":"Tristan Endurance Tank-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tristan-endurance-tank-xl-red-657","links":{},"stock":{"item_id":657,"product_id":657,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xl-red-657.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"658","_score":1,"_source":{"id":658,"sku":"MT02-XL-White","name":"Tristan Endurance Tank-XL-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tristan-endurance-tank-xl-white-658","links":{},"stock":{"item_id":658,"product_id":658,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xl-white-658.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"654","_score":1,"_source":{"id":654,"sku":"MT02-L-Red","name":"Tristan Endurance Tank-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-red_main.jpg","small_image":"/m/t/mt02-red_main.jpg","thumbnail":"/m/t/mt02-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tristan-endurance-tank-l-red-654","links":{},"stock":{"item_id":654,"product_id":654,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-l-red-654.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"655","_score":1,"_source":{"id":655,"sku":"MT02-L-White","name":"Tristan Endurance Tank-L-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-white_main.jpg","small_image":"/m/t/mt02-white_main.jpg","thumbnail":"/m/t/mt02-white_main.jpg","color":"59","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tristan-endurance-tank-l-white-655","links":{},"stock":{"item_id":655,"product_id":655,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt02-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt02-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt02-white_back.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt02-white_sideb.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-l-white-655.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"673","_score":1,"_source":{"id":673,"sku":"MT03-XL-Red","name":"Primo Endurance Tank-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"primo-endurance-tank-xl-red-673","links":{},"stock":{"item_id":673,"product_id":673,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xl-red-673.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"664","_score":1,"_source":{"id":664,"sku":"MT03-S-Red","name":"Primo Endurance Tank-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"primo-endurance-tank-s-red-664","links":{},"stock":{"item_id":664,"product_id":664,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-s-red-664.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"665","_score":1,"_source":{"id":665,"sku":"MT03-S-Yellow","name":"Primo Endurance Tank-S-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"primo-endurance-tank-s-yellow-665","links":{},"stock":{"item_id":665,"product_id":665,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-s-yellow-665.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"661","_score":1,"_source":{"id":661,"sku":"MT03-XS-Red","name":"Primo Endurance Tank-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"primo-endurance-tank-xs-red-661","links":{},"stock":{"item_id":661,"product_id":661,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xs-red-661.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"663","_score":1,"_source":{"id":663,"sku":"MT03-S-Blue","name":"Primo Endurance Tank-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-blue_main.jpg","small_image":"/m/t/mt03-blue_main.jpg","thumbnail":"/m/t/mt03-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"primo-endurance-tank-s-blue-663","links":{},"stock":{"item_id":663,"product_id":663,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-s-blue-663.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"662","_score":1,"_source":{"id":662,"sku":"MT03-XS-Yellow","name":"Primo Endurance Tank-XS-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"primo-endurance-tank-xs-yellow-662","links":{},"stock":{"item_id":662,"product_id":662,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-xs-yellow-662.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"716","_score":1,"_source":{"id":716,"sku":"MT10-XL-Yellow","name":"Tiberius Gym Tank-XL-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

                            \n

                            • Yellow scoop neck cotton tank.
                            • Comfortable, relaxed fit.
                            • 55% Hemp / 45% Organic Cotton.
                            • Pesticide- and herbicide-free hemp.

                            ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tiberius-gym-tank-xl-yellow-716","links":{},"stock":{"item_id":716,"product_id":716,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-xl-yellow-716.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"709","_score":1,"_source":{"id":709,"sku":"MT09-L-Blue","name":"Sinbad Fitness Tank-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

                            \n

                            • Teal polyester tank.
                            • Premium fit tank top.
                            • Ultra lightweight.
                            • Naturally odor-resistant.

                            ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"sinbad-fitness-tank-l-blue-709","links":{},"stock":{"item_id":709,"product_id":709,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-l-blue-709.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"704","_score":1,"_source":{"id":704,"sku":"MT08-XL-Green","name":"Sparta Gym Tank-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

                            \n

                            • Green polyester tank.
                            • Ultra lightweight.
                            • Naturally odor-resistant.
                            • Close-to-body athletic fit.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"sparta-gym-tank-xl-green-704","links":{},"stock":{"item_id":704,"product_id":704,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-xl-green-704.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"722","_score":1,"_source":{"id":722,"sku":"MT11-XL-Blue","name":"Atlas Fitness Tank-XL-Blue","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

                            \n

                            • Teal scoop neck cotton tank.
                            • Triblend, soft fabric.
                            • Relaxed fit.

                            ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atlas-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atlas-fitness-tank-xl-blue-722","links":{},"stock":{"item_id":722,"product_id":722,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-xl-blue-722.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"701","_score":1,"_source":{"id":701,"sku":"MT08-S-Green","name":"Sparta Gym Tank-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

                            \n

                            • Green polyester tank.
                            • Ultra lightweight.
                            • Naturally odor-resistant.
                            • Close-to-body athletic fit.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"sparta-gym-tank-s-green-701","links":{},"stock":{"item_id":701,"product_id":701,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-s-green-701.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"707","_score":1,"_source":{"id":707,"sku":"MT09-S-Blue","name":"Sinbad Fitness Tank-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

                            \n

                            • Teal polyester tank.
                            • Premium fit tank top.
                            • Ultra lightweight.
                            • Naturally odor-resistant.

                            ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"sinbad-fitness-tank-s-blue-707","links":{},"stock":{"item_id":707,"product_id":707,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-s-blue-707.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"706","_score":1,"_source":{"id":706,"sku":"MT09-XS-Blue","name":"Sinbad Fitness Tank-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

                            \n

                            • Teal polyester tank.
                            • Premium fit tank top.
                            • Ultra lightweight.
                            • Naturally odor-resistant.

                            ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"sinbad-fitness-tank-xs-blue-706","links":{},"stock":{"item_id":706,"product_id":706,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-xs-blue-706.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"702","_score":1,"_source":{"id":702,"sku":"MT08-M-Green","name":"Sparta Gym Tank-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

                            \n

                            • Green polyester tank.
                            • Ultra lightweight.
                            • Naturally odor-resistant.
                            • Close-to-body athletic fit.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"sparta-gym-tank-m-green-702","links":{},"stock":{"item_id":702,"product_id":702,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-m-green-702.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"732","_score":1,"_source":{"id":732,"sku":"MP01-32-Purple","name":"Caesar Warm-Up Pant-32-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","color":"57","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"caesar-warm-up-pant-32-purple-732","links":{},"stock":{"item_id":732,"product_id":732,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp01-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-32-purple-732.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"746","_score":1,"_source":{"id":746,"sku":"MP02-33-Blue","name":"Viktor LumaTech™ Pant-33-Blue","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","color":"50","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"viktor-lumatech-and-trade-pant-33-blue-746","links":{},"stock":{"item_id":746,"product_id":746,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp02-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-33-blue-746.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"741","_score":1,"_source":{"id":741,"sku":"MP01-36-Purple","name":"Caesar Warm-Up Pant-36-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","image":"/m/p/mp01-purple_main.jpg","small_image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","color":"57","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"caesar-warm-up-pant-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"caesar-warm-up-pant-36-purple-741","links":{},"stock":{"item_id":741,"product_id":741,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp01-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-36-purple-741.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"749","_score":1,"_source":{"id":749,"sku":"MP02-34-Blue","name":"Viktor LumaTech™ Pant-34-Blue","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","color":"50","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"viktor-lumatech-and-trade-pant-34-blue-749","links":{},"stock":{"item_id":749,"product_id":749,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp02-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-34-blue-749.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"745","_score":1,"_source":{"id":745,"sku":"MP02-32-Red","name":"Viktor LumaTech™ Pant-32-Red","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","color":"58","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"viktor-lumatech-and-trade-pant-32-red-745","links":{},"stock":{"item_id":745,"product_id":745,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-32-red-745.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"750","_score":1,"_source":{"id":750,"sku":"MP02-34-Gray","name":"Viktor LumaTech™ Pant-34-Gray","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","color":"52","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"viktor-lumatech-and-trade-pant-34-gray-750","links":{},"stock":{"item_id":750,"product_id":750,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-34-gray-750.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"713","_score":1,"_source":{"id":713,"sku":"MT10-S-Yellow","name":"Tiberius Gym Tank-S-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

                            \n

                            • Yellow scoop neck cotton tank.
                            • Comfortable, relaxed fit.
                            • 55% Hemp / 45% Organic Cotton.
                            • Pesticide- and herbicide-free hemp.

                            ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tiberius-gym-tank-s-yellow-713","links":{},"stock":{"item_id":713,"product_id":713,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-s-yellow-713.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"714","_score":1,"_source":{"id":714,"sku":"MT10-M-Yellow","name":"Tiberius Gym Tank-M-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

                            \n

                            • Yellow scoop neck cotton tank.
                            • Comfortable, relaxed fit.
                            • 55% Hemp / 45% Organic Cotton.
                            • Pesticide- and herbicide-free hemp.

                            ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tiberius-gym-tank-m-yellow-714","links":{},"stock":{"item_id":714,"product_id":714,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-m-yellow-714.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"708","_score":1,"_source":{"id":708,"sku":"MT09-M-Blue","name":"Sinbad Fitness Tank-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

                            \n

                            • Teal polyester tank.
                            • Premium fit tank top.
                            • Ultra lightweight.
                            • Naturally odor-resistant.

                            ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"sinbad-fitness-tank-m-blue-708","links":{},"stock":{"item_id":708,"product_id":708,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-m-blue-708.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"712","_score":1,"_source":{"id":712,"sku":"MT10-XS-Yellow","name":"Tiberius Gym Tank-XS-Yellow","attribute_set_id":9,"price":18,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

                            \n

                            • Yellow scoop neck cotton tank.
                            • Comfortable, relaxed fit.
                            • 55% Hemp / 45% Organic Cotton.
                            • Pesticide- and herbicide-free hemp.

                            ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiberius-gym-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tiberius-gym-tank-xs-yellow-712","links":{},"stock":{"item_id":712,"product_id":712,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-xs-yellow-712.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"710","_score":1,"_source":{"id":710,"sku":"MT09-XL-Blue","name":"Sinbad Fitness Tank-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

                            \n

                            • Teal polyester tank.
                            • Premium fit tank top.
                            • Ultra lightweight.
                            • Naturally odor-resistant.

                            ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sinbad-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"sinbad-fitness-tank-xl-blue-710","links":{},"stock":{"item_id":710,"product_id":710,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-xl-blue-710.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"703","_score":1,"_source":{"id":703,"sku":"MT08-L-Green","name":"Sparta Gym Tank-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

                            \n

                            • Green polyester tank.
                            • Ultra lightweight.
                            • Naturally odor-resistant.
                            • Close-to-body athletic fit.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sparta-gym-tank-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"sparta-gym-tank-l-green-703","links":{},"stock":{"item_id":703,"product_id":703,"stock_id":1,"qty":77,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-l-green-703.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"670","_score":1,"_source":{"id":670,"sku":"MT03-L-Red","name":"Primo Endurance Tank-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-red_main.jpg","small_image":"/m/t/mt03-red_main.jpg","thumbnail":"/m/t/mt03-red_main.jpg","color":"58","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"primo-endurance-tank-l-red-670","links":{},"stock":{"item_id":670,"product_id":670,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt03-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-l-red-670.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"656","_score":1,"_source":{"id":656,"sku":"MT02-XL-Gray","name":"Tristan Endurance Tank-XL-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.

                            \n

                            • White performance tank.
                            • Stylish contrast stitching.
                            • Relaxed fit.
                            • Ribbed crew neckline.
                            • Machine wash/dry.

                            ","image":"/m/t/mt02-gray_main.jpg","small_image":"/m/t/mt02-gray_main.jpg","thumbnail":"/m/t/mt02-gray_main.jpg","color":"52","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tristan-endurance-tank-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tristan-endurance-tank-xl-gray-656","links":{},"stock":{"item_id":656,"product_id":656,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt02-gray_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tristan-endurance-tank-xl-gray-656.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"668","_score":1,"_source":{"id":668,"sku":"MT03-M-Yellow","name":"Primo Endurance Tank-M-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:58","updated_at":"2017-11-06 12:16:58","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

                            \n

                            • Red heather tank with gray pocket.
                            • Chafe-resistant flatlock seams.
                            • Relaxed fit.
                            • Contrast topstitching.
                            • Machine wash/dry.

                            ","image":"/m/t/mt03-yellow_main.jpg","small_image":"/m/t/mt03-yellow_main.jpg","thumbnail":"/m/t/mt03-yellow_main.jpg","color":"60","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"primo-endurance-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"primo-endurance-tank-m-yellow-668","links":{},"stock":{"item_id":668,"product_id":668,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt03-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/primo-endurance-tank-m-yellow-668.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"761","_score":1,"_source":{"id":761,"sku":"MP03-33-Red","name":"Geo Insulated Jogging Pant-33-Red","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"geo-insulated-jogging-pant-33-red-761","links":{},"stock":{"item_id":761,"product_id":761,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp03-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-33-red-761.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"798","_score":1,"_source":{"id":798,"sku":"MP06-33-Gray","name":"Mithra Warmup Pant-33-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","color":"52","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"mithra-warmup-pant-33-gray-798","links":{},"stock":{"item_id":798,"product_id":798,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-33-gray-798.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"769","_score":1,"_source":{"id":769,"sku":"MP04-32-Black","name":"Supernova Sport Pant-32-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"supernova-sport-pant-32-black-769","links":{},"stock":{"item_id":769,"product_id":769,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp04-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-32-black-769.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"779","_score":1,"_source":{"id":779,"sku":"MP04-36-Gray","name":"Supernova Sport Pant-36-Gray","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"supernova-sport-pant-36-gray-779","links":{},"stock":{"item_id":779,"product_id":779,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-36-gray-779.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"786","_score":1,"_source":{"id":786,"sku":"MP05-33-Blue","name":"Kratos Gym Pant-33-Blue","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"kratos-gym-pant-33-blue-786","links":{},"stock":{"item_id":786,"product_id":786,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-33-blue-786.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"793","_score":1,"_source":{"id":793,"sku":"MP05-36-Green","name":"Kratos Gym Pant-36-Green","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"kratos-gym-pant-36-green-793","links":{},"stock":{"item_id":793,"product_id":793,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp05-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-36-green-793.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"774","_score":1,"_source":{"id":774,"sku":"MP04-33-Green","name":"Supernova Sport Pant-33-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","color":"53","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"supernova-sport-pant-33-green-774","links":{},"stock":{"item_id":774,"product_id":774,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp04-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-33-green-774.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"756","_score":1,"_source":{"id":756,"sku":"MP03-32-Blue","name":"Geo Insulated Jogging Pant-32-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"geo-insulated-jogging-pant-32-blue-756","links":{},"stock":{"item_id":756,"product_id":756,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-32-blue-756.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"765","_score":1,"_source":{"id":765,"sku":"MP03-36-Blue","name":"Geo Insulated Jogging Pant-36-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"geo-insulated-jogging-pant-36-blue-765","links":{},"stock":{"item_id":765,"product_id":765,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-36-blue-765.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"787","_score":1,"_source":{"id":787,"sku":"MP05-33-Green","name":"Kratos Gym Pant-33-Green","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"kratos-gym-pant-33-green-787","links":{},"stock":{"item_id":787,"product_id":787,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp05-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-33-green-787.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"783","_score":1,"_source":{"id":783,"sku":"MP05-32-Blue","name":"Kratos Gym Pant-32-Blue","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"kratos-gym-pant-32-blue-783","links":{},"stock":{"item_id":783,"product_id":783,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-32-blue-783.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"792","_score":1,"_source":{"id":792,"sku":"MP05-36-Blue","name":"Kratos Gym Pant-36-Blue","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"kratos-gym-pant-36-blue-792","links":{},"stock":{"item_id":792,"product_id":792,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-36-blue-792.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"796","_score":1,"_source":{"id":796,"sku":"MP06-32-Green","name":"Mithra Warmup Pant-32-Green","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","color":"53","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"mithra-warmup-pant-32-green-796","links":{},"stock":{"item_id":796,"product_id":796,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp06-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-32-green-796.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"799","_score":1,"_source":{"id":799,"sku":"MP06-33-Green","name":"Mithra Warmup Pant-33-Green","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","color":"53","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"mithra-warmup-pant-33-green-799","links":{},"stock":{"item_id":799,"product_id":799,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp06-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-33-green-799.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"785","_score":1,"_source":{"id":785,"sku":"MP05-33-Black","name":"Kratos Gym Pant-33-Black","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"kratos-gym-pant-33-black-785","links":{},"stock":{"item_id":785,"product_id":785,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp05-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-33-black-785.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"789","_score":1,"_source":{"id":789,"sku":"MP05-34-Blue","name":"Kratos Gym Pant-34-Blue","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"kratos-gym-pant-34-blue-789","links":{},"stock":{"item_id":789,"product_id":789,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-34-blue-789.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"776","_score":1,"_source":{"id":776,"sku":"MP04-34-Gray","name":"Supernova Sport Pant-34-Gray","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"supernova-sport-pant-34-gray-776","links":{},"stock":{"item_id":776,"product_id":776,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-34-gray-776.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"771","_score":1,"_source":{"id":771,"sku":"MP04-32-Green","name":"Supernova Sport Pant-32-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","color":"53","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"supernova-sport-pant-32-green-771","links":{},"stock":{"item_id":771,"product_id":771,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp04-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-32-green-771.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"780","_score":1,"_source":{"id":780,"sku":"MP04-36-Green","name":"Supernova Sport Pant-36-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","color":"53","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"supernova-sport-pant-36-green-780","links":{},"stock":{"item_id":780,"product_id":780,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp04-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-36-green-780.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"800","_score":1,"_source":{"id":800,"sku":"MP06-33-Orange","name":"Mithra Warmup Pant-33-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","color":"56","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-33-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"mithra-warmup-pant-33-orange-800","links":{},"stock":{"item_id":800,"product_id":800,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp06-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-33-orange-800.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"795","_score":1,"_source":{"id":795,"sku":"MP06-32-Gray","name":"Mithra Warmup Pant-32-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","color":"52","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"mithra-warmup-pant-32-gray-795","links":{},"stock":{"item_id":795,"product_id":795,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-32-gray-795.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"797","_score":1,"_source":{"id":797,"sku":"MP06-32-Orange","name":"Mithra Warmup Pant-32-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","color":"56","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-32-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"mithra-warmup-pant-32-orange-797","links":{},"stock":{"item_id":797,"product_id":797,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp06-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-32-orange-797.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"791","_score":1,"_source":{"id":791,"sku":"MP05-36-Black","name":"Kratos Gym Pant-36-Black","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"kratos-gym-pant-36-black-791","links":{},"stock":{"item_id":791,"product_id":791,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp05-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-36-black-791.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"788","_score":1,"_source":{"id":788,"sku":"MP05-34-Black","name":"Kratos Gym Pant-34-Black","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"kratos-gym-pant-34-black-788","links":{},"stock":{"item_id":788,"product_id":788,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp05-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-34-black-788.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"782","_score":1,"_source":{"id":782,"sku":"MP05-32-Black","name":"Kratos Gym Pant-32-Black","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-black_main.jpg","small_image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"kratos-gym-pant-32-black-782","links":{},"stock":{"item_id":782,"product_id":782,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp05-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-32-black-782.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"790","_score":1,"_source":{"id":790,"sku":"MP05-34-Green","name":"Kratos Gym Pant-34-Green","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"kratos-gym-pant-34-green-790","links":{},"stock":{"item_id":790,"product_id":790,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp05-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-34-green-790.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"755","_score":1,"_source":{"id":755,"sku":"MP02","name":"Viktor LumaTech™ Pant","attribute_set_id":10,"price":46,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"viktor-lumatech-trade-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38,151],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,115],"pattern":"197","climate":[203,204,211],"slug":"viktor-lumatech-and-trade-pant-755","links":{},"stock":{"item_id":755,"product_id":755,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","color":"50","small_image":"/m/p/mp02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"viktor-lumatech-trade-pant-32-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"176","price":46,"name":"Viktor LumaTech™ Pant-32-Blue","id":743,"category_ids":["18","32","35","2"],"sku":"MP02-32-Blue","status":1},{"image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","color":"52","small_image":"/m/p/mp02-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"viktor-lumatech-trade-pant-32-gray","required_options":"0","msrp_display_actual_price_type":"0","size":"176","price":46,"name":"Viktor LumaTech™ Pant-32-Gray","id":744,"category_ids":["18","32","35","2"],"sku":"MP02-32-Gray","status":1},{"image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","color":"58","small_image":"/m/p/mp02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"viktor-lumatech-trade-pant-32-red","required_options":"0","msrp_display_actual_price_type":"0","size":"176","price":46,"name":"Viktor LumaTech™ Pant-32-Red","id":745,"category_ids":["18","32","35","2"],"sku":"MP02-32-Red","status":1},{"image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","color":"50","small_image":"/m/p/mp02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"viktor-lumatech-trade-pant-33-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"177","price":46,"name":"Viktor LumaTech™ Pant-33-Blue","id":746,"category_ids":["18","32","35","2"],"sku":"MP02-33-Blue","status":1},{"image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","color":"52","small_image":"/m/p/mp02-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"viktor-lumatech-trade-pant-33-gray","required_options":"0","msrp_display_actual_price_type":"0","size":"177","price":46,"name":"Viktor LumaTech™ Pant-33-Gray","id":747,"category_ids":["18","32","35","2"],"sku":"MP02-33-Gray","status":1},{"image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","color":"58","small_image":"/m/p/mp02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"viktor-lumatech-trade-pant-33-red","required_options":"0","msrp_display_actual_price_type":"0","size":"177","price":46,"name":"Viktor LumaTech™ Pant-33-Red","id":748,"category_ids":["18","32","35","2"],"sku":"MP02-33-Red","status":1},{"image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","color":"50","small_image":"/m/p/mp02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"viktor-lumatech-trade-pant-34-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"178","price":46,"name":"Viktor LumaTech™ Pant-34-Blue","id":749,"category_ids":["18","32","35","2"],"sku":"MP02-34-Blue","status":1},{"image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","color":"52","small_image":"/m/p/mp02-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"viktor-lumatech-trade-pant-34-gray","required_options":"0","msrp_display_actual_price_type":"0","size":"178","price":46,"name":"Viktor LumaTech™ Pant-34-Gray","id":750,"category_ids":["18","32","35","2"],"sku":"MP02-34-Gray","status":1},{"image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","color":"58","small_image":"/m/p/mp02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"viktor-lumatech-trade-pant-34-red","regular_price":46,"required_options":"0","msrp_display_actual_price_type":"0","max_price":46,"minimal_regular_price":46,"size":"178","final_price":46,"special_price":null,"price":46,"minimal_price":46,"name":"Viktor LumaTech™ Pant-34-Red","id":751,"category_ids":["18","32","35","2"],"sku":"MP02-34-Red","max_regular_price":46,"status":1},{"image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","color":"50","small_image":"/m/p/mp02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"viktor-lumatech-trade-pant-36-blue","regular_price":46,"required_options":"0","msrp_display_actual_price_type":"0","max_price":46,"minimal_regular_price":46,"size":"179","final_price":46,"special_price":null,"price":46,"minimal_price":46,"name":"Viktor LumaTech™ Pant-36-Blue","id":752,"category_ids":["18","32","35","2"],"sku":"MP02-36-Blue","max_regular_price":46,"status":1},{"image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","color":"52","small_image":"/m/p/mp02-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"viktor-lumatech-trade-pant-36-gray","regular_price":46,"required_options":"0","msrp_display_actual_price_type":"0","max_price":46,"minimal_regular_price":46,"size":"179","final_price":46,"special_price":null,"price":46,"minimal_price":46,"name":"Viktor LumaTech™ Pant-36-Gray","id":753,"category_ids":["18","32","35","2"],"sku":"MP02-36-Gray","max_regular_price":46,"status":1},{"image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","color":"58","small_image":"/m/p/mp02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"viktor-lumatech-trade-pant-36-red","regular_price":46,"required_options":"0","msrp_display_actual_price_type":"0","max_price":46,"minimal_regular_price":46,"size":"179","final_price":46,"special_price":null,"price":46,"minimal_price":46,"name":"Viktor LumaTech™ Pant-36-Red","id":754,"category_ids":["18","32","35","2"],"sku":"MP02-36-Red","max_regular_price":46,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"}],"product_id":755,"id":101,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":755,"id":100,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,52,58],"size_options":[176,177,178,179],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-755.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"781","_score":1,"_source":{"id":781,"sku":"MP04","name":"Supernova Sport Pant","attribute_set_id":10,"price":45,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"supernova-sport-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[202,203,204,208,210,211],"slug":"supernova-sport-pant-781","links":{},"stock":{"item_id":781,"product_id":781,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","color":"49","small_image":"/m/p/mp04-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"supernova-sport-pant-32-black","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"176","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Supernova Sport Pant-32-Black","id":769,"category_ids":["18","32","2"],"sku":"MP04-32-Black","max_regular_price":45,"status":1},{"image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","color":"52","small_image":"/m/p/mp04-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"supernova-sport-pant-32-gray","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"176","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Supernova Sport Pant-32-Gray","id":770,"category_ids":["18","32","2"],"sku":"MP04-32-Gray","max_regular_price":45,"status":1},{"image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","color":"53","small_image":"/m/p/mp04-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"supernova-sport-pant-32-green","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"176","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Supernova Sport Pant-32-Green","id":771,"category_ids":["18","32","2"],"sku":"MP04-32-Green","max_regular_price":45,"status":1},{"image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","color":"49","small_image":"/m/p/mp04-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"supernova-sport-pant-33-black","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"177","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Supernova Sport Pant-33-Black","id":772,"category_ids":["18","32","2"],"sku":"MP04-33-Black","max_regular_price":45,"status":1},{"image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","color":"52","small_image":"/m/p/mp04-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"supernova-sport-pant-33-gray","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"177","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Supernova Sport Pant-33-Gray","id":773,"category_ids":["18","32","2"],"sku":"MP04-33-Gray","max_regular_price":45,"status":1},{"image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","color":"53","small_image":"/m/p/mp04-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"supernova-sport-pant-33-green","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"177","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Supernova Sport Pant-33-Green","id":774,"category_ids":["18","32","2"],"sku":"MP04-33-Green","max_regular_price":45,"status":1},{"image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","color":"49","small_image":"/m/p/mp04-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"supernova-sport-pant-34-black","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"178","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Supernova Sport Pant-34-Black","id":775,"category_ids":["18","32","2"],"sku":"MP04-34-Black","max_regular_price":45,"status":1},{"image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","color":"52","small_image":"/m/p/mp04-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"supernova-sport-pant-34-gray","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"178","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Supernova Sport Pant-34-Gray","id":776,"category_ids":["18","32","2"],"sku":"MP04-34-Gray","max_regular_price":45,"status":1},{"image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","color":"53","small_image":"/m/p/mp04-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"supernova-sport-pant-34-green","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"178","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Supernova Sport Pant-34-Green","id":777,"category_ids":["18","32","2"],"sku":"MP04-34-Green","max_regular_price":45,"status":1},{"image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","color":"49","small_image":"/m/p/mp04-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"supernova-sport-pant-36-black","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"179","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Supernova Sport Pant-36-Black","id":778,"category_ids":["18","32","2"],"sku":"MP04-36-Black","max_regular_price":45,"status":1},{"image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","color":"52","small_image":"/m/p/mp04-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"supernova-sport-pant-36-gray","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"179","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Supernova Sport Pant-36-Gray","id":779,"category_ids":["18","32","2"],"sku":"MP04-36-Gray","max_regular_price":45,"status":1},{"image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","color":"53","small_image":"/m/p/mp04-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"supernova-sport-pant-36-green","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"179","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Supernova Sport Pant-36-Green","id":780,"category_ids":["18","32","2"],"sku":"MP04-36-Green","max_regular_price":45,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":781,"id":105,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":781,"id":104,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,52,53],"size_options":[176,177,178,179],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-781.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"768","_score":1,"_source":{"id":768,"sku":"MP03","name":"Geo Insulated Jogging Pant","attribute_set_id":10,"price":51,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-black_main.jpg","small_image":"/m/p/mp03-black_main.jpg","thumbnail":"/m/p/mp03-black_main.jpg","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"geo-insulated-jogging-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,38,39,151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[202,204,205,210,211],"slug":"geo-insulated-jogging-pant-768","links":{},"stock":{"item_id":768,"product_id":768,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp03-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp03-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp03-black_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","color":"50","small_image":"/m/p/mp03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"geo-insulated-jogging-pant-32-blue","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"176","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Geo Insulated Jogging Pant-32-Blue","id":756,"category_ids":["18","32","8","2"],"sku":"MP03-32-Blue","max_regular_price":51,"status":1},{"image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","color":"53","small_image":"/m/p/mp03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"geo-insulated-jogging-pant-32-green","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"176","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Geo Insulated Jogging Pant-32-Green","id":757,"category_ids":["18","32","8","2"],"sku":"MP03-32-Green","max_regular_price":51,"status":1},{"image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","color":"58","small_image":"/m/p/mp03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"geo-insulated-jogging-pant-32-red","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"176","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Geo Insulated Jogging Pant-32-Red","id":758,"category_ids":["18","32","8","2"],"sku":"MP03-32-Red","max_regular_price":51,"status":1},{"image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","color":"50","small_image":"/m/p/mp03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"geo-insulated-jogging-pant-33-blue","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"177","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Geo Insulated Jogging Pant-33-Blue","id":759,"category_ids":["18","32","8","2"],"sku":"MP03-33-Blue","max_regular_price":51,"status":1},{"image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","color":"53","small_image":"/m/p/mp03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"geo-insulated-jogging-pant-33-green","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"177","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Geo Insulated Jogging Pant-33-Green","id":760,"category_ids":["18","32","8","2"],"sku":"MP03-33-Green","max_regular_price":51,"status":1},{"image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","color":"58","small_image":"/m/p/mp03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"geo-insulated-jogging-pant-33-red","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"177","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Geo Insulated Jogging Pant-33-Red","id":761,"category_ids":["18","32","8","2"],"sku":"MP03-33-Red","max_regular_price":51,"status":1},{"image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","color":"50","small_image":"/m/p/mp03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"geo-insulated-jogging-pant-34-blue","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"178","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Geo Insulated Jogging Pant-34-Blue","id":762,"category_ids":["18","32","8","2"],"sku":"MP03-34-Blue","max_regular_price":51,"status":1},{"image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","color":"53","small_image":"/m/p/mp03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"geo-insulated-jogging-pant-34-green","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"178","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Geo Insulated Jogging Pant-34-Green","id":763,"category_ids":["18","32","8","2"],"sku":"MP03-34-Green","max_regular_price":51,"status":1},{"image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","color":"58","small_image":"/m/p/mp03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"geo-insulated-jogging-pant-34-red","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"178","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Geo Insulated Jogging Pant-34-Red","id":764,"category_ids":["18","32","8","2"],"sku":"MP03-34-Red","max_regular_price":51,"status":1},{"image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","color":"50","small_image":"/m/p/mp03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"geo-insulated-jogging-pant-36-blue","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"179","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Geo Insulated Jogging Pant-36-Blue","id":765,"category_ids":["18","32","8","2"],"sku":"MP03-36-Blue","max_regular_price":51,"status":1},{"image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","color":"53","small_image":"/m/p/mp03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"geo-insulated-jogging-pant-36-green","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"179","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Geo Insulated Jogging Pant-36-Green","id":766,"category_ids":["18","32","8","2"],"sku":"MP03-36-Green","max_regular_price":51,"status":1},{"image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","color":"58","small_image":"/m/p/mp03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"geo-insulated-jogging-pant-36-red","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"179","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Geo Insulated Jogging Pant-36-Red","id":767,"category_ids":["18","32","8","2"],"sku":"MP03-36-Red","max_regular_price":51,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":768,"id":103,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":768,"id":102,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[176,177,178,179],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-768.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"794","_score":1,"_source":{"id":794,"sku":"MP05","name":"Kratos Gym Pant","attribute_set_id":10,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-blue_main.jpg","small_image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"kratos-gym-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38,39],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[208,210,211],"slug":"kratos-gym-pant-794","links":{},"stock":{"item_id":794,"product_id":794,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp05-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp05-blue_back.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp05-blue_outfit.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","color":"49","small_image":"/m/p/mp05-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kratos-gym-pant-32-black","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"176","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Kratos Gym Pant-32-Black","id":782,"category_ids":["18","32","8","2"],"sku":"MP05-32-Black","max_regular_price":57,"status":1},{"image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","color":"50","small_image":"/m/p/mp05-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kratos-gym-pant-32-blue","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"176","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Kratos Gym Pant-32-Blue","id":783,"category_ids":["18","32","8","2"],"sku":"MP05-32-Blue","max_regular_price":57,"status":1},{"image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","color":"53","small_image":"/m/p/mp05-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kratos-gym-pant-32-green","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"176","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Kratos Gym Pant-32-Green","id":784,"category_ids":["18","32","8","2"],"sku":"MP05-32-Green","max_regular_price":57,"status":1},{"image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","color":"49","small_image":"/m/p/mp05-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kratos-gym-pant-33-black","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"177","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Kratos Gym Pant-33-Black","id":785,"category_ids":["18","32","8","2"],"sku":"MP05-33-Black","max_regular_price":57,"status":1},{"image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","color":"50","small_image":"/m/p/mp05-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kratos-gym-pant-33-blue","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"177","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Kratos Gym Pant-33-Blue","id":786,"category_ids":["18","32","8","2"],"sku":"MP05-33-Blue","max_regular_price":57,"status":1},{"image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","color":"53","small_image":"/m/p/mp05-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kratos-gym-pant-33-green","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"177","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Kratos Gym Pant-33-Green","id":787,"category_ids":["18","32","8","2"],"sku":"MP05-33-Green","max_regular_price":57,"status":1},{"image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","color":"49","small_image":"/m/p/mp05-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kratos-gym-pant-34-black","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"178","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Kratos Gym Pant-34-Black","id":788,"category_ids":["18","32","8","2"],"sku":"MP05-34-Black","max_regular_price":57,"status":1},{"image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","color":"50","small_image":"/m/p/mp05-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kratos-gym-pant-34-blue","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"178","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Kratos Gym Pant-34-Blue","id":789,"category_ids":["18","32","8","2"],"sku":"MP05-34-Blue","max_regular_price":57,"status":1},{"image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","color":"53","small_image":"/m/p/mp05-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kratos-gym-pant-34-green","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"178","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Kratos Gym Pant-34-Green","id":790,"category_ids":["18","32","8","2"],"sku":"MP05-34-Green","max_regular_price":57,"status":1},{"image":"/m/p/mp05-black_main.jpg","thumbnail":"/m/p/mp05-black_main.jpg","color":"49","small_image":"/m/p/mp05-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kratos-gym-pant-36-black","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"179","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Kratos Gym Pant-36-Black","id":791,"category_ids":["18","32","8","2"],"sku":"MP05-36-Black","max_regular_price":57,"status":1},{"image":"/m/p/mp05-blue_main.jpg","thumbnail":"/m/p/mp05-blue_main.jpg","color":"50","small_image":"/m/p/mp05-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kratos-gym-pant-36-blue","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"179","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Kratos Gym Pant-36-Blue","id":792,"category_ids":["18","32","8","2"],"sku":"MP05-36-Blue","max_regular_price":57,"status":1},{"image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","color":"53","small_image":"/m/p/mp05-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kratos-gym-pant-36-green","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"179","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Kratos Gym Pant-36-Green","id":793,"category_ids":["18","32","8","2"],"sku":"MP05-36-Green","max_regular_price":57,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":794,"id":107,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":794,"id":106,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-794.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"717","_score":1,"_source":{"id":717,"sku":"MT10","name":"Tiberius Gym Tank","attribute_set_id":9,"price":18,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Whether you're classy or just sweaty, the Tiberius Gym Tank helps you look good while you're at it. What's more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you're welcome back to the gym.

                            \n

                            • Yellow scoop neck cotton tank.
                            • Comfortable, relaxed fit.
                            • 55% Hemp / 45% Organic Cotton.
                            • Pesticide- and herbicide-free hemp.

                            ","image":"/m/t/mt10-yellow_main.jpg","small_image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"tiberius-gym-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,153,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"tiberius-gym-tank-717","links":{},"stock":{"item_id":717,"product_id":717,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt10-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt10-yellow_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","small_image":"/m/t/mt10-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tiberius-gym-tank-xs-yellow","regular_price":18,"required_options":"0","msrp_display_actual_price_type":"0","max_price":18,"minimal_regular_price":18,"size":"167","final_price":18,"special_price":null,"price":18,"minimal_price":18,"name":"Tiberius Gym Tank-XS-Yellow","id":712,"category_ids":["17"],"sku":"MT10-XS-Yellow","max_regular_price":18,"status":1},{"image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","small_image":"/m/t/mt10-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tiberius-gym-tank-s-yellow","regular_price":18,"required_options":"0","msrp_display_actual_price_type":"0","max_price":18,"minimal_regular_price":18,"size":"168","final_price":18,"special_price":null,"price":18,"minimal_price":18,"name":"Tiberius Gym Tank-S-Yellow","id":713,"category_ids":["17"],"sku":"MT10-S-Yellow","max_regular_price":18,"status":1},{"image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","small_image":"/m/t/mt10-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tiberius-gym-tank-m-yellow","regular_price":18,"required_options":"0","msrp_display_actual_price_type":"0","max_price":18,"minimal_regular_price":18,"size":"169","final_price":18,"special_price":null,"price":18,"minimal_price":18,"name":"Tiberius Gym Tank-M-Yellow","id":714,"category_ids":["17"],"sku":"MT10-M-Yellow","max_regular_price":18,"status":1},{"image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","small_image":"/m/t/mt10-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tiberius-gym-tank-l-yellow","regular_price":18,"required_options":"0","msrp_display_actual_price_type":"0","max_price":18,"minimal_regular_price":18,"size":"170","final_price":18,"special_price":null,"price":18,"minimal_price":18,"name":"Tiberius Gym Tank-L-Yellow","id":715,"category_ids":["17"],"sku":"MT10-L-Yellow","max_regular_price":18,"status":1},{"image":"/m/t/mt10-yellow_main.jpg","thumbnail":"/m/t/mt10-yellow_main.jpg","color":"60","small_image":"/m/t/mt10-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tiberius-gym-tank-xl-yellow","regular_price":18,"required_options":"0","msrp_display_actual_price_type":"0","max_price":18,"minimal_regular_price":18,"size":"171","final_price":18,"special_price":null,"price":18,"minimal_price":18,"name":"Tiberius Gym Tank-XL-Yellow","id":716,"category_ids":["17"],"sku":"MT10-XL-Yellow","max_regular_price":18,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":60,"label":"Yellow"}],"product_id":717,"id":93,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":717,"id":92,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[60],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/tiberius-gym-tank-717.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"729","_score":1,"_source":{"id":729,"sku":"MT12","name":"Cassius Sparring Tank","attribute_set_id":9,"price":18,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Whether you're up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

                            \n

                            • Royal crewneck cotton tank.
                            • Contrast stitching.
                            • Self fabric binding at neckline.
                            • Slim fit.
                            • 96% Merino / 4% LYCRA®.

                            ","image":"/m/t/mt12-blue_main.jpg","small_image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cassius-sparring-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"cassius-sparring-tank-729","links":{},"stock":{"item_id":729,"product_id":729,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt12-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt12-blue_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","small_image":"/m/t/mt12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cassius-sparring-tank-xs-blue","regular_price":18,"required_options":"0","msrp_display_actual_price_type":"0","max_price":18,"minimal_regular_price":18,"size":"167","final_price":18,"special_price":null,"price":18,"minimal_price":18,"name":"Cassius Sparring Tank-XS-Blue","id":724,"category_ids":["17"],"sku":"MT12-XS-Blue","max_regular_price":18,"status":1},{"image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","small_image":"/m/t/mt12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cassius-sparring-tank-s-blue","regular_price":18,"required_options":"0","msrp_display_actual_price_type":"0","max_price":18,"minimal_regular_price":18,"size":"168","final_price":18,"special_price":null,"price":18,"minimal_price":18,"name":"Cassius Sparring Tank-S-Blue","id":725,"category_ids":["17"],"sku":"MT12-S-Blue","max_regular_price":18,"status":1},{"image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","small_image":"/m/t/mt12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cassius-sparring-tank-m-blue","regular_price":18,"required_options":"0","msrp_display_actual_price_type":"0","max_price":18,"minimal_regular_price":18,"size":"169","final_price":18,"special_price":null,"price":18,"minimal_price":18,"name":"Cassius Sparring Tank-M-Blue","id":726,"category_ids":["17"],"sku":"MT12-M-Blue","max_regular_price":18,"status":1},{"image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","small_image":"/m/t/mt12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cassius-sparring-tank-l-blue","regular_price":18,"required_options":"0","msrp_display_actual_price_type":"0","max_price":18,"minimal_regular_price":18,"size":"170","final_price":18,"special_price":null,"price":18,"minimal_price":18,"name":"Cassius Sparring Tank-L-Blue","id":727,"category_ids":["17"],"sku":"MT12-L-Blue","max_regular_price":18,"status":1},{"image":"/m/t/mt12-blue_main.jpg","thumbnail":"/m/t/mt12-blue_main.jpg","color":"50","small_image":"/m/t/mt12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cassius-sparring-tank-xl-blue","regular_price":18,"required_options":"0","msrp_display_actual_price_type":"0","max_price":18,"minimal_regular_price":18,"size":"171","final_price":18,"special_price":null,"price":18,"minimal_price":18,"name":"Cassius Sparring Tank-XL-Blue","id":728,"category_ids":["17"],"sku":"MT12-XL-Blue","max_regular_price":18,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"}],"product_id":729,"id":97,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":729,"id":96,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/cassius-sparring-tank-729.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"742","_score":1,"_source":{"id":742,"sku":"MP01","name":"Caesar Warm-Up Pant","attribute_set_id":10,"price":35,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2018-02-11 12:01:51","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":23,"max_price":23,"max_regular_price":23,"minimal_regular_price":23,"special_price":null,"minimal_price":23,"regular_price":35,"description":"

                            Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don't have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

                            \r\n

                            • Light gray heather knit straight leg pants.
                            • Relaxed fit.
                            • Inseam: 32\".
                            • Machine wash/dry.
                            • CoolTech™ wicking fabric.

                            ","image":"/m/p/mp01-gray_main.jpg","small_image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","category_ids":[18,32,2],"options_container":"container2","required_options":"1","has_options":"1","url_key":"caesar-warm-up-pant","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":[156,145,146,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[204,208],"slug":"caesar-warm-up-pant-742","links":{},"stock":{"item_id":742,"product_id":742,"stock_id":1,"qty":1,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp01-gray_main.jpg","pos":1,"typ":"image","lab":null},{"vid":null,"image":"/m/p/mp01-gray_back.jpg","pos":2,"typ":"image","lab":null}],"configurable_children":[{"image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","color":"49","small_image":"/m/p/mp01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"caesar-warm-up-pant-32-black","required_options":"0","msrp_display_actual_price_type":"0","size":"176","price":35,"name":"Caesar Warm-Up Pant-32-Black","id":730,"category_ids":["18","32","2"],"sku":"MP01-32-Black","status":1},{"color":"52","small_image":"/m/p/mp01-gray_main.jpg","tier_prices":[],"regular_price":35,"msrp_display_actual_price_type":"0","final_price":23,"price":35,"special_from_date":"2018-02-11 12:06:30","id":731,"category_ids":["18","32","2"],"sku":"MP01-32-Gray","image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","tax_class_id":"2","has_options":"0","url_key":"caesar-warm-up-pant-32-gray","required_options":"0","max_price":23,"minimal_regular_price":23,"size":"176","special_price":23,"minimal_price":23,"name":"Caesar Warm-Up Pant-32-Gray","max_regular_price":23,"status":1},{"image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","color":"57","small_image":"/m/p/mp01-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"caesar-warm-up-pant-32-purple","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"176","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Caesar Warm-Up Pant-32-Purple","id":732,"category_ids":["18","32","2"],"sku":"MP01-32-Purple","max_regular_price":35,"status":1},{"image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","color":"49","small_image":"/m/p/mp01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"caesar-warm-up-pant-33-black","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"177","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Caesar Warm-Up Pant-33-Black","id":733,"category_ids":["18","32","2"],"sku":"MP01-33-Black","max_regular_price":35,"status":1},{"image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","color":"52","small_image":"/m/p/mp01-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"caesar-warm-up-pant-33-gray","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"177","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Caesar Warm-Up Pant-33-Gray","id":734,"category_ids":["18","32","2"],"sku":"MP01-33-Gray","max_regular_price":35,"status":1},{"image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","color":"57","small_image":"/m/p/mp01-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"caesar-warm-up-pant-33-purple","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"177","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Caesar Warm-Up Pant-33-Purple","id":735,"category_ids":["18","32","2"],"sku":"MP01-33-Purple","max_regular_price":35,"status":1},{"image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","color":"49","small_image":"/m/p/mp01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"caesar-warm-up-pant-34-black","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"178","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Caesar Warm-Up Pant-34-Black","id":736,"category_ids":["18","32","2"],"sku":"MP01-34-Black","max_regular_price":35,"status":1},{"image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","color":"52","small_image":"/m/p/mp01-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"caesar-warm-up-pant-34-gray","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"178","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Caesar Warm-Up Pant-34-Gray","id":737,"category_ids":["18","32","2"],"sku":"MP01-34-Gray","max_regular_price":35,"status":1},{"image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","color":"57","small_image":"/m/p/mp01-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"caesar-warm-up-pant-34-purple","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"178","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Caesar Warm-Up Pant-34-Purple","id":738,"category_ids":["18","32","2"],"sku":"MP01-34-Purple","max_regular_price":35,"status":1},{"image":"/m/p/mp01-black_main.jpg","thumbnail":"/m/p/mp01-black_main.jpg","color":"49","small_image":"/m/p/mp01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"caesar-warm-up-pant-36-black","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"179","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Caesar Warm-Up Pant-36-Black","id":739,"category_ids":["18","32","2"],"sku":"MP01-36-Black","max_regular_price":35,"status":1},{"image":"/m/p/mp01-gray_main.jpg","thumbnail":"/m/p/mp01-gray_main.jpg","color":"52","small_image":"/m/p/mp01-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"caesar-warm-up-pant-36-gray","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"179","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Caesar Warm-Up Pant-36-Gray","id":740,"category_ids":["18","32","2"],"sku":"MP01-36-Gray","max_regular_price":35,"status":1},{"image":"/m/p/mp01-purple_main.jpg","thumbnail":"/m/p/mp01-purple_main.jpg","color":"57","small_image":"/m/p/mp01-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"caesar-warm-up-pant-36-purple","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"179","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Caesar Warm-Up Pant-36-Purple","id":741,"category_ids":["18","32","2"],"sku":"MP01-36-Purple","max_regular_price":35,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"}],"product_id":742,"id":296,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":742,"id":297,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,52,57],"size_options":[176,177,178,179],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/caesar-warm-up-pant-742.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"757","_score":1,"_source":{"id":757,"sku":"MP03-32-Green","name":"Geo Insulated Jogging Pant-32-Green","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"geo-insulated-jogging-pant-32-green-757","links":{},"stock":{"item_id":757,"product_id":757,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-32-green-757.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"764","_score":1,"_source":{"id":764,"sku":"MP03-34-Red","name":"Geo Insulated Jogging Pant-34-Red","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"geo-insulated-jogging-pant-34-red-764","links":{},"stock":{"item_id":764,"product_id":764,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp03-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-34-red-764.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"751","_score":1,"_source":{"id":751,"sku":"MP02-34-Red","name":"Viktor LumaTech™ Pant-34-Red","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","color":"58","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"viktor-lumatech-and-trade-pant-34-red-751","links":{},"stock":{"item_id":751,"product_id":751,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-34-red-751.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"775","_score":1,"_source":{"id":775,"sku":"MP04-34-Black","name":"Supernova Sport Pant-34-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"supernova-sport-pant-34-black-775","links":{},"stock":{"item_id":775,"product_id":775,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp04-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-34-black-775.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"767","_score":1,"_source":{"id":767,"sku":"MP03-36-Red","name":"Geo Insulated Jogging Pant-36-Red","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"geo-insulated-jogging-pant-36-red-767","links":{},"stock":{"item_id":767,"product_id":767,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp03-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-36-red-767.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"770","_score":1,"_source":{"id":770,"sku":"MP04-32-Gray","name":"Supernova Sport Pant-32-Gray","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"supernova-sport-pant-32-gray-770","links":{},"stock":{"item_id":770,"product_id":770,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-32-gray-770.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"759","_score":1,"_source":{"id":759,"sku":"MP03-33-Blue","name":"Geo Insulated Jogging Pant-33-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"geo-insulated-jogging-pant-33-blue-759","links":{},"stock":{"item_id":759,"product_id":759,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-33-blue-759.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"778","_score":1,"_source":{"id":778,"sku":"MP04-36-Black","name":"Supernova Sport Pant-36-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"supernova-sport-pant-36-black-778","links":{},"stock":{"item_id":778,"product_id":778,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp04-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-36-black-778.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"754","_score":1,"_source":{"id":754,"sku":"MP02-36-Red","name":"Viktor LumaTech™ Pant-36-Red","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-red_main.jpg","small_image":"/m/p/mp02-red_main.jpg","thumbnail":"/m/p/mp02-red_main.jpg","color":"58","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"viktor-lumatech-and-trade-pant-36-red-754","links":{},"stock":{"item_id":754,"product_id":754,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-36-red-754.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"758","_score":1,"_source":{"id":758,"sku":"MP03-32-Red","name":"Geo Insulated Jogging Pant-32-Red","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-red_main.jpg","small_image":"/m/p/mp03-red_main.jpg","thumbnail":"/m/p/mp03-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"geo-insulated-jogging-pant-32-red-758","links":{},"stock":{"item_id":758,"product_id":758,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp03-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-32-red-758.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"766","_score":1,"_source":{"id":766,"sku":"MP03-36-Green","name":"Geo Insulated Jogging Pant-36-Green","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"geo-insulated-jogging-pant-36-green-766","links":{},"stock":{"item_id":766,"product_id":766,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-36-green-766.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"760","_score":1,"_source":{"id":760,"sku":"MP03-33-Green","name":"Geo Insulated Jogging Pant-33-Green","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"geo-insulated-jogging-pant-33-green-760","links":{},"stock":{"item_id":760,"product_id":760,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-33-green-760.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"753","_score":1,"_source":{"id":753,"sku":"MP02-36-Gray","name":"Viktor LumaTech™ Pant-36-Gray","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-gray_main.jpg","small_image":"/m/p/mp02-gray_main.jpg","thumbnail":"/m/p/mp02-gray_main.jpg","color":"52","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"viktor-lumatech-and-trade-pant-36-gray-753","links":{},"stock":{"item_id":753,"product_id":753,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp02-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp02-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-36-gray-753.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"752","_score":1,"_source":{"id":752,"sku":"MP02-36-Blue","name":"Viktor LumaTech™ Pant-36-Blue","attribute_set_id":10,"price":46,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":46,"max_price":46,"max_regular_price":46,"minimal_regular_price":46,"special_price":null,"minimal_price":46,"regular_price":46,"description":"

                            You'll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

                            \n

                            • Dark gray polyester/spandex straight leg pants.
                            • Elastic waistband and internal drawstring.
                            • Relaxed fit.
                            • Machine wash/dry.

                            ","image":"/m/p/mp02-blue_main.jpg","small_image":"/m/p/mp02-blue_main.jpg","thumbnail":"/m/p/mp02-blue_main.jpg","color":"50","category_ids":[18,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"viktor-lumatech-trade-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"viktor-lumatech-and-trade-pant-36-blue-752","links":{},"stock":{"item_id":752,"product_id":752,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp02-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/viktor-lumatech-and-trade-pant-36-blue-752.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"762","_score":1,"_source":{"id":762,"sku":"MP03-34-Blue","name":"Geo Insulated Jogging Pant-34-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-blue_main.jpg","small_image":"/m/p/mp03-blue_main.jpg","thumbnail":"/m/p/mp03-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"geo-insulated-jogging-pant-34-blue-762","links":{},"stock":{"item_id":762,"product_id":762,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-34-blue-762.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"772","_score":1,"_source":{"id":772,"sku":"MP04-33-Black","name":"Supernova Sport Pant-33-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-black_main.jpg","small_image":"/m/p/mp04-black_main.jpg","thumbnail":"/m/p/mp04-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"supernova-sport-pant-33-black-772","links":{},"stock":{"item_id":772,"product_id":772,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp04-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-33-black-772.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"777","_score":1,"_source":{"id":777,"sku":"MP04-34-Green","name":"Supernova Sport Pant-34-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-green_main.jpg","small_image":"/m/p/mp04-green_main.jpg","thumbnail":"/m/p/mp04-green_main.jpg","color":"53","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"supernova-sport-pant-34-green-777","links":{},"stock":{"item_id":777,"product_id":777,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp04-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-34-green-777.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"773","_score":1,"_source":{"id":773,"sku":"MP04-33-Gray","name":"Supernova Sport Pant-33-Gray","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

                            \n

                            • Dark heather gray straight leg cotton pants.
                            • Relaxed fit.
                            • Internal drawstring.
                            • Machine wash/dry.

                            ","image":"/m/p/mp04-gray_main.jpg","small_image":"/m/p/mp04-gray_main.jpg","thumbnail":"/m/p/mp04-gray_main.jpg","color":"52","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"supernova-sport-pant-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"supernova-sport-pant-33-gray-773","links":{},"stock":{"item_id":773,"product_id":773,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp04-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp04-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/supernova-sport-pant-33-gray-773.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"784","_score":1,"_source":{"id":784,"sku":"MP05-32-Green","name":"Kratos Gym Pant-32-Green","attribute_set_id":10,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

                            \n

                            • Navy cotton straight leg pants.
                            • Relaxed fit.
                            • 2 side-seam pockets.
                            • Internal zip pocket.
                            • Drawstring waist.
                            • Machine wash/dry.

                            ","image":"/m/p/mp05-green_main.jpg","small_image":"/m/p/mp05-green_main.jpg","thumbnail":"/m/p/mp05-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kratos-gym-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"kratos-gym-pant-32-green-784","links":{},"stock":{"item_id":784,"product_id":784,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp05-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/kratos-gym-pant-32-green-784.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"763","_score":1,"_source":{"id":763,"sku":"MP03-34-Green","name":"Geo Insulated Jogging Pant-34-Green","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:00","updated_at":"2017-11-06 12:17:00","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                            In the cold, even the toughest guys shiver, unless they're in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

                            \n

                            • Black polyester spandex pants with zipper pockets.
                            • Reflective safety accents.
                            • Loose fit.
                            • On-seam pockets.
                            • 8\" leg zips. 32\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/p/mp03-green_main.jpg","small_image":"/m/p/mp03-green_main.jpg","thumbnail":"/m/p/mp03-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"geo-insulated-jogging-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"geo-insulated-jogging-pant-34-green-763","links":{},"stock":{"item_id":763,"product_id":763,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/geo-insulated-jogging-pant-34-green-763.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"723","_score":1,"_source":{"id":723,"sku":"MT11","name":"Atlas Fitness Tank","attribute_set_id":9,"price":18,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

                            \n

                            • Teal scoop neck cotton tank.
                            • Triblend, soft fabric.
                            • Relaxed fit.

                            ","image":"/m/t/mt11-blue_main.jpg","small_image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","category_ids":[17,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"atlas-fitness-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"atlas-fitness-tank-723","links":{},"stock":{"item_id":723,"product_id":723,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt11-blue_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","small_image":"/m/t/mt11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"atlas-fitness-tank-xs-blue","regular_price":18,"required_options":"0","msrp_display_actual_price_type":"0","max_price":18,"minimal_regular_price":18,"size":"167","final_price":18,"special_price":null,"price":18,"minimal_price":18,"name":"Atlas Fitness Tank-XS-Blue","id":718,"category_ids":["17","36","2"],"sku":"MT11-XS-Blue","max_regular_price":18,"status":1},{"image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","small_image":"/m/t/mt11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"atlas-fitness-tank-s-blue","regular_price":18,"required_options":"0","msrp_display_actual_price_type":"0","max_price":18,"minimal_regular_price":18,"size":"168","final_price":18,"special_price":null,"price":18,"minimal_price":18,"name":"Atlas Fitness Tank-S-Blue","id":719,"category_ids":["17","36","2"],"sku":"MT11-S-Blue","max_regular_price":18,"status":1},{"image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","small_image":"/m/t/mt11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"atlas-fitness-tank-m-blue","regular_price":18,"required_options":"0","msrp_display_actual_price_type":"0","max_price":18,"minimal_regular_price":18,"size":"169","final_price":18,"special_price":null,"price":18,"minimal_price":18,"name":"Atlas Fitness Tank-M-Blue","id":720,"category_ids":["17","36","2"],"sku":"MT11-M-Blue","max_regular_price":18,"status":1},{"image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","small_image":"/m/t/mt11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"atlas-fitness-tank-l-blue","regular_price":18,"required_options":"0","msrp_display_actual_price_type":"0","max_price":18,"minimal_regular_price":18,"size":"170","final_price":18,"special_price":null,"price":18,"minimal_price":18,"name":"Atlas Fitness Tank-L-Blue","id":721,"category_ids":["17","36","2"],"sku":"MT11-L-Blue","max_regular_price":18,"status":1},{"image":"/m/t/mt11-blue_main.jpg","thumbnail":"/m/t/mt11-blue_main.jpg","color":"50","small_image":"/m/t/mt11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"atlas-fitness-tank-xl-blue","regular_price":18,"required_options":"0","msrp_display_actual_price_type":"0","max_price":18,"minimal_regular_price":18,"size":"171","final_price":18,"special_price":null,"price":18,"minimal_price":18,"name":"Atlas Fitness Tank-XL-Blue","id":722,"category_ids":["17","36","2"],"sku":"MT11-XL-Blue","max_regular_price":18,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"}],"product_id":723,"id":95,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":723,"id":94,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tanks-men/tanks-17/atlas-fitness-tank-723.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"711","_score":1,"_source":{"id":711,"sku":"MT09","name":"Sinbad Fitness Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

                            \n

                            • Teal polyester tank.
                            • Premium fit tank top.
                            • Ultra lightweight.
                            • Naturally odor-resistant.

                            ","image":"/m/t/mt09-blue_main.jpg","small_image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sinbad-fitness-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"sinbad-fitness-tank-711","links":{},"stock":{"item_id":711,"product_id":711,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","small_image":"/m/t/mt09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sinbad-fitness-tank-xs-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"167","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Sinbad Fitness Tank-XS-Blue","id":706,"category_ids":["17"],"sku":"MT09-XS-Blue","max_regular_price":29,"status":1},{"image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","small_image":"/m/t/mt09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sinbad-fitness-tank-s-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"168","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Sinbad Fitness Tank-S-Blue","id":707,"category_ids":["17"],"sku":"MT09-S-Blue","max_regular_price":29,"status":1},{"image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","small_image":"/m/t/mt09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sinbad-fitness-tank-m-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Sinbad Fitness Tank-M-Blue","id":708,"category_ids":["17"],"sku":"MT09-M-Blue","max_regular_price":29,"status":1},{"image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","small_image":"/m/t/mt09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sinbad-fitness-tank-l-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Sinbad Fitness Tank-L-Blue","id":709,"category_ids":["17"],"sku":"MT09-L-Blue","max_regular_price":29,"status":1},{"image":"/m/t/mt09-blue_main.jpg","thumbnail":"/m/t/mt09-blue_main.jpg","color":"50","small_image":"/m/t/mt09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sinbad-fitness-tank-xl-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Sinbad Fitness Tank-XL-Blue","id":710,"category_ids":["17"],"sku":"MT09-XL-Blue","max_regular_price":29,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"}],"product_id":711,"id":91,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":711,"id":90,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sinbad-fitness-tank-711.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"705","_score":1,"_source":{"id":705,"sku":"MT08","name":"Sparta Gym Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:59","updated_at":"2017-11-06 12:16:59","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

                            \n

                            • Green polyester tank.
                            • Ultra lightweight.
                            • Naturally odor-resistant.
                            • Close-to-body athletic fit.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/t/mt08-green_main.jpg","small_image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","category_ids":["17"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sparta-gym-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":"135","pattern":"197","climate":[202,205,209],"slug":"sparta-gym-tank-705","links":{},"stock":{"item_id":705,"product_id":705,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/t/mt08-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt08-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/t/mt08-green_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","small_image":"/m/t/mt08-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sparta-gym-tank-xs-green","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":29,"name":"Sparta Gym Tank-XS-Green","id":700,"category_ids":["17"],"sku":"MT08-XS-Green","status":1},{"image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","small_image":"/m/t/mt08-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sparta-gym-tank-s-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"168","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Sparta Gym Tank-S-Green","id":701,"category_ids":["17"],"sku":"MT08-S-Green","max_regular_price":29,"status":1},{"image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","small_image":"/m/t/mt08-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sparta-gym-tank-m-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Sparta Gym Tank-M-Green","id":702,"category_ids":["17"],"sku":"MT08-M-Green","max_regular_price":29,"status":1},{"image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","small_image":"/m/t/mt08-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sparta-gym-tank-l-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Sparta Gym Tank-L-Green","id":703,"category_ids":["17"],"sku":"MT08-L-Green","max_regular_price":29,"status":1},{"image":"/m/t/mt08-green_main.jpg","thumbnail":"/m/t/mt08-green_main.jpg","color":"53","small_image":"/m/t/mt08-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sparta-gym-tank-xl-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Sparta Gym Tank-XL-Green","id":704,"category_ids":["17"],"sku":"MT08-XL-Green","max_regular_price":29,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":53,"label":"Green"}],"product_id":705,"id":89,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":705,"id":88,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[53],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/tanks-men/tanks-17","category_id":17,"name":"Tanks","slug":"tanks-17"}],"url_path":"men/tops-men/tanks-men/tanks-17/sparta-gym-tank-705.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"838","_score":1,"_source":{"id":838,"sku":"MP09-33-Blue","name":"Livingston All-Purpose Tight-33-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","color":"50","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"livingston-all-purpose-tight-33-blue-838","links":{},"stock":{"item_id":838,"product_id":838,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-33-blue-838.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"816","_score":1,"_source":{"id":816,"sku":"MP07-34-Purple","name":"Thorpe Track Pant-34-Purple","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","color":"57","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"thorpe-track-pant-34-purple-816","links":{},"stock":{"item_id":816,"product_id":816,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp07-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-34-purple-816.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"836","_score":1,"_source":{"id":836,"sku":"MP09-32-Red","name":"Livingston All-Purpose Tight-32-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","color":"58","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"livingston-all-purpose-tight-32-red-836","links":{},"stock":{"item_id":836,"product_id":836,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp09-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-32-red-836.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"817","_score":1,"_source":{"id":817,"sku":"MP07-36-Black","name":"Thorpe Track Pant-36-Black","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"thorpe-track-pant-36-black-817","links":{},"stock":{"item_id":817,"product_id":817,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp07-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-36-black-817.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"845","_score":1,"_source":{"id":845,"sku":"MP09-36-Red","name":"Livingston All-Purpose Tight-36-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","color":"58","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"livingston-all-purpose-tight-36-red-845","links":{},"stock":{"item_id":845,"product_id":845,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp09-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-36-red-845.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"809","_score":1,"_source":{"id":809,"sku":"MP07-32-Blue","name":"Thorpe Track Pant-32-Blue","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"thorpe-track-pant-32-blue-809","links":{},"stock":{"item_id":809,"product_id":809,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-32-blue-809.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"829","_score":1,"_source":{"id":829,"sku":"MP08-34-Red","name":"Zeppelin Yoga Pant-34-Red","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"zeppelin-yoga-pant-34-red-829","links":{},"stock":{"item_id":829,"product_id":829,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp08-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-34-red-829.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"831","_score":1,"_source":{"id":831,"sku":"MP08-36-Green","name":"Zeppelin Yoga Pant-36-Green","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"zeppelin-yoga-pant-36-green-831","links":{},"stock":{"item_id":831,"product_id":831,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-36-green-831.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"819","_score":1,"_source":{"id":819,"sku":"MP07-36-Purple","name":"Thorpe Track Pant-36-Purple","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","color":"57","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"thorpe-track-pant-36-purple-819","links":{},"stock":{"item_id":819,"product_id":819,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp07-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-36-purple-819.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"834","_score":1,"_source":{"id":834,"sku":"MP09-32-Black","name":"Livingston All-Purpose Tight-32-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","color":"49","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"livingston-all-purpose-tight-32-black-834","links":{},"stock":{"item_id":834,"product_id":834,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp09-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-32-black-834.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"843","_score":1,"_source":{"id":843,"sku":"MP09-36-Black","name":"Livingston All-Purpose Tight-36-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","color":"49","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"livingston-all-purpose-tight-36-black-843","links":{},"stock":{"item_id":843,"product_id":843,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp09-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-36-black-843.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"830","_score":1,"_source":{"id":830,"sku":"MP08-36-Blue","name":"Zeppelin Yoga Pant-36-Blue","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"zeppelin-yoga-pant-36-blue-830","links":{},"stock":{"item_id":830,"product_id":830,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp08-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-36-blue-830.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"828","_score":1,"_source":{"id":828,"sku":"MP08-34-Green","name":"Zeppelin Yoga Pant-34-Green","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"zeppelin-yoga-pant-34-green-828","links":{},"stock":{"item_id":828,"product_id":828,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-34-green-828.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"837","_score":1,"_source":{"id":837,"sku":"MP09-33-Black","name":"Livingston All-Purpose Tight-33-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","color":"49","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"livingston-all-purpose-tight-33-black-837","links":{},"stock":{"item_id":837,"product_id":837,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp09-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-33-black-837.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"839","_score":1,"_source":{"id":839,"sku":"MP09-33-Red","name":"Livingston All-Purpose Tight-33-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","color":"58","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"livingston-all-purpose-tight-33-red-839","links":{},"stock":{"item_id":839,"product_id":839,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp09-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-33-red-839.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"840","_score":1,"_source":{"id":840,"sku":"MP09-34-Black","name":"Livingston All-Purpose Tight-34-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-black_main.jpg","small_image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","color":"49","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"livingston-all-purpose-tight-34-black-840","links":{},"stock":{"item_id":840,"product_id":840,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp09-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-34-black-840.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"832","_score":1,"_source":{"id":832,"sku":"MP08-36-Red","name":"Zeppelin Yoga Pant-36-Red","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"zeppelin-yoga-pant-36-red-832","links":{},"stock":{"item_id":832,"product_id":832,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp08-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-36-red-832.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"825","_score":1,"_source":{"id":825,"sku":"MP08-33-Green","name":"Zeppelin Yoga Pant-33-Green","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"zeppelin-yoga-pant-33-green-825","links":{},"stock":{"item_id":825,"product_id":825,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-33-green-825.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"813","_score":1,"_source":{"id":813,"sku":"MP07-33-Purple","name":"Thorpe Track Pant-33-Purple","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","color":"57","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"thorpe-track-pant-33-purple-813","links":{},"stock":{"item_id":813,"product_id":813,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp07-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-33-purple-813.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"810","_score":1,"_source":{"id":810,"sku":"MP07-32-Purple","name":"Thorpe Track Pant-32-Purple","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-purple_main.jpg","small_image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","color":"57","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"thorpe-track-pant-32-purple-810","links":{},"stock":{"item_id":810,"product_id":810,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp07-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-32-purple-810.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"823","_score":1,"_source":{"id":823,"sku":"MP08-32-Red","name":"Zeppelin Yoga Pant-32-Red","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"zeppelin-yoga-pant-32-red-823","links":{},"stock":{"item_id":823,"product_id":823,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp08-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-32-red-823.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"805","_score":1,"_source":{"id":805,"sku":"MP06-36-Green","name":"Mithra Warmup Pant-36-Green","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","color":"53","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"mithra-warmup-pant-36-green-805","links":{},"stock":{"item_id":805,"product_id":805,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp06-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-36-green-805.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"827","_score":1,"_source":{"id":827,"sku":"MP08-34-Blue","name":"Zeppelin Yoga Pant-34-Blue","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"zeppelin-yoga-pant-34-blue-827","links":{},"stock":{"item_id":827,"product_id":827,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp08-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-34-blue-827.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"808","_score":1,"_source":{"id":808,"sku":"MP07-32-Black","name":"Thorpe Track Pant-32-Black","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"thorpe-track-pant-32-black-808","links":{},"stock":{"item_id":808,"product_id":808,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp07-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-32-black-808.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"812","_score":1,"_source":{"id":812,"sku":"MP07-33-Blue","name":"Thorpe Track Pant-33-Blue","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"thorpe-track-pant-33-blue-812","links":{},"stock":{"item_id":812,"product_id":812,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-33-blue-812.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"815","_score":1,"_source":{"id":815,"sku":"MP07-34-Blue","name":"Thorpe Track Pant-34-Blue","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"thorpe-track-pant-34-blue-815","links":{},"stock":{"item_id":815,"product_id":815,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-34-blue-815.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"818","_score":1,"_source":{"id":818,"sku":"MP07-36-Blue","name":"Thorpe Track Pant-36-Blue","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"thorpe-track-pant-36-blue-818","links":{},"stock":{"item_id":818,"product_id":818,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-36-blue-818.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"811","_score":1,"_source":{"id":811,"sku":"MP07-33-Black","name":"Thorpe Track Pant-33-Black","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"thorpe-track-pant-33-black-811","links":{},"stock":{"item_id":811,"product_id":811,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp07-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-33-black-811.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"824","_score":1,"_source":{"id":824,"sku":"MP08-33-Blue","name":"Zeppelin Yoga Pant-33-Blue","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"zeppelin-yoga-pant-33-blue-824","links":{},"stock":{"item_id":824,"product_id":824,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp08-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-33-blue-824.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"822","_score":1,"_source":{"id":822,"sku":"MP08-32-Green","name":"Zeppelin Yoga Pant-32-Green","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","color":"53","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"zeppelin-yoga-pant-32-green-822","links":{},"stock":{"item_id":822,"product_id":822,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-32-green-822.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"806","_score":1,"_source":{"id":806,"sku":"MP06-36-Orange","name":"Mithra Warmup Pant-36-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","color":"56","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-36-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"mithra-warmup-pant-36-orange-806","links":{},"stock":{"item_id":806,"product_id":806,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp06-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-36-orange-806.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"826","_score":1,"_source":{"id":826,"sku":"MP08-33-Red","name":"Zeppelin Yoga Pant-33-Red","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-red_main.jpg","small_image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","color":"58","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"zeppelin-yoga-pant-33-red-826","links":{},"stock":{"item_id":826,"product_id":826,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp08-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-33-red-826.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"835","_score":1,"_source":{"id":835,"sku":"MP09-32-Blue","name":"Livingston All-Purpose Tight-32-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","color":"50","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"livingston-all-purpose-tight-32-blue-835","links":{},"stock":{"item_id":835,"product_id":835,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-32-blue-835.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"842","_score":1,"_source":{"id":842,"sku":"MP09-34-Red","name":"Livingston All-Purpose Tight-34-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-red_main.jpg","small_image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","color":"58","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"livingston-all-purpose-tight-34-red-842","links":{},"stock":{"item_id":842,"product_id":842,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp09-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-34-red-842.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"850","_score":1,"_source":{"id":850,"sku":"MP10-33-Black","name":"Orestes Yoga Pant -33-Black","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","color":"49","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-yoga-pant-33-black-850","links":{},"stock":{"item_id":850,"product_id":850,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-33-black-850.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"848","_score":1,"_source":{"id":848,"sku":"MP10-32-Blue","name":"Orestes Yoga Pant -32-Blue","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-yoga-pant-32-blue-848","links":{},"stock":{"item_id":848,"product_id":848,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp10-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-32-blue-848.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"841","_score":1,"_source":{"id":841,"sku":"MP09-34-Blue","name":"Livingston All-Purpose Tight-34-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","color":"50","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"livingston-all-purpose-tight-34-blue-841","links":{},"stock":{"item_id":841,"product_id":841,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-34-blue-841.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"844","_score":1,"_source":{"id":844,"sku":"MP09-36-Blue","name":"Livingston All-Purpose Tight-36-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","color":"50","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"livingston-all-purpose-tight-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"livingston-all-purpose-tight-36-blue-844","links":{},"stock":{"item_id":844,"product_id":844,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-36-blue-844.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"849","_score":1,"_source":{"id":849,"sku":"MP10-32-Green","name":"Orestes Yoga Pant -32-Green","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-yoga-pant-32-green-849","links":{},"stock":{"item_id":849,"product_id":849,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp10-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-32-green-849.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"847","_score":1,"_source":{"id":847,"sku":"MP10-32-Black","name":"Orestes Yoga Pant -32-Black","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","color":"49","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-yoga-pant-32-black-847","links":{},"stock":{"item_id":847,"product_id":847,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-32-black-847.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"804","_score":1,"_source":{"id":804,"sku":"MP06-36-Gray","name":"Mithra Warmup Pant-36-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","color":"52","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"mithra-warmup-pant-36-gray-804","links":{},"stock":{"item_id":804,"product_id":804,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-36-gray-804.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"821","_score":1,"_source":{"id":821,"sku":"MP08-32-Blue","name":"Zeppelin Yoga Pant-32-Blue","attribute_set_id":10,"price":82,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-blue_main.jpg","small_image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","color":"50","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zeppelin-yoga-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"zeppelin-yoga-pant-32-blue-821","links":{},"stock":{"item_id":821,"product_id":821,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp08-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-32-blue-821.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"802","_score":1,"_source":{"id":802,"sku":"MP06-34-Green","name":"Mithra Warmup Pant-34-Green","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-green_main.jpg","small_image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","color":"53","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"mithra-warmup-pant-34-green-802","links":{},"stock":{"item_id":802,"product_id":802,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp06-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-34-green-802.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"814","_score":1,"_source":{"id":814,"sku":"MP07-34-Black","name":"Thorpe Track Pant-34-Black","attribute_set_id":10,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-black_main.jpg","small_image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","color":"49","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"thorpe-track-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"thorpe-track-pant-34-black-814","links":{},"stock":{"item_id":814,"product_id":814,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp07-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-34-black-814.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"803","_score":1,"_source":{"id":803,"sku":"MP06-34-Orange","name":"Mithra Warmup Pant-34-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-orange_main.jpg","small_image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","color":"56","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-34-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"mithra-warmup-pant-34-orange-803","links":{},"stock":{"item_id":803,"product_id":803,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp06-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-34-orange-803.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"801","_score":1,"_source":{"id":801,"sku":"MP06-34-Gray","name":"Mithra Warmup Pant-34-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","color":"52","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mithra-warmup-pant-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"mithra-warmup-pant-34-gray-801","links":{},"stock":{"item_id":801,"product_id":801,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-34-gray-801.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"896","_score":1,"_source":{"id":896,"sku":"MSH01-36-Blue","name":"Cobalt CoolTech™ Fitness Short-36-Blue","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","color":"50","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cobalt-cooltech-and-trade-fitness-short-36-blue-896","links":{},"stock":{"item_id":896,"product_id":896,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-36-blue-896.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"889","_score":1,"_source":{"id":889,"sku":"MSH01-33-Black","name":"Cobalt CoolTech™ Fitness Short-33-Black","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","color":"49","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cobalt-cooltech-and-trade-fitness-short-33-black-889","links":{},"stock":{"item_id":889,"product_id":889,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh01-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-33-black-889.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"891","_score":1,"_source":{"id":891,"sku":"MSH01-33-Red","name":"Cobalt CoolTech™ Fitness Short-33-Red","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","color":"58","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cobalt-cooltech-and-trade-fitness-short-33-red-891","links":{},"stock":{"item_id":891,"product_id":891,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh01-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-33-red-891.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"886","_score":1,"_source":{"id":886,"sku":"MSH01-32-Black","name":"Cobalt CoolTech™ Fitness Short-32-Black","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","color":"49","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cobalt-cooltech-and-trade-fitness-short-32-black-886","links":{},"stock":{"item_id":886,"product_id":886,"stock_id":1,"qty":78,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh01-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-32-black-886.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"892","_score":1,"_source":{"id":892,"sku":"MSH01-34-Black","name":"Cobalt CoolTech™ Fitness Short-34-Black","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","color":"49","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cobalt-cooltech-and-trade-fitness-short-34-black-892","links":{},"stock":{"item_id":892,"product_id":892,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh01-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-34-black-892.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"884","_score":1,"_source":{"id":884,"sku":"MP12-36-Red","name":"Cronus Yoga Pant -36-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","color":"58","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cronus-yoga-pant-36-red-884","links":{},"stock":{"item_id":884,"product_id":884,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp12-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-36-red-884.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"880","_score":1,"_source":{"id":880,"sku":"MP12-34-Blue","name":"Cronus Yoga Pant -34-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","color":"50","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cronus-yoga-pant-34-blue-880","links":{},"stock":{"item_id":880,"product_id":880,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp12-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-34-blue-880.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"888","_score":1,"_source":{"id":888,"sku":"MSH01-32-Red","name":"Cobalt CoolTech™ Fitness Short-32-Red","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","color":"58","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cobalt-cooltech-and-trade-fitness-short-32-red-888","links":{},"stock":{"item_id":888,"product_id":888,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh01-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-32-red-888.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"881","_score":1,"_source":{"id":881,"sku":"MP12-34-Red","name":"Cronus Yoga Pant -34-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","color":"58","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cronus-yoga-pant-34-red-881","links":{},"stock":{"item_id":881,"product_id":881,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp12-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-34-red-881.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"899","_score":1,"_source":{"id":899,"sku":"MSH02-32-Black","name":"Apollo Running Short-32-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

                            \n

                            • Black shorts with green accents.
                            • Side pockets.
                            • 4\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"apollo-running-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"apollo-running-short-32-black-899","links":{},"stock":{"item_id":899,"product_id":899,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-32-black-899.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"858","_score":1,"_source":{"id":858,"sku":"MP10-36-Green","name":"Orestes Yoga Pant -36-Green","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-yoga-pant-36-green-858","links":{},"stock":{"item_id":858,"product_id":858,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp10-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-36-green-858.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"890","_score":1,"_source":{"id":890,"sku":"MSH01-33-Blue","name":"Cobalt CoolTech™ Fitness Short-33-Blue","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","color":"50","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cobalt-cooltech-and-trade-fitness-short-33-blue-890","links":{},"stock":{"item_id":890,"product_id":890,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-33-blue-890.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"897","_score":1,"_source":{"id":897,"sku":"MSH01-36-Red","name":"Cobalt CoolTech™ Fitness Short-36-Red","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","color":"58","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cobalt-cooltech-and-trade-fitness-short-36-red-897","links":{},"stock":{"item_id":897,"product_id":897,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh01-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-36-red-897.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"894","_score":1,"_source":{"id":894,"sku":"MSH01-34-Red","name":"Cobalt CoolTech™ Fitness Short-34-Red","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-red_main.jpg","small_image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","color":"58","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cobalt-cooltech-and-trade-fitness-short-34-red-894","links":{},"stock":{"item_id":894,"product_id":894,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh01-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-34-red-894.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"895","_score":1,"_source":{"id":895,"sku":"MSH01-36-Black","name":"Cobalt CoolTech™ Fitness Short-36-Black","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-black_main.jpg","small_image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","color":"49","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cobalt-cooltech-and-trade-fitness-short-36-black-895","links":{},"stock":{"item_id":895,"product_id":895,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh01-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-36-black-895.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"900","_score":1,"_source":{"id":900,"sku":"MSH02-33-Black","name":"Apollo Running Short-33-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

                            \n

                            • Black shorts with green accents.
                            • Side pockets.
                            • 4\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"apollo-running-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"apollo-running-short-33-black-900","links":{},"stock":{"item_id":900,"product_id":900,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-33-black-900.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"872","_score":1,"_source":{"id":872,"sku":"MP11","name":"Aether Gym Pant ","attribute_set_id":10,"price":74,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2019-05-17 10:35:29","product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \r\n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","category_ids":[18,32,34,2],"options_container":"container2","required_options":"1","has_options":"1","url_key":"aether-gym-pant","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":[143,151,159],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[202,203,204,205,206,207,208,210],"slug":"aether-gym-pant-872","links":{},"stock":{"item_id":872,"product_id":872,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":null},{"vid":null,"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":null},{"vid":null,"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":null}],"configurable_children":[{"image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","color":"50","small_image":"/m/p/mp11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aether-gym-pant-32-blue","regular_price":74,"required_options":"0","msrp_display_actual_price_type":"0","max_price":74,"minimal_regular_price":74,"size":"176","final_price":74,"special_price":null,"price":74,"minimal_price":74,"name":"Aether Gym Pant -32-Blue","id":860,"category_ids":["18","32","34","2"],"sku":"MP11-32-Blue","max_regular_price":74,"status":1},{"image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","color":"51","small_image":"/m/p/mp11-brown_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aether-gym-pant-32-brown","regular_price":74,"required_options":"0","msrp_display_actual_price_type":"0","max_price":74,"minimal_regular_price":74,"size":"176","final_price":74,"special_price":null,"price":74,"minimal_price":74,"name":"Aether Gym Pant -32-Brown","id":861,"category_ids":["18","32","34","2"],"sku":"MP11-32-Brown","max_regular_price":74,"status":1},{"image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","color":"53","small_image":"/m/p/mp11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aether-gym-pant-32-green","regular_price":74,"required_options":"0","msrp_display_actual_price_type":"0","max_price":74,"minimal_regular_price":74,"size":"176","final_price":74,"special_price":null,"price":74,"minimal_price":74,"name":"Aether Gym Pant -32-Green","id":862,"category_ids":["18","32","34","2"],"sku":"MP11-32-Green","max_regular_price":74,"status":1},{"image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","color":"50","small_image":"/m/p/mp11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aether-gym-pant-33-blue","regular_price":74,"required_options":"0","msrp_display_actual_price_type":"0","max_price":74,"minimal_regular_price":74,"size":"177","final_price":74,"special_price":null,"price":74,"minimal_price":74,"name":"Aether Gym Pant -33-Blue","id":863,"category_ids":["18","32","34","2"],"sku":"MP11-33-Blue","max_regular_price":74,"status":1},{"image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","color":"51","small_image":"/m/p/mp11-brown_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aether-gym-pant-33-brown","regular_price":74,"required_options":"0","msrp_display_actual_price_type":"0","max_price":74,"minimal_regular_price":74,"size":"177","final_price":74,"special_price":null,"price":74,"minimal_price":74,"name":"Aether Gym Pant -33-Brown","id":864,"category_ids":["18","32","34","2"],"sku":"MP11-33-Brown","max_regular_price":74,"status":1},{"image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","color":"53","small_image":"/m/p/mp11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aether-gym-pant-33-green","regular_price":74,"required_options":"0","msrp_display_actual_price_type":"0","max_price":74,"minimal_regular_price":74,"size":"177","final_price":74,"special_price":null,"price":74,"minimal_price":74,"name":"Aether Gym Pant -33-Green","id":865,"category_ids":["18","32","34","2"],"sku":"MP11-33-Green","max_regular_price":74,"status":1},{"image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","color":"50","small_image":"/m/p/mp11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aether-gym-pant-34-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"178","price":74,"name":"Aether Gym Pant -34-Blue","id":866,"category_ids":["18","32","34","2"],"sku":"MP11-34-Blue","status":2},{"image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","color":"51","small_image":"/m/p/mp11-brown_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aether-gym-pant-34-brown","regular_price":74,"required_options":"0","msrp_display_actual_price_type":"0","max_price":74,"minimal_regular_price":74,"size":"178","final_price":74,"special_price":null,"price":74,"minimal_price":74,"name":"Aether Gym Pant -34-Brown","id":867,"category_ids":["18","32","34","2"],"sku":"MP11-34-Brown","max_regular_price":74,"status":1},{"image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","color":"53","small_image":"/m/p/mp11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aether-gym-pant-34-green","regular_price":74,"required_options":"0","msrp_display_actual_price_type":"0","max_price":74,"minimal_regular_price":74,"size":"178","final_price":74,"special_price":null,"price":74,"minimal_price":74,"name":"Aether Gym Pant -34-Green","id":868,"category_ids":["18","32","34","2"],"sku":"MP11-34-Green","max_regular_price":74,"status":1},{"image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","color":"50","small_image":"/m/p/mp11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aether-gym-pant-36-blue","regular_price":74,"required_options":"0","msrp_display_actual_price_type":"0","max_price":74,"minimal_regular_price":74,"size":"179","final_price":74,"special_price":null,"price":74,"minimal_price":74,"name":"Aether Gym Pant -36-Blue","id":869,"category_ids":["18","32","34","2"],"sku":"MP11-36-Blue","max_regular_price":74,"status":1},{"image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","color":"51","small_image":"/m/p/mp11-brown_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aether-gym-pant-36-brown","regular_price":74,"required_options":"0","msrp_display_actual_price_type":"0","max_price":74,"minimal_regular_price":74,"size":"179","final_price":74,"special_price":null,"price":74,"minimal_price":74,"name":"Aether Gym Pant -36-Brown","id":870,"category_ids":["18","32","34","2"],"sku":"MP11-36-Brown","max_regular_price":74,"status":1},{"image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","color":"53","small_image":"/m/p/mp11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aether-gym-pant-36-green","required_options":"0","msrp_display_actual_price_type":"0","size":"179","price":74,"name":"Aether Gym Pant -36-Green","id":871,"category_ids":["18","32","34","2"],"sku":"MP11-36-Green","status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":51,"label":"Brown"},{"value_index":53,"label":"Green"}],"product_id":872,"id":316,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":872,"id":317,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,51,53],"size_options":[176,177,178,179],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-872.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"859","_score":1,"_source":{"id":859,"sku":"MP10","name":"Orestes Yoga Pant ","attribute_set_id":10,"price":66,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"orestes-yoga-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,154,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[116,115,109],"pattern":"197","climate":[204,205,206,210,211],"slug":"orestes-yoga-pant-859","links":{},"stock":{"item_id":859,"product_id":859,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","color":"49","small_image":"/m/p/mp10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orestes-yoga-pant-32-black","required_options":"0","msrp_display_actual_price_type":"0","size":"176","price":66,"name":"Orestes Yoga Pant -32-Black","id":847,"category_ids":["18","32","34","2"],"sku":"MP10-32-Black","status":1},{"image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","color":"50","small_image":"/m/p/mp10-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orestes-yoga-pant-32-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"176","price":66,"name":"Orestes Yoga Pant -32-Blue","id":848,"category_ids":["18","32","34","2"],"sku":"MP10-32-Blue","status":1},{"image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","color":"53","small_image":"/m/p/mp10-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orestes-yoga-pant-32-green","required_options":"0","msrp_display_actual_price_type":"0","size":"176","price":66,"name":"Orestes Yoga Pant -32-Green","id":849,"category_ids":["18","32","34","2"],"sku":"MP10-32-Green","status":1},{"image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","color":"49","small_image":"/m/p/mp10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orestes-yoga-pant-33-black","required_options":"0","msrp_display_actual_price_type":"0","size":"177","price":66,"name":"Orestes Yoga Pant -33-Black","id":850,"category_ids":["18","32","34","2"],"sku":"MP10-33-Black","status":1},{"image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","color":"50","small_image":"/m/p/mp10-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orestes-yoga-pant-33-blue","regular_price":66,"required_options":"0","msrp_display_actual_price_type":"0","max_price":66,"minimal_regular_price":66,"size":"177","final_price":66,"special_price":null,"price":66,"minimal_price":66,"name":"Orestes Yoga Pant -33-Blue","id":851,"category_ids":["18","32","34","2"],"sku":"MP10-33-Blue","max_regular_price":66,"status":1},{"image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","color":"53","small_image":"/m/p/mp10-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orestes-yoga-pant-33-green","regular_price":66,"required_options":"0","msrp_display_actual_price_type":"0","max_price":66,"minimal_regular_price":66,"size":"177","final_price":66,"special_price":null,"price":66,"minimal_price":66,"name":"Orestes Yoga Pant -33-Green","id":852,"category_ids":["18","32","34","2"],"sku":"MP10-33-Green","max_regular_price":66,"status":1},{"image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","color":"49","small_image":"/m/p/mp10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orestes-yoga-pant-34-black","regular_price":66,"required_options":"0","msrp_display_actual_price_type":"0","max_price":66,"minimal_regular_price":66,"size":"178","final_price":66,"special_price":null,"price":66,"minimal_price":66,"name":"Orestes Yoga Pant -34-Black","id":853,"category_ids":["18","32","34","2"],"sku":"MP10-34-Black","max_regular_price":66,"status":1},{"image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","color":"50","small_image":"/m/p/mp10-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orestes-yoga-pant-34-blue","regular_price":66,"required_options":"0","msrp_display_actual_price_type":"0","max_price":66,"minimal_regular_price":66,"size":"178","final_price":66,"special_price":null,"price":66,"minimal_price":66,"name":"Orestes Yoga Pant -34-Blue","id":854,"category_ids":["18","32","34","2"],"sku":"MP10-34-Blue","max_regular_price":66,"status":1},{"image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","color":"53","small_image":"/m/p/mp10-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orestes-yoga-pant-34-green","regular_price":66,"required_options":"0","msrp_display_actual_price_type":"0","max_price":66,"minimal_regular_price":66,"size":"178","final_price":66,"special_price":null,"price":66,"minimal_price":66,"name":"Orestes Yoga Pant -34-Green","id":855,"category_ids":["18","32","34","2"],"sku":"MP10-34-Green","max_regular_price":66,"status":1},{"image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","color":"49","small_image":"/m/p/mp10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orestes-yoga-pant-36-black","regular_price":66,"required_options":"0","msrp_display_actual_price_type":"0","max_price":66,"minimal_regular_price":66,"size":"179","final_price":66,"special_price":null,"price":66,"minimal_price":66,"name":"Orestes Yoga Pant -36-Black","id":856,"category_ids":["18","32","34","2"],"sku":"MP10-36-Black","max_regular_price":66,"status":1},{"image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","color":"50","small_image":"/m/p/mp10-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orestes-yoga-pant-36-blue","regular_price":66,"required_options":"0","msrp_display_actual_price_type":"0","max_price":66,"minimal_regular_price":66,"size":"179","final_price":66,"special_price":null,"price":66,"minimal_price":66,"name":"Orestes Yoga Pant -36-Blue","id":857,"category_ids":["18","32","34","2"],"sku":"MP10-36-Blue","max_regular_price":66,"status":1},{"image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","color":"53","small_image":"/m/p/mp10-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orestes-yoga-pant-36-green","regular_price":66,"required_options":"0","msrp_display_actual_price_type":"0","max_price":66,"minimal_regular_price":66,"size":"179","final_price":66,"special_price":null,"price":66,"minimal_price":66,"name":"Orestes Yoga Pant -36-Green","id":858,"category_ids":["18","32","34","2"],"sku":"MP10-36-Green","max_regular_price":66,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":859,"id":117,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":859,"id":116,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-859.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"885","_score":1,"_source":{"id":885,"sku":"MP12","name":"Cronus Yoga Pant ","attribute_set_id":10,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cronus-yoga-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[38,33,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,115,109],"pattern":"197","climate":[204,205,206,208,210,211],"slug":"cronus-yoga-pant-885","links":{},"stock":{"item_id":885,"product_id":885,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","color":"49","small_image":"/m/p/mp12-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cronus-yoga-pant-32-black","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"176","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Cronus Yoga Pant -32-Black","id":873,"category_ids":["18","32","2"],"sku":"MP12-32-Black","max_regular_price":48,"status":1},{"image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","color":"50","small_image":"/m/p/mp12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cronus-yoga-pant-32-blue","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"176","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Cronus Yoga Pant -32-Blue","id":874,"category_ids":["18","32","2"],"sku":"MP12-32-Blue","max_regular_price":48,"status":1},{"image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","color":"58","small_image":"/m/p/mp12-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cronus-yoga-pant-32-red","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"176","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Cronus Yoga Pant -32-Red","id":875,"category_ids":["18","32","2"],"sku":"MP12-32-Red","max_regular_price":48,"status":1},{"image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","color":"49","small_image":"/m/p/mp12-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cronus-yoga-pant-33-black","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"177","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Cronus Yoga Pant -33-Black","id":876,"category_ids":["18","32","2"],"sku":"MP12-33-Black","max_regular_price":48,"status":1},{"image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","color":"50","small_image":"/m/p/mp12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cronus-yoga-pant-33-blue","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"177","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Cronus Yoga Pant -33-Blue","id":877,"category_ids":["18","32","2"],"sku":"MP12-33-Blue","max_regular_price":48,"status":1},{"image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","color":"58","small_image":"/m/p/mp12-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cronus-yoga-pant-33-red","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"177","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Cronus Yoga Pant -33-Red","id":878,"category_ids":["18","32","2"],"sku":"MP12-33-Red","max_regular_price":48,"status":1},{"image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","color":"49","small_image":"/m/p/mp12-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cronus-yoga-pant-34-black","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"178","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Cronus Yoga Pant -34-Black","id":879,"category_ids":["18","32","2"],"sku":"MP12-34-Black","max_regular_price":48,"status":1},{"image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","color":"50","small_image":"/m/p/mp12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cronus-yoga-pant-34-blue","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"178","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Cronus Yoga Pant -34-Blue","id":880,"category_ids":["18","32","2"],"sku":"MP12-34-Blue","max_regular_price":48,"status":1},{"image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","color":"58","small_image":"/m/p/mp12-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cronus-yoga-pant-34-red","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"178","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Cronus Yoga Pant -34-Red","id":881,"category_ids":["18","32","2"],"sku":"MP12-34-Red","max_regular_price":48,"status":1},{"image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","color":"49","small_image":"/m/p/mp12-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cronus-yoga-pant-36-black","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"179","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Cronus Yoga Pant -36-Black","id":882,"category_ids":["18","32","2"],"sku":"MP12-36-Black","max_regular_price":48,"status":1},{"image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","color":"50","small_image":"/m/p/mp12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cronus-yoga-pant-36-blue","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"179","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Cronus Yoga Pant -36-Blue","id":883,"category_ids":["18","32","2"],"sku":"MP12-36-Blue","max_regular_price":48,"status":1},{"image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","color":"58","small_image":"/m/p/mp12-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cronus-yoga-pant-36-red","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"179","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Cronus Yoga Pant -36-Red","id":884,"category_ids":["18","32","2"],"sku":"MP12-36-Red","max_regular_price":48,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":885,"id":121,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":885,"id":120,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[176,177,178,179],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-885.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"918","_score":1,"_source":{"id":918,"sku":"MSH04-32-Purple","name":"Torque Power Short-32-Purple","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","color":"57","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"torque-power-short-32-purple-918","links":{},"stock":{"item_id":918,"product_id":918,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh04-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-32-purple-918.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"924","_score":1,"_source":{"id":924,"sku":"MSH04-34-Purple","name":"Torque Power Short-34-Purple","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","color":"57","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"torque-power-short-34-purple-924","links":{},"stock":{"item_id":924,"product_id":924,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh04-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-34-purple-924.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"920","_score":1,"_source":{"id":920,"sku":"MSH04-33-Gray","name":"Torque Power Short-33-Gray","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","color":"52","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"torque-power-short-33-gray-920","links":{},"stock":{"item_id":920,"product_id":920,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-33-gray-920.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"934","_score":1,"_source":{"id":934,"sku":"MSH05-33-Blue","name":"Hawkeye Yoga Short-33-Blue","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"hawkeye-yoga-short-33-blue-934","links":{},"stock":{"item_id":934,"product_id":934,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh05-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-33-blue-934.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"926","_score":1,"_source":{"id":926,"sku":"MSH04-36-Gray","name":"Torque Power Short-36-Gray","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","color":"52","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"torque-power-short-36-gray-926","links":{},"stock":{"item_id":926,"product_id":926,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-36-gray-926.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"928","_score":1,"_source":{"id":928,"sku":"MSH04-36-Yellow","name":"Torque Power Short-36-Yellow","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","color":"60","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-36-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"torque-power-short-36-yellow-928","links":{},"stock":{"item_id":928,"product_id":928,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh04-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-36-yellow-928.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"921","_score":1,"_source":{"id":921,"sku":"MSH04-33-Purple","name":"Torque Power Short-33-Purple","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","color":"57","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"torque-power-short-33-purple-921","links":{},"stock":{"item_id":921,"product_id":921,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh04-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-33-purple-921.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"948","_score":1,"_source":{"id":948,"sku":"MSH06-33-Red","name":"Lono Yoga Short-33-Red","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","color":"58","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"lono-yoga-short-33-red-948","links":{},"stock":{"item_id":948,"product_id":948,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh06-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-33-red-948.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"936","_score":1,"_source":{"id":936,"sku":"MSH05-34-Black","name":"Hawkeye Yoga Short-34-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"hawkeye-yoga-short-34-black-936","links":{},"stock":{"item_id":936,"product_id":936,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh05-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-34-black-936.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"940","_score":1,"_source":{"id":940,"sku":"MSH05-36-Blue","name":"Hawkeye Yoga Short-36-Blue","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"hawkeye-yoga-short-36-blue-940","links":{},"stock":{"item_id":940,"product_id":940,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh05-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-36-blue-940.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"939","_score":1,"_source":{"id":939,"sku":"MSH05-36-Black","name":"Hawkeye Yoga Short-36-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"hawkeye-yoga-short-36-black-939","links":{},"stock":{"item_id":939,"product_id":939,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh05-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-36-black-939.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"945","_score":1,"_source":{"id":945,"sku":"MSH06-32-Red","name":"Lono Yoga Short-32-Red","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","color":"58","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"lono-yoga-short-32-red-945","links":{},"stock":{"item_id":945,"product_id":945,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh06-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-32-red-945.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"946","_score":1,"_source":{"id":946,"sku":"MSH06-33-Blue","name":"Lono Yoga Short-33-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"lono-yoga-short-33-blue-946","links":{},"stock":{"item_id":946,"product_id":946,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh06-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-33-blue-946.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"938","_score":1,"_source":{"id":938,"sku":"MSH05-34-Gray","name":"Hawkeye Yoga Short-34-Gray","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","color":"52","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"hawkeye-yoga-short-34-gray-938","links":{},"stock":{"item_id":938,"product_id":938,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-34-gray-938.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"932","_score":1,"_source":{"id":932,"sku":"MSH05-32-Gray","name":"Hawkeye Yoga Short-32-Gray","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","color":"52","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"hawkeye-yoga-short-32-gray-932","links":{},"stock":{"item_id":932,"product_id":932,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-32-gray-932.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"931","_score":1,"_source":{"id":931,"sku":"MSH05-32-Blue","name":"Hawkeye Yoga Short-32-Blue","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"hawkeye-yoga-short-32-blue-931","links":{},"stock":{"item_id":931,"product_id":931,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh05-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-32-blue-931.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"943","_score":1,"_source":{"id":943,"sku":"MSH06-32-Blue","name":"Lono Yoga Short-32-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"lono-yoga-short-32-blue-943","links":{},"stock":{"item_id":943,"product_id":943,"stock_id":1,"qty":24,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh06-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-32-blue-943.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"937","_score":1,"_source":{"id":937,"sku":"MSH05-34-Blue","name":"Hawkeye Yoga Short-34-Blue","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"hawkeye-yoga-short-34-blue-937","links":{},"stock":{"item_id":937,"product_id":937,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh05-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-34-blue-937.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"935","_score":1,"_source":{"id":935,"sku":"MSH05-33-Gray","name":"Hawkeye Yoga Short-33-Gray","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","color":"52","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"hawkeye-yoga-short-33-gray-935","links":{},"stock":{"item_id":935,"product_id":935,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-33-gray-935.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"944","_score":1,"_source":{"id":944,"sku":"MSH06-32-Gray","name":"Lono Yoga Short-32-Gray","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","color":"52","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"lono-yoga-short-32-gray-944","links":{},"stock":{"item_id":944,"product_id":944,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-32-gray-944.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"927","_score":1,"_source":{"id":927,"sku":"MSH04-36-Purple","name":"Torque Power Short-36-Purple","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-purple_main.jpg","small_image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","color":"57","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"torque-power-short-36-purple-927","links":{},"stock":{"item_id":927,"product_id":927,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh04-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-36-purple-927.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"941","_score":1,"_source":{"id":941,"sku":"MSH05-36-Gray","name":"Hawkeye Yoga Short-36-Gray","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","color":"52","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"hawkeye-yoga-short-36-gray-941","links":{},"stock":{"item_id":941,"product_id":941,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-36-gray-941.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"949","_score":1,"_source":{"id":949,"sku":"MSH06-34-Blue","name":"Lono Yoga Short-34-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"lono-yoga-short-34-blue-949","links":{},"stock":{"item_id":949,"product_id":949,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh06-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-34-blue-949.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"930","_score":1,"_source":{"id":930,"sku":"MSH05-32-Black","name":"Hawkeye Yoga Short-32-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"hawkeye-yoga-short-32-black-930","links":{},"stock":{"item_id":930,"product_id":930,"stock_id":1,"qty":70,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh05-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-32-black-930.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"950","_score":1,"_source":{"id":950,"sku":"MSH06-34-Gray","name":"Lono Yoga Short-34-Gray","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","color":"52","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"lono-yoga-short-34-gray-950","links":{},"stock":{"item_id":950,"product_id":950,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-34-gray-950.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"933","_score":1,"_source":{"id":933,"sku":"MSH05-33-Black","name":"Hawkeye Yoga Short-33-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hawkeye-yoga-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"hawkeye-yoga-short-33-black-933","links":{},"stock":{"item_id":933,"product_id":933,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh05-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-33-black-933.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"947","_score":1,"_source":{"id":947,"sku":"MSH06-33-Gray","name":"Lono Yoga Short-33-Gray","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","color":"52","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"lono-yoga-short-33-gray-947","links":{},"stock":{"item_id":947,"product_id":947,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-33-gray-947.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"903","_score":1,"_source":{"id":903,"sku":"MSH02","name":"Apollo Running Short","attribute_set_id":10,"price":32.5,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

                            \n

                            • Black shorts with green accents.
                            • Side pockets.
                            • 4\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"apollo-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[38,39],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[202,205,209],"slug":"apollo-running-short-903","links":{},"stock":{"item_id":903,"product_id":903,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","color":"49","small_image":"/m/s/msh02-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"apollo-running-short-32-black","required_options":"0","msrp_display_actual_price_type":"0","size":"176","price":32.5,"name":"Apollo Running Short-32-Black","id":899,"category_ids":["19"],"sku":"MSH02-32-Black","status":1},{"image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","color":"49","small_image":"/m/s/msh02-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"apollo-running-short-33-black","required_options":"0","msrp_display_actual_price_type":"0","size":"177","price":32.5,"name":"Apollo Running Short-33-Black","id":900,"category_ids":["19"],"sku":"MSH02-33-Black","status":1},{"image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","color":"49","small_image":"/m/s/msh02-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"apollo-running-short-34-black","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"178","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Apollo Running Short-34-Black","id":901,"category_ids":["19"],"sku":"MSH02-34-Black","max_regular_price":32.5,"status":1},{"image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","color":"49","small_image":"/m/s/msh02-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"apollo-running-short-36-black","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"179","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Apollo Running Short-36-Black","id":902,"category_ids":["19"],"sku":"MSH02-36-Black","max_regular_price":32.5,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"}],"product_id":903,"id":125,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":903,"id":124,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49],"size_options":[176,177,178,179],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-903.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"807","_score":1,"_source":{"id":807,"sku":"MP06","name":"Mithra Warmup Pant","attribute_set_id":10,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            When you're not sure you're up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

                            \n

                            • Ankle zips.
                            • Elasticized waistband with draw cord.
                            • Dual hand pockets.
                            • Reflective elements for low-light safety.

                            ","image":"/m/p/mp06-gray_main.jpg","small_image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","category_ids":[18,32,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mithra-warmup-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,146,154,38,159],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,113],"pattern":"197","climate":[202,203,204,206,210,211],"slug":"mithra-warmup-pant-807","links":{},"stock":{"item_id":807,"product_id":807,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp06-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp06-gray_back.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp06-gray_outfit.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","color":"52","small_image":"/m/p/mp06-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mithra-warmup-pant-32-gray","required_options":"0","msrp_display_actual_price_type":"0","size":"176","price":28,"name":"Mithra Warmup Pant-32-Gray","id":795,"category_ids":["18","32","36","2"],"sku":"MP06-32-Gray","status":1},{"image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","color":"53","small_image":"/m/p/mp06-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mithra-warmup-pant-32-green","required_options":"0","msrp_display_actual_price_type":"0","size":"176","price":28,"name":"Mithra Warmup Pant-32-Green","id":796,"category_ids":["18","32","36","2"],"sku":"MP06-32-Green","status":1},{"image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","color":"56","small_image":"/m/p/mp06-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mithra-warmup-pant-32-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"176","price":28,"name":"Mithra Warmup Pant-32-Orange","id":797,"category_ids":["18","32","36","2"],"sku":"MP06-32-Orange","status":1},{"image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","color":"52","small_image":"/m/p/mp06-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mithra-warmup-pant-33-gray","required_options":"0","msrp_display_actual_price_type":"0","size":"177","price":28,"name":"Mithra Warmup Pant-33-Gray","id":798,"category_ids":["18","32","36","2"],"sku":"MP06-33-Gray","status":1},{"image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","color":"53","small_image":"/m/p/mp06-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mithra-warmup-pant-33-green","required_options":"0","msrp_display_actual_price_type":"0","size":"177","price":28,"name":"Mithra Warmup Pant-33-Green","id":799,"category_ids":["18","32","36","2"],"sku":"MP06-33-Green","status":1},{"image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","color":"56","small_image":"/m/p/mp06-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mithra-warmup-pant-33-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"177","price":28,"name":"Mithra Warmup Pant-33-Orange","id":800,"category_ids":["18","32","36","2"],"sku":"MP06-33-Orange","status":1},{"image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","color":"52","small_image":"/m/p/mp06-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mithra-warmup-pant-34-gray","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"178","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Mithra Warmup Pant-34-Gray","id":801,"category_ids":["18","32","36","2"],"sku":"MP06-34-Gray","max_regular_price":28,"status":1},{"image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","color":"53","small_image":"/m/p/mp06-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mithra-warmup-pant-34-green","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"178","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Mithra Warmup Pant-34-Green","id":802,"category_ids":["18","32","36","2"],"sku":"MP06-34-Green","max_regular_price":28,"status":1},{"image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","color":"56","small_image":"/m/p/mp06-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mithra-warmup-pant-34-orange","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"178","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Mithra Warmup Pant-34-Orange","id":803,"category_ids":["18","32","36","2"],"sku":"MP06-34-Orange","max_regular_price":28,"status":1},{"image":"/m/p/mp06-gray_main.jpg","thumbnail":"/m/p/mp06-gray_main.jpg","color":"52","small_image":"/m/p/mp06-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mithra-warmup-pant-36-gray","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"179","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Mithra Warmup Pant-36-Gray","id":804,"category_ids":["18","32","36","2"],"sku":"MP06-36-Gray","max_regular_price":28,"status":1},{"image":"/m/p/mp06-green_main.jpg","thumbnail":"/m/p/mp06-green_main.jpg","color":"53","small_image":"/m/p/mp06-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mithra-warmup-pant-36-green","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"179","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Mithra Warmup Pant-36-Green","id":805,"category_ids":["18","32","36","2"],"sku":"MP06-36-Green","max_regular_price":28,"status":1},{"image":"/m/p/mp06-orange_main.jpg","thumbnail":"/m/p/mp06-orange_main.jpg","color":"56","small_image":"/m/p/mp06-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mithra-warmup-pant-36-orange","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"179","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Mithra Warmup Pant-36-Orange","id":806,"category_ids":["18","32","36","2"],"sku":"MP06-36-Orange","max_regular_price":28,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":807,"id":109,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":807,"id":108,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[52,53,56],"size_options":[176,177,178,179],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/mithra-warmup-pant-807.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"820","_score":1,"_source":{"id":820,"sku":"MP07","name":"Thorpe Track Pant","attribute_set_id":10,"price":68,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Thirty degree temps are chilly for most, except when you're in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

                            \n

                            • Moisture transfer properties.
                            • 7% stretch.
                            • Reflective safety trim.
                            • Elastic drawcord waist.

                            ","image":"/m/p/mp07-blue_main.jpg","small_image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"thorpe-track-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38,39,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,113,115],"pattern":"197","climate":[202,203,204,208,211],"slug":"thorpe-track-pant-820","links":{},"stock":{"item_id":820,"product_id":820,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp07-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp07-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp07-blue_back.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp07-blue_side_a.jpg","pos":4,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp07-blue_side_b.jpg","pos":5,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","color":"49","small_image":"/m/p/mp07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"thorpe-track-pant-32-black","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"176","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Thorpe Track Pant-32-Black","id":808,"category_ids":["18","32","8","2"],"sku":"MP07-32-Black","max_regular_price":68,"status":1},{"image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","color":"50","small_image":"/m/p/mp07-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"thorpe-track-pant-32-blue","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"176","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Thorpe Track Pant-32-Blue","id":809,"category_ids":["18","32","8","2"],"sku":"MP07-32-Blue","max_regular_price":68,"status":1},{"image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","color":"57","small_image":"/m/p/mp07-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"thorpe-track-pant-32-purple","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"176","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Thorpe Track Pant-32-Purple","id":810,"category_ids":["18","32","8","2"],"sku":"MP07-32-Purple","max_regular_price":68,"status":1},{"image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","color":"49","small_image":"/m/p/mp07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"thorpe-track-pant-33-black","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"177","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Thorpe Track Pant-33-Black","id":811,"category_ids":["18","32","8","2"],"sku":"MP07-33-Black","max_regular_price":68,"status":1},{"image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","color":"50","small_image":"/m/p/mp07-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"thorpe-track-pant-33-blue","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"177","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Thorpe Track Pant-33-Blue","id":812,"category_ids":["18","32","8","2"],"sku":"MP07-33-Blue","max_regular_price":68,"status":1},{"image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","color":"57","small_image":"/m/p/mp07-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"thorpe-track-pant-33-purple","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"177","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Thorpe Track Pant-33-Purple","id":813,"category_ids":["18","32","8","2"],"sku":"MP07-33-Purple","max_regular_price":68,"status":1},{"image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","color":"49","small_image":"/m/p/mp07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"thorpe-track-pant-34-black","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"178","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Thorpe Track Pant-34-Black","id":814,"category_ids":["18","32","8","2"],"sku":"MP07-34-Black","max_regular_price":68,"status":1},{"image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","color":"50","small_image":"/m/p/mp07-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"thorpe-track-pant-34-blue","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"178","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Thorpe Track Pant-34-Blue","id":815,"category_ids":["18","32","8","2"],"sku":"MP07-34-Blue","max_regular_price":68,"status":1},{"image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","color":"57","small_image":"/m/p/mp07-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"thorpe-track-pant-34-purple","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"178","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Thorpe Track Pant-34-Purple","id":816,"category_ids":["18","32","8","2"],"sku":"MP07-34-Purple","max_regular_price":68,"status":1},{"image":"/m/p/mp07-black_main.jpg","thumbnail":"/m/p/mp07-black_main.jpg","color":"49","small_image":"/m/p/mp07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"thorpe-track-pant-36-black","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"179","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Thorpe Track Pant-36-Black","id":817,"category_ids":["18","32","8","2"],"sku":"MP07-36-Black","max_regular_price":68,"status":1},{"image":"/m/p/mp07-blue_main.jpg","thumbnail":"/m/p/mp07-blue_main.jpg","color":"50","small_image":"/m/p/mp07-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"thorpe-track-pant-36-blue","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"179","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Thorpe Track Pant-36-Blue","id":818,"category_ids":["18","32","8","2"],"sku":"MP07-36-Blue","max_regular_price":68,"status":1},{"image":"/m/p/mp07-purple_main.jpg","thumbnail":"/m/p/mp07-purple_main.jpg","color":"57","small_image":"/m/p/mp07-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"thorpe-track-pant-36-purple","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"179","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Thorpe Track Pant-36-Purple","id":819,"category_ids":["18","32","8","2"],"sku":"MP07-36-Purple","max_regular_price":68,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":820,"id":111,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":820,"id":110,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[176,177,178,179],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/thorpe-track-pant-820.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"833","_score":1,"_source":{"id":833,"sku":"MP08","name":"Zeppelin Yoga Pant","attribute_set_id":10,"price":82,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":82,"max_price":82,"max_regular_price":82,"minimal_regular_price":82,"special_price":null,"minimal_price":82,"regular_price":82,"description":"

                            Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you'll get all the comfort and versatility you need.

                            \n

                            • Smooth exterior for easy over-layering.
                            • Brushed fleece interior insulates and wicks.
                            • No-roll elastic waistband with inner drawstring.
                            • Chafe-resistant flatlock seams.

                            ","image":"/m/p/mp08-green_main.jpg","small_image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","category_ids":[18,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"zeppelin-yoga-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,148,151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,113,105,115,109],"pattern":"197","climate":[202,204,208,210,211],"slug":"zeppelin-yoga-pant-833","links":{},"stock":{"item_id":833,"product_id":833,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp08-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp08-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp08-green_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","color":"50","small_image":"/m/p/mp08-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zeppelin-yoga-pant-32-blue","regular_price":82,"required_options":"0","msrp_display_actual_price_type":"0","max_price":82,"minimal_regular_price":82,"size":"176","final_price":82,"special_price":null,"price":82,"minimal_price":82,"name":"Zeppelin Yoga Pant-32-Blue","id":821,"category_ids":["18","32","8","2"],"sku":"MP08-32-Blue","max_regular_price":82,"status":1},{"image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","color":"53","small_image":"/m/p/mp08-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zeppelin-yoga-pant-32-green","regular_price":82,"required_options":"0","msrp_display_actual_price_type":"0","max_price":82,"minimal_regular_price":82,"size":"176","final_price":82,"special_price":null,"price":82,"minimal_price":82,"name":"Zeppelin Yoga Pant-32-Green","id":822,"category_ids":["18","32","8","2"],"sku":"MP08-32-Green","max_regular_price":82,"status":1},{"image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","color":"58","small_image":"/m/p/mp08-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zeppelin-yoga-pant-32-red","regular_price":82,"required_options":"0","msrp_display_actual_price_type":"0","max_price":82,"minimal_regular_price":82,"size":"176","final_price":82,"special_price":null,"price":82,"minimal_price":82,"name":"Zeppelin Yoga Pant-32-Red","id":823,"category_ids":["18","32","8","2"],"sku":"MP08-32-Red","max_regular_price":82,"status":1},{"image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","color":"50","small_image":"/m/p/mp08-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zeppelin-yoga-pant-33-blue","regular_price":82,"required_options":"0","msrp_display_actual_price_type":"0","max_price":82,"minimal_regular_price":82,"size":"177","final_price":82,"special_price":null,"price":82,"minimal_price":82,"name":"Zeppelin Yoga Pant-33-Blue","id":824,"category_ids":["18","32","8","2"],"sku":"MP08-33-Blue","max_regular_price":82,"status":1},{"image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","color":"53","small_image":"/m/p/mp08-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zeppelin-yoga-pant-33-green","regular_price":82,"required_options":"0","msrp_display_actual_price_type":"0","max_price":82,"minimal_regular_price":82,"size":"177","final_price":82,"special_price":null,"price":82,"minimal_price":82,"name":"Zeppelin Yoga Pant-33-Green","id":825,"category_ids":["18","32","8","2"],"sku":"MP08-33-Green","max_regular_price":82,"status":1},{"image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","color":"58","small_image":"/m/p/mp08-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zeppelin-yoga-pant-33-red","regular_price":82,"required_options":"0","msrp_display_actual_price_type":"0","max_price":82,"minimal_regular_price":82,"size":"177","final_price":82,"special_price":null,"price":82,"minimal_price":82,"name":"Zeppelin Yoga Pant-33-Red","id":826,"category_ids":["18","32","8","2"],"sku":"MP08-33-Red","max_regular_price":82,"status":1},{"image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","color":"50","small_image":"/m/p/mp08-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zeppelin-yoga-pant-34-blue","regular_price":82,"required_options":"0","msrp_display_actual_price_type":"0","max_price":82,"minimal_regular_price":82,"size":"178","final_price":82,"special_price":null,"price":82,"minimal_price":82,"name":"Zeppelin Yoga Pant-34-Blue","id":827,"category_ids":["18","32","8","2"],"sku":"MP08-34-Blue","max_regular_price":82,"status":1},{"image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","color":"53","small_image":"/m/p/mp08-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zeppelin-yoga-pant-34-green","regular_price":82,"required_options":"0","msrp_display_actual_price_type":"0","max_price":82,"minimal_regular_price":82,"size":"178","final_price":82,"special_price":null,"price":82,"minimal_price":82,"name":"Zeppelin Yoga Pant-34-Green","id":828,"category_ids":["18","32","8","2"],"sku":"MP08-34-Green","max_regular_price":82,"status":1},{"image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","color":"58","small_image":"/m/p/mp08-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zeppelin-yoga-pant-34-red","regular_price":82,"required_options":"0","msrp_display_actual_price_type":"0","max_price":82,"minimal_regular_price":82,"size":"178","final_price":82,"special_price":null,"price":82,"minimal_price":82,"name":"Zeppelin Yoga Pant-34-Red","id":829,"category_ids":["18","32","8","2"],"sku":"MP08-34-Red","max_regular_price":82,"status":1},{"image":"/m/p/mp08-blue_main.jpg","thumbnail":"/m/p/mp08-blue_main.jpg","color":"50","small_image":"/m/p/mp08-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zeppelin-yoga-pant-36-blue","regular_price":82,"required_options":"0","msrp_display_actual_price_type":"0","max_price":82,"minimal_regular_price":82,"size":"179","final_price":82,"special_price":null,"price":82,"minimal_price":82,"name":"Zeppelin Yoga Pant-36-Blue","id":830,"category_ids":["18","32","8","2"],"sku":"MP08-36-Blue","max_regular_price":82,"status":1},{"image":"/m/p/mp08-green_main.jpg","thumbnail":"/m/p/mp08-green_main.jpg","color":"53","small_image":"/m/p/mp08-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zeppelin-yoga-pant-36-green","regular_price":82,"required_options":"0","msrp_display_actual_price_type":"0","max_price":82,"minimal_regular_price":82,"size":"179","final_price":82,"special_price":null,"price":82,"minimal_price":82,"name":"Zeppelin Yoga Pant-36-Green","id":831,"category_ids":["18","32","8","2"],"sku":"MP08-36-Green","max_regular_price":82,"status":1},{"image":"/m/p/mp08-red_main.jpg","thumbnail":"/m/p/mp08-red_main.jpg","color":"58","small_image":"/m/p/mp08-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zeppelin-yoga-pant-36-red","regular_price":82,"required_options":"0","msrp_display_actual_price_type":"0","max_price":82,"minimal_regular_price":82,"size":"179","final_price":82,"special_price":null,"price":82,"minimal_price":82,"name":"Zeppelin Yoga Pant-36-Red","id":832,"category_ids":["18","32","8","2"],"sku":"MP08-36-Red","max_regular_price":82,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":833,"id":113,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":833,"id":112,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[176,177,178,179],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/zeppelin-yoga-pant-833.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"846","_score":1,"_source":{"id":846,"sku":"MP09","name":"Livingston All-Purpose Tight","attribute_set_id":10,"price":75,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            It's not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

                            \n

                            • Breathable stretch organic cotton/spandex.
                            • Compression fit
                            • Hidden key pocket
                            • Elastic waist with internal drawcord.

                            ","image":"/m/p/mp09-blue_main.jpg","small_image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","category_ids":[18,32,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"livingston-all-purpose-tight","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,145,38,39],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"1","sale":"0","style_bottom":[113,105,108,115,109],"pattern":"197","climate":[202,203,204,210,211],"slug":"livingston-all-purpose-tight-846","links":{},"stock":{"item_id":846,"product_id":846,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","color":"49","small_image":"/m/p/mp09-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"livingston-all-purpose-tight-32-black","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"176","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Livingston All-Purpose Tight-32-Black","id":834,"category_ids":["18","32","8","34","2"],"sku":"MP09-32-Black","max_regular_price":75,"status":1},{"image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","color":"50","small_image":"/m/p/mp09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"livingston-all-purpose-tight-32-blue","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"176","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Livingston All-Purpose Tight-32-Blue","id":835,"category_ids":["18","32","8","34","2"],"sku":"MP09-32-Blue","max_regular_price":75,"status":1},{"image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","color":"58","small_image":"/m/p/mp09-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"livingston-all-purpose-tight-32-red","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"176","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Livingston All-Purpose Tight-32-Red","id":836,"category_ids":["18","32","8","34","2"],"sku":"MP09-32-Red","max_regular_price":75,"status":1},{"image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","color":"49","small_image":"/m/p/mp09-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"livingston-all-purpose-tight-33-black","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"177","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Livingston All-Purpose Tight-33-Black","id":837,"category_ids":["18","32","8","34","2"],"sku":"MP09-33-Black","max_regular_price":75,"status":1},{"image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","color":"50","small_image":"/m/p/mp09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"livingston-all-purpose-tight-33-blue","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"177","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Livingston All-Purpose Tight-33-Blue","id":838,"category_ids":["18","32","8","34","2"],"sku":"MP09-33-Blue","max_regular_price":75,"status":1},{"image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","color":"58","small_image":"/m/p/mp09-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"livingston-all-purpose-tight-33-red","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"177","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Livingston All-Purpose Tight-33-Red","id":839,"category_ids":["18","32","8","34","2"],"sku":"MP09-33-Red","max_regular_price":75,"status":1},{"image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","color":"49","small_image":"/m/p/mp09-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"livingston-all-purpose-tight-34-black","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"178","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Livingston All-Purpose Tight-34-Black","id":840,"category_ids":["18","32","8","34","2"],"sku":"MP09-34-Black","max_regular_price":75,"status":1},{"image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","color":"50","small_image":"/m/p/mp09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"livingston-all-purpose-tight-34-blue","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"178","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Livingston All-Purpose Tight-34-Blue","id":841,"category_ids":["18","32","8","34","2"],"sku":"MP09-34-Blue","max_regular_price":75,"status":1},{"image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","color":"58","small_image":"/m/p/mp09-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"livingston-all-purpose-tight-34-red","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"178","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Livingston All-Purpose Tight-34-Red","id":842,"category_ids":["18","32","8","34","2"],"sku":"MP09-34-Red","max_regular_price":75,"status":1},{"image":"/m/p/mp09-black_main.jpg","thumbnail":"/m/p/mp09-black_main.jpg","color":"49","small_image":"/m/p/mp09-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"livingston-all-purpose-tight-36-black","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"179","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Livingston All-Purpose Tight-36-Black","id":843,"category_ids":["18","32","8","34","2"],"sku":"MP09-36-Black","max_regular_price":75,"status":1},{"image":"/m/p/mp09-blue_main.jpg","thumbnail":"/m/p/mp09-blue_main.jpg","color":"50","small_image":"/m/p/mp09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"livingston-all-purpose-tight-36-blue","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"179","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Livingston All-Purpose Tight-36-Blue","id":844,"category_ids":["18","32","8","34","2"],"sku":"MP09-36-Blue","max_regular_price":75,"status":1},{"image":"/m/p/mp09-red_main.jpg","thumbnail":"/m/p/mp09-red_main.jpg","color":"58","small_image":"/m/p/mp09-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"livingston-all-purpose-tight-36-red","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"179","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Livingston All-Purpose Tight-36-Red","id":845,"category_ids":["18","32","8","34","2"],"sku":"MP09-36-Red","max_regular_price":75,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":846,"id":115,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":846,"id":114,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[176,177,178,179],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/livingston-all-purpose-tight-846.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"877","_score":1,"_source":{"id":877,"sku":"MP12-33-Blue","name":"Cronus Yoga Pant -33-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","color":"50","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cronus-yoga-pant-33-blue-877","links":{},"stock":{"item_id":877,"product_id":877,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp12-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-33-blue-877.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"854","_score":1,"_source":{"id":854,"sku":"MP10-34-Blue","name":"Orestes Yoga Pant -34-Blue","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-yoga-pant-34-blue-854","links":{},"stock":{"item_id":854,"product_id":854,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp10-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-34-blue-854.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"861","_score":1,"_source":{"id":861,"sku":"MP11-32-Brown","name":"Aether Gym Pant -32-Brown","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","color":"51","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-32-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"aether-gym-pant-32-brown-861","links":{},"stock":{"item_id":861,"product_id":861,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-32-brown-861.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"852","_score":1,"_source":{"id":852,"sku":"MP10-33-Green","name":"Orestes Yoga Pant -33-Green","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-yoga-pant-33-green-852","links":{},"stock":{"item_id":852,"product_id":852,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp10-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-33-green-852.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"860","_score":1,"_source":{"id":860,"sku":"MP11-32-Blue","name":"Aether Gym Pant -32-Blue","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2019-05-17 10:36:33","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \r\n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-32-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"176","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"aether-gym-pant-32-blue-860","links":{},"stock":{"item_id":860,"product_id":860,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp11-blue_main.jpg","pos":1,"typ":"image","lab":null}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-32-blue-860.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"855","_score":1,"_source":{"id":855,"sku":"MP10-34-Green","name":"Orestes Yoga Pant -34-Green","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-green_main.jpg","small_image":"/m/p/mp10-green_main.jpg","thumbnail":"/m/p/mp10-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-yoga-pant-34-green-855","links":{},"stock":{"item_id":855,"product_id":855,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp10-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-34-green-855.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"867","_score":1,"_source":{"id":867,"sku":"MP11-34-Brown","name":"Aether Gym Pant -34-Brown","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","color":"51","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-34-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"aether-gym-pant-34-brown-867","links":{},"stock":{"item_id":867,"product_id":867,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-34-brown-867.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"876","_score":1,"_source":{"id":876,"sku":"MP12-33-Black","name":"Cronus Yoga Pant -33-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cronus-yoga-pant-33-black-876","links":{},"stock":{"item_id":876,"product_id":876,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-33-black-876.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"866","_score":1,"_source":{"id":866,"sku":"MP11-34-Blue","name":"Aether Gym Pant -34-Blue","attribute_set_id":10,"price":74,"status":2,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2019-05-14 08:09:40","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \r\n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-34-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"178","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"aether-gym-pant-34-blue-866","links":{},"stock":{"item_id":866,"product_id":866,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp11-blue_main.jpg","pos":1,"typ":"image","lab":null}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-34-blue-866.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"864","_score":1,"_source":{"id":864,"sku":"MP11-33-Brown","name":"Aether Gym Pant -33-Brown","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","color":"51","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-33-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"aether-gym-pant-33-brown-864","links":{},"stock":{"item_id":864,"product_id":864,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-33-brown-864.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"869","_score":1,"_source":{"id":869,"sku":"MP11-36-Blue","name":"Aether Gym Pant -36-Blue","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2019-05-17 10:37:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \r\n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-36-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"179","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"aether-gym-pant-36-blue-869","links":{},"stock":{"item_id":869,"product_id":869,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp11-blue_main.jpg","pos":1,"typ":"image","lab":null}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-36-blue-869.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"868","_score":1,"_source":{"id":868,"sku":"MP11-34-Green","name":"Aether Gym Pant -34-Green","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"aether-gym-pant-34-green-868","links":{},"stock":{"item_id":868,"product_id":868,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp11-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-34-green-868.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"862","_score":1,"_source":{"id":862,"sku":"MP11-32-Green","name":"Aether Gym Pant -32-Green","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"aether-gym-pant-32-green-862","links":{},"stock":{"item_id":862,"product_id":862,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp11-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-32-green-862.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"856","_score":1,"_source":{"id":856,"sku":"MP10-36-Black","name":"Orestes Yoga Pant -36-Black","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","color":"49","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-yoga-pant-36-black-856","links":{},"stock":{"item_id":856,"product_id":856,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-36-black-856.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"875","_score":1,"_source":{"id":875,"sku":"MP12-32-Red","name":"Cronus Yoga Pant -32-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","color":"58","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cronus-yoga-pant-32-red-875","links":{},"stock":{"item_id":875,"product_id":875,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp12-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-32-red-875.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"882","_score":1,"_source":{"id":882,"sku":"MP12-36-Black","name":"Cronus Yoga Pant -36-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cronus-yoga-pant-36-black-882","links":{},"stock":{"item_id":882,"product_id":882,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-36-black-882.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"865","_score":1,"_source":{"id":865,"sku":"MP11-33-Green","name":"Aether Gym Pant -33-Green","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"aether-gym-pant-33-green-865","links":{},"stock":{"item_id":865,"product_id":865,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp11-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-33-green-865.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"851","_score":1,"_source":{"id":851,"sku":"MP10-33-Blue","name":"Orestes Yoga Pant -33-Blue","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:01","updated_at":"2017-11-06 12:17:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-yoga-pant-33-blue-851","links":{},"stock":{"item_id":851,"product_id":851,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp10-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-33-blue-851.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"870","_score":1,"_source":{"id":870,"sku":"MP11-36-Brown","name":"Aether Gym Pant -36-Brown","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-brown_main.jpg","small_image":"/m/p/mp11-brown_main.jpg","thumbnail":"/m/p/mp11-brown_main.jpg","color":"51","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-36-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"aether-gym-pant-36-brown-870","links":{},"stock":{"item_id":870,"product_id":870,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp11-brown_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp11-brown_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp11-brown_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-36-brown-870.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"853","_score":1,"_source":{"id":853,"sku":"MP10-34-Black","name":"Orestes Yoga Pant -34-Black","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-black_main.jpg","small_image":"/m/p/mp10-black_main.jpg","thumbnail":"/m/p/mp10-black_main.jpg","color":"49","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-yoga-pant-34-black-853","links":{},"stock":{"item_id":853,"product_id":853,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp10-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp10-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp10-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-34-black-853.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"898","_score":1,"_source":{"id":898,"sku":"MSH01","name":"Cobalt CoolTech™ Fitness Short","attribute_set_id":10,"price":44,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cobalt-cooltech-trade-fitness-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,37,38,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[202,205,212],"slug":"cobalt-cooltech-and-trade-fitness-short-898","links":{},"stock":{"item_id":898,"product_id":898,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","color":"49","small_image":"/m/s/msh01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cobalt-cooltech-trade-fitness-short-32-black","regular_price":44,"required_options":"0","msrp_display_actual_price_type":"0","max_price":44,"minimal_regular_price":44,"size":"176","final_price":44,"special_price":null,"price":44,"minimal_price":44,"name":"Cobalt CoolTech™ Fitness Short-32-Black","id":886,"category_ids":["19","34","2"],"sku":"MSH01-32-Black","max_regular_price":44,"status":1},{"image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","color":"50","small_image":"/m/s/msh01-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cobalt-cooltech-trade-fitness-short-32-blue","regular_price":44,"required_options":"0","msrp_display_actual_price_type":"0","max_price":44,"minimal_regular_price":44,"size":"176","final_price":44,"special_price":null,"price":44,"minimal_price":44,"name":"Cobalt CoolTech™ Fitness Short-32-Blue","id":887,"category_ids":["19","34","2"],"sku":"MSH01-32-Blue","max_regular_price":44,"status":1},{"image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","color":"58","small_image":"/m/s/msh01-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cobalt-cooltech-trade-fitness-short-32-red","regular_price":44,"required_options":"0","msrp_display_actual_price_type":"0","max_price":44,"minimal_regular_price":44,"size":"176","final_price":44,"special_price":null,"price":44,"minimal_price":44,"name":"Cobalt CoolTech™ Fitness Short-32-Red","id":888,"category_ids":["19","34","2"],"sku":"MSH01-32-Red","max_regular_price":44,"status":1},{"image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","color":"49","small_image":"/m/s/msh01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cobalt-cooltech-trade-fitness-short-33-black","regular_price":44,"required_options":"0","msrp_display_actual_price_type":"0","max_price":44,"minimal_regular_price":44,"size":"177","final_price":44,"special_price":null,"price":44,"minimal_price":44,"name":"Cobalt CoolTech™ Fitness Short-33-Black","id":889,"category_ids":["19","34","2"],"sku":"MSH01-33-Black","max_regular_price":44,"status":1},{"image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","color":"50","small_image":"/m/s/msh01-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cobalt-cooltech-trade-fitness-short-33-blue","regular_price":44,"required_options":"0","msrp_display_actual_price_type":"0","max_price":44,"minimal_regular_price":44,"size":"177","final_price":44,"special_price":null,"price":44,"minimal_price":44,"name":"Cobalt CoolTech™ Fitness Short-33-Blue","id":890,"category_ids":["19","34","2"],"sku":"MSH01-33-Blue","max_regular_price":44,"status":1},{"image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","color":"58","small_image":"/m/s/msh01-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cobalt-cooltech-trade-fitness-short-33-red","regular_price":44,"required_options":"0","msrp_display_actual_price_type":"0","max_price":44,"minimal_regular_price":44,"size":"177","final_price":44,"special_price":null,"price":44,"minimal_price":44,"name":"Cobalt CoolTech™ Fitness Short-33-Red","id":891,"category_ids":["19","34","2"],"sku":"MSH01-33-Red","max_regular_price":44,"status":1},{"image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","color":"49","small_image":"/m/s/msh01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cobalt-cooltech-trade-fitness-short-34-black","regular_price":44,"required_options":"0","msrp_display_actual_price_type":"0","max_price":44,"minimal_regular_price":44,"size":"178","final_price":44,"special_price":null,"price":44,"minimal_price":44,"name":"Cobalt CoolTech™ Fitness Short-34-Black","id":892,"category_ids":["19","34","2"],"sku":"MSH01-34-Black","max_regular_price":44,"status":1},{"image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","color":"50","small_image":"/m/s/msh01-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cobalt-cooltech-trade-fitness-short-34-blue","regular_price":44,"required_options":"0","msrp_display_actual_price_type":"0","max_price":44,"minimal_regular_price":44,"size":"178","final_price":44,"special_price":null,"price":44,"minimal_price":44,"name":"Cobalt CoolTech™ Fitness Short-34-Blue","id":893,"category_ids":["19","34","2"],"sku":"MSH01-34-Blue","max_regular_price":44,"status":1},{"image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","color":"58","small_image":"/m/s/msh01-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cobalt-cooltech-trade-fitness-short-34-red","regular_price":44,"required_options":"0","msrp_display_actual_price_type":"0","max_price":44,"minimal_regular_price":44,"size":"178","final_price":44,"special_price":null,"price":44,"minimal_price":44,"name":"Cobalt CoolTech™ Fitness Short-34-Red","id":894,"category_ids":["19","34","2"],"sku":"MSH01-34-Red","max_regular_price":44,"status":1},{"image":"/m/s/msh01-black_main.jpg","thumbnail":"/m/s/msh01-black_main.jpg","color":"49","small_image":"/m/s/msh01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cobalt-cooltech-trade-fitness-short-36-black","regular_price":44,"required_options":"0","msrp_display_actual_price_type":"0","max_price":44,"minimal_regular_price":44,"size":"179","final_price":44,"special_price":null,"price":44,"minimal_price":44,"name":"Cobalt CoolTech™ Fitness Short-36-Black","id":895,"category_ids":["19","34","2"],"sku":"MSH01-36-Black","max_regular_price":44,"status":1},{"image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","color":"50","small_image":"/m/s/msh01-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cobalt-cooltech-trade-fitness-short-36-blue","regular_price":44,"required_options":"0","msrp_display_actual_price_type":"0","max_price":44,"minimal_regular_price":44,"size":"179","final_price":44,"special_price":null,"price":44,"minimal_price":44,"name":"Cobalt CoolTech™ Fitness Short-36-Blue","id":896,"category_ids":["19","34","2"],"sku":"MSH01-36-Blue","max_regular_price":44,"status":1},{"image":"/m/s/msh01-red_main.jpg","thumbnail":"/m/s/msh01-red_main.jpg","color":"58","small_image":"/m/s/msh01-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cobalt-cooltech-trade-fitness-short-36-red","regular_price":44,"required_options":"0","msrp_display_actual_price_type":"0","max_price":44,"minimal_regular_price":44,"size":"179","final_price":44,"special_price":null,"price":44,"minimal_price":44,"name":"Cobalt CoolTech™ Fitness Short-36-Red","id":897,"category_ids":["19","34","2"],"sku":"MSH01-36-Red","max_regular_price":44,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":898,"id":123,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":898,"id":122,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[176,177,178,179],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-898.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"916","_score":1,"_source":{"id":916,"sku":"MSH03","name":"Meteor Workout Short","attribute_set_id":10,"price":32.5,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"meteor-workout-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[202,208,209],"slug":"meteor-workout-short-916","links":{},"stock":{"item_id":916,"product_id":916,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","color":"49","small_image":"/m/s/msh03-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"meteor-workout-short-32-black","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"176","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Meteor Workout Short-32-Black","id":904,"category_ids":["19","35","2"],"sku":"MSH03-32-Black","max_regular_price":32.5,"status":1},{"image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","color":"50","small_image":"/m/s/msh03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"meteor-workout-short-32-blue","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"176","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Meteor Workout Short-32-Blue","id":905,"category_ids":["19","35","2"],"sku":"MSH03-32-Blue","max_regular_price":32.5,"status":1},{"image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","color":"53","small_image":"/m/s/msh03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"meteor-workout-short-32-green","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"176","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Meteor Workout Short-32-Green","id":906,"category_ids":["19","35","2"],"sku":"MSH03-32-Green","max_regular_price":32.5,"status":1},{"image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","color":"49","small_image":"/m/s/msh03-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"meteor-workout-short-33-black","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"177","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Meteor Workout Short-33-Black","id":907,"category_ids":["19","35","2"],"sku":"MSH03-33-Black","max_regular_price":32.5,"status":1},{"image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","color":"50","small_image":"/m/s/msh03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"meteor-workout-short-33-blue","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"177","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Meteor Workout Short-33-Blue","id":908,"category_ids":["19","35","2"],"sku":"MSH03-33-Blue","max_regular_price":32.5,"status":1},{"image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","color":"53","small_image":"/m/s/msh03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"meteor-workout-short-33-green","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"177","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Meteor Workout Short-33-Green","id":909,"category_ids":["19","35","2"],"sku":"MSH03-33-Green","max_regular_price":32.5,"status":1},{"image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","color":"49","small_image":"/m/s/msh03-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"meteor-workout-short-34-black","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"178","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Meteor Workout Short-34-Black","id":910,"category_ids":["19","35","2"],"sku":"MSH03-34-Black","max_regular_price":32.5,"status":1},{"image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","color":"50","small_image":"/m/s/msh03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"meteor-workout-short-34-blue","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"178","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Meteor Workout Short-34-Blue","id":911,"category_ids":["19","35","2"],"sku":"MSH03-34-Blue","max_regular_price":32.5,"status":1},{"image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","color":"53","small_image":"/m/s/msh03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"meteor-workout-short-34-green","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"178","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Meteor Workout Short-34-Green","id":912,"category_ids":["19","35","2"],"sku":"MSH03-34-Green","max_regular_price":32.5,"status":1},{"image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","color":"49","small_image":"/m/s/msh03-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"meteor-workout-short-36-black","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"179","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Meteor Workout Short-36-Black","id":913,"category_ids":["19","35","2"],"sku":"MSH03-36-Black","max_regular_price":32.5,"status":1},{"image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","color":"50","small_image":"/m/s/msh03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"meteor-workout-short-36-blue","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"179","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Meteor Workout Short-36-Blue","id":914,"category_ids":["19","35","2"],"sku":"MSH03-36-Blue","max_regular_price":32.5,"status":1},{"image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","color":"53","small_image":"/m/s/msh03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"meteor-workout-short-36-green","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"179","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Meteor Workout Short-36-Green","id":915,"category_ids":["19","35","2"],"sku":"MSH03-36-Green","max_regular_price":32.5,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":916,"id":127,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":916,"id":126,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-916.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"942","_score":1,"_source":{"id":942,"sku":"MSH05","name":"Hawkeye Yoga Short","attribute_set_id":10,"price":0,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

                            \n

                            • Dark gray shorts with red accents.
                            • 92% Organic Cotton 8% Spandex.
                            • Breathable stretch organic cotton.
                            • Medium=8.0\" (21.0cm) inseam.

                            ","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hawkeye-yoga-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,158,38,39,159],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":[197,199],"climate":[205,208,209],"slug":"hawkeye-yoga-short-942","links":{},"stock":{"item_id":942,"product_id":942,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/m/s/msh05-gray_main.jpg","pos":1,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_alt1.jpg","pos":2,"typ":"image","lab":"","vid":null},{"image":"/m/s/msh05-gray_back.jpg","pos":3,"typ":"image","lab":"","vid":null}],"configurable_children":[{"sku":"MSH05-32-Black","id":930,"status":1,"name":"Hawkeye Yoga Short-32-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"49","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","url_key":"hawkeye-yoga-short-32-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-32-Blue","id":931,"status":1,"name":"Hawkeye Yoga Short-32-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"50","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","url_key":"hawkeye-yoga-short-32-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-32-Gray","id":932,"status":1,"name":"Hawkeye Yoga Short-32-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"176","color":"52","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","url_key":"hawkeye-yoga-short-32-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-33-Black","id":933,"status":1,"name":"Hawkeye Yoga Short-33-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"49","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","url_key":"hawkeye-yoga-short-33-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-33-Blue","id":934,"status":1,"name":"Hawkeye Yoga Short-33-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"50","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","url_key":"hawkeye-yoga-short-33-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-33-Gray","id":935,"status":1,"name":"Hawkeye Yoga Short-33-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"177","color":"52","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","url_key":"hawkeye-yoga-short-33-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-34-Black","id":936,"status":1,"name":"Hawkeye Yoga Short-34-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"49","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","url_key":"hawkeye-yoga-short-34-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-34-Blue","id":937,"status":1,"name":"Hawkeye Yoga Short-34-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"50","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","url_key":"hawkeye-yoga-short-34-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-34-Gray","id":938,"status":1,"name":"Hawkeye Yoga Short-34-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"178","color":"52","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","url_key":"hawkeye-yoga-short-34-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-36-Black","id":939,"status":1,"name":"Hawkeye Yoga Short-36-Black","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"49","image":"/m/s/msh05-black_main.jpg","small_image":"/m/s/msh05-black_main.jpg","thumbnail":"/m/s/msh05-black_main.jpg","url_key":"hawkeye-yoga-short-36-black","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-36-Blue","id":940,"status":1,"name":"Hawkeye Yoga Short-36-Blue","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"50","image":"/m/s/msh05-blue_main.jpg","small_image":"/m/s/msh05-blue_main.jpg","thumbnail":"/m/s/msh05-blue_main.jpg","url_key":"hawkeye-yoga-short-36-blue","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29},{"sku":"MSH05-36-Gray","id":941,"status":1,"name":"Hawkeye Yoga Short-36-Gray","price":29,"tier_prices":[],"required_options":"0","has_options":"0","tax_class_id":"2","category_ids":["19","35","2"],"size":"179","color":"52","image":"/m/s/msh05-gray_main.jpg","small_image":"/m/s/msh05-gray_main.jpg","thumbnail":"/m/s/msh05-gray_main.jpg","url_key":"hawkeye-yoga-short-36-gray","msrp_display_actual_price_type":"0","final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29}],"configurable_options":[{"id":131,"attribute_id":"93","label":"Color","position":1,"values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"}],"product_id":942,"attribute_code":"color"},{"id":130,"attribute_id":"142","label":"Size","position":0,"values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":942,"attribute_code":"size"}],"color_options":[49,50,52],"size_options":[176,177,178,179],"category":[{"category_id":19,"name":"Shorts","slug":"shorts-19","path":"men/bottoms-men/shorts-men/shorts-19"},{"category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35","path":"collections/performance-fabrics/performance-fabrics-35"},{"category_id":2,"name":"All","slug":"all-2","path":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/hawkeye-yoga-short-942.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"904","_score":1,"_source":{"id":904,"sku":"MSH03-32-Black","name":"Meteor Workout Short-32-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"meteor-workout-short-32-black-904","links":{},"stock":{"item_id":904,"product_id":904,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh03-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-32-black-904.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"913","_score":1,"_source":{"id":913,"sku":"MSH03-36-Black","name":"Meteor Workout Short-36-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"meteor-workout-short-36-black-913","links":{},"stock":{"item_id":913,"product_id":913,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh03-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-36-black-913.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"917","_score":1,"_source":{"id":917,"sku":"MSH04-32-Gray","name":"Torque Power Short-32-Gray","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","color":"52","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"torque-power-short-32-gray-917","links":{},"stock":{"item_id":917,"product_id":917,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-32-gray-917.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"910","_score":1,"_source":{"id":910,"sku":"MSH03-34-Black","name":"Meteor Workout Short-34-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"meteor-workout-short-34-black-910","links":{},"stock":{"item_id":910,"product_id":910,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh03-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-34-black-910.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"914","_score":1,"_source":{"id":914,"sku":"MSH03-36-Blue","name":"Meteor Workout Short-36-Blue","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"meteor-workout-short-36-blue-914","links":{},"stock":{"item_id":914,"product_id":914,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-36-blue-914.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"907","_score":1,"_source":{"id":907,"sku":"MSH03-33-Black","name":"Meteor Workout Short-33-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-black_main.jpg","small_image":"/m/s/msh03-black_main.jpg","thumbnail":"/m/s/msh03-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"meteor-workout-short-33-black-907","links":{},"stock":{"item_id":907,"product_id":907,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh03-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-33-black-907.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"912","_score":1,"_source":{"id":912,"sku":"MSH03-34-Green","name":"Meteor Workout Short-34-Green","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"meteor-workout-short-34-green-912","links":{},"stock":{"item_id":912,"product_id":912,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-34-green-912.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"919","_score":1,"_source":{"id":919,"sku":"MSH04-32-Yellow","name":"Torque Power Short-32-Yellow","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","color":"60","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-32-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"torque-power-short-32-yellow-919","links":{},"stock":{"item_id":919,"product_id":919,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh04-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-32-yellow-919.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"925","_score":1,"_source":{"id":925,"sku":"MSH04-34-Yellow","name":"Torque Power Short-34-Yellow","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","color":"60","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-34-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"torque-power-short-34-yellow-925","links":{},"stock":{"item_id":925,"product_id":925,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh04-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-34-yellow-925.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"908","_score":1,"_source":{"id":908,"sku":"MSH03-33-Blue","name":"Meteor Workout Short-33-Blue","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"meteor-workout-short-33-blue-908","links":{},"stock":{"item_id":908,"product_id":908,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-33-blue-908.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"911","_score":1,"_source":{"id":911,"sku":"MSH03-34-Blue","name":"Meteor Workout Short-34-Blue","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"meteor-workout-short-34-blue-911","links":{},"stock":{"item_id":911,"product_id":911,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-34-blue-911.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"909","_score":1,"_source":{"id":909,"sku":"MSH03-33-Green","name":"Meteor Workout Short-33-Green","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"meteor-workout-short-33-green-909","links":{},"stock":{"item_id":909,"product_id":909,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-33-green-909.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"922","_score":1,"_source":{"id":922,"sku":"MSH04-33-Yellow","name":"Torque Power Short-33-Yellow","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-yellow_main.jpg","small_image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","color":"60","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-33-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"torque-power-short-33-yellow-922","links":{},"stock":{"item_id":922,"product_id":922,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh04-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-33-yellow-922.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"902","_score":1,"_source":{"id":902,"sku":"MSH02-36-Black","name":"Apollo Running Short-36-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

                            \n

                            • Black shorts with green accents.
                            • Side pockets.
                            • 4\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"apollo-running-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"apollo-running-short-36-black-902","links":{},"stock":{"item_id":902,"product_id":902,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-36-black-902.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"905","_score":1,"_source":{"id":905,"sku":"MSH03-32-Blue","name":"Meteor Workout Short-32-Blue","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-blue_main.jpg","small_image":"/m/s/msh03-blue_main.jpg","thumbnail":"/m/s/msh03-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"meteor-workout-short-32-blue-905","links":{},"stock":{"item_id":905,"product_id":905,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh03-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh03-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh03-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-32-blue-905.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"901","_score":1,"_source":{"id":901,"sku":"MSH02-34-Black","name":"Apollo Running Short-34-Black","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Fleet of foot or slow and steady, you'll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

                            \n

                            • Black shorts with green accents.
                            • Side pockets.
                            • 4\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh02-black_main.jpg","small_image":"/m/s/msh02-black_main.jpg","thumbnail":"/m/s/msh02-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"apollo-running-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"apollo-running-short-34-black-901","links":{},"stock":{"item_id":901,"product_id":901,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh02-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh02-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh02-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/apollo-running-short-34-black-901.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"906","_score":1,"_source":{"id":906,"sku":"MSH03-32-Green","name":"Meteor Workout Short-32-Green","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"meteor-workout-short-32-green-906","links":{},"stock":{"item_id":906,"product_id":906,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-32-green-906.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"923","_score":1,"_source":{"id":923,"sku":"MSH04-34-Gray","name":"Torque Power Short-34-Gray","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","color":"52","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"torque-power-short-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"torque-power-short-34-gray-923","links":{},"stock":{"item_id":923,"product_id":923,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-34-gray-923.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"915","_score":1,"_source":{"id":915,"sku":"MSH03-36-Green","name":"Meteor Workout Short-36-Green","attribute_set_id":10,"price":32.5,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

                            \n

                            • Royal blue shorts with light blue accents.
                            • Interior drawstring waistband.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh03-green_main.jpg","small_image":"/m/s/msh03-green_main.jpg","thumbnail":"/m/s/msh03-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"meteor-workout-short-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"meteor-workout-short-36-green-915","links":{},"stock":{"item_id":915,"product_id":915,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/meteor-workout-short-36-green-915.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"929","_score":1,"_source":{"id":929,"sku":"MSH04","name":"Torque Power Short","attribute_set_id":10,"price":32.5,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32.5,"max_price":32.5,"max_regular_price":32.5,"minimal_regular_price":32.5,"special_price":null,"minimal_price":32.5,"regular_price":32.5,"description":"

                            Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You'll stay cool, dry and energized miles later.

                            \n

                            • Light gray shorts.
                            • Fitted design.
                            • Elastic waistband.
                            • Flat-seam construction.
                            • 7\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh04-gray_main.jpg","small_image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"torque-power-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[205,212,206,208,209],"slug":"torque-power-short-929","links":{},"stock":{"item_id":929,"product_id":929,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh04-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh04-gray_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","color":"52","small_image":"/m/s/msh04-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"torque-power-short-32-gray","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"176","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Torque Power Short-32-Gray","id":917,"category_ids":["19"],"sku":"MSH04-32-Gray","max_regular_price":32.5,"status":1},{"image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","color":"57","small_image":"/m/s/msh04-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"torque-power-short-32-purple","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"176","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Torque Power Short-32-Purple","id":918,"category_ids":["19"],"sku":"MSH04-32-Purple","max_regular_price":32.5,"status":1},{"image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","color":"60","small_image":"/m/s/msh04-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"torque-power-short-32-yellow","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"176","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Torque Power Short-32-Yellow","id":919,"category_ids":["19"],"sku":"MSH04-32-Yellow","max_regular_price":32.5,"status":1},{"image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","color":"52","small_image":"/m/s/msh04-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"torque-power-short-33-gray","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"177","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Torque Power Short-33-Gray","id":920,"category_ids":["19"],"sku":"MSH04-33-Gray","max_regular_price":32.5,"status":1},{"image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","color":"57","small_image":"/m/s/msh04-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"torque-power-short-33-purple","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"177","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Torque Power Short-33-Purple","id":921,"category_ids":["19"],"sku":"MSH04-33-Purple","max_regular_price":32.5,"status":1},{"image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","color":"60","small_image":"/m/s/msh04-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"torque-power-short-33-yellow","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"177","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Torque Power Short-33-Yellow","id":922,"category_ids":["19"],"sku":"MSH04-33-Yellow","max_regular_price":32.5,"status":1},{"image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","color":"52","small_image":"/m/s/msh04-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"torque-power-short-34-gray","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"178","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Torque Power Short-34-Gray","id":923,"category_ids":["19"],"sku":"MSH04-34-Gray","max_regular_price":32.5,"status":1},{"image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","color":"57","small_image":"/m/s/msh04-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"torque-power-short-34-purple","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"178","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Torque Power Short-34-Purple","id":924,"category_ids":["19"],"sku":"MSH04-34-Purple","max_regular_price":32.5,"status":1},{"image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","color":"60","small_image":"/m/s/msh04-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"torque-power-short-34-yellow","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"178","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Torque Power Short-34-Yellow","id":925,"category_ids":["19"],"sku":"MSH04-34-Yellow","max_regular_price":32.5,"status":1},{"image":"/m/s/msh04-gray_main.jpg","thumbnail":"/m/s/msh04-gray_main.jpg","color":"52","small_image":"/m/s/msh04-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"torque-power-short-36-gray","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"179","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Torque Power Short-36-Gray","id":926,"category_ids":["19"],"sku":"MSH04-36-Gray","max_regular_price":32.5,"status":1},{"image":"/m/s/msh04-purple_main.jpg","thumbnail":"/m/s/msh04-purple_main.jpg","color":"57","small_image":"/m/s/msh04-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"torque-power-short-36-purple","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"179","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Torque Power Short-36-Purple","id":927,"category_ids":["19"],"sku":"MSH04-36-Purple","max_regular_price":32.5,"status":1},{"image":"/m/s/msh04-yellow_main.jpg","thumbnail":"/m/s/msh04-yellow_main.jpg","color":"60","small_image":"/m/s/msh04-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"torque-power-short-36-yellow","regular_price":32.5,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32.5,"minimal_regular_price":32.5,"size":"179","final_price":32.5,"special_price":null,"price":32.5,"minimal_price":32.5,"name":"Torque Power Short-36-Yellow","id":928,"category_ids":["19"],"sku":"MSH04-36-Yellow","max_regular_price":32.5,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"},{"value_index":60,"label":"Yellow"}],"product_id":929,"id":129,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":929,"id":128,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[52,57,60],"size_options":[176,177,178,179],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/torque-power-short-929.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"863","_score":1,"_source":{"id":863,"sku":"MP11-33-Blue","name":"Aether Gym Pant -33-Blue","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2019-05-17 10:37:01","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \r\n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-blue_main.jpg","small_image":"/m/p/mp11-blue_main.jpg","thumbnail":"/m/p/mp11-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-33-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"177","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"aether-gym-pant-33-blue-863","links":{},"stock":{"item_id":863,"product_id":863,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp11-blue_main.jpg","pos":1,"typ":"image","lab":null}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-33-blue-863.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"857","_score":1,"_source":{"id":857,"sku":"MP10-36-Blue","name":"Orestes Yoga Pant -36-Blue","attribute_set_id":10,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                            The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

                            \n

                            • A yoga essential.
                            • Breathable stretch organic cotton/spandex.
                            • Standard Fit.

                            ","image":"/m/p/mp10-blue_main.jpg","small_image":"/m/p/mp10-blue_main.jpg","thumbnail":"/m/p/mp10-blue_main.jpg","color":"50","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-yoga-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-yoga-pant-36-blue-857","links":{},"stock":{"item_id":857,"product_id":857,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp10-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/orestes-yoga-pant-36-blue-857.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"871","_score":1,"_source":{"id":871,"sku":"MP11-36-Green","name":"Aether Gym Pant -36-Green","attribute_set_id":10,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2019-05-14 08:20:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

                            \r\n

                            • Pants/shorts convertible.
                            • Lightweight moisture wicking.
                            • Water repellent.
                            • Belted waist.

                            ","image":"/m/p/mp11-green_main.jpg","small_image":"/m/p/mp11-green_main.jpg","thumbnail":"/m/p/mp11-green_main.jpg","color":"53","category_ids":[18,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aether-gym-pant-36-green","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"179","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"aether-gym-pant-36-green-871","links":{},"stock":{"item_id":871,"product_id":871,"stock_id":1,"qty":100,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp11-green_main.jpg","pos":1,"typ":"image","lab":null}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/aether-gym-pant-36-green-871.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"879","_score":1,"_source":{"id":879,"sku":"MP12-34-Black","name":"Cronus Yoga Pant -34-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cronus-yoga-pant-34-black-879","links":{},"stock":{"item_id":879,"product_id":879,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-34-black-879.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"893","_score":1,"_source":{"id":893,"sku":"MSH01-34-Blue","name":"Cobalt CoolTech™ Fitness Short-34-Blue","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","color":"50","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"cobalt-cooltech-and-trade-fitness-short-34-blue-893","links":{},"stock":{"item_id":893,"product_id":893,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-34-blue-893.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"874","_score":1,"_source":{"id":874,"sku":"MP12-32-Blue","name":"Cronus Yoga Pant -32-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","color":"50","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cronus-yoga-pant-32-blue-874","links":{},"stock":{"item_id":874,"product_id":874,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp12-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-32-blue-874.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"873","_score":1,"_source":{"id":873,"sku":"MP12-32-Black","name":"Cronus Yoga Pant -32-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-black_main.jpg","small_image":"/m/p/mp12-black_main.jpg","thumbnail":"/m/p/mp12-black_main.jpg","color":"49","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cronus-yoga-pant-32-black-873","links":{},"stock":{"item_id":873,"product_id":873,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp12-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/p/mp12-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-32-black-873.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"887","_score":1,"_source":{"id":887,"sku":"MSH01-32-Blue","name":"Cobalt CoolTech™ Fitness Short-32-Blue","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                            It's not rocket surgery: the hotter your conditions, the more you need to stay cool. That's why the Cobalt CoolTech™ Fitness Short features built-in technology and side perforations that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

                            \n

                            • Light blue nylon shorts.
                            • Relaxed fit.
                            • 5\" inseam.
                            • Machine wash/dry.

                            ","image":"/m/s/msh01-blue_main.jpg","small_image":"/m/s/msh01-blue_main.jpg","thumbnail":"/m/s/msh01-blue_main.jpg","color":"50","category_ids":[19,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cobalt-cooltech-trade-fitness-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"cobalt-cooltech-and-trade-fitness-short-32-blue-887","links":{},"stock":{"item_id":887,"product_id":887,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh01-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh01-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/cobalt-cooltech-and-trade-fitness-short-32-blue-887.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"878","_score":1,"_source":{"id":878,"sku":"MP12-33-Red","name":"Cronus Yoga Pant -33-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-red_main.jpg","small_image":"/m/p/mp12-red_main.jpg","thumbnail":"/m/p/mp12-red_main.jpg","color":"58","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"cronus-yoga-pant-33-red-878","links":{},"stock":{"item_id":878,"product_id":878,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp12-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-33-red-878.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"883","_score":1,"_source":{"id":883,"sku":"MP12-36-Blue","name":"Cronus Yoga Pant -36-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:03","updated_at":"2017-11-06 12:17:03","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

                            \n

                            • Drawstring waist.
                            • Loose, straight-leg fit.
                            • Lightweight cotton-recycled blend.
                            • Front pockets with stitching detail.
                            • Elastic ankle.

                            ","image":"/m/p/mp12-blue_main.jpg","small_image":"/m/p/mp12-blue_main.jpg","thumbnail":"/m/p/mp12-blue_main.jpg","color":"50","category_ids":[18,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cronus-yoga-pant-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"cronus-yoga-pant-36-blue-883","links":{},"stock":{"item_id":883,"product_id":883,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/p/mp12-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/pants-men/pants-18","category_id":18,"name":"Pants","slug":"pants-18"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/pants-men/pants-18/cronus-yoga-pant-36-blue-883.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"965","_score":1,"_source":{"id":965,"sku":"MSH07-36-Black","name":"Rapha Sports Short-36-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","color":"49","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"rapha-sports-short-36-black-965","links":{},"stock":{"item_id":965,"product_id":965,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-36-black-965.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"979","_score":1,"_source":{"id":979,"sku":"MSH08-36-Blue","name":"Orestes Fitness Short-36-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","color":"50","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-fitness-short-36-blue-979","links":{},"stock":{"item_id":979,"product_id":979,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh08-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-36-blue-979.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"998","_score":1,"_source":{"id":998,"sku":"MSH10-33-Blue","name":"Sol Active Short-33-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"sol-active-short-33-blue-998","links":{},"stock":{"item_id":998,"product_id":998,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-33-blue-998.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"989","_score":1,"_source":{"id":989,"sku":"MSH09-34-Blue","name":"Troy Yoga Short-34-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"troy-yoga-short-34-blue-989","links":{},"stock":{"item_id":989,"product_id":989,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-34-blue-989.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"983","_score":1,"_source":{"id":983,"sku":"MSH09-32-Blue","name":"Troy Yoga Short-32-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"troy-yoga-short-32-blue-983","links":{},"stock":{"item_id":983,"product_id":983,"stock_id":1,"qty":58,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-32-blue-983.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"999","_score":1,"_source":{"id":999,"sku":"MSH10-33-Green","name":"Sol Active Short-33-Green","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","color":"53","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"sol-active-short-33-green-999","links":{},"stock":{"item_id":999,"product_id":999,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh10-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-33-green-999.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"988","_score":1,"_source":{"id":988,"sku":"MSH09-34-Black","name":"Troy Yoga Short-34-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"troy-yoga-short-34-black-988","links":{},"stock":{"item_id":988,"product_id":988,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh09-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-34-black-988.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"997","_score":1,"_source":{"id":997,"sku":"MSH10-32-Purple","name":"Sol Active Short-32-Purple","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","color":"57","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"sol-active-short-32-purple-997","links":{},"stock":{"item_id":997,"product_id":997,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh10-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-32-purple-997.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"992","_score":1,"_source":{"id":992,"sku":"MSH09-36-Blue","name":"Troy Yoga Short-36-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"troy-yoga-short-36-blue-992","links":{},"stock":{"item_id":992,"product_id":992,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-36-blue-992.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1000","_score":1,"_source":{"id":1000,"sku":"MSH10-33-Purple","name":"Sol Active Short-33-Purple","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","color":"57","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"sol-active-short-33-purple-1000","links":{},"stock":{"item_id":1000,"product_id":1000,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh10-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-33-purple-1000.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"955","_score":1,"_source":{"id":955,"sku":"MSH06","name":"Lono Yoga Short","attribute_set_id":10,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"lono-yoga-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38,39],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,105,108],"pattern":"197","climate":[202,205,212,209],"slug":"lono-yoga-short-955","links":{},"stock":{"item_id":955,"product_id":955,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","color":"50","small_image":"/m/s/msh06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lono-yoga-short-32-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"176","price":32,"name":"Lono Yoga Short-32-Blue","id":943,"category_ids":["19","8","2"],"sku":"MSH06-32-Blue","status":1},{"image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","color":"52","small_image":"/m/s/msh06-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lono-yoga-short-32-gray","required_options":"0","msrp_display_actual_price_type":"0","size":"176","price":32,"name":"Lono Yoga Short-32-Gray","id":944,"category_ids":["19","8","2"],"sku":"MSH06-32-Gray","status":1},{"image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","color":"58","small_image":"/m/s/msh06-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lono-yoga-short-32-red","required_options":"0","msrp_display_actual_price_type":"0","size":"176","price":32,"name":"Lono Yoga Short-32-Red","id":945,"category_ids":["19","8","2"],"sku":"MSH06-32-Red","status":1},{"image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","color":"50","small_image":"/m/s/msh06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lono-yoga-short-33-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"177","price":32,"name":"Lono Yoga Short-33-Blue","id":946,"category_ids":["19","8","2"],"sku":"MSH06-33-Blue","status":1},{"image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","color":"52","small_image":"/m/s/msh06-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lono-yoga-short-33-gray","required_options":"0","msrp_display_actual_price_type":"0","size":"177","price":32,"name":"Lono Yoga Short-33-Gray","id":947,"category_ids":["19","8","2"],"sku":"MSH06-33-Gray","status":1},{"image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","color":"58","small_image":"/m/s/msh06-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lono-yoga-short-33-red","required_options":"0","msrp_display_actual_price_type":"0","size":"177","price":32,"name":"Lono Yoga Short-33-Red","id":948,"category_ids":["19","8","2"],"sku":"MSH06-33-Red","status":1},{"image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","color":"50","small_image":"/m/s/msh06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lono-yoga-short-34-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"178","price":32,"name":"Lono Yoga Short-34-Blue","id":949,"category_ids":["19","8","2"],"sku":"MSH06-34-Blue","status":1},{"image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","color":"52","small_image":"/m/s/msh06-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lono-yoga-short-34-gray","required_options":"0","msrp_display_actual_price_type":"0","size":"178","price":32,"name":"Lono Yoga Short-34-Gray","id":950,"category_ids":["19","8","2"],"sku":"MSH06-34-Gray","status":1},{"image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","color":"58","small_image":"/m/s/msh06-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lono-yoga-short-34-red","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"178","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Lono Yoga Short-34-Red","id":951,"category_ids":["19","8","2"],"sku":"MSH06-34-Red","max_regular_price":32,"status":1},{"image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","color":"50","small_image":"/m/s/msh06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lono-yoga-short-36-blue","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"179","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Lono Yoga Short-36-Blue","id":952,"category_ids":["19","8","2"],"sku":"MSH06-36-Blue","max_regular_price":32,"status":1},{"image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","color":"52","small_image":"/m/s/msh06-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lono-yoga-short-36-gray","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"179","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Lono Yoga Short-36-Gray","id":953,"category_ids":["19","8","2"],"sku":"MSH06-36-Gray","max_regular_price":32,"status":1},{"image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","color":"58","small_image":"/m/s/msh06-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lono-yoga-short-36-red","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"179","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Lono Yoga Short-36-Red","id":954,"category_ids":["19","8","2"],"sku":"MSH06-36-Red","max_regular_price":32,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"}],"product_id":955,"id":133,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":955,"id":132,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,52,58],"size_options":[176,177,178,179],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-955.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"981","_score":1,"_source":{"id":981,"sku":"MSH08","name":"Orestes Fitness Short","attribute_set_id":10,"price":35,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"orestes-fitness-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_bottom":[116,105],"pattern":"197","climate":[202,205,212],"slug":"orestes-fitness-short-981","links":{},"stock":{"item_id":981,"product_id":981,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","color":"49","small_image":"/m/s/msh08-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orestes-fitness-short-32-black","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"176","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Orestes Fitness Short-32-Black","id":969,"category_ids":["19","31","2"],"sku":"MSH08-32-Black","max_regular_price":35,"status":1},{"image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","color":"50","small_image":"/m/s/msh08-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orestes-fitness-short-32-blue","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"176","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Orestes Fitness Short-32-Blue","id":970,"category_ids":["19","31","2"],"sku":"MSH08-32-Blue","max_regular_price":35,"status":1},{"image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","color":"53","small_image":"/m/s/msh08-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orestes-fitness-short-32-green","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"176","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Orestes Fitness Short-32-Green","id":971,"category_ids":["19","31","2"],"sku":"MSH08-32-Green","max_regular_price":35,"status":1},{"image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","color":"49","small_image":"/m/s/msh08-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orestes-fitness-short-33-black","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"177","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Orestes Fitness Short-33-Black","id":972,"category_ids":["19","31","2"],"sku":"MSH08-33-Black","max_regular_price":35,"status":1},{"image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","color":"50","small_image":"/m/s/msh08-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orestes-fitness-short-33-blue","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"177","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Orestes Fitness Short-33-Blue","id":973,"category_ids":["19","31","2"],"sku":"MSH08-33-Blue","max_regular_price":35,"status":1},{"image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","color":"53","small_image":"/m/s/msh08-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orestes-fitness-short-33-green","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"177","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Orestes Fitness Short-33-Green","id":974,"category_ids":["19","31","2"],"sku":"MSH08-33-Green","max_regular_price":35,"status":1},{"image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","color":"49","small_image":"/m/s/msh08-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orestes-fitness-short-34-black","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"178","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Orestes Fitness Short-34-Black","id":975,"category_ids":["19","31","2"],"sku":"MSH08-34-Black","max_regular_price":35,"status":1},{"image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","color":"50","small_image":"/m/s/msh08-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orestes-fitness-short-34-blue","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"178","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Orestes Fitness Short-34-Blue","id":976,"category_ids":["19","31","2"],"sku":"MSH08-34-Blue","max_regular_price":35,"status":1},{"image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","color":"53","small_image":"/m/s/msh08-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orestes-fitness-short-34-green","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"178","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Orestes Fitness Short-34-Green","id":977,"category_ids":["19","31","2"],"sku":"MSH08-34-Green","max_regular_price":35,"status":1},{"image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","color":"49","small_image":"/m/s/msh08-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orestes-fitness-short-36-black","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"179","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Orestes Fitness Short-36-Black","id":978,"category_ids":["19","31","2"],"sku":"MSH08-36-Black","max_regular_price":35,"status":1},{"image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","color":"50","small_image":"/m/s/msh08-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orestes-fitness-short-36-blue","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"179","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Orestes Fitness Short-36-Blue","id":979,"category_ids":["19","31","2"],"sku":"MSH08-36-Blue","max_regular_price":35,"status":1},{"image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","color":"53","small_image":"/m/s/msh08-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orestes-fitness-short-36-green","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"179","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Orestes Fitness Short-36-Green","id":980,"category_ids":["19","31","2"],"sku":"MSH08-36-Green","max_regular_price":35,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":981,"id":137,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":981,"id":136,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-981.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"968","_score":1,"_source":{"id":968,"sku":"MSH07","name":"Rapha Sports Short","attribute_set_id":10,"price":35,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"rapha-sports-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,36,38,39],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"1","style_bottom":[116,105,108],"pattern":[197,199],"climate":[205,208,209],"slug":"rapha-sports-short-968","links":{},"stock":{"item_id":968,"product_id":968,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","color":"49","small_image":"/m/s/msh07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"rapha-sports-short-32-black","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"176","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Rapha Sports Short-32-Black","id":956,"category_ids":["19","31","34","2"],"sku":"MSH07-32-Black","max_regular_price":35,"status":1},{"image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","color":"50","small_image":"/m/s/msh07-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"rapha-sports-short-32-blue","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"176","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Rapha Sports Short-32-Blue","id":957,"category_ids":["19","31","34","2"],"sku":"MSH07-32-Blue","max_regular_price":35,"status":1},{"image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","color":"57","small_image":"/m/s/msh07-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"rapha-sports-short-32-purple","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"176","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Rapha Sports Short-32-Purple","id":958,"category_ids":["19","31","34","2"],"sku":"MSH07-32-Purple","max_regular_price":35,"status":1},{"image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","color":"49","small_image":"/m/s/msh07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"rapha-sports-short-33-black","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"177","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Rapha Sports Short-33-Black","id":959,"category_ids":["19","31","34","2"],"sku":"MSH07-33-Black","max_regular_price":35,"status":1},{"image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","color":"50","small_image":"/m/s/msh07-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"rapha-sports-short-33-blue","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"177","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Rapha Sports Short-33-Blue","id":960,"category_ids":["19","31","34","2"],"sku":"MSH07-33-Blue","max_regular_price":35,"status":1},{"image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","color":"57","small_image":"/m/s/msh07-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"rapha-sports-short-33-purple","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"177","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Rapha Sports Short-33-Purple","id":961,"category_ids":["19","31","34","2"],"sku":"MSH07-33-Purple","max_regular_price":35,"status":1},{"image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","color":"49","small_image":"/m/s/msh07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"rapha-sports-short-34-black","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"178","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Rapha Sports Short-34-Black","id":962,"category_ids":["19","31","34","2"],"sku":"MSH07-34-Black","max_regular_price":35,"status":1},{"image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","color":"50","small_image":"/m/s/msh07-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"rapha-sports-short-34-blue","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"178","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Rapha Sports Short-34-Blue","id":963,"category_ids":["19","31","34","2"],"sku":"MSH07-34-Blue","max_regular_price":35,"status":1},{"image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","color":"57","small_image":"/m/s/msh07-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"rapha-sports-short-34-purple","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"178","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Rapha Sports Short-34-Purple","id":964,"category_ids":["19","31","34","2"],"sku":"MSH07-34-Purple","max_regular_price":35,"status":1},{"image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","color":"49","small_image":"/m/s/msh07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"rapha-sports-short-36-black","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"179","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Rapha Sports Short-36-Black","id":965,"category_ids":["19","31","34","2"],"sku":"MSH07-36-Black","max_regular_price":35,"status":1},{"image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","color":"50","small_image":"/m/s/msh07-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"rapha-sports-short-36-blue","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"179","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Rapha Sports Short-36-Blue","id":966,"category_ids":["19","31","34","2"],"sku":"MSH07-36-Blue","max_regular_price":35,"status":1},{"image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","color":"57","small_image":"/m/s/msh07-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"rapha-sports-short-36-purple","regular_price":35,"required_options":"0","msrp_display_actual_price_type":"0","max_price":35,"minimal_regular_price":35,"size":"179","final_price":35,"special_price":null,"price":35,"minimal_price":35,"name":"Rapha Sports Short-36-Purple","id":967,"category_ids":["19","31","34","2"],"sku":"MSH07-36-Purple","max_regular_price":35,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":968,"id":135,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":968,"id":134,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[176,177,178,179],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-968.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"994","_score":1,"_source":{"id":994,"sku":"MSH09","name":"Troy Yoga Short","attribute_set_id":10,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"troy-yoga-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,37,148,151],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[205,212,209],"slug":"troy-yoga-short-994","links":{},"stock":{"item_id":994,"product_id":994,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","color":"49","small_image":"/m/s/msh09-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"troy-yoga-short-32-black","required_options":"0","msrp_display_actual_price_type":"0","size":"176","price":24,"name":"Troy Yoga Short-32-Black","id":982,"category_ids":["19","35","2"],"sku":"MSH09-32-Black","status":1},{"image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","color":"50","small_image":"/m/s/msh09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"troy-yoga-short-32-blue","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"176","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Troy Yoga Short-32-Blue","id":983,"category_ids":["19","35","2"],"sku":"MSH09-32-Blue","max_regular_price":24,"status":1},{"image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","color":"53","small_image":"/m/s/msh09-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"troy-yoga-short-32-green","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"176","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Troy Yoga Short-32-Green","id":984,"category_ids":["19","35","2"],"sku":"MSH09-32-Green","max_regular_price":24,"status":1},{"image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","color":"49","small_image":"/m/s/msh09-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"troy-yoga-short-33-black","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"177","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Troy Yoga Short-33-Black","id":985,"category_ids":["19","35","2"],"sku":"MSH09-33-Black","max_regular_price":24,"status":1},{"image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","color":"50","small_image":"/m/s/msh09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"troy-yoga-short-33-blue","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"177","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Troy Yoga Short-33-Blue","id":986,"category_ids":["19","35","2"],"sku":"MSH09-33-Blue","max_regular_price":24,"status":1},{"image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","color":"53","small_image":"/m/s/msh09-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"troy-yoga-short-33-green","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"177","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Troy Yoga Short-33-Green","id":987,"category_ids":["19","35","2"],"sku":"MSH09-33-Green","max_regular_price":24,"status":1},{"image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","color":"49","small_image":"/m/s/msh09-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"troy-yoga-short-34-black","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"178","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Troy Yoga Short-34-Black","id":988,"category_ids":["19","35","2"],"sku":"MSH09-34-Black","max_regular_price":24,"status":1},{"image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","color":"50","small_image":"/m/s/msh09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"troy-yoga-short-34-blue","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"178","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Troy Yoga Short-34-Blue","id":989,"category_ids":["19","35","2"],"sku":"MSH09-34-Blue","max_regular_price":24,"status":1},{"image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","color":"53","small_image":"/m/s/msh09-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"troy-yoga-short-34-green","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"178","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Troy Yoga Short-34-Green","id":990,"category_ids":["19","35","2"],"sku":"MSH09-34-Green","max_regular_price":24,"status":1},{"image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","color":"49","small_image":"/m/s/msh09-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"troy-yoga-short-36-black","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"179","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Troy Yoga Short-36-Black","id":991,"category_ids":["19","35","2"],"sku":"MSH09-36-Black","max_regular_price":24,"status":1},{"image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","color":"50","small_image":"/m/s/msh09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"troy-yoga-short-36-blue","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"179","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Troy Yoga Short-36-Blue","id":992,"category_ids":["19","35","2"],"sku":"MSH09-36-Blue","max_regular_price":24,"status":1},{"image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","color":"53","small_image":"/m/s/msh09-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"troy-yoga-short-36-green","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"179","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Troy Yoga Short-36-Green","id":993,"category_ids":["19","35","2"],"sku":"MSH09-36-Green","max_regular_price":24,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":994,"id":139,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":994,"id":138,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[176,177,178,179],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-994.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1005","_score":1,"_source":{"id":1005,"sku":"MSH10-36-Green","name":"Sol Active Short-36-Green","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","color":"53","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"sol-active-short-36-green-1005","links":{},"stock":{"item_id":1005,"product_id":1005,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh10-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-36-green-1005.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1041","_score":1,"_source":{"id":1041,"sku":"WH01-M-Orange","name":"Mona Pullover Hoodlie-M-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mona-pullover-hoodlie-m-orange-1041","links":{},"stock":{"item_id":1041,"product_id":1041,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-m-orange-1041.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1011","_score":1,"_source":{"id":1011,"sku":"MSH11-33-Black","name":"Arcadio Gym Short-33-Black","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"arcadio-gym-short-33-black-1011","links":{},"stock":{"item_id":1011,"product_id":1011,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh11-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-33-black-1011.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1035","_score":1,"_source":{"id":1035,"sku":"WH01-XS-Orange","name":"Mona Pullover Hoodlie-XS-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mona-pullover-hoodlie-xs-orange-1035","links":{},"stock":{"item_id":1035,"product_id":1035,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xs-orange-1035.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1021","_score":1,"_source":{"id":1021,"sku":"MSH12-32-Black","name":"Pierce Gym Short-32-Black","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"pierce-gym-short-32-black-1021","links":{},"stock":{"item_id":1021,"product_id":1021,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-07-01 12:19:18","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/m/s/msh12-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-32-black-1021.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1025","_score":1,"_source":{"id":1025,"sku":"MSH12-33-Gray","name":"Pierce Gym Short-33-Gray","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","color":"52","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-33-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"pierce-gym-short-33-gray-1025","links":{},"stock":{"item_id":1025,"product_id":1025,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh12-gray_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-33-gray-1025.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1045","_score":1,"_source":{"id":1045,"sku":"WH01-L-Purple","name":"Mona Pullover Hoodlie-L-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mona-pullover-hoodlie-l-purple-1045","links":{},"stock":{"item_id":1045,"product_id":1045,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-l-purple-1045.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1029","_score":1,"_source":{"id":1029,"sku":"MSH12-34-Red","name":"Pierce Gym Short-34-Red","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","color":"58","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"pierce-gym-short-34-red-1029","links":{},"stock":{"item_id":1029,"product_id":1029,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-34-red-1029.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1036","_score":1,"_source":{"id":1036,"sku":"WH01-XS-Purple","name":"Mona Pullover Hoodlie-XS-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mona-pullover-hoodlie-xs-purple-1036","links":{},"stock":{"item_id":1036,"product_id":1036,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xs-purple-1036.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1028","_score":1,"_source":{"id":1028,"sku":"MSH12-34-Gray","name":"Pierce Gym Short-34-Gray","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","color":"52","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-34-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"pierce-gym-short-34-gray-1028","links":{},"stock":{"item_id":1028,"product_id":1028,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh12-gray_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-34-gray-1028.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1008","_score":1,"_source":{"id":1008,"sku":"MSH11-32-Black","name":"Arcadio Gym Short-32-Black","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"arcadio-gym-short-32-black-1008","links":{},"stock":{"item_id":1008,"product_id":1008,"stock_id":1,"qty":70,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh11-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-32-black-1008.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1023","_score":1,"_source":{"id":1023,"sku":"MSH12-32-Red","name":"Pierce Gym Short-32-Red","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","color":"58","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"pierce-gym-short-32-red-1023","links":{},"stock":{"item_id":1023,"product_id":1023,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-32-red-1023.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1037","_score":1,"_source":{"id":1037,"sku":"WH01-S-Green","name":"Mona Pullover Hoodlie-S-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mona-pullover-hoodlie-s-green-1037","links":{},"stock":{"item_id":1037,"product_id":1037,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-s-green-1037.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1027","_score":1,"_source":{"id":1027,"sku":"MSH12-34-Black","name":"Pierce Gym Short-34-Black","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"pierce-gym-short-34-black-1027","links":{},"stock":{"item_id":1027,"product_id":1027,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh12-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-34-black-1027.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1042","_score":1,"_source":{"id":1042,"sku":"WH01-M-Purple","name":"Mona Pullover Hoodlie-M-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mona-pullover-hoodlie-m-purple-1042","links":{},"stock":{"item_id":1042,"product_id":1042,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-m-purple-1042.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1048","_score":1,"_source":{"id":1048,"sku":"WH01-XL-Purple","name":"Mona Pullover Hoodlie-XL-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mona-pullover-hoodlie-xl-purple-1048","links":{},"stock":{"item_id":1048,"product_id":1048,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xl-purple-1048.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1013","_score":1,"_source":{"id":1013,"sku":"MSH11-33-Red","name":"Arcadio Gym Short-33-Red","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","color":"58","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"arcadio-gym-short-33-red-1013","links":{},"stock":{"item_id":1013,"product_id":1013,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh11-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-33-red-1013.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1031","_score":1,"_source":{"id":1031,"sku":"MSH12-36-Gray","name":"Pierce Gym Short-36-Gray","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","color":"52","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"pierce-gym-short-36-gray-1031","links":{},"stock":{"item_id":1031,"product_id":1031,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh12-gray_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-36-gray-1031.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1022","_score":1,"_source":{"id":1022,"sku":"MSH12-32-Gray","name":"Pierce Gym Short-32-Gray","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-gray_main.jpg","small_image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","color":"52","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"pierce-gym-short-32-gray-1022","links":{},"stock":{"item_id":1022,"product_id":1022,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh12-gray_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-32-gray-1022.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1026","_score":1,"_source":{"id":1026,"sku":"MSH12-33-Red","name":"Pierce Gym Short-33-Red","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","color":"58","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-33-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"pierce-gym-short-33-red-1026","links":{},"stock":{"item_id":1026,"product_id":1026,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-33-red-1026.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1030","_score":1,"_source":{"id":1030,"sku":"MSH12-36-Black","name":"Pierce Gym Short-36-Black","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"pierce-gym-short-36-black-1030","links":{},"stock":{"item_id":1030,"product_id":1030,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh12-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-36-black-1030.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1040","_score":1,"_source":{"id":1040,"sku":"WH01-M-Green","name":"Mona Pullover Hoodlie-M-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mona-pullover-hoodlie-m-green-1040","links":{},"stock":{"item_id":1040,"product_id":1040,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-m-green-1040.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1038","_score":1,"_source":{"id":1038,"sku":"WH01-S-Orange","name":"Mona Pullover Hoodlie-S-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mona-pullover-hoodlie-s-orange-1038","links":{},"stock":{"item_id":1038,"product_id":1038,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-s-orange-1038.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1043","_score":1,"_source":{"id":1043,"sku":"WH01-L-Green","name":"Mona Pullover Hoodlie-L-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mona-pullover-hoodlie-l-green-1043","links":{},"stock":{"item_id":1043,"product_id":1043,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-l-green-1043.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1047","_score":1,"_source":{"id":1047,"sku":"WH01-XL-Orange","name":"Mona Pullover Hoodlie-XL-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mona-pullover-hoodlie-xl-orange-1047","links":{},"stock":{"item_id":1047,"product_id":1047,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xl-orange-1047.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1039","_score":1,"_source":{"id":1039,"sku":"WH01-S-Purple","name":"Mona Pullover Hoodlie-S-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-purple_main.jpg","small_image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mona-pullover-hoodlie-s-purple-1039","links":{},"stock":{"item_id":1039,"product_id":1039,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh01-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-s-purple-1039.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"971","_score":1,"_source":{"id":971,"sku":"MSH08-32-Green","name":"Orestes Fitness Short-32-Green","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","color":"53","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-fitness-short-32-green-971","links":{},"stock":{"item_id":971,"product_id":971,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh08-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-32-green-971.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"954","_score":1,"_source":{"id":954,"sku":"MSH06-36-Red","name":"Lono Yoga Short-36-Red","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","color":"58","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"lono-yoga-short-36-red-954","links":{},"stock":{"item_id":954,"product_id":954,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh06-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-36-red-954.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"996","_score":1,"_source":{"id":996,"sku":"MSH10-32-Green","name":"Sol Active Short-32-Green","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","color":"53","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"sol-active-short-32-green-996","links":{},"stock":{"item_id":996,"product_id":996,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh10-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-32-green-996.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"984","_score":1,"_source":{"id":984,"sku":"MSH09-32-Green","name":"Troy Yoga Short-32-Green","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"troy-yoga-short-32-green-984","links":{},"stock":{"item_id":984,"product_id":984,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh09-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-32-green-984.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"974","_score":1,"_source":{"id":974,"sku":"MSH08-33-Green","name":"Orestes Fitness Short-33-Green","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","color":"53","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-fitness-short-33-green-974","links":{},"stock":{"item_id":974,"product_id":974,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh08-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-33-green-974.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"962","_score":1,"_source":{"id":962,"sku":"MSH07-34-Black","name":"Rapha Sports Short-34-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","color":"49","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"rapha-sports-short-34-black-962","links":{},"stock":{"item_id":962,"product_id":962,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-34-black-962.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"964","_score":1,"_source":{"id":964,"sku":"MSH07-34-Purple","name":"Rapha Sports Short-34-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","color":"57","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"rapha-sports-short-34-purple-964","links":{},"stock":{"item_id":964,"product_id":964,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh07-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-34-purple-964.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"952","_score":1,"_source":{"id":952,"sku":"MSH06-36-Blue","name":"Lono Yoga Short-36-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-blue_main.jpg","small_image":"/m/s/msh06-blue_main.jpg","thumbnail":"/m/s/msh06-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"lono-yoga-short-36-blue-952","links":{},"stock":{"item_id":952,"product_id":952,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh06-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-36-blue-952.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"951","_score":1,"_source":{"id":951,"sku":"MSH06-34-Red","name":"Lono Yoga Short-34-Red","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:04","updated_at":"2017-11-06 12:17:04","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-red_main.jpg","small_image":"/m/s/msh06-red_main.jpg","thumbnail":"/m/s/msh06-red_main.jpg","color":"58","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"lono-yoga-short-34-red-951","links":{},"stock":{"item_id":951,"product_id":951,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh06-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-34-red-951.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"969","_score":1,"_source":{"id":969,"sku":"MSH08-32-Black","name":"Orestes Fitness Short-32-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-fitness-short-32-black-969","links":{},"stock":{"item_id":969,"product_id":969,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-32-black-969.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"966","_score":1,"_source":{"id":966,"sku":"MSH07-36-Blue","name":"Rapha Sports Short-36-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","color":"50","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"rapha-sports-short-36-blue-966","links":{},"stock":{"item_id":966,"product_id":966,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh07-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-36-blue-966.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"960","_score":1,"_source":{"id":960,"sku":"MSH07-33-Blue","name":"Rapha Sports Short-33-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","color":"50","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"rapha-sports-short-33-blue-960","links":{},"stock":{"item_id":960,"product_id":960,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh07-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-33-blue-960.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"963","_score":1,"_source":{"id":963,"sku":"MSH07-34-Blue","name":"Rapha Sports Short-34-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","color":"50","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"rapha-sports-short-34-blue-963","links":{},"stock":{"item_id":963,"product_id":963,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh07-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-34-blue-963.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"990","_score":1,"_source":{"id":990,"sku":"MSH09-34-Green","name":"Troy Yoga Short-34-Green","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"troy-yoga-short-34-green-990","links":{},"stock":{"item_id":990,"product_id":990,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh09-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-34-green-990.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"959","_score":1,"_source":{"id":959,"sku":"MSH07-33-Black","name":"Rapha Sports Short-33-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","color":"49","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"rapha-sports-short-33-black-959","links":{},"stock":{"item_id":959,"product_id":959,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-33-black-959.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"980","_score":1,"_source":{"id":980,"sku":"MSH08-36-Green","name":"Orestes Fitness Short-36-Green","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","color":"53","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-fitness-short-36-green-980","links":{},"stock":{"item_id":980,"product_id":980,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh08-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-36-green-980.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"985","_score":1,"_source":{"id":985,"sku":"MSH09-33-Black","name":"Troy Yoga Short-33-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"troy-yoga-short-33-black-985","links":{},"stock":{"item_id":985,"product_id":985,"stock_id":1,"qty":71,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh09-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-33-black-985.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"953","_score":1,"_source":{"id":953,"sku":"MSH06-36-Gray","name":"Lono Yoga Short-36-Gray","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

                            \n

                            • Dark gray shorts with mesh accents.
                            • Ultra flexible four-way stretch.
                            • Flatlock seams and waistband.
                            • Two pockets, phony fly.
                            • Nylon/Lycra outer, Polyester/Lycra inner.

                            ","image":"/m/s/msh06-gray_main.jpg","small_image":"/m/s/msh06-gray_main.jpg","thumbnail":"/m/s/msh06-gray_main.jpg","color":"52","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lono-yoga-short-36-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"lono-yoga-short-36-gray-953","links":{},"stock":{"item_id":953,"product_id":953,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh06-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh06-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh06-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/lono-yoga-short-36-gray-953.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"995","_score":1,"_source":{"id":995,"sku":"MSH10-32-Blue","name":"Sol Active Short-32-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"sol-active-short-32-blue-995","links":{},"stock":{"item_id":995,"product_id":995,"stock_id":1,"qty":10,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-32-blue-995.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"987","_score":1,"_source":{"id":987,"sku":"MSH09-33-Green","name":"Troy Yoga Short-33-Green","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-33-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"troy-yoga-short-33-green-987","links":{},"stock":{"item_id":987,"product_id":987,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh09-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-33-green-987.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"973","_score":1,"_source":{"id":973,"sku":"MSH08-33-Blue","name":"Orestes Fitness Short-33-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","color":"50","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-fitness-short-33-blue-973","links":{},"stock":{"item_id":973,"product_id":973,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh08-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-33-blue-973.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"978","_score":1,"_source":{"id":978,"sku":"MSH08-36-Black","name":"Orestes Fitness Short-36-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"orestes-fitness-short-36-black-978","links":{},"stock":{"item_id":978,"product_id":978,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-36-black-978.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"956","_score":1,"_source":{"id":956,"sku":"MSH07-32-Black","name":"Rapha Sports Short-32-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-black_main.jpg","small_image":"/m/s/msh07-black_main.jpg","thumbnail":"/m/s/msh07-black_main.jpg","color":"49","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"rapha-sports-short-32-black-956","links":{},"stock":{"item_id":956,"product_id":956,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh07-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh07-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh07-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-32-black-956.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"976","_score":1,"_source":{"id":976,"sku":"MSH08-34-Blue","name":"Orestes Fitness Short-34-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","color":"50","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-fitness-short-34-blue-976","links":{},"stock":{"item_id":976,"product_id":976,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh08-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-34-blue-976.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"967","_score":1,"_source":{"id":967,"sku":"MSH07-36-Purple","name":"Rapha Sports Short-36-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","color":"57","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"rapha-sports-short-36-purple-967","links":{},"stock":{"item_id":967,"product_id":967,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh07-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-36-purple-967.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"991","_score":1,"_source":{"id":991,"sku":"MSH09-36-Black","name":"Troy Yoga Short-36-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"troy-yoga-short-36-black-991","links":{},"stock":{"item_id":991,"product_id":991,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh09-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-36-black-991.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"986","_score":1,"_source":{"id":986,"sku":"MSH09-33-Blue","name":"Troy Yoga Short-33-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-blue_main.jpg","small_image":"/m/s/msh09-blue_main.jpg","thumbnail":"/m/s/msh09-blue_main.jpg","color":"50","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"troy-yoga-short-33-blue-986","links":{},"stock":{"item_id":986,"product_id":986,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-33-blue-986.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"957","_score":1,"_source":{"id":957,"sku":"MSH07-32-Blue","name":"Rapha Sports Short-32-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-blue_main.jpg","small_image":"/m/s/msh07-blue_main.jpg","thumbnail":"/m/s/msh07-blue_main.jpg","color":"50","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"rapha-sports-short-32-blue-957","links":{},"stock":{"item_id":957,"product_id":957,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh07-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-32-blue-957.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"982","_score":1,"_source":{"id":982,"sku":"MSH09-32-Black","name":"Troy Yoga Short-32-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-black_main.jpg","small_image":"/m/s/msh09-black_main.jpg","thumbnail":"/m/s/msh09-black_main.jpg","color":"49","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"troy-yoga-short-32-black-982","links":{},"stock":{"item_id":982,"product_id":982,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-03-21 13:14:03","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/m/s/msh09-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-32-black-982.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"961","_score":1,"_source":{"id":961,"sku":"MSH07-33-Purple","name":"Rapha Sports Short-33-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","color":"57","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-33-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"rapha-sports-short-33-purple-961","links":{},"stock":{"item_id":961,"product_id":961,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh07-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-33-purple-961.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"972","_score":1,"_source":{"id":972,"sku":"MSH08-33-Black","name":"Orestes Fitness Short-33-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"orestes-fitness-short-33-black-972","links":{},"stock":{"item_id":972,"product_id":972,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-33-black-972.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"977","_score":1,"_source":{"id":977,"sku":"MSH08-34-Green","name":"Orestes Fitness Short-34-Green","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-green_main.jpg","small_image":"/m/s/msh08-green_main.jpg","thumbnail":"/m/s/msh08-green_main.jpg","color":"53","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-fitness-short-34-green-977","links":{},"stock":{"item_id":977,"product_id":977,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh08-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-34-green-977.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"958","_score":1,"_source":{"id":958,"sku":"MSH07-32-Purple","name":"Rapha Sports Short-32-Purple","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

                            \n

                            • Black shorts with royal accents.
                            • Compression liner.
                            • Inseam: 8\".
                            • Machine wash/dry.

                            ","image":"/m/s/msh07-purple_main.jpg","small_image":"/m/s/msh07-purple_main.jpg","thumbnail":"/m/s/msh07-purple_main.jpg","color":"57","category_ids":[19,31,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rapha-sports-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"rapha-sports-short-32-purple-958","links":{},"stock":{"item_id":958,"product_id":958,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh07-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/rapha-sports-short-32-purple-958.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"975","_score":1,"_source":{"id":975,"sku":"MSH08-34-Black","name":"Orestes Fitness Short-34-Black","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-black_main.jpg","small_image":"/m/s/msh08-black_main.jpg","thumbnail":"/m/s/msh08-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"orestes-fitness-short-34-black-975","links":{},"stock":{"item_id":975,"product_id":975,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh08-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh08-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-34-black-975.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"970","_score":1,"_source":{"id":970,"sku":"MSH08-32-Blue","name":"Orestes Fitness Short-32-Blue","attribute_set_id":10,"price":35,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:05","updated_at":"2017-11-06 12:17:05","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":35,"max_price":35,"max_regular_price":35,"minimal_regular_price":35,"special_price":null,"minimal_price":35,"regular_price":35,"description":"

                            You're out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won't complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

                            \n

                            • Black shorts with dark gray accents.
                            • Elasticized waistband with interior drawstring.
                            • Ventilating mesh detailing.
                            • 100% polyester and recycled polyester.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh08-blue_main.jpg","small_image":"/m/s/msh08-blue_main.jpg","thumbnail":"/m/s/msh08-blue_main.jpg","color":"50","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orestes-fitness-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"orestes-fitness-short-32-blue-970","links":{},"stock":{"item_id":970,"product_id":970,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh08-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/orestes-fitness-short-32-blue-970.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"993","_score":1,"_source":{"id":993,"sku":"MSH09-36-Green","name":"Troy Yoga Short-36-Green","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

                            \n

                            • Navy polyester pinstripe shorts.
                            • Woven fabric with moderate stretch.
                            • 62% cotton/34% nylon/4% spandex.
                            • LumaTech™ lining.

                            ","image":"/m/s/msh09-green_main.jpg","small_image":"/m/s/msh09-green_main.jpg","thumbnail":"/m/s/msh09-green_main.jpg","color":"53","category_ids":[19,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"troy-yoga-short-36-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"troy-yoga-short-36-green-993","links":{},"stock":{"item_id":993,"product_id":993,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh09-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/troy-yoga-short-36-green-993.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1017","_score":1,"_source":{"id":1017,"sku":"MSH11-36-Black","name":"Arcadio Gym Short-36-Black","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-36-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"arcadio-gym-short-36-black-1017","links":{},"stock":{"item_id":1017,"product_id":1017,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh11-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-36-black-1017.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1016","_score":1,"_source":{"id":1016,"sku":"MSH11-34-Red","name":"Arcadio Gym Short-34-Red","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","color":"58","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-34-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"arcadio-gym-short-34-red-1016","links":{},"stock":{"item_id":1016,"product_id":1016,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh11-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-34-red-1016.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1002","_score":1,"_source":{"id":1002,"sku":"MSH10-34-Green","name":"Sol Active Short-34-Green","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-green_main.jpg","small_image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","color":"53","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-34-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"sol-active-short-34-green-1002","links":{},"stock":{"item_id":1002,"product_id":1002,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh10-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-34-green-1002.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1004","_score":1,"_source":{"id":1004,"sku":"MSH10-36-Blue","name":"Sol Active Short-36-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"sol-active-short-36-blue-1004","links":{},"stock":{"item_id":1004,"product_id":1004,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-36-blue-1004.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1010","_score":1,"_source":{"id":1010,"sku":"MSH11-32-Red","name":"Arcadio Gym Short-32-Red","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","color":"58","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"arcadio-gym-short-32-red-1010","links":{},"stock":{"item_id":1010,"product_id":1010,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh11-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-32-red-1010.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1018","_score":1,"_source":{"id":1018,"sku":"MSH11-36-Blue","name":"Arcadio Gym Short-36-Blue","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","color":"50","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-36-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"arcadio-gym-short-36-blue-1018","links":{},"stock":{"item_id":1018,"product_id":1018,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-36-blue-1018.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1012","_score":1,"_source":{"id":1012,"sku":"MSH11-33-Blue","name":"Arcadio Gym Short-33-Blue","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","color":"50","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-33-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"arcadio-gym-short-33-blue-1012","links":{},"stock":{"item_id":1012,"product_id":1012,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-33-blue-1012.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1006","_score":1,"_source":{"id":1006,"sku":"MSH10-36-Purple","name":"Sol Active Short-36-Purple","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","color":"57","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-36-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"sol-active-short-36-purple-1006","links":{},"stock":{"item_id":1006,"product_id":1006,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh10-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-36-purple-1006.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1009","_score":1,"_source":{"id":1009,"sku":"MSH11-32-Blue","name":"Arcadio Gym Short-32-Blue","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","color":"50","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"arcadio-gym-short-32-blue-1009","links":{},"stock":{"item_id":1009,"product_id":1009,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-32-blue-1009.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1001","_score":1,"_source":{"id":1001,"sku":"MSH10-34-Blue","name":"Sol Active Short-34-Blue","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","color":"50","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"sol-active-short-34-blue-1001","links":{},"stock":{"item_id":1001,"product_id":1001,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-34-blue-1001.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1014","_score":1,"_source":{"id":1014,"sku":"MSH11-34-Black","name":"Arcadio Gym Short-34-Black","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-black_main.jpg","small_image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","color":"49","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-34-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"arcadio-gym-short-34-black-1014","links":{},"stock":{"item_id":1014,"product_id":1014,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh11-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-34-black-1014.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1003","_score":1,"_source":{"id":1003,"sku":"MSH10-34-Purple","name":"Sol Active Short-34-Purple","attribute_set_id":10,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-purple_main.jpg","small_image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","color":"57","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sol-active-short-34-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"sol-active-short-34-purple-1003","links":{},"stock":{"item_id":1003,"product_id":1003,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh10-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-34-purple-1003.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1015","_score":1,"_source":{"id":1015,"sku":"MSH11-34-Blue","name":"Arcadio Gym Short-34-Blue","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","color":"50","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-34-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"178","slug":"arcadio-gym-short-34-blue-1015","links":{},"stock":{"item_id":1015,"product_id":1015,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-34-blue-1015.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1024","_score":1,"_source":{"id":1024,"sku":"MSH12-33-Black","name":"Pierce Gym Short-33-Black","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-black_main.jpg","small_image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","color":"49","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-33-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"177","slug":"pierce-gym-short-33-black-1024","links":{},"stock":{"item_id":1024,"product_id":1024,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh12-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-33-black-1024.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1019","_score":1,"_source":{"id":1019,"sku":"MSH11-36-Red","name":"Arcadio Gym Short-36-Red","attribute_set_id":10,"price":20,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-red_main.jpg","small_image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","color":"58","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"arcadio-gym-short-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"arcadio-gym-short-36-red-1019","links":{},"stock":{"item_id":1019,"product_id":1019,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh11-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-36-red-1019.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1050","_score":1,"_source":{"id":1050,"sku":"WH02-XS-Blue","name":"Hera Pullover Hoodie-XS-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hera-pullover-hoodie-xs-blue-1050","links":{},"stock":{"item_id":1050,"product_id":1050,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xs-blue-1050.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1046","_score":1,"_source":{"id":1046,"sku":"WH01-XL-Green","name":"Mona Pullover Hoodlie-XL-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mona-pullover-hoodlie-xl-green-1046","links":{},"stock":{"item_id":1046,"product_id":1046,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xl-green-1046.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1034","_score":1,"_source":{"id":1034,"sku":"WH01-XS-Green","name":"Mona Pullover Hoodlie-XS-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mona-pullover-hoodlie-xs-green-1034","links":{},"stock":{"item_id":1034,"product_id":1034,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-xs-green-1034.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1032","_score":1,"_source":{"id":1032,"sku":"MSH12-36-Red","name":"Pierce Gym Short-36-Red","attribute_set_id":10,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","color":"58","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pierce-gym-short-36-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"179","slug":"pierce-gym-short-36-red-1032","links":{},"stock":{"item_id":1032,"product_id":1032,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-36-red-1032.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1044","_score":1,"_source":{"id":1044,"sku":"WH01-L-Orange","name":"Mona Pullover Hoodlie-L-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-orange_main.jpg","small_image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mona-pullover-hoodlie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mona-pullover-hoodlie-l-orange-1044","links":{},"stock":{"item_id":1044,"product_id":1044,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-l-orange-1044.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1033","_score":1,"_source":{"id":1033,"sku":"MSH12","name":"Pierce Gym Short","attribute_set_id":10,"price":27,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

                            \n

                            • Dark red cotton shorts.
                            • 87% Supplex, 13% Lycra.
                            • Adjustable drawstring waistband.
                            • Built-in mesh brief.
                            • Machine wash cold, tumble dry low.

                            ","image":"/m/s/msh12-red_main.jpg","small_image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","category_ids":[19,31,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"pierce-gym-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,36,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_bottom":[116,105,108,114],"pattern":"197","climate":[205,212,209],"slug":"pierce-gym-short-1033","links":{},"stock":{"item_id":1033,"product_id":1033,"stock_id":1,"qty":7,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh12-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh12-red_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","color":"49","small_image":"/m/s/msh12-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"pierce-gym-short-32-black","required_options":"0","msrp_display_actual_price_type":"0","size":"176","price":27,"name":"Pierce Gym Short-32-Black","id":1021,"category_ids":["19","31","2"],"sku":"MSH12-32-Black","status":1},{"image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","color":"52","small_image":"/m/s/msh12-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"pierce-gym-short-32-gray","regular_price":27,"required_options":"0","msrp_display_actual_price_type":"0","max_price":27,"minimal_regular_price":27,"size":"176","final_price":27,"special_price":null,"price":27,"minimal_price":27,"name":"Pierce Gym Short-32-Gray","id":1022,"category_ids":["19","31","2"],"sku":"MSH12-32-Gray","max_regular_price":27,"status":1},{"image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","color":"58","small_image":"/m/s/msh12-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"pierce-gym-short-32-red","regular_price":27,"required_options":"0","msrp_display_actual_price_type":"0","max_price":27,"minimal_regular_price":27,"size":"176","final_price":27,"special_price":null,"price":27,"minimal_price":27,"name":"Pierce Gym Short-32-Red","id":1023,"category_ids":["19","31","2"],"sku":"MSH12-32-Red","max_regular_price":27,"status":1},{"image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","color":"49","small_image":"/m/s/msh12-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"pierce-gym-short-33-black","regular_price":27,"required_options":"0","msrp_display_actual_price_type":"0","max_price":27,"minimal_regular_price":27,"size":"177","final_price":27,"special_price":null,"price":27,"minimal_price":27,"name":"Pierce Gym Short-33-Black","id":1024,"category_ids":["19","31","2"],"sku":"MSH12-33-Black","max_regular_price":27,"status":1},{"image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","color":"52","small_image":"/m/s/msh12-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"pierce-gym-short-33-gray","regular_price":27,"required_options":"0","msrp_display_actual_price_type":"0","max_price":27,"minimal_regular_price":27,"size":"177","final_price":27,"special_price":null,"price":27,"minimal_price":27,"name":"Pierce Gym Short-33-Gray","id":1025,"category_ids":["19","31","2"],"sku":"MSH12-33-Gray","max_regular_price":27,"status":1},{"image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","color":"58","small_image":"/m/s/msh12-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"pierce-gym-short-33-red","regular_price":27,"required_options":"0","msrp_display_actual_price_type":"0","max_price":27,"minimal_regular_price":27,"size":"177","final_price":27,"special_price":null,"price":27,"minimal_price":27,"name":"Pierce Gym Short-33-Red","id":1026,"category_ids":["19","31","2"],"sku":"MSH12-33-Red","max_regular_price":27,"status":1},{"image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","color":"49","small_image":"/m/s/msh12-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"pierce-gym-short-34-black","regular_price":27,"required_options":"0","msrp_display_actual_price_type":"0","max_price":27,"minimal_regular_price":27,"size":"178","final_price":27,"special_price":null,"price":27,"minimal_price":27,"name":"Pierce Gym Short-34-Black","id":1027,"category_ids":["19","31","2"],"sku":"MSH12-34-Black","max_regular_price":27,"status":1},{"image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","color":"52","small_image":"/m/s/msh12-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"pierce-gym-short-34-gray","regular_price":27,"required_options":"0","msrp_display_actual_price_type":"0","max_price":27,"minimal_regular_price":27,"size":"178","final_price":27,"special_price":null,"price":27,"minimal_price":27,"name":"Pierce Gym Short-34-Gray","id":1028,"category_ids":["19","31","2"],"sku":"MSH12-34-Gray","max_regular_price":27,"status":1},{"image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","color":"58","small_image":"/m/s/msh12-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"pierce-gym-short-34-red","regular_price":27,"required_options":"0","msrp_display_actual_price_type":"0","max_price":27,"minimal_regular_price":27,"size":"178","final_price":27,"special_price":null,"price":27,"minimal_price":27,"name":"Pierce Gym Short-34-Red","id":1029,"category_ids":["19","31","2"],"sku":"MSH12-34-Red","max_regular_price":27,"status":1},{"image":"/m/s/msh12-black_main.jpg","thumbnail":"/m/s/msh12-black_main.jpg","color":"49","small_image":"/m/s/msh12-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"pierce-gym-short-36-black","regular_price":27,"required_options":"0","msrp_display_actual_price_type":"0","max_price":27,"minimal_regular_price":27,"size":"179","final_price":27,"special_price":null,"price":27,"minimal_price":27,"name":"Pierce Gym Short-36-Black","id":1030,"category_ids":["19","31","2"],"sku":"MSH12-36-Black","max_regular_price":27,"status":1},{"image":"/m/s/msh12-gray_main.jpg","thumbnail":"/m/s/msh12-gray_main.jpg","color":"52","small_image":"/m/s/msh12-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"pierce-gym-short-36-gray","regular_price":27,"required_options":"0","msrp_display_actual_price_type":"0","max_price":27,"minimal_regular_price":27,"size":"179","final_price":27,"special_price":null,"price":27,"minimal_price":27,"name":"Pierce Gym Short-36-Gray","id":1031,"category_ids":["19","31","2"],"sku":"MSH12-36-Gray","max_regular_price":27,"status":1},{"image":"/m/s/msh12-red_main.jpg","thumbnail":"/m/s/msh12-red_main.jpg","color":"58","small_image":"/m/s/msh12-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"pierce-gym-short-36-red","regular_price":27,"required_options":"0","msrp_display_actual_price_type":"0","max_price":27,"minimal_regular_price":27,"size":"179","final_price":27,"special_price":null,"price":27,"minimal_price":27,"name":"Pierce Gym Short-36-Red","id":1032,"category_ids":["19","31","2"],"sku":"MSH12-36-Red","max_regular_price":27,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"}],"product_id":1033,"id":145,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":1033,"id":144,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,52,58],"size_options":[176,177,178,179],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"promotions/men-sale/men-sale-31","category_id":31,"name":"Men Sale","slug":"men-sale-31"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/pierce-gym-short-1033.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1020","_score":1,"_source":{"id":1020,"sku":"MSH11","name":"Arcadio Gym Short","attribute_set_id":10,"price":20,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":20,"description":"

                            The Arcadio Gym short is a basic-looking piece with a lot more than meets the eye: casual-yet-functional relaxed fit, comfortable waistband and adjustable drawstring. Everything you need, plus more.

                            \n

                            • Royal blue cotton shorts.
                            • Built-in mesh brief.
                            • 87% Spandex 13% Lycra.
                            • Adjustable drawstring.

                            ","image":"/m/s/msh11-blue_main.jpg","small_image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","category_ids":["19"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"arcadio-gym-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[116,105,108],"pattern":"197","climate":[202,205,212,208,209],"slug":"arcadio-gym-short-1020","links":{},"stock":{"item_id":1020,"product_id":1020,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh11-blue_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","color":"49","small_image":"/m/s/msh11-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"arcadio-gym-short-32-black","regular_price":20,"required_options":"0","msrp_display_actual_price_type":"0","max_price":20,"minimal_regular_price":20,"size":"176","final_price":20,"special_price":null,"price":20,"minimal_price":20,"name":"Arcadio Gym Short-32-Black","id":1008,"category_ids":["19"],"sku":"MSH11-32-Black","max_regular_price":20,"status":1},{"image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","color":"50","small_image":"/m/s/msh11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"arcadio-gym-short-32-blue","regular_price":20,"required_options":"0","msrp_display_actual_price_type":"0","max_price":20,"minimal_regular_price":20,"size":"176","final_price":20,"special_price":null,"price":20,"minimal_price":20,"name":"Arcadio Gym Short-32-Blue","id":1009,"category_ids":["19"],"sku":"MSH11-32-Blue","max_regular_price":20,"status":1},{"image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","color":"58","small_image":"/m/s/msh11-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"arcadio-gym-short-32-red","regular_price":20,"required_options":"0","msrp_display_actual_price_type":"0","max_price":20,"minimal_regular_price":20,"size":"176","final_price":20,"special_price":null,"price":20,"minimal_price":20,"name":"Arcadio Gym Short-32-Red","id":1010,"category_ids":["19"],"sku":"MSH11-32-Red","max_regular_price":20,"status":1},{"image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","color":"49","small_image":"/m/s/msh11-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"arcadio-gym-short-33-black","regular_price":20,"required_options":"0","msrp_display_actual_price_type":"0","max_price":20,"minimal_regular_price":20,"size":"177","final_price":20,"special_price":null,"price":20,"minimal_price":20,"name":"Arcadio Gym Short-33-Black","id":1011,"category_ids":["19"],"sku":"MSH11-33-Black","max_regular_price":20,"status":1},{"image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","color":"50","small_image":"/m/s/msh11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"arcadio-gym-short-33-blue","regular_price":20,"required_options":"0","msrp_display_actual_price_type":"0","max_price":20,"minimal_regular_price":20,"size":"177","final_price":20,"special_price":null,"price":20,"minimal_price":20,"name":"Arcadio Gym Short-33-Blue","id":1012,"category_ids":["19"],"sku":"MSH11-33-Blue","max_regular_price":20,"status":1},{"image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","color":"58","small_image":"/m/s/msh11-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"arcadio-gym-short-33-red","regular_price":20,"required_options":"0","msrp_display_actual_price_type":"0","max_price":20,"minimal_regular_price":20,"size":"177","final_price":20,"special_price":null,"price":20,"minimal_price":20,"name":"Arcadio Gym Short-33-Red","id":1013,"category_ids":["19"],"sku":"MSH11-33-Red","max_regular_price":20,"status":1},{"image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","color":"49","small_image":"/m/s/msh11-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"arcadio-gym-short-34-black","regular_price":20,"required_options":"0","msrp_display_actual_price_type":"0","max_price":20,"minimal_regular_price":20,"size":"178","final_price":20,"special_price":null,"price":20,"minimal_price":20,"name":"Arcadio Gym Short-34-Black","id":1014,"category_ids":["19"],"sku":"MSH11-34-Black","max_regular_price":20,"status":1},{"image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","color":"50","small_image":"/m/s/msh11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"arcadio-gym-short-34-blue","regular_price":20,"required_options":"0","msrp_display_actual_price_type":"0","max_price":20,"minimal_regular_price":20,"size":"178","final_price":20,"special_price":null,"price":20,"minimal_price":20,"name":"Arcadio Gym Short-34-Blue","id":1015,"category_ids":["19"],"sku":"MSH11-34-Blue","max_regular_price":20,"status":1},{"image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","color":"58","small_image":"/m/s/msh11-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"arcadio-gym-short-34-red","regular_price":20,"required_options":"0","msrp_display_actual_price_type":"0","max_price":20,"minimal_regular_price":20,"size":"178","final_price":20,"special_price":null,"price":20,"minimal_price":20,"name":"Arcadio Gym Short-34-Red","id":1016,"category_ids":["19"],"sku":"MSH11-34-Red","max_regular_price":20,"status":1},{"image":"/m/s/msh11-black_main.jpg","thumbnail":"/m/s/msh11-black_main.jpg","color":"49","small_image":"/m/s/msh11-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"arcadio-gym-short-36-black","regular_price":20,"required_options":"0","msrp_display_actual_price_type":"0","max_price":20,"minimal_regular_price":20,"size":"179","final_price":20,"special_price":null,"price":20,"minimal_price":20,"name":"Arcadio Gym Short-36-Black","id":1017,"category_ids":["19"],"sku":"MSH11-36-Black","max_regular_price":20,"status":1},{"image":"/m/s/msh11-blue_main.jpg","thumbnail":"/m/s/msh11-blue_main.jpg","color":"50","small_image":"/m/s/msh11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"arcadio-gym-short-36-blue","regular_price":20,"required_options":"0","msrp_display_actual_price_type":"0","max_price":20,"minimal_regular_price":20,"size":"179","final_price":20,"special_price":null,"price":20,"minimal_price":20,"name":"Arcadio Gym Short-36-Blue","id":1018,"category_ids":["19"],"sku":"MSH11-36-Blue","max_regular_price":20,"status":1},{"image":"/m/s/msh11-red_main.jpg","thumbnail":"/m/s/msh11-red_main.jpg","color":"58","small_image":"/m/s/msh11-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"arcadio-gym-short-36-red","regular_price":20,"required_options":"0","msrp_display_actual_price_type":"0","max_price":20,"minimal_regular_price":20,"size":"179","final_price":20,"special_price":null,"price":20,"minimal_price":20,"name":"Arcadio Gym Short-36-Red","id":1019,"category_ids":["19"],"sku":"MSH11-36-Red","max_regular_price":20,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":1020,"id":143,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":1020,"id":142,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[176,177,178,179],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/arcadio-gym-short-1020.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1007","_score":1,"_source":{"id":1007,"sku":"MSH10","name":"Sol Active Short","attribute_set_id":10,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            You'll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

                            \n

                            • Light blue jersey shorts with mesh detail.
                            • 87% Spandex 13% Lycra.
                            • Machine wash cold, tumble dry low.
                            • Superior performance fabric.
                            • Flat-lock seams.

                            ","image":"/m/s/msh10-blue_main.jpg","small_image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","category_ids":[19,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sol-active-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[116,105],"pattern":"197","climate":[205,212,209],"slug":"sol-active-short-1007","links":{},"stock":{"item_id":1007,"product_id":1007,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/msh10-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh10-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/msh10-blue_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","color":"50","small_image":"/m/s/msh10-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sol-active-short-32-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"176","price":32,"name":"Sol Active Short-32-Blue","id":995,"category_ids":["19","8","2"],"sku":"MSH10-32-Blue","status":1},{"image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","color":"53","small_image":"/m/s/msh10-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sol-active-short-32-green","required_options":"0","msrp_display_actual_price_type":"0","size":"176","price":32,"name":"Sol Active Short-32-Green","id":996,"category_ids":["19","8","2"],"sku":"MSH10-32-Green","status":1},{"image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","color":"57","small_image":"/m/s/msh10-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sol-active-short-32-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"176","price":32,"name":"Sol Active Short-32-Purple","id":997,"category_ids":["19","8","2"],"sku":"MSH10-32-Purple","status":1},{"image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","color":"50","small_image":"/m/s/msh10-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sol-active-short-33-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"177","price":32,"name":"Sol Active Short-33-Blue","id":998,"category_ids":["19","8","2"],"sku":"MSH10-33-Blue","status":1},{"image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","color":"53","small_image":"/m/s/msh10-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sol-active-short-33-green","required_options":"0","msrp_display_actual_price_type":"0","size":"177","price":32,"name":"Sol Active Short-33-Green","id":999,"category_ids":["19","8","2"],"sku":"MSH10-33-Green","status":1},{"image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","color":"57","small_image":"/m/s/msh10-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sol-active-short-33-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"177","price":32,"name":"Sol Active Short-33-Purple","id":1000,"category_ids":["19","8","2"],"sku":"MSH10-33-Purple","status":1},{"image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","color":"50","small_image":"/m/s/msh10-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sol-active-short-34-blue","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"178","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Sol Active Short-34-Blue","id":1001,"category_ids":["19","8","2"],"sku":"MSH10-34-Blue","max_regular_price":32,"status":1},{"image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","color":"53","small_image":"/m/s/msh10-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sol-active-short-34-green","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"178","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Sol Active Short-34-Green","id":1002,"category_ids":["19","8","2"],"sku":"MSH10-34-Green","max_regular_price":32,"status":1},{"image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","color":"57","small_image":"/m/s/msh10-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sol-active-short-34-purple","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"178","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Sol Active Short-34-Purple","id":1003,"category_ids":["19","8","2"],"sku":"MSH10-34-Purple","max_regular_price":32,"status":1},{"image":"/m/s/msh10-blue_main.jpg","thumbnail":"/m/s/msh10-blue_main.jpg","color":"50","small_image":"/m/s/msh10-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sol-active-short-36-blue","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"179","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Sol Active Short-36-Blue","id":1004,"category_ids":["19","8","2"],"sku":"MSH10-36-Blue","max_regular_price":32,"status":1},{"image":"/m/s/msh10-green_main.jpg","thumbnail":"/m/s/msh10-green_main.jpg","color":"53","small_image":"/m/s/msh10-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sol-active-short-36-green","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"179","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Sol Active Short-36-Green","id":1005,"category_ids":["19","8","2"],"sku":"MSH10-36-Green","max_regular_price":32,"status":1},{"image":"/m/s/msh10-purple_main.jpg","thumbnail":"/m/s/msh10-purple_main.jpg","color":"57","small_image":"/m/s/msh10-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sol-active-short-36-purple","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"179","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Sol Active Short-36-Purple","id":1006,"category_ids":["19","8","2"],"sku":"MSH10-36-Purple","max_regular_price":32,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"}],"product_id":1007,"id":141,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":176,"label":"32"},{"value_index":177,"label":"33"},{"value_index":178,"label":"34"},{"value_index":179,"label":"36"}],"product_id":1007,"id":140,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,53,57],"size_options":[176,177,178,179],"category":[{"path":"men/bottoms-men/shorts-men/shorts-19","category_id":19,"name":"Shorts","slug":"shorts-19"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/bottoms-men/shorts-men/shorts-19/sol-active-short-1007.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1049","_score":1,"_source":{"id":1049,"sku":"WH01","name":"Mona Pullover Hoodlie","attribute_set_id":9,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:06","updated_at":"2017-11-06 12:17:06","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"Whether you're after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You'll stay warm and look fashionable, wherever you are.

                            • Light green heathered hoodie.
                            • Long-Sleeve, pullover.
                            • Long elliptical hem for extra coverage.
                            • Deep button placket for layering.
                            • Double rib design.
                            • Mid layer, mid weight.
                            • 98% Merino Wool / 2% Spandex","image":"/w/h/wh01-green_main.jpg","small_image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mona-pullover-hoodlie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":[138,137],"pattern":"197","climate":[202,204,206,208],"slug":"mona-pullover-hoodlie-1049","links":{},"stock":{"item_id":1049,"product_id":1049,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh01-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh01-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh01-green_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","small_image":"/w/h/wh01-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mona-pullover-hoodlie-xs-green","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"167","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Mona Pullover Hoodlie-XS-Green","id":1034,"category_ids":["24","8","34","2"],"sku":"WH01-XS-Green","max_regular_price":57,"status":1},{"image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","small_image":"/w/h/wh01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mona-pullover-hoodlie-xs-orange","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"167","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Mona Pullover Hoodlie-XS-Orange","id":1035,"category_ids":["24","8","34","2"],"sku":"WH01-XS-Orange","max_regular_price":57,"status":1},{"image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","small_image":"/w/h/wh01-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mona-pullover-hoodlie-xs-purple","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"167","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Mona Pullover Hoodlie-XS-Purple","id":1036,"category_ids":["24","8","34","2"],"sku":"WH01-XS-Purple","max_regular_price":57,"status":1},{"image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","small_image":"/w/h/wh01-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mona-pullover-hoodlie-s-green","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"168","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Mona Pullover Hoodlie-S-Green","id":1037,"category_ids":["24","8","34","2"],"sku":"WH01-S-Green","max_regular_price":57,"status":1},{"image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","small_image":"/w/h/wh01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mona-pullover-hoodlie-s-orange","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"168","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Mona Pullover Hoodlie-S-Orange","id":1038,"category_ids":["24","8","34","2"],"sku":"WH01-S-Orange","max_regular_price":57,"status":1},{"image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","small_image":"/w/h/wh01-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mona-pullover-hoodlie-s-purple","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"168","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Mona Pullover Hoodlie-S-Purple","id":1039,"category_ids":["24","8","34","2"],"sku":"WH01-S-Purple","max_regular_price":57,"status":1},{"image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","small_image":"/w/h/wh01-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mona-pullover-hoodlie-m-green","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"169","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Mona Pullover Hoodlie-M-Green","id":1040,"category_ids":["24","8","34","2"],"sku":"WH01-M-Green","max_regular_price":57,"status":1},{"image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","small_image":"/w/h/wh01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mona-pullover-hoodlie-m-orange","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"169","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Mona Pullover Hoodlie-M-Orange","id":1041,"category_ids":["24","8","34","2"],"sku":"WH01-M-Orange","max_regular_price":57,"status":1},{"image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","small_image":"/w/h/wh01-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mona-pullover-hoodlie-m-purple","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"169","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Mona Pullover Hoodlie-M-Purple","id":1042,"category_ids":["24","8","34","2"],"sku":"WH01-M-Purple","max_regular_price":57,"status":1},{"image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","small_image":"/w/h/wh01-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mona-pullover-hoodlie-l-green","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"170","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Mona Pullover Hoodlie-L-Green","id":1043,"category_ids":["24","8","34","2"],"sku":"WH01-L-Green","max_regular_price":57,"status":1},{"image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","small_image":"/w/h/wh01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mona-pullover-hoodlie-l-orange","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"170","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Mona Pullover Hoodlie-L-Orange","id":1044,"category_ids":["24","8","34","2"],"sku":"WH01-L-Orange","max_regular_price":57,"status":1},{"image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","small_image":"/w/h/wh01-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mona-pullover-hoodlie-l-purple","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"170","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Mona Pullover Hoodlie-L-Purple","id":1045,"category_ids":["24","8","34","2"],"sku":"WH01-L-Purple","max_regular_price":57,"status":1},{"image":"/w/h/wh01-green_main.jpg","thumbnail":"/w/h/wh01-green_main.jpg","color":"53","small_image":"/w/h/wh01-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mona-pullover-hoodlie-xl-green","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"171","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Mona Pullover Hoodlie-XL-Green","id":1046,"category_ids":["24","8","34","2"],"sku":"WH01-XL-Green","max_regular_price":57,"status":1},{"image":"/w/h/wh01-orange_main.jpg","thumbnail":"/w/h/wh01-orange_main.jpg","color":"56","small_image":"/w/h/wh01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mona-pullover-hoodlie-xl-orange","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"171","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Mona Pullover Hoodlie-XL-Orange","id":1047,"category_ids":["24","8","34","2"],"sku":"WH01-XL-Orange","max_regular_price":57,"status":1},{"image":"/w/h/wh01-purple_main.jpg","thumbnail":"/w/h/wh01-purple_main.jpg","color":"57","small_image":"/w/h/wh01-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mona-pullover-hoodlie-xl-purple","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"171","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Mona Pullover Hoodlie-XL-Purple","id":1048,"category_ids":["24","8","34","2"],"sku":"WH01-XL-Purple","max_regular_price":57,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1049,"id":147,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1049,"id":146,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[53,56,57],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/mona-pullover-hoodlie-1049.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1092","_score":1,"_source":{"id":1092,"sku":"WH04-L-Orange","name":"Miko Pullover Hoodie-L-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"miko-pullover-hoodie-l-orange-1092","links":{},"stock":{"item_id":1092,"product_id":1092,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-l-orange-1092.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1067","_score":1,"_source":{"id":1067,"sku":"WH03-XS-Purple","name":"Autumn Pullie-XS-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"autumn-pullie-xs-purple-1067","links":{},"stock":{"item_id":1067,"product_id":1067,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xs-purple-1067.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1091","_score":1,"_source":{"id":1091,"sku":"WH04-L-Blue","name":"Miko Pullover Hoodie-L-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"miko-pullover-hoodie-l-blue-1091","links":{},"stock":{"item_id":1091,"product_id":1091,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-l-blue-1091.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1100","_score":1,"_source":{"id":1100,"sku":"WH05-XS-White","name":"Selene Yoga Hoodie-XS-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"selene-yoga-hoodie-xs-white-1100","links":{},"stock":{"item_id":1100,"product_id":1100,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xs-white-1100.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1089","_score":1,"_source":{"id":1089,"sku":"WH04-M-Orange","name":"Miko Pullover Hoodie-M-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"miko-pullover-hoodie-m-orange-1089","links":{},"stock":{"item_id":1089,"product_id":1089,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-m-orange-1089.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1088","_score":1,"_source":{"id":1088,"sku":"WH04-M-Blue","name":"Miko Pullover Hoodie-M-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"miko-pullover-hoodie-m-blue-1088","links":{},"stock":{"item_id":1088,"product_id":1088,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-m-blue-1088.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1065","_score":1,"_source":{"id":1065,"sku":"WH02","name":"Hera Pullover Hoodie","attribute_set_id":9,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hera-pullover-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":[138,137],"pattern":"197","climate":[202,204,206,208],"slug":"hera-pullover-hoodie-1065","links":{},"stock":{"item_id":1065,"product_id":1065,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","small_image":"/w/h/wh02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hera-pullover-hoodie-xs-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":48,"name":"Hera Pullover Hoodie-XS-Blue","id":1050,"category_ids":["24","30","2"],"sku":"WH02-XS-Blue","status":1},{"image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","small_image":"/w/h/wh02-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hera-pullover-hoodie-xs-green","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"167","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Hera Pullover Hoodie-XS-Green","id":1051,"category_ids":["24","30","2"],"sku":"WH02-XS-Green","max_regular_price":48,"status":1},{"image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","small_image":"/w/h/wh02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hera-pullover-hoodie-xs-orange","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"167","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Hera Pullover Hoodie-XS-Orange","id":1052,"category_ids":["24","30","2"],"sku":"WH02-XS-Orange","max_regular_price":48,"status":1},{"image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","small_image":"/w/h/wh02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hera-pullover-hoodie-s-blue","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"168","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Hera Pullover Hoodie-S-Blue","id":1053,"category_ids":["24","30","2"],"sku":"WH02-S-Blue","max_regular_price":48,"status":1},{"image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","small_image":"/w/h/wh02-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hera-pullover-hoodie-s-green","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"168","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Hera Pullover Hoodie-S-Green","id":1054,"category_ids":["24","30","2"],"sku":"WH02-S-Green","max_regular_price":48,"status":1},{"image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","small_image":"/w/h/wh02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hera-pullover-hoodie-s-orange","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"168","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Hera Pullover Hoodie-S-Orange","id":1055,"category_ids":["24","30","2"],"sku":"WH02-S-Orange","max_regular_price":48,"status":1},{"image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","small_image":"/w/h/wh02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hera-pullover-hoodie-m-blue","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"169","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Hera Pullover Hoodie-M-Blue","id":1056,"category_ids":["24","30","2"],"sku":"WH02-M-Blue","max_regular_price":48,"status":1},{"image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","small_image":"/w/h/wh02-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hera-pullover-hoodie-m-green","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"169","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Hera Pullover Hoodie-M-Green","id":1057,"category_ids":["24","30","2"],"sku":"WH02-M-Green","max_regular_price":48,"status":1},{"image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","small_image":"/w/h/wh02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hera-pullover-hoodie-m-orange","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"169","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Hera Pullover Hoodie-M-Orange","id":1058,"category_ids":["24","30","2"],"sku":"WH02-M-Orange","max_regular_price":48,"status":1},{"image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","small_image":"/w/h/wh02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hera-pullover-hoodie-l-blue","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"170","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Hera Pullover Hoodie-L-Blue","id":1059,"category_ids":["24","30","2"],"sku":"WH02-L-Blue","max_regular_price":48,"status":1},{"image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","small_image":"/w/h/wh02-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hera-pullover-hoodie-l-green","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"170","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Hera Pullover Hoodie-L-Green","id":1060,"category_ids":["24","30","2"],"sku":"WH02-L-Green","max_regular_price":48,"status":1},{"image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","small_image":"/w/h/wh02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hera-pullover-hoodie-l-orange","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"170","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Hera Pullover Hoodie-L-Orange","id":1061,"category_ids":["24","30","2"],"sku":"WH02-L-Orange","max_regular_price":48,"status":1},{"image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","small_image":"/w/h/wh02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hera-pullover-hoodie-xl-blue","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"171","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Hera Pullover Hoodie-XL-Blue","id":1062,"category_ids":["24","30","2"],"sku":"WH02-XL-Blue","max_regular_price":48,"status":1},{"image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","small_image":"/w/h/wh02-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hera-pullover-hoodie-xl-green","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"171","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Hera Pullover Hoodie-XL-Green","id":1063,"category_ids":["24","30","2"],"sku":"WH02-XL-Green","max_regular_price":48,"status":1},{"image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","small_image":"/w/h/wh02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hera-pullover-hoodie-xl-orange","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"171","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Hera Pullover Hoodie-XL-Orange","id":1064,"category_ids":["24","30","2"],"sku":"WH02-XL-Orange","max_regular_price":48,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":1065,"id":149,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1065,"id":148,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,53,56],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-1065.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1081","_score":1,"_source":{"id":1081,"sku":"WH03","name":"Autumn Pullie","attribute_set_id":9,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"autumn-pullie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[137,133],"pattern":"197","climate":[205,206,208],"slug":"autumn-pullie-1081","links":{},"stock":{"item_id":1081,"product_id":1081,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","small_image":"/w/h/wh03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"autumn-pullie-xs-green","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"167","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Autumn Pullie-XS-Green","id":1066,"category_ids":["24"],"sku":"WH03-XS-Green","max_regular_price":57,"status":1},{"image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","small_image":"/w/h/wh03-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"autumn-pullie-xs-purple","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"167","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Autumn Pullie-XS-Purple","id":1067,"category_ids":["24"],"sku":"WH03-XS-Purple","max_regular_price":57,"status":1},{"image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","small_image":"/w/h/wh03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"autumn-pullie-xs-red","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"167","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Autumn Pullie-XS-Red","id":1068,"category_ids":["24"],"sku":"WH03-XS-Red","max_regular_price":57,"status":1},{"image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","small_image":"/w/h/wh03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"autumn-pullie-s-green","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"168","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Autumn Pullie-S-Green","id":1069,"category_ids":["24"],"sku":"WH03-S-Green","max_regular_price":57,"status":1},{"image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","small_image":"/w/h/wh03-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"autumn-pullie-s-purple","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"168","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Autumn Pullie-S-Purple","id":1070,"category_ids":["24"],"sku":"WH03-S-Purple","max_regular_price":57,"status":1},{"image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","small_image":"/w/h/wh03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"autumn-pullie-s-red","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"168","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Autumn Pullie-S-Red","id":1071,"category_ids":["24"],"sku":"WH03-S-Red","max_regular_price":57,"status":1},{"image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","small_image":"/w/h/wh03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"autumn-pullie-m-green","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"169","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Autumn Pullie-M-Green","id":1072,"category_ids":["24"],"sku":"WH03-M-Green","max_regular_price":57,"status":1},{"image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","small_image":"/w/h/wh03-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"autumn-pullie-m-purple","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"169","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Autumn Pullie-M-Purple","id":1073,"category_ids":["24"],"sku":"WH03-M-Purple","max_regular_price":57,"status":1},{"image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","small_image":"/w/h/wh03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"autumn-pullie-m-red","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"169","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Autumn Pullie-M-Red","id":1074,"category_ids":["24"],"sku":"WH03-M-Red","max_regular_price":57,"status":1},{"image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","small_image":"/w/h/wh03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"autumn-pullie-l-green","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"170","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Autumn Pullie-L-Green","id":1075,"category_ids":["24"],"sku":"WH03-L-Green","max_regular_price":57,"status":1},{"image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","small_image":"/w/h/wh03-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"autumn-pullie-l-purple","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"170","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Autumn Pullie-L-Purple","id":1076,"category_ids":["24"],"sku":"WH03-L-Purple","max_regular_price":57,"status":1},{"image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","small_image":"/w/h/wh03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"autumn-pullie-l-red","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"170","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Autumn Pullie-L-Red","id":1077,"category_ids":["24"],"sku":"WH03-L-Red","max_regular_price":57,"status":1},{"image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","small_image":"/w/h/wh03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"autumn-pullie-xl-green","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"171","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Autumn Pullie-XL-Green","id":1078,"category_ids":["24"],"sku":"WH03-XL-Green","max_regular_price":57,"status":1},{"image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","small_image":"/w/h/wh03-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"autumn-pullie-xl-purple","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"171","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Autumn Pullie-XL-Purple","id":1079,"category_ids":["24"],"sku":"WH03-XL-Purple","max_regular_price":57,"status":1},{"image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","small_image":"/w/h/wh03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"autumn-pullie-xl-red","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"171","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Autumn Pullie-XL-Red","id":1080,"category_ids":["24"],"sku":"WH03-XL-Red","max_regular_price":57,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1081,"id":151,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1081,"id":150,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[53,57,58],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-1081.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1097","_score":1,"_source":{"id":1097,"sku":"WH04","name":"Miko Pullover Hoodie","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"miko-pullover-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[147,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[137,133],"pattern":"197","climate":[202,204,208],"slug":"miko-pullover-hoodie-1097","links":{},"stock":{"item_id":1097,"product_id":1097,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","small_image":"/w/h/wh04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"miko-pullover-hoodie-xs-blue","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"167","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Miko Pullover Hoodie-XS-Blue","id":1082,"category_ids":["24"],"sku":"WH04-XS-Blue","max_regular_price":69,"status":1},{"image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","small_image":"/w/h/wh04-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"miko-pullover-hoodie-xs-orange","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"167","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Miko Pullover Hoodie-XS-Orange","id":1083,"category_ids":["24"],"sku":"WH04-XS-Orange","max_regular_price":69,"status":1},{"image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","small_image":"/w/h/wh04-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"miko-pullover-hoodie-xs-purple","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"167","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Miko Pullover Hoodie-XS-Purple","id":1084,"category_ids":["24"],"sku":"WH04-XS-Purple","max_regular_price":69,"status":1},{"image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","small_image":"/w/h/wh04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"miko-pullover-hoodie-s-blue","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"168","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Miko Pullover Hoodie-S-Blue","id":1085,"category_ids":["24"],"sku":"WH04-S-Blue","max_regular_price":69,"status":1},{"image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","small_image":"/w/h/wh04-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"miko-pullover-hoodie-s-orange","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"168","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Miko Pullover Hoodie-S-Orange","id":1086,"category_ids":["24"],"sku":"WH04-S-Orange","max_regular_price":69,"status":1},{"image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","small_image":"/w/h/wh04-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"miko-pullover-hoodie-s-purple","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"168","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Miko Pullover Hoodie-S-Purple","id":1087,"category_ids":["24"],"sku":"WH04-S-Purple","max_regular_price":69,"status":1},{"image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","small_image":"/w/h/wh04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"miko-pullover-hoodie-m-blue","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"169","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Miko Pullover Hoodie-M-Blue","id":1088,"category_ids":["24"],"sku":"WH04-M-Blue","max_regular_price":69,"status":1},{"image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","small_image":"/w/h/wh04-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"miko-pullover-hoodie-m-orange","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"169","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Miko Pullover Hoodie-M-Orange","id":1089,"category_ids":["24"],"sku":"WH04-M-Orange","max_regular_price":69,"status":1},{"image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","small_image":"/w/h/wh04-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"miko-pullover-hoodie-m-purple","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"169","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Miko Pullover Hoodie-M-Purple","id":1090,"category_ids":["24"],"sku":"WH04-M-Purple","max_regular_price":69,"status":1},{"image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","small_image":"/w/h/wh04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"miko-pullover-hoodie-l-blue","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"170","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Miko Pullover Hoodie-L-Blue","id":1091,"category_ids":["24"],"sku":"WH04-L-Blue","max_regular_price":69,"status":1},{"image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","small_image":"/w/h/wh04-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"miko-pullover-hoodie-l-orange","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"170","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Miko Pullover Hoodie-L-Orange","id":1092,"category_ids":["24"],"sku":"WH04-L-Orange","max_regular_price":69,"status":1},{"image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","small_image":"/w/h/wh04-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"miko-pullover-hoodie-l-purple","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"170","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Miko Pullover Hoodie-L-Purple","id":1093,"category_ids":["24"],"sku":"WH04-L-Purple","max_regular_price":69,"status":1},{"image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","small_image":"/w/h/wh04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"miko-pullover-hoodie-xl-blue","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"171","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Miko Pullover Hoodie-XL-Blue","id":1094,"category_ids":["24"],"sku":"WH04-XL-Blue","max_regular_price":69,"status":1},{"image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","small_image":"/w/h/wh04-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"miko-pullover-hoodie-xl-orange","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"171","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Miko Pullover Hoodie-XL-Orange","id":1095,"category_ids":["24"],"sku":"WH04-XL-Orange","max_regular_price":69,"status":1},{"image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","small_image":"/w/h/wh04-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"miko-pullover-hoodie-xl-purple","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"171","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Miko Pullover Hoodie-XL-Purple","id":1096,"category_ids":["24"],"sku":"WH04-XL-Purple","max_regular_price":69,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1097,"id":153,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1097,"id":152,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,56,57],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-1097.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1104","_score":1,"_source":{"id":1104,"sku":"WH05-M-Orange","name":"Selene Yoga Hoodie-M-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"selene-yoga-hoodie-m-orange-1104","links":{},"stock":{"item_id":1104,"product_id":1104,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-m-orange-1104.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1110","_score":1,"_source":{"id":1110,"sku":"WH05-XL-Orange","name":"Selene Yoga Hoodie-XL-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"selene-yoga-hoodie-xl-orange-1110","links":{},"stock":{"item_id":1110,"product_id":1110,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xl-orange-1110.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1114","_score":1,"_source":{"id":1114,"sku":"WH06-XS-Purple","name":"Daphne Full-Zip Hoodie-XS-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

                            \n

                            • Purple full zip hoodie with pink accents.
                            • Heather texture.
                            • 4-way stretch.
                            • Pre-shrunk.
                            • Hood lined in vegan Sherpa for added warmth.
                            • Ribbed hem on hood and front pouch pocket.
                            • 60% Cotton / 40% Polyester.

                            ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"daphne-full-zip-hoodie-xs-purple-1114","links":{},"stock":{"item_id":1114,"product_id":1114,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-xs-purple-1114.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1123","_score":1,"_source":{"id":1123,"sku":"WH07-S-Gray","name":"Phoebe Zipper Sweatshirt-S-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"phoebe-zipper-sweatshirt-s-gray-1123","links":{},"stock":{"item_id":1123,"product_id":1123,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-s-gray-1123.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1116","_score":1,"_source":{"id":1116,"sku":"WH06-M-Purple","name":"Daphne Full-Zip Hoodie-M-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

                            \n

                            • Purple full zip hoodie with pink accents.
                            • Heather texture.
                            • 4-way stretch.
                            • Pre-shrunk.
                            • Hood lined in vegan Sherpa for added warmth.
                            • Ribbed hem on hood and front pouch pocket.
                            • 60% Cotton / 40% Polyester.

                            ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"daphne-full-zip-hoodie-m-purple-1116","links":{},"stock":{"item_id":1116,"product_id":1116,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-m-purple-1116.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1127","_score":1,"_source":{"id":1127,"sku":"WH07-M-Purple","name":"Phoebe Zipper Sweatshirt-M-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"phoebe-zipper-sweatshirt-m-purple-1127","links":{},"stock":{"item_id":1127,"product_id":1127,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-m-purple-1127.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1122","_score":1,"_source":{"id":1122,"sku":"WH07-XS-White","name":"Phoebe Zipper Sweatshirt-XS-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"phoebe-zipper-sweatshirt-xs-white-1122","links":{},"stock":{"item_id":1122,"product_id":1122,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xs-white-1122.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1120","_score":1,"_source":{"id":1120,"sku":"WH07-XS-Gray","name":"Phoebe Zipper Sweatshirt-XS-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"phoebe-zipper-sweatshirt-xs-gray-1120","links":{},"stock":{"item_id":1120,"product_id":1120,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xs-gray-1120.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1118","_score":1,"_source":{"id":1118,"sku":"WH06-XL-Purple","name":"Daphne Full-Zip Hoodie-XL-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

                            \n

                            • Purple full zip hoodie with pink accents.
                            • Heather texture.
                            • 4-way stretch.
                            • Pre-shrunk.
                            • Hood lined in vegan Sherpa for added warmth.
                            • Ribbed hem on hood and front pouch pocket.
                            • 60% Cotton / 40% Polyester.

                            ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"daphne-full-zip-hoodie-xl-purple-1118","links":{},"stock":{"item_id":1118,"product_id":1118,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-xl-purple-1118.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1132","_score":1,"_source":{"id":1132,"sku":"WH07-XL-Gray","name":"Phoebe Zipper Sweatshirt-XL-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"phoebe-zipper-sweatshirt-xl-gray-1132","links":{},"stock":{"item_id":1132,"product_id":1132,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xl-gray-1132.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1117","_score":1,"_source":{"id":1117,"sku":"WH06-L-Purple","name":"Daphne Full-Zip Hoodie-L-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

                            \n

                            • Purple full zip hoodie with pink accents.
                            • Heather texture.
                            • 4-way stretch.
                            • Pre-shrunk.
                            • Hood lined in vegan Sherpa for added warmth.
                            • Ribbed hem on hood and front pouch pocket.
                            • 60% Cotton / 40% Polyester.

                            ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"daphne-full-zip-hoodie-l-purple-1117","links":{},"stock":{"item_id":1117,"product_id":1117,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-l-purple-1117.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1121","_score":1,"_source":{"id":1121,"sku":"WH07-XS-Purple","name":"Phoebe Zipper Sweatshirt-XS-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"phoebe-zipper-sweatshirt-xs-purple-1121","links":{},"stock":{"item_id":1121,"product_id":1121,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xs-purple-1121.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1115","_score":1,"_source":{"id":1115,"sku":"WH06-S-Purple","name":"Daphne Full-Zip Hoodie-S-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

                            \n

                            • Purple full zip hoodie with pink accents.
                            • Heather texture.
                            • 4-way stretch.
                            • Pre-shrunk.
                            • Hood lined in vegan Sherpa for added warmth.
                            • Ribbed hem on hood and front pouch pocket.
                            • 60% Cotton / 40% Polyester.

                            ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daphne-full-zip-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"daphne-full-zip-hoodie-s-purple-1115","links":{},"stock":{"item_id":1115,"product_id":1115,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-s-purple-1115.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1112","_score":1,"_source":{"id":1112,"sku":"WH05-XL-White","name":"Selene Yoga Hoodie-XL-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"selene-yoga-hoodie-xl-white-1112","links":{},"stock":{"item_id":1112,"product_id":1112,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xl-white-1112.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1139","_score":1,"_source":{"id":1139,"sku":"WH08-S-Orange","name":"Cassia Funnel Sweatshirt-S-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"cassia-funnel-sweatshirt-s-orange-1139","links":{},"stock":{"item_id":1139,"product_id":1139,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-s-orange-1139.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1128","_score":1,"_source":{"id":1128,"sku":"WH07-M-White","name":"Phoebe Zipper Sweatshirt-M-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"phoebe-zipper-sweatshirt-m-white-1128","links":{},"stock":{"item_id":1128,"product_id":1128,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-m-white-1128.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1124","_score":1,"_source":{"id":1124,"sku":"WH07-S-Purple","name":"Phoebe Zipper Sweatshirt-S-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"phoebe-zipper-sweatshirt-s-purple-1124","links":{},"stock":{"item_id":1124,"product_id":1124,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-s-purple-1124.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1136","_score":1,"_source":{"id":1136,"sku":"WH08-XS-Orange","name":"Cassia Funnel Sweatshirt-XS-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"cassia-funnel-sweatshirt-xs-orange-1136","links":{},"stock":{"item_id":1136,"product_id":1136,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xs-orange-1136.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1130","_score":1,"_source":{"id":1130,"sku":"WH07-L-Purple","name":"Phoebe Zipper Sweatshirt-L-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"phoebe-zipper-sweatshirt-l-purple-1130","links":{},"stock":{"item_id":1130,"product_id":1130,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-l-purple-1130.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1133","_score":1,"_source":{"id":1133,"sku":"WH07-XL-Purple","name":"Phoebe Zipper Sweatshirt-XL-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-purple_main.jpg","small_image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"phoebe-zipper-sweatshirt-xl-purple-1133","links":{},"stock":{"item_id":1133,"product_id":1133,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh07-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xl-purple-1133.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1145","_score":1,"_source":{"id":1145,"sku":"WH08-L-Orange","name":"Cassia Funnel Sweatshirt-L-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"cassia-funnel-sweatshirt-l-orange-1145","links":{},"stock":{"item_id":1145,"product_id":1145,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-l-orange-1145.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1134","_score":1,"_source":{"id":1134,"sku":"WH07-XL-White","name":"Phoebe Zipper Sweatshirt-XL-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"phoebe-zipper-sweatshirt-xl-white-1134","links":{},"stock":{"item_id":1134,"product_id":1134,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-xl-white-1134.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1144","_score":1,"_source":{"id":1144,"sku":"WH08-M-White","name":"Cassia Funnel Sweatshirt-M-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"cassia-funnel-sweatshirt-m-white-1144","links":{},"stock":{"item_id":1144,"product_id":1144,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-m-white-1144.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1125","_score":1,"_source":{"id":1125,"sku":"WH07-S-White","name":"Phoebe Zipper Sweatshirt-S-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"phoebe-zipper-sweatshirt-s-white-1125","links":{},"stock":{"item_id":1125,"product_id":1125,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-s-white-1125.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1126","_score":1,"_source":{"id":1126,"sku":"WH07-M-Gray","name":"Phoebe Zipper Sweatshirt-M-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"phoebe-zipper-sweatshirt-m-gray-1126","links":{},"stock":{"item_id":1126,"product_id":1126,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-m-gray-1126.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1137","_score":1,"_source":{"id":1137,"sku":"WH08-XS-Purple","name":"Cassia Funnel Sweatshirt-XS-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"cassia-funnel-sweatshirt-xs-purple-1137","links":{},"stock":{"item_id":1137,"product_id":1137,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xs-purple-1137.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1147","_score":1,"_source":{"id":1147,"sku":"WH08-L-White","name":"Cassia Funnel Sweatshirt-L-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"cassia-funnel-sweatshirt-l-white-1147","links":{},"stock":{"item_id":1147,"product_id":1147,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-l-white-1147.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1129","_score":1,"_source":{"id":1129,"sku":"WH07-L-Gray","name":"Phoebe Zipper Sweatshirt-L-Gray","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"phoebe-zipper-sweatshirt-l-gray-1129","links":{},"stock":{"item_id":1129,"product_id":1129,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-l-gray-1129.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1068","_score":1,"_source":{"id":1068,"sku":"WH03-XS-Red","name":"Autumn Pullie-XS-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"autumn-pullie-xs-red-1068","links":{},"stock":{"item_id":1068,"product_id":1068,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xs-red-1068.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1060","_score":1,"_source":{"id":1060,"sku":"WH02-L-Green","name":"Hera Pullover Hoodie-L-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hera-pullover-hoodie-l-green-1060","links":{},"stock":{"item_id":1060,"product_id":1060,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-l-green-1060.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1061","_score":1,"_source":{"id":1061,"sku":"WH02-L-Orange","name":"Hera Pullover Hoodie-L-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hera-pullover-hoodie-l-orange-1061","links":{},"stock":{"item_id":1061,"product_id":1061,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-l-orange-1061.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1072","_score":1,"_source":{"id":1072,"sku":"WH03-M-Green","name":"Autumn Pullie-M-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"autumn-pullie-m-green-1072","links":{},"stock":{"item_id":1072,"product_id":1072,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-m-green-1072.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1063","_score":1,"_source":{"id":1063,"sku":"WH02-XL-Green","name":"Hera Pullover Hoodie-XL-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hera-pullover-hoodie-xl-green-1063","links":{},"stock":{"item_id":1063,"product_id":1063,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xl-green-1063.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1051","_score":1,"_source":{"id":1051,"sku":"WH02-XS-Green","name":"Hera Pullover Hoodie-XS-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:07","updated_at":"2017-11-06 12:17:07","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hera-pullover-hoodie-xs-green-1051","links":{},"stock":{"item_id":1051,"product_id":1051,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xs-green-1051.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1071","_score":1,"_source":{"id":1071,"sku":"WH03-S-Red","name":"Autumn Pullie-S-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"autumn-pullie-s-red-1071","links":{},"stock":{"item_id":1071,"product_id":1071,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-s-red-1071.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1058","_score":1,"_source":{"id":1058,"sku":"WH02-M-Orange","name":"Hera Pullover Hoodie-M-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hera-pullover-hoodie-m-orange-1058","links":{},"stock":{"item_id":1058,"product_id":1058,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-m-orange-1058.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1084","_score":1,"_source":{"id":1084,"sku":"WH04-XS-Purple","name":"Miko Pullover Hoodie-XS-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"miko-pullover-hoodie-xs-purple-1084","links":{},"stock":{"item_id":1084,"product_id":1084,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xs-purple-1084.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1069","_score":1,"_source":{"id":1069,"sku":"WH03-S-Green","name":"Autumn Pullie-S-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"autumn-pullie-s-green-1069","links":{},"stock":{"item_id":1069,"product_id":1069,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-s-green-1069.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1079","_score":1,"_source":{"id":1079,"sku":"WH03-XL-Purple","name":"Autumn Pullie-XL-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"autumn-pullie-xl-purple-1079","links":{},"stock":{"item_id":1079,"product_id":1079,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xl-purple-1079.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1093","_score":1,"_source":{"id":1093,"sku":"WH04-L-Purple","name":"Miko Pullover Hoodie-L-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"miko-pullover-hoodie-l-purple-1093","links":{},"stock":{"item_id":1093,"product_id":1093,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-l-purple-1093.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1082","_score":1,"_source":{"id":1082,"sku":"WH04-XS-Blue","name":"Miko Pullover Hoodie-XS-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"miko-pullover-hoodie-xs-blue-1082","links":{},"stock":{"item_id":1082,"product_id":1082,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xs-blue-1082.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1062","_score":1,"_source":{"id":1062,"sku":"WH02-XL-Blue","name":"Hera Pullover Hoodie-XL-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hera-pullover-hoodie-xl-blue-1062","links":{},"stock":{"item_id":1062,"product_id":1062,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xl-blue-1062.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1083","_score":1,"_source":{"id":1083,"sku":"WH04-XS-Orange","name":"Miko Pullover Hoodie-XS-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"miko-pullover-hoodie-xs-orange-1083","links":{},"stock":{"item_id":1083,"product_id":1083,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xs-orange-1083.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1078","_score":1,"_source":{"id":1078,"sku":"WH03-XL-Green","name":"Autumn Pullie-XL-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"autumn-pullie-xl-green-1078","links":{},"stock":{"item_id":1078,"product_id":1078,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xl-green-1078.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1087","_score":1,"_source":{"id":1087,"sku":"WH04-S-Purple","name":"Miko Pullover Hoodie-S-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"miko-pullover-hoodie-s-purple-1087","links":{},"stock":{"item_id":1087,"product_id":1087,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-s-purple-1087.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1096","_score":1,"_source":{"id":1096,"sku":"WH04-XL-Purple","name":"Miko Pullover Hoodie-XL-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"miko-pullover-hoodie-xl-purple-1096","links":{},"stock":{"item_id":1096,"product_id":1096,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xl-purple-1096.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1053","_score":1,"_source":{"id":1053,"sku":"WH02-S-Blue","name":"Hera Pullover Hoodie-S-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hera-pullover-hoodie-s-blue-1053","links":{},"stock":{"item_id":1053,"product_id":1053,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-s-blue-1053.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1055","_score":1,"_source":{"id":1055,"sku":"WH02-S-Orange","name":"Hera Pullover Hoodie-S-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hera-pullover-hoodie-s-orange-1055","links":{},"stock":{"item_id":1055,"product_id":1055,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-s-orange-1055.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1057","_score":1,"_source":{"id":1057,"sku":"WH02-M-Green","name":"Hera Pullover Hoodie-M-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hera-pullover-hoodie-m-green-1057","links":{},"stock":{"item_id":1057,"product_id":1057,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-m-green-1057.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1075","_score":1,"_source":{"id":1075,"sku":"WH03-L-Green","name":"Autumn Pullie-L-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"autumn-pullie-l-green-1075","links":{},"stock":{"item_id":1075,"product_id":1075,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-l-green-1075.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1059","_score":1,"_source":{"id":1059,"sku":"WH02-L-Blue","name":"Hera Pullover Hoodie-L-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hera-pullover-hoodie-l-blue-1059","links":{},"stock":{"item_id":1059,"product_id":1059,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-l-blue-1059.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1056","_score":1,"_source":{"id":1056,"sku":"WH02-M-Blue","name":"Hera Pullover Hoodie-M-Blue","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-blue_main.jpg","small_image":"/w/h/wh02-blue_main.jpg","thumbnail":"/w/h/wh02-blue_main.jpg","color":"50","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hera-pullover-hoodie-m-blue-1056","links":{},"stock":{"item_id":1056,"product_id":1056,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh02-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh02-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh02-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-m-blue-1056.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1064","_score":1,"_source":{"id":1064,"sku":"WH02-XL-Orange","name":"Hera Pullover Hoodie-XL-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hera-pullover-hoodie-xl-orange-1064","links":{},"stock":{"item_id":1064,"product_id":1064,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xl-orange-1064.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1080","_score":1,"_source":{"id":1080,"sku":"WH03-XL-Red","name":"Autumn Pullie-XL-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"autumn-pullie-xl-red-1080","links":{},"stock":{"item_id":1080,"product_id":1080,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xl-red-1080.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1076","_score":1,"_source":{"id":1076,"sku":"WH03-L-Purple","name":"Autumn Pullie-L-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"autumn-pullie-l-purple-1076","links":{},"stock":{"item_id":1076,"product_id":1076,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-l-purple-1076.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1090","_score":1,"_source":{"id":1090,"sku":"WH04-M-Purple","name":"Miko Pullover Hoodie-M-Purple","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-purple_main.jpg","small_image":"/w/h/wh04-purple_main.jpg","thumbnail":"/w/h/wh04-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"miko-pullover-hoodie-m-purple-1090","links":{},"stock":{"item_id":1090,"product_id":1090,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh04-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-m-purple-1090.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1073","_score":1,"_source":{"id":1073,"sku":"WH03-M-Purple","name":"Autumn Pullie-M-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"autumn-pullie-m-purple-1073","links":{},"stock":{"item_id":1073,"product_id":1073,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-m-purple-1073.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1074","_score":1,"_source":{"id":1074,"sku":"WH03-M-Red","name":"Autumn Pullie-M-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"autumn-pullie-m-red-1074","links":{},"stock":{"item_id":1074,"product_id":1074,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-m-red-1074.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1094","_score":1,"_source":{"id":1094,"sku":"WH04-XL-Blue","name":"Miko Pullover Hoodie-XL-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"miko-pullover-hoodie-xl-blue-1094","links":{},"stock":{"item_id":1094,"product_id":1094,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xl-blue-1094.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1095","_score":1,"_source":{"id":1095,"sku":"WH04-XL-Orange","name":"Miko Pullover Hoodie-XL-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"miko-pullover-hoodie-xl-orange-1095","links":{},"stock":{"item_id":1095,"product_id":1095,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-xl-orange-1095.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1098","_score":1,"_source":{"id":1098,"sku":"WH05-XS-Orange","name":"Selene Yoga Hoodie-XS-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"selene-yoga-hoodie-xs-orange-1098","links":{},"stock":{"item_id":1098,"product_id":1098,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xs-orange-1098.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1066","_score":1,"_source":{"id":1066,"sku":"WH03-XS-Green","name":"Autumn Pullie-XS-Green","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-green_main.jpg","small_image":"/w/h/wh03-green_main.jpg","thumbnail":"/w/h/wh03-green_main.jpg","color":"53","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"autumn-pullie-xs-green-1066","links":{},"stock":{"item_id":1066,"product_id":1066,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-xs-green-1066.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1099","_score":1,"_source":{"id":1099,"sku":"WH05-XS-Purple","name":"Selene Yoga Hoodie-XS-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"selene-yoga-hoodie-xs-purple-1099","links":{},"stock":{"item_id":1099,"product_id":1099,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xs-purple-1099.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1086","_score":1,"_source":{"id":1086,"sku":"WH04-S-Orange","name":"Miko Pullover Hoodie-S-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-orange_main.jpg","small_image":"/w/h/wh04-orange_main.jpg","thumbnail":"/w/h/wh04-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"miko-pullover-hoodie-s-orange-1086","links":{},"stock":{"item_id":1086,"product_id":1086,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh04-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-s-orange-1086.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1070","_score":1,"_source":{"id":1070,"sku":"WH03-S-Purple","name":"Autumn Pullie-S-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-purple_main.jpg","small_image":"/w/h/wh03-purple_main.jpg","thumbnail":"/w/h/wh03-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"autumn-pullie-s-purple-1070","links":{},"stock":{"item_id":1070,"product_id":1070,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh03-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-s-purple-1070.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1085","_score":1,"_source":{"id":1085,"sku":"WH04-S-Blue","name":"Miko Pullover Hoodie-S-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You'll find it's fashionable enough for the streets, but comfy enough to relax in at home.

                            \n

                            • Teal two-tone hoodie.
                            • Low scoop neckline.
                            • Adjustable hood drawstrings.
                            • Longer rounded hemline for extra back coverage.
                            • Long-Sleeve style.

                            ","image":"/w/h/wh04-blue_main.jpg","small_image":"/w/h/wh04-blue_main.jpg","thumbnail":"/w/h/wh04-blue_main.jpg","color":"50","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"miko-pullover-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"miko-pullover-hoodie-s-blue-1085","links":{},"stock":{"item_id":1085,"product_id":1085,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh04-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh04-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/miko-pullover-hoodie-s-blue-1085.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1077","_score":1,"_source":{"id":1077,"sku":"WH03-L-Red","name":"Autumn Pullie-L-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:09","updated_at":"2017-11-06 12:17:09","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

                            \n

                            • Cayenne Short-Sleeve roll neck sweatshirt.
                            • Relaxed fit.
                            • Short-Sleeves.
                            • Machine wash/dry.

                            ","image":"/w/h/wh03-red_main.jpg","small_image":"/w/h/wh03-red_main.jpg","thumbnail":"/w/h/wh03-red_main.jpg","color":"58","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"autumn-pullie-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"autumn-pullie-l-red-1077","links":{},"stock":{"item_id":1077,"product_id":1077,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh03-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh03-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh03-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/autumn-pullie-l-red-1077.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1131","_score":1,"_source":{"id":1131,"sku":"WH07-L-White","name":"Phoebe Zipper Sweatshirt-L-White","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-white_main.jpg","small_image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"phoebe-zipper-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"phoebe-zipper-sweatshirt-l-white-1131","links":{},"stock":{"item_id":1131,"product_id":1131,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh07-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-l-white-1131.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1107","_score":1,"_source":{"id":1107,"sku":"WH05-L-Orange","name":"Selene Yoga Hoodie-L-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"selene-yoga-hoodie-l-orange-1107","links":{},"stock":{"item_id":1107,"product_id":1107,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-l-orange-1107.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1109","_score":1,"_source":{"id":1109,"sku":"WH05-L-White","name":"Selene Yoga Hoodie-L-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"selene-yoga-hoodie-l-white-1109","links":{},"stock":{"item_id":1109,"product_id":1109,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-l-white-1109.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1108","_score":1,"_source":{"id":1108,"sku":"WH05-L-Purple","name":"Selene Yoga Hoodie-L-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"selene-yoga-hoodie-l-purple-1108","links":{},"stock":{"item_id":1108,"product_id":1108,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-l-purple-1108.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1103","_score":1,"_source":{"id":1103,"sku":"WH05-S-White","name":"Selene Yoga Hoodie-S-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"selene-yoga-hoodie-s-white-1103","links":{},"stock":{"item_id":1103,"product_id":1103,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-s-white-1103.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1111","_score":1,"_source":{"id":1111,"sku":"WH05-XL-Purple","name":"Selene Yoga Hoodie-XL-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"selene-yoga-hoodie-xl-purple-1111","links":{},"stock":{"item_id":1111,"product_id":1111,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-xl-purple-1111.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1105","_score":1,"_source":{"id":1105,"sku":"WH05-M-Purple","name":"Selene Yoga Hoodie-M-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"selene-yoga-hoodie-m-purple-1105","links":{},"stock":{"item_id":1105,"product_id":1105,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-m-purple-1105.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1102","_score":1,"_source":{"id":1102,"sku":"WH05-S-Purple","name":"Selene Yoga Hoodie-S-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-purple_main.jpg","small_image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"selene-yoga-hoodie-s-purple-1102","links":{},"stock":{"item_id":1102,"product_id":1102,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh05-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-s-purple-1102.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1101","_score":1,"_source":{"id":1101,"sku":"WH05-S-Orange","name":"Selene Yoga Hoodie-S-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-orange_main.jpg","small_image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"selene-yoga-hoodie-s-orange-1101","links":{},"stock":{"item_id":1101,"product_id":1101,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh05-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-s-orange-1101.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1106","_score":1,"_source":{"id":1106,"sku":"WH05-M-White","name":"Selene Yoga Hoodie-M-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"selene-yoga-hoodie-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"selene-yoga-hoodie-m-white-1106","links":{},"stock":{"item_id":1106,"product_id":1106,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-m-white-1106.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1054","_score":1,"_source":{"id":1054,"sku":"WH02-S-Green","name":"Hera Pullover Hoodie-S-Green","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-green_main.jpg","small_image":"/w/h/wh02-green_main.jpg","thumbnail":"/w/h/wh02-green_main.jpg","color":"53","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hera-pullover-hoodie-s-green-1054","links":{},"stock":{"item_id":1054,"product_id":1054,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh02-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-s-green-1054.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1052","_score":1,"_source":{"id":1052,"sku":"WH02-XS-Orange","name":"Hera Pullover Hoodie-XS-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:08","updated_at":"2017-11-06 12:17:08","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

                            \n

                            • Teal with purple stiching.
                            • Hoodie pullover.
                            • Snug fit.

                            ","image":"/w/h/wh02-orange_main.jpg","small_image":"/w/h/wh02-orange_main.jpg","thumbnail":"/w/h/wh02-orange_main.jpg","color":"56","category_ids":[24,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hera-pullover-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hera-pullover-hoodie-xs-orange-1052","links":{},"stock":{"item_id":1052,"product_id":1052,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh02-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/hera-pullover-hoodie-xs-orange-1052.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1200","_score":1,"_source":{"id":1200,"sku":"WH12-XS-Gray","name":"Circe Hooded Ice Fleece-XS-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"circe-hooded-ice-fleece-xs-gray-1200","links":{},"stock":{"item_id":1200,"product_id":1200,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xs-gray-1200.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1151","_score":1,"_source":{"id":1151,"sku":"WH08","name":"Cassia Funnel Sweatshirt","attribute_set_id":9,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cassia-funnel-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,33,151],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[138,129],"pattern":"197","climate":[202,204,205,206,208],"slug":"cassia-funnel-sweatshirt-1151","links":{},"stock":{"item_id":1151,"product_id":1151,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","small_image":"/w/h/wh08-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cassia-funnel-sweatshirt-xs-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":48,"name":"Cassia Funnel Sweatshirt-XS-Orange","id":1136,"category_ids":["24","30","35","2"],"sku":"WH08-XS-Orange","status":1},{"image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","small_image":"/w/h/wh08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cassia-funnel-sweatshirt-xs-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":48,"name":"Cassia Funnel Sweatshirt-XS-Purple","id":1137,"category_ids":["24","30","35","2"],"sku":"WH08-XS-Purple","status":1},{"image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","small_image":"/w/h/wh08-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cassia-funnel-sweatshirt-xs-white","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":48,"name":"Cassia Funnel Sweatshirt-XS-White","id":1138,"category_ids":["24","30","35","2"],"sku":"WH08-XS-White","status":1},{"image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","small_image":"/w/h/wh08-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cassia-funnel-sweatshirt-s-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":48,"name":"Cassia Funnel Sweatshirt-S-Orange","id":1139,"category_ids":["24","30","35","2"],"sku":"WH08-S-Orange","status":1},{"image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","small_image":"/w/h/wh08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cassia-funnel-sweatshirt-s-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":48,"name":"Cassia Funnel Sweatshirt-S-Purple","id":1140,"category_ids":["24","30","35","2"],"sku":"WH08-S-Purple","status":1},{"image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","small_image":"/w/h/wh08-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cassia-funnel-sweatshirt-s-white","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":48,"name":"Cassia Funnel Sweatshirt-S-White","id":1141,"category_ids":["24","30","35","2"],"sku":"WH08-S-White","status":1},{"image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","small_image":"/w/h/wh08-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cassia-funnel-sweatshirt-m-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":48,"name":"Cassia Funnel Sweatshirt-M-Orange","id":1142,"category_ids":["24","30","35","2"],"sku":"WH08-M-Orange","status":1},{"image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","small_image":"/w/h/wh08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cassia-funnel-sweatshirt-m-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":48,"name":"Cassia Funnel Sweatshirt-M-Purple","id":1143,"category_ids":["24","30","35","2"],"sku":"WH08-M-Purple","status":1},{"image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","small_image":"/w/h/wh08-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cassia-funnel-sweatshirt-m-white","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":48,"name":"Cassia Funnel Sweatshirt-M-White","id":1144,"category_ids":["24","30","35","2"],"sku":"WH08-M-White","status":1},{"image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","small_image":"/w/h/wh08-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cassia-funnel-sweatshirt-l-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":48,"name":"Cassia Funnel Sweatshirt-L-Orange","id":1145,"category_ids":["24","30","35","2"],"sku":"WH08-L-Orange","status":1},{"image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","small_image":"/w/h/wh08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cassia-funnel-sweatshirt-l-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":48,"name":"Cassia Funnel Sweatshirt-L-Purple","id":1146,"category_ids":["24","30","35","2"],"sku":"WH08-L-Purple","status":1},{"image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","small_image":"/w/h/wh08-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cassia-funnel-sweatshirt-l-white","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":48,"name":"Cassia Funnel Sweatshirt-L-White","id":1147,"category_ids":["24","30","35","2"],"sku":"WH08-L-White","status":1},{"image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","small_image":"/w/h/wh08-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cassia-funnel-sweatshirt-xl-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"171","price":48,"name":"Cassia Funnel Sweatshirt-XL-Orange","id":1148,"category_ids":["24","30","35","2"],"sku":"WH08-XL-Orange","status":1},{"image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","small_image":"/w/h/wh08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cassia-funnel-sweatshirt-xl-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"171","price":48,"name":"Cassia Funnel Sweatshirt-XL-Purple","id":1149,"category_ids":["24","30","35","2"],"sku":"WH08-XL-Purple","status":1},{"image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","small_image":"/w/h/wh08-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cassia-funnel-sweatshirt-xl-white","required_options":"0","msrp_display_actual_price_type":"0","size":"171","price":48,"name":"Cassia Funnel Sweatshirt-XL-White","id":1150,"category_ids":["24","30","35","2"],"sku":"WH08-XL-White","status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"}],"product_id":1151,"id":161,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1151,"id":160,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[56,57,59],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-1151.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1167","_score":1,"_source":{"id":1167,"sku":"WH09","name":"Ariel Roll Sleeve Sweatshirt","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:12","updated_at":"2019-04-11 09:24:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \r\n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","category_ids":[24,36,2],"options_container":"container2","required_options":"1","has_options":"1","url_key":"ariel-roll-sleeve-sweatshirt","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":"33","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[138,137],"pattern":"195","climate":[205,206,208,209],"slug":"ariel-roll-sleeve-sweatshirt-1167","links":{},"stock":{"item_id":1167,"product_id":1167,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":null},{"vid":null,"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":null},{"vid":null,"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":null}],"configurable_children":[{"image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","small_image":"/w/h/wh09-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ariel-roll-sleeve-sweatshirt-xs-green","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"167","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Ariel Roll Sleeve Sweatshirt-XS-Green","id":1152,"category_ids":["24","36","2"],"sku":"WH09-XS-Green","max_regular_price":39,"status":1},{"image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","small_image":"/w/h/wh09-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ariel-roll-sleeve-sweatshirt-xs-purple","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"167","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Ariel Roll Sleeve Sweatshirt-XS-Purple","id":1153,"category_ids":["24","36","2"],"sku":"WH09-XS-Purple","max_regular_price":39,"status":1},{"image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","small_image":"/w/h/wh09-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ariel-roll-sleeve-sweatshirt-xs-red","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":39,"name":"Ariel Roll Sleeve Sweatshirt-XS-Red","id":1154,"category_ids":["24","36","2"],"sku":"WH09-XS-Red","status":1},{"image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","small_image":"/w/h/wh09-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ariel-roll-sleeve-sweatshirt-s-green","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Ariel Roll Sleeve Sweatshirt-S-Green","id":1155,"category_ids":["24","36","2"],"sku":"WH09-S-Green","max_regular_price":39,"status":1},{"image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","small_image":"/w/h/wh09-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ariel-roll-sleeve-sweatshirt-s-purple","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Ariel Roll Sleeve Sweatshirt-S-Purple","id":1156,"category_ids":["24","36","2"],"sku":"WH09-S-Purple","max_regular_price":39,"status":1},{"image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","small_image":"/w/h/wh09-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ariel-roll-sleeve-sweatshirt-s-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Ariel Roll Sleeve Sweatshirt-S-Red","id":1157,"category_ids":["24","36","2"],"sku":"WH09-S-Red","max_regular_price":39,"status":1},{"image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","small_image":"/w/h/wh09-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ariel-roll-sleeve-sweatshirt-m-green","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Ariel Roll Sleeve Sweatshirt-M-Green","id":1158,"category_ids":["24","36","2"],"sku":"WH09-M-Green","max_regular_price":39,"status":1},{"image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","small_image":"/w/h/wh09-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ariel-roll-sleeve-sweatshirt-m-purple","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Ariel Roll Sleeve Sweatshirt-M-Purple","id":1159,"category_ids":["24","36","2"],"sku":"WH09-M-Purple","max_regular_price":39,"status":1},{"image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","small_image":"/w/h/wh09-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ariel-roll-sleeve-sweatshirt-m-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Ariel Roll Sleeve Sweatshirt-M-Red","id":1160,"category_ids":["24","36","2"],"sku":"WH09-M-Red","max_regular_price":39,"status":1},{"image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","small_image":"/w/h/wh09-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ariel-roll-sleeve-sweatshirt-l-green","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Ariel Roll Sleeve Sweatshirt-L-Green","id":1161,"category_ids":["24","36","2"],"sku":"WH09-L-Green","max_regular_price":39,"status":1},{"image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","small_image":"/w/h/wh09-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ariel-roll-sleeve-sweatshirt-l-purple","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Ariel Roll Sleeve Sweatshirt-L-Purple","id":1162,"category_ids":["24","36","2"],"sku":"WH09-L-Purple","max_regular_price":39,"status":1},{"image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","small_image":"/w/h/wh09-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ariel-roll-sleeve-sweatshirt-l-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Ariel Roll Sleeve Sweatshirt-L-Red","id":1163,"category_ids":["24","36","2"],"sku":"WH09-L-Red","max_regular_price":39,"status":1},{"image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","small_image":"/w/h/wh09-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ariel-roll-sleeve-sweatshirt-xl-green","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Ariel Roll Sleeve Sweatshirt-XL-Green","id":1164,"category_ids":["24","36","2"],"sku":"WH09-XL-Green","max_regular_price":39,"status":1},{"image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","small_image":"/w/h/wh09-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ariel-roll-sleeve-sweatshirt-xl-purple","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Ariel Roll Sleeve Sweatshirt-XL-Purple","id":1165,"category_ids":["24","36","2"],"sku":"WH09-XL-Purple","max_regular_price":39,"status":1},{"image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","small_image":"/w/h/wh09-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ariel-roll-sleeve-sweatshirt-xl-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Ariel Roll Sleeve Sweatshirt-XL-Red","id":1166,"category_ids":["24","36","2"],"sku":"WH09-XL-Red","max_regular_price":39,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1167,"id":304,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1167,"id":305,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[53,57,58],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-1167.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1183","_score":1,"_source":{"id":1183,"sku":"WH10","name":"Helena Hooded Fleece","attribute_set_id":9,"price":55,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"helena-hooded-fleece","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":[138,129],"pattern":"197","climate":[204,208],"slug":"helena-hooded-fleece-1183","links":{},"stock":{"item_id":1183,"product_id":1183,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","small_image":"/w/h/wh10-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helena-hooded-fleece-xs-blue","regular_price":55,"required_options":"0","msrp_display_actual_price_type":"0","max_price":55,"minimal_regular_price":55,"size":"167","final_price":55,"special_price":null,"price":55,"minimal_price":55,"name":"Helena Hooded Fleece-XS-Blue","id":1168,"category_ids":["24","8","2"],"sku":"WH10-XS-Blue","max_regular_price":55,"status":1},{"image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","small_image":"/w/h/wh10-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helena-hooded-fleece-xs-gray","regular_price":55,"required_options":"0","msrp_display_actual_price_type":"0","max_price":55,"minimal_regular_price":55,"size":"167","final_price":55,"special_price":null,"price":55,"minimal_price":55,"name":"Helena Hooded Fleece-XS-Gray","id":1169,"category_ids":["24","8","2"],"sku":"WH10-XS-Gray","max_regular_price":55,"status":1},{"image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","small_image":"/w/h/wh10-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helena-hooded-fleece-xs-yellow","regular_price":55,"required_options":"0","msrp_display_actual_price_type":"0","max_price":55,"minimal_regular_price":55,"size":"167","final_price":55,"special_price":null,"price":55,"minimal_price":55,"name":"Helena Hooded Fleece-XS-Yellow","id":1170,"category_ids":["24","8","2"],"sku":"WH10-XS-Yellow","max_regular_price":55,"status":1},{"image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","small_image":"/w/h/wh10-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helena-hooded-fleece-s-blue","regular_price":55,"required_options":"0","msrp_display_actual_price_type":"0","max_price":55,"minimal_regular_price":55,"size":"168","final_price":55,"special_price":null,"price":55,"minimal_price":55,"name":"Helena Hooded Fleece-S-Blue","id":1171,"category_ids":["24","8","2"],"sku":"WH10-S-Blue","max_regular_price":55,"status":1},{"image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","small_image":"/w/h/wh10-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helena-hooded-fleece-s-gray","regular_price":55,"required_options":"0","msrp_display_actual_price_type":"0","max_price":55,"minimal_regular_price":55,"size":"168","final_price":55,"special_price":null,"price":55,"minimal_price":55,"name":"Helena Hooded Fleece-S-Gray","id":1172,"category_ids":["24","8","2"],"sku":"WH10-S-Gray","max_regular_price":55,"status":1},{"image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","small_image":"/w/h/wh10-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helena-hooded-fleece-s-yellow","regular_price":55,"required_options":"0","msrp_display_actual_price_type":"0","max_price":55,"minimal_regular_price":55,"size":"168","final_price":55,"special_price":null,"price":55,"minimal_price":55,"name":"Helena Hooded Fleece-S-Yellow","id":1173,"category_ids":["24","8","2"],"sku":"WH10-S-Yellow","max_regular_price":55,"status":1},{"image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","small_image":"/w/h/wh10-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helena-hooded-fleece-m-blue","regular_price":55,"required_options":"0","msrp_display_actual_price_type":"0","max_price":55,"minimal_regular_price":55,"size":"169","final_price":55,"special_price":null,"price":55,"minimal_price":55,"name":"Helena Hooded Fleece-M-Blue","id":1174,"category_ids":["24","8","2"],"sku":"WH10-M-Blue","max_regular_price":55,"status":1},{"image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","small_image":"/w/h/wh10-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helena-hooded-fleece-m-gray","regular_price":55,"required_options":"0","msrp_display_actual_price_type":"0","max_price":55,"minimal_regular_price":55,"size":"169","final_price":55,"special_price":null,"price":55,"minimal_price":55,"name":"Helena Hooded Fleece-M-Gray","id":1175,"category_ids":["24","8","2"],"sku":"WH10-M-Gray","max_regular_price":55,"status":1},{"image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","small_image":"/w/h/wh10-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helena-hooded-fleece-m-yellow","regular_price":55,"required_options":"0","msrp_display_actual_price_type":"0","max_price":55,"minimal_regular_price":55,"size":"169","final_price":55,"special_price":null,"price":55,"minimal_price":55,"name":"Helena Hooded Fleece-M-Yellow","id":1176,"category_ids":["24","8","2"],"sku":"WH10-M-Yellow","max_regular_price":55,"status":1},{"image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","small_image":"/w/h/wh10-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helena-hooded-fleece-l-blue","regular_price":55,"required_options":"0","msrp_display_actual_price_type":"0","max_price":55,"minimal_regular_price":55,"size":"170","final_price":55,"special_price":null,"price":55,"minimal_price":55,"name":"Helena Hooded Fleece-L-Blue","id":1177,"category_ids":["24","8","2"],"sku":"WH10-L-Blue","max_regular_price":55,"status":1},{"image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","small_image":"/w/h/wh10-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helena-hooded-fleece-l-gray","regular_price":55,"required_options":"0","msrp_display_actual_price_type":"0","max_price":55,"minimal_regular_price":55,"size":"170","final_price":55,"special_price":null,"price":55,"minimal_price":55,"name":"Helena Hooded Fleece-L-Gray","id":1178,"category_ids":["24","8","2"],"sku":"WH10-L-Gray","max_regular_price":55,"status":1},{"image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","small_image":"/w/h/wh10-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helena-hooded-fleece-l-yellow","regular_price":55,"required_options":"0","msrp_display_actual_price_type":"0","max_price":55,"minimal_regular_price":55,"size":"170","final_price":55,"special_price":null,"price":55,"minimal_price":55,"name":"Helena Hooded Fleece-L-Yellow","id":1179,"category_ids":["24","8","2"],"sku":"WH10-L-Yellow","max_regular_price":55,"status":1},{"image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","small_image":"/w/h/wh10-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helena-hooded-fleece-xl-blue","regular_price":55,"required_options":"0","msrp_display_actual_price_type":"0","max_price":55,"minimal_regular_price":55,"size":"171","final_price":55,"special_price":null,"price":55,"minimal_price":55,"name":"Helena Hooded Fleece-XL-Blue","id":1180,"category_ids":["24","8","2"],"sku":"WH10-XL-Blue","max_regular_price":55,"status":1},{"image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","small_image":"/w/h/wh10-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helena-hooded-fleece-xl-gray","regular_price":55,"required_options":"0","msrp_display_actual_price_type":"0","max_price":55,"minimal_regular_price":55,"size":"171","final_price":55,"special_price":null,"price":55,"minimal_price":55,"name":"Helena Hooded Fleece-XL-Gray","id":1181,"category_ids":["24","8","2"],"sku":"WH10-XL-Gray","max_regular_price":55,"status":1},{"image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","small_image":"/w/h/wh10-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helena-hooded-fleece-xl-yellow","regular_price":55,"required_options":"0","msrp_display_actual_price_type":"0","max_price":55,"minimal_regular_price":55,"size":"171","final_price":55,"special_price":null,"price":55,"minimal_price":55,"name":"Helena Hooded Fleece-XL-Yellow","id":1182,"category_ids":["24","8","2"],"sku":"WH10-XL-Yellow","max_regular_price":55,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":60,"label":"Yellow"}],"product_id":1183,"id":165,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1183,"id":164,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,52,60],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-1183.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1199","_score":1,"_source":{"id":1199,"sku":"WH11","name":"Eos V-Neck Hoodie","attribute_set_id":9,"price":54,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"eos-v-neck-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[137,133],"pattern":"197","climate":[204,205,206],"slug":"eos-v-neck-hoodie-1199","links":{},"stock":{"item_id":1199,"product_id":1199,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","small_image":"/w/h/wh11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"eos-v-neck-hoodie-xs-blue","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"167","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Eos V-Neck Hoodie-XS-Blue","id":1184,"category_ids":["24","34","2"],"sku":"WH11-XS-Blue","max_regular_price":54,"status":1},{"image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","small_image":"/w/h/wh11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"eos-v-neck-hoodie-xs-green","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"167","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Eos V-Neck Hoodie-XS-Green","id":1185,"category_ids":["24","34","2"],"sku":"WH11-XS-Green","max_regular_price":54,"status":1},{"image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","small_image":"/w/h/wh11-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"eos-v-neck-hoodie-xs-orange","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"167","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Eos V-Neck Hoodie-XS-Orange","id":1186,"category_ids":["24","34","2"],"sku":"WH11-XS-Orange","max_regular_price":54,"status":1},{"image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","small_image":"/w/h/wh11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"eos-v-neck-hoodie-s-blue","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"168","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Eos V-Neck Hoodie-S-Blue","id":1187,"category_ids":["24","34","2"],"sku":"WH11-S-Blue","max_regular_price":54,"status":1},{"image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","small_image":"/w/h/wh11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"eos-v-neck-hoodie-s-green","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"168","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Eos V-Neck Hoodie-S-Green","id":1188,"category_ids":["24","34","2"],"sku":"WH11-S-Green","max_regular_price":54,"status":1},{"image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","small_image":"/w/h/wh11-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"eos-v-neck-hoodie-s-orange","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"168","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Eos V-Neck Hoodie-S-Orange","id":1189,"category_ids":["24","34","2"],"sku":"WH11-S-Orange","max_regular_price":54,"status":1},{"image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","small_image":"/w/h/wh11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"eos-v-neck-hoodie-m-blue","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"169","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Eos V-Neck Hoodie-M-Blue","id":1190,"category_ids":["24","34","2"],"sku":"WH11-M-Blue","max_regular_price":54,"status":1},{"image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","small_image":"/w/h/wh11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"eos-v-neck-hoodie-m-green","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"169","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Eos V-Neck Hoodie-M-Green","id":1191,"category_ids":["24","34","2"],"sku":"WH11-M-Green","max_regular_price":54,"status":1},{"image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","small_image":"/w/h/wh11-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"eos-v-neck-hoodie-m-orange","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"169","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Eos V-Neck Hoodie-M-Orange","id":1192,"category_ids":["24","34","2"],"sku":"WH11-M-Orange","max_regular_price":54,"status":1},{"image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","small_image":"/w/h/wh11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"eos-v-neck-hoodie-l-blue","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"170","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Eos V-Neck Hoodie-L-Blue","id":1193,"category_ids":["24","34","2"],"sku":"WH11-L-Blue","max_regular_price":54,"status":1},{"image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","small_image":"/w/h/wh11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"eos-v-neck-hoodie-l-green","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"170","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Eos V-Neck Hoodie-L-Green","id":1194,"category_ids":["24","34","2"],"sku":"WH11-L-Green","max_regular_price":54,"status":1},{"image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","small_image":"/w/h/wh11-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"eos-v-neck-hoodie-l-orange","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"170","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Eos V-Neck Hoodie-L-Orange","id":1195,"category_ids":["24","34","2"],"sku":"WH11-L-Orange","max_regular_price":54,"status":1},{"image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","small_image":"/w/h/wh11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"eos-v-neck-hoodie-xl-blue","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"171","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Eos V-Neck Hoodie-XL-Blue","id":1196,"category_ids":["24","34","2"],"sku":"WH11-XL-Blue","max_regular_price":54,"status":1},{"image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","small_image":"/w/h/wh11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"eos-v-neck-hoodie-xl-green","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"171","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Eos V-Neck Hoodie-XL-Green","id":1197,"category_ids":["24","34","2"],"sku":"WH11-XL-Green","max_regular_price":54,"status":1},{"image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","small_image":"/w/h/wh11-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"eos-v-neck-hoodie-xl-orange","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"171","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Eos V-Neck Hoodie-XL-Orange","id":1198,"category_ids":["24","34","2"],"sku":"WH11-XL-Orange","max_regular_price":54,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":1199,"id":167,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1199,"id":166,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,53,56],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-1199.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1143","_score":1,"_source":{"id":1143,"sku":"WH08-M-Purple","name":"Cassia Funnel Sweatshirt-M-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"cassia-funnel-sweatshirt-m-purple-1143","links":{},"stock":{"item_id":1143,"product_id":1143,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-m-purple-1143.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1140","_score":1,"_source":{"id":1140,"sku":"WH08-S-Purple","name":"Cassia Funnel Sweatshirt-S-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"cassia-funnel-sweatshirt-s-purple-1140","links":{},"stock":{"item_id":1140,"product_id":1140,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-s-purple-1140.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1141","_score":1,"_source":{"id":1141,"sku":"WH08-S-White","name":"Cassia Funnel Sweatshirt-S-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"cassia-funnel-sweatshirt-s-white-1141","links":{},"stock":{"item_id":1141,"product_id":1141,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-s-white-1141.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1149","_score":1,"_source":{"id":1149,"sku":"WH08-XL-Purple","name":"Cassia Funnel Sweatshirt-XL-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"cassia-funnel-sweatshirt-xl-purple-1149","links":{},"stock":{"item_id":1149,"product_id":1149,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xl-purple-1149.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1142","_score":1,"_source":{"id":1142,"sku":"WH08-M-Orange","name":"Cassia Funnel Sweatshirt-M-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"cassia-funnel-sweatshirt-m-orange-1142","links":{},"stock":{"item_id":1142,"product_id":1142,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-m-orange-1142.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1146","_score":1,"_source":{"id":1146,"sku":"WH08-L-Purple","name":"Cassia Funnel Sweatshirt-L-Purple","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-purple_main.jpg","small_image":"/w/h/wh08-purple_main.jpg","thumbnail":"/w/h/wh08-purple_main.jpg","color":"57","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"cassia-funnel-sweatshirt-l-purple-1146","links":{},"stock":{"item_id":1146,"product_id":1146,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh08-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-l-purple-1146.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1150","_score":1,"_source":{"id":1150,"sku":"WH08-XL-White","name":"Cassia Funnel Sweatshirt-XL-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"cassia-funnel-sweatshirt-xl-white-1150","links":{},"stock":{"item_id":1150,"product_id":1150,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xl-white-1150.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1148","_score":1,"_source":{"id":1148,"sku":"WH08-XL-Orange","name":"Cassia Funnel Sweatshirt-XL-Orange","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:11","updated_at":"2017-11-06 12:17:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-orange_main.jpg","small_image":"/w/h/wh08-orange_main.jpg","thumbnail":"/w/h/wh08-orange_main.jpg","color":"56","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"cassia-funnel-sweatshirt-xl-orange-1148","links":{},"stock":{"item_id":1148,"product_id":1148,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh08-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xl-orange-1148.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1138","_score":1,"_source":{"id":1138,"sku":"WH08-XS-White","name":"Cassia Funnel Sweatshirt-XS-White","attribute_set_id":9,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                            The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

                            \n

                            • White full zip hoodie with gray detail.
                            • 65% Cotton/28% Nylon/7% Spandex.
                            • Front slash pockets.
                            • Tagless label at back neck.

                            ","image":"/w/h/wh08-white_main.jpg","small_image":"/w/h/wh08-white_main.jpg","thumbnail":"/w/h/wh08-white_main.jpg","color":"59","category_ids":[24,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cassia-funnel-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"cassia-funnel-sweatshirt-xs-white-1138","links":{},"stock":{"item_id":1138,"product_id":1138,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh08-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh08-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh08-white_alternate.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh08-white_back.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/cassia-funnel-sweatshirt-xs-white-1138.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1119","_score":1,"_source":{"id":1119,"sku":"WH06","name":"Daphne Full-Zip Hoodie","attribute_set_id":9,"price":59,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

                            \n

                            • Purple full zip hoodie with pink accents.
                            • Heather texture.
                            • 4-way stretch.
                            • Pre-shrunk.
                            • Hood lined in vegan Sherpa for added warmth.
                            • Ribbed hem on hood and front pouch pocket.
                            • 60% Cotton / 40% Polyester.

                            ","image":"/w/h/wh06-purple_main.jpg","small_image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"daphne-full-zip-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[138,129],"pattern":"197","climate":[202,203,204,208,210,211],"slug":"daphne-full-zip-hoodie-1119","links":{},"stock":{"item_id":1119,"product_id":1119,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh06-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh06-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh06-purple_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","small_image":"/w/h/wh06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"daphne-full-zip-hoodie-xs-purple","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"167","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Daphne Full-Zip Hoodie-XS-Purple","id":1114,"category_ids":["24"],"sku":"WH06-XS-Purple","max_regular_price":59,"status":1},{"image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","small_image":"/w/h/wh06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"daphne-full-zip-hoodie-s-purple","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"168","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Daphne Full-Zip Hoodie-S-Purple","id":1115,"category_ids":["24"],"sku":"WH06-S-Purple","max_regular_price":59,"status":1},{"image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","small_image":"/w/h/wh06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"daphne-full-zip-hoodie-m-purple","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"169","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Daphne Full-Zip Hoodie-M-Purple","id":1116,"category_ids":["24"],"sku":"WH06-M-Purple","max_regular_price":59,"status":1},{"image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","small_image":"/w/h/wh06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"daphne-full-zip-hoodie-l-purple","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"170","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Daphne Full-Zip Hoodie-L-Purple","id":1117,"category_ids":["24"],"sku":"WH06-L-Purple","max_regular_price":59,"status":1},{"image":"/w/h/wh06-purple_main.jpg","thumbnail":"/w/h/wh06-purple_main.jpg","color":"57","small_image":"/w/h/wh06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"daphne-full-zip-hoodie-xl-purple","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"171","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Daphne Full-Zip Hoodie-XL-Purple","id":1118,"category_ids":["24"],"sku":"WH06-XL-Purple","max_regular_price":59,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":57,"label":"Purple"}],"product_id":1119,"id":157,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1119,"id":156,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[57],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/daphne-full-zip-hoodie-1119.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1135","_score":1,"_source":{"id":1135,"sku":"WH07","name":"Phoebe Zipper Sweatshirt","attribute_set_id":9,"price":59,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You'll reach for this one in any season to enjoy its sturdy exterior and plush interior.

                            \n

                            • Gray full zip hoodie with yellow detail.
                            • Hand-warmer pockets.
                            • Zip MP3 pocket with outlet for earphones wire.
                            • Polyester/cotton.
                            • Washable.

                            ","image":"/w/h/wh07-gray_main.jpg","small_image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","category_ids":[24,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"phoebe-zipper-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":[138,133,129],"pattern":"197","climate":[204,205,206],"slug":"phoebe-zipper-sweatshirt-1135","links":{},"stock":{"item_id":1135,"product_id":1135,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh07-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh07-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh07-gray_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","small_image":"/w/h/wh07-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"phoebe-zipper-sweatshirt-xs-gray","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"167","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Phoebe Zipper Sweatshirt-XS-Gray","id":1120,"category_ids":["24","8","34","2"],"sku":"WH07-XS-Gray","max_regular_price":59,"status":1},{"image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","small_image":"/w/h/wh07-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"phoebe-zipper-sweatshirt-xs-purple","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"167","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Phoebe Zipper Sweatshirt-XS-Purple","id":1121,"category_ids":["24","8","34","2"],"sku":"WH07-XS-Purple","max_regular_price":59,"status":1},{"image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","small_image":"/w/h/wh07-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"phoebe-zipper-sweatshirt-xs-white","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"167","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Phoebe Zipper Sweatshirt-XS-White","id":1122,"category_ids":["24","8","34","2"],"sku":"WH07-XS-White","max_regular_price":59,"status":1},{"image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","small_image":"/w/h/wh07-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"phoebe-zipper-sweatshirt-s-gray","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"168","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Phoebe Zipper Sweatshirt-S-Gray","id":1123,"category_ids":["24","8","34","2"],"sku":"WH07-S-Gray","max_regular_price":59,"status":1},{"image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","small_image":"/w/h/wh07-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"phoebe-zipper-sweatshirt-s-purple","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"168","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Phoebe Zipper Sweatshirt-S-Purple","id":1124,"category_ids":["24","8","34","2"],"sku":"WH07-S-Purple","max_regular_price":59,"status":1},{"image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","small_image":"/w/h/wh07-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"phoebe-zipper-sweatshirt-s-white","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"168","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Phoebe Zipper Sweatshirt-S-White","id":1125,"category_ids":["24","8","34","2"],"sku":"WH07-S-White","max_regular_price":59,"status":1},{"image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","small_image":"/w/h/wh07-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"phoebe-zipper-sweatshirt-m-gray","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"169","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Phoebe Zipper Sweatshirt-M-Gray","id":1126,"category_ids":["24","8","34","2"],"sku":"WH07-M-Gray","max_regular_price":59,"status":1},{"image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","small_image":"/w/h/wh07-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"phoebe-zipper-sweatshirt-m-purple","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"169","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Phoebe Zipper Sweatshirt-M-Purple","id":1127,"category_ids":["24","8","34","2"],"sku":"WH07-M-Purple","max_regular_price":59,"status":1},{"image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","small_image":"/w/h/wh07-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"phoebe-zipper-sweatshirt-m-white","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"169","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Phoebe Zipper Sweatshirt-M-White","id":1128,"category_ids":["24","8","34","2"],"sku":"WH07-M-White","max_regular_price":59,"status":1},{"image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","small_image":"/w/h/wh07-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"phoebe-zipper-sweatshirt-l-gray","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"170","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Phoebe Zipper Sweatshirt-L-Gray","id":1129,"category_ids":["24","8","34","2"],"sku":"WH07-L-Gray","max_regular_price":59,"status":1},{"image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","small_image":"/w/h/wh07-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"phoebe-zipper-sweatshirt-l-purple","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"170","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Phoebe Zipper Sweatshirt-L-Purple","id":1130,"category_ids":["24","8","34","2"],"sku":"WH07-L-Purple","max_regular_price":59,"status":1},{"image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","small_image":"/w/h/wh07-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"phoebe-zipper-sweatshirt-l-white","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"170","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Phoebe Zipper Sweatshirt-L-White","id":1131,"category_ids":["24","8","34","2"],"sku":"WH07-L-White","max_regular_price":59,"status":1},{"image":"/w/h/wh07-gray_main.jpg","thumbnail":"/w/h/wh07-gray_main.jpg","color":"52","small_image":"/w/h/wh07-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"phoebe-zipper-sweatshirt-xl-gray","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"171","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Phoebe Zipper Sweatshirt-XL-Gray","id":1132,"category_ids":["24","8","34","2"],"sku":"WH07-XL-Gray","max_regular_price":59,"status":1},{"image":"/w/h/wh07-purple_main.jpg","thumbnail":"/w/h/wh07-purple_main.jpg","color":"57","small_image":"/w/h/wh07-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"phoebe-zipper-sweatshirt-xl-purple","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"171","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Phoebe Zipper Sweatshirt-XL-Purple","id":1133,"category_ids":["24","8","34","2"],"sku":"WH07-XL-Purple","max_regular_price":59,"status":1},{"image":"/w/h/wh07-white_main.jpg","thumbnail":"/w/h/wh07-white_main.jpg","color":"59","small_image":"/w/h/wh07-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"phoebe-zipper-sweatshirt-xl-white","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"171","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Phoebe Zipper Sweatshirt-XL-White","id":1134,"category_ids":["24","8","34","2"],"sku":"WH07-XL-White","max_regular_price":59,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"}],"product_id":1135,"id":159,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1135,"id":158,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[52,57,59],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/phoebe-zipper-sweatshirt-1135.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1113","_score":1,"_source":{"id":1113,"sku":"WH05","name":"Selene Yoga Hoodie","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:10","updated_at":"2017-11-06 12:17:10","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

                            \n

                            • Ivory heather full zip 3/4 sleeve hoodie.
                            • Zip pocket at arm for convenient storage.
                            • 24.0\" body length.
                            • 89% Polyester / 11% Spandex.

                            ","image":"/w/h/wh05-white_main.jpg","small_image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","category_ids":["24"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"selene-yoga-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[138,129],"pattern":"197","climate":[205,206,208],"slug":"selene-yoga-hoodie-1113","links":{},"stock":{"item_id":1113,"product_id":1113,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh05-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh05-white_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","small_image":"/w/h/wh05-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"selene-yoga-hoodie-xs-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":42,"name":"Selene Yoga Hoodie-XS-Orange","id":1098,"category_ids":["24"],"sku":"WH05-XS-Orange","status":1},{"image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","small_image":"/w/h/wh05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"selene-yoga-hoodie-xs-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":42,"name":"Selene Yoga Hoodie-XS-Purple","id":1099,"category_ids":["24"],"sku":"WH05-XS-Purple","status":1},{"image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","small_image":"/w/h/wh05-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"selene-yoga-hoodie-xs-white","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":42,"name":"Selene Yoga Hoodie-XS-White","id":1100,"category_ids":["24"],"sku":"WH05-XS-White","status":1},{"image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","small_image":"/w/h/wh05-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"selene-yoga-hoodie-s-orange","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"168","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Selene Yoga Hoodie-S-Orange","id":1101,"category_ids":["24"],"sku":"WH05-S-Orange","max_regular_price":42,"status":1},{"image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","small_image":"/w/h/wh05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"selene-yoga-hoodie-s-purple","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"168","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Selene Yoga Hoodie-S-Purple","id":1102,"category_ids":["24"],"sku":"WH05-S-Purple","max_regular_price":42,"status":1},{"image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","small_image":"/w/h/wh05-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"selene-yoga-hoodie-s-white","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"168","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Selene Yoga Hoodie-S-White","id":1103,"category_ids":["24"],"sku":"WH05-S-White","max_regular_price":42,"status":1},{"image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","small_image":"/w/h/wh05-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"selene-yoga-hoodie-m-orange","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"169","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Selene Yoga Hoodie-M-Orange","id":1104,"category_ids":["24"],"sku":"WH05-M-Orange","max_regular_price":42,"status":1},{"image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","small_image":"/w/h/wh05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"selene-yoga-hoodie-m-purple","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"169","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Selene Yoga Hoodie-M-Purple","id":1105,"category_ids":["24"],"sku":"WH05-M-Purple","max_regular_price":42,"status":1},{"image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","small_image":"/w/h/wh05-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"selene-yoga-hoodie-m-white","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"169","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Selene Yoga Hoodie-M-White","id":1106,"category_ids":["24"],"sku":"WH05-M-White","max_regular_price":42,"status":1},{"image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","small_image":"/w/h/wh05-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"selene-yoga-hoodie-l-orange","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"170","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Selene Yoga Hoodie-L-Orange","id":1107,"category_ids":["24"],"sku":"WH05-L-Orange","max_regular_price":42,"status":1},{"image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","small_image":"/w/h/wh05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"selene-yoga-hoodie-l-purple","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"170","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Selene Yoga Hoodie-L-Purple","id":1108,"category_ids":["24"],"sku":"WH05-L-Purple","max_regular_price":42,"status":1},{"image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","small_image":"/w/h/wh05-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"selene-yoga-hoodie-l-white","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"170","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Selene Yoga Hoodie-L-White","id":1109,"category_ids":["24"],"sku":"WH05-L-White","max_regular_price":42,"status":1},{"image":"/w/h/wh05-orange_main.jpg","thumbnail":"/w/h/wh05-orange_main.jpg","color":"56","small_image":"/w/h/wh05-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"selene-yoga-hoodie-xl-orange","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"171","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Selene Yoga Hoodie-XL-Orange","id":1110,"category_ids":["24"],"sku":"WH05-XL-Orange","max_regular_price":42,"status":1},{"image":"/w/h/wh05-purple_main.jpg","thumbnail":"/w/h/wh05-purple_main.jpg","color":"57","small_image":"/w/h/wh05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"selene-yoga-hoodie-xl-purple","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"171","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Selene Yoga Hoodie-XL-Purple","id":1111,"category_ids":["24"],"sku":"WH05-XL-Purple","max_regular_price":42,"status":1},{"image":"/w/h/wh05-white_main.jpg","thumbnail":"/w/h/wh05-white_main.jpg","color":"59","small_image":"/w/h/wh05-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"selene-yoga-hoodie-xl-white","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"171","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Selene Yoga Hoodie-XL-White","id":1112,"category_ids":["24"],"sku":"WH05-XL-White","max_regular_price":42,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"}],"product_id":1113,"id":155,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1113,"id":154,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[56,57,59],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/selene-yoga-hoodie-1113.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1166","_score":1,"_source":{"id":1166,"sku":"WH09-XL-Red","name":"Ariel Roll Sleeve Sweatshirt-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ariel-roll-sleeve-sweatshirt-xl-red-1166","links":{},"stock":{"item_id":1166,"product_id":1166,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xl-red-1166.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1152","_score":1,"_source":{"id":1152,"sku":"WH09-XS-Green","name":"Ariel Roll Sleeve Sweatshirt-XS-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ariel-roll-sleeve-sweatshirt-xs-green-1152","links":{},"stock":{"item_id":1152,"product_id":1152,"stock_id":1,"qty":4,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xs-green-1152.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1158","_score":1,"_source":{"id":1158,"sku":"WH09-M-Green","name":"Ariel Roll Sleeve Sweatshirt-M-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ariel-roll-sleeve-sweatshirt-m-green-1158","links":{},"stock":{"item_id":1158,"product_id":1158,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-m-green-1158.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1178","_score":1,"_source":{"id":1178,"sku":"WH10-L-Gray","name":"Helena Hooded Fleece-L-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helena-hooded-fleece-l-gray-1178","links":{},"stock":{"item_id":1178,"product_id":1178,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-l-gray-1178.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1181","_score":1,"_source":{"id":1181,"sku":"WH10-XL-Gray","name":"Helena Hooded Fleece-XL-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helena-hooded-fleece-xl-gray-1181","links":{},"stock":{"item_id":1181,"product_id":1181,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xl-gray-1181.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1163","_score":1,"_source":{"id":1163,"sku":"WH09-L-Red","name":"Ariel Roll Sleeve Sweatshirt-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ariel-roll-sleeve-sweatshirt-l-red-1163","links":{},"stock":{"item_id":1163,"product_id":1163,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-l-red-1163.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1169","_score":1,"_source":{"id":1169,"sku":"WH10-XS-Gray","name":"Helena Hooded Fleece-XS-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helena-hooded-fleece-xs-gray-1169","links":{},"stock":{"item_id":1169,"product_id":1169,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xs-gray-1169.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1165","_score":1,"_source":{"id":1165,"sku":"WH09-XL-Purple","name":"Ariel Roll Sleeve Sweatshirt-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ariel-roll-sleeve-sweatshirt-xl-purple-1165","links":{},"stock":{"item_id":1165,"product_id":1165,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xl-purple-1165.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1190","_score":1,"_source":{"id":1190,"sku":"WH11-M-Blue","name":"Eos V-Neck Hoodie-M-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"eos-v-neck-hoodie-m-blue-1190","links":{},"stock":{"item_id":1190,"product_id":1190,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-m-blue-1190.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1155","_score":1,"_source":{"id":1155,"sku":"WH09-S-Green","name":"Ariel Roll Sleeve Sweatshirt-S-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ariel-roll-sleeve-sweatshirt-s-green-1155","links":{},"stock":{"item_id":1155,"product_id":1155,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-s-green-1155.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1161","_score":1,"_source":{"id":1161,"sku":"WH09-L-Green","name":"Ariel Roll Sleeve Sweatshirt-L-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ariel-roll-sleeve-sweatshirt-l-green-1161","links":{},"stock":{"item_id":1161,"product_id":1161,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-l-green-1161.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1156","_score":1,"_source":{"id":1156,"sku":"WH09-S-Purple","name":"Ariel Roll Sleeve Sweatshirt-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ariel-roll-sleeve-sweatshirt-s-purple-1156","links":{},"stock":{"item_id":1156,"product_id":1156,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-s-purple-1156.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1157","_score":1,"_source":{"id":1157,"sku":"WH09-S-Red","name":"Ariel Roll Sleeve Sweatshirt-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ariel-roll-sleeve-sweatshirt-s-red-1157","links":{},"stock":{"item_id":1157,"product_id":1157,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-s-red-1157.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1159","_score":1,"_source":{"id":1159,"sku":"WH09-M-Purple","name":"Ariel Roll Sleeve Sweatshirt-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ariel-roll-sleeve-sweatshirt-m-purple-1159","links":{},"stock":{"item_id":1159,"product_id":1159,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-m-purple-1159.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1160","_score":1,"_source":{"id":1160,"sku":"WH09-M-Red","name":"Ariel Roll Sleeve Sweatshirt-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ariel-roll-sleeve-sweatshirt-m-red-1160","links":{},"stock":{"item_id":1160,"product_id":1160,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-m-red-1160.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1196","_score":1,"_source":{"id":1196,"sku":"WH11-XL-Blue","name":"Eos V-Neck Hoodie-XL-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"eos-v-neck-hoodie-xl-blue-1196","links":{},"stock":{"item_id":1196,"product_id":1196,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xl-blue-1196.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1185","_score":1,"_source":{"id":1185,"sku":"WH11-XS-Green","name":"Eos V-Neck Hoodie-XS-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"eos-v-neck-hoodie-xs-green-1185","links":{},"stock":{"item_id":1185,"product_id":1185,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xs-green-1185.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1192","_score":1,"_source":{"id":1192,"sku":"WH11-M-Orange","name":"Eos V-Neck Hoodie-M-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"eos-v-neck-hoodie-m-orange-1192","links":{},"stock":{"item_id":1192,"product_id":1192,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-m-orange-1192.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1188","_score":1,"_source":{"id":1188,"sku":"WH11-S-Green","name":"Eos V-Neck Hoodie-S-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"eos-v-neck-hoodie-s-green-1188","links":{},"stock":{"item_id":1188,"product_id":1188,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-s-green-1188.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1179","_score":1,"_source":{"id":1179,"sku":"WH10-L-Yellow","name":"Helena Hooded Fleece-L-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helena-hooded-fleece-l-yellow-1179","links":{},"stock":{"item_id":1179,"product_id":1179,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-l-yellow-1179.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1184","_score":1,"_source":{"id":1184,"sku":"WH11-XS-Blue","name":"Eos V-Neck Hoodie-XS-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"eos-v-neck-hoodie-xs-blue-1184","links":{},"stock":{"item_id":1184,"product_id":1184,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xs-blue-1184.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1171","_score":1,"_source":{"id":1171,"sku":"WH10-S-Blue","name":"Helena Hooded Fleece-S-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helena-hooded-fleece-s-blue-1171","links":{},"stock":{"item_id":1171,"product_id":1171,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-s-blue-1171.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1193","_score":1,"_source":{"id":1193,"sku":"WH11-L-Blue","name":"Eos V-Neck Hoodie-L-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"eos-v-neck-hoodie-l-blue-1193","links":{},"stock":{"item_id":1193,"product_id":1193,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-l-blue-1193.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1173","_score":1,"_source":{"id":1173,"sku":"WH10-S-Yellow","name":"Helena Hooded Fleece-S-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helena-hooded-fleece-s-yellow-1173","links":{},"stock":{"item_id":1173,"product_id":1173,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-s-yellow-1173.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1172","_score":1,"_source":{"id":1172,"sku":"WH10-S-Gray","name":"Helena Hooded Fleece-S-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helena-hooded-fleece-s-gray-1172","links":{},"stock":{"item_id":1172,"product_id":1172,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-s-gray-1172.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1194","_score":1,"_source":{"id":1194,"sku":"WH11-L-Green","name":"Eos V-Neck Hoodie-L-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"eos-v-neck-hoodie-l-green-1194","links":{},"stock":{"item_id":1194,"product_id":1194,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-l-green-1194.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1177","_score":1,"_source":{"id":1177,"sku":"WH10-L-Blue","name":"Helena Hooded Fleece-L-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helena-hooded-fleece-l-blue-1177","links":{},"stock":{"item_id":1177,"product_id":1177,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-l-blue-1177.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1191","_score":1,"_source":{"id":1191,"sku":"WH11-M-Green","name":"Eos V-Neck Hoodie-M-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"eos-v-neck-hoodie-m-green-1191","links":{},"stock":{"item_id":1191,"product_id":1191,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-m-green-1191.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1189","_score":1,"_source":{"id":1189,"sku":"WH11-S-Orange","name":"Eos V-Neck Hoodie-S-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"eos-v-neck-hoodie-s-orange-1189","links":{},"stock":{"item_id":1189,"product_id":1189,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-s-orange-1189.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1186","_score":1,"_source":{"id":1186,"sku":"WH11-XS-Orange","name":"Eos V-Neck Hoodie-XS-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"eos-v-neck-hoodie-xs-orange-1186","links":{},"stock":{"item_id":1186,"product_id":1186,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xs-orange-1186.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1187","_score":1,"_source":{"id":1187,"sku":"WH11-S-Blue","name":"Eos V-Neck Hoodie-S-Blue","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-blue_main.jpg","small_image":"/w/h/wh11-blue_main.jpg","thumbnail":"/w/h/wh11-blue_main.jpg","color":"50","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"eos-v-neck-hoodie-s-blue-1187","links":{},"stock":{"item_id":1187,"product_id":1187,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh11-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-s-blue-1187.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1197","_score":1,"_source":{"id":1197,"sku":"WH11-XL-Green","name":"Eos V-Neck Hoodie-XL-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-green_main.jpg","small_image":"/w/h/wh11-green_main.jpg","thumbnail":"/w/h/wh11-green_main.jpg","color":"53","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"eos-v-neck-hoodie-xl-green-1197","links":{},"stock":{"item_id":1197,"product_id":1197,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh11-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xl-green-1197.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1195","_score":1,"_source":{"id":1195,"sku":"WH11-L-Orange","name":"Eos V-Neck Hoodie-L-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"eos-v-neck-hoodie-l-orange-1195","links":{},"stock":{"item_id":1195,"product_id":1195,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-l-orange-1195.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1230","_score":1,"_source":{"id":1230,"sku":"WJ02-S-Blue","name":"Josie Yoga Jacket-S-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"josie-yoga-jacket-s-blue-1230","links":{},"stock":{"item_id":1230,"product_id":1230,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-s-blue-1230.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1209","_score":1,"_source":{"id":1209,"sku":"WH12-L-Gray","name":"Circe Hooded Ice Fleece-L-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"circe-hooded-ice-fleece-l-gray-1209","links":{},"stock":{"item_id":1209,"product_id":1209,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-l-gray-1209.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1238","_score":1,"_source":{"id":1238,"sku":"WJ02-XL-Black","name":"Josie Yoga Jacket-XL-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"josie-yoga-jacket-xl-black-1238","links":{},"stock":{"item_id":1238,"product_id":1238,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xl-black-1238.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1245","_score":1,"_source":{"id":1245,"sku":"WJ03-S-Blue","name":"Augusta Pullover Jacket-S-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"augusta-pullover-jacket-s-blue-1245","links":{},"stock":{"item_id":1245,"product_id":1245,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-s-blue-1245.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1229","_score":1,"_source":{"id":1229,"sku":"WJ02-S-Black","name":"Josie Yoga Jacket-S-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"josie-yoga-jacket-s-black-1229","links":{},"stock":{"item_id":1229,"product_id":1229,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-s-black-1229.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1228","_score":1,"_source":{"id":1228,"sku":"WJ02-XS-Gray","name":"Josie Yoga Jacket-XS-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"josie-yoga-jacket-xs-gray-1228","links":{},"stock":{"item_id":1228,"product_id":1228,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xs-gray-1228.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1232","_score":1,"_source":{"id":1232,"sku":"WJ02-M-Black","name":"Josie Yoga Jacket-M-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"josie-yoga-jacket-m-black-1232","links":{},"stock":{"item_id":1232,"product_id":1232,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-m-black-1232.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1227","_score":1,"_source":{"id":1227,"sku":"WJ02-XS-Blue","name":"Josie Yoga Jacket-XS-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"josie-yoga-jacket-xs-blue-1227","links":{},"stock":{"item_id":1227,"product_id":1227,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xs-blue-1227.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1208","_score":1,"_source":{"id":1208,"sku":"WH12-M-Purple","name":"Circe Hooded Ice Fleece-M-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"circe-hooded-ice-fleece-m-purple-1208","links":{},"stock":{"item_id":1208,"product_id":1208,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-m-purple-1208.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1222","_score":1,"_source":{"id":1222,"sku":"WJ01-L-Blue","name":"Stellar Solar Jacket-L-Blue","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.
                            • Deep pink jacket with front panel rouching

                            ","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","color":"50","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stellar-solar-jacket-l-blue-1222","links":{},"stock":{"item_id":1222,"product_id":1222,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj01-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-l-blue-1222.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1233","_score":1,"_source":{"id":1233,"sku":"WJ02-M-Blue","name":"Josie Yoga Jacket-M-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"josie-yoga-jacket-m-blue-1233","links":{},"stock":{"item_id":1233,"product_id":1233,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-m-blue-1233.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1235","_score":1,"_source":{"id":1235,"sku":"WJ02-L-Black","name":"Josie Yoga Jacket-L-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"josie-yoga-jacket-l-black-1235","links":{},"stock":{"item_id":1235,"product_id":1235,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-l-black-1235.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1231","_score":1,"_source":{"id":1231,"sku":"WJ02-S-Gray","name":"Josie Yoga Jacket-S-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"josie-yoga-jacket-s-gray-1231","links":{},"stock":{"item_id":1231,"product_id":1231,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-s-gray-1231.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1206","_score":1,"_source":{"id":1206,"sku":"WH12-M-Gray","name":"Circe Hooded Ice Fleece-M-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"circe-hooded-ice-fleece-m-gray-1206","links":{},"stock":{"item_id":1206,"product_id":1206,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-m-gray-1206.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1226","_score":1,"_source":{"id":1226,"sku":"WJ02-XS-Black","name":"Josie Yoga Jacket-XS-Black","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-black_main.jpg","small_image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"josie-yoga-jacket-xs-black-1226","links":{},"stock":{"item_id":1226,"product_id":1226,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj02-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xs-black-1226.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1243","_score":1,"_source":{"id":1243,"sku":"WJ03-XS-Orange","name":"Augusta Pullover Jacket-XS-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"augusta-pullover-jacket-xs-orange-1243","links":{},"stock":{"item_id":1243,"product_id":1243,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xs-orange-1243.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1248","_score":1,"_source":{"id":1248,"sku":"WJ03-M-Blue","name":"Augusta Pullover Jacket-M-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"augusta-pullover-jacket-m-blue-1248","links":{},"stock":{"item_id":1248,"product_id":1248,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-m-blue-1248.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1237","_score":1,"_source":{"id":1237,"sku":"WJ02-L-Gray","name":"Josie Yoga Jacket-L-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"josie-yoga-jacket-l-gray-1237","links":{},"stock":{"item_id":1237,"product_id":1237,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-l-gray-1237.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1239","_score":1,"_source":{"id":1239,"sku":"WJ02-XL-Blue","name":"Josie Yoga Jacket-XL-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"josie-yoga-jacket-xl-blue-1239","links":{},"stock":{"item_id":1239,"product_id":1239,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xl-blue-1239.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1236","_score":1,"_source":{"id":1236,"sku":"WJ02-L-Blue","name":"Josie Yoga Jacket-L-Blue","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-blue_main.jpg","small_image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"josie-yoga-jacket-l-blue-1236","links":{},"stock":{"item_id":1236,"product_id":1236,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj02-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-l-blue-1236.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1240","_score":1,"_source":{"id":1240,"sku":"WJ02-XL-Gray","name":"Josie Yoga Jacket-XL-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"josie-yoga-jacket-xl-gray-1240","links":{},"stock":{"item_id":1240,"product_id":1240,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-xl-gray-1240.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1242","_score":1,"_source":{"id":1242,"sku":"WJ03-XS-Blue","name":"Augusta Pullover Jacket-XS-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"augusta-pullover-jacket-xs-blue-1242","links":{},"stock":{"item_id":1242,"product_id":1242,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xs-blue-1242.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1220","_score":1,"_source":{"id":1220,"sku":"WJ01-M-Red","name":"Stellar Solar Jacket-M-Red","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.
                            • Deep pink jacket with front panel rouching

                            ","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","color":"58","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stellar-solar-jacket-m-red-1220","links":{},"stock":{"item_id":1220,"product_id":1220,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj01-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj01-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj01-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-m-red-1220.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1246","_score":1,"_source":{"id":1246,"sku":"WJ03-S-Orange","name":"Augusta Pullover Jacket-S-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"augusta-pullover-jacket-s-orange-1246","links":{},"stock":{"item_id":1246,"product_id":1246,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-s-orange-1246.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1244","_score":1,"_source":{"id":1244,"sku":"WJ03-XS-Red","name":"Augusta Pullover Jacket-XS-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"augusta-pullover-jacket-xs-red-1244","links":{},"stock":{"item_id":1244,"product_id":1244,"stock_id":1,"qty":49,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xs-red-1244.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1221","_score":1,"_source":{"id":1221,"sku":"WJ01-M-Yellow","name":"Stellar Solar Jacket-M-Yellow","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.
                            • Deep pink jacket with front panel rouching

                            ","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","color":"60","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stellar-solar-jacket-m-yellow-1221","links":{},"stock":{"item_id":1221,"product_id":1221,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj01-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-m-yellow-1221.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1234","_score":1,"_source":{"id":1234,"sku":"WJ02-M-Gray","name":"Josie Yoga Jacket-M-Gray","attribute_set_id":9,"price":56.25,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"josie-yoga-jacket-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"josie-yoga-jacket-m-gray-1234","links":{},"stock":{"item_id":1234,"product_id":1234,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-m-gray-1234.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1247","_score":1,"_source":{"id":1247,"sku":"WJ03-S-Red","name":"Augusta Pullover Jacket-S-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"augusta-pullover-jacket-s-red-1247","links":{},"stock":{"item_id":1247,"product_id":1247,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-s-red-1247.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1214","_score":1,"_source":{"id":1214,"sku":"WH12-XL-Purple","name":"Circe Hooded Ice Fleece-XL-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"circe-hooded-ice-fleece-xl-purple-1214","links":{},"stock":{"item_id":1214,"product_id":1214,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xl-purple-1214.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1219","_score":1,"_source":{"id":1219,"sku":"WJ01-M-Blue","name":"Stellar Solar Jacket-M-Blue","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.
                            • Deep pink jacket with front panel rouching

                            ","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","color":"50","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stellar-solar-jacket-m-blue-1219","links":{},"stock":{"item_id":1219,"product_id":1219,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj01-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-m-blue-1219.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1216","_score":1,"_source":{"id":1216,"sku":"WJ01-S-Blue","name":"Stellar Solar Jacket-S-Blue","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.
                            • Deep pink jacket with front panel rouching

                            ","image":"/w/j/wj01-blue_main.jpg","small_image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","color":"50","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stellar-solar-jacket-s-blue-1216","links":{},"stock":{"item_id":1216,"product_id":1216,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj01-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-s-blue-1216.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1224","_score":1,"_source":{"id":1224,"sku":"WJ01-L-Yellow","name":"Stellar Solar Jacket-L-Yellow","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.
                            • Deep pink jacket with front panel rouching

                            ","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","color":"60","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stellar-solar-jacket-l-yellow-1224","links":{},"stock":{"item_id":1224,"product_id":1224,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj01-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-l-yellow-1224.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1223","_score":1,"_source":{"id":1223,"sku":"WJ01-L-Red","name":"Stellar Solar Jacket-L-Red","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.
                            • Deep pink jacket with front panel rouching

                            ","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","color":"58","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stellar-solar-jacket-l-red-1223","links":{},"stock":{"item_id":1223,"product_id":1223,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj01-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj01-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj01-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-l-red-1223.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1207","_score":1,"_source":{"id":1207,"sku":"WH12-M-Green","name":"Circe Hooded Ice Fleece-M-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"circe-hooded-ice-fleece-m-green-1207","links":{},"stock":{"item_id":1207,"product_id":1207,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-m-green-1207.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1202","_score":1,"_source":{"id":1202,"sku":"WH12-XS-Purple","name":"Circe Hooded Ice Fleece-XS-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"circe-hooded-ice-fleece-xs-purple-1202","links":{},"stock":{"item_id":1202,"product_id":1202,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xs-purple-1202.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1201","_score":1,"_source":{"id":1201,"sku":"WH12-XS-Green","name":"Circe Hooded Ice Fleece-XS-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"circe-hooded-ice-fleece-xs-green-1201","links":{},"stock":{"item_id":1201,"product_id":1201,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xs-green-1201.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1204","_score":1,"_source":{"id":1204,"sku":"WH12-S-Green","name":"Circe Hooded Ice Fleece-S-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"circe-hooded-ice-fleece-s-green-1204","links":{},"stock":{"item_id":1204,"product_id":1204,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-s-green-1204.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1211","_score":1,"_source":{"id":1211,"sku":"WH12-L-Purple","name":"Circe Hooded Ice Fleece-L-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"circe-hooded-ice-fleece-l-purple-1211","links":{},"stock":{"item_id":1211,"product_id":1211,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-l-purple-1211.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1218","_score":1,"_source":{"id":1218,"sku":"WJ01-S-Yellow","name":"Stellar Solar Jacket-S-Yellow","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.
                            • Deep pink jacket with front panel rouching

                            ","image":"/w/j/wj01-yellow_main.jpg","small_image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","color":"60","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stellar-solar-jacket-s-yellow-1218","links":{},"stock":{"item_id":1218,"product_id":1218,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj01-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-s-yellow-1218.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1203","_score":1,"_source":{"id":1203,"sku":"WH12-S-Gray","name":"Circe Hooded Ice Fleece-S-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"circe-hooded-ice-fleece-s-gray-1203","links":{},"stock":{"item_id":1203,"product_id":1203,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-s-gray-1203.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1217","_score":1,"_source":{"id":1217,"sku":"WJ01-S-Red","name":"Stellar Solar Jacket-S-Red","attribute_set_id":9,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.
                            • Deep pink jacket with front panel rouching

                            ","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","color":"58","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stellar-solar-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stellar-solar-jacket-s-red-1217","links":{},"stock":{"item_id":1217,"product_id":1217,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj01-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj01-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj01-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-s-red-1217.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1212","_score":1,"_source":{"id":1212,"sku":"WH12-XL-Gray","name":"Circe Hooded Ice Fleece-XL-Gray","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"circe-hooded-ice-fleece-xl-gray-1212","links":{},"stock":{"item_id":1212,"product_id":1212,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xl-gray-1212.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1213","_score":1,"_source":{"id":1213,"sku":"WH12-XL-Green","name":"Circe Hooded Ice Fleece-XL-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"circe-hooded-ice-fleece-xl-green-1213","links":{},"stock":{"item_id":1213,"product_id":1213,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-xl-green-1213.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1182","_score":1,"_source":{"id":1182,"sku":"WH10-XL-Yellow","name":"Helena Hooded Fleece-XL-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helena-hooded-fleece-xl-yellow-1182","links":{},"stock":{"item_id":1182,"product_id":1182,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xl-yellow-1182.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1164","_score":1,"_source":{"id":1164,"sku":"WH09-XL-Green","name":"Ariel Roll Sleeve Sweatshirt-XL-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-green_main.jpg","small_image":"/w/h/wh09-green_main.jpg","thumbnail":"/w/h/wh09-green_main.jpg","color":"53","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ariel-roll-sleeve-sweatshirt-xl-green-1164","links":{},"stock":{"item_id":1164,"product_id":1164,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh09-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xl-green-1164.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1174","_score":1,"_source":{"id":1174,"sku":"WH10-M-Blue","name":"Helena Hooded Fleece-M-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helena-hooded-fleece-m-blue-1174","links":{},"stock":{"item_id":1174,"product_id":1174,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-m-blue-1174.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1170","_score":1,"_source":{"id":1170,"sku":"WH10-XS-Yellow","name":"Helena Hooded Fleece-XS-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helena-hooded-fleece-xs-yellow-1170","links":{},"stock":{"item_id":1170,"product_id":1170,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xs-yellow-1170.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1168","_score":1,"_source":{"id":1168,"sku":"WH10-XS-Blue","name":"Helena Hooded Fleece-XS-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helena-hooded-fleece-xs-blue-1168","links":{},"stock":{"item_id":1168,"product_id":1168,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xs-blue-1168.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1162","_score":1,"_source":{"id":1162,"sku":"WH09-L-Purple","name":"Ariel Roll Sleeve Sweatshirt-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ariel-roll-sleeve-sweatshirt-l-purple-1162","links":{},"stock":{"item_id":1162,"product_id":1162,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-l-purple-1162.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1154","_score":1,"_source":{"id":1154,"sku":"WH09-XS-Red","name":"Ariel Roll Sleeve Sweatshirt-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2019-04-11 10:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \r\n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-red_main.jpg","small_image":"/w/h/wh09-red_main.jpg","thumbnail":"/w/h/wh09-red_main.jpg","color":"58","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xs-red","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"167","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","slug":"ariel-roll-sleeve-sweatshirt-xs-red-1154","links":{},"stock":{"item_id":1154,"product_id":1154,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-04-11 10:16:50","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/h/wh09-red_main.jpg","pos":1,"typ":"image","lab":null}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xs-red-1154.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1153","_score":1,"_source":{"id":1153,"sku":"WH09-XS-Purple","name":"Ariel Roll Sleeve Sweatshirt-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

                            \n

                            • Purple two-tone lightweight hoodie.
                            • 100% cotton.
                            • Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
                            • Casual, comfy piece for running errands or weekend activities.

                            ","image":"/w/h/wh09-purple_main.jpg","small_image":"/w/h/wh09-purple_main.jpg","thumbnail":"/w/h/wh09-purple_main.jpg","color":"57","category_ids":[24,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ariel-roll-sleeve-sweatshirt-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ariel-roll-sleeve-sweatshirt-xs-purple-1153","links":{},"stock":{"item_id":1153,"product_id":1153,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh09-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh09-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh09-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/ariel-roll-sleeve-sweatshirt-xs-purple-1153.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1175","_score":1,"_source":{"id":1175,"sku":"WH10-M-Gray","name":"Helena Hooded Fleece-M-Gray","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-gray_main.jpg","small_image":"/w/h/wh10-gray_main.jpg","thumbnail":"/w/h/wh10-gray_main.jpg","color":"52","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helena-hooded-fleece-m-gray-1175","links":{},"stock":{"item_id":1175,"product_id":1175,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh10-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh10-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh10-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-m-gray-1175.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1198","_score":1,"_source":{"id":1198,"sku":"WH11-XL-Orange","name":"Eos V-Neck Hoodie-XL-Orange","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                            Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

                            \n

                            Semi-fitted.
                            Long-Sleeve.
                            Machine wash/line dry.

                            ","image":"/w/h/wh11-orange_main.jpg","small_image":"/w/h/wh11-orange_main.jpg","thumbnail":"/w/h/wh11-orange_main.jpg","color":"56","category_ids":[24,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"eos-v-neck-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"eos-v-neck-hoodie-xl-orange-1198","links":{},"stock":{"item_id":1198,"product_id":1198,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh11-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/eos-v-neck-hoodie-xl-orange-1198.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1180","_score":1,"_source":{"id":1180,"sku":"WH10-XL-Blue","name":"Helena Hooded Fleece-XL-Blue","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-blue_main.jpg","small_image":"/w/h/wh10-blue_main.jpg","thumbnail":"/w/h/wh10-blue_main.jpg","color":"50","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helena-hooded-fleece-xl-blue-1180","links":{},"stock":{"item_id":1180,"product_id":1180,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh10-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-xl-blue-1180.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1205","_score":1,"_source":{"id":1205,"sku":"WH12-S-Purple","name":"Circe Hooded Ice Fleece-S-Purple","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-purple_main.jpg","small_image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"circe-hooded-ice-fleece-s-purple-1205","links":{},"stock":{"item_id":1205,"product_id":1205,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh12-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-s-purple-1205.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1210","_score":1,"_source":{"id":1210,"sku":"WH12-L-Green","name":"Circe Hooded Ice Fleece-L-Green","attribute_set_id":9,"price":68,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-green_main.jpg","small_image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"circe-hooded-ice-fleece-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"circe-hooded-ice-fleece-l-green-1210","links":{},"stock":{"item_id":1210,"product_id":1210,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh12-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-l-green-1210.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1176","_score":1,"_source":{"id":1176,"sku":"WH10-M-Yellow","name":"Helena Hooded Fleece-M-Yellow","attribute_set_id":9,"price":55,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:12","updated_at":"2017-11-06 12:17:12","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                            Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

                            \n

                            Full zip.
                            Banded cuffs and waist.
                            Front pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh10-yellow_main.jpg","small_image":"/w/h/wh10-yellow_main.jpg","thumbnail":"/w/h/wh10-yellow_main.jpg","color":"60","category_ids":[24,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helena-hooded-fleece-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helena-hooded-fleece-m-yellow-1176","links":{},"stock":{"item_id":1176,"product_id":1176,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh10-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/helena-hooded-fleece-m-yellow-1176.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1250","_score":1,"_source":{"id":1250,"sku":"WJ03-M-Red","name":"Augusta Pullover Jacket-M-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"augusta-pullover-jacket-m-red-1250","links":{},"stock":{"item_id":1250,"product_id":1250,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-m-red-1250.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1249","_score":1,"_source":{"id":1249,"sku":"WJ03-M-Orange","name":"Augusta Pullover Jacket-M-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"augusta-pullover-jacket-m-orange-1249","links":{},"stock":{"item_id":1249,"product_id":1249,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-m-orange-1249.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1336","_score":1,"_source":{"id":1336,"sku":"WJ09-XL-Green","name":"Jade Yoga Jacket-XL-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jade-yoga-jacket-xl-green-1336","links":{},"stock":{"item_id":1336,"product_id":1336,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xl-green-1336.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1327","_score":1,"_source":{"id":1327,"sku":"WJ09-S-Green","name":"Jade Yoga Jacket-S-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jade-yoga-jacket-s-green-1327","links":{},"stock":{"item_id":1327,"product_id":1327,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-s-green-1327.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1328","_score":1,"_source":{"id":1328,"sku":"WJ09-M-Blue","name":"Jade Yoga Jacket-M-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jade-yoga-jacket-m-blue-1328","links":{},"stock":{"item_id":1328,"product_id":1328,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-m-blue-1328.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1331","_score":1,"_source":{"id":1331,"sku":"WJ09-L-Blue","name":"Jade Yoga Jacket-L-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jade-yoga-jacket-l-blue-1331","links":{},"stock":{"item_id":1331,"product_id":1331,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-l-blue-1331.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1344","_score":1,"_source":{"id":1344,"sku":"WJ10-M-Black","name":"Nadia Elements Shell-M-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nadia-elements-shell-m-black-1344","links":{},"stock":{"item_id":1344,"product_id":1344,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-m-black-1344.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1348","_score":1,"_source":{"id":1348,"sku":"WJ10-L-Orange","name":"Nadia Elements Shell-L-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nadia-elements-shell-l-orange-1348","links":{},"stock":{"item_id":1348,"product_id":1348,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-l-orange-1348.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1338","_score":1,"_source":{"id":1338,"sku":"WJ10-XS-Black","name":"Nadia Elements Shell-XS-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nadia-elements-shell-xs-black-1338","links":{},"stock":{"item_id":1338,"product_id":1338,"stock_id":1,"qty":70,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xs-black-1338.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1335","_score":1,"_source":{"id":1335,"sku":"WJ09-XL-Gray","name":"Jade Yoga Jacket-XL-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jade-yoga-jacket-xl-gray-1335","links":{},"stock":{"item_id":1335,"product_id":1335,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xl-gray-1335.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1346","_score":1,"_source":{"id":1346,"sku":"WJ10-M-Yellow","name":"Nadia Elements Shell-M-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nadia-elements-shell-m-yellow-1346","links":{},"stock":{"item_id":1346,"product_id":1346,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-m-yellow-1346.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1350","_score":1,"_source":{"id":1350,"sku":"WJ10-XL-Black","name":"Nadia Elements Shell-XL-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nadia-elements-shell-xl-black-1350","links":{},"stock":{"item_id":1350,"product_id":1350,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xl-black-1350.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1321","_score":1,"_source":{"id":1321,"sku":"WJ08","name":"Adrienne Trek Jacket","attribute_set_id":9,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"adrienne-trek-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,151],"eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"1","style_general":[118,120,123,124,126,128],"pattern":"197","climate":[202,204,206,208,211],"slug":"adrienne-trek-jacket-1321","links":{},"stock":{"item_id":1321,"product_id":1321,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","small_image":"/w/j/wj08-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"adrienne-trek-jacket-xs-gray","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"167","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Adrienne Trek Jacket-XS-Gray","id":1306,"category_ids":["23","30","34","2"],"sku":"WJ08-XS-Gray","max_regular_price":57,"status":1},{"image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","small_image":"/w/j/wj08-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"adrienne-trek-jacket-xs-orange","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"167","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Adrienne Trek Jacket-XS-Orange","id":1307,"category_ids":["23","30","34","2"],"sku":"WJ08-XS-Orange","max_regular_price":57,"status":1},{"image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","small_image":"/w/j/wj08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"adrienne-trek-jacket-xs-purple","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"167","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Adrienne Trek Jacket-XS-Purple","id":1308,"category_ids":["23","30","34","2"],"sku":"WJ08-XS-Purple","max_regular_price":57,"status":1},{"image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","small_image":"/w/j/wj08-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"adrienne-trek-jacket-s-gray","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"168","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Adrienne Trek Jacket-S-Gray","id":1309,"category_ids":["23","30","34","2"],"sku":"WJ08-S-Gray","max_regular_price":57,"status":1},{"image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","small_image":"/w/j/wj08-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"adrienne-trek-jacket-s-orange","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"168","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Adrienne Trek Jacket-S-Orange","id":1310,"category_ids":["23","30","34","2"],"sku":"WJ08-S-Orange","max_regular_price":57,"status":1},{"image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","small_image":"/w/j/wj08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"adrienne-trek-jacket-s-purple","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"168","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Adrienne Trek Jacket-S-Purple","id":1311,"category_ids":["23","30","34","2"],"sku":"WJ08-S-Purple","max_regular_price":57,"status":1},{"image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","small_image":"/w/j/wj08-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"adrienne-trek-jacket-m-gray","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"169","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Adrienne Trek Jacket-M-Gray","id":1312,"category_ids":["23","30","34","2"],"sku":"WJ08-M-Gray","max_regular_price":57,"status":1},{"image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","small_image":"/w/j/wj08-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"adrienne-trek-jacket-m-orange","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"169","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Adrienne Trek Jacket-M-Orange","id":1313,"category_ids":["23","30","34","2"],"sku":"WJ08-M-Orange","max_regular_price":57,"status":1},{"image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","small_image":"/w/j/wj08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"adrienne-trek-jacket-m-purple","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"169","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Adrienne Trek Jacket-M-Purple","id":1314,"category_ids":["23","30","34","2"],"sku":"WJ08-M-Purple","max_regular_price":57,"status":1},{"image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","small_image":"/w/j/wj08-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"adrienne-trek-jacket-l-gray","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"170","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Adrienne Trek Jacket-L-Gray","id":1315,"category_ids":["23","30","34","2"],"sku":"WJ08-L-Gray","max_regular_price":57,"status":1},{"image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","small_image":"/w/j/wj08-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"adrienne-trek-jacket-l-orange","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"170","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Adrienne Trek Jacket-L-Orange","id":1316,"category_ids":["23","30","34","2"],"sku":"WJ08-L-Orange","max_regular_price":57,"status":1},{"image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","small_image":"/w/j/wj08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"adrienne-trek-jacket-l-purple","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"170","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Adrienne Trek Jacket-L-Purple","id":1317,"category_ids":["23","30","34","2"],"sku":"WJ08-L-Purple","max_regular_price":57,"status":1},{"image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","small_image":"/w/j/wj08-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"adrienne-trek-jacket-xl-gray","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"171","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Adrienne Trek Jacket-XL-Gray","id":1318,"category_ids":["23","30","34","2"],"sku":"WJ08-XL-Gray","max_regular_price":57,"status":1},{"image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","small_image":"/w/j/wj08-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"adrienne-trek-jacket-xl-orange","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"171","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Adrienne Trek Jacket-XL-Orange","id":1319,"category_ids":["23","30","34","2"],"sku":"WJ08-XL-Orange","max_regular_price":57,"status":1},{"image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","small_image":"/w/j/wj08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"adrienne-trek-jacket-xl-purple","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"171","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Adrienne Trek Jacket-XL-Purple","id":1320,"category_ids":["23","30","34","2"],"sku":"WJ08-XL-Purple","max_regular_price":57,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1321,"id":183,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1321,"id":182,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[52,56,57],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-1321.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1337","_score":1,"_source":{"id":1337,"sku":"WJ09","name":"Jade Yoga Jacket","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"jade-yoga-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[118,120,121,125,128],"pattern":"197","climate":[204,206,208,210],"slug":"jade-yoga-jacket-1337","links":{},"stock":{"item_id":1337,"product_id":1337,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","small_image":"/w/j/wj09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jade-yoga-jacket-xs-blue","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"167","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Jade Yoga Jacket-XS-Blue","id":1322,"category_ids":["23","34","2"],"sku":"WJ09-XS-Blue","max_regular_price":32,"status":1},{"image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","small_image":"/w/j/wj09-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jade-yoga-jacket-xs-gray","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"167","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Jade Yoga Jacket-XS-Gray","id":1323,"category_ids":["23","34","2"],"sku":"WJ09-XS-Gray","max_regular_price":32,"status":1},{"image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","small_image":"/w/j/wj09-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jade-yoga-jacket-xs-green","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"167","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Jade Yoga Jacket-XS-Green","id":1324,"category_ids":["23","34","2"],"sku":"WJ09-XS-Green","max_regular_price":32,"status":1},{"image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","small_image":"/w/j/wj09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jade-yoga-jacket-s-blue","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"168","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Jade Yoga Jacket-S-Blue","id":1325,"category_ids":["23","34","2"],"sku":"WJ09-S-Blue","max_regular_price":32,"status":1},{"image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","small_image":"/w/j/wj09-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jade-yoga-jacket-s-gray","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"168","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Jade Yoga Jacket-S-Gray","id":1326,"category_ids":["23","34","2"],"sku":"WJ09-S-Gray","max_regular_price":32,"status":1},{"image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","small_image":"/w/j/wj09-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jade-yoga-jacket-s-green","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"168","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Jade Yoga Jacket-S-Green","id":1327,"category_ids":["23","34","2"],"sku":"WJ09-S-Green","max_regular_price":32,"status":1},{"image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","small_image":"/w/j/wj09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jade-yoga-jacket-m-blue","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"169","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Jade Yoga Jacket-M-Blue","id":1328,"category_ids":["23","34","2"],"sku":"WJ09-M-Blue","max_regular_price":32,"status":1},{"image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","small_image":"/w/j/wj09-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jade-yoga-jacket-m-gray","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"169","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Jade Yoga Jacket-M-Gray","id":1329,"category_ids":["23","34","2"],"sku":"WJ09-M-Gray","max_regular_price":32,"status":1},{"image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","small_image":"/w/j/wj09-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jade-yoga-jacket-m-green","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"169","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Jade Yoga Jacket-M-Green","id":1330,"category_ids":["23","34","2"],"sku":"WJ09-M-Green","max_regular_price":32,"status":1},{"image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","small_image":"/w/j/wj09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jade-yoga-jacket-l-blue","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"170","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Jade Yoga Jacket-L-Blue","id":1331,"category_ids":["23","34","2"],"sku":"WJ09-L-Blue","max_regular_price":32,"status":1},{"image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","small_image":"/w/j/wj09-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jade-yoga-jacket-l-gray","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"170","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Jade Yoga Jacket-L-Gray","id":1332,"category_ids":["23","34","2"],"sku":"WJ09-L-Gray","max_regular_price":32,"status":1},{"image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","small_image":"/w/j/wj09-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jade-yoga-jacket-l-green","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"170","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Jade Yoga Jacket-L-Green","id":1333,"category_ids":["23","34","2"],"sku":"WJ09-L-Green","max_regular_price":32,"status":1},{"image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","small_image":"/w/j/wj09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jade-yoga-jacket-xl-blue","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"171","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Jade Yoga Jacket-XL-Blue","id":1334,"category_ids":["23","34","2"],"sku":"WJ09-XL-Blue","max_regular_price":32,"status":1},{"image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","small_image":"/w/j/wj09-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jade-yoga-jacket-xl-gray","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"171","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Jade Yoga Jacket-XL-Gray","id":1335,"category_ids":["23","34","2"],"sku":"WJ09-XL-Gray","max_regular_price":32,"status":1},{"image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","small_image":"/w/j/wj09-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jade-yoga-jacket-xl-green","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"171","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Jade Yoga Jacket-XL-Green","id":1336,"category_ids":["23","34","2"],"sku":"WJ09-XL-Green","max_regular_price":32,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":1337,"id":185,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1337,"id":184,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,52,53],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-1337.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1305","_score":1,"_source":{"id":1305,"sku":"WJ07","name":"Inez Full Zip Jacket","attribute_set_id":9,"price":59,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"inez-full-zip-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38,151,156],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[117,118,121,125,129],"pattern":"195","climate":[204,206,207,208,210],"slug":"inez-full-zip-jacket-1305","links":{},"stock":{"item_id":1305,"product_id":1305,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","small_image":"/w/j/wj07-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"inez-full-zip-jacket-xs-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":59,"name":"Inez Full Zip Jacket-XS-Orange","id":1290,"category_ids":["23"],"sku":"WJ07-XS-Orange","status":1},{"image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","small_image":"/w/j/wj07-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"inez-full-zip-jacket-xs-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":59,"name":"Inez Full Zip Jacket-XS-Purple","id":1291,"category_ids":["23"],"sku":"WJ07-XS-Purple","status":1},{"image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","small_image":"/w/j/wj07-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"inez-full-zip-jacket-xs-red","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":59,"name":"Inez Full Zip Jacket-XS-Red","id":1292,"category_ids":["23"],"sku":"WJ07-XS-Red","status":1},{"image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","small_image":"/w/j/wj07-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"inez-full-zip-jacket-s-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":59,"name":"Inez Full Zip Jacket-S-Orange","id":1293,"category_ids":["23"],"sku":"WJ07-S-Orange","status":1},{"image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","small_image":"/w/j/wj07-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"inez-full-zip-jacket-s-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":59,"name":"Inez Full Zip Jacket-S-Purple","id":1294,"category_ids":["23"],"sku":"WJ07-S-Purple","status":1},{"image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","small_image":"/w/j/wj07-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"inez-full-zip-jacket-s-red","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":59,"name":"Inez Full Zip Jacket-S-Red","id":1295,"category_ids":["23"],"sku":"WJ07-S-Red","status":1},{"image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","small_image":"/w/j/wj07-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"inez-full-zip-jacket-m-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":59,"name":"Inez Full Zip Jacket-M-Orange","id":1296,"category_ids":["23"],"sku":"WJ07-M-Orange","status":1},{"image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","small_image":"/w/j/wj07-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"inez-full-zip-jacket-m-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":59,"name":"Inez Full Zip Jacket-M-Purple","id":1297,"category_ids":["23"],"sku":"WJ07-M-Purple","status":1},{"image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","small_image":"/w/j/wj07-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"inez-full-zip-jacket-m-red","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":59,"name":"Inez Full Zip Jacket-M-Red","id":1298,"category_ids":["23"],"sku":"WJ07-M-Red","status":1},{"image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","small_image":"/w/j/wj07-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"inez-full-zip-jacket-l-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":59,"name":"Inez Full Zip Jacket-L-Orange","id":1299,"category_ids":["23"],"sku":"WJ07-L-Orange","status":1},{"image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","small_image":"/w/j/wj07-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"inez-full-zip-jacket-l-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":59,"name":"Inez Full Zip Jacket-L-Purple","id":1300,"category_ids":["23"],"sku":"WJ07-L-Purple","status":1},{"image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","small_image":"/w/j/wj07-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"inez-full-zip-jacket-l-red","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"170","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Inez Full Zip Jacket-L-Red","id":1301,"category_ids":["23"],"sku":"WJ07-L-Red","max_regular_price":59,"status":1},{"image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","small_image":"/w/j/wj07-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"inez-full-zip-jacket-xl-orange","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"171","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Inez Full Zip Jacket-XL-Orange","id":1302,"category_ids":["23"],"sku":"WJ07-XL-Orange","max_regular_price":59,"status":1},{"image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","small_image":"/w/j/wj07-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"inez-full-zip-jacket-xl-purple","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"171","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Inez Full Zip Jacket-XL-Purple","id":1303,"category_ids":["23"],"sku":"WJ07-XL-Purple","max_regular_price":59,"status":1},{"image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","small_image":"/w/j/wj07-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"inez-full-zip-jacket-xl-red","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"171","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Inez Full Zip Jacket-XL-Red","id":1304,"category_ids":["23"],"sku":"WJ07-XL-Red","max_regular_price":59,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1305,"id":181,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1305,"id":180,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[56,57,58],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-1305.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1282","_score":1,"_source":{"id":1282,"sku":"WJ05-M-Red","name":"Riona Full Zip Jacket-M-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"riona-full-zip-jacket-m-red-1282","links":{},"stock":{"item_id":1282,"product_id":1282,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-m-red-1282.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1275","_score":1,"_source":{"id":1275,"sku":"WJ05-XS-Green","name":"Riona Full Zip Jacket-XS-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"riona-full-zip-jacket-xs-green-1275","links":{},"stock":{"item_id":1275,"product_id":1275,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xs-green-1275.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1292","_score":1,"_source":{"id":1292,"sku":"WJ07-XS-Red","name":"Inez Full Zip Jacket-XS-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"inez-full-zip-jacket-xs-red-1292","links":{},"stock":{"item_id":1292,"product_id":1292,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xs-red-1292.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1297","_score":1,"_source":{"id":1297,"sku":"WJ07-M-Purple","name":"Inez Full Zip Jacket-M-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"inez-full-zip-jacket-m-purple-1297","links":{},"stock":{"item_id":1297,"product_id":1297,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-m-purple-1297.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1295","_score":1,"_source":{"id":1295,"sku":"WJ07-S-Red","name":"Inez Full Zip Jacket-S-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"inez-full-zip-jacket-s-red-1295","links":{},"stock":{"item_id":1295,"product_id":1295,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-s-red-1295.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1291","_score":1,"_source":{"id":1291,"sku":"WJ07-XS-Purple","name":"Inez Full Zip Jacket-XS-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"inez-full-zip-jacket-xs-purple-1291","links":{},"stock":{"item_id":1291,"product_id":1291,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xs-purple-1291.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1287","_score":1,"_source":{"id":1287,"sku":"WJ05-XL-Green","name":"Riona Full Zip Jacket-XL-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"riona-full-zip-jacket-xl-green-1287","links":{},"stock":{"item_id":1287,"product_id":1287,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xl-green-1287.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1289","_score":1,"_source":{"id":1289,"sku":"WJ05","name":"Riona Full Zip Jacket","attribute_set_id":9,"price":60,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"riona-full-zip-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,148,149],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[117,118,121,125,126,129],"pattern":"197","climate":[203,204,208,211],"slug":"riona-full-zip-jacket-1289","links":{},"stock":{"item_id":1289,"product_id":1289,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","small_image":"/w/j/wj05-brown_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"riona-full-zip-jacket-xs-brown","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"167","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Riona Full Zip Jacket-XS-Brown","id":1274,"category_ids":["23"],"sku":"WJ05-XS-Brown","max_regular_price":60,"status":1},{"image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","small_image":"/w/j/wj05-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"riona-full-zip-jacket-xs-green","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"167","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Riona Full Zip Jacket-XS-Green","id":1275,"category_ids":["23"],"sku":"WJ05-XS-Green","max_regular_price":60,"status":1},{"image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","small_image":"/w/j/wj05-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"riona-full-zip-jacket-xs-red","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"167","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Riona Full Zip Jacket-XS-Red","id":1276,"category_ids":["23"],"sku":"WJ05-XS-Red","max_regular_price":60,"status":1},{"image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","small_image":"/w/j/wj05-brown_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"riona-full-zip-jacket-s-brown","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"168","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Riona Full Zip Jacket-S-Brown","id":1277,"category_ids":["23"],"sku":"WJ05-S-Brown","max_regular_price":60,"status":1},{"image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","small_image":"/w/j/wj05-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"riona-full-zip-jacket-s-green","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"168","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Riona Full Zip Jacket-S-Green","id":1278,"category_ids":["23"],"sku":"WJ05-S-Green","max_regular_price":60,"status":1},{"image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","small_image":"/w/j/wj05-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"riona-full-zip-jacket-s-red","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"168","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Riona Full Zip Jacket-S-Red","id":1279,"category_ids":["23"],"sku":"WJ05-S-Red","max_regular_price":60,"status":1},{"image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","small_image":"/w/j/wj05-brown_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"riona-full-zip-jacket-m-brown","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"169","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Riona Full Zip Jacket-M-Brown","id":1280,"category_ids":["23"],"sku":"WJ05-M-Brown","max_regular_price":60,"status":1},{"image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","small_image":"/w/j/wj05-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"riona-full-zip-jacket-m-green","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"169","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Riona Full Zip Jacket-M-Green","id":1281,"category_ids":["23"],"sku":"WJ05-M-Green","max_regular_price":60,"status":1},{"image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","small_image":"/w/j/wj05-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"riona-full-zip-jacket-m-red","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"169","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Riona Full Zip Jacket-M-Red","id":1282,"category_ids":["23"],"sku":"WJ05-M-Red","max_regular_price":60,"status":1},{"image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","small_image":"/w/j/wj05-brown_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"riona-full-zip-jacket-l-brown","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"170","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Riona Full Zip Jacket-L-Brown","id":1283,"category_ids":["23"],"sku":"WJ05-L-Brown","max_regular_price":60,"status":1},{"image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","small_image":"/w/j/wj05-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"riona-full-zip-jacket-l-green","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"170","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Riona Full Zip Jacket-L-Green","id":1284,"category_ids":["23"],"sku":"WJ05-L-Green","max_regular_price":60,"status":1},{"image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","small_image":"/w/j/wj05-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"riona-full-zip-jacket-l-red","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"170","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Riona Full Zip Jacket-L-Red","id":1285,"category_ids":["23"],"sku":"WJ05-L-Red","max_regular_price":60,"status":1},{"image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","small_image":"/w/j/wj05-brown_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"riona-full-zip-jacket-xl-brown","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"171","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Riona Full Zip Jacket-XL-Brown","id":1286,"category_ids":["23"],"sku":"WJ05-XL-Brown","max_regular_price":60,"status":1},{"image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","small_image":"/w/j/wj05-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"riona-full-zip-jacket-xl-green","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"171","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Riona Full Zip Jacket-XL-Green","id":1287,"category_ids":["23"],"sku":"WJ05-XL-Green","max_regular_price":60,"status":1},{"image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","small_image":"/w/j/wj05-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"riona-full-zip-jacket-xl-red","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"171","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Riona Full Zip Jacket-XL-Red","id":1288,"category_ids":["23"],"sku":"WJ05-XL-Red","max_regular_price":60,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":51,"label":"Brown"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1289,"id":179,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1289,"id":178,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[51,53,58],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-1289.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1273","_score":1,"_source":{"id":1273,"sku":"WJ04","name":"Ingrid Running Jacket","attribute_set_id":9,"price":84,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ingrid-running-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38,156],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_general":[118,120,129],"pattern":"197","climate":[204,208,210,211],"slug":"ingrid-running-jacket-1273","links":{},"stock":{"item_id":1273,"product_id":1273,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","small_image":"/w/j/wj04-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ingrid-running-jacket-xs-orange","regular_price":84,"required_options":"0","msrp_display_actual_price_type":"0","max_price":84,"minimal_regular_price":84,"size":"167","final_price":84,"special_price":null,"price":84,"minimal_price":84,"name":"Ingrid Running Jacket-XS-Orange","id":1258,"category_ids":["23","8","35","2"],"sku":"WJ04-XS-Orange","max_regular_price":84,"status":1},{"image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","small_image":"/w/j/wj04-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ingrid-running-jacket-xs-red","regular_price":84,"required_options":"0","msrp_display_actual_price_type":"0","max_price":84,"minimal_regular_price":84,"size":"167","final_price":84,"special_price":null,"price":84,"minimal_price":84,"name":"Ingrid Running Jacket-XS-Red","id":1259,"category_ids":["23","8","35","2"],"sku":"WJ04-XS-Red","max_regular_price":84,"status":1},{"image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","small_image":"/w/j/wj04-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ingrid-running-jacket-xs-white","regular_price":84,"required_options":"0","msrp_display_actual_price_type":"0","max_price":84,"minimal_regular_price":84,"size":"167","final_price":84,"special_price":null,"price":84,"minimal_price":84,"name":"Ingrid Running Jacket-XS-White","id":1260,"category_ids":["23","8","35","2"],"sku":"WJ04-XS-White","max_regular_price":84,"status":1},{"image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","small_image":"/w/j/wj04-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ingrid-running-jacket-s-orange","regular_price":84,"required_options":"0","msrp_display_actual_price_type":"0","max_price":84,"minimal_regular_price":84,"size":"168","final_price":84,"special_price":null,"price":84,"minimal_price":84,"name":"Ingrid Running Jacket-S-Orange","id":1261,"category_ids":["23","8","35","2"],"sku":"WJ04-S-Orange","max_regular_price":84,"status":1},{"image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","small_image":"/w/j/wj04-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ingrid-running-jacket-s-red","regular_price":84,"required_options":"0","msrp_display_actual_price_type":"0","max_price":84,"minimal_regular_price":84,"size":"168","final_price":84,"special_price":null,"price":84,"minimal_price":84,"name":"Ingrid Running Jacket-S-Red","id":1262,"category_ids":["23","8","35","2"],"sku":"WJ04-S-Red","max_regular_price":84,"status":1},{"image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","small_image":"/w/j/wj04-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ingrid-running-jacket-s-white","regular_price":84,"required_options":"0","msrp_display_actual_price_type":"0","max_price":84,"minimal_regular_price":84,"size":"168","final_price":84,"special_price":null,"price":84,"minimal_price":84,"name":"Ingrid Running Jacket-S-White","id":1263,"category_ids":["23","8","35","2"],"sku":"WJ04-S-White","max_regular_price":84,"status":1},{"image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","small_image":"/w/j/wj04-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ingrid-running-jacket-m-orange","regular_price":84,"required_options":"0","msrp_display_actual_price_type":"0","max_price":84,"minimal_regular_price":84,"size":"169","final_price":84,"special_price":null,"price":84,"minimal_price":84,"name":"Ingrid Running Jacket-M-Orange","id":1264,"category_ids":["23","8","35","2"],"sku":"WJ04-M-Orange","max_regular_price":84,"status":1},{"image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","small_image":"/w/j/wj04-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ingrid-running-jacket-m-red","regular_price":84,"required_options":"0","msrp_display_actual_price_type":"0","max_price":84,"minimal_regular_price":84,"size":"169","final_price":84,"special_price":null,"price":84,"minimal_price":84,"name":"Ingrid Running Jacket-M-Red","id":1265,"category_ids":["23","8","35","2"],"sku":"WJ04-M-Red","max_regular_price":84,"status":1},{"image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","small_image":"/w/j/wj04-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ingrid-running-jacket-m-white","regular_price":84,"required_options":"0","msrp_display_actual_price_type":"0","max_price":84,"minimal_regular_price":84,"size":"169","final_price":84,"special_price":null,"price":84,"minimal_price":84,"name":"Ingrid Running Jacket-M-White","id":1266,"category_ids":["23","8","35","2"],"sku":"WJ04-M-White","max_regular_price":84,"status":1},{"image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","small_image":"/w/j/wj04-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ingrid-running-jacket-l-orange","regular_price":84,"required_options":"0","msrp_display_actual_price_type":"0","max_price":84,"minimal_regular_price":84,"size":"170","final_price":84,"special_price":null,"price":84,"minimal_price":84,"name":"Ingrid Running Jacket-L-Orange","id":1267,"category_ids":["23","8","35","2"],"sku":"WJ04-L-Orange","max_regular_price":84,"status":1},{"image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","small_image":"/w/j/wj04-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ingrid-running-jacket-l-red","regular_price":84,"required_options":"0","msrp_display_actual_price_type":"0","max_price":84,"minimal_regular_price":84,"size":"170","final_price":84,"special_price":null,"price":84,"minimal_price":84,"name":"Ingrid Running Jacket-L-Red","id":1268,"category_ids":["23","8","35","2"],"sku":"WJ04-L-Red","max_regular_price":84,"status":1},{"image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","small_image":"/w/j/wj04-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ingrid-running-jacket-l-white","regular_price":84,"required_options":"0","msrp_display_actual_price_type":"0","max_price":84,"minimal_regular_price":84,"size":"170","final_price":84,"special_price":null,"price":84,"minimal_price":84,"name":"Ingrid Running Jacket-L-White","id":1269,"category_ids":["23","8","35","2"],"sku":"WJ04-L-White","max_regular_price":84,"status":1},{"image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","small_image":"/w/j/wj04-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ingrid-running-jacket-xl-orange","regular_price":84,"required_options":"0","msrp_display_actual_price_type":"0","max_price":84,"minimal_regular_price":84,"size":"171","final_price":84,"special_price":null,"price":84,"minimal_price":84,"name":"Ingrid Running Jacket-XL-Orange","id":1270,"category_ids":["23","8","35","2"],"sku":"WJ04-XL-Orange","max_regular_price":84,"status":1},{"image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","small_image":"/w/j/wj04-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ingrid-running-jacket-xl-red","regular_price":84,"required_options":"0","msrp_display_actual_price_type":"0","max_price":84,"minimal_regular_price":84,"size":"171","final_price":84,"special_price":null,"price":84,"minimal_price":84,"name":"Ingrid Running Jacket-XL-Red","id":1271,"category_ids":["23","8","35","2"],"sku":"WJ04-XL-Red","max_regular_price":84,"status":1},{"image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","small_image":"/w/j/wj04-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ingrid-running-jacket-xl-white","regular_price":84,"required_options":"0","msrp_display_actual_price_type":"0","max_price":84,"minimal_regular_price":84,"size":"171","final_price":84,"special_price":null,"price":84,"minimal_price":84,"name":"Ingrid Running Jacket-XL-White","id":1272,"category_ids":["23","8","35","2"],"sku":"WJ04-XL-White","max_regular_price":84,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":1273,"id":177,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1273,"id":176,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[56,58,59],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-1273.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1257","_score":1,"_source":{"id":1257,"sku":"WJ03","name":"Augusta Pullover Jacket","attribute_set_id":9,"price":57,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"augusta-pullover-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[118,137,125,126,128],"pattern":"197","climate":[202,204,205,206,208],"slug":"augusta-pullover-jacket-1257","links":{},"stock":{"item_id":1257,"product_id":1257,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","small_image":"/w/j/wj03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"augusta-pullover-jacket-xs-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":57,"name":"Augusta Pullover Jacket-XS-Blue","id":1242,"category_ids":["23"],"sku":"WJ03-XS-Blue","status":1},{"image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","small_image":"/w/j/wj03-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"augusta-pullover-jacket-xs-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":57,"name":"Augusta Pullover Jacket-XS-Orange","id":1243,"category_ids":["23"],"sku":"WJ03-XS-Orange","status":1},{"image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","small_image":"/w/j/wj03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"augusta-pullover-jacket-xs-red","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":57,"name":"Augusta Pullover Jacket-XS-Red","id":1244,"category_ids":["23"],"sku":"WJ03-XS-Red","status":1},{"image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","small_image":"/w/j/wj03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"augusta-pullover-jacket-s-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":57,"name":"Augusta Pullover Jacket-S-Blue","id":1245,"category_ids":["23"],"sku":"WJ03-S-Blue","status":1},{"image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","small_image":"/w/j/wj03-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"augusta-pullover-jacket-s-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":57,"name":"Augusta Pullover Jacket-S-Orange","id":1246,"category_ids":["23"],"sku":"WJ03-S-Orange","status":1},{"image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","small_image":"/w/j/wj03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"augusta-pullover-jacket-s-red","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":57,"name":"Augusta Pullover Jacket-S-Red","id":1247,"category_ids":["23"],"sku":"WJ03-S-Red","status":1},{"image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","small_image":"/w/j/wj03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"augusta-pullover-jacket-m-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":57,"name":"Augusta Pullover Jacket-M-Blue","id":1248,"category_ids":["23"],"sku":"WJ03-M-Blue","status":1},{"image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","small_image":"/w/j/wj03-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"augusta-pullover-jacket-m-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":57,"name":"Augusta Pullover Jacket-M-Orange","id":1249,"category_ids":["23"],"sku":"WJ03-M-Orange","status":1},{"image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","small_image":"/w/j/wj03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"augusta-pullover-jacket-m-red","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":57,"name":"Augusta Pullover Jacket-M-Red","id":1250,"category_ids":["23"],"sku":"WJ03-M-Red","status":1},{"image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","small_image":"/w/j/wj03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"augusta-pullover-jacket-l-blue","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"170","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Augusta Pullover Jacket-L-Blue","id":1251,"category_ids":["23"],"sku":"WJ03-L-Blue","max_regular_price":57,"status":1},{"image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","small_image":"/w/j/wj03-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"augusta-pullover-jacket-l-orange","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"170","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Augusta Pullover Jacket-L-Orange","id":1252,"category_ids":["23"],"sku":"WJ03-L-Orange","max_regular_price":57,"status":1},{"image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","small_image":"/w/j/wj03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"augusta-pullover-jacket-l-red","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"170","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Augusta Pullover Jacket-L-Red","id":1253,"category_ids":["23"],"sku":"WJ03-L-Red","max_regular_price":57,"status":1},{"image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","small_image":"/w/j/wj03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"augusta-pullover-jacket-xl-blue","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"171","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Augusta Pullover Jacket-XL-Blue","id":1254,"category_ids":["23"],"sku":"WJ03-XL-Blue","max_regular_price":57,"status":1},{"image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","small_image":"/w/j/wj03-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"augusta-pullover-jacket-xl-orange","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"171","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Augusta Pullover Jacket-XL-Orange","id":1255,"category_ids":["23"],"sku":"WJ03-XL-Orange","max_regular_price":57,"status":1},{"image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","small_image":"/w/j/wj03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"augusta-pullover-jacket-xl-red","regular_price":57,"required_options":"0","msrp_display_actual_price_type":"0","max_price":57,"minimal_regular_price":57,"size":"171","final_price":57,"special_price":null,"price":57,"minimal_price":57,"name":"Augusta Pullover Jacket-XL-Red","id":1256,"category_ids":["23"],"sku":"WJ03-XL-Red","max_regular_price":57,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":1257,"id":175,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1257,"id":174,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,56,58],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-1257.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1215","_score":1,"_source":{"id":1215,"sku":"WH12","name":"Circe Hooded Ice Fleece","attribute_set_id":9,"price":68,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":68,"max_price":68,"max_regular_price":68,"minimal_regular_price":68,"special_price":null,"minimal_price":68,"regular_price":68,"description":"

                            Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

                            \n

                            Full-zip front.
                            Three-panel hood.
                            Flatlock seams throughout.
                            Welt hand pockets.
                            Machine wash/dry.

                            ","image":"/w/h/wh12-gray_main.jpg","small_image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","category_ids":[24,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"circe-hooded-ice-fleece","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,156],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":[138,133,129],"pattern":"197","climate":[203,204,211],"slug":"circe-hooded-ice-fleece-1215","links":{},"stock":{"item_id":1215,"product_id":1215,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/h/wh12-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/h/wh12-gray_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","small_image":"/w/h/wh12-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"circe-hooded-ice-fleece-xs-gray","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":68,"name":"Circe Hooded Ice Fleece-XS-Gray","id":1200,"category_ids":["24","35","2"],"sku":"WH12-XS-Gray","status":1},{"image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","small_image":"/w/h/wh12-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"circe-hooded-ice-fleece-xs-green","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"167","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Circe Hooded Ice Fleece-XS-Green","id":1201,"category_ids":["24","35","2"],"sku":"WH12-XS-Green","max_regular_price":68,"status":1},{"image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","small_image":"/w/h/wh12-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"circe-hooded-ice-fleece-xs-purple","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"167","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Circe Hooded Ice Fleece-XS-Purple","id":1202,"category_ids":["24","35","2"],"sku":"WH12-XS-Purple","max_regular_price":68,"status":1},{"image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","small_image":"/w/h/wh12-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"circe-hooded-ice-fleece-s-gray","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"168","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Circe Hooded Ice Fleece-S-Gray","id":1203,"category_ids":["24","35","2"],"sku":"WH12-S-Gray","max_regular_price":68,"status":1},{"image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","small_image":"/w/h/wh12-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"circe-hooded-ice-fleece-s-green","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"168","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Circe Hooded Ice Fleece-S-Green","id":1204,"category_ids":["24","35","2"],"sku":"WH12-S-Green","max_regular_price":68,"status":1},{"image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","small_image":"/w/h/wh12-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"circe-hooded-ice-fleece-s-purple","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"168","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Circe Hooded Ice Fleece-S-Purple","id":1205,"category_ids":["24","35","2"],"sku":"WH12-S-Purple","max_regular_price":68,"status":1},{"image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","small_image":"/w/h/wh12-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"circe-hooded-ice-fleece-m-gray","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"169","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Circe Hooded Ice Fleece-M-Gray","id":1206,"category_ids":["24","35","2"],"sku":"WH12-M-Gray","max_regular_price":68,"status":1},{"image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","small_image":"/w/h/wh12-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"circe-hooded-ice-fleece-m-green","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"169","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Circe Hooded Ice Fleece-M-Green","id":1207,"category_ids":["24","35","2"],"sku":"WH12-M-Green","max_regular_price":68,"status":1},{"image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","small_image":"/w/h/wh12-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"circe-hooded-ice-fleece-m-purple","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"169","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Circe Hooded Ice Fleece-M-Purple","id":1208,"category_ids":["24","35","2"],"sku":"WH12-M-Purple","max_regular_price":68,"status":1},{"image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","small_image":"/w/h/wh12-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"circe-hooded-ice-fleece-l-gray","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"170","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Circe Hooded Ice Fleece-L-Gray","id":1209,"category_ids":["24","35","2"],"sku":"WH12-L-Gray","max_regular_price":68,"status":1},{"image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","small_image":"/w/h/wh12-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"circe-hooded-ice-fleece-l-green","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"170","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Circe Hooded Ice Fleece-L-Green","id":1210,"category_ids":["24","35","2"],"sku":"WH12-L-Green","max_regular_price":68,"status":1},{"image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","small_image":"/w/h/wh12-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"circe-hooded-ice-fleece-l-purple","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"170","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Circe Hooded Ice Fleece-L-Purple","id":1211,"category_ids":["24","35","2"],"sku":"WH12-L-Purple","max_regular_price":68,"status":1},{"image":"/w/h/wh12-gray_main.jpg","thumbnail":"/w/h/wh12-gray_main.jpg","color":"52","small_image":"/w/h/wh12-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"circe-hooded-ice-fleece-xl-gray","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"171","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Circe Hooded Ice Fleece-XL-Gray","id":1212,"category_ids":["24","35","2"],"sku":"WH12-XL-Gray","max_regular_price":68,"status":1},{"image":"/w/h/wh12-green_main.jpg","thumbnail":"/w/h/wh12-green_main.jpg","color":"53","small_image":"/w/h/wh12-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"circe-hooded-ice-fleece-xl-green","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"171","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Circe Hooded Ice Fleece-XL-Green","id":1213,"category_ids":["24","35","2"],"sku":"WH12-XL-Green","max_regular_price":68,"status":1},{"image":"/w/h/wh12-purple_main.jpg","thumbnail":"/w/h/wh12-purple_main.jpg","color":"57","small_image":"/w/h/wh12-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"circe-hooded-ice-fleece-xl-purple","regular_price":68,"required_options":"0","msrp_display_actual_price_type":"0","max_price":68,"minimal_regular_price":68,"size":"171","final_price":68,"special_price":null,"price":68,"minimal_price":68,"name":"Circe Hooded Ice Fleece-XL-Purple","id":1214,"category_ids":["24","35","2"],"sku":"WH12-XL-Purple","max_regular_price":68,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"}],"product_id":1215,"id":169,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1215,"id":168,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[52,53,57],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24","category_id":24,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-24"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/hoodies-and-sweatshirts-women/hoodies-and-sweatshirts-24/circe-hooded-ice-fleece-1215.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1225","_score":1,"_source":{"id":1225,"sku":"WJ01","name":"Stellar Solar Jacket","attribute_set_id":9,"price":75,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                            Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It's loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.
                            • Deep pink jacket with front panel rouching

                            ","image":"/w/j/wj01-red_main.jpg","small_image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","category_ids":[23,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"stellar-solar-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,159,145],"eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":[118,121,125,129],"pattern":"197","climate":[202,206,208,210],"slug":"stellar-solar-jacket-1225","links":{},"stock":{"item_id":1225,"product_id":1225,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj01-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj01-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj01-red_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","color":"50","small_image":"/w/j/wj01-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"stellar-solar-jacket-s-blue","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"168","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Stellar Solar Jacket-S-Blue","id":1216,"category_ids":["23","8","34","2"],"sku":"WJ01-S-Blue","max_regular_price":75,"status":1},{"image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","color":"58","small_image":"/w/j/wj01-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"stellar-solar-jacket-s-red","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"168","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Stellar Solar Jacket-S-Red","id":1217,"category_ids":["23","8","34","2"],"sku":"WJ01-S-Red","max_regular_price":75,"status":1},{"image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","color":"60","small_image":"/w/j/wj01-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"stellar-solar-jacket-s-yellow","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"168","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Stellar Solar Jacket-S-Yellow","id":1218,"category_ids":["23","8","34","2"],"sku":"WJ01-S-Yellow","max_regular_price":75,"status":1},{"image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","color":"50","small_image":"/w/j/wj01-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"stellar-solar-jacket-m-blue","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"169","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Stellar Solar Jacket-M-Blue","id":1219,"category_ids":["23","8","34","2"],"sku":"WJ01-M-Blue","max_regular_price":75,"status":1},{"image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","color":"58","small_image":"/w/j/wj01-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"stellar-solar-jacket-m-red","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"169","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Stellar Solar Jacket-M-Red","id":1220,"category_ids":["23","8","34","2"],"sku":"WJ01-M-Red","max_regular_price":75,"status":1},{"image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","color":"60","small_image":"/w/j/wj01-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"stellar-solar-jacket-m-yellow","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"169","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Stellar Solar Jacket-M-Yellow","id":1221,"category_ids":["23","8","34","2"],"sku":"WJ01-M-Yellow","max_regular_price":75,"status":1},{"image":"/w/j/wj01-blue_main.jpg","thumbnail":"/w/j/wj01-blue_main.jpg","color":"50","small_image":"/w/j/wj01-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"stellar-solar-jacket-l-blue","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"170","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Stellar Solar Jacket-L-Blue","id":1222,"category_ids":["23","8","34","2"],"sku":"WJ01-L-Blue","max_regular_price":75,"status":1},{"image":"/w/j/wj01-red_main.jpg","thumbnail":"/w/j/wj01-red_main.jpg","color":"58","small_image":"/w/j/wj01-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"stellar-solar-jacket-l-red","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"170","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Stellar Solar Jacket-L-Red","id":1223,"category_ids":["23","8","34","2"],"sku":"WJ01-L-Red","max_regular_price":75,"status":1},{"image":"/w/j/wj01-yellow_main.jpg","thumbnail":"/w/j/wj01-yellow_main.jpg","color":"60","small_image":"/w/j/wj01-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"stellar-solar-jacket-l-yellow","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"170","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Stellar Solar Jacket-L-Yellow","id":1224,"category_ids":["23","8","34","2"],"sku":"WJ01-L-Yellow","max_regular_price":75,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":1225,"id":171,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"}],"product_id":1225,"id":170,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,58,60],"size_options":[168,169,170],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/stellar-solar-jacket-1225.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1241","_score":1,"_source":{"id":1241,"sku":"WJ02","name":"Josie Yoga Jacket","attribute_set_id":9,"price":56.25,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.25,"max_price":56.25,"max_regular_price":56.25,"minimal_regular_price":56.25,"special_price":null,"minimal_price":56.25,"regular_price":56.25,"description":"

                            When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

                            \n

                            • Slate rouched neck pullover.
                            • Moisture-wicking fabric.
                            • Hidden zipper.
                            • Mesh armpit venting.
                            • Dropped rear hem.

                            ","image":"/w/j/wj02-gray_main.jpg","small_image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","category_ids":[23,30,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"josie-yoga-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[38,151,156],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":[118,137,120,125],"pattern":"197","climate":[205,206,208],"slug":"josie-yoga-jacket-1241","links":{},"stock":{"item_id":1241,"product_id":1241,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj02-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj02-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj02-gray_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","small_image":"/w/j/wj02-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"josie-yoga-jacket-xs-black","regular_price":56.25,"required_options":"0","msrp_display_actual_price_type":"0","max_price":56.25,"minimal_regular_price":56.25,"size":"167","final_price":56.25,"special_price":null,"price":56.25,"minimal_price":56.25,"name":"Josie Yoga Jacket-XS-Black","id":1226,"category_ids":["23","30","2"],"sku":"WJ02-XS-Black","max_regular_price":56.25,"status":1},{"image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","small_image":"/w/j/wj02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"josie-yoga-jacket-xs-blue","regular_price":56.25,"required_options":"0","msrp_display_actual_price_type":"0","max_price":56.25,"minimal_regular_price":56.25,"size":"167","final_price":56.25,"special_price":null,"price":56.25,"minimal_price":56.25,"name":"Josie Yoga Jacket-XS-Blue","id":1227,"category_ids":["23","30","2"],"sku":"WJ02-XS-Blue","max_regular_price":56.25,"status":1},{"image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","small_image":"/w/j/wj02-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"josie-yoga-jacket-xs-gray","regular_price":56.25,"required_options":"0","msrp_display_actual_price_type":"0","max_price":56.25,"minimal_regular_price":56.25,"size":"167","final_price":56.25,"special_price":null,"price":56.25,"minimal_price":56.25,"name":"Josie Yoga Jacket-XS-Gray","id":1228,"category_ids":["23","30","2"],"sku":"WJ02-XS-Gray","max_regular_price":56.25,"status":1},{"image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","small_image":"/w/j/wj02-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"josie-yoga-jacket-s-black","regular_price":56.25,"required_options":"0","msrp_display_actual_price_type":"0","max_price":56.25,"minimal_regular_price":56.25,"size":"168","final_price":56.25,"special_price":null,"price":56.25,"minimal_price":56.25,"name":"Josie Yoga Jacket-S-Black","id":1229,"category_ids":["23","30","2"],"sku":"WJ02-S-Black","max_regular_price":56.25,"status":1},{"image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","small_image":"/w/j/wj02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"josie-yoga-jacket-s-blue","regular_price":56.25,"required_options":"0","msrp_display_actual_price_type":"0","max_price":56.25,"minimal_regular_price":56.25,"size":"168","final_price":56.25,"special_price":null,"price":56.25,"minimal_price":56.25,"name":"Josie Yoga Jacket-S-Blue","id":1230,"category_ids":["23","30","2"],"sku":"WJ02-S-Blue","max_regular_price":56.25,"status":1},{"image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","small_image":"/w/j/wj02-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"josie-yoga-jacket-s-gray","regular_price":56.25,"required_options":"0","msrp_display_actual_price_type":"0","max_price":56.25,"minimal_regular_price":56.25,"size":"168","final_price":56.25,"special_price":null,"price":56.25,"minimal_price":56.25,"name":"Josie Yoga Jacket-S-Gray","id":1231,"category_ids":["23","30","2"],"sku":"WJ02-S-Gray","max_regular_price":56.25,"status":1},{"image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","small_image":"/w/j/wj02-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"josie-yoga-jacket-m-black","regular_price":56.25,"required_options":"0","msrp_display_actual_price_type":"0","max_price":56.25,"minimal_regular_price":56.25,"size":"169","final_price":56.25,"special_price":null,"price":56.25,"minimal_price":56.25,"name":"Josie Yoga Jacket-M-Black","id":1232,"category_ids":["23","30","2"],"sku":"WJ02-M-Black","max_regular_price":56.25,"status":1},{"image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","small_image":"/w/j/wj02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"josie-yoga-jacket-m-blue","regular_price":56.25,"required_options":"0","msrp_display_actual_price_type":"0","max_price":56.25,"minimal_regular_price":56.25,"size":"169","final_price":56.25,"special_price":null,"price":56.25,"minimal_price":56.25,"name":"Josie Yoga Jacket-M-Blue","id":1233,"category_ids":["23","30","2"],"sku":"WJ02-M-Blue","max_regular_price":56.25,"status":1},{"image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","small_image":"/w/j/wj02-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"josie-yoga-jacket-m-gray","regular_price":56.25,"required_options":"0","msrp_display_actual_price_type":"0","max_price":56.25,"minimal_regular_price":56.25,"size":"169","final_price":56.25,"special_price":null,"price":56.25,"minimal_price":56.25,"name":"Josie Yoga Jacket-M-Gray","id":1234,"category_ids":["23","30","2"],"sku":"WJ02-M-Gray","max_regular_price":56.25,"status":1},{"image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","small_image":"/w/j/wj02-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"josie-yoga-jacket-l-black","regular_price":56.25,"required_options":"0","msrp_display_actual_price_type":"0","max_price":56.25,"minimal_regular_price":56.25,"size":"170","final_price":56.25,"special_price":null,"price":56.25,"minimal_price":56.25,"name":"Josie Yoga Jacket-L-Black","id":1235,"category_ids":["23","30","2"],"sku":"WJ02-L-Black","max_regular_price":56.25,"status":1},{"image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","small_image":"/w/j/wj02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"josie-yoga-jacket-l-blue","regular_price":56.25,"required_options":"0","msrp_display_actual_price_type":"0","max_price":56.25,"minimal_regular_price":56.25,"size":"170","final_price":56.25,"special_price":null,"price":56.25,"minimal_price":56.25,"name":"Josie Yoga Jacket-L-Blue","id":1236,"category_ids":["23","30","2"],"sku":"WJ02-L-Blue","max_regular_price":56.25,"status":1},{"image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","small_image":"/w/j/wj02-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"josie-yoga-jacket-l-gray","regular_price":56.25,"required_options":"0","msrp_display_actual_price_type":"0","max_price":56.25,"minimal_regular_price":56.25,"size":"170","final_price":56.25,"special_price":null,"price":56.25,"minimal_price":56.25,"name":"Josie Yoga Jacket-L-Gray","id":1237,"category_ids":["23","30","2"],"sku":"WJ02-L-Gray","max_regular_price":56.25,"status":1},{"image":"/w/j/wj02-black_main.jpg","thumbnail":"/w/j/wj02-black_main.jpg","color":"49","small_image":"/w/j/wj02-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"josie-yoga-jacket-xl-black","regular_price":56.25,"required_options":"0","msrp_display_actual_price_type":"0","max_price":56.25,"minimal_regular_price":56.25,"size":"171","final_price":56.25,"special_price":null,"price":56.25,"minimal_price":56.25,"name":"Josie Yoga Jacket-XL-Black","id":1238,"category_ids":["23","30","2"],"sku":"WJ02-XL-Black","max_regular_price":56.25,"status":1},{"image":"/w/j/wj02-blue_main.jpg","thumbnail":"/w/j/wj02-blue_main.jpg","color":"50","small_image":"/w/j/wj02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"josie-yoga-jacket-xl-blue","regular_price":56.25,"required_options":"0","msrp_display_actual_price_type":"0","max_price":56.25,"minimal_regular_price":56.25,"size":"171","final_price":56.25,"special_price":null,"price":56.25,"minimal_price":56.25,"name":"Josie Yoga Jacket-XL-Blue","id":1239,"category_ids":["23","30","2"],"sku":"WJ02-XL-Blue","max_regular_price":56.25,"status":1},{"image":"/w/j/wj02-gray_main.jpg","thumbnail":"/w/j/wj02-gray_main.jpg","color":"52","small_image":"/w/j/wj02-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"josie-yoga-jacket-xl-gray","regular_price":56.25,"required_options":"0","msrp_display_actual_price_type":"0","max_price":56.25,"minimal_regular_price":56.25,"size":"171","final_price":56.25,"special_price":null,"price":56.25,"minimal_price":56.25,"name":"Josie Yoga Jacket-XL-Gray","id":1240,"category_ids":["23","30","2"],"sku":"WJ02-XL-Gray","max_regular_price":56.25,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"}],"product_id":1241,"id":173,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1241,"id":172,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,52],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/josie-yoga-jacket-1241.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1316","_score":1,"_source":{"id":1316,"sku":"WJ08-L-Orange","name":"Adrienne Trek Jacket-L-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"adrienne-trek-jacket-l-orange-1316","links":{},"stock":{"item_id":1316,"product_id":1316,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-l-orange-1316.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1320","_score":1,"_source":{"id":1320,"sku":"WJ08-XL-Purple","name":"Adrienne Trek Jacket-XL-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"adrienne-trek-jacket-xl-purple-1320","links":{},"stock":{"item_id":1320,"product_id":1320,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xl-purple-1320.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1307","_score":1,"_source":{"id":1307,"sku":"WJ08-XS-Orange","name":"Adrienne Trek Jacket-XS-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"adrienne-trek-jacket-xs-orange-1307","links":{},"stock":{"item_id":1307,"product_id":1307,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xs-orange-1307.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1303","_score":1,"_source":{"id":1303,"sku":"WJ07-XL-Purple","name":"Inez Full Zip Jacket-XL-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"inez-full-zip-jacket-xl-purple-1303","links":{},"stock":{"item_id":1303,"product_id":1303,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xl-purple-1303.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1314","_score":1,"_source":{"id":1314,"sku":"WJ08-M-Purple","name":"Adrienne Trek Jacket-M-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"adrienne-trek-jacket-m-purple-1314","links":{},"stock":{"item_id":1314,"product_id":1314,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-m-purple-1314.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1313","_score":1,"_source":{"id":1313,"sku":"WJ08-M-Orange","name":"Adrienne Trek Jacket-M-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"adrienne-trek-jacket-m-orange-1313","links":{},"stock":{"item_id":1313,"product_id":1313,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-m-orange-1313.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1329","_score":1,"_source":{"id":1329,"sku":"WJ09-M-Gray","name":"Jade Yoga Jacket-M-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jade-yoga-jacket-m-gray-1329","links":{},"stock":{"item_id":1329,"product_id":1329,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-m-gray-1329.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1311","_score":1,"_source":{"id":1311,"sku":"WJ08-S-Purple","name":"Adrienne Trek Jacket-S-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"adrienne-trek-jacket-s-purple-1311","links":{},"stock":{"item_id":1311,"product_id":1311,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-s-purple-1311.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1304","_score":1,"_source":{"id":1304,"sku":"WJ07-XL-Red","name":"Inez Full Zip Jacket-XL-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"inez-full-zip-jacket-xl-red-1304","links":{},"stock":{"item_id":1304,"product_id":1304,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xl-red-1304.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1315","_score":1,"_source":{"id":1315,"sku":"WJ08-L-Gray","name":"Adrienne Trek Jacket-L-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"adrienne-trek-jacket-l-gray-1315","links":{},"stock":{"item_id":1315,"product_id":1315,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-l-gray-1315.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1326","_score":1,"_source":{"id":1326,"sku":"WJ09-S-Gray","name":"Jade Yoga Jacket-S-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jade-yoga-jacket-s-gray-1326","links":{},"stock":{"item_id":1326,"product_id":1326,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-s-gray-1326.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1324","_score":1,"_source":{"id":1324,"sku":"WJ09-XS-Green","name":"Jade Yoga Jacket-XS-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jade-yoga-jacket-xs-green-1324","links":{},"stock":{"item_id":1324,"product_id":1324,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xs-green-1324.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1322","_score":1,"_source":{"id":1322,"sku":"WJ09-XS-Blue","name":"Jade Yoga Jacket-XS-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jade-yoga-jacket-xs-blue-1322","links":{},"stock":{"item_id":1322,"product_id":1322,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xs-blue-1322.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1309","_score":1,"_source":{"id":1309,"sku":"WJ08-S-Gray","name":"Adrienne Trek Jacket-S-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"adrienne-trek-jacket-s-gray-1309","links":{},"stock":{"item_id":1309,"product_id":1309,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-s-gray-1309.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1323","_score":1,"_source":{"id":1323,"sku":"WJ09-XS-Gray","name":"Jade Yoga Jacket-XS-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jade-yoga-jacket-xs-gray-1323","links":{},"stock":{"item_id":1323,"product_id":1323,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xs-gray-1323.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1317","_score":1,"_source":{"id":1317,"sku":"WJ08-L-Purple","name":"Adrienne Trek Jacket-L-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"adrienne-trek-jacket-l-purple-1317","links":{},"stock":{"item_id":1317,"product_id":1317,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-l-purple-1317.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1312","_score":1,"_source":{"id":1312,"sku":"WJ08-M-Gray","name":"Adrienne Trek Jacket-M-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"adrienne-trek-jacket-m-gray-1312","links":{},"stock":{"item_id":1312,"product_id":1312,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-m-gray-1312.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1325","_score":1,"_source":{"id":1325,"sku":"WJ09-S-Blue","name":"Jade Yoga Jacket-S-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jade-yoga-jacket-s-blue-1325","links":{},"stock":{"item_id":1325,"product_id":1325,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-s-blue-1325.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1302","_score":1,"_source":{"id":1302,"sku":"WJ07-XL-Orange","name":"Inez Full Zip Jacket-XL-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"inez-full-zip-jacket-xl-orange-1302","links":{},"stock":{"item_id":1302,"product_id":1302,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xl-orange-1302.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1308","_score":1,"_source":{"id":1308,"sku":"WJ08-XS-Purple","name":"Adrienne Trek Jacket-XS-Purple","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-purple_main.jpg","small_image":"/w/j/wj08-purple_main.jpg","thumbnail":"/w/j/wj08-purple_main.jpg","color":"57","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"adrienne-trek-jacket-xs-purple-1308","links":{},"stock":{"item_id":1308,"product_id":1308,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj08-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xs-purple-1308.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1301","_score":1,"_source":{"id":1301,"sku":"WJ07-L-Red","name":"Inez Full Zip Jacket-L-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"inez-full-zip-jacket-l-red-1301","links":{},"stock":{"item_id":1301,"product_id":1301,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-l-red-1301.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1330","_score":1,"_source":{"id":1330,"sku":"WJ09-M-Green","name":"Jade Yoga Jacket-M-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jade-yoga-jacket-m-green-1330","links":{},"stock":{"item_id":1330,"product_id":1330,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-m-green-1330.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1334","_score":1,"_source":{"id":1334,"sku":"WJ09-XL-Blue","name":"Jade Yoga Jacket-XL-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-blue_main.jpg","small_image":"/w/j/wj09-blue_main.jpg","thumbnail":"/w/j/wj09-blue_main.jpg","color":"50","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jade-yoga-jacket-xl-blue-1334","links":{},"stock":{"item_id":1334,"product_id":1334,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj09-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-xl-blue-1334.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1310","_score":1,"_source":{"id":1310,"sku":"WJ08-S-Orange","name":"Adrienne Trek Jacket-S-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"adrienne-trek-jacket-s-orange-1310","links":{},"stock":{"item_id":1310,"product_id":1310,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-s-orange-1310.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1341","_score":1,"_source":{"id":1341,"sku":"WJ10-S-Black","name":"Nadia Elements Shell-S-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nadia-elements-shell-s-black-1341","links":{},"stock":{"item_id":1341,"product_id":1341,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-s-black-1341.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1318","_score":1,"_source":{"id":1318,"sku":"WJ08-XL-Gray","name":"Adrienne Trek Jacket-XL-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"adrienne-trek-jacket-xl-gray-1318","links":{},"stock":{"item_id":1318,"product_id":1318,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xl-gray-1318.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1333","_score":1,"_source":{"id":1333,"sku":"WJ09-L-Green","name":"Jade Yoga Jacket-L-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-green_main.jpg","small_image":"/w/j/wj09-green_main.jpg","thumbnail":"/w/j/wj09-green_main.jpg","color":"53","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jade-yoga-jacket-l-green-1333","links":{},"stock":{"item_id":1333,"product_id":1333,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj09-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj09-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj09-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-l-green-1333.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1306","_score":1,"_source":{"id":1306,"sku":"WJ08-XS-Gray","name":"Adrienne Trek Jacket-XS-Gray","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-gray_main.jpg","small_image":"/w/j/wj08-gray_main.jpg","thumbnail":"/w/j/wj08-gray_main.jpg","color":"52","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"adrienne-trek-jacket-xs-gray-1306","links":{},"stock":{"item_id":1306,"product_id":1306,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj08-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj08-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj08-gray_alternate.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj08-gray_back.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xs-gray-1306.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1332","_score":1,"_source":{"id":1332,"sku":"WJ09-L-Gray","name":"Jade Yoga Jacket-L-Gray","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"


                            If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

                            \n

                            • Seafoam 1/4 zip pullover with purple stitching.
                            • Lightweight, quick-drying, water-resistant construction.
                            • Shirred details at front and back for a feminine look.
                            • Hood collapses into collar.
                            • Mesh liner for breathability.
                            • Front zip pockets.
                            • Hem cinches at sideseam.
                            • 100% Polyester.

                            ","image":"/w/j/wj09-gray_main.jpg","small_image":"/w/j/wj09-gray_main.jpg","thumbnail":"/w/j/wj09-gray_main.jpg","color":"52","category_ids":[23,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jade-yoga-jacket-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jade-yoga-jacket-l-gray-1332","links":{},"stock":{"item_id":1332,"product_id":1332,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj09-gray_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/jade-yoga-jacket-l-gray-1332.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1261","_score":1,"_source":{"id":1261,"sku":"WJ04-S-Orange","name":"Ingrid Running Jacket-S-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ingrid-running-jacket-s-orange-1261","links":{},"stock":{"item_id":1261,"product_id":1261,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-s-orange-1261.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1293","_score":1,"_source":{"id":1293,"sku":"WJ07-S-Orange","name":"Inez Full Zip Jacket-S-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"inez-full-zip-jacket-s-orange-1293","links":{},"stock":{"item_id":1293,"product_id":1293,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-s-orange-1293.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1276","_score":1,"_source":{"id":1276,"sku":"WJ05-XS-Red","name":"Riona Full Zip Jacket-XS-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"riona-full-zip-jacket-xs-red-1276","links":{},"stock":{"item_id":1276,"product_id":1276,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xs-red-1276.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1279","_score":1,"_source":{"id":1279,"sku":"WJ05-S-Red","name":"Riona Full Zip Jacket-S-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"riona-full-zip-jacket-s-red-1279","links":{},"stock":{"item_id":1279,"product_id":1279,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-s-red-1279.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1284","_score":1,"_source":{"id":1284,"sku":"WJ05-L-Green","name":"Riona Full Zip Jacket-L-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"riona-full-zip-jacket-l-green-1284","links":{},"stock":{"item_id":1284,"product_id":1284,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-l-green-1284.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1281","_score":1,"_source":{"id":1281,"sku":"WJ05-M-Green","name":"Riona Full Zip Jacket-M-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"riona-full-zip-jacket-m-green-1281","links":{},"stock":{"item_id":1281,"product_id":1281,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-m-green-1281.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1280","_score":1,"_source":{"id":1280,"sku":"WJ05-M-Brown","name":"Riona Full Zip Jacket-M-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-m-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"riona-full-zip-jacket-m-brown-1280","links":{},"stock":{"item_id":1280,"product_id":1280,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-m-brown-1280.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1277","_score":1,"_source":{"id":1277,"sku":"WJ05-S-Brown","name":"Riona Full Zip Jacket-S-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-s-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"riona-full-zip-jacket-s-brown-1277","links":{},"stock":{"item_id":1277,"product_id":1277,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-s-brown-1277.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1299","_score":1,"_source":{"id":1299,"sku":"WJ07-L-Orange","name":"Inez Full Zip Jacket-L-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"inez-full-zip-jacket-l-orange-1299","links":{},"stock":{"item_id":1299,"product_id":1299,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-l-orange-1299.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1288","_score":1,"_source":{"id":1288,"sku":"WJ05-XL-Red","name":"Riona Full Zip Jacket-XL-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"riona-full-zip-jacket-xl-red-1288","links":{},"stock":{"item_id":1288,"product_id":1288,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xl-red-1288.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1294","_score":1,"_source":{"id":1294,"sku":"WJ07-S-Purple","name":"Inez Full Zip Jacket-S-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"inez-full-zip-jacket-s-purple-1294","links":{},"stock":{"item_id":1294,"product_id":1294,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-s-purple-1294.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1290","_score":1,"_source":{"id":1290,"sku":"WJ07-XS-Orange","name":"Inez Full Zip Jacket-XS-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"inez-full-zip-jacket-xs-orange-1290","links":{},"stock":{"item_id":1290,"product_id":1290,"stock_id":1,"qty":51,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-xs-orange-1290.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1286","_score":1,"_source":{"id":1286,"sku":"WJ05-XL-Brown","name":"Riona Full Zip Jacket-XL-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xl-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"riona-full-zip-jacket-xl-brown-1286","links":{},"stock":{"item_id":1286,"product_id":1286,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xl-brown-1286.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1285","_score":1,"_source":{"id":1285,"sku":"WJ05-L-Red","name":"Riona Full Zip Jacket-L-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2019-04-12 06:18:41","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \r\n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-red_main.jpg","small_image":"/w/j/wj05-red_main.jpg","thumbnail":"/w/j/wj05-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-l-red","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"170","eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","slug":"riona-full-zip-jacket-l-red-1285","links":{},"stock":{"item_id":1285,"product_id":1285,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj05-red_main.jpg","pos":1,"typ":"image","lab":null}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-l-red-1285.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1300","_score":1,"_source":{"id":1300,"sku":"WJ07-L-Purple","name":"Inez Full Zip Jacket-L-Purple","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-purple_main.jpg","small_image":"/w/j/wj07-purple_main.jpg","thumbnail":"/w/j/wj07-purple_main.jpg","color":"57","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"inez-full-zip-jacket-l-purple-1300","links":{},"stock":{"item_id":1300,"product_id":1300,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj07-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj07-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj07-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-l-purple-1300.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1296","_score":1,"_source":{"id":1296,"sku":"WJ07-M-Orange","name":"Inez Full Zip Jacket-M-Orange","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-orange_main.jpg","small_image":"/w/j/wj07-orange_main.jpg","thumbnail":"/w/j/wj07-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"inez-full-zip-jacket-m-orange-1296","links":{},"stock":{"item_id":1296,"product_id":1296,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj07-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-m-orange-1296.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1298","_score":1,"_source":{"id":1298,"sku":"WJ07-M-Red","name":"Inez Full Zip Jacket-M-Red","attribute_set_id":9,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            The Inez Full Zip jacket is more than a cute layer. It's a full-on tech wonder you'll use for outdoor, pre and post workout. You'll love how the highlighted zipper and sleeve safety trim protect and catch looks.

                            \n

                            • Purple heather inset full zip jacket.
                            • Full zip hoodie.
                            • Contrast binding along the zipper, hood and sleeves.
                            • Inseam pockets for storage.
                            • Thumbholes for comfortable fit.

                            ","image":"/w/j/wj07-red_main.jpg","small_image":"/w/j/wj07-red_main.jpg","thumbnail":"/w/j/wj07-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"inez-full-zip-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"inez-full-zip-jacket-m-red-1298","links":{},"stock":{"item_id":1298,"product_id":1298,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj07-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/inez-full-zip-jacket-m-red-1298.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1255","_score":1,"_source":{"id":1255,"sku":"WJ03-XL-Orange","name":"Augusta Pullover Jacket-XL-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"augusta-pullover-jacket-xl-orange-1255","links":{},"stock":{"item_id":1255,"product_id":1255,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xl-orange-1255.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1254","_score":1,"_source":{"id":1254,"sku":"WJ03-XL-Blue","name":"Augusta Pullover Jacket-XL-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"augusta-pullover-jacket-xl-blue-1254","links":{},"stock":{"item_id":1254,"product_id":1254,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xl-blue-1254.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1271","_score":1,"_source":{"id":1271,"sku":"WJ04-XL-Red","name":"Ingrid Running Jacket-XL-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ingrid-running-jacket-xl-red-1271","links":{},"stock":{"item_id":1271,"product_id":1271,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xl-red-1271.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1272","_score":1,"_source":{"id":1272,"sku":"WJ04-XL-White","name":"Ingrid Running Jacket-XL-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ingrid-running-jacket-xl-white-1272","links":{},"stock":{"item_id":1272,"product_id":1272,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xl-white-1272.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1270","_score":1,"_source":{"id":1270,"sku":"WJ04-XL-Orange","name":"Ingrid Running Jacket-XL-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ingrid-running-jacket-xl-orange-1270","links":{},"stock":{"item_id":1270,"product_id":1270,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xl-orange-1270.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1269","_score":1,"_source":{"id":1269,"sku":"WJ04-L-White","name":"Ingrid Running Jacket-L-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ingrid-running-jacket-l-white-1269","links":{},"stock":{"item_id":1269,"product_id":1269,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-l-white-1269.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1256","_score":1,"_source":{"id":1256,"sku":"WJ03-XL-Red","name":"Augusta Pullover Jacket-XL-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"augusta-pullover-jacket-xl-red-1256","links":{},"stock":{"item_id":1256,"product_id":1256,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-xl-red-1256.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1283","_score":1,"_source":{"id":1283,"sku":"WJ05-L-Brown","name":"Riona Full Zip Jacket-L-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-l-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"riona-full-zip-jacket-l-brown-1283","links":{},"stock":{"item_id":1283,"product_id":1283,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-l-brown-1283.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1260","_score":1,"_source":{"id":1260,"sku":"WJ04-XS-White","name":"Ingrid Running Jacket-XS-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ingrid-running-jacket-xs-white-1260","links":{},"stock":{"item_id":1260,"product_id":1260,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xs-white-1260.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1267","_score":1,"_source":{"id":1267,"sku":"WJ04-L-Orange","name":"Ingrid Running Jacket-L-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ingrid-running-jacket-l-orange-1267","links":{},"stock":{"item_id":1267,"product_id":1267,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-l-orange-1267.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1266","_score":1,"_source":{"id":1266,"sku":"WJ04-M-White","name":"Ingrid Running Jacket-M-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ingrid-running-jacket-m-white-1266","links":{},"stock":{"item_id":1266,"product_id":1266,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-m-white-1266.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1278","_score":1,"_source":{"id":1278,"sku":"WJ05-S-Green","name":"Riona Full Zip Jacket-S-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-green_main.jpg","small_image":"/w/j/wj05-green_main.jpg","thumbnail":"/w/j/wj05-green_main.jpg","color":"53","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"riona-full-zip-jacket-s-green-1278","links":{},"stock":{"item_id":1278,"product_id":1278,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj05-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-s-green-1278.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1252","_score":1,"_source":{"id":1252,"sku":"WJ03-L-Orange","name":"Augusta Pullover Jacket-L-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-orange_main.jpg","small_image":"/w/j/wj03-orange_main.jpg","thumbnail":"/w/j/wj03-orange_main.jpg","color":"56","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"augusta-pullover-jacket-l-orange-1252","links":{},"stock":{"item_id":1252,"product_id":1252,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj03-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-l-orange-1252.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1259","_score":1,"_source":{"id":1259,"sku":"WJ04-XS-Red","name":"Ingrid Running Jacket-XS-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ingrid-running-jacket-xs-red-1259","links":{},"stock":{"item_id":1259,"product_id":1259,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xs-red-1259.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1251","_score":1,"_source":{"id":1251,"sku":"WJ03-L-Blue","name":"Augusta Pullover Jacket-L-Blue","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:13","updated_at":"2017-11-06 12:17:13","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-blue_main.jpg","small_image":"/w/j/wj03-blue_main.jpg","thumbnail":"/w/j/wj03-blue_main.jpg","color":"50","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"augusta-pullover-jacket-l-blue-1251","links":{},"stock":{"item_id":1251,"product_id":1251,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-l-blue-1251.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1262","_score":1,"_source":{"id":1262,"sku":"WJ04-S-Red","name":"Ingrid Running Jacket-S-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ingrid-running-jacket-s-red-1262","links":{},"stock":{"item_id":1262,"product_id":1262,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-s-red-1262.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1263","_score":1,"_source":{"id":1263,"sku":"WJ04-S-White","name":"Ingrid Running Jacket-S-White","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-white_main.jpg","small_image":"/w/j/wj04-white_main.jpg","thumbnail":"/w/j/wj04-white_main.jpg","color":"59","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ingrid-running-jacket-s-white-1263","links":{},"stock":{"item_id":1263,"product_id":1263,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj04-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj04-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj04-white_alternate.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj04-white_back.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-s-white-1263.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1264","_score":1,"_source":{"id":1264,"sku":"WJ04-M-Orange","name":"Ingrid Running Jacket-M-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ingrid-running-jacket-m-orange-1264","links":{},"stock":{"item_id":1264,"product_id":1264,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-m-orange-1264.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1258","_score":1,"_source":{"id":1258,"sku":"WJ04-XS-Orange","name":"Ingrid Running Jacket-XS-Orange","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-orange_main.jpg","small_image":"/w/j/wj04-orange_main.jpg","thumbnail":"/w/j/wj04-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ingrid-running-jacket-xs-orange-1258","links":{},"stock":{"item_id":1258,"product_id":1258,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj04-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-xs-orange-1258.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1265","_score":1,"_source":{"id":1265,"sku":"WJ04-M-Red","name":"Ingrid Running Jacket-M-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ingrid-running-jacket-m-red-1265","links":{},"stock":{"item_id":1265,"product_id":1265,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-m-red-1265.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1268","_score":1,"_source":{"id":1268,"sku":"WJ04-L-Red","name":"Ingrid Running Jacket-L-Red","attribute_set_id":9,"price":84,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":84,"max_price":84,"max_regular_price":84,"minimal_regular_price":84,"special_price":null,"minimal_price":84,"regular_price":84,"description":"

                            The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
                            • Slim fit.
                            • Moisture-wicking fabric.
                            • Two side pockets.
                            • Zippered pocket at back waist.
                            • Machine wash/dry.
                            • Ivory specked full zip

                            ","image":"/w/j/wj04-red_main.jpg","small_image":"/w/j/wj04-red_main.jpg","thumbnail":"/w/j/wj04-red_main.jpg","color":"58","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ingrid-running-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ingrid-running-jacket-l-red-1268","links":{},"stock":{"item_id":1268,"product_id":1268,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj04-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/ingrid-running-jacket-l-red-1268.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1274","_score":1,"_source":{"id":1274,"sku":"WJ05-XS-Brown","name":"Riona Full Zip Jacket-XS-Brown","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                            The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

                            \n

                            • Brown heather full zip rouched jacket.
                            • Side hand pockets for extra storage.
                            • High collar.
                            • Thick cuffs for extra coverage.
                            • Durable, shape retention material to longer wear.

                            ","image":"/w/j/wj05-brown_main.jpg","small_image":"/w/j/wj05-brown_main.jpg","thumbnail":"/w/j/wj05-brown_main.jpg","color":"51","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"riona-full-zip-jacket-xs-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"riona-full-zip-jacket-xs-brown-1274","links":{},"stock":{"item_id":1274,"product_id":1274,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj05-brown_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj05-brown_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj05-brown_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/riona-full-zip-jacket-xs-brown-1274.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1253","_score":1,"_source":{"id":1253,"sku":"WJ03-L-Red","name":"Augusta Pullover Jacket-L-Red","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:14","updated_at":"2017-11-06 12:17:14","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            It's hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

                            \n

                            • Pink half-zip pullover.
                            • Front pouch pockets.
                            • Fold-down collar.

                            ","image":"/w/j/wj03-red_main.jpg","small_image":"/w/j/wj03-red_main.jpg","thumbnail":"/w/j/wj03-red_main.jpg","color":"58","category_ids":["23"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"augusta-pullover-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"augusta-pullover-jacket-l-red-1253","links":{},"stock":{"item_id":1253,"product_id":1253,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj03-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj03-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj03-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"}],"url_path":"women/tops-women/jackets-women/jackets-23/augusta-pullover-jacket-l-red-1253.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1339","_score":1,"_source":{"id":1339,"sku":"WJ10-XS-Orange","name":"Nadia Elements Shell-XS-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nadia-elements-shell-xs-orange-1339","links":{},"stock":{"item_id":1339,"product_id":1339,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xs-orange-1339.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1319","_score":1,"_source":{"id":1319,"sku":"WJ08-XL-Orange","name":"Adrienne Trek Jacket-XL-Orange","attribute_set_id":9,"price":57,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":57,"max_price":57,"max_regular_price":57,"minimal_regular_price":57,"special_price":null,"minimal_price":57,"regular_price":57,"description":"

                            You're ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

                            \n

                            • gray 1/4 zip pullover.
                            • Comfortable, relaxed fit.
                            • Front zip for venting.
                            • Spacious, kangaroo pockets.
                            • 27\" body length.
                            • 95% Organic Cotton / 5% Spandex.

                            ","image":"/w/j/wj08-orange_main.jpg","small_image":"/w/j/wj08-orange_main.jpg","thumbnail":"/w/j/wj08-orange_main.jpg","color":"56","category_ids":[23,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"adrienne-trek-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"adrienne-trek-jacket-xl-orange-1319","links":{},"stock":{"item_id":1319,"product_id":1319,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj08-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/adrienne-trek-jacket-xl-orange-1319.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1345","_score":1,"_source":{"id":1345,"sku":"WJ10-M-Orange","name":"Nadia Elements Shell-M-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nadia-elements-shell-m-orange-1345","links":{},"stock":{"item_id":1345,"product_id":1345,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-m-orange-1345.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1342","_score":1,"_source":{"id":1342,"sku":"WJ10-S-Orange","name":"Nadia Elements Shell-S-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nadia-elements-shell-s-orange-1342","links":{},"stock":{"item_id":1342,"product_id":1342,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-s-orange-1342.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1343","_score":1,"_source":{"id":1343,"sku":"WJ10-S-Yellow","name":"Nadia Elements Shell-S-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nadia-elements-shell-s-yellow-1343","links":{},"stock":{"item_id":1343,"product_id":1343,"stock_id":1,"qty":78,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-s-yellow-1343.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1340","_score":1,"_source":{"id":1340,"sku":"WJ10-XS-Yellow","name":"Nadia Elements Shell-XS-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:15","updated_at":"2017-11-06 12:17:15","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nadia-elements-shell-xs-yellow-1340","links":{},"stock":{"item_id":1340,"product_id":1340,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xs-yellow-1340.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1349","_score":1,"_source":{"id":1349,"sku":"WJ10-L-Yellow","name":"Nadia Elements Shell-L-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nadia-elements-shell-l-yellow-1349","links":{},"stock":{"item_id":1349,"product_id":1349,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-l-yellow-1349.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1347","_score":1,"_source":{"id":1347,"sku":"WJ10-L-Black","name":"Nadia Elements Shell-L-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-black_main.jpg","small_image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nadia-elements-shell-l-black-1347","links":{},"stock":{"item_id":1347,"product_id":1347,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj10-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-l-black-1347.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1446","_score":1,"_source":{"id":1446,"sku":"WS04-XL-Blue","name":"Layla Tee-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"layla-tee-xl-blue-1446","links":{},"stock":{"item_id":1446,"product_id":1446,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xl-blue-1446.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1432","_score":1,"_source":{"id":1432,"sku":"WS03-XL-Red","name":"Iris Workout Top-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"iris-workout-top-xl-red-1432","links":{},"stock":{"item_id":1432,"product_id":1432,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xl-red-1432.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1438","_score":1,"_source":{"id":1438,"sku":"WS04-S-Green","name":"Layla Tee-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"layla-tee-s-green-1438","links":{},"stock":{"item_id":1438,"product_id":1438,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-s-green-1438.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1441","_score":1,"_source":{"id":1441,"sku":"WS04-M-Green","name":"Layla Tee-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"layla-tee-m-green-1441","links":{},"stock":{"item_id":1441,"product_id":1441,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-m-green-1441.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1442","_score":1,"_source":{"id":1442,"sku":"WS04-M-Red","name":"Layla Tee-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"layla-tee-m-red-1442","links":{},"stock":{"item_id":1442,"product_id":1442,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-m-red-1442.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1447","_score":1,"_source":{"id":1447,"sku":"WS04-XL-Green","name":"Layla Tee-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"layla-tee-xl-green-1447","links":{},"stock":{"item_id":1447,"product_id":1447,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xl-green-1447.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1443","_score":1,"_source":{"id":1443,"sku":"WS04-L-Blue","name":"Layla Tee-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"layla-tee-l-blue-1443","links":{},"stock":{"item_id":1443,"product_id":1443,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-l-blue-1443.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1423","_score":1,"_source":{"id":1423,"sku":"WS03-S-Red","name":"Iris Workout Top-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"iris-workout-top-s-red-1423","links":{},"stock":{"item_id":1423,"product_id":1423,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-s-red-1423.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1450","_score":1,"_source":{"id":1450,"sku":"WS06-XS-Gray","name":"Elisa EverCool™ Tee-XS-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"elisa-evercool-and-trade-tee-xs-gray-1450","links":{},"stock":{"item_id":1450,"product_id":1450,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-01-09 15:01:40","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xs-gray-1450.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1417","_score":1,"_source":{"id":1417,"sku":"WS02","name":"Gabrielle Micro Sleeve Top","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"gabrielle-micro-sleeve-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,146],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"gabrielle-micro-sleeve-top-1417","links":{},"stock":{"item_id":1417,"product_id":1417,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","small_image":"/w/s/ws02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gabrielle-micro-sleeve-top-xs-blue","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"167","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Gabrielle Micro Sleeve Top-XS-Blue","id":1402,"category_ids":["25","33","8","2"],"sku":"WS02-XS-Blue","max_regular_price":28,"status":1},{"image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","small_image":"/w/s/ws02-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gabrielle-micro-sleeve-top-xs-green","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"167","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Gabrielle Micro Sleeve Top-XS-Green","id":1403,"category_ids":["25","33","8","2"],"sku":"WS02-XS-Green","max_regular_price":28,"status":1},{"image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","small_image":"/w/s/ws02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gabrielle-micro-sleeve-top-xs-red","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"167","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Gabrielle Micro Sleeve Top-XS-Red","id":1404,"category_ids":["25","33","8","2"],"sku":"WS02-XS-Red","max_regular_price":28,"status":1},{"image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","small_image":"/w/s/ws02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gabrielle-micro-sleeve-top-s-blue","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"168","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Gabrielle Micro Sleeve Top-S-Blue","id":1405,"category_ids":["25","33","8","2"],"sku":"WS02-S-Blue","max_regular_price":28,"status":1},{"image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","small_image":"/w/s/ws02-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gabrielle-micro-sleeve-top-s-green","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"168","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Gabrielle Micro Sleeve Top-S-Green","id":1406,"category_ids":["25","33","8","2"],"sku":"WS02-S-Green","max_regular_price":28,"status":1},{"image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","small_image":"/w/s/ws02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gabrielle-micro-sleeve-top-s-red","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"168","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Gabrielle Micro Sleeve Top-S-Red","id":1407,"category_ids":["25","33","8","2"],"sku":"WS02-S-Red","max_regular_price":28,"status":1},{"image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","small_image":"/w/s/ws02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gabrielle-micro-sleeve-top-m-blue","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"169","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Gabrielle Micro Sleeve Top-M-Blue","id":1408,"category_ids":["25","33","8","2"],"sku":"WS02-M-Blue","max_regular_price":28,"status":1},{"image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","small_image":"/w/s/ws02-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gabrielle-micro-sleeve-top-m-green","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"169","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Gabrielle Micro Sleeve Top-M-Green","id":1409,"category_ids":["25","33","8","2"],"sku":"WS02-M-Green","max_regular_price":28,"status":1},{"image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","small_image":"/w/s/ws02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gabrielle-micro-sleeve-top-m-red","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"169","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Gabrielle Micro Sleeve Top-M-Red","id":1410,"category_ids":["25","33","8","2"],"sku":"WS02-M-Red","max_regular_price":28,"status":1},{"image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","small_image":"/w/s/ws02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gabrielle-micro-sleeve-top-l-blue","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"170","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Gabrielle Micro Sleeve Top-L-Blue","id":1411,"category_ids":["25","33","8","2"],"sku":"WS02-L-Blue","max_regular_price":28,"status":1},{"image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","small_image":"/w/s/ws02-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gabrielle-micro-sleeve-top-l-green","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"170","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Gabrielle Micro Sleeve Top-L-Green","id":1412,"category_ids":["25","33","8","2"],"sku":"WS02-L-Green","max_regular_price":28,"status":1},{"image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","small_image":"/w/s/ws02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gabrielle-micro-sleeve-top-l-red","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"170","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Gabrielle Micro Sleeve Top-L-Red","id":1413,"category_ids":["25","33","8","2"],"sku":"WS02-L-Red","max_regular_price":28,"status":1},{"image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","small_image":"/w/s/ws02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gabrielle-micro-sleeve-top-xl-blue","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"171","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Gabrielle Micro Sleeve Top-XL-Blue","id":1414,"category_ids":["25","33","8","2"],"sku":"WS02-XL-Blue","max_regular_price":28,"status":1},{"image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","small_image":"/w/s/ws02-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gabrielle-micro-sleeve-top-xl-green","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"171","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Gabrielle Micro Sleeve Top-XL-Green","id":1415,"category_ids":["25","33","8","2"],"sku":"WS02-XL-Green","max_regular_price":28,"status":1},{"image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","small_image":"/w/s/ws02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gabrielle-micro-sleeve-top-xl-red","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"171","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Gabrielle Micro Sleeve Top-XL-Red","id":1416,"category_ids":["25","33","8","2"],"sku":"WS02-XL-Red","max_regular_price":28,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1417,"id":195,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1417,"id":194,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-1417.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1401","_score":1,"_source":{"id":1401,"sku":"WJ12","name":"Olivia 1/4 Zip Light Jacket","attribute_set_id":9,"price":77,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"olivia-1-4-zip-light-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,37,33],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[118,137,120,125,128],"pattern":"197","climate":[208,209,210],"slug":"olivia-14-zip-light-jacket-1401","links":{},"stock":{"item_id":1401,"product_id":1401,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","small_image":"/w/j/wj12-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"olivia-1-4-zip-light-jacket-xs-black","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":77,"name":"Olivia 1/4 Zip Light Jacket-XS-Black","id":1386,"category_ids":["23","30","35","2"],"sku":"WJ12-XS-Black","status":1},{"image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","small_image":"/w/j/wj12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"olivia-1-4-zip-light-jacket-xs-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":77,"name":"Olivia 1/4 Zip Light Jacket-XS-Blue","id":1387,"category_ids":["23","30","35","2"],"sku":"WJ12-XS-Blue","status":1},{"image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","small_image":"/w/j/wj12-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"olivia-1-4-zip-light-jacket-xs-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":77,"name":"Olivia 1/4 Zip Light Jacket-XS-Purple","id":1388,"category_ids":["23","30","35","2"],"sku":"WJ12-XS-Purple","status":1},{"image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","small_image":"/w/j/wj12-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"olivia-1-4-zip-light-jacket-s-black","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":77,"name":"Olivia 1/4 Zip Light Jacket-S-Black","id":1389,"category_ids":["23","30","35","2"],"sku":"WJ12-S-Black","status":1},{"image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","small_image":"/w/j/wj12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"olivia-1-4-zip-light-jacket-s-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":77,"name":"Olivia 1/4 Zip Light Jacket-S-Blue","id":1390,"category_ids":["23","30","35","2"],"sku":"WJ12-S-Blue","status":1},{"image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","small_image":"/w/j/wj12-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"olivia-1-4-zip-light-jacket-s-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":77,"name":"Olivia 1/4 Zip Light Jacket-S-Purple","id":1391,"category_ids":["23","30","35","2"],"sku":"WJ12-S-Purple","status":1},{"image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","small_image":"/w/j/wj12-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"olivia-1-4-zip-light-jacket-m-black","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":77,"name":"Olivia 1/4 Zip Light Jacket-M-Black","id":1392,"category_ids":["23","30","35","2"],"sku":"WJ12-M-Black","status":1},{"image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","small_image":"/w/j/wj12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"olivia-1-4-zip-light-jacket-m-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":77,"name":"Olivia 1/4 Zip Light Jacket-M-Blue","id":1393,"category_ids":["23","30","35","2"],"sku":"WJ12-M-Blue","status":1},{"image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","small_image":"/w/j/wj12-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"olivia-1-4-zip-light-jacket-m-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":77,"name":"Olivia 1/4 Zip Light Jacket-M-Purple","id":1394,"category_ids":["23","30","35","2"],"sku":"WJ12-M-Purple","status":1},{"image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","small_image":"/w/j/wj12-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"olivia-1-4-zip-light-jacket-l-black","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":77,"name":"Olivia 1/4 Zip Light Jacket-L-Black","id":1395,"category_ids":["23","30","35","2"],"sku":"WJ12-L-Black","status":1},{"image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","small_image":"/w/j/wj12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"olivia-1-4-zip-light-jacket-l-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":77,"name":"Olivia 1/4 Zip Light Jacket-L-Blue","id":1396,"category_ids":["23","30","35","2"],"sku":"WJ12-L-Blue","status":1},{"image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","small_image":"/w/j/wj12-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"olivia-1-4-zip-light-jacket-l-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":77,"name":"Olivia 1/4 Zip Light Jacket-L-Purple","id":1397,"category_ids":["23","30","35","2"],"sku":"WJ12-L-Purple","status":1},{"image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","small_image":"/w/j/wj12-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"olivia-1-4-zip-light-jacket-xl-black","required_options":"0","msrp_display_actual_price_type":"0","size":"171","price":77,"name":"Olivia 1/4 Zip Light Jacket-XL-Black","id":1398,"category_ids":["23","30","35","2"],"sku":"WJ12-XL-Black","status":1},{"image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","small_image":"/w/j/wj12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"olivia-1-4-zip-light-jacket-xl-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"171","price":77,"name":"Olivia 1/4 Zip Light Jacket-XL-Blue","id":1399,"category_ids":["23","30","35","2"],"sku":"WJ12-XL-Blue","status":1},{"image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","small_image":"/w/j/wj12-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"olivia-1-4-zip-light-jacket-xl-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"171","price":77,"name":"Olivia 1/4 Zip Light Jacket-XL-Purple","id":1400,"category_ids":["23","30","35","2"],"sku":"WJ12-XL-Purple","status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":1401,"id":193,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1401,"id":192,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-1401.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1433","_score":1,"_source":{"id":1433,"sku":"WS03","name":"Iris Workout Top","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"iris-workout-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,38,151,155],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"iris-workout-top-1433","links":{},"stock":{"item_id":1433,"product_id":1433,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","small_image":"/w/s/ws03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"iris-workout-top-xs-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"167","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Iris Workout Top-XS-Blue","id":1418,"category_ids":["25","33","35","2"],"sku":"WS03-XS-Blue","max_regular_price":29,"status":1},{"image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","small_image":"/w/s/ws03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"iris-workout-top-xs-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"167","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Iris Workout Top-XS-Green","id":1419,"category_ids":["25","33","35","2"],"sku":"WS03-XS-Green","max_regular_price":29,"status":1},{"image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","small_image":"/w/s/ws03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"iris-workout-top-xs-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"167","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Iris Workout Top-XS-Red","id":1420,"category_ids":["25","33","35","2"],"sku":"WS03-XS-Red","max_regular_price":29,"status":1},{"image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","small_image":"/w/s/ws03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"iris-workout-top-s-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"168","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Iris Workout Top-S-Blue","id":1421,"category_ids":["25","33","35","2"],"sku":"WS03-S-Blue","max_regular_price":29,"status":1},{"image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","small_image":"/w/s/ws03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"iris-workout-top-s-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"168","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Iris Workout Top-S-Green","id":1422,"category_ids":["25","33","35","2"],"sku":"WS03-S-Green","max_regular_price":29,"status":1},{"image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","small_image":"/w/s/ws03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"iris-workout-top-s-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"168","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Iris Workout Top-S-Red","id":1423,"category_ids":["25","33","35","2"],"sku":"WS03-S-Red","max_regular_price":29,"status":1},{"image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","small_image":"/w/s/ws03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"iris-workout-top-m-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Iris Workout Top-M-Blue","id":1424,"category_ids":["25","33","35","2"],"sku":"WS03-M-Blue","max_regular_price":29,"status":1},{"image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","small_image":"/w/s/ws03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"iris-workout-top-m-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Iris Workout Top-M-Green","id":1425,"category_ids":["25","33","35","2"],"sku":"WS03-M-Green","max_regular_price":29,"status":1},{"image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","small_image":"/w/s/ws03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"iris-workout-top-m-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Iris Workout Top-M-Red","id":1426,"category_ids":["25","33","35","2"],"sku":"WS03-M-Red","max_regular_price":29,"status":1},{"image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","small_image":"/w/s/ws03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"iris-workout-top-l-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Iris Workout Top-L-Blue","id":1427,"category_ids":["25","33","35","2"],"sku":"WS03-L-Blue","max_regular_price":29,"status":1},{"image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","small_image":"/w/s/ws03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"iris-workout-top-l-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Iris Workout Top-L-Green","id":1428,"category_ids":["25","33","35","2"],"sku":"WS03-L-Green","max_regular_price":29,"status":1},{"image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","small_image":"/w/s/ws03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"iris-workout-top-l-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Iris Workout Top-L-Red","id":1429,"category_ids":["25","33","35","2"],"sku":"WS03-L-Red","max_regular_price":29,"status":1},{"image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","small_image":"/w/s/ws03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"iris-workout-top-xl-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Iris Workout Top-XL-Blue","id":1430,"category_ids":["25","33","35","2"],"sku":"WS03-XL-Blue","max_regular_price":29,"status":1},{"image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","small_image":"/w/s/ws03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"iris-workout-top-xl-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Iris Workout Top-XL-Green","id":1431,"category_ids":["25","33","35","2"],"sku":"WS03-XL-Green","max_regular_price":29,"status":1},{"image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","small_image":"/w/s/ws03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"iris-workout-top-xl-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Iris Workout Top-XL-Red","id":1432,"category_ids":["25","33","35","2"],"sku":"WS03-XL-Red","max_regular_price":29,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1433,"id":197,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1433,"id":196,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-1433.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1449","_score":1,"_source":{"id":1449,"sku":"WS04","name":"Layla Tee","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"layla-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"33","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"layla-tee-1449","links":{},"stock":{"item_id":1449,"product_id":1449,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","small_image":"/w/s/ws04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"layla-tee-xs-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"167","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Layla Tee-XS-Blue","id":1434,"category_ids":["25","33","8","36","2"],"sku":"WS04-XS-Blue","max_regular_price":29,"status":1},{"image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","small_image":"/w/s/ws04-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"layla-tee-xs-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"167","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Layla Tee-XS-Green","id":1435,"category_ids":["25","33","8","36","2"],"sku":"WS04-XS-Green","max_regular_price":29,"status":1},{"image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","small_image":"/w/s/ws04-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"layla-tee-xs-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"167","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Layla Tee-XS-Red","id":1436,"category_ids":["25","33","8","36","2"],"sku":"WS04-XS-Red","max_regular_price":29,"status":1},{"image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","small_image":"/w/s/ws04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"layla-tee-s-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"168","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Layla Tee-S-Blue","id":1437,"category_ids":["25","33","8","36","2"],"sku":"WS04-S-Blue","max_regular_price":29,"status":1},{"image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","small_image":"/w/s/ws04-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"layla-tee-s-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"168","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Layla Tee-S-Green","id":1438,"category_ids":["25","33","8","36","2"],"sku":"WS04-S-Green","max_regular_price":29,"status":1},{"image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","small_image":"/w/s/ws04-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"layla-tee-s-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"168","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Layla Tee-S-Red","id":1439,"category_ids":["25","33","8","36","2"],"sku":"WS04-S-Red","max_regular_price":29,"status":1},{"image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","small_image":"/w/s/ws04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"layla-tee-m-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Layla Tee-M-Blue","id":1440,"category_ids":["25","33","8","36","2"],"sku":"WS04-M-Blue","max_regular_price":29,"status":1},{"image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","small_image":"/w/s/ws04-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"layla-tee-m-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Layla Tee-M-Green","id":1441,"category_ids":["25","33","8","36","2"],"sku":"WS04-M-Green","max_regular_price":29,"status":1},{"image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","small_image":"/w/s/ws04-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"layla-tee-m-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Layla Tee-M-Red","id":1442,"category_ids":["25","33","8","36","2"],"sku":"WS04-M-Red","max_regular_price":29,"status":1},{"image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","small_image":"/w/s/ws04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"layla-tee-l-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Layla Tee-L-Blue","id":1443,"category_ids":["25","33","8","36","2"],"sku":"WS04-L-Blue","max_regular_price":29,"status":1},{"image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","small_image":"/w/s/ws04-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"layla-tee-l-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Layla Tee-L-Green","id":1444,"category_ids":["25","33","8","36","2"],"sku":"WS04-L-Green","max_regular_price":29,"status":1},{"image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","small_image":"/w/s/ws04-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"layla-tee-l-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Layla Tee-L-Red","id":1445,"category_ids":["25","33","8","36","2"],"sku":"WS04-L-Red","max_regular_price":29,"status":1},{"image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","small_image":"/w/s/ws04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"layla-tee-xl-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Layla Tee-XL-Blue","id":1446,"category_ids":["25","33","8","36","2"],"sku":"WS04-XL-Blue","max_regular_price":29,"status":1},{"image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","small_image":"/w/s/ws04-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"layla-tee-xl-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Layla Tee-XL-Green","id":1447,"category_ids":["25","33","8","36","2"],"sku":"WS04-XL-Green","max_regular_price":29,"status":1},{"image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","small_image":"/w/s/ws04-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"layla-tee-xl-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Layla Tee-XL-Red","id":1448,"category_ids":["25","33","8","36","2"],"sku":"WS04-XL-Red","max_regular_price":29,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1449,"id":199,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1449,"id":198,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-1449.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1389","_score":1,"_source":{"id":1389,"sku":"WJ12-S-Black","name":"Olivia 1/4 Zip Light Jacket-S-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"olivia-14-zip-light-jacket-s-black-1389","links":{},"stock":{"item_id":1389,"product_id":1389,"stock_id":1,"qty":60,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-s-black-1389.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1386","_score":1,"_source":{"id":1386,"sku":"WJ12-XS-Black","name":"Olivia 1/4 Zip Light Jacket-XS-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"olivia-14-zip-light-jacket-xs-black-1386","links":{},"stock":{"item_id":1386,"product_id":1386,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-05-10 04:47:58","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xs-black-1386.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1395","_score":1,"_source":{"id":1395,"sku":"WJ12-L-Black","name":"Olivia 1/4 Zip Light Jacket-L-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"olivia-14-zip-light-jacket-l-black-1395","links":{},"stock":{"item_id":1395,"product_id":1395,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-l-black-1395.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1393","_score":1,"_source":{"id":1393,"sku":"WJ12-M-Blue","name":"Olivia 1/4 Zip Light Jacket-M-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"olivia-14-zip-light-jacket-m-blue-1393","links":{},"stock":{"item_id":1393,"product_id":1393,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-m-blue-1393.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1391","_score":1,"_source":{"id":1391,"sku":"WJ12-S-Purple","name":"Olivia 1/4 Zip Light Jacket-S-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"olivia-14-zip-light-jacket-s-purple-1391","links":{},"stock":{"item_id":1391,"product_id":1391,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-s-purple-1391.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1399","_score":1,"_source":{"id":1399,"sku":"WJ12-XL-Blue","name":"Olivia 1/4 Zip Light Jacket-XL-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"olivia-14-zip-light-jacket-xl-blue-1399","links":{},"stock":{"item_id":1399,"product_id":1399,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xl-blue-1399.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1369","_score":1,"_source":{"id":1369,"sku":"WJ11","name":"Neve Studio Dance Jacket","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"neve-studio-dance-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,36,37,156],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":[118,137,121,120,125,128,130],"pattern":"197","climate":[205,206,208],"slug":"neve-studio-dance-jacket-1369","links":{},"stock":{"item_id":1369,"product_id":1369,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","small_image":"/w/j/wj11-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"neve-studio-dance-jacket-xs-black","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"167","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Neve Studio Dance Jacket-XS-Black","id":1354,"category_ids":["23","8","2"],"sku":"WJ11-XS-Black","max_regular_price":69,"status":1},{"image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","small_image":"/w/j/wj11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"neve-studio-dance-jacket-xs-blue","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"167","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Neve Studio Dance Jacket-XS-Blue","id":1355,"category_ids":["23","8","2"],"sku":"WJ11-XS-Blue","max_regular_price":69,"status":1},{"image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","small_image":"/w/j/wj11-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"neve-studio-dance-jacket-xs-orange","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"167","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Neve Studio Dance Jacket-XS-Orange","id":1356,"category_ids":["23","8","2"],"sku":"WJ11-XS-Orange","max_regular_price":69,"status":1},{"image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","small_image":"/w/j/wj11-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"neve-studio-dance-jacket-s-black","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"168","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Neve Studio Dance Jacket-S-Black","id":1357,"category_ids":["23","8","2"],"sku":"WJ11-S-Black","max_regular_price":69,"status":1},{"image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","small_image":"/w/j/wj11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"neve-studio-dance-jacket-s-blue","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"168","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Neve Studio Dance Jacket-S-Blue","id":1358,"category_ids":["23","8","2"],"sku":"WJ11-S-Blue","max_regular_price":69,"status":1},{"image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","small_image":"/w/j/wj11-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"neve-studio-dance-jacket-s-orange","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"168","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Neve Studio Dance Jacket-S-Orange","id":1359,"category_ids":["23","8","2"],"sku":"WJ11-S-Orange","max_regular_price":69,"status":1},{"image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","small_image":"/w/j/wj11-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"neve-studio-dance-jacket-m-black","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"169","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Neve Studio Dance Jacket-M-Black","id":1360,"category_ids":["23","8","2"],"sku":"WJ11-M-Black","max_regular_price":69,"status":1},{"image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","small_image":"/w/j/wj11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"neve-studio-dance-jacket-m-blue","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"169","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Neve Studio Dance Jacket-M-Blue","id":1361,"category_ids":["23","8","2"],"sku":"WJ11-M-Blue","max_regular_price":69,"status":1},{"image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","small_image":"/w/j/wj11-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"neve-studio-dance-jacket-m-orange","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"169","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Neve Studio Dance Jacket-M-Orange","id":1362,"category_ids":["23","8","2"],"sku":"WJ11-M-Orange","max_regular_price":69,"status":1},{"image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","small_image":"/w/j/wj11-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"neve-studio-dance-jacket-l-black","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"170","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Neve Studio Dance Jacket-L-Black","id":1363,"category_ids":["23","8","2"],"sku":"WJ11-L-Black","max_regular_price":69,"status":1},{"image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","small_image":"/w/j/wj11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"neve-studio-dance-jacket-l-blue","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"170","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Neve Studio Dance Jacket-L-Blue","id":1364,"category_ids":["23","8","2"],"sku":"WJ11-L-Blue","max_regular_price":69,"status":1},{"image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","small_image":"/w/j/wj11-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"neve-studio-dance-jacket-l-orange","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"170","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Neve Studio Dance Jacket-L-Orange","id":1365,"category_ids":["23","8","2"],"sku":"WJ11-L-Orange","max_regular_price":69,"status":1},{"image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","small_image":"/w/j/wj11-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"neve-studio-dance-jacket-xl-black","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"171","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Neve Studio Dance Jacket-XL-Black","id":1366,"category_ids":["23","8","2"],"sku":"WJ11-XL-Black","max_regular_price":69,"status":1},{"image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","small_image":"/w/j/wj11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"neve-studio-dance-jacket-xl-blue","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"171","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Neve Studio Dance Jacket-XL-Blue","id":1367,"category_ids":["23","8","2"],"sku":"WJ11-XL-Blue","max_regular_price":69,"status":1},{"image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","small_image":"/w/j/wj11-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"neve-studio-dance-jacket-xl-orange","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"171","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Neve Studio Dance Jacket-XL-Orange","id":1368,"category_ids":["23","8","2"],"sku":"WJ11-XL-Orange","max_regular_price":69,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":1369,"id":189,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1369,"id":188,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-1369.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1353","_score":1,"_source":{"id":1353,"sku":"WJ10","name":"Nadia Elements Shell","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"nadia-elements-shell","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38,156],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_general":[117,118,123,124,126,129],"pattern":"197","climate":[204,206,207,208,210],"slug":"nadia-elements-shell-1353","links":{},"stock":{"item_id":1353,"product_id":1353,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","small_image":"/w/j/wj10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nadia-elements-shell-xs-black","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":69,"name":"Nadia Elements Shell-XS-Black","id":1338,"category_ids":["23","8","35","2"],"sku":"WJ10-XS-Black","status":1},{"image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","small_image":"/w/j/wj10-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nadia-elements-shell-xs-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":69,"name":"Nadia Elements Shell-XS-Orange","id":1339,"category_ids":["23","8","35","2"],"sku":"WJ10-XS-Orange","status":1},{"image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","small_image":"/w/j/wj10-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nadia-elements-shell-xs-yellow","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":69,"name":"Nadia Elements Shell-XS-Yellow","id":1340,"category_ids":["23","8","35","2"],"sku":"WJ10-XS-Yellow","status":1},{"image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","small_image":"/w/j/wj10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nadia-elements-shell-s-black","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":69,"name":"Nadia Elements Shell-S-Black","id":1341,"category_ids":["23","8","35","2"],"sku":"WJ10-S-Black","status":1},{"image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","small_image":"/w/j/wj10-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nadia-elements-shell-s-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":69,"name":"Nadia Elements Shell-S-Orange","id":1342,"category_ids":["23","8","35","2"],"sku":"WJ10-S-Orange","status":1},{"image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","small_image":"/w/j/wj10-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nadia-elements-shell-s-yellow","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":69,"name":"Nadia Elements Shell-S-Yellow","id":1343,"category_ids":["23","8","35","2"],"sku":"WJ10-S-Yellow","status":1},{"image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","small_image":"/w/j/wj10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nadia-elements-shell-m-black","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":69,"name":"Nadia Elements Shell-M-Black","id":1344,"category_ids":["23","8","35","2"],"sku":"WJ10-M-Black","status":1},{"image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","small_image":"/w/j/wj10-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nadia-elements-shell-m-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":69,"name":"Nadia Elements Shell-M-Orange","id":1345,"category_ids":["23","8","35","2"],"sku":"WJ10-M-Orange","status":1},{"image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","small_image":"/w/j/wj10-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nadia-elements-shell-m-yellow","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":69,"name":"Nadia Elements Shell-M-Yellow","id":1346,"category_ids":["23","8","35","2"],"sku":"WJ10-M-Yellow","status":1},{"image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","small_image":"/w/j/wj10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nadia-elements-shell-l-black","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":69,"name":"Nadia Elements Shell-L-Black","id":1347,"category_ids":["23","8","35","2"],"sku":"WJ10-L-Black","status":1},{"image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","small_image":"/w/j/wj10-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nadia-elements-shell-l-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":69,"name":"Nadia Elements Shell-L-Orange","id":1348,"category_ids":["23","8","35","2"],"sku":"WJ10-L-Orange","status":1},{"image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","small_image":"/w/j/wj10-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nadia-elements-shell-l-yellow","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":69,"name":"Nadia Elements Shell-L-Yellow","id":1349,"category_ids":["23","8","35","2"],"sku":"WJ10-L-Yellow","status":1},{"image":"/w/j/wj10-black_main.jpg","thumbnail":"/w/j/wj10-black_main.jpg","color":"49","small_image":"/w/j/wj10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nadia-elements-shell-xl-black","required_options":"0","msrp_display_actual_price_type":"0","size":"171","price":69,"name":"Nadia Elements Shell-XL-Black","id":1350,"category_ids":["23","8","35","2"],"sku":"WJ10-XL-Black","status":1},{"image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","small_image":"/w/j/wj10-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nadia-elements-shell-xl-orange","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"171","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Nadia Elements Shell-XL-Orange","id":1351,"category_ids":["23","8","35","2"],"sku":"WJ10-XL-Orange","max_regular_price":69,"status":1},{"image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","small_image":"/w/j/wj10-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nadia-elements-shell-xl-yellow","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"171","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Nadia Elements Shell-XL-Yellow","id":1352,"category_ids":["23","8","35","2"],"sku":"WJ10-XL-Yellow","max_regular_price":69,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1353,"id":187,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1353,"id":186,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,56,60],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-1353.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1385","_score":1,"_source":{"id":1385,"sku":"WJ06","name":"Juno Jacket","attribute_set_id":9,"price":77,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"juno-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,145],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[117,118,122,124,129,130],"pattern":"197","climate":[203,204,208,210,211],"slug":"juno-jacket-1385","links":{},"stock":{"item_id":1385,"product_id":1385,"stock_id":1,"qty":5,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","small_image":"/w/j/wj06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juno-jacket-xs-blue","regular_price":77,"required_options":"0","msrp_display_actual_price_type":"0","max_price":77,"minimal_regular_price":77,"size":"167","final_price":77,"special_price":null,"price":77,"minimal_price":77,"name":"Juno Jacket-XS-Blue","id":1370,"category_ids":["23","30","35","2"],"sku":"WJ06-XS-Blue","max_regular_price":77,"status":1},{"image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","small_image":"/w/j/wj06-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juno-jacket-xs-green","regular_price":77,"required_options":"0","msrp_display_actual_price_type":"0","max_price":77,"minimal_regular_price":77,"size":"167","final_price":77,"special_price":null,"price":77,"minimal_price":77,"name":"Juno Jacket-XS-Green","id":1371,"category_ids":["23","30","35","2"],"sku":"WJ06-XS-Green","max_regular_price":77,"status":1},{"image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","small_image":"/w/j/wj06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juno-jacket-xs-purple","regular_price":77,"required_options":"0","msrp_display_actual_price_type":"0","max_price":77,"minimal_regular_price":77,"size":"167","final_price":77,"special_price":null,"price":77,"minimal_price":77,"name":"Juno Jacket-XS-Purple","id":1372,"category_ids":["23","30","35","2"],"sku":"WJ06-XS-Purple","max_regular_price":77,"status":1},{"image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","small_image":"/w/j/wj06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juno-jacket-s-blue","regular_price":77,"required_options":"0","msrp_display_actual_price_type":"0","max_price":77,"minimal_regular_price":77,"size":"168","final_price":77,"special_price":null,"price":77,"minimal_price":77,"name":"Juno Jacket-S-Blue","id":1373,"category_ids":["23","30","35","2"],"sku":"WJ06-S-Blue","max_regular_price":77,"status":1},{"image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","small_image":"/w/j/wj06-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juno-jacket-s-green","regular_price":77,"required_options":"0","msrp_display_actual_price_type":"0","max_price":77,"minimal_regular_price":77,"size":"168","final_price":77,"special_price":null,"price":77,"minimal_price":77,"name":"Juno Jacket-S-Green","id":1374,"category_ids":["23","30","35","2"],"sku":"WJ06-S-Green","max_regular_price":77,"status":1},{"image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","small_image":"/w/j/wj06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juno-jacket-s-purple","regular_price":77,"required_options":"0","msrp_display_actual_price_type":"0","max_price":77,"minimal_regular_price":77,"size":"168","final_price":77,"special_price":null,"price":77,"minimal_price":77,"name":"Juno Jacket-S-Purple","id":1375,"category_ids":["23","30","35","2"],"sku":"WJ06-S-Purple","max_regular_price":77,"status":1},{"image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","small_image":"/w/j/wj06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juno-jacket-m-blue","regular_price":77,"required_options":"0","msrp_display_actual_price_type":"0","max_price":77,"minimal_regular_price":77,"size":"169","final_price":77,"special_price":null,"price":77,"minimal_price":77,"name":"Juno Jacket-M-Blue","id":1376,"category_ids":["23","30","35","2"],"sku":"WJ06-M-Blue","max_regular_price":77,"status":1},{"image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","small_image":"/w/j/wj06-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juno-jacket-m-green","regular_price":77,"required_options":"0","msrp_display_actual_price_type":"0","max_price":77,"minimal_regular_price":77,"size":"169","final_price":77,"special_price":null,"price":77,"minimal_price":77,"name":"Juno Jacket-M-Green","id":1377,"category_ids":["23","30","35","2"],"sku":"WJ06-M-Green","max_regular_price":77,"status":1},{"image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","small_image":"/w/j/wj06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juno-jacket-m-purple","regular_price":77,"required_options":"0","msrp_display_actual_price_type":"0","max_price":77,"minimal_regular_price":77,"size":"169","final_price":77,"special_price":null,"price":77,"minimal_price":77,"name":"Juno Jacket-M-Purple","id":1378,"category_ids":["23","30","35","2"],"sku":"WJ06-M-Purple","max_regular_price":77,"status":1},{"image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","small_image":"/w/j/wj06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juno-jacket-l-blue","regular_price":77,"required_options":"0","msrp_display_actual_price_type":"0","max_price":77,"minimal_regular_price":77,"size":"170","final_price":77,"special_price":null,"price":77,"minimal_price":77,"name":"Juno Jacket-L-Blue","id":1379,"category_ids":["23","30","35","2"],"sku":"WJ06-L-Blue","max_regular_price":77,"status":1},{"image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","small_image":"/w/j/wj06-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juno-jacket-l-green","regular_price":77,"required_options":"0","msrp_display_actual_price_type":"0","max_price":77,"minimal_regular_price":77,"size":"170","final_price":77,"special_price":null,"price":77,"minimal_price":77,"name":"Juno Jacket-L-Green","id":1380,"category_ids":["23","30","35","2"],"sku":"WJ06-L-Green","max_regular_price":77,"status":1},{"image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","small_image":"/w/j/wj06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juno-jacket-l-purple","regular_price":77,"required_options":"0","msrp_display_actual_price_type":"0","max_price":77,"minimal_regular_price":77,"size":"170","final_price":77,"special_price":null,"price":77,"minimal_price":77,"name":"Juno Jacket-L-Purple","id":1381,"category_ids":["23","30","35","2"],"sku":"WJ06-L-Purple","max_regular_price":77,"status":1},{"image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","small_image":"/w/j/wj06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juno-jacket-xl-blue","regular_price":77,"required_options":"0","msrp_display_actual_price_type":"0","max_price":77,"minimal_regular_price":77,"size":"171","final_price":77,"special_price":null,"price":77,"minimal_price":77,"name":"Juno Jacket-XL-Blue","id":1382,"category_ids":["23","30","35","2"],"sku":"WJ06-XL-Blue","max_regular_price":77,"status":1},{"image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","small_image":"/w/j/wj06-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juno-jacket-xl-green","regular_price":77,"required_options":"0","msrp_display_actual_price_type":"0","max_price":77,"minimal_regular_price":77,"size":"171","final_price":77,"special_price":null,"price":77,"minimal_price":77,"name":"Juno Jacket-XL-Green","id":1383,"category_ids":["23","30","35","2"],"sku":"WJ06-XL-Green","max_regular_price":77,"status":1},{"image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","small_image":"/w/j/wj06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juno-jacket-xl-purple","regular_price":77,"required_options":"0","msrp_display_actual_price_type":"0","max_price":77,"minimal_regular_price":77,"size":"171","final_price":77,"special_price":null,"price":77,"minimal_price":77,"name":"Juno Jacket-XL-Purple","id":1384,"category_ids":["23","30","35","2"],"sku":"WJ06-XL-Purple","max_regular_price":77,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"}],"product_id":1385,"id":191,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1385,"id":190,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,53,57],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-1385.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1366","_score":1,"_source":{"id":1366,"sku":"WJ11-XL-Black","name":"Neve Studio Dance Jacket-XL-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"neve-studio-dance-jacket-xl-black-1366","links":{},"stock":{"item_id":1366,"product_id":1366,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xl-black-1366.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1364","_score":1,"_source":{"id":1364,"sku":"WJ11-L-Blue","name":"Neve Studio Dance Jacket-L-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"neve-studio-dance-jacket-l-blue-1364","links":{},"stock":{"item_id":1364,"product_id":1364,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-l-blue-1364.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1357","_score":1,"_source":{"id":1357,"sku":"WJ11-S-Black","name":"Neve Studio Dance Jacket-S-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"neve-studio-dance-jacket-s-black-1357","links":{},"stock":{"item_id":1357,"product_id":1357,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-s-black-1357.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1372","_score":1,"_source":{"id":1372,"sku":"WJ06-XS-Purple","name":"Juno Jacket-XS-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juno-jacket-xs-purple-1372","links":{},"stock":{"item_id":1372,"product_id":1372,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xs-purple-1372.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1358","_score":1,"_source":{"id":1358,"sku":"WJ11-S-Blue","name":"Neve Studio Dance Jacket-S-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"neve-studio-dance-jacket-s-blue-1358","links":{},"stock":{"item_id":1358,"product_id":1358,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-s-blue-1358.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1359","_score":1,"_source":{"id":1359,"sku":"WJ11-S-Orange","name":"Neve Studio Dance Jacket-S-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"neve-studio-dance-jacket-s-orange-1359","links":{},"stock":{"item_id":1359,"product_id":1359,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-s-orange-1359.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1373","_score":1,"_source":{"id":1373,"sku":"WJ06-S-Blue","name":"Juno Jacket-S-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juno-jacket-s-blue-1373","links":{},"stock":{"item_id":1373,"product_id":1373,"stock_id":1,"qty":77,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-s-blue-1373.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1375","_score":1,"_source":{"id":1375,"sku":"WJ06-S-Purple","name":"Juno Jacket-S-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juno-jacket-s-purple-1375","links":{},"stock":{"item_id":1375,"product_id":1375,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-s-purple-1375.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1367","_score":1,"_source":{"id":1367,"sku":"WJ11-XL-Blue","name":"Neve Studio Dance Jacket-XL-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"neve-studio-dance-jacket-xl-blue-1367","links":{},"stock":{"item_id":1367,"product_id":1367,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xl-blue-1367.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1383","_score":1,"_source":{"id":1383,"sku":"WJ06-XL-Green","name":"Juno Jacket-XL-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juno-jacket-xl-green-1383","links":{},"stock":{"item_id":1383,"product_id":1383,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xl-green-1383.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1351","_score":1,"_source":{"id":1351,"sku":"WJ10-XL-Orange","name":"Nadia Elements Shell-XL-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-orange_main.jpg","small_image":"/w/j/wj10-orange_main.jpg","thumbnail":"/w/j/wj10-orange_main.jpg","color":"56","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nadia-elements-shell-xl-orange-1351","links":{},"stock":{"item_id":1351,"product_id":1351,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj10-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xl-orange-1351.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1376","_score":1,"_source":{"id":1376,"sku":"WJ06-M-Blue","name":"Juno Jacket-M-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juno-jacket-m-blue-1376","links":{},"stock":{"item_id":1376,"product_id":1376,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-m-blue-1376.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1374","_score":1,"_source":{"id":1374,"sku":"WJ06-S-Green","name":"Juno Jacket-S-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juno-jacket-s-green-1374","links":{},"stock":{"item_id":1374,"product_id":1374,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-s-green-1374.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1380","_score":1,"_source":{"id":1380,"sku":"WJ06-L-Green","name":"Juno Jacket-L-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juno-jacket-l-green-1380","links":{},"stock":{"item_id":1380,"product_id":1380,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-l-green-1380.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1387","_score":1,"_source":{"id":1387,"sku":"WJ12-XS-Blue","name":"Olivia 1/4 Zip Light Jacket-XS-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"olivia-14-zip-light-jacket-xs-blue-1387","links":{},"stock":{"item_id":1387,"product_id":1387,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xs-blue-1387.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1370","_score":1,"_source":{"id":1370,"sku":"WJ06-XS-Blue","name":"Juno Jacket-XS-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juno-jacket-xs-blue-1370","links":{},"stock":{"item_id":1370,"product_id":1370,"stock_id":1,"qty":10,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xs-blue-1370.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1377","_score":1,"_source":{"id":1377,"sku":"WJ06-M-Green","name":"Juno Jacket-M-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juno-jacket-m-green-1377","links":{},"stock":{"item_id":1377,"product_id":1377,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-m-green-1377.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1384","_score":1,"_source":{"id":1384,"sku":"WJ06-XL-Purple","name":"Juno Jacket-XL-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juno-jacket-xl-purple-1384","links":{},"stock":{"item_id":1384,"product_id":1384,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xl-purple-1384.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1381","_score":1,"_source":{"id":1381,"sku":"WJ06-L-Purple","name":"Juno Jacket-L-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juno-jacket-l-purple-1381","links":{},"stock":{"item_id":1381,"product_id":1381,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-l-purple-1381.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1388","_score":1,"_source":{"id":1388,"sku":"WJ12-XS-Purple","name":"Olivia 1/4 Zip Light Jacket-XS-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"olivia-14-zip-light-jacket-xs-purple-1388","links":{},"stock":{"item_id":1388,"product_id":1388,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xs-purple-1388.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1379","_score":1,"_source":{"id":1379,"sku":"WJ06-L-Blue","name":"Juno Jacket-L-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juno-jacket-l-blue-1379","links":{},"stock":{"item_id":1379,"product_id":1379,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-l-blue-1379.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1382","_score":1,"_source":{"id":1382,"sku":"WJ06-XL-Blue","name":"Juno Jacket-XL-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-blue_main.jpg","small_image":"/w/j/wj06-blue_main.jpg","thumbnail":"/w/j/wj06-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juno-jacket-xl-blue-1382","links":{},"stock":{"item_id":1382,"product_id":1382,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj06-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xl-blue-1382.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1396","_score":1,"_source":{"id":1396,"sku":"WJ12-L-Blue","name":"Olivia 1/4 Zip Light Jacket-L-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"olivia-14-zip-light-jacket-l-blue-1396","links":{},"stock":{"item_id":1396,"product_id":1396,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-l-blue-1396.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1378","_score":1,"_source":{"id":1378,"sku":"WJ06-M-Purple","name":"Juno Jacket-M-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-purple_main.jpg","small_image":"/w/j/wj06-purple_main.jpg","thumbnail":"/w/j/wj06-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juno-jacket-m-purple-1378","links":{},"stock":{"item_id":1378,"product_id":1378,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj06-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj06-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj06-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-m-purple-1378.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1392","_score":1,"_source":{"id":1392,"sku":"WJ12-M-Black","name":"Olivia 1/4 Zip Light Jacket-M-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"olivia-14-zip-light-jacket-m-black-1392","links":{},"stock":{"item_id":1392,"product_id":1392,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-m-black-1392.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1398","_score":1,"_source":{"id":1398,"sku":"WJ12-XL-Black","name":"Olivia 1/4 Zip Light Jacket-XL-Black","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-black_main.jpg","small_image":"/w/j/wj12-black_main.jpg","thumbnail":"/w/j/wj12-black_main.jpg","color":"49","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"olivia-14-zip-light-jacket-xl-black-1398","links":{},"stock":{"item_id":1398,"product_id":1398,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj12-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xl-black-1398.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1390","_score":1,"_source":{"id":1390,"sku":"WJ12-S-Blue","name":"Olivia 1/4 Zip Light Jacket-S-Blue","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-blue_main.jpg","small_image":"/w/j/wj12-blue_main.jpg","thumbnail":"/w/j/wj12-blue_main.jpg","color":"50","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"olivia-14-zip-light-jacket-s-blue-1390","links":{},"stock":{"item_id":1390,"product_id":1390,"stock_id":1,"qty":74,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj12-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj12-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj12-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-s-blue-1390.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1368","_score":1,"_source":{"id":1368,"sku":"WJ11-XL-Orange","name":"Neve Studio Dance Jacket-XL-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"neve-studio-dance-jacket-xl-orange-1368","links":{},"stock":{"item_id":1368,"product_id":1368,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xl-orange-1368.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1400","_score":1,"_source":{"id":1400,"sku":"WJ12-XL-Purple","name":"Olivia 1/4 Zip Light Jacket-XL-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"olivia-14-zip-light-jacket-xl-purple-1400","links":{},"stock":{"item_id":1400,"product_id":1400,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-xl-purple-1400.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1397","_score":1,"_source":{"id":1397,"sku":"WJ12-L-Purple","name":"Olivia 1/4 Zip Light Jacket-L-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"olivia-14-zip-light-jacket-l-purple-1397","links":{},"stock":{"item_id":1397,"product_id":1397,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-l-purple-1397.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1394","_score":1,"_source":{"id":1394,"sku":"WJ12-M-Purple","name":"Olivia 1/4 Zip Light Jacket-M-Purple","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

                            \n

                            • Loose fit.
                            • Reflectivity.
                            • Flat seams.
                            • Machine wash/dry.

                            ","image":"/w/j/wj12-purple_main.jpg","small_image":"/w/j/wj12-purple_main.jpg","thumbnail":"/w/j/wj12-purple_main.jpg","color":"57","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"olivia-1-4-zip-light-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"olivia-14-zip-light-jacket-m-purple-1394","links":{},"stock":{"item_id":1394,"product_id":1394,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj12-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/olivia-14-zip-light-jacket-m-purple-1394.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1425","_score":1,"_source":{"id":1425,"sku":"WS03-M-Green","name":"Iris Workout Top-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"iris-workout-top-m-green-1425","links":{},"stock":{"item_id":1425,"product_id":1425,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-m-green-1425.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1416","_score":1,"_source":{"id":1416,"sku":"WS02-XL-Red","name":"Gabrielle Micro Sleeve Top-XL-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gabrielle-micro-sleeve-top-xl-red-1416","links":{},"stock":{"item_id":1416,"product_id":1416,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xl-red-1416.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1426","_score":1,"_source":{"id":1426,"sku":"WS03-M-Red","name":"Iris Workout Top-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"iris-workout-top-m-red-1426","links":{},"stock":{"item_id":1426,"product_id":1426,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-m-red-1426.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1413","_score":1,"_source":{"id":1413,"sku":"WS02-L-Red","name":"Gabrielle Micro Sleeve Top-L-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gabrielle-micro-sleeve-top-l-red-1413","links":{},"stock":{"item_id":1413,"product_id":1413,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-l-red-1413.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1419","_score":1,"_source":{"id":1419,"sku":"WS03-XS-Green","name":"Iris Workout Top-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"iris-workout-top-xs-green-1419","links":{},"stock":{"item_id":1419,"product_id":1419,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xs-green-1419.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1434","_score":1,"_source":{"id":1434,"sku":"WS04-XS-Blue","name":"Layla Tee-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"layla-tee-xs-blue-1434","links":{},"stock":{"item_id":1434,"product_id":1434,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xs-blue-1434.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1408","_score":1,"_source":{"id":1408,"sku":"WS02-M-Blue","name":"Gabrielle Micro Sleeve Top-M-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gabrielle-micro-sleeve-top-m-blue-1408","links":{},"stock":{"item_id":1408,"product_id":1408,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-m-blue-1408.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1415","_score":1,"_source":{"id":1415,"sku":"WS02-XL-Green","name":"Gabrielle Micro Sleeve Top-XL-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gabrielle-micro-sleeve-top-xl-green-1415","links":{},"stock":{"item_id":1415,"product_id":1415,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xl-green-1415.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1435","_score":1,"_source":{"id":1435,"sku":"WS04-XS-Green","name":"Layla Tee-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"layla-tee-xs-green-1435","links":{},"stock":{"item_id":1435,"product_id":1435,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xs-green-1435.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1445","_score":1,"_source":{"id":1445,"sku":"WS04-L-Red","name":"Layla Tee-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"layla-tee-l-red-1445","links":{},"stock":{"item_id":1445,"product_id":1445,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-l-red-1445.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1406","_score":1,"_source":{"id":1406,"sku":"WS02-S-Green","name":"Gabrielle Micro Sleeve Top-S-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gabrielle-micro-sleeve-top-s-green-1406","links":{},"stock":{"item_id":1406,"product_id":1406,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-s-green-1406.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1405","_score":1,"_source":{"id":1405,"sku":"WS02-S-Blue","name":"Gabrielle Micro Sleeve Top-S-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gabrielle-micro-sleeve-top-s-blue-1405","links":{},"stock":{"item_id":1405,"product_id":1405,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-s-blue-1405.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1404","_score":1,"_source":{"id":1404,"sku":"WS02-XS-Red","name":"Gabrielle Micro Sleeve Top-XS-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gabrielle-micro-sleeve-top-xs-red-1404","links":{},"stock":{"item_id":1404,"product_id":1404,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xs-red-1404.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1439","_score":1,"_source":{"id":1439,"sku":"WS04-S-Red","name":"Layla Tee-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"layla-tee-s-red-1439","links":{},"stock":{"item_id":1439,"product_id":1439,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-s-red-1439.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1428","_score":1,"_source":{"id":1428,"sku":"WS03-L-Green","name":"Iris Workout Top-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"iris-workout-top-l-green-1428","links":{},"stock":{"item_id":1428,"product_id":1428,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-l-green-1428.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1421","_score":1,"_source":{"id":1421,"sku":"WS03-S-Blue","name":"Iris Workout Top-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"iris-workout-top-s-blue-1421","links":{},"stock":{"item_id":1421,"product_id":1421,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-s-blue-1421.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1410","_score":1,"_source":{"id":1410,"sku":"WS02-M-Red","name":"Gabrielle Micro Sleeve Top-M-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gabrielle-micro-sleeve-top-m-red-1410","links":{},"stock":{"item_id":1410,"product_id":1410,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-m-red-1410.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1436","_score":1,"_source":{"id":1436,"sku":"WS04-XS-Red","name":"Layla Tee-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"layla-tee-xs-red-1436","links":{},"stock":{"item_id":1436,"product_id":1436,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xs-red-1436.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1422","_score":1,"_source":{"id":1422,"sku":"WS03-S-Green","name":"Iris Workout Top-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"iris-workout-top-s-green-1422","links":{},"stock":{"item_id":1422,"product_id":1422,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-s-green-1422.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1430","_score":1,"_source":{"id":1430,"sku":"WS03-XL-Blue","name":"Iris Workout Top-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"iris-workout-top-xl-blue-1430","links":{},"stock":{"item_id":1430,"product_id":1430,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xl-blue-1430.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1431","_score":1,"_source":{"id":1431,"sku":"WS03-XL-Green","name":"Iris Workout Top-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-green_main.jpg","small_image":"/w/s/ws03-green_main.jpg","thumbnail":"/w/s/ws03-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"iris-workout-top-xl-green-1431","links":{},"stock":{"item_id":1431,"product_id":1431,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xl-green-1431.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1429","_score":1,"_source":{"id":1429,"sku":"WS03-L-Red","name":"Iris Workout Top-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"iris-workout-top-l-red-1429","links":{},"stock":{"item_id":1429,"product_id":1429,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-l-red-1429.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1448","_score":1,"_source":{"id":1448,"sku":"WS04-XL-Red","name":"Layla Tee-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-red_main.jpg","small_image":"/w/s/ws04-red_main.jpg","thumbnail":"/w/s/ws04-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"layla-tee-xl-red-1448","links":{},"stock":{"item_id":1448,"product_id":1448,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws04-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-xl-red-1448.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1440","_score":1,"_source":{"id":1440,"sku":"WS04-M-Blue","name":"Layla Tee-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"layla-tee-m-blue-1440","links":{},"stock":{"item_id":1440,"product_id":1440,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-m-blue-1440.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1444","_score":1,"_source":{"id":1444,"sku":"WS04-L-Green","name":"Layla Tee-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-green_main.jpg","small_image":"/w/s/ws04-green_main.jpg","thumbnail":"/w/s/ws04-green_main.jpg","color":"53","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"layla-tee-l-green-1444","links":{},"stock":{"item_id":1444,"product_id":1444,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws04-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws04-green_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-l-green-1444.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1424","_score":1,"_source":{"id":1424,"sku":"WS03-M-Blue","name":"Iris Workout Top-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"iris-workout-top-m-blue-1424","links":{},"stock":{"item_id":1424,"product_id":1424,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-m-blue-1424.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1437","_score":1,"_source":{"id":1437,"sku":"WS04-S-Blue","name":"Layla Tee-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

                            \n

                            • Teal tee.
                            • Long back hem.
                            • Dropped shoulders.

                            ","image":"/w/s/ws04-blue_main.jpg","small_image":"/w/s/ws04-blue_main.jpg","thumbnail":"/w/s/ws04-blue_main.jpg","color":"50","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"layla-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"layla-tee-s-blue-1437","links":{},"stock":{"item_id":1437,"product_id":1437,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws04-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/layla-tee-s-blue-1437.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1355","_score":1,"_source":{"id":1355,"sku":"WJ11-XS-Blue","name":"Neve Studio Dance Jacket-XS-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"neve-studio-dance-jacket-xs-blue-1355","links":{},"stock":{"item_id":1355,"product_id":1355,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xs-blue-1355.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1371","_score":1,"_source":{"id":1371,"sku":"WJ06-XS-Green","name":"Juno Jacket-XS-Green","attribute_set_id":9,"price":77,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":77,"max_price":77,"max_regular_price":77,"minimal_regular_price":77,"special_price":null,"minimal_price":77,"regular_price":77,"description":"

                            On colder-than-comfortable mornings, you'll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

                            \n

                            • Adjustable hood.
                            • Fleece-lined, zippered hand pockets.
                            • Thumbhole cuffs.
                            • Full zip.
                            • Mock-neck collar.
                            • Machine wash/dry.

                            ","image":"/w/j/wj06-green_main.jpg","small_image":"/w/j/wj06-green_main.jpg","thumbnail":"/w/j/wj06-green_main.jpg","color":"53","category_ids":[23,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juno-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juno-jacket-xs-green-1371","links":{},"stock":{"item_id":1371,"product_id":1371,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj06-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/juno-jacket-xs-green-1371.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1363","_score":1,"_source":{"id":1363,"sku":"WJ11-L-Black","name":"Neve Studio Dance Jacket-L-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"neve-studio-dance-jacket-l-black-1363","links":{},"stock":{"item_id":1363,"product_id":1363,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-l-black-1363.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1354","_score":1,"_source":{"id":1354,"sku":"WJ11-XS-Black","name":"Neve Studio Dance Jacket-XS-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"neve-studio-dance-jacket-xs-black-1354","links":{},"stock":{"item_id":1354,"product_id":1354,"stock_id":1,"qty":45,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xs-black-1354.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1360","_score":1,"_source":{"id":1360,"sku":"WJ11-M-Black","name":"Neve Studio Dance Jacket-M-Black","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-black_main.jpg","small_image":"/w/j/wj11-black_main.jpg","thumbnail":"/w/j/wj11-black_main.jpg","color":"49","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"neve-studio-dance-jacket-m-black-1360","links":{},"stock":{"item_id":1360,"product_id":1360,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj11-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-m-black-1360.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1352","_score":1,"_source":{"id":1352,"sku":"WJ10-XL-Yellow","name":"Nadia Elements Shell-XL-Yellow","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It's finished with bold contrast zippers, adjustable cuffs and a hood.

                            \n

                            • Zippered front.
                            • Zippered side pockets.
                            • Drawstring-adjustable waist and hood.
                            • Machine wash/line dry.
                            • Light blue 1/4 zip pullover.

                            ","image":"/w/j/wj10-yellow_main.jpg","small_image":"/w/j/wj10-yellow_main.jpg","thumbnail":"/w/j/wj10-yellow_main.jpg","color":"60","category_ids":[23,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nadia-elements-shell-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nadia-elements-shell-xl-yellow-1352","links":{},"stock":{"item_id":1352,"product_id":1352,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj10-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj10-yellow_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj10-yellow_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/nadia-elements-shell-xl-yellow-1352.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1361","_score":1,"_source":{"id":1361,"sku":"WJ11-M-Blue","name":"Neve Studio Dance Jacket-M-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-blue_main.jpg","small_image":"/w/j/wj11-blue_main.jpg","thumbnail":"/w/j/wj11-blue_main.jpg","color":"50","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"neve-studio-dance-jacket-m-blue-1361","links":{},"stock":{"item_id":1361,"product_id":1361,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj11-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/j/wj11-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-m-blue-1361.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1362","_score":1,"_source":{"id":1362,"sku":"WJ11-M-Orange","name":"Neve Studio Dance Jacket-M-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"neve-studio-dance-jacket-m-orange-1362","links":{},"stock":{"item_id":1362,"product_id":1362,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-m-orange-1362.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1412","_score":1,"_source":{"id":1412,"sku":"WS02-L-Green","name":"Gabrielle Micro Sleeve Top-L-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gabrielle-micro-sleeve-top-l-green-1412","links":{},"stock":{"item_id":1412,"product_id":1412,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-l-green-1412.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1402","_score":1,"_source":{"id":1402,"sku":"WS02-XS-Blue","name":"Gabrielle Micro Sleeve Top-XS-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gabrielle-micro-sleeve-top-xs-blue-1402","links":{},"stock":{"item_id":1402,"product_id":1402,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xs-blue-1402.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1403","_score":1,"_source":{"id":1403,"sku":"WS02-XS-Green","name":"Gabrielle Micro Sleeve Top-XS-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gabrielle-micro-sleeve-top-xs-green-1403","links":{},"stock":{"item_id":1403,"product_id":1403,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xs-green-1403.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1407","_score":1,"_source":{"id":1407,"sku":"WS02-S-Red","name":"Gabrielle Micro Sleeve Top-S-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-red_main.jpg","small_image":"/w/s/ws02-red_main.jpg","thumbnail":"/w/s/ws02-red_main.jpg","color":"58","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gabrielle-micro-sleeve-top-s-red-1407","links":{},"stock":{"item_id":1407,"product_id":1407,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-s-red-1407.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1420","_score":1,"_source":{"id":1420,"sku":"WS03-XS-Red","name":"Iris Workout Top-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-red_main.jpg","small_image":"/w/s/ws03-red_main.jpg","thumbnail":"/w/s/ws03-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"iris-workout-top-xs-red-1420","links":{},"stock":{"item_id":1420,"product_id":1420,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws03-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws03-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws03-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xs-red-1420.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1418","_score":1,"_source":{"id":1418,"sku":"WS03-XS-Blue","name":"Iris Workout Top-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"iris-workout-top-xs-blue-1418","links":{},"stock":{"item_id":1418,"product_id":1418,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-xs-blue-1418.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1427","_score":1,"_source":{"id":1427,"sku":"WS03-L-Blue","name":"Iris Workout Top-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

                            \n

                            • Pink heather rouched v-neck.
                            • Scoop neckline.
                            • Angled flat seams.
                            • Moisture wicking.
                            • Body skimming.
                            • 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.

                            ","image":"/w/s/ws03-blue_main.jpg","small_image":"/w/s/ws03-blue_main.jpg","thumbnail":"/w/s/ws03-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"iris-workout-top-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"iris-workout-top-l-blue-1427","links":{},"stock":{"item_id":1427,"product_id":1427,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/iris-workout-top-l-blue-1427.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1409","_score":1,"_source":{"id":1409,"sku":"WS02-M-Green","name":"Gabrielle Micro Sleeve Top-M-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-green_main.jpg","small_image":"/w/s/ws02-green_main.jpg","thumbnail":"/w/s/ws02-green_main.jpg","color":"53","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gabrielle-micro-sleeve-top-m-green-1409","links":{},"stock":{"item_id":1409,"product_id":1409,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws02-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws02-green_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-m-green-1409.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1411","_score":1,"_source":{"id":1411,"sku":"WS02-L-Blue","name":"Gabrielle Micro Sleeve Top-L-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gabrielle-micro-sleeve-top-l-blue-1411","links":{},"stock":{"item_id":1411,"product_id":1411,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-l-blue-1411.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1414","_score":1,"_source":{"id":1414,"sku":"WS02-XL-Blue","name":"Gabrielle Micro Sleeve Top-XL-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            Luma's most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

                            \n

                            • Lime green v-neck tee.
                            • Slimming, flattering fit.
                            • Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
                            • Longer curved hem provides additional coverage.
                            • 55% Hemp / 45% Organic Cotton.

                            ","image":"/w/s/ws02-blue_main.jpg","small_image":"/w/s/ws02-blue_main.jpg","thumbnail":"/w/s/ws02-blue_main.jpg","color":"50","category_ids":[25,33,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gabrielle-micro-sleeve-top-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gabrielle-micro-sleeve-top-xl-blue-1414","links":{},"stock":{"item_id":1414,"product_id":1414,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws02-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gabrielle-micro-sleeve-top-xl-blue-1414.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1356","_score":1,"_source":{"id":1356,"sku":"WJ11-XS-Orange","name":"Neve Studio Dance Jacket-XS-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"neve-studio-dance-jacket-xs-orange-1356","links":{},"stock":{"item_id":1356,"product_id":1356,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-xs-orange-1356.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1365","_score":1,"_source":{"id":1365,"sku":"WJ11-L-Orange","name":"Neve Studio Dance Jacket-L-Orange","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:16","updated_at":"2017-11-06 12:17:16","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                            If you're constantly on the move, the Neve Studio Dance Jacket is for you. It's not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

                            \n

                            • Bright blue 1/4 zip pullover.
                            • CoolTech™ liner is sweat-wicking.
                            • Sleeve thumbholes.
                            • Zipper garage to protect your chin.
                            • Stretchy collar drawcords.

                            ","image":"/w/j/wj11-orange_main.jpg","small_image":"/w/j/wj11-orange_main.jpg","thumbnail":"/w/j/wj11-orange_main.jpg","color":"56","category_ids":[23,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"neve-studio-dance-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"neve-studio-dance-jacket-l-orange-1365","links":{},"stock":{"item_id":1365,"product_id":1365,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/j/wj11-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/jackets-women/jackets-23","category_id":23,"name":"Jackets","slug":"jackets-23"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/jackets-women/jackets-23/neve-studio-dance-jacket-l-orange-1365.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1465","_score":1,"_source":{"id":1465,"sku":"WS06","name":"Elisa EverCool™ Tee","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"elisa-evercool-trade-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,154],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"elisa-evercool-and-trade-tee-1465","links":{},"stock":{"item_id":1465,"product_id":1465,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","small_image":"/w/s/ws06-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"elisa-evercool-trade-tee-xs-gray","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":29,"name":"Elisa EverCool™ Tee-XS-Gray","id":1450,"category_ids":["25","33","8","36","2"],"sku":"WS06-XS-Gray","status":1},{"image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","small_image":"/w/s/ws06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"elisa-evercool-trade-tee-xs-purple","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"167","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Elisa EverCool™ Tee-XS-Purple","id":1451,"category_ids":["25","33","8","36","2"],"sku":"WS06-XS-Purple","max_regular_price":29,"status":1},{"image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","small_image":"/w/s/ws06-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"elisa-evercool-trade-tee-xs-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"167","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Elisa EverCool™ Tee-XS-Red","id":1452,"category_ids":["25","33","8","36","2"],"sku":"WS06-XS-Red","max_regular_price":29,"status":1},{"image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","small_image":"/w/s/ws06-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"elisa-evercool-trade-tee-s-gray","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"168","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Elisa EverCool™ Tee-S-Gray","id":1453,"category_ids":["25","33","8","36","2"],"sku":"WS06-S-Gray","max_regular_price":29,"status":1},{"image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","small_image":"/w/s/ws06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"elisa-evercool-trade-tee-s-purple","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"168","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Elisa EverCool™ Tee-S-Purple","id":1454,"category_ids":["25","33","8","36","2"],"sku":"WS06-S-Purple","max_regular_price":29,"status":1},{"image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","small_image":"/w/s/ws06-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"elisa-evercool-trade-tee-s-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"168","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Elisa EverCool™ Tee-S-Red","id":1455,"category_ids":["25","33","8","36","2"],"sku":"WS06-S-Red","max_regular_price":29,"status":1},{"image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","small_image":"/w/s/ws06-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"elisa-evercool-trade-tee-m-gray","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Elisa EverCool™ Tee-M-Gray","id":1456,"category_ids":["25","33","8","36","2"],"sku":"WS06-M-Gray","max_regular_price":29,"status":1},{"image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","small_image":"/w/s/ws06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"elisa-evercool-trade-tee-m-purple","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Elisa EverCool™ Tee-M-Purple","id":1457,"category_ids":["25","33","8","36","2"],"sku":"WS06-M-Purple","max_regular_price":29,"status":1},{"image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","small_image":"/w/s/ws06-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"elisa-evercool-trade-tee-m-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Elisa EverCool™ Tee-M-Red","id":1458,"category_ids":["25","33","8","36","2"],"sku":"WS06-M-Red","max_regular_price":29,"status":1},{"image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","small_image":"/w/s/ws06-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"elisa-evercool-trade-tee-l-gray","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Elisa EverCool™ Tee-L-Gray","id":1459,"category_ids":["25","33","8","36","2"],"sku":"WS06-L-Gray","max_regular_price":29,"status":1},{"image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","small_image":"/w/s/ws06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"elisa-evercool-trade-tee-l-purple","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Elisa EverCool™ Tee-L-Purple","id":1460,"category_ids":["25","33","8","36","2"],"sku":"WS06-L-Purple","max_regular_price":29,"status":1},{"image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","small_image":"/w/s/ws06-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"elisa-evercool-trade-tee-l-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Elisa EverCool™ Tee-L-Red","id":1461,"category_ids":["25","33","8","36","2"],"sku":"WS06-L-Red","max_regular_price":29,"status":1},{"image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","small_image":"/w/s/ws06-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"elisa-evercool-trade-tee-xl-gray","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Elisa EverCool™ Tee-XL-Gray","id":1462,"category_ids":["25","33","8","36","2"],"sku":"WS06-XL-Gray","max_regular_price":29,"status":1},{"image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","small_image":"/w/s/ws06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"elisa-evercool-trade-tee-xl-purple","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Elisa EverCool™ Tee-XL-Purple","id":1463,"category_ids":["25","33","8","36","2"],"sku":"WS06-XL-Purple","max_regular_price":29,"status":1},{"image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","small_image":"/w/s/ws06-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"elisa-evercool-trade-tee-xl-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Elisa EverCool™ Tee-XL-Red","id":1464,"category_ids":["25","33","8","36","2"],"sku":"WS06-XL-Red","max_regular_price":29,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1465,"id":201,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1465,"id":200,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[52,57,58],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-1465.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1481","_score":1,"_source":{"id":1481,"sku":"WS07","name":"Juliana Short-Sleeve Tee","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"juliana-short-sleeve-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"juliana-short-sleeve-tee-1481","links":{},"stock":{"item_id":1481,"product_id":1481,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","small_image":"/w/s/ws07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juliana-short-sleeve-tee-xs-black","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"167","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Juliana Short-Sleeve Tee-XS-Black","id":1466,"category_ids":["25","33","8","34","2"],"sku":"WS07-XS-Black","max_regular_price":42,"status":1},{"image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","small_image":"/w/s/ws07-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juliana-short-sleeve-tee-xs-white","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"167","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Juliana Short-Sleeve Tee-XS-White","id":1467,"category_ids":["25","33","8","34","2"],"sku":"WS07-XS-White","max_regular_price":42,"status":1},{"image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","small_image":"/w/s/ws07-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juliana-short-sleeve-tee-xs-yellow","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"167","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Juliana Short-Sleeve Tee-XS-Yellow","id":1468,"category_ids":["25","33","8","34","2"],"sku":"WS07-XS-Yellow","max_regular_price":42,"status":1},{"image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","small_image":"/w/s/ws07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juliana-short-sleeve-tee-s-black","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"168","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Juliana Short-Sleeve Tee-S-Black","id":1469,"category_ids":["25","33","8","34","2"],"sku":"WS07-S-Black","max_regular_price":42,"status":1},{"image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","small_image":"/w/s/ws07-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juliana-short-sleeve-tee-s-white","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"168","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Juliana Short-Sleeve Tee-S-White","id":1470,"category_ids":["25","33","8","34","2"],"sku":"WS07-S-White","max_regular_price":42,"status":1},{"image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","small_image":"/w/s/ws07-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juliana-short-sleeve-tee-s-yellow","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"168","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Juliana Short-Sleeve Tee-S-Yellow","id":1471,"category_ids":["25","33","8","34","2"],"sku":"WS07-S-Yellow","max_regular_price":42,"status":1},{"image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","small_image":"/w/s/ws07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juliana-short-sleeve-tee-m-black","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"169","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Juliana Short-Sleeve Tee-M-Black","id":1472,"category_ids":["25","33","8","34","2"],"sku":"WS07-M-Black","max_regular_price":42,"status":1},{"image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","small_image":"/w/s/ws07-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juliana-short-sleeve-tee-m-white","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"169","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Juliana Short-Sleeve Tee-M-White","id":1473,"category_ids":["25","33","8","34","2"],"sku":"WS07-M-White","max_regular_price":42,"status":1},{"image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","small_image":"/w/s/ws07-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juliana-short-sleeve-tee-m-yellow","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"169","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Juliana Short-Sleeve Tee-M-Yellow","id":1474,"category_ids":["25","33","8","34","2"],"sku":"WS07-M-Yellow","max_regular_price":42,"status":1},{"image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","small_image":"/w/s/ws07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juliana-short-sleeve-tee-l-black","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"170","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Juliana Short-Sleeve Tee-L-Black","id":1475,"category_ids":["25","33","8","34","2"],"sku":"WS07-L-Black","max_regular_price":42,"status":1},{"image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","small_image":"/w/s/ws07-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juliana-short-sleeve-tee-l-white","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"170","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Juliana Short-Sleeve Tee-L-White","id":1476,"category_ids":["25","33","8","34","2"],"sku":"WS07-L-White","max_regular_price":42,"status":1},{"image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","small_image":"/w/s/ws07-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juliana-short-sleeve-tee-l-yellow","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"170","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Juliana Short-Sleeve Tee-L-Yellow","id":1477,"category_ids":["25","33","8","34","2"],"sku":"WS07-L-Yellow","max_regular_price":42,"status":1},{"image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","small_image":"/w/s/ws07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juliana-short-sleeve-tee-xl-black","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"171","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Juliana Short-Sleeve Tee-XL-Black","id":1478,"category_ids":["25","33","8","34","2"],"sku":"WS07-XL-Black","max_regular_price":42,"status":1},{"image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","small_image":"/w/s/ws07-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juliana-short-sleeve-tee-xl-white","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"171","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Juliana Short-Sleeve Tee-XL-White","id":1479,"category_ids":["25","33","8","34","2"],"sku":"WS07-XL-White","max_regular_price":42,"status":1},{"image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","small_image":"/w/s/ws07-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"juliana-short-sleeve-tee-xl-yellow","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"171","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Juliana Short-Sleeve Tee-XL-Yellow","id":1480,"category_ids":["25","33","8","34","2"],"sku":"WS07-XL-Yellow","max_regular_price":42,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":1481,"id":203,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1481,"id":202,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,59,60],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-1481.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1497","_score":1,"_source":{"id":1497,"sku":"WS08","name":"Minerva LumaTech™ V-Tee","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:18","updated_at":"2019-04-15 08:24:50","product_links":[{"link_type":"related","linked_product_sku":"WS09","linked_product_type":"configurable","position":1,"sku":"WS08"},{"link_type":"related","linked_product_sku":"WP10","linked_product_type":"configurable","position":2,"sku":"WS08"},{"link_type":"related","linked_product_sku":"WJ03","linked_product_type":"configurable","position":3,"sku":"WS08"},{"link_type":"related","linked_product_sku":"WS10","linked_product_type":"configurable","position":4,"sku":"WS08"},{"link_type":"related","linked_product_sku":"WP11","linked_product_type":"configurable","position":5,"sku":"WS08"},{"link_type":"related","linked_product_sku":"WH03","linked_product_type":"configurable","position":6,"sku":"WS08"},{"link_type":"related","linked_product_sku":"WH09","linked_product_type":"configurable","position":7,"sku":"WS08"},{"link_type":"related","linked_product_sku":"WJ06","linked_product_type":"configurable","position":8,"sku":"WS08"}],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":32,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \r\n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","category_ids":[25,33,30,2],"options_container":"container2","required_options":"1","has_options":"1","url_key":"minerva-lumatech-trade-v-tee","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":[33,149],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"minerva-lumatech-and-trade-v-tee-1497","links":{"related":[{"pos":1,"sku":"WS09"},{"pos":2,"sku":"WP10"},{"pos":3,"sku":"WJ03"},{"pos":4,"sku":"WS10"},{"pos":5,"sku":"WP11"},{"pos":6,"sku":"WH03"},{"pos":7,"sku":"WH09"},{"pos":8,"sku":"WJ06"}]},"stock":{"item_id":1497,"product_id":1497,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":null},{"vid":null,"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":null}],"configurable_children":[{"image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","small_image":"/w/s/ws08-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"minerva-lumatech-trade-v-tee-xs-black","required_options":"0","msrp_display_actual_price_type":"0","size":"167","special_price":"20.0000","price":32,"name":"Minerva LumaTech™ V-Tee-XS-Black","special_from_date":"2019-04-30 00:00:00","id":1482,"category_ids":["25","33","30","2"],"sku":"WS08-XS-Black","status":1},{"image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","small_image":"/w/s/ws08-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"minerva-lumatech-trade-v-tee-xs-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":32,"name":"Minerva LumaTech™ V-Tee-XS-Blue","id":1483,"category_ids":["25","33","30","2"],"sku":"WS08-XS-Blue","status":1},{"image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","small_image":"/w/s/ws08-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"minerva-lumatech-trade-v-tee-xs-red","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"167","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Minerva LumaTech™ V-Tee-XS-Red","id":1484,"category_ids":["25","33","30","2"],"sku":"WS08-XS-Red","max_regular_price":32,"status":1},{"image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","small_image":"/w/s/ws08-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"minerva-lumatech-trade-v-tee-s-black","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"168","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Minerva LumaTech™ V-Tee-S-Black","id":1485,"category_ids":["25","33","30","2"],"sku":"WS08-S-Black","max_regular_price":32,"status":1},{"image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","small_image":"/w/s/ws08-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"minerva-lumatech-trade-v-tee-s-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":32,"name":"Minerva LumaTech™ V-Tee-S-Blue","id":1486,"category_ids":["25","33","30","2"],"sku":"WS08-S-Blue","status":1},{"image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","small_image":"/w/s/ws08-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"minerva-lumatech-trade-v-tee-s-red","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"168","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Minerva LumaTech™ V-Tee-S-Red","id":1487,"category_ids":["25","33","30","2"],"sku":"WS08-S-Red","max_regular_price":32,"status":1},{"image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","small_image":"/w/s/ws08-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"minerva-lumatech-trade-v-tee-m-black","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":32,"name":"Minerva LumaTech™ V-Tee-M-Black","id":1488,"category_ids":["25","33","30","2"],"sku":"WS08-M-Black","status":1},{"image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","small_image":"/w/s/ws08-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"minerva-lumatech-trade-v-tee-m-blue","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"169","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Minerva LumaTech™ V-Tee-M-Blue","id":1489,"category_ids":["25","33","30","2"],"sku":"WS08-M-Blue","max_regular_price":32,"status":1},{"image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","small_image":"/w/s/ws08-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"minerva-lumatech-trade-v-tee-m-red","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"169","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Minerva LumaTech™ V-Tee-M-Red","id":1490,"category_ids":["25","33","30","2"],"sku":"WS08-M-Red","max_regular_price":32,"status":1},{"image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","small_image":"/w/s/ws08-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"minerva-lumatech-trade-v-tee-l-black","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"170","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Minerva LumaTech™ V-Tee-L-Black","id":1491,"category_ids":["25","33","30","2"],"sku":"WS08-L-Black","max_regular_price":32,"status":1},{"image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","small_image":"/w/s/ws08-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"minerva-lumatech-trade-v-tee-l-blue","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"170","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Minerva LumaTech™ V-Tee-L-Blue","id":1492,"category_ids":["25","33","30","2"],"sku":"WS08-L-Blue","max_regular_price":32,"status":1},{"image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","small_image":"/w/s/ws08-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"minerva-lumatech-trade-v-tee-l-red","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"170","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Minerva LumaTech™ V-Tee-L-Red","id":1493,"category_ids":["25","33","30","2"],"sku":"WS08-L-Red","max_regular_price":32,"status":1},{"image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","small_image":"/w/s/ws08-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"minerva-lumatech-trade-v-tee-xl-black","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"171","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Minerva LumaTech™ V-Tee-XL-Black","id":1494,"category_ids":["25","33","30","2"],"sku":"WS08-XL-Black","max_regular_price":32,"status":1},{"image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","small_image":"/w/s/ws08-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"minerva-lumatech-trade-v-tee-xl-blue","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"171","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Minerva LumaTech™ V-Tee-XL-Blue","id":1495,"category_ids":["25","33","30","2"],"sku":"WS08-XL-Blue","max_regular_price":32,"status":1},{"image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","small_image":"/w/s/ws08-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"minerva-lumatech-trade-v-tee-xl-red","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"171","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Minerva LumaTech™ V-Tee-XL-Red","id":1496,"category_ids":["25","33","30","2"],"sku":"WS08-XL-Red","max_regular_price":32,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":1497,"id":306,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1497,"id":307,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-1497.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1513","_score":1,"_source":{"id":1513,"sku":"WS09","name":"Tiffany Fitness Tee","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"tiffany-fitness-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"136","pattern":"197","climate":[205,209],"slug":"tiffany-fitness-tee-1513","links":{},"stock":{"item_id":1513,"product_id":1513,"stock_id":1,"qty":2,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","small_image":"/w/s/ws09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tiffany-fitness-tee-xs-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":28,"name":"Tiffany Fitness Tee-XS-Blue","id":1498,"category_ids":["25","33","30","36","2"],"sku":"WS09-XS-Blue","status":1},{"image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","small_image":"/w/s/ws09-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tiffany-fitness-tee-xs-red","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":28,"name":"Tiffany Fitness Tee-XS-Red","id":1499,"category_ids":["25","33","30","36","2"],"sku":"WS09-XS-Red","status":1},{"image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","small_image":"/w/s/ws09-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tiffany-fitness-tee-xs-white","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":28,"name":"Tiffany Fitness Tee-XS-White","id":1500,"category_ids":["25","33","30","36","2"],"sku":"WS09-XS-White","status":1},{"image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","small_image":"/w/s/ws09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tiffany-fitness-tee-s-blue","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"168","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Tiffany Fitness Tee-S-Blue","id":1501,"category_ids":["25","33","30","36","2"],"sku":"WS09-S-Blue","max_regular_price":28,"status":1},{"image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","small_image":"/w/s/ws09-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tiffany-fitness-tee-s-red","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"168","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Tiffany Fitness Tee-S-Red","id":1502,"category_ids":["25","33","30","36","2"],"sku":"WS09-S-Red","max_regular_price":28,"status":1},{"image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","small_image":"/w/s/ws09-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tiffany-fitness-tee-s-white","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"168","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Tiffany Fitness Tee-S-White","id":1503,"category_ids":["25","33","30","36","2"],"sku":"WS09-S-White","max_regular_price":28,"status":1},{"image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","small_image":"/w/s/ws09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tiffany-fitness-tee-m-blue","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"169","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Tiffany Fitness Tee-M-Blue","id":1504,"category_ids":["25","33","30","36","2"],"sku":"WS09-M-Blue","max_regular_price":28,"status":1},{"image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","small_image":"/w/s/ws09-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tiffany-fitness-tee-m-red","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"169","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Tiffany Fitness Tee-M-Red","id":1505,"category_ids":["25","33","30","36","2"],"sku":"WS09-M-Red","max_regular_price":28,"status":1},{"image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","small_image":"/w/s/ws09-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tiffany-fitness-tee-m-white","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"169","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Tiffany Fitness Tee-M-White","id":1506,"category_ids":["25","33","30","36","2"],"sku":"WS09-M-White","max_regular_price":28,"status":1},{"image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","small_image":"/w/s/ws09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tiffany-fitness-tee-l-blue","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"170","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Tiffany Fitness Tee-L-Blue","id":1507,"category_ids":["25","33","30","36","2"],"sku":"WS09-L-Blue","max_regular_price":28,"status":1},{"image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","small_image":"/w/s/ws09-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tiffany-fitness-tee-l-red","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"170","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Tiffany Fitness Tee-L-Red","id":1508,"category_ids":["25","33","30","36","2"],"sku":"WS09-L-Red","max_regular_price":28,"status":1},{"image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","small_image":"/w/s/ws09-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tiffany-fitness-tee-l-white","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"170","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Tiffany Fitness Tee-L-White","id":1509,"category_ids":["25","33","30","36","2"],"sku":"WS09-L-White","max_regular_price":28,"status":1},{"image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","small_image":"/w/s/ws09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tiffany-fitness-tee-xl-blue","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"171","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Tiffany Fitness Tee-XL-Blue","id":1510,"category_ids":["25","33","30","36","2"],"sku":"WS09-XL-Blue","max_regular_price":28,"status":1},{"image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","small_image":"/w/s/ws09-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tiffany-fitness-tee-xl-red","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"171","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Tiffany Fitness Tee-XL-Red","id":1511,"category_ids":["25","33","30","36","2"],"sku":"WS09-XL-Red","max_regular_price":28,"status":1},{"image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","small_image":"/w/s/ws09-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"tiffany-fitness-tee-xl-white","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"171","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Tiffany Fitness Tee-XL-White","id":1512,"category_ids":["25","33","30","36","2"],"sku":"WS09-XL-White","max_regular_price":28,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":1513,"id":207,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1513,"id":206,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,58,59],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-1513.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1529","_score":1,"_source":{"id":1529,"sku":"WS10","name":"Karissa V-Neck Tee","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"karissa-v-neck-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,153],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"karissa-v-neck-tee-1529","links":{},"stock":{"item_id":1529,"product_id":1529,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","small_image":"/w/s/ws10-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"karissa-v-neck-tee-xs-green","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":32,"name":"Karissa V-Neck Tee-XS-Green","id":1514,"category_ids":["25","33","35","2"],"sku":"WS10-XS-Green","status":1},{"image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","small_image":"/w/s/ws10-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"karissa-v-neck-tee-xs-red","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"167","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Karissa V-Neck Tee-XS-Red","id":1515,"category_ids":["25","33","35","2"],"sku":"WS10-XS-Red","max_regular_price":32,"status":1},{"image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","small_image":"/w/s/ws10-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"karissa-v-neck-tee-xs-yellow","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"167","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Karissa V-Neck Tee-XS-Yellow","id":1516,"category_ids":["25","33","35","2"],"sku":"WS10-XS-Yellow","max_regular_price":32,"status":1},{"image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","small_image":"/w/s/ws10-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"karissa-v-neck-tee-s-green","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"168","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Karissa V-Neck Tee-S-Green","id":1517,"category_ids":["25","33","35","2"],"sku":"WS10-S-Green","max_regular_price":32,"status":1},{"image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","small_image":"/w/s/ws10-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"karissa-v-neck-tee-s-red","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"168","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Karissa V-Neck Tee-S-Red","id":1518,"category_ids":["25","33","35","2"],"sku":"WS10-S-Red","max_regular_price":32,"status":1},{"image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","small_image":"/w/s/ws10-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"karissa-v-neck-tee-s-yellow","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"168","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Karissa V-Neck Tee-S-Yellow","id":1519,"category_ids":["25","33","35","2"],"sku":"WS10-S-Yellow","max_regular_price":32,"status":1},{"image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","small_image":"/w/s/ws10-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"karissa-v-neck-tee-m-green","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"169","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Karissa V-Neck Tee-M-Green","id":1520,"category_ids":["25","33","35","2"],"sku":"WS10-M-Green","max_regular_price":32,"status":1},{"image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","small_image":"/w/s/ws10-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"karissa-v-neck-tee-m-red","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"169","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Karissa V-Neck Tee-M-Red","id":1521,"category_ids":["25","33","35","2"],"sku":"WS10-M-Red","max_regular_price":32,"status":1},{"image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","small_image":"/w/s/ws10-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"karissa-v-neck-tee-m-yellow","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"169","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Karissa V-Neck Tee-M-Yellow","id":1522,"category_ids":["25","33","35","2"],"sku":"WS10-M-Yellow","max_regular_price":32,"status":1},{"image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","small_image":"/w/s/ws10-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"karissa-v-neck-tee-l-green","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"170","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Karissa V-Neck Tee-L-Green","id":1523,"category_ids":["25","33","35","2"],"sku":"WS10-L-Green","max_regular_price":32,"status":1},{"image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","small_image":"/w/s/ws10-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"karissa-v-neck-tee-l-red","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"170","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Karissa V-Neck Tee-L-Red","id":1524,"category_ids":["25","33","35","2"],"sku":"WS10-L-Red","max_regular_price":32,"status":1},{"image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","small_image":"/w/s/ws10-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"karissa-v-neck-tee-l-yellow","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"170","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Karissa V-Neck Tee-L-Yellow","id":1525,"category_ids":["25","33","35","2"],"sku":"WS10-L-Yellow","max_regular_price":32,"status":1},{"image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","small_image":"/w/s/ws10-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"karissa-v-neck-tee-xl-green","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"171","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Karissa V-Neck Tee-XL-Green","id":1526,"category_ids":["25","33","35","2"],"sku":"WS10-XL-Green","max_regular_price":32,"status":1},{"image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","small_image":"/w/s/ws10-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"karissa-v-neck-tee-xl-red","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"171","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Karissa V-Neck Tee-XL-Red","id":1527,"category_ids":["25","33","35","2"],"sku":"WS10-XL-Red","max_regular_price":32,"status":1},{"image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","small_image":"/w/s/ws10-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"karissa-v-neck-tee-xl-yellow","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"171","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Karissa V-Neck Tee-XL-Yellow","id":1528,"category_ids":["25","33","35","2"],"sku":"WS10-XL-Yellow","max_regular_price":32,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":1529,"id":209,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1529,"id":208,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[53,58,60],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-1529.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1545","_score":1,"_source":{"id":1545,"sku":"WS11","name":"Diva Gym Tee","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"diva-gym-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"1","style_general":"136","pattern":"197","climate":[205,209],"slug":"diva-gym-tee-1545","links":{},"stock":{"item_id":1545,"product_id":1545,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","small_image":"/w/s/ws11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"diva-gym-tee-xs-green","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":32,"name":"Diva Gym Tee-XS-Green","id":1530,"category_ids":["25","33","30","34","2"],"sku":"WS11-XS-Green","status":1},{"image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","small_image":"/w/s/ws11-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"diva-gym-tee-xs-orange","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"167","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Diva Gym Tee-XS-Orange","id":1531,"category_ids":["25","33","30","34","2"],"sku":"WS11-XS-Orange","max_regular_price":32,"status":1},{"image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","small_image":"/w/s/ws11-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"diva-gym-tee-xs-yellow","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"167","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Diva Gym Tee-XS-Yellow","id":1532,"category_ids":["25","33","30","34","2"],"sku":"WS11-XS-Yellow","max_regular_price":32,"status":1},{"image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","small_image":"/w/s/ws11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"diva-gym-tee-s-green","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"168","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Diva Gym Tee-S-Green","id":1533,"category_ids":["25","33","30","34","2"],"sku":"WS11-S-Green","max_regular_price":32,"status":1},{"image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","small_image":"/w/s/ws11-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"diva-gym-tee-s-orange","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"168","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Diva Gym Tee-S-Orange","id":1534,"category_ids":["25","33","30","34","2"],"sku":"WS11-S-Orange","max_regular_price":32,"status":1},{"image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","small_image":"/w/s/ws11-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"diva-gym-tee-s-yellow","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"168","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Diva Gym Tee-S-Yellow","id":1535,"category_ids":["25","33","30","34","2"],"sku":"WS11-S-Yellow","max_regular_price":32,"status":1},{"image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","small_image":"/w/s/ws11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"diva-gym-tee-m-green","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":32,"name":"Diva Gym Tee-M-Green","id":1536,"category_ids":["25","33","30","34","2"],"sku":"WS11-M-Green","status":1},{"image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","small_image":"/w/s/ws11-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"diva-gym-tee-m-orange","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"169","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Diva Gym Tee-M-Orange","id":1537,"category_ids":["25","33","30","34","2"],"sku":"WS11-M-Orange","max_regular_price":32,"status":1},{"image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","small_image":"/w/s/ws11-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"diva-gym-tee-m-yellow","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"169","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Diva Gym Tee-M-Yellow","id":1538,"category_ids":["25","33","30","34","2"],"sku":"WS11-M-Yellow","max_regular_price":32,"status":1},{"image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","small_image":"/w/s/ws11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"diva-gym-tee-l-green","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"170","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Diva Gym Tee-L-Green","id":1539,"category_ids":["25","33","30","34","2"],"sku":"WS11-L-Green","max_regular_price":32,"status":1},{"image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","small_image":"/w/s/ws11-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"diva-gym-tee-l-orange","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"170","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Diva Gym Tee-L-Orange","id":1540,"category_ids":["25","33","30","34","2"],"sku":"WS11-L-Orange","max_regular_price":32,"status":1},{"image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","small_image":"/w/s/ws11-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"diva-gym-tee-l-yellow","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"170","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Diva Gym Tee-L-Yellow","id":1541,"category_ids":["25","33","30","34","2"],"sku":"WS11-L-Yellow","max_regular_price":32,"status":1},{"image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","small_image":"/w/s/ws11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"diva-gym-tee-xl-green","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"171","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Diva Gym Tee-XL-Green","id":1542,"category_ids":["25","33","30","34","2"],"sku":"WS11-XL-Green","max_regular_price":32,"status":1},{"image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","small_image":"/w/s/ws11-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"diva-gym-tee-xl-orange","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"171","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Diva Gym Tee-XL-Orange","id":1543,"category_ids":["25","33","30","34","2"],"sku":"WS11-XL-Orange","max_regular_price":32,"status":1},{"image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","small_image":"/w/s/ws11-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"diva-gym-tee-xl-yellow","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"171","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Diva Gym Tee-XL-Yellow","id":1544,"category_ids":["25","33","30","34","2"],"sku":"WS11-XL-Yellow","max_regular_price":32,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1545,"id":211,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1545,"id":210,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[53,56,60],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-1545.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1461","_score":1,"_source":{"id":1461,"sku":"WS06-L-Red","name":"Elisa EverCool™ Tee-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"elisa-evercool-and-trade-tee-l-red-1461","links":{},"stock":{"item_id":1461,"product_id":1461,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-l-red-1461.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1485","_score":1,"_source":{"id":1485,"sku":"WS08-S-Black","name":"Minerva LumaTech™ V-Tee-S-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"minerva-lumatech-and-trade-v-tee-s-black-1485","links":{},"stock":{"item_id":1485,"product_id":1485,"stock_id":1,"qty":4,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-s-black-1485.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1486","_score":1,"_source":{"id":1486,"sku":"WS08-S-Blue","name":"Minerva LumaTech™ V-Tee-S-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2019-04-11 12:22:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \r\n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-s-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"168","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"minerva-lumatech-and-trade-v-tee-s-blue-1486","links":{},"stock":{"item_id":1486,"product_id":1486,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-04-11 12:22:55","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":null},{"vid":null,"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":null}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-s-blue-1486.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1464","_score":1,"_source":{"id":1464,"sku":"WS06-XL-Red","name":"Elisa EverCool™ Tee-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"elisa-evercool-and-trade-tee-xl-red-1464","links":{},"stock":{"item_id":1464,"product_id":1464,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xl-red-1464.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1457","_score":1,"_source":{"id":1457,"sku":"WS06-M-Purple","name":"Elisa EverCool™ Tee-M-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"elisa-evercool-and-trade-tee-m-purple-1457","links":{},"stock":{"item_id":1457,"product_id":1457,"stock_id":1,"qty":55,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-m-purple-1457.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1467","_score":1,"_source":{"id":1467,"sku":"WS07-XS-White","name":"Juliana Short-Sleeve Tee-XS-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juliana-short-sleeve-tee-xs-white-1467","links":{},"stock":{"item_id":1467,"product_id":1467,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xs-white-1467.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1460","_score":1,"_source":{"id":1460,"sku":"WS06-L-Purple","name":"Elisa EverCool™ Tee-L-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"elisa-evercool-and-trade-tee-l-purple-1460","links":{},"stock":{"item_id":1460,"product_id":1460,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-l-purple-1460.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1454","_score":1,"_source":{"id":1454,"sku":"WS06-S-Purple","name":"Elisa EverCool™ Tee-S-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"elisa-evercool-and-trade-tee-s-purple-1454","links":{},"stock":{"item_id":1454,"product_id":1454,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-s-purple-1454.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1475","_score":1,"_source":{"id":1475,"sku":"WS07-L-Black","name":"Juliana Short-Sleeve Tee-L-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juliana-short-sleeve-tee-l-black-1475","links":{},"stock":{"item_id":1475,"product_id":1475,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-l-black-1475.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1496","_score":1,"_source":{"id":1496,"sku":"WS08-XL-Red","name":"Minerva LumaTech™ V-Tee-XL-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"minerva-lumatech-and-trade-v-tee-xl-red-1496","links":{},"stock":{"item_id":1496,"product_id":1496,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xl-red-1496.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1466","_score":1,"_source":{"id":1466,"sku":"WS07-XS-Black","name":"Juliana Short-Sleeve Tee-XS-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juliana-short-sleeve-tee-xs-black-1466","links":{},"stock":{"item_id":1466,"product_id":1466,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xs-black-1466.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1459","_score":1,"_source":{"id":1459,"sku":"WS06-L-Gray","name":"Elisa EverCool™ Tee-L-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"elisa-evercool-and-trade-tee-l-gray-1459","links":{},"stock":{"item_id":1459,"product_id":1459,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-l-gray-1459.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1495","_score":1,"_source":{"id":1495,"sku":"WS08-XL-Blue","name":"Minerva LumaTech™ V-Tee-XL-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"minerva-lumatech-and-trade-v-tee-xl-blue-1495","links":{},"stock":{"item_id":1495,"product_id":1495,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xl-blue-1495.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1472","_score":1,"_source":{"id":1472,"sku":"WS07-M-Black","name":"Juliana Short-Sleeve Tee-M-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juliana-short-sleeve-tee-m-black-1472","links":{},"stock":{"item_id":1472,"product_id":1472,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-m-black-1472.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1482","_score":1,"_source":{"id":1482,"sku":"WS08-XS-Black","name":"Minerva LumaTech™ V-Tee-XS-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2019-06-28 09:49:11","weight":1,"product_links":[{"link_type":"related","linked_product_sku":"WS08","linked_product_type":"configurable","position":1,"sku":"WS08-XS-Black"},{"link_type":"related","linked_product_sku":"WH02","linked_product_type":"configurable","position":2,"sku":"WS08-XS-Black"},{"link_type":"related","linked_product_sku":"WS09","linked_product_type":"configurable","position":3,"sku":"WS08-XS-Black"},{"link_type":"related","linked_product_sku":"WJ03","linked_product_type":"configurable","position":4,"sku":"WS08-XS-Black"},{"link_type":"related","linked_product_sku":"WP10","linked_product_type":"configurable","position":5,"sku":"WS08-XS-Black"},{"link_type":"related","linked_product_sku":"WT03","linked_product_type":"configurable","position":6,"sku":"WS08-XS-Black"},{"link_type":"related","linked_product_sku":"WH10","linked_product_type":"configurable","position":7,"sku":"WS08-XS-Black"},{"link_type":"related","linked_product_sku":"WJ12","linked_product_type":"configurable","position":8,"sku":"WS08-XS-Black"}],"tier_prices":[],"custom_attributes":null,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTechâ„¢ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup. Beatufiul style.

                            \r\n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry. Beatufiull drying features

                            ","special_price":"20.0000","special_from_date":"2019-04-30 00:00:00","cost":"22.0000","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xs-black","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"167","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"1","style_general":"126","slug":"minerva-lumatech-and-trade-v-tee-xs-black-1482","links":{"related":[{"pos":1,"sku":"WS08"},{"pos":2,"sku":"WH02"},{"pos":3,"sku":"WS09"},{"pos":4,"sku":"WJ03"},{"pos":5,"sku":"WP10"},{"pos":6,"sku":"WT03"},{"pos":7,"sku":"WH10"},{"pos":8,"sku":"WJ12"}]},"stock":{"item_id":1482,"product_id":1482,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-07-10 05:07:21","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":null}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xs-black-1482.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1480","_score":1,"_source":{"id":1480,"sku":"WS07-XL-Yellow","name":"Juliana Short-Sleeve Tee-XL-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juliana-short-sleeve-tee-xl-yellow-1480","links":{},"stock":{"item_id":1480,"product_id":1480,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xl-yellow-1480.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1523","_score":1,"_source":{"id":1523,"sku":"WS10-L-Green","name":"Karissa V-Neck Tee-L-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"karissa-v-neck-tee-l-green-1523","links":{},"stock":{"item_id":1523,"product_id":1523,"stock_id":1,"qty":61,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-l-green-1523.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1501","_score":1,"_source":{"id":1501,"sku":"WS09-S-Blue","name":"Tiffany Fitness Tee-S-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tiffany-fitness-tee-s-blue-1501","links":{},"stock":{"item_id":1501,"product_id":1501,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-s-blue-1501.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1522","_score":1,"_source":{"id":1522,"sku":"WS10-M-Yellow","name":"Karissa V-Neck Tee-M-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"karissa-v-neck-tee-m-yellow-1522","links":{},"stock":{"item_id":1522,"product_id":1522,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-m-yellow-1522.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1519","_score":1,"_source":{"id":1519,"sku":"WS10-S-Yellow","name":"Karissa V-Neck Tee-S-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"karissa-v-neck-tee-s-yellow-1519","links":{},"stock":{"item_id":1519,"product_id":1519,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-s-yellow-1519.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1506","_score":1,"_source":{"id":1506,"sku":"WS09-M-White","name":"Tiffany Fitness Tee-M-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tiffany-fitness-tee-m-white-1506","links":{},"stock":{"item_id":1506,"product_id":1506,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-m-white-1506.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1534","_score":1,"_source":{"id":1534,"sku":"WS11-S-Orange","name":"Diva Gym Tee-S-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"diva-gym-tee-s-orange-1534","links":{},"stock":{"item_id":1534,"product_id":1534,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-s-orange-1534.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1520","_score":1,"_source":{"id":1520,"sku":"WS10-M-Green","name":"Karissa V-Neck Tee-M-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"karissa-v-neck-tee-m-green-1520","links":{},"stock":{"item_id":1520,"product_id":1520,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-m-green-1520.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1505","_score":1,"_source":{"id":1505,"sku":"WS09-M-Red","name":"Tiffany Fitness Tee-M-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tiffany-fitness-tee-m-red-1505","links":{},"stock":{"item_id":1505,"product_id":1505,"stock_id":1,"qty":44,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-m-red-1505.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1510","_score":1,"_source":{"id":1510,"sku":"WS09-XL-Blue","name":"Tiffany Fitness Tee-XL-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tiffany-fitness-tee-xl-blue-1510","links":{},"stock":{"item_id":1510,"product_id":1510,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xl-blue-1510.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1509","_score":1,"_source":{"id":1509,"sku":"WS09-L-White","name":"Tiffany Fitness Tee-L-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tiffany-fitness-tee-l-white-1509","links":{},"stock":{"item_id":1509,"product_id":1509,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-l-white-1509.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1504","_score":1,"_source":{"id":1504,"sku":"WS09-M-Blue","name":"Tiffany Fitness Tee-M-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"tiffany-fitness-tee-m-blue-1504","links":{},"stock":{"item_id":1504,"product_id":1504,"stock_id":1,"qty":54,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-m-blue-1504.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1525","_score":1,"_source":{"id":1525,"sku":"WS10-L-Yellow","name":"Karissa V-Neck Tee-L-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"karissa-v-neck-tee-l-yellow-1525","links":{},"stock":{"item_id":1525,"product_id":1525,"stock_id":1,"qty":78,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-l-yellow-1525.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1512","_score":1,"_source":{"id":1512,"sku":"WS09-XL-White","name":"Tiffany Fitness Tee-XL-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tiffany-fitness-tee-xl-white-1512","links":{},"stock":{"item_id":1512,"product_id":1512,"stock_id":1,"qty":39,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xl-white-1512.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1531","_score":1,"_source":{"id":1531,"sku":"WS11-XS-Orange","name":"Diva Gym Tee-XS-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"diva-gym-tee-xs-orange-1531","links":{},"stock":{"item_id":1531,"product_id":1531,"stock_id":1,"qty":45,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xs-orange-1531.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1517","_score":1,"_source":{"id":1517,"sku":"WS10-S-Green","name":"Karissa V-Neck Tee-S-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"karissa-v-neck-tee-s-green-1517","links":{},"stock":{"item_id":1517,"product_id":1517,"stock_id":1,"qty":58,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-s-green-1517.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1507","_score":1,"_source":{"id":1507,"sku":"WS09-L-Blue","name":"Tiffany Fitness Tee-L-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tiffany-fitness-tee-l-blue-1507","links":{},"stock":{"item_id":1507,"product_id":1507,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-l-blue-1507.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1528","_score":1,"_source":{"id":1528,"sku":"WS10-XL-Yellow","name":"Karissa V-Neck Tee-XL-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"karissa-v-neck-tee-xl-yellow-1528","links":{},"stock":{"item_id":1528,"product_id":1528,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xl-yellow-1528.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1526","_score":1,"_source":{"id":1526,"sku":"WS10-XL-Green","name":"Karissa V-Neck Tee-XL-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"karissa-v-neck-tee-xl-green-1526","links":{},"stock":{"item_id":1526,"product_id":1526,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xl-green-1526.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1514","_score":1,"_source":{"id":1514,"sku":"WS10-XS-Green","name":"Karissa V-Neck Tee-XS-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-green_main.jpg","small_image":"/w/s/ws10-green_main.jpg","thumbnail":"/w/s/ws10-green_main.jpg","color":"53","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"karissa-v-neck-tee-xs-green-1514","links":{},"stock":{"item_id":1514,"product_id":1514,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-28 11:56:40","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/s/ws10-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xs-green-1514.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1515","_score":1,"_source":{"id":1515,"sku":"WS10-XS-Red","name":"Karissa V-Neck Tee-XS-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"karissa-v-neck-tee-xs-red-1515","links":{},"stock":{"item_id":1515,"product_id":1515,"stock_id":1,"qty":42,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xs-red-1515.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1511","_score":1,"_source":{"id":1511,"sku":"WS09-XL-Red","name":"Tiffany Fitness Tee-XL-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"tiffany-fitness-tee-xl-red-1511","links":{},"stock":{"item_id":1511,"product_id":1511,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xl-red-1511.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1521","_score":1,"_source":{"id":1521,"sku":"WS10-M-Red","name":"Karissa V-Neck Tee-M-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"karissa-v-neck-tee-m-red-1521","links":{},"stock":{"item_id":1521,"product_id":1521,"stock_id":1,"qty":41,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-m-red-1521.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1516","_score":1,"_source":{"id":1516,"sku":"WS10-XS-Yellow","name":"Karissa V-Neck Tee-XS-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-yellow_main.jpg","small_image":"/w/s/ws10-yellow_main.jpg","thumbnail":"/w/s/ws10-yellow_main.jpg","color":"60","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"karissa-v-neck-tee-xs-yellow-1516","links":{},"stock":{"item_id":1516,"product_id":1516,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws10-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xs-yellow-1516.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1508","_score":1,"_source":{"id":1508,"sku":"WS09-L-Red","name":"Tiffany Fitness Tee-L-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"tiffany-fitness-tee-l-red-1508","links":{},"stock":{"item_id":1508,"product_id":1508,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-l-red-1508.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1544","_score":1,"_source":{"id":1544,"sku":"WS11-XL-Yellow","name":"Diva Gym Tee-XL-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"diva-gym-tee-xl-yellow-1544","links":{},"stock":{"item_id":1544,"product_id":1544,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xl-yellow-1544.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1524","_score":1,"_source":{"id":1524,"sku":"WS10-L-Red","name":"Karissa V-Neck Tee-L-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"karissa-v-neck-tee-l-red-1524","links":{},"stock":{"item_id":1524,"product_id":1524,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-l-red-1524.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1533","_score":1,"_source":{"id":1533,"sku":"WS11-S-Green","name":"Diva Gym Tee-S-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"diva-gym-tee-s-green-1533","links":{},"stock":{"item_id":1533,"product_id":1533,"stock_id":1,"qty":11,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-s-green-1533.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1527","_score":1,"_source":{"id":1527,"sku":"WS10-XL-Red","name":"Karissa V-Neck Tee-XL-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"karissa-v-neck-tee-xl-red-1527","links":{},"stock":{"item_id":1527,"product_id":1527,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-xl-red-1527.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1542","_score":1,"_source":{"id":1542,"sku":"WS11-XL-Green","name":"Diva Gym Tee-XL-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"diva-gym-tee-xl-green-1542","links":{},"stock":{"item_id":1542,"product_id":1542,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xl-green-1542.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1518","_score":1,"_source":{"id":1518,"sku":"WS10-S-Red","name":"Karissa V-Neck Tee-S-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Karissa V-Neck Tee features a semi-fitted shape that's flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

                            \n

                            • Pink heather soft v-neck tee.
                            • Luma signature micro sleeves.
                            • Semi-fitted.
                            • Machine wash/dry.

                            ","image":"/w/s/ws10-red_main.jpg","small_image":"/w/s/ws10-red_main.jpg","thumbnail":"/w/s/ws10-red_main.jpg","color":"58","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karissa-v-neck-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"karissa-v-neck-tee-s-red-1518","links":{},"stock":{"item_id":1518,"product_id":1518,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws10-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws10-red_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/karissa-v-neck-tee-s-red-1518.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1535","_score":1,"_source":{"id":1535,"sku":"WS11-S-Yellow","name":"Diva Gym Tee-S-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"diva-gym-tee-s-yellow-1535","links":{},"stock":{"item_id":1535,"product_id":1535,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-s-yellow-1535.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1502","_score":1,"_source":{"id":1502,"sku":"WS09-S-Red","name":"Tiffany Fitness Tee-S-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tiffany-fitness-tee-s-red-1502","links":{},"stock":{"item_id":1502,"product_id":1502,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-s-red-1502.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1538","_score":1,"_source":{"id":1538,"sku":"WS11-M-Yellow","name":"Diva Gym Tee-M-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"diva-gym-tee-m-yellow-1538","links":{},"stock":{"item_id":1538,"product_id":1538,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-m-yellow-1538.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1549","_score":1,"_source":{"id":1549,"sku":"WS12-S-Blue","name":"Radiant Tee-S-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"radiant-tee-s-blue-1549","links":{},"stock":{"item_id":1549,"product_id":1549,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-07-06 12:24:12","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-s-blue-1549.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1537","_score":1,"_source":{"id":1537,"sku":"WS11-M-Orange","name":"Diva Gym Tee-M-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"diva-gym-tee-m-orange-1537","links":{},"stock":{"item_id":1537,"product_id":1537,"stock_id":1,"qty":65,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-m-orange-1537.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1530","_score":1,"_source":{"id":1530,"sku":"WS11-XS-Green","name":"Diva Gym Tee-XS-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"diva-gym-tee-xs-green-1530","links":{},"stock":{"item_id":1530,"product_id":1530,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-29 11:29:03","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xs-green-1530.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1540","_score":1,"_source":{"id":1540,"sku":"WS11-L-Orange","name":"Diva Gym Tee-L-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"diva-gym-tee-l-orange-1540","links":{},"stock":{"item_id":1540,"product_id":1540,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-l-orange-1540.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1536","_score":1,"_source":{"id":1536,"sku":"WS11-M-Green","name":"Diva Gym Tee-M-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"diva-gym-tee-m-green-1536","links":{},"stock":{"item_id":1536,"product_id":1536,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-08-07 19:27:21","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-m-green-1536.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1546","_score":1,"_source":{"id":1546,"sku":"WS12-XS-Blue","name":"Radiant Tee-XS-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"radiant-tee-xs-blue-1546","links":{},"stock":{"item_id":1546,"product_id":1546,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-10 16:42:32","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xs-blue-1546.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1543","_score":1,"_source":{"id":1543,"sku":"WS11-XL-Orange","name":"Diva Gym Tee-XL-Orange","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-orange_main.jpg","small_image":"/w/s/ws11-orange_main.jpg","thumbnail":"/w/s/ws11-orange_main.jpg","color":"56","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"diva-gym-tee-xl-orange-1543","links":{},"stock":{"item_id":1543,"product_id":1543,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws11-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xl-orange-1543.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1550","_score":1,"_source":{"id":1550,"sku":"WS12-S-Orange","name":"Radiant Tee-S-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"radiant-tee-s-orange-1550","links":{},"stock":{"item_id":1550,"product_id":1550,"stock_id":1,"qty":66,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-s-orange-1550.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1539","_score":1,"_source":{"id":1539,"sku":"WS11-L-Green","name":"Diva Gym Tee-L-Green","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-green_main.jpg","small_image":"/w/s/ws11-green_main.jpg","thumbnail":"/w/s/ws11-green_main.jpg","color":"53","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"diva-gym-tee-l-green-1539","links":{},"stock":{"item_id":1539,"product_id":1539,"stock_id":1,"qty":77,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws11-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-l-green-1539.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1547","_score":1,"_source":{"id":1547,"sku":"WS12-XS-Orange","name":"Radiant Tee-XS-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"radiant-tee-xs-orange-1547","links":{},"stock":{"item_id":1547,"product_id":1547,"stock_id":1,"qty":71,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xs-orange-1547.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1541","_score":1,"_source":{"id":1541,"sku":"WS11-L-Yellow","name":"Diva Gym Tee-L-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"diva-gym-tee-l-yellow-1541","links":{},"stock":{"item_id":1541,"product_id":1541,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-l-yellow-1541.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1532","_score":1,"_source":{"id":1532,"sku":"WS11-XS-Yellow","name":"Diva Gym Tee-XS-Yellow","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it's a casual staple that hides incredible comfort behind a laid-back, carefree look.

                            \n

                            • Bright yellow v-neck tee.
                            • Moisture-wicking fabric.
                            • Long-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws11-yellow_main.jpg","small_image":"/w/s/ws11-yellow_main.jpg","thumbnail":"/w/s/ws11-yellow_main.jpg","color":"60","category_ids":[25,33,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diva-gym-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"diva-gym-tee-xs-yellow-1532","links":{},"stock":{"item_id":1532,"product_id":1532,"stock_id":1,"qty":79,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws11-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws11-yellow_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/diva-gym-tee-xs-yellow-1532.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1548","_score":1,"_source":{"id":1548,"sku":"WS12-XS-Purple","name":"Radiant Tee-XS-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"radiant-tee-xs-purple-1548","links":{},"stock":{"item_id":1548,"product_id":1548,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xs-purple-1548.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1492","_score":1,"_source":{"id":1492,"sku":"WS08-L-Blue","name":"Minerva LumaTech™ V-Tee-L-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"minerva-lumatech-and-trade-v-tee-l-blue-1492","links":{},"stock":{"item_id":1492,"product_id":1492,"stock_id":1,"qty":16,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-l-blue-1492.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1493","_score":1,"_source":{"id":1493,"sku":"WS08-L-Red","name":"Minerva LumaTech™ V-Tee-L-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"minerva-lumatech-and-trade-v-tee-l-red-1493","links":{},"stock":{"item_id":1493,"product_id":1493,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-l-red-1493.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1491","_score":1,"_source":{"id":1491,"sku":"WS08-L-Black","name":"Minerva LumaTech™ V-Tee-L-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"minerva-lumatech-and-trade-v-tee-l-black-1491","links":{},"stock":{"item_id":1491,"product_id":1491,"stock_id":1,"qty":14,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-l-black-1491.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1490","_score":1,"_source":{"id":1490,"sku":"WS08-M-Red","name":"Minerva LumaTech™ V-Tee-M-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"minerva-lumatech-and-trade-v-tee-m-red-1490","links":{},"stock":{"item_id":1490,"product_id":1490,"stock_id":1,"qty":70,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-m-red-1490.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1484","_score":1,"_source":{"id":1484,"sku":"WS08-XS-Red","name":"Minerva LumaTech™ V-Tee-XS-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"minerva-lumatech-and-trade-v-tee-xs-red-1484","links":{},"stock":{"item_id":1484,"product_id":1484,"stock_id":1,"qty":62,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xs-red-1484.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1478","_score":1,"_source":{"id":1478,"sku":"WS07-XL-Black","name":"Juliana Short-Sleeve Tee-XL-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juliana-short-sleeve-tee-xl-black-1478","links":{},"stock":{"item_id":1478,"product_id":1478,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xl-black-1478.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1456","_score":1,"_source":{"id":1456,"sku":"WS06-M-Gray","name":"Elisa EverCool™ Tee-M-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"elisa-evercool-and-trade-tee-m-gray-1456","links":{},"stock":{"item_id":1456,"product_id":1456,"stock_id":1,"qty":60,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-m-gray-1456.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1477","_score":1,"_source":{"id":1477,"sku":"WS07-L-Yellow","name":"Juliana Short-Sleeve Tee-L-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juliana-short-sleeve-tee-l-yellow-1477","links":{},"stock":{"item_id":1477,"product_id":1477,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-l-yellow-1477.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1494","_score":1,"_source":{"id":1494,"sku":"WS08-XL-Black","name":"Minerva LumaTech™ V-Tee-XL-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"minerva-lumatech-and-trade-v-tee-xl-black-1494","links":{},"stock":{"item_id":1494,"product_id":1494,"stock_id":1,"qty":51,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xl-black-1494.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1499","_score":1,"_source":{"id":1499,"sku":"WS09-XS-Red","name":"Tiffany Fitness Tee-XS-Red","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-red_main.jpg","small_image":"/w/s/ws09-red_main.jpg","thumbnail":"/w/s/ws09-red_main.jpg","color":"58","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tiffany-fitness-tee-xs-red-1499","links":{},"stock":{"item_id":1499,"product_id":1499,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws09-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xs-red-1499.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1483","_score":1,"_source":{"id":1483,"sku":"WS08-XS-Blue","name":"Minerva LumaTech™ V-Tee-XS-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"minerva-lumatech-and-trade-v-tee-xs-blue-1483","links":{},"stock":{"item_id":1483,"product_id":1483,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-08-20 08:21:00","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-xs-blue-1483.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1487","_score":1,"_source":{"id":1487,"sku":"WS08-S-Red","name":"Minerva LumaTech™ V-Tee-S-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-red_main.jpg","small_image":"/w/s/ws08-red_main.jpg","thumbnail":"/w/s/ws08-red_main.jpg","color":"58","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"minerva-lumatech-and-trade-v-tee-s-red-1487","links":{},"stock":{"item_id":1487,"product_id":1487,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws08-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-s-red-1487.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1489","_score":1,"_source":{"id":1489,"sku":"WS08-M-Blue","name":"Minerva LumaTech™ V-Tee-M-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-blue_main.jpg","small_image":"/w/s/ws08-blue_main.jpg","thumbnail":"/w/s/ws08-blue_main.jpg","color":"50","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"minerva-lumatech-and-trade-v-tee-m-blue-1489","links":{},"stock":{"item_id":1489,"product_id":1489,"stock_id":1,"qty":62,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws08-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws08-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-m-blue-1489.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1473","_score":1,"_source":{"id":1473,"sku":"WS07-M-White","name":"Juliana Short-Sleeve Tee-M-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juliana-short-sleeve-tee-m-white-1473","links":{},"stock":{"item_id":1473,"product_id":1473,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-m-white-1473.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1498","_score":1,"_source":{"id":1498,"sku":"WS09-XS-Blue","name":"Tiffany Fitness Tee-XS-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-blue_main.jpg","small_image":"/w/s/ws09-blue_main.jpg","thumbnail":"/w/s/ws09-blue_main.jpg","color":"50","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tiffany-fitness-tee-xs-blue-1498","links":{},"stock":{"item_id":1498,"product_id":1498,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-03-08 08:34:51","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/s/ws09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws09-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xs-blue-1498.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1474","_score":1,"_source":{"id":1474,"sku":"WS07-M-Yellow","name":"Juliana Short-Sleeve Tee-M-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"juliana-short-sleeve-tee-m-yellow-1474","links":{},"stock":{"item_id":1474,"product_id":1474,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-m-yellow-1474.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1488","_score":1,"_source":{"id":1488,"sku":"WS08-M-Black","name":"Minerva LumaTech™ V-Tee-M-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            Don't be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

                            \n

                            • Navy blue heather soft v-neck tee.
                            • Flatlock seams for chafe-free comfort.
                            • Relaxed cut.
                            • Ultra-lightweight fabric.
                            • Machine wash/dry.

                            ","image":"/w/s/ws08-black_main.jpg","small_image":"/w/s/ws08-black_main.jpg","thumbnail":"/w/s/ws08-black_main.jpg","color":"49","category_ids":[25,33,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"minerva-lumatech-trade-v-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"minerva-lumatech-and-trade-v-tee-m-black-1488","links":{},"stock":{"item_id":1488,"product_id":1488,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-07-16 06:34:06","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/s/ws08-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/minerva-lumatech-and-trade-v-tee-m-black-1488.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1500","_score":1,"_source":{"id":1500,"sku":"WS09-XS-White","name":"Tiffany Fitness Tee-XS-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"tiffany-fitness-tee-xs-white-1500","links":{},"stock":{"item_id":1500,"product_id":1500,"stock_id":1,"qty":66,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-xs-white-1500.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1462","_score":1,"_source":{"id":1462,"sku":"WS06-XL-Gray","name":"Elisa EverCool™ Tee-XL-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"elisa-evercool-and-trade-tee-xl-gray-1462","links":{},"stock":{"item_id":1462,"product_id":1462,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xl-gray-1462.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1469","_score":1,"_source":{"id":1469,"sku":"WS07-S-Black","name":"Juliana Short-Sleeve Tee-S-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-black_main.jpg","small_image":"/w/s/ws07-black_main.jpg","thumbnail":"/w/s/ws07-black_main.jpg","color":"49","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juliana-short-sleeve-tee-s-black-1469","links":{},"stock":{"item_id":1469,"product_id":1469,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws07-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws07-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws07-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-s-black-1469.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1470","_score":1,"_source":{"id":1470,"sku":"WS07-S-White","name":"Juliana Short-Sleeve Tee-S-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juliana-short-sleeve-tee-s-white-1470","links":{},"stock":{"item_id":1470,"product_id":1470,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-s-white-1470.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1453","_score":1,"_source":{"id":1453,"sku":"WS06-S-Gray","name":"Elisa EverCool™ Tee-S-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-gray_main.jpg","small_image":"/w/s/ws06-gray_main.jpg","thumbnail":"/w/s/ws06-gray_main.jpg","color":"52","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"elisa-evercool-and-trade-tee-s-gray-1453","links":{},"stock":{"item_id":1453,"product_id":1453,"stock_id":1,"qty":78,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws06-gray_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-s-gray-1453.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1458","_score":1,"_source":{"id":1458,"sku":"WS06-M-Red","name":"Elisa EverCool™ Tee-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"elisa-evercool-and-trade-tee-m-red-1458","links":{},"stock":{"item_id":1458,"product_id":1458,"stock_id":1,"qty":49,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-m-red-1458.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1451","_score":1,"_source":{"id":1451,"sku":"WS06-XS-Purple","name":"Elisa EverCool™ Tee-XS-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:17","updated_at":"2017-11-06 12:17:17","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"elisa-evercool-and-trade-tee-xs-purple-1451","links":{},"stock":{"item_id":1451,"product_id":1451,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xs-purple-1451.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1468","_score":1,"_source":{"id":1468,"sku":"WS07-XS-Yellow","name":"Juliana Short-Sleeve Tee-XS-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"juliana-short-sleeve-tee-xs-yellow-1468","links":{},"stock":{"item_id":1468,"product_id":1468,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xs-yellow-1468.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1455","_score":1,"_source":{"id":1455,"sku":"WS06-S-Red","name":"Elisa EverCool™ Tee-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"elisa-evercool-and-trade-tee-s-red-1455","links":{},"stock":{"item_id":1455,"product_id":1455,"stock_id":1,"qty":80,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-s-red-1455.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1479","_score":1,"_source":{"id":1479,"sku":"WS07-XL-White","name":"Juliana Short-Sleeve Tee-XL-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"juliana-short-sleeve-tee-xl-white-1479","links":{},"stock":{"item_id":1479,"product_id":1479,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-xl-white-1479.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1452","_score":1,"_source":{"id":1452,"sku":"WS06-XS-Red","name":"Elisa EverCool™ Tee-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-red_main.jpg","small_image":"/w/s/ws06-red_main.jpg","thumbnail":"/w/s/ws06-red_main.jpg","color":"58","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"elisa-evercool-and-trade-tee-xs-red-1452","links":{},"stock":{"item_id":1452,"product_id":1452,"stock_id":1,"qty":74,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws06-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xs-red-1452.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1463","_score":1,"_source":{"id":1463,"sku":"WS06-XL-Purple","name":"Elisa EverCool™ Tee-XL-Purple","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

                            \n

                            • Purple heather v-neck tee.
                            • Short-Sleeves.
                            • Luma EverCool™ fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws06-purple_main.jpg","small_image":"/w/s/ws06-purple_main.jpg","thumbnail":"/w/s/ws06-purple_main.jpg","color":"57","category_ids":[25,33,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"elisa-evercool-trade-tee-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"elisa-evercool-and-trade-tee-xl-purple-1463","links":{},"stock":{"item_id":1463,"product_id":1463,"stock_id":1,"qty":79,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws06-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws06-purple_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/elisa-evercool-and-trade-tee-xl-purple-1463.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1476","_score":1,"_source":{"id":1476,"sku":"WS07-L-White","name":"Juliana Short-Sleeve Tee-L-White","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-white_main.jpg","small_image":"/w/s/ws07-white_main.jpg","thumbnail":"/w/s/ws07-white_main.jpg","color":"59","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"juliana-short-sleeve-tee-l-white-1476","links":{},"stock":{"item_id":1476,"product_id":1476,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws07-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-l-white-1476.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1471","_score":1,"_source":{"id":1471,"sku":"WS07-S-Yellow","name":"Juliana Short-Sleeve Tee-S-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:18","updated_at":"2017-11-06 12:17:18","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                            The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

                            \n

                            • Black scoop neck tee.
                            • Side rouching.
                            • Relaxed fit.

                            ","image":"/w/s/ws07-yellow_main.jpg","small_image":"/w/s/ws07-yellow_main.jpg","thumbnail":"/w/s/ws07-yellow_main.jpg","color":"60","category_ids":[25,33,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"juliana-short-sleeve-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"juliana-short-sleeve-tee-s-yellow-1471","links":{},"stock":{"item_id":1471,"product_id":1471,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws07-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/juliana-short-sleeve-tee-s-yellow-1471.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1503","_score":1,"_source":{"id":1503,"sku":"WS09-S-White","name":"Tiffany Fitness Tee-S-White","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                            You'll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

                            \n

                            • Teal soft scoop neck tee.
                            • Contrast stitching pattern.
                            • Machine wash/dry.

                            ","image":"/w/s/ws09-white_main.jpg","small_image":"/w/s/ws09-white_main.jpg","thumbnail":"/w/s/ws09-white_main.jpg","color":"59","category_ids":[25,33,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"tiffany-fitness-tee-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"tiffany-fitness-tee-s-white-1503","links":{},"stock":{"item_id":1503,"product_id":1503,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws09-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/tiffany-fitness-tee-s-white-1503.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1572","_score":1,"_source":{"id":1572,"sku":"WS01-L-Green","name":"Gwyn Endurance Tee-L-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gwyn-endurance-tee-l-green-1572","links":{},"stock":{"item_id":1572,"product_id":1572,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":"","vid":null}],"category":[{"category_id":25,"name":"Tees","slug":"tees-25","path":"women/tops-women/tees-women/tees-25"},{"category_id":33,"name":"Tees","slug":"tees-33","path":"promotions/tees-all/tees-33"},{"category_id":2,"name":"All","slug":"all-2","path":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-l-green-1572.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1629","_score":1,"_source":{"id":1629,"sku":"WB03-S-Green","name":"Celeste Sports Bra-S-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"celeste-sports-bra-s-green-1629","links":{},"stock":{"item_id":1629,"product_id":1629,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-s-green-1629.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1647","_score":1,"_source":{"id":1647,"sku":"WB04-S-Yellow","name":"Prima Compete Bra Top-S-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"prima-compete-bra-top-s-yellow-1647","links":{},"stock":{"item_id":1647,"product_id":1647,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-s-yellow-1647.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1646","_score":1,"_source":{"id":1646,"sku":"WB04-S-Purple","name":"Prima Compete Bra Top-S-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"prima-compete-bra-top-s-purple-1646","links":{},"stock":{"item_id":1646,"product_id":1646,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-s-purple-1646.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1640","_score":1,"_source":{"id":1640,"sku":"WB03-XL-Yellow","name":"Celeste Sports Bra-XL-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"celeste-sports-bra-xl-yellow-1640","links":{},"stock":{"item_id":1640,"product_id":1640,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xl-yellow-1640.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1631","_score":1,"_source":{"id":1631,"sku":"WB03-S-Yellow","name":"Celeste Sports Bra-S-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"celeste-sports-bra-s-yellow-1631","links":{},"stock":{"item_id":1631,"product_id":1631,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-s-yellow-1631.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1630","_score":1,"_source":{"id":1630,"sku":"WB03-S-Red","name":"Celeste Sports Bra-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"celeste-sports-bra-s-red-1630","links":{},"stock":{"item_id":1630,"product_id":1630,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-s-red-1630.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1648","_score":1,"_source":{"id":1648,"sku":"WB04-M-Blue","name":"Prima Compete Bra Top-M-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"prima-compete-bra-top-m-blue-1648","links":{},"stock":{"item_id":1648,"product_id":1648,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-m-blue-1648.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1638","_score":1,"_source":{"id":1638,"sku":"WB03-XL-Green","name":"Celeste Sports Bra-XL-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"celeste-sports-bra-xl-green-1638","links":{},"stock":{"item_id":1638,"product_id":1638,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xl-green-1638.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1633","_score":1,"_source":{"id":1633,"sku":"WB03-M-Red","name":"Celeste Sports Bra-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"celeste-sports-bra-m-red-1633","links":{},"stock":{"item_id":1633,"product_id":1633,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-m-red-1633.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1627","_score":1,"_source":{"id":1627,"sku":"WB03-XS-Red","name":"Celeste Sports Bra-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"celeste-sports-bra-xs-red-1627","links":{},"stock":{"item_id":1627,"product_id":1627,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xs-red-1627.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1645","_score":1,"_source":{"id":1645,"sku":"WB04-S-Blue","name":"Prima Compete Bra Top-S-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"prima-compete-bra-top-s-blue-1645","links":{},"stock":{"item_id":1645,"product_id":1645,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-s-blue-1645.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1639","_score":1,"_source":{"id":1639,"sku":"WB03-XL-Red","name":"Celeste Sports Bra-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"celeste-sports-bra-xl-red-1639","links":{},"stock":{"item_id":1639,"product_id":1639,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xl-red-1639.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1637","_score":1,"_source":{"id":1637,"sku":"WB03-L-Yellow","name":"Celeste Sports Bra-L-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2019-04-15 12:13:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \r\n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-l-yellow","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"170","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"celeste-sports-bra-l-yellow-1637","links":{},"stock":{"item_id":1637,"product_id":1637,"stock_id":1,"qty":7,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":null}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-l-yellow-1637.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1649","_score":1,"_source":{"id":1649,"sku":"WB04-M-Purple","name":"Prima Compete Bra Top-M-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"prima-compete-bra-top-m-purple-1649","links":{},"stock":{"item_id":1649,"product_id":1649,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-m-purple-1649.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1636","_score":1,"_source":{"id":1636,"sku":"WB03-L-Red","name":"Celeste Sports Bra-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-red_main.jpg","small_image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"celeste-sports-bra-l-red-1636","links":{},"stock":{"item_id":1636,"product_id":1636,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb03-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-l-red-1636.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1643","_score":1,"_source":{"id":1643,"sku":"WB04-XS-Purple","name":"Prima Compete Bra Top-XS-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"prima-compete-bra-top-xs-purple-1643","links":{},"stock":{"item_id":1643,"product_id":1643,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xs-purple-1643.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1642","_score":1,"_source":{"id":1642,"sku":"WB04-XS-Blue","name":"Prima Compete Bra Top-XS-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"prima-compete-bra-top-xs-blue-1642","links":{},"stock":{"item_id":1642,"product_id":1642,"stock_id":1,"qty":80,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xs-blue-1642.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1644","_score":1,"_source":{"id":1644,"sku":"WB04-XS-Yellow","name":"Prima Compete Bra Top-XS-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"prima-compete-bra-top-xs-yellow-1644","links":{},"stock":{"item_id":1644,"product_id":1644,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xs-yellow-1644.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1625","_score":1,"_source":{"id":1625,"sku":"WB02","name":"Erica Evercool Sports Bra","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"erica-evercool-sports-bra","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,149],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"131","pattern":"197","climate":[205,209],"slug":"erica-evercool-sports-bra-1625","links":{},"stock":{"item_id":1625,"product_id":1625,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","small_image":"/w/b/wb02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erica-evercool-sports-bra-xs-blue","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"167","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Erica Evercool Sports Bra-XS-Blue","id":1610,"category_ids":["26"],"sku":"WB02-XS-Blue","max_regular_price":39,"status":1},{"image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","small_image":"/w/b/wb02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erica-evercool-sports-bra-xs-orange","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"167","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Erica Evercool Sports Bra-XS-Orange","id":1611,"category_ids":["26"],"sku":"WB02-XS-Orange","max_regular_price":39,"status":1},{"image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","small_image":"/w/b/wb02-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erica-evercool-sports-bra-xs-yellow","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"167","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Erica Evercool Sports Bra-XS-Yellow","id":1612,"category_ids":["26"],"sku":"WB02-XS-Yellow","max_regular_price":39,"status":1},{"image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","small_image":"/w/b/wb02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erica-evercool-sports-bra-s-blue","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Erica Evercool Sports Bra-S-Blue","id":1613,"category_ids":["26"],"sku":"WB02-S-Blue","max_regular_price":39,"status":1},{"image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","small_image":"/w/b/wb02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erica-evercool-sports-bra-s-orange","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Erica Evercool Sports Bra-S-Orange","id":1614,"category_ids":["26"],"sku":"WB02-S-Orange","max_regular_price":39,"status":1},{"image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","small_image":"/w/b/wb02-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erica-evercool-sports-bra-s-yellow","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Erica Evercool Sports Bra-S-Yellow","id":1615,"category_ids":["26"],"sku":"WB02-S-Yellow","max_regular_price":39,"status":1},{"image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","small_image":"/w/b/wb02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erica-evercool-sports-bra-m-blue","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Erica Evercool Sports Bra-M-Blue","id":1616,"category_ids":["26"],"sku":"WB02-M-Blue","max_regular_price":39,"status":1},{"image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","small_image":"/w/b/wb02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erica-evercool-sports-bra-m-orange","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Erica Evercool Sports Bra-M-Orange","id":1617,"category_ids":["26"],"sku":"WB02-M-Orange","max_regular_price":39,"status":1},{"image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","small_image":"/w/b/wb02-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erica-evercool-sports-bra-m-yellow","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Erica Evercool Sports Bra-M-Yellow","id":1618,"category_ids":["26"],"sku":"WB02-M-Yellow","max_regular_price":39,"status":1},{"image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","small_image":"/w/b/wb02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erica-evercool-sports-bra-l-blue","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Erica Evercool Sports Bra-L-Blue","id":1619,"category_ids":["26"],"sku":"WB02-L-Blue","max_regular_price":39,"status":1},{"image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","small_image":"/w/b/wb02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erica-evercool-sports-bra-l-orange","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Erica Evercool Sports Bra-L-Orange","id":1620,"category_ids":["26"],"sku":"WB02-L-Orange","max_regular_price":39,"status":1},{"image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","small_image":"/w/b/wb02-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erica-evercool-sports-bra-l-yellow","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Erica Evercool Sports Bra-L-Yellow","id":1621,"category_ids":["26"],"sku":"WB02-L-Yellow","max_regular_price":39,"status":1},{"image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","small_image":"/w/b/wb02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erica-evercool-sports-bra-xl-blue","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Erica Evercool Sports Bra-XL-Blue","id":1622,"category_ids":["26"],"sku":"WB02-XL-Blue","max_regular_price":39,"status":1},{"image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","small_image":"/w/b/wb02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erica-evercool-sports-bra-xl-orange","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Erica Evercool Sports Bra-XL-Orange","id":1623,"category_ids":["26"],"sku":"WB02-XL-Orange","max_regular_price":39,"status":1},{"image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","small_image":"/w/b/wb02-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erica-evercool-sports-bra-xl-yellow","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Erica Evercool Sports Bra-XL-Yellow","id":1624,"category_ids":["26"],"sku":"WB02-XL-Yellow","max_regular_price":39,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1625,"id":221,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1625,"id":220,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,56,60],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-1625.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1641","_score":1,"_source":{"id":1641,"sku":"WB03","name":"Celeste Sports Bra","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:21","updated_at":"2019-04-16 07:59:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":9.99,"max_price":9.99,"max_regular_price":9.99,"minimal_regular_price":9.99,"special_price":null,"minimal_price":9.99,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \r\n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","category_ids":[26,8,35,2],"options_container":"container2","required_options":"1","has_options":"1","url_key":"celeste-sports-bra","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":[143,154],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":"131","pattern":"197","climate":[205,209],"slug":"celeste-sports-bra-1641","links":{},"stock":{"item_id":1641,"product_id":1641,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":null},{"vid":null,"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":null},{"vid":null,"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":null}],"configurable_children":[{"image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","small_image":"/w/b/wb03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"celeste-sports-bra-xs-green","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"167","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Celeste Sports Bra-XS-Green","id":1626,"category_ids":["26","8","35","2"],"sku":"WB03-XS-Green","max_regular_price":39,"status":1},{"image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","small_image":"/w/b/wb03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"celeste-sports-bra-xs-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"167","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Celeste Sports Bra-XS-Red","id":1627,"category_ids":["26","8","35","2"],"sku":"WB03-XS-Red","max_regular_price":39,"status":1},{"image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","small_image":"/w/b/wb03-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"celeste-sports-bra-xs-yellow","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"167","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Celeste Sports Bra-XS-Yellow","id":1628,"category_ids":["26","8","35","2"],"sku":"WB03-XS-Yellow","max_regular_price":39,"status":1},{"image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","small_image":"/w/b/wb03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"celeste-sports-bra-s-green","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Celeste Sports Bra-S-Green","id":1629,"category_ids":["26","8","35","2"],"sku":"WB03-S-Green","max_regular_price":39,"status":1},{"image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","small_image":"/w/b/wb03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"celeste-sports-bra-s-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Celeste Sports Bra-S-Red","id":1630,"category_ids":["26","8","35","2"],"sku":"WB03-S-Red","max_regular_price":39,"status":1},{"image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","small_image":"/w/b/wb03-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"celeste-sports-bra-s-yellow","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Celeste Sports Bra-S-Yellow","id":1631,"category_ids":["26","8","35","2"],"sku":"WB03-S-Yellow","max_regular_price":39,"status":1},{"image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","small_image":"/w/b/wb03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"celeste-sports-bra-m-green","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Celeste Sports Bra-M-Green","id":1632,"category_ids":["26","8","35","2"],"sku":"WB03-M-Green","max_regular_price":39,"status":1},{"image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","small_image":"/w/b/wb03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"celeste-sports-bra-m-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Celeste Sports Bra-M-Red","id":1633,"category_ids":["26","8","35","2"],"sku":"WB03-M-Red","max_regular_price":39,"status":1},{"image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","small_image":"/w/b/wb03-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"celeste-sports-bra-m-yellow","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Celeste Sports Bra-M-Yellow","id":1634,"category_ids":["26","8","35","2"],"sku":"WB03-M-Yellow","max_regular_price":39,"status":1},{"color":"53","small_image":"/w/b/wb03-green_main.jpg","tier_prices":[],"regular_price":39,"msrp_display_actual_price_type":"0","final_price":9.99,"price":39,"special_from_date":"2019-04-18 00:00:00","id":1635,"category_ids":["26","8","35","2"],"sku":"WB03-L-Green","image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","tax_class_id":"0","has_options":"0","url_key":"celeste-sports-bra-l-green","required_options":"0","max_price":9.99,"minimal_regular_price":9.99,"size":"170","special_price":9.99,"minimal_price":9.99,"name":"Celeste Sports Bra-L-Green","max_regular_price":9.99,"status":1},{"image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","small_image":"/w/b/wb03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"celeste-sports-bra-l-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Celeste Sports Bra-L-Red","id":1636,"category_ids":["26","8","35","2"],"sku":"WB03-L-Red","max_regular_price":39,"status":1},{"image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","small_image":"/w/b/wb03-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"celeste-sports-bra-l-yellow","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Celeste Sports Bra-L-Yellow","id":1637,"category_ids":["26","8","35","2"],"sku":"WB03-L-Yellow","max_regular_price":39,"status":1},{"image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","small_image":"/w/b/wb03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"celeste-sports-bra-xl-green","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Celeste Sports Bra-XL-Green","id":1638,"category_ids":["26","8","35","2"],"sku":"WB03-XL-Green","max_regular_price":39,"status":1},{"image":"/w/b/wb03-red_main.jpg","thumbnail":"/w/b/wb03-red_main.jpg","color":"58","small_image":"/w/b/wb03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"celeste-sports-bra-xl-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Celeste Sports Bra-XL-Red","id":1639,"category_ids":["26","8","35","2"],"sku":"WB03-XL-Red","max_regular_price":39,"status":1},{"image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","small_image":"/w/b/wb03-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"celeste-sports-bra-xl-yellow","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Celeste Sports Bra-XL-Yellow","id":1640,"category_ids":["26","8","35","2"],"sku":"WB03-XL-Yellow","max_regular_price":39,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":1641,"id":314,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1641,"id":315,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[53,58,60],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-1641.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1596","_score":1,"_source":{"id":1596,"sku":"WB01-XS-Purple","name":"Electra Bra Top-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"electra-bra-top-xs-purple-1596","links":{},"stock":{"item_id":1596,"product_id":1596,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xs-purple-1596.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1597","_score":1,"_source":{"id":1597,"sku":"WB01-S-Black","name":"Electra Bra Top-S-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"electra-bra-top-s-black-1597","links":{},"stock":{"item_id":1597,"product_id":1597,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-s-black-1597.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1585","_score":1,"_source":{"id":1585,"sku":"WS05-M-Orange","name":"Desiree Fitness Tee-M-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"desiree-fitness-tee-m-orange-1585","links":{},"stock":{"item_id":1585,"product_id":1585,"stock_id":1,"qty":63,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-m-orange-1585.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1586","_score":1,"_source":{"id":1586,"sku":"WS05-M-Yellow","name":"Desiree Fitness Tee-M-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"desiree-fitness-tee-m-yellow-1586","links":{},"stock":{"item_id":1586,"product_id":1586,"stock_id":1,"qty":47,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-m-yellow-1586.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1592","_score":1,"_source":{"id":1592,"sku":"WS05-XL-Yellow","name":"Desiree Fitness Tee-XL-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"desiree-fitness-tee-xl-yellow-1592","links":{},"stock":{"item_id":1592,"product_id":1592,"stock_id":1,"qty":78,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xl-yellow-1592.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1599","_score":1,"_source":{"id":1599,"sku":"WB01-S-Purple","name":"Electra Bra Top-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"electra-bra-top-s-purple-1599","links":{},"stock":{"item_id":1599,"product_id":1599,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-s-purple-1599.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1583","_score":1,"_source":{"id":1583,"sku":"WS05-S-Yellow","name":"Desiree Fitness Tee-S-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"desiree-fitness-tee-s-yellow-1583","links":{},"stock":{"item_id":1583,"product_id":1583,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-s-yellow-1583.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1598","_score":1,"_source":{"id":1598,"sku":"WB01-S-Gray","name":"Electra Bra Top-S-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"electra-bra-top-s-gray-1598","links":{},"stock":{"item_id":1598,"product_id":1598,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-s-gray-1598.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1587","_score":1,"_source":{"id":1587,"sku":"WS05-L-Black","name":"Desiree Fitness Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"desiree-fitness-tee-l-black-1587","links":{},"stock":{"item_id":1587,"product_id":1587,"stock_id":1,"qty":40,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-l-black-1587.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1582","_score":1,"_source":{"id":1582,"sku":"WS05-S-Orange","name":"Desiree Fitness Tee-S-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"desiree-fitness-tee-s-orange-1582","links":{},"stock":{"item_id":1582,"product_id":1582,"stock_id":1,"qty":44,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-s-orange-1582.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1561","_score":1,"_source":{"id":1561,"sku":"WS12","name":"Radiant Tee","attribute_set_id":9,"price":22,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"radiant-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[146,154,151],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"radiant-tee-1561","links":{},"stock":{"item_id":1561,"product_id":1561,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","small_image":"/w/s/ws12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"radiant-tee-xs-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":22,"name":"Radiant Tee-XS-Blue","id":1546,"category_ids":["25","33","35","2"],"sku":"WS12-XS-Blue","status":1},{"image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","small_image":"/w/s/ws12-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"radiant-tee-xs-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":22,"name":"Radiant Tee-XS-Orange","id":1547,"category_ids":["25","33","35","2"],"sku":"WS12-XS-Orange","status":1},{"image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","small_image":"/w/s/ws12-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"radiant-tee-xs-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":22,"name":"Radiant Tee-XS-Purple","id":1548,"category_ids":["25","33","35","2"],"sku":"WS12-XS-Purple","status":1},{"image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","small_image":"/w/s/ws12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"radiant-tee-s-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":22,"name":"Radiant Tee-S-Blue","id":1549,"category_ids":["25","33","35","2"],"sku":"WS12-S-Blue","status":1},{"image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","small_image":"/w/s/ws12-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"radiant-tee-s-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":22,"name":"Radiant Tee-S-Orange","id":1550,"category_ids":["25","33","35","2"],"sku":"WS12-S-Orange","status":1},{"image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","small_image":"/w/s/ws12-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"radiant-tee-s-purple","regular_price":22,"required_options":"0","msrp_display_actual_price_type":"0","max_price":22,"minimal_regular_price":22,"size":"168","final_price":22,"special_price":null,"price":22,"minimal_price":22,"name":"Radiant Tee-S-Purple","id":1551,"category_ids":["25","33","35","2"],"sku":"WS12-S-Purple","max_regular_price":22,"status":1},{"image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","small_image":"/w/s/ws12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"radiant-tee-m-blue","regular_price":22,"required_options":"0","msrp_display_actual_price_type":"0","max_price":22,"minimal_regular_price":22,"size":"169","final_price":22,"special_price":null,"price":22,"minimal_price":22,"name":"Radiant Tee-M-Blue","id":1552,"category_ids":["25","33","35","2"],"sku":"WS12-M-Blue","max_regular_price":22,"status":1},{"image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","small_image":"/w/s/ws12-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"radiant-tee-m-orange","regular_price":22,"required_options":"0","msrp_display_actual_price_type":"0","max_price":22,"minimal_regular_price":22,"size":"169","final_price":22,"special_price":null,"price":22,"minimal_price":22,"name":"Radiant Tee-M-Orange","id":1553,"category_ids":["25","33","35","2"],"sku":"WS12-M-Orange","max_regular_price":22,"status":1},{"image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","small_image":"/w/s/ws12-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"radiant-tee-m-purple","regular_price":22,"required_options":"0","msrp_display_actual_price_type":"0","max_price":22,"minimal_regular_price":22,"size":"169","final_price":22,"special_price":null,"price":22,"minimal_price":22,"name":"Radiant Tee-M-Purple","id":1554,"category_ids":["25","33","35","2"],"sku":"WS12-M-Purple","max_regular_price":22,"status":1},{"image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","small_image":"/w/s/ws12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"radiant-tee-l-blue","regular_price":22,"required_options":"0","msrp_display_actual_price_type":"0","max_price":22,"minimal_regular_price":22,"size":"170","final_price":22,"special_price":null,"price":22,"minimal_price":22,"name":"Radiant Tee-L-Blue","id":1555,"category_ids":["25","33","35","2"],"sku":"WS12-L-Blue","max_regular_price":22,"status":1},{"image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","small_image":"/w/s/ws12-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"radiant-tee-l-orange","regular_price":22,"required_options":"0","msrp_display_actual_price_type":"0","max_price":22,"minimal_regular_price":22,"size":"170","final_price":22,"special_price":null,"price":22,"minimal_price":22,"name":"Radiant Tee-L-Orange","id":1556,"category_ids":["25","33","35","2"],"sku":"WS12-L-Orange","max_regular_price":22,"status":1},{"image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","small_image":"/w/s/ws12-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"radiant-tee-l-purple","regular_price":22,"required_options":"0","msrp_display_actual_price_type":"0","max_price":22,"minimal_regular_price":22,"size":"170","final_price":22,"special_price":null,"price":22,"minimal_price":22,"name":"Radiant Tee-L-Purple","id":1557,"category_ids":["25","33","35","2"],"sku":"WS12-L-Purple","max_regular_price":22,"status":1},{"image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","small_image":"/w/s/ws12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"radiant-tee-xl-blue","regular_price":22,"required_options":"0","msrp_display_actual_price_type":"0","max_price":22,"minimal_regular_price":22,"size":"171","final_price":22,"special_price":null,"price":22,"minimal_price":22,"name":"Radiant Tee-XL-Blue","id":1558,"category_ids":["25","33","35","2"],"sku":"WS12-XL-Blue","max_regular_price":22,"status":1},{"image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","small_image":"/w/s/ws12-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"radiant-tee-xl-orange","regular_price":22,"required_options":"0","msrp_display_actual_price_type":"0","max_price":22,"minimal_regular_price":22,"size":"171","final_price":22,"special_price":null,"price":22,"minimal_price":22,"name":"Radiant Tee-XL-Orange","id":1559,"category_ids":["25","33","35","2"],"sku":"WS12-XL-Orange","max_regular_price":22,"status":1},{"image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","small_image":"/w/s/ws12-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"radiant-tee-xl-purple","regular_price":22,"required_options":"0","msrp_display_actual_price_type":"0","max_price":22,"minimal_regular_price":22,"size":"171","final_price":22,"special_price":null,"price":22,"minimal_price":22,"name":"Radiant Tee-XL-Purple","id":1560,"category_ids":["25","33","35","2"],"sku":"WS12-XL-Purple","max_regular_price":22,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1561,"id":213,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1561,"id":212,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,56,57],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-1561.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1577","_score":1,"_source":{"id":1577,"sku":"WS01","name":"Gwyn Endurance Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":null,"minimal_price":20,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"gwyn-endurance-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[152,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"gwyn-endurance-tee-1577","links":{},"stock":{"item_id":1577,"product_id":1577,"stock_id":1,"qty":8,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","small_image":"/w/s/ws01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwyn-endurance-tee-xs-black","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":24,"name":"Gwyn Endurance Tee-XS-Black","id":1562,"category_ids":["25","33","2"],"sku":"WS01-XS-Black","status":1},{"image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","small_image":"/w/s/ws01-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwyn-endurance-tee-xs-green","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"167","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Gwyn Endurance Tee-XS-Green","id":1563,"category_ids":["25","33","2"],"sku":"WS01-XS-Green","max_regular_price":24,"status":1},{"image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","small_image":"/w/s/ws01-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwyn-endurance-tee-xs-yellow","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"167","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Gwyn Endurance Tee-XS-Yellow","id":1564,"category_ids":["25","33","2"],"sku":"WS01-XS-Yellow","max_regular_price":24,"status":1},{"image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","small_image":"/w/s/ws01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwyn-endurance-tee-s-black","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"168","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Gwyn Endurance Tee-S-Black","id":1565,"category_ids":["25","33","2"],"sku":"WS01-S-Black","max_regular_price":24,"status":1},{"image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","small_image":"/w/s/ws01-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwyn-endurance-tee-s-green","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"168","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Gwyn Endurance Tee-S-Green","id":1566,"category_ids":["25","33","2"],"sku":"WS01-S-Green","max_regular_price":24,"status":1},{"image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","small_image":"/w/s/ws01-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwyn-endurance-tee-s-yellow","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"168","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Gwyn Endurance Tee-S-Yellow","id":1567,"category_ids":["25","33","2"],"sku":"WS01-S-Yellow","max_regular_price":24,"status":1},{"image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","small_image":"/w/s/ws01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwyn-endurance-tee-m-black","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"169","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Gwyn Endurance Tee-M-Black","id":1568,"category_ids":["25","33","2"],"sku":"WS01-M-Black","max_regular_price":24,"status":1},{"image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","small_image":"/w/s/ws01-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwyn-endurance-tee-m-green","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"169","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Gwyn Endurance Tee-M-Green","id":1569,"category_ids":["25","33","2"],"sku":"WS01-M-Green","max_regular_price":24,"status":1},{"image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","small_image":"/w/s/ws01-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwyn-endurance-tee-m-yellow","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"169","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Gwyn Endurance Tee-M-Yellow","id":1570,"category_ids":["25","33","2"],"sku":"WS01-M-Yellow","max_regular_price":24,"status":1},{"image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","small_image":"/w/s/ws01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwyn-endurance-tee-l-black","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"170","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Gwyn Endurance Tee-L-Black","id":1571,"category_ids":["25","33","2"],"sku":"WS01-L-Black","max_regular_price":24,"status":1},{"image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","small_image":"/w/s/ws01-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwyn-endurance-tee-l-green","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"170","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Gwyn Endurance Tee-L-Green","id":1572,"category_ids":["25","33","2"],"sku":"WS01-L-Green","max_regular_price":24,"status":1},{"color":"60","small_image":"/w/s/ws01-yellow_main.jpg","tier_prices":[{"qty":2,"extension_attributes":{"website_id":0},"customer_group_id":0,"value":22}],"regular_price":24,"msrp_display_actual_price_type":"0","final_price":20,"price":24,"special_from_date":"2019-05-13 00:00:00","id":1573,"category_ids":["25","33","2"],"sku":"WS01-L-Yellow","image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","tax_class_id":"2","has_options":"0","url_key":"gwyn-endurance-tee-l-yellow","required_options":"0","max_price":20,"minimal_regular_price":20,"size":"170","special_price":20,"minimal_price":20,"name":"Gwyn Endurance Tee-L-Yellow","max_regular_price":20,"status":1},{"image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","small_image":"/w/s/ws01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwyn-endurance-tee-xl-black","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"171","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Gwyn Endurance Tee-XL-Black","id":1574,"category_ids":["25","33","2"],"sku":"WS01-XL-Black","max_regular_price":24,"status":1},{"image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","small_image":"/w/s/ws01-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwyn-endurance-tee-xl-green","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"171","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Gwyn Endurance Tee-XL-Green","id":1575,"category_ids":["25","33","2"],"sku":"WS01-XL-Green","max_regular_price":24,"status":1},{"image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","small_image":"/w/s/ws01-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwyn-endurance-tee-xl-yellow","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"171","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Gwyn Endurance Tee-XL-Yellow","id":1576,"category_ids":["25","33","2"],"sku":"WS01-XL-Yellow","max_regular_price":24,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":60,"label":"Yellow"}],"product_id":1577,"id":215,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1577,"id":214,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,53,60],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-1577.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1601","_score":1,"_source":{"id":1601,"sku":"WB01-M-Gray","name":"Electra Bra Top-M-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"electra-bra-top-m-gray-1601","links":{},"stock":{"item_id":1601,"product_id":1601,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-m-gray-1601.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1602","_score":1,"_source":{"id":1602,"sku":"WB01-M-Purple","name":"Electra Bra Top-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"electra-bra-top-m-purple-1602","links":{},"stock":{"item_id":1602,"product_id":1602,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-m-purple-1602.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1605","_score":1,"_source":{"id":1605,"sku":"WB01-L-Purple","name":"Electra Bra Top-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"electra-bra-top-l-purple-1605","links":{},"stock":{"item_id":1605,"product_id":1605,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-l-purple-1605.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1622","_score":1,"_source":{"id":1622,"sku":"WB02-XL-Blue","name":"Erica Evercool Sports Bra-XL-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erica-evercool-sports-bra-xl-blue-1622","links":{},"stock":{"item_id":1622,"product_id":1622,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xl-blue-1622.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1620","_score":1,"_source":{"id":1620,"sku":"WB02-L-Orange","name":"Erica Evercool Sports Bra-L-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erica-evercool-sports-bra-l-orange-1620","links":{},"stock":{"item_id":1620,"product_id":1620,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-l-orange-1620.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1606","_score":1,"_source":{"id":1606,"sku":"WB01-XL-Black","name":"Electra Bra Top-XL-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"electra-bra-top-xl-black-1606","links":{},"stock":{"item_id":1606,"product_id":1606,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xl-black-1606.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1614","_score":1,"_source":{"id":1614,"sku":"WB02-S-Orange","name":"Erica Evercool Sports Bra-S-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erica-evercool-sports-bra-s-orange-1614","links":{},"stock":{"item_id":1614,"product_id":1614,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-s-orange-1614.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1621","_score":1,"_source":{"id":1621,"sku":"WB02-L-Yellow","name":"Erica Evercool Sports Bra-L-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erica-evercool-sports-bra-l-yellow-1621","links":{},"stock":{"item_id":1621,"product_id":1621,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-l-yellow-1621.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1610","_score":1,"_source":{"id":1610,"sku":"WB02-XS-Blue","name":"Erica Evercool Sports Bra-XS-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erica-evercool-sports-bra-xs-blue-1610","links":{},"stock":{"item_id":1610,"product_id":1610,"stock_id":1,"qty":77,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xs-blue-1610.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1611","_score":1,"_source":{"id":1611,"sku":"WB02-XS-Orange","name":"Erica Evercool Sports Bra-XS-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erica-evercool-sports-bra-xs-orange-1611","links":{},"stock":{"item_id":1611,"product_id":1611,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xs-orange-1611.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1615","_score":1,"_source":{"id":1615,"sku":"WB02-S-Yellow","name":"Erica Evercool Sports Bra-S-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erica-evercool-sports-bra-s-yellow-1615","links":{},"stock":{"item_id":1615,"product_id":1615,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-s-yellow-1615.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1604","_score":1,"_source":{"id":1604,"sku":"WB01-L-Gray","name":"Electra Bra Top-L-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"electra-bra-top-l-gray-1604","links":{},"stock":{"item_id":1604,"product_id":1604,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-l-gray-1604.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1607","_score":1,"_source":{"id":1607,"sku":"WB01-XL-Gray","name":"Electra Bra Top-XL-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"electra-bra-top-xl-gray-1607","links":{},"stock":{"item_id":1607,"product_id":1607,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xl-gray-1607.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1619","_score":1,"_source":{"id":1619,"sku":"WB02-L-Blue","name":"Erica Evercool Sports Bra-L-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"erica-evercool-sports-bra-l-blue-1619","links":{},"stock":{"item_id":1619,"product_id":1619,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-l-blue-1619.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1613","_score":1,"_source":{"id":1613,"sku":"WB02-S-Blue","name":"Erica Evercool Sports Bra-S-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"erica-evercool-sports-bra-s-blue-1613","links":{},"stock":{"item_id":1613,"product_id":1613,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-s-blue-1613.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1617","_score":1,"_source":{"id":1617,"sku":"WB02-M-Orange","name":"Erica Evercool Sports Bra-M-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erica-evercool-sports-bra-m-orange-1617","links":{},"stock":{"item_id":1617,"product_id":1617,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-m-orange-1617.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1608","_score":1,"_source":{"id":1608,"sku":"WB01-XL-Purple","name":"Electra Bra Top-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-purple_main.jpg","small_image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"electra-bra-top-xl-purple-1608","links":{},"stock":{"item_id":1608,"product_id":1608,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb01-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xl-purple-1608.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1612","_score":1,"_source":{"id":1612,"sku":"WB02-XS-Yellow","name":"Erica Evercool Sports Bra-XS-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"erica-evercool-sports-bra-xs-yellow-1612","links":{},"stock":{"item_id":1612,"product_id":1612,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xs-yellow-1612.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1624","_score":1,"_source":{"id":1624,"sku":"WB02-XL-Yellow","name":"Erica Evercool Sports Bra-XL-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erica-evercool-sports-bra-xl-yellow-1624","links":{},"stock":{"item_id":1624,"product_id":1624,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xl-yellow-1624.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1634","_score":1,"_source":{"id":1634,"sku":"WB03-M-Yellow","name":"Celeste Sports Bra-M-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"celeste-sports-bra-m-yellow-1634","links":{},"stock":{"item_id":1634,"product_id":1634,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-m-yellow-1634.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1618","_score":1,"_source":{"id":1618,"sku":"WB02-M-Yellow","name":"Erica Evercool Sports Bra-M-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-yellow_main.jpg","small_image":"/w/b/wb02-yellow_main.jpg","thumbnail":"/w/b/wb02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erica-evercool-sports-bra-m-yellow-1618","links":{},"stock":{"item_id":1618,"product_id":1618,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb02-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-m-yellow-1618.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1616","_score":1,"_source":{"id":1616,"sku":"WB02-M-Blue","name":"Erica Evercool Sports Bra-M-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-blue_main.jpg","small_image":"/w/b/wb02-blue_main.jpg","thumbnail":"/w/b/wb02-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"erica-evercool-sports-bra-m-blue-1616","links":{},"stock":{"item_id":1616,"product_id":1616,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb02-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb02-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb02-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-m-blue-1616.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1632","_score":1,"_source":{"id":1632,"sku":"WB03-M-Green","name":"Celeste Sports Bra-M-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"celeste-sports-bra-m-green-1632","links":{},"stock":{"item_id":1632,"product_id":1632,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-m-green-1632.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1603","_score":1,"_source":{"id":1603,"sku":"WB01-L-Black","name":"Electra Bra Top-L-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"electra-bra-top-l-black-1603","links":{},"stock":{"item_id":1603,"product_id":1603,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-l-black-1603.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1635","_score":1,"_source":{"id":1635,"sku":"WB03-L-Green","name":"Celeste Sports Bra-L-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2019-04-18 09:54:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":9.99,"max_price":9.99,"max_regular_price":9.99,"minimal_regular_price":9.99,"special_price":"9.9900","minimal_price":9.99,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \r\n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","special_from_date":"2019-04-18 00:00:00","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-l-green","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"0","size":"170","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"celeste-sports-bra-l-green-1635","links":{},"stock":{"item_id":1635,"product_id":1635,"stock_id":1,"qty":9,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":null},{"vid":null,"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":null},{"vid":null,"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":null}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-l-green-1635.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1628","_score":1,"_source":{"id":1628,"sku":"WB03-XS-Yellow","name":"Celeste Sports Bra-XS-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-yellow_main.jpg","small_image":"/w/b/wb03-yellow_main.jpg","thumbnail":"/w/b/wb03-yellow_main.jpg","color":"60","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"celeste-sports-bra-xs-yellow-1628","links":{},"stock":{"item_id":1628,"product_id":1628,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb03-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xs-yellow-1628.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1626","_score":1,"_source":{"id":1626,"sku":"WB03-XS-Green","name":"Celeste Sports Bra-XS-Green","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Whatever your goals for the day's workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

                            \n

                            • Mint bra top.
                            • Seam-free interior molded cups
                            • Odor control.
                            • UV protection.
                            • Machine wash/dry.

                            ","image":"/w/b/wb03-green_main.jpg","small_image":"/w/b/wb03-green_main.jpg","thumbnail":"/w/b/wb03-green_main.jpg","color":"53","category_ids":[26,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"celeste-sports-bra-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"celeste-sports-bra-xs-green-1626","links":{},"stock":{"item_id":1626,"product_id":1626,"stock_id":1,"qty":73,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb03-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb03-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb03-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/celeste-sports-bra-xs-green-1626.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1650","_score":1,"_source":{"id":1650,"sku":"WB04-M-Yellow","name":"Prima Compete Bra Top-M-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"prima-compete-bra-top-m-yellow-1650","links":{},"stock":{"item_id":1650,"product_id":1650,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-m-yellow-1650.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1623","_score":1,"_source":{"id":1623,"sku":"WB02-XL-Orange","name":"Erica Evercool Sports Bra-XL-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

                            \n

                            • Honeycomb light blue bra top.
                            • Elastic hem.
                            • Reinforced binding.
                            • Machine wash/dry.

                            ","image":"/w/b/wb02-orange_main.jpg","small_image":"/w/b/wb02-orange_main.jpg","thumbnail":"/w/b/wb02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erica-evercool-sports-bra-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"erica-evercool-sports-bra-xl-orange-1623","links":{},"stock":{"item_id":1623,"product_id":1623,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb02-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/erica-evercool-sports-bra-xl-orange-1623.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1567","_score":1,"_source":{"id":1567,"sku":"WS01-S-Yellow","name":"Gwyn Endurance Tee-S-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gwyn-endurance-tee-s-yellow-1567","links":{},"stock":{"item_id":1567,"product_id":1567,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-s-yellow-1567.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1584","_score":1,"_source":{"id":1584,"sku":"WS05-M-Black","name":"Desiree Fitness Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"desiree-fitness-tee-m-black-1584","links":{},"stock":{"item_id":1584,"product_id":1584,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-07-22 07:24:29","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-m-black-1584.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1560","_score":1,"_source":{"id":1560,"sku":"WS12-XL-Purple","name":"Radiant Tee-XL-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"radiant-tee-xl-purple-1560","links":{},"stock":{"item_id":1560,"product_id":1560,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xl-purple-1560.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1576","_score":1,"_source":{"id":1576,"sku":"WS01-XL-Yellow","name":"Gwyn Endurance Tee-XL-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gwyn-endurance-tee-xl-yellow-1576","links":{},"stock":{"item_id":1576,"product_id":1576,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xl-yellow-1576.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1588","_score":1,"_source":{"id":1588,"sku":"WS05-L-Orange","name":"Desiree Fitness Tee-L-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"desiree-fitness-tee-l-orange-1588","links":{},"stock":{"item_id":1588,"product_id":1588,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-l-orange-1588.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1579","_score":1,"_source":{"id":1579,"sku":"WS05-XS-Orange","name":"Desiree Fitness Tee-XS-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"desiree-fitness-tee-xs-orange-1579","links":{},"stock":{"item_id":1579,"product_id":1579,"stock_id":1,"qty":51,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xs-orange-1579.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1590","_score":1,"_source":{"id":1590,"sku":"WS05-XL-Black","name":"Desiree Fitness Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"desiree-fitness-tee-xl-black-1590","links":{},"stock":{"item_id":1590,"product_id":1590,"stock_id":1,"qty":50,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xl-black-1590.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1589","_score":1,"_source":{"id":1589,"sku":"WS05-L-Yellow","name":"Desiree Fitness Tee-L-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"desiree-fitness-tee-l-yellow-1589","links":{},"stock":{"item_id":1589,"product_id":1589,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-l-yellow-1589.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1566","_score":1,"_source":{"id":1566,"sku":"WS01-S-Green","name":"Gwyn Endurance Tee-S-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gwyn-endurance-tee-s-green-1566","links":{},"stock":{"item_id":1566,"product_id":1566,"stock_id":1,"qty":53,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-s-green-1566.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1580","_score":1,"_source":{"id":1580,"sku":"WS05-XS-Yellow","name":"Desiree Fitness Tee-XS-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-yellow_main.jpg","small_image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"desiree-fitness-tee-xs-yellow-1580","links":{},"stock":{"item_id":1580,"product_id":1580,"stock_id":1,"qty":2,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws05-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xs-yellow-1580.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1578","_score":1,"_source":{"id":1578,"sku":"WS05-XS-Black","name":"Desiree Fitness Tee-XS-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"desiree-fitness-tee-xs-black-1578","links":{},"stock":{"item_id":1578,"product_id":1578,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-07 12:11:20","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xs-black-1578.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1600","_score":1,"_source":{"id":1600,"sku":"WB01-M-Black","name":"Electra Bra Top-M-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"electra-bra-top-m-black-1600","links":{},"stock":{"item_id":1600,"product_id":1600,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-m-black-1600.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1591","_score":1,"_source":{"id":1591,"sku":"WS05-XL-Orange","name":"Desiree Fitness Tee-XL-Orange","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-orange_main.jpg","small_image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"desiree-fitness-tee-xl-orange-1591","links":{},"stock":{"item_id":1591,"product_id":1591,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws05-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-xl-orange-1591.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1595","_score":1,"_source":{"id":1595,"sku":"WB01-XS-Gray","name":"Electra Bra Top-XS-Gray","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"electra-bra-top-xs-gray-1595","links":{},"stock":{"item_id":1595,"product_id":1595,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xs-gray-1595.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1581","_score":1,"_source":{"id":1581,"sku":"WS05-S-Black","name":"Desiree Fitness Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"desiree-fitness-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"desiree-fitness-tee-s-black-1581","links":{},"stock":{"item_id":1581,"product_id":1581,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-09-10 08:57:54","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-s-black-1581.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1594","_score":1,"_source":{"id":1594,"sku":"WB01-XS-Black","name":"Electra Bra Top-XS-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-black_main.jpg","small_image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"electra-bra-top-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"electra-bra-top-xs-black-1594","links":{},"stock":{"item_id":1594,"product_id":1594,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb01-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb01-black-0.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-xs-black-1594.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1609","_score":1,"_source":{"id":1609,"sku":"WB01","name":"Electra Bra Top","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

                            \n

                            • Gray rouched bra top.
                            • Attractive back straps feature contrasting motif fabric.
                            • Interior bra top is lined with breathable mesh.
                            • Elastic underband for superior support.
                            • Removable cup inserts.
                            • Chafe-free flat lock seams provide added comfort.

                            ","image":"/w/b/wb01-gray_main.jpg","small_image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","category_ids":[26,30,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"electra-bra-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,154,38],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_general":"131","pattern":"197","climate":[205,209],"slug":"electra-bra-top-1609","links":{},"stock":{"item_id":1609,"product_id":1609,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb01-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb01-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb01-gray_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","small_image":"/w/b/wb01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"electra-bra-top-xs-black","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":39,"name":"Electra Bra Top-XS-Black","id":1594,"category_ids":["26","30","36","2"],"sku":"WB01-XS-Black","status":1},{"image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","small_image":"/w/b/wb01-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"electra-bra-top-xs-gray","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":39,"name":"Electra Bra Top-XS-Gray","id":1595,"category_ids":["26","30","36","2"],"sku":"WB01-XS-Gray","status":1},{"image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","small_image":"/w/b/wb01-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"electra-bra-top-xs-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":39,"name":"Electra Bra Top-XS-Purple","id":1596,"category_ids":["26","30","36","2"],"sku":"WB01-XS-Purple","status":1},{"image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","small_image":"/w/b/wb01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"electra-bra-top-s-black","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":39,"name":"Electra Bra Top-S-Black","id":1597,"category_ids":["26","30","36","2"],"sku":"WB01-S-Black","status":1},{"image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","small_image":"/w/b/wb01-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"electra-bra-top-s-gray","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":39,"name":"Electra Bra Top-S-Gray","id":1598,"category_ids":["26","30","36","2"],"sku":"WB01-S-Gray","status":1},{"image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","small_image":"/w/b/wb01-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"electra-bra-top-s-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":39,"name":"Electra Bra Top-S-Purple","id":1599,"category_ids":["26","30","36","2"],"sku":"WB01-S-Purple","status":1},{"image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","small_image":"/w/b/wb01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"electra-bra-top-m-black","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":39,"name":"Electra Bra Top-M-Black","id":1600,"category_ids":["26","30","36","2"],"sku":"WB01-M-Black","status":1},{"image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","small_image":"/w/b/wb01-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"electra-bra-top-m-gray","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Electra Bra Top-M-Gray","id":1601,"category_ids":["26","30","36","2"],"sku":"WB01-M-Gray","max_regular_price":39,"status":1},{"image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","small_image":"/w/b/wb01-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"electra-bra-top-m-purple","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Electra Bra Top-M-Purple","id":1602,"category_ids":["26","30","36","2"],"sku":"WB01-M-Purple","max_regular_price":39,"status":1},{"image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","small_image":"/w/b/wb01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"electra-bra-top-l-black","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Electra Bra Top-L-Black","id":1603,"category_ids":["26","30","36","2"],"sku":"WB01-L-Black","max_regular_price":39,"status":1},{"image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","small_image":"/w/b/wb01-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"electra-bra-top-l-gray","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Electra Bra Top-L-Gray","id":1604,"category_ids":["26","30","36","2"],"sku":"WB01-L-Gray","max_regular_price":39,"status":1},{"image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","small_image":"/w/b/wb01-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"electra-bra-top-l-purple","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Electra Bra Top-L-Purple","id":1605,"category_ids":["26","30","36","2"],"sku":"WB01-L-Purple","max_regular_price":39,"status":1},{"image":"/w/b/wb01-black_main.jpg","thumbnail":"/w/b/wb01-black_main.jpg","color":"49","small_image":"/w/b/wb01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"electra-bra-top-xl-black","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Electra Bra Top-XL-Black","id":1606,"category_ids":["26","30","36","2"],"sku":"WB01-XL-Black","max_regular_price":39,"status":1},{"image":"/w/b/wb01-gray_main.jpg","thumbnail":"/w/b/wb01-gray_main.jpg","color":"52","small_image":"/w/b/wb01-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"electra-bra-top-xl-gray","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Electra Bra Top-XL-Gray","id":1607,"category_ids":["26","30","36","2"],"sku":"WB01-XL-Gray","max_regular_price":39,"status":1},{"image":"/w/b/wb01-purple_main.jpg","thumbnail":"/w/b/wb01-purple_main.jpg","color":"57","small_image":"/w/b/wb01-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"electra-bra-top-xl-purple","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Electra Bra Top-XL-Purple","id":1608,"category_ids":["26","30","36","2"],"sku":"WB01-XL-Purple","max_regular_price":39,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":57,"label":"Purple"}],"product_id":1609,"id":219,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1609,"id":218,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,52,57],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/electra-bra-top-1609.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1593","_score":1,"_source":{"id":1593,"sku":"WS05","name":"Desiree Fitness Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When you're too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

                            \n

                            • Short-Sleeves.
                            • Performance fabric.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws05-black_main.jpg","small_image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"desiree-fitness-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[152,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[205,209],"slug":"desiree-fitness-tee-1593","links":{},"stock":{"item_id":1593,"product_id":1593,"stock_id":1,"qty":24,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws05-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws05-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws05-black_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","small_image":"/w/s/ws05-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"desiree-fitness-tee-xs-black","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":24,"name":"Desiree Fitness Tee-XS-Black","id":1578,"category_ids":["25","33","2"],"sku":"WS05-XS-Black","status":1},{"image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","small_image":"/w/s/ws05-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"desiree-fitness-tee-xs-orange","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"167","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Desiree Fitness Tee-XS-Orange","id":1579,"category_ids":["25","33","2"],"sku":"WS05-XS-Orange","max_regular_price":24,"status":1},{"image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","small_image":"/w/s/ws05-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"desiree-fitness-tee-xs-yellow","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"167","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Desiree Fitness Tee-XS-Yellow","id":1580,"category_ids":["25","33","2"],"sku":"WS05-XS-Yellow","max_regular_price":24,"status":1},{"image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","small_image":"/w/s/ws05-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"desiree-fitness-tee-s-black","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":24,"name":"Desiree Fitness Tee-S-Black","id":1581,"category_ids":["25","33","2"],"sku":"WS05-S-Black","status":1},{"image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","small_image":"/w/s/ws05-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"desiree-fitness-tee-s-orange","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"168","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Desiree Fitness Tee-S-Orange","id":1582,"category_ids":["25","33","2"],"sku":"WS05-S-Orange","max_regular_price":24,"status":1},{"image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","small_image":"/w/s/ws05-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"desiree-fitness-tee-s-yellow","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"168","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Desiree Fitness Tee-S-Yellow","id":1583,"category_ids":["25","33","2"],"sku":"WS05-S-Yellow","max_regular_price":24,"status":1},{"image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","small_image":"/w/s/ws05-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"desiree-fitness-tee-m-black","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":24,"name":"Desiree Fitness Tee-M-Black","id":1584,"category_ids":["25","33","2"],"sku":"WS05-M-Black","status":1},{"image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","small_image":"/w/s/ws05-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"desiree-fitness-tee-m-orange","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"169","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Desiree Fitness Tee-M-Orange","id":1585,"category_ids":["25","33","2"],"sku":"WS05-M-Orange","max_regular_price":24,"status":1},{"image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","small_image":"/w/s/ws05-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"desiree-fitness-tee-m-yellow","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"169","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Desiree Fitness Tee-M-Yellow","id":1586,"category_ids":["25","33","2"],"sku":"WS05-M-Yellow","max_regular_price":24,"status":1},{"image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","small_image":"/w/s/ws05-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"desiree-fitness-tee-l-black","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"170","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Desiree Fitness Tee-L-Black","id":1587,"category_ids":["25","33","2"],"sku":"WS05-L-Black","max_regular_price":24,"status":1},{"image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","small_image":"/w/s/ws05-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"desiree-fitness-tee-l-orange","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"170","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Desiree Fitness Tee-L-Orange","id":1588,"category_ids":["25","33","2"],"sku":"WS05-L-Orange","max_regular_price":24,"status":1},{"image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","small_image":"/w/s/ws05-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"desiree-fitness-tee-l-yellow","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"170","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Desiree Fitness Tee-L-Yellow","id":1589,"category_ids":["25","33","2"],"sku":"WS05-L-Yellow","max_regular_price":24,"status":1},{"image":"/w/s/ws05-black_main.jpg","thumbnail":"/w/s/ws05-black_main.jpg","color":"49","small_image":"/w/s/ws05-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"desiree-fitness-tee-xl-black","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"171","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Desiree Fitness Tee-XL-Black","id":1590,"category_ids":["25","33","2"],"sku":"WS05-XL-Black","max_regular_price":24,"status":1},{"image":"/w/s/ws05-orange_main.jpg","thumbnail":"/w/s/ws05-orange_main.jpg","color":"56","small_image":"/w/s/ws05-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"desiree-fitness-tee-xl-orange","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"171","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Desiree Fitness Tee-XL-Orange","id":1591,"category_ids":["25","33","2"],"sku":"WS05-XL-Orange","max_regular_price":24,"status":1},{"image":"/w/s/ws05-yellow_main.jpg","thumbnail":"/w/s/ws05-yellow_main.jpg","color":"60","small_image":"/w/s/ws05-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"desiree-fitness-tee-xl-yellow","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"171","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Desiree Fitness Tee-XL-Yellow","id":1592,"category_ids":["25","33","2"],"sku":"WS05-XL-Yellow","max_regular_price":24,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1593,"id":217,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1593,"id":216,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,56,60],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/desiree-fitness-tee-1593.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1558","_score":1,"_source":{"id":1558,"sku":"WS12-XL-Blue","name":"Radiant Tee-XL-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"radiant-tee-xl-blue-1558","links":{},"stock":{"item_id":1558,"product_id":1558,"stock_id":1,"qty":69,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xl-blue-1558.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1555","_score":1,"_source":{"id":1555,"sku":"WS12-L-Blue","name":"Radiant Tee-L-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"radiant-tee-l-blue-1555","links":{},"stock":{"item_id":1555,"product_id":1555,"stock_id":1,"qty":73,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-l-blue-1555.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1552","_score":1,"_source":{"id":1552,"sku":"WS12-M-Blue","name":"Radiant Tee-M-Blue","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-blue_main.jpg","small_image":"/w/s/ws12-blue_main.jpg","thumbnail":"/w/s/ws12-blue_main.jpg","color":"50","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"radiant-tee-m-blue-1552","links":{},"stock":{"item_id":1552,"product_id":1552,"stock_id":1,"qty":37,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws12-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-m-blue-1552.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1556","_score":1,"_source":{"id":1556,"sku":"WS12-L-Orange","name":"Radiant Tee-L-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"radiant-tee-l-orange-1556","links":{},"stock":{"item_id":1556,"product_id":1556,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-l-orange-1556.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1571","_score":1,"_source":{"id":1571,"sku":"WS01-L-Black","name":"Gwyn Endurance Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gwyn-endurance-tee-l-black-1571","links":{},"stock":{"item_id":1571,"product_id":1571,"stock_id":1,"qty":59,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-l-black-1571.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1554","_score":1,"_source":{"id":1554,"sku":"WS12-M-Purple","name":"Radiant Tee-M-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"radiant-tee-m-purple-1554","links":{},"stock":{"item_id":1554,"product_id":1554,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-m-purple-1554.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1569","_score":1,"_source":{"id":1569,"sku":"WS01-M-Green","name":"Gwyn Endurance Tee-M-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gwyn-endurance-tee-m-green-1569","links":{},"stock":{"item_id":1569,"product_id":1569,"stock_id":1,"qty":54,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-m-green-1569.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1570","_score":1,"_source":{"id":1570,"sku":"WS01-M-Yellow","name":"Gwyn Endurance Tee-M-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2019-06-18 10:57:11","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \r\n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-m-yellow","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"169","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"gwyn-endurance-tee-m-yellow-1570","links":{},"stock":{"item_id":1570,"product_id":1570,"stock_id":1,"qty":26,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":null}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-m-yellow-1570.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1551","_score":1,"_source":{"id":1551,"sku":"WS12-S-Purple","name":"Radiant Tee-S-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:19","updated_at":"2017-11-06 12:17:19","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"radiant-tee-s-purple-1551","links":{},"stock":{"item_id":1551,"product_id":1551,"stock_id":1,"qty":73,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-s-purple-1551.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1559","_score":1,"_source":{"id":1559,"sku":"WS12-XL-Orange","name":"Radiant Tee-XL-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"radiant-tee-xl-orange-1559","links":{},"stock":{"item_id":1559,"product_id":1559,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-xl-orange-1559.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1564","_score":1,"_source":{"id":1564,"sku":"WS01-XS-Yellow","name":"Gwyn Endurance Tee-XS-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gwyn-endurance-tee-xs-yellow-1564","links":{},"stock":{"item_id":1564,"product_id":1564,"stock_id":1,"qty":16,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xs-yellow-1564.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1574","_score":1,"_source":{"id":1574,"sku":"WS01-XL-Black","name":"Gwyn Endurance Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gwyn-endurance-tee-xl-black-1574","links":{},"stock":{"item_id":1574,"product_id":1574,"stock_id":1,"qty":54,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xl-black-1574.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1575","_score":1,"_source":{"id":1575,"sku":"WS01-XL-Green","name":"Gwyn Endurance Tee-XL-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gwyn-endurance-tee-xl-green-1575","links":{},"stock":{"item_id":1575,"product_id":1575,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xl-green-1575.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1557","_score":1,"_source":{"id":1557,"sku":"WS12-L-Purple","name":"Radiant Tee-L-Purple","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-purple_main.jpg","small_image":"/w/s/ws12-purple_main.jpg","thumbnail":"/w/s/ws12-purple_main.jpg","color":"57","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"radiant-tee-l-purple-1557","links":{},"stock":{"item_id":1557,"product_id":1557,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws12-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-l-purple-1557.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1553","_score":1,"_source":{"id":1553,"sku":"WS12-M-Orange","name":"Radiant Tee-M-Orange","attribute_set_id":9,"price":22,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                            So light and comfy, you'll love the Radiant Tee's organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

                            \n

                            • Salmon soft scoop neck tee.
                            • Athletic, semi-form fit.
                            • Flat seams prevent chafing.
                            • 67% Organic Cotton / 28% Hemp / 5% Spandex.

                            ","image":"/w/s/ws12-orange_main.jpg","small_image":"/w/s/ws12-orange_main.jpg","thumbnail":"/w/s/ws12-orange_main.jpg","color":"56","category_ids":[25,33,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"radiant-tee-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"radiant-tee-m-orange-1553","links":{},"stock":{"item_id":1553,"product_id":1553,"stock_id":1,"qty":74,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws12-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws12-orange_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/radiant-tee-m-orange-1553.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1573","_score":1,"_source":{"id":1573,"sku":"WS01-L-Yellow","name":"Gwyn Endurance Tee-L-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2019-05-13 09:57:42","weight":1,"product_links":[],"tier_prices":[{"qty":2,"extension_attributes":{"website_id":0},"customer_group_id":0,"value":22}],"custom_attributes":null,"final_price":20,"max_price":20,"max_regular_price":20,"minimal_regular_price":20,"special_price":"20.0000","minimal_price":20,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \r\n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","special_from_date":"2019-05-13 00:00:00","image":"/w/s/ws01-yellow_main.jpg","small_image":"/w/s/ws01-yellow_main.jpg","thumbnail":"/w/s/ws01-yellow_main.jpg","color":"60","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-l-yellow","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"170","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"gwyn-endurance-tee-l-yellow-1573","links":{},"stock":{"item_id":1573,"product_id":1573,"stock_id":1,"qty":66,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws01-yellow_main.jpg","pos":1,"typ":"image","lab":null}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-l-yellow-1573.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1568","_score":1,"_source":{"id":1568,"sku":"WS01-M-Black","name":"Gwyn Endurance Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gwyn-endurance-tee-m-black-1568","links":{},"stock":{"item_id":1568,"product_id":1568,"stock_id":1,"qty":24,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-m-black-1568.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1563","_score":1,"_source":{"id":1563,"sku":"WS01-XS-Green","name":"Gwyn Endurance Tee-XS-Green","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-green_main.jpg","small_image":"/w/s/ws01-green_main.jpg","thumbnail":"/w/s/ws01-green_main.jpg","color":"53","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gwyn-endurance-tee-xs-green-1563","links":{},"stock":{"item_id":1563,"product_id":1563,"stock_id":1,"qty":46,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws01-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xs-green-1563.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1562","_score":1,"_source":{"id":1562,"sku":"WS01-XS-Black","name":"Gwyn Endurance Tee-XS-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gwyn-endurance-tee-xs-black-1562","links":{},"stock":{"item_id":1562,"product_id":1562,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-06-29 15:00:20","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-xs-black-1562.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1565","_score":1,"_source":{"id":1565,"sku":"WS01-S-Black","name":"Gwyn Endurance Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:20","updated_at":"2017-11-06 12:17:20","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

                            \n

                            • Short-Sleeves.
                            • Machine wash/line dry.

                            ","image":"/w/s/ws01-black_main.jpg","small_image":"/w/s/ws01-black_main.jpg","thumbnail":"/w/s/ws01-black_main.jpg","color":"49","category_ids":[25,33,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwyn-endurance-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gwyn-endurance-tee-s-black-1565","links":{},"stock":{"item_id":1565,"product_id":1565,"stock_id":1,"qty":8,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/ws01-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/ws01-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tees-women/tees-25","category_id":25,"name":"Tees","slug":"tees-25"},{"path":"promotions/tees-all/tees-33","category_id":33,"name":"Tees","slug":"tees-33"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tees-women/tees-25/gwyn-endurance-tee-s-black-1565.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1663","_score":1,"_source":{"id":1663,"sku":"WB05-S-Purple","name":"Lucia Cross-Fit Bra -S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lucia-cross-fit-bra-s-purple-1663","links":{},"stock":{"item_id":1663,"product_id":1663,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-s-purple-1663.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1655","_score":1,"_source":{"id":1655,"sku":"WB04-XL-Purple","name":"Prima Compete Bra Top-XL-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"prima-compete-bra-top-xl-purple-1655","links":{},"stock":{"item_id":1655,"product_id":1655,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xl-purple-1655.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1676","_score":1,"_source":{"id":1676,"sku":"WT01-XS-Orange","name":"Bella Tank-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bella-tank-xs-orange-1676","links":{},"stock":{"item_id":1676,"product_id":1676,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xs-orange-1676.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1656","_score":1,"_source":{"id":1656,"sku":"WB04-XL-Yellow","name":"Prima Compete Bra Top-XL-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"prima-compete-bra-top-xl-yellow-1656","links":{},"stock":{"item_id":1656,"product_id":1656,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xl-yellow-1656.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1670","_score":1,"_source":{"id":1670,"sku":"WB05-XL-Black","name":"Lucia Cross-Fit Bra -XL-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lucia-cross-fit-bra-xl-black-1670","links":{},"stock":{"item_id":1670,"product_id":1670,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xl-black-1670.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1712","_score":1,"_source":{"id":1712,"sku":"WT03-M-Orange","name":"Nora Practice Tank-M-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nora-practice-tank-m-orange-1712","links":{},"stock":{"item_id":1712,"product_id":1712,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-m-orange-1712.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1731","_score":1,"_source":{"id":1731,"sku":"WT04-L-Blue","name":"Nona Fitness Tank-L-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nona-fitness-tank-l-blue-1731","links":{},"stock":{"item_id":1731,"product_id":1731,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-l-blue-1731.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1724","_score":1,"_source":{"id":1724,"sku":"WT04-XS-Red","name":"Nona Fitness Tank-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nona-fitness-tank-xs-red-1724","links":{},"stock":{"item_id":1724,"product_id":1724,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xs-red-1724.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1717","_score":1,"_source":{"id":1717,"sku":"WT03-L-Red","name":"Nora Practice Tank-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nora-practice-tank-l-red-1717","links":{},"stock":{"item_id":1717,"product_id":1717,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-l-red-1717.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1725","_score":1,"_source":{"id":1725,"sku":"WT04-S-Blue","name":"Nona Fitness Tank-S-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nona-fitness-tank-s-blue-1725","links":{},"stock":{"item_id":1725,"product_id":1725,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-s-blue-1725.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1708","_score":1,"_source":{"id":1708,"sku":"WT03-XS-Red","name":"Nora Practice Tank-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nora-practice-tank-xs-red-1708","links":{},"stock":{"item_id":1708,"product_id":1708,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xs-red-1708.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1732","_score":1,"_source":{"id":1732,"sku":"WT04-L-Purple","name":"Nona Fitness Tank-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nona-fitness-tank-l-purple-1732","links":{},"stock":{"item_id":1732,"product_id":1732,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-l-purple-1732.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1711","_score":1,"_source":{"id":1711,"sku":"WT03-S-Red","name":"Nora Practice Tank-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nora-practice-tank-s-red-1711","links":{},"stock":{"item_id":1711,"product_id":1711,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-s-red-1711.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1730","_score":1,"_source":{"id":1730,"sku":"WT04-M-Red","name":"Nona Fitness Tank-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nona-fitness-tank-m-red-1730","links":{},"stock":{"item_id":1730,"product_id":1730,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-m-red-1730.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1702","_score":1,"_source":{"id":1702,"sku":"WT02-XL-Green","name":"Zoe Tank-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoe-tank-xl-green-1702","links":{},"stock":{"item_id":1702,"product_id":1702,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xl-green-1702.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1703","_score":1,"_source":{"id":1703,"sku":"WT02-XL-Orange","name":"Zoe Tank-XL-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoe-tank-xl-orange-1703","links":{},"stock":{"item_id":1703,"product_id":1703,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xl-orange-1703.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1714","_score":1,"_source":{"id":1714,"sku":"WT03-M-Red","name":"Nora Practice Tank-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nora-practice-tank-m-red-1714","links":{},"stock":{"item_id":1714,"product_id":1714,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-m-red-1714.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1748","_score":1,"_source":{"id":1748,"sku":"WT05-L-Purple","name":"Leah Yoga Top-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"leah-yoga-top-l-purple-1748","links":{},"stock":{"item_id":1748,"product_id":1748,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-l-purple-1748.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1726","_score":1,"_source":{"id":1726,"sku":"WT04-S-Purple","name":"Nona Fitness Tank-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nona-fitness-tank-s-purple-1726","links":{},"stock":{"item_id":1726,"product_id":1726,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-s-purple-1726.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1734","_score":1,"_source":{"id":1734,"sku":"WT04-XL-Blue","name":"Nona Fitness Tank-XL-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nona-fitness-tank-xl-blue-1734","links":{},"stock":{"item_id":1734,"product_id":1734,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xl-blue-1734.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1710","_score":1,"_source":{"id":1710,"sku":"WT03-S-Purple","name":"Nora Practice Tank-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nora-practice-tank-s-purple-1710","links":{},"stock":{"item_id":1710,"product_id":1710,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-s-purple-1710.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1735","_score":1,"_source":{"id":1735,"sku":"WT04-XL-Purple","name":"Nona Fitness Tank-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nona-fitness-tank-xl-purple-1735","links":{},"stock":{"item_id":1735,"product_id":1735,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xl-purple-1735.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1747","_score":1,"_source":{"id":1747,"sku":"WT05-L-Orange","name":"Leah Yoga Top-L-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"leah-yoga-top-l-orange-1747","links":{},"stock":{"item_id":1747,"product_id":1747,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-l-orange-1747.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1729","_score":1,"_source":{"id":1729,"sku":"WT04-M-Purple","name":"Nona Fitness Tank-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nona-fitness-tank-m-purple-1729","links":{},"stock":{"item_id":1729,"product_id":1729,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-m-purple-1729.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1743","_score":1,"_source":{"id":1743,"sku":"WT05-S-White","name":"Leah Yoga Top-S-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"leah-yoga-top-s-white-1743","links":{},"stock":{"item_id":1743,"product_id":1743,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-s-white-1743.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1709","_score":1,"_source":{"id":1709,"sku":"WT03-S-Orange","name":"Nora Practice Tank-S-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nora-practice-tank-s-orange-1709","links":{},"stock":{"item_id":1709,"product_id":1709,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-s-orange-1709.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1706","_score":1,"_source":{"id":1706,"sku":"WT03-XS-Orange","name":"Nora Practice Tank-XS-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nora-practice-tank-xs-orange-1706","links":{},"stock":{"item_id":1706,"product_id":1706,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xs-orange-1706.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1722","_score":1,"_source":{"id":1722,"sku":"WT04-XS-Blue","name":"Nona Fitness Tank-XS-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nona-fitness-tank-xs-blue-1722","links":{},"stock":{"item_id":1722,"product_id":1722,"stock_id":1,"qty":73,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xs-blue-1722.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1746","_score":1,"_source":{"id":1746,"sku":"WT05-M-White","name":"Leah Yoga Top-M-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"leah-yoga-top-m-white-1746","links":{},"stock":{"item_id":1746,"product_id":1746,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-m-white-1746.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1718","_score":1,"_source":{"id":1718,"sku":"WT03-XL-Orange","name":"Nora Practice Tank-XL-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nora-practice-tank-xl-orange-1718","links":{},"stock":{"item_id":1718,"product_id":1718,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xl-orange-1718.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1720","_score":1,"_source":{"id":1720,"sku":"WT03-XL-Red","name":"Nora Practice Tank-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nora-practice-tank-xl-red-1720","links":{},"stock":{"item_id":1720,"product_id":1720,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xl-red-1720.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1740","_score":1,"_source":{"id":1740,"sku":"WT05-XS-White","name":"Leah Yoga Top-XS-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"leah-yoga-top-xs-white-1740","links":{},"stock":{"item_id":1740,"product_id":1740,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xs-white-1740.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1749","_score":1,"_source":{"id":1749,"sku":"WT05-L-White","name":"Leah Yoga Top-L-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"leah-yoga-top-l-white-1749","links":{},"stock":{"item_id":1749,"product_id":1749,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-l-white-1749.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1750","_score":1,"_source":{"id":1750,"sku":"WT05-XL-Orange","name":"Leah Yoga Top-XL-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"leah-yoga-top-xl-orange-1750","links":{},"stock":{"item_id":1750,"product_id":1750,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xl-orange-1750.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1741","_score":1,"_source":{"id":1741,"sku":"WT05-S-Orange","name":"Leah Yoga Top-S-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"leah-yoga-top-s-orange-1741","links":{},"stock":{"item_id":1741,"product_id":1741,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-s-orange-1741.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1742","_score":1,"_source":{"id":1742,"sku":"WT05-S-Purple","name":"Leah Yoga Top-S-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"leah-yoga-top-s-purple-1742","links":{},"stock":{"item_id":1742,"product_id":1742,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-s-purple-1742.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1739","_score":1,"_source":{"id":1739,"sku":"WT05-XS-Purple","name":"Leah Yoga Top-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"leah-yoga-top-xs-purple-1739","links":{},"stock":{"item_id":1739,"product_id":1739,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xs-purple-1739.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1727","_score":1,"_source":{"id":1727,"sku":"WT04-S-Red","name":"Nona Fitness Tank-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"nona-fitness-tank-s-red-1727","links":{},"stock":{"item_id":1727,"product_id":1727,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-s-red-1727.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1744","_score":1,"_source":{"id":1744,"sku":"WT05-M-Orange","name":"Leah Yoga Top-M-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"leah-yoga-top-m-orange-1744","links":{},"stock":{"item_id":1744,"product_id":1744,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-m-orange-1744.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1736","_score":1,"_source":{"id":1736,"sku":"WT04-XL-Red","name":"Nona Fitness Tank-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nona-fitness-tank-xl-red-1736","links":{},"stock":{"item_id":1736,"product_id":1736,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xl-red-1736.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1733","_score":1,"_source":{"id":1733,"sku":"WT04-L-Red","name":"Nona Fitness Tank-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-red_main.jpg","small_image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nona-fitness-tank-l-red-1733","links":{},"stock":{"item_id":1733,"product_id":1733,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt04-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-l-red-1733.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1738","_score":1,"_source":{"id":1738,"sku":"WT05-XS-Orange","name":"Leah Yoga Top-XS-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-orange_main.jpg","small_image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"leah-yoga-top-xs-orange-1738","links":{},"stock":{"item_id":1738,"product_id":1738,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt05-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xs-orange-1738.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1705","_score":1,"_source":{"id":1705,"sku":"WT02","name":"Zoe Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"zoe-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,33],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"zoe-tank-1705","links":{},"stock":{"item_id":1705,"product_id":1705,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","small_image":"/w/t/wt02-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zoe-tank-xs-green","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":29,"name":"Zoe Tank-XS-Green","id":1690,"category_ids":["26"],"sku":"WT02-XS-Green","status":1},{"image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","small_image":"/w/t/wt02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zoe-tank-xs-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":29,"name":"Zoe Tank-XS-Orange","id":1691,"category_ids":["26"],"sku":"WT02-XS-Orange","status":1},{"image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","small_image":"/w/t/wt02-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zoe-tank-xs-yellow","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":29,"name":"Zoe Tank-XS-Yellow","id":1692,"category_ids":["26"],"sku":"WT02-XS-Yellow","status":1},{"image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","small_image":"/w/t/wt02-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zoe-tank-s-green","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":29,"name":"Zoe Tank-S-Green","id":1693,"category_ids":["26"],"sku":"WT02-S-Green","status":1},{"image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","small_image":"/w/t/wt02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zoe-tank-s-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":29,"name":"Zoe Tank-S-Orange","id":1694,"category_ids":["26"],"sku":"WT02-S-Orange","status":1},{"image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","small_image":"/w/t/wt02-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zoe-tank-s-yellow","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":29,"name":"Zoe Tank-S-Yellow","id":1695,"category_ids":["26"],"sku":"WT02-S-Yellow","status":1},{"image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","small_image":"/w/t/wt02-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zoe-tank-m-green","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":29,"name":"Zoe Tank-M-Green","id":1696,"category_ids":["26"],"sku":"WT02-M-Green","status":1},{"image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","small_image":"/w/t/wt02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zoe-tank-m-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":29,"name":"Zoe Tank-M-Orange","id":1697,"category_ids":["26"],"sku":"WT02-M-Orange","status":1},{"image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","small_image":"/w/t/wt02-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zoe-tank-m-yellow","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":29,"name":"Zoe Tank-M-Yellow","id":1698,"category_ids":["26"],"sku":"WT02-M-Yellow","status":1},{"image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","small_image":"/w/t/wt02-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zoe-tank-l-green","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":29,"name":"Zoe Tank-L-Green","id":1699,"category_ids":["26"],"sku":"WT02-L-Green","status":1},{"image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","small_image":"/w/t/wt02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zoe-tank-l-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":29,"name":"Zoe Tank-L-Orange","id":1700,"category_ids":["26"],"sku":"WT02-L-Orange","status":1},{"image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","small_image":"/w/t/wt02-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zoe-tank-l-yellow","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Zoe Tank-L-Yellow","id":1701,"category_ids":["26"],"sku":"WT02-L-Yellow","max_regular_price":29,"status":1},{"image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","small_image":"/w/t/wt02-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zoe-tank-xl-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Zoe Tank-XL-Green","id":1702,"category_ids":["26"],"sku":"WT02-XL-Green","max_regular_price":29,"status":1},{"image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","small_image":"/w/t/wt02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zoe-tank-xl-orange","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Zoe Tank-XL-Orange","id":1703,"category_ids":["26"],"sku":"WT02-XL-Orange","max_regular_price":29,"status":1},{"image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","small_image":"/w/t/wt02-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"zoe-tank-xl-yellow","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Zoe Tank-XL-Yellow","id":1704,"category_ids":["26"],"sku":"WT02-XL-Yellow","max_regular_price":29,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1705,"id":231,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1705,"id":230,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[53,56,60],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-1705.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1737","_score":1,"_source":{"id":1737,"sku":"WT04","name":"Nona Fitness Tank","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"nona-fitness-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,151],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"199","climate":[205,209],"slug":"nona-fitness-tank-1737","links":{},"stock":{"item_id":1737,"product_id":1737,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","small_image":"/w/t/wt04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nona-fitness-tank-xs-blue","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"167","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nona Fitness Tank-XS-Blue","id":1722,"category_ids":["26","35","2"],"sku":"WT04-XS-Blue","max_regular_price":39,"status":1},{"image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","small_image":"/w/t/wt04-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nona-fitness-tank-xs-purple","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"167","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nona Fitness Tank-XS-Purple","id":1723,"category_ids":["26","35","2"],"sku":"WT04-XS-Purple","max_regular_price":39,"status":1},{"image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","small_image":"/w/t/wt04-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nona-fitness-tank-xs-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"167","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nona Fitness Tank-XS-Red","id":1724,"category_ids":["26","35","2"],"sku":"WT04-XS-Red","max_regular_price":39,"status":1},{"image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","small_image":"/w/t/wt04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nona-fitness-tank-s-blue","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nona Fitness Tank-S-Blue","id":1725,"category_ids":["26","35","2"],"sku":"WT04-S-Blue","max_regular_price":39,"status":1},{"image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","small_image":"/w/t/wt04-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nona-fitness-tank-s-purple","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nona Fitness Tank-S-Purple","id":1726,"category_ids":["26","35","2"],"sku":"WT04-S-Purple","max_regular_price":39,"status":1},{"image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","small_image":"/w/t/wt04-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nona-fitness-tank-s-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nona Fitness Tank-S-Red","id":1727,"category_ids":["26","35","2"],"sku":"WT04-S-Red","max_regular_price":39,"status":1},{"image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","small_image":"/w/t/wt04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nona-fitness-tank-m-blue","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nona Fitness Tank-M-Blue","id":1728,"category_ids":["26","35","2"],"sku":"WT04-M-Blue","max_regular_price":39,"status":1},{"image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","small_image":"/w/t/wt04-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nona-fitness-tank-m-purple","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nona Fitness Tank-M-Purple","id":1729,"category_ids":["26","35","2"],"sku":"WT04-M-Purple","max_regular_price":39,"status":1},{"image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","small_image":"/w/t/wt04-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nona-fitness-tank-m-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nona Fitness Tank-M-Red","id":1730,"category_ids":["26","35","2"],"sku":"WT04-M-Red","max_regular_price":39,"status":1},{"image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","small_image":"/w/t/wt04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nona-fitness-tank-l-blue","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nona Fitness Tank-L-Blue","id":1731,"category_ids":["26","35","2"],"sku":"WT04-L-Blue","max_regular_price":39,"status":1},{"image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","small_image":"/w/t/wt04-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nona-fitness-tank-l-purple","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nona Fitness Tank-L-Purple","id":1732,"category_ids":["26","35","2"],"sku":"WT04-L-Purple","max_regular_price":39,"status":1},{"image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","small_image":"/w/t/wt04-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nona-fitness-tank-l-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nona Fitness Tank-L-Red","id":1733,"category_ids":["26","35","2"],"sku":"WT04-L-Red","max_regular_price":39,"status":1},{"image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","small_image":"/w/t/wt04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nona-fitness-tank-xl-blue","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nona Fitness Tank-XL-Blue","id":1734,"category_ids":["26","35","2"],"sku":"WT04-XL-Blue","max_regular_price":39,"status":1},{"image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","small_image":"/w/t/wt04-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nona-fitness-tank-xl-purple","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nona Fitness Tank-XL-Purple","id":1735,"category_ids":["26","35","2"],"sku":"WT04-XL-Purple","max_regular_price":39,"status":1},{"image":"/w/t/wt04-red_main.jpg","thumbnail":"/w/t/wt04-red_main.jpg","color":"58","small_image":"/w/t/wt04-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nona-fitness-tank-xl-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nona Fitness Tank-XL-Red","id":1736,"category_ids":["26","35","2"],"sku":"WT04-XL-Red","max_regular_price":39,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1737,"id":235,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1737,"id":234,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,57,58],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-1737.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1721","_score":1,"_source":{"id":1721,"sku":"WT03","name":"Nora Practice Tank","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-red_main.jpg","small_image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"nora-practice-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"nora-practice-tank-1721","links":{},"stock":{"item_id":1721,"product_id":1721,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt03-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt03-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt03-red_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","small_image":"/w/t/wt03-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nora-practice-tank-xs-orange","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"167","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nora Practice Tank-XS-Orange","id":1706,"category_ids":["26","8","34","2"],"sku":"WT03-XS-Orange","max_regular_price":39,"status":1},{"image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","small_image":"/w/t/wt03-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nora-practice-tank-xs-purple","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"167","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nora Practice Tank-XS-Purple","id":1707,"category_ids":["26","8","34","2"],"sku":"WT03-XS-Purple","max_regular_price":39,"status":1},{"image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","small_image":"/w/t/wt03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nora-practice-tank-xs-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"167","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nora Practice Tank-XS-Red","id":1708,"category_ids":["26","8","34","2"],"sku":"WT03-XS-Red","max_regular_price":39,"status":1},{"image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","small_image":"/w/t/wt03-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nora-practice-tank-s-orange","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nora Practice Tank-S-Orange","id":1709,"category_ids":["26","8","34","2"],"sku":"WT03-S-Orange","max_regular_price":39,"status":1},{"image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","small_image":"/w/t/wt03-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nora-practice-tank-s-purple","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nora Practice Tank-S-Purple","id":1710,"category_ids":["26","8","34","2"],"sku":"WT03-S-Purple","max_regular_price":39,"status":1},{"image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","small_image":"/w/t/wt03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nora-practice-tank-s-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nora Practice Tank-S-Red","id":1711,"category_ids":["26","8","34","2"],"sku":"WT03-S-Red","max_regular_price":39,"status":1},{"image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","small_image":"/w/t/wt03-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nora-practice-tank-m-orange","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nora Practice Tank-M-Orange","id":1712,"category_ids":["26","8","34","2"],"sku":"WT03-M-Orange","max_regular_price":39,"status":1},{"image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","small_image":"/w/t/wt03-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nora-practice-tank-m-purple","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nora Practice Tank-M-Purple","id":1713,"category_ids":["26","8","34","2"],"sku":"WT03-M-Purple","max_regular_price":39,"status":1},{"image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","small_image":"/w/t/wt03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nora-practice-tank-m-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nora Practice Tank-M-Red","id":1714,"category_ids":["26","8","34","2"],"sku":"WT03-M-Red","max_regular_price":39,"status":1},{"image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","small_image":"/w/t/wt03-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nora-practice-tank-l-orange","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nora Practice Tank-L-Orange","id":1715,"category_ids":["26","8","34","2"],"sku":"WT03-L-Orange","max_regular_price":39,"status":1},{"image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","small_image":"/w/t/wt03-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nora-practice-tank-l-purple","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nora Practice Tank-L-Purple","id":1716,"category_ids":["26","8","34","2"],"sku":"WT03-L-Purple","max_regular_price":39,"status":1},{"image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","small_image":"/w/t/wt03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nora-practice-tank-l-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nora Practice Tank-L-Red","id":1717,"category_ids":["26","8","34","2"],"sku":"WT03-L-Red","max_regular_price":39,"status":1},{"image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","small_image":"/w/t/wt03-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nora-practice-tank-xl-orange","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nora Practice Tank-XL-Orange","id":1718,"category_ids":["26","8","34","2"],"sku":"WT03-XL-Orange","max_regular_price":39,"status":1},{"image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","small_image":"/w/t/wt03-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nora-practice-tank-xl-purple","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nora Practice Tank-XL-Purple","id":1719,"category_ids":["26","8","34","2"],"sku":"WT03-XL-Purple","max_regular_price":39,"status":1},{"image":"/w/t/wt03-red_main.jpg","thumbnail":"/w/t/wt03-red_main.jpg","color":"58","small_image":"/w/t/wt03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"nora-practice-tank-xl-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Nora Practice Tank-XL-Red","id":1720,"category_ids":["26","8","34","2"],"sku":"WT03-XL-Red","max_regular_price":39,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1721,"id":233,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1721,"id":232,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[56,57,58],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-1721.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1691","_score":1,"_source":{"id":1691,"sku":"WT02-XS-Orange","name":"Zoe Tank-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoe-tank-xs-orange-1691","links":{},"stock":{"item_id":1691,"product_id":1691,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xs-orange-1691.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1684","_score":1,"_source":{"id":1684,"sku":"WT01-L-Blue","name":"Bella Tank-L-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bella-tank-l-blue-1684","links":{},"stock":{"item_id":1684,"product_id":1684,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-l-blue-1684.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1700","_score":1,"_source":{"id":1700,"sku":"WT02-L-Orange","name":"Zoe Tank-L-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoe-tank-l-orange-1700","links":{},"stock":{"item_id":1700,"product_id":1700,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-l-orange-1700.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1693","_score":1,"_source":{"id":1693,"sku":"WT02-S-Green","name":"Zoe Tank-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoe-tank-s-green-1693","links":{},"stock":{"item_id":1693,"product_id":1693,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-s-green-1693.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1690","_score":1,"_source":{"id":1690,"sku":"WT02-XS-Green","name":"Zoe Tank-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoe-tank-xs-green-1690","links":{},"stock":{"item_id":1690,"product_id":1690,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xs-green-1690.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1697","_score":1,"_source":{"id":1697,"sku":"WT02-M-Orange","name":"Zoe Tank-M-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoe-tank-m-orange-1697","links":{},"stock":{"item_id":1697,"product_id":1697,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-m-orange-1697.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1695","_score":1,"_source":{"id":1695,"sku":"WT02-S-Yellow","name":"Zoe Tank-S-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoe-tank-s-yellow-1695","links":{},"stock":{"item_id":1695,"product_id":1695,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-s-yellow-1695.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1673","_score":1,"_source":{"id":1673,"sku":"WB05","name":"Lucia Cross-Fit Bra ","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"lucia-cross-fit-bra","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[150,37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"131","pattern":"194","climate":[205,209],"slug":"lucia-cross-fit-bra-1673","links":{},"stock":{"item_id":1673,"product_id":1673,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","small_image":"/w/b/wb05-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lucia-cross-fit-bra-xs-black","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"167","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Lucia Cross-Fit Bra -XS-Black","id":1658,"category_ids":["26"],"sku":"WB05-XS-Black","max_regular_price":39,"status":1},{"image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","small_image":"/w/b/wb05-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lucia-cross-fit-bra-xs-orange","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"167","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Lucia Cross-Fit Bra -XS-Orange","id":1659,"category_ids":["26"],"sku":"WB05-XS-Orange","max_regular_price":39,"status":1},{"image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","small_image":"/w/b/wb05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lucia-cross-fit-bra-xs-purple","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"167","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Lucia Cross-Fit Bra -XS-Purple","id":1660,"category_ids":["26"],"sku":"WB05-XS-Purple","max_regular_price":39,"status":1},{"image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","small_image":"/w/b/wb05-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lucia-cross-fit-bra-s-black","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Lucia Cross-Fit Bra -S-Black","id":1661,"category_ids":["26"],"sku":"WB05-S-Black","max_regular_price":39,"status":1},{"image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","small_image":"/w/b/wb05-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lucia-cross-fit-bra-s-orange","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Lucia Cross-Fit Bra -S-Orange","id":1662,"category_ids":["26"],"sku":"WB05-S-Orange","max_regular_price":39,"status":1},{"image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","small_image":"/w/b/wb05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lucia-cross-fit-bra-s-purple","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Lucia Cross-Fit Bra -S-Purple","id":1663,"category_ids":["26"],"sku":"WB05-S-Purple","max_regular_price":39,"status":1},{"image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","small_image":"/w/b/wb05-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lucia-cross-fit-bra-m-black","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Lucia Cross-Fit Bra -M-Black","id":1664,"category_ids":["26"],"sku":"WB05-M-Black","max_regular_price":39,"status":1},{"image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","small_image":"/w/b/wb05-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lucia-cross-fit-bra-m-orange","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Lucia Cross-Fit Bra -M-Orange","id":1665,"category_ids":["26"],"sku":"WB05-M-Orange","max_regular_price":39,"status":1},{"image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","small_image":"/w/b/wb05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lucia-cross-fit-bra-m-purple","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Lucia Cross-Fit Bra -M-Purple","id":1666,"category_ids":["26"],"sku":"WB05-M-Purple","max_regular_price":39,"status":1},{"image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","small_image":"/w/b/wb05-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lucia-cross-fit-bra-l-black","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Lucia Cross-Fit Bra -L-Black","id":1667,"category_ids":["26"],"sku":"WB05-L-Black","max_regular_price":39,"status":1},{"image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","small_image":"/w/b/wb05-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lucia-cross-fit-bra-l-orange","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Lucia Cross-Fit Bra -L-Orange","id":1668,"category_ids":["26"],"sku":"WB05-L-Orange","max_regular_price":39,"status":1},{"image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","small_image":"/w/b/wb05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lucia-cross-fit-bra-l-purple","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Lucia Cross-Fit Bra -L-Purple","id":1669,"category_ids":["26"],"sku":"WB05-L-Purple","max_regular_price":39,"status":1},{"image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","small_image":"/w/b/wb05-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lucia-cross-fit-bra-xl-black","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Lucia Cross-Fit Bra -XL-Black","id":1670,"category_ids":["26"],"sku":"WB05-XL-Black","max_regular_price":39,"status":1},{"image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","small_image":"/w/b/wb05-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lucia-cross-fit-bra-xl-orange","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Lucia Cross-Fit Bra -XL-Orange","id":1671,"category_ids":["26"],"sku":"WB05-XL-Orange","max_regular_price":39,"status":1},{"image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","small_image":"/w/b/wb05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lucia-cross-fit-bra-xl-purple","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Lucia Cross-Fit Bra -XL-Purple","id":1672,"category_ids":["26"],"sku":"WB05-XL-Purple","max_regular_price":39,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1673,"id":227,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1673,"id":226,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,56,57],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-1673.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1657","_score":1,"_source":{"id":1657,"sku":"WB04","name":"Prima Compete Bra Top","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"prima-compete-bra-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,154,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"131","pattern":"197","climate":[205,209],"slug":"prima-compete-bra-top-1657","links":{},"stock":{"item_id":1657,"product_id":1657,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","small_image":"/w/b/wb04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"prima-compete-bra-top-xs-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":24,"name":"Prima Compete Bra Top-XS-Blue","id":1642,"category_ids":["26"],"sku":"WB04-XS-Blue","status":1},{"image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","small_image":"/w/b/wb04-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"prima-compete-bra-top-xs-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":24,"name":"Prima Compete Bra Top-XS-Purple","id":1643,"category_ids":["26"],"sku":"WB04-XS-Purple","status":1},{"image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","small_image":"/w/b/wb04-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"prima-compete-bra-top-xs-yellow","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":24,"name":"Prima Compete Bra Top-XS-Yellow","id":1644,"category_ids":["26"],"sku":"WB04-XS-Yellow","status":1},{"image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","small_image":"/w/b/wb04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"prima-compete-bra-top-s-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":24,"name":"Prima Compete Bra Top-S-Blue","id":1645,"category_ids":["26"],"sku":"WB04-S-Blue","status":1},{"image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","small_image":"/w/b/wb04-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"prima-compete-bra-top-s-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":24,"name":"Prima Compete Bra Top-S-Purple","id":1646,"category_ids":["26"],"sku":"WB04-S-Purple","status":1},{"image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","small_image":"/w/b/wb04-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"prima-compete-bra-top-s-yellow","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":24,"name":"Prima Compete Bra Top-S-Yellow","id":1647,"category_ids":["26"],"sku":"WB04-S-Yellow","status":1},{"image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","small_image":"/w/b/wb04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"prima-compete-bra-top-m-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":24,"name":"Prima Compete Bra Top-M-Blue","id":1648,"category_ids":["26"],"sku":"WB04-M-Blue","status":1},{"image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","small_image":"/w/b/wb04-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"prima-compete-bra-top-m-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":24,"name":"Prima Compete Bra Top-M-Purple","id":1649,"category_ids":["26"],"sku":"WB04-M-Purple","status":1},{"image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","small_image":"/w/b/wb04-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"prima-compete-bra-top-m-yellow","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":24,"name":"Prima Compete Bra Top-M-Yellow","id":1650,"category_ids":["26"],"sku":"WB04-M-Yellow","status":1},{"image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","small_image":"/w/b/wb04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"prima-compete-bra-top-l-blue","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"170","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Prima Compete Bra Top-L-Blue","id":1651,"category_ids":["26"],"sku":"WB04-L-Blue","max_regular_price":24,"status":1},{"image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","small_image":"/w/b/wb04-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"prima-compete-bra-top-l-purple","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"170","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Prima Compete Bra Top-L-Purple","id":1652,"category_ids":["26"],"sku":"WB04-L-Purple","max_regular_price":24,"status":1},{"image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","small_image":"/w/b/wb04-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"prima-compete-bra-top-l-yellow","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"170","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Prima Compete Bra Top-L-Yellow","id":1653,"category_ids":["26"],"sku":"WB04-L-Yellow","max_regular_price":24,"status":1},{"image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","small_image":"/w/b/wb04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"prima-compete-bra-top-xl-blue","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"171","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Prima Compete Bra Top-XL-Blue","id":1654,"category_ids":["26"],"sku":"WB04-XL-Blue","max_regular_price":24,"status":1},{"image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","small_image":"/w/b/wb04-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"prima-compete-bra-top-xl-purple","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"171","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Prima Compete Bra Top-XL-Purple","id":1655,"category_ids":["26"],"sku":"WB04-XL-Purple","max_regular_price":24,"status":1},{"image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","small_image":"/w/b/wb04-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"prima-compete-bra-top-xl-yellow","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"171","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Prima Compete Bra Top-XL-Yellow","id":1656,"category_ids":["26"],"sku":"WB04-XL-Yellow","max_regular_price":24,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"},{"value_index":60,"label":"Yellow"}],"product_id":1657,"id":225,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1657,"id":224,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,57,60],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-1657.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1689","_score":1,"_source":{"id":1689,"sku":"WT01","name":"Bella Tank","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"bella-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"bella-tank-1689","links":{},"stock":{"item_id":1689,"product_id":1689,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","small_image":"/w/t/wt01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bella-tank-xs-black","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"167","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Bella Tank-XS-Black","id":1674,"category_ids":["26","36","2"],"sku":"WT01-XS-Black","max_regular_price":29,"status":1},{"image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","small_image":"/w/t/wt01-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bella-tank-xs-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"167","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Bella Tank-XS-Blue","id":1675,"category_ids":["26","36","2"],"sku":"WT01-XS-Blue","max_regular_price":29,"status":1},{"image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","small_image":"/w/t/wt01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bella-tank-xs-orange","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"167","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Bella Tank-XS-Orange","id":1676,"category_ids":["26","36","2"],"sku":"WT01-XS-Orange","max_regular_price":29,"status":1},{"image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","small_image":"/w/t/wt01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bella-tank-s-black","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"168","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Bella Tank-S-Black","id":1677,"category_ids":["26","36","2"],"sku":"WT01-S-Black","max_regular_price":29,"status":1},{"image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","small_image":"/w/t/wt01-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bella-tank-s-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"168","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Bella Tank-S-Blue","id":1678,"category_ids":["26","36","2"],"sku":"WT01-S-Blue","max_regular_price":29,"status":1},{"image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","small_image":"/w/t/wt01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bella-tank-s-orange","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"168","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Bella Tank-S-Orange","id":1679,"category_ids":["26","36","2"],"sku":"WT01-S-Orange","max_regular_price":29,"status":1},{"image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","small_image":"/w/t/wt01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bella-tank-m-black","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Bella Tank-M-Black","id":1680,"category_ids":["26","36","2"],"sku":"WT01-M-Black","max_regular_price":29,"status":1},{"image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","small_image":"/w/t/wt01-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bella-tank-m-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Bella Tank-M-Blue","id":1681,"category_ids":["26","36","2"],"sku":"WT01-M-Blue","max_regular_price":29,"status":1},{"image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","small_image":"/w/t/wt01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bella-tank-m-orange","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Bella Tank-M-Orange","id":1682,"category_ids":["26","36","2"],"sku":"WT01-M-Orange","max_regular_price":29,"status":1},{"image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","small_image":"/w/t/wt01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bella-tank-l-black","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Bella Tank-L-Black","id":1683,"category_ids":["26","36","2"],"sku":"WT01-L-Black","max_regular_price":29,"status":1},{"image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","small_image":"/w/t/wt01-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bella-tank-l-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Bella Tank-L-Blue","id":1684,"category_ids":["26","36","2"],"sku":"WT01-L-Blue","max_regular_price":29,"status":1},{"image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","small_image":"/w/t/wt01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bella-tank-l-orange","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Bella Tank-L-Orange","id":1685,"category_ids":["26","36","2"],"sku":"WT01-L-Orange","max_regular_price":29,"status":1},{"image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","small_image":"/w/t/wt01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bella-tank-xl-black","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Bella Tank-XL-Black","id":1686,"category_ids":["26","36","2"],"sku":"WT01-XL-Black","max_regular_price":29,"status":1},{"image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","small_image":"/w/t/wt01-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bella-tank-xl-blue","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Bella Tank-XL-Blue","id":1687,"category_ids":["26","36","2"],"sku":"WT01-XL-Blue","max_regular_price":29,"status":1},{"image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","small_image":"/w/t/wt01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bella-tank-xl-orange","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Bella Tank-XL-Orange","id":1688,"category_ids":["26","36","2"],"sku":"WT01-XL-Orange","max_regular_price":29,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":1689,"id":229,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1689,"id":228,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-1689.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1659","_score":1,"_source":{"id":1659,"sku":"WB05-XS-Orange","name":"Lucia Cross-Fit Bra -XS-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lucia-cross-fit-bra-xs-orange-1659","links":{},"stock":{"item_id":1659,"product_id":1659,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xs-orange-1659.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1660","_score":1,"_source":{"id":1660,"sku":"WB05-XS-Purple","name":"Lucia Cross-Fit Bra -XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lucia-cross-fit-bra-xs-purple-1660","links":{},"stock":{"item_id":1660,"product_id":1660,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xs-purple-1660.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1667","_score":1,"_source":{"id":1667,"sku":"WB05-L-Black","name":"Lucia Cross-Fit Bra -L-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lucia-cross-fit-bra-l-black-1667","links":{},"stock":{"item_id":1667,"product_id":1667,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-l-black-1667.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1665","_score":1,"_source":{"id":1665,"sku":"WB05-M-Orange","name":"Lucia Cross-Fit Bra -M-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lucia-cross-fit-bra-m-orange-1665","links":{},"stock":{"item_id":1665,"product_id":1665,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-m-orange-1665.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1652","_score":1,"_source":{"id":1652,"sku":"WB04-L-Purple","name":"Prima Compete Bra Top-L-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-purple_main.jpg","small_image":"/w/b/wb04-purple_main.jpg","thumbnail":"/w/b/wb04-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"prima-compete-bra-top-l-purple-1652","links":{},"stock":{"item_id":1652,"product_id":1652,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb04-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-l-purple-1652.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1658","_score":1,"_source":{"id":1658,"sku":"WB05-XS-Black","name":"Lucia Cross-Fit Bra -XS-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lucia-cross-fit-bra-xs-black-1658","links":{},"stock":{"item_id":1658,"product_id":1658,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xs-black-1658.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1664","_score":1,"_source":{"id":1664,"sku":"WB05-M-Black","name":"Lucia Cross-Fit Bra -M-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lucia-cross-fit-bra-m-black-1664","links":{},"stock":{"item_id":1664,"product_id":1664,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-m-black-1664.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1661","_score":1,"_source":{"id":1661,"sku":"WB05-S-Black","name":"Lucia Cross-Fit Bra -S-Black","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-black_main.jpg","small_image":"/w/b/wb05-black_main.jpg","thumbnail":"/w/b/wb05-black_main.jpg","color":"49","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lucia-cross-fit-bra-s-black-1661","links":{},"stock":{"item_id":1661,"product_id":1661,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb05-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb05-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-s-black-1661.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1662","_score":1,"_source":{"id":1662,"sku":"WB05-S-Orange","name":"Lucia Cross-Fit Bra -S-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lucia-cross-fit-bra-s-orange-1662","links":{},"stock":{"item_id":1662,"product_id":1662,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-s-orange-1662.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1674","_score":1,"_source":{"id":1674,"sku":"WT01-XS-Black","name":"Bella Tank-XS-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bella-tank-xs-black-1674","links":{},"stock":{"item_id":1674,"product_id":1674,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xs-black-1674.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1666","_score":1,"_source":{"id":1666,"sku":"WB05-M-Purple","name":"Lucia Cross-Fit Bra -M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lucia-cross-fit-bra-m-purple-1666","links":{},"stock":{"item_id":1666,"product_id":1666,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-m-purple-1666.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1671","_score":1,"_source":{"id":1671,"sku":"WB05-XL-Orange","name":"Lucia Cross-Fit Bra -XL-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lucia-cross-fit-bra-xl-orange-1671","links":{},"stock":{"item_id":1671,"product_id":1671,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xl-orange-1671.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1651","_score":1,"_source":{"id":1651,"sku":"WB04-L-Blue","name":"Prima Compete Bra Top-L-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:21","updated_at":"2017-11-06 12:17:21","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"prima-compete-bra-top-l-blue-1651","links":{},"stock":{"item_id":1651,"product_id":1651,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-l-blue-1651.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1688","_score":1,"_source":{"id":1688,"sku":"WT01-XL-Orange","name":"Bella Tank-XL-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bella-tank-xl-orange-1688","links":{},"stock":{"item_id":1688,"product_id":1688,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xl-orange-1688.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1669","_score":1,"_source":{"id":1669,"sku":"WB05-L-Purple","name":"Lucia Cross-Fit Bra -L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lucia-cross-fit-bra-l-purple-1669","links":{},"stock":{"item_id":1669,"product_id":1669,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-l-purple-1669.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1694","_score":1,"_source":{"id":1694,"sku":"WT02-S-Orange","name":"Zoe Tank-S-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-orange_main.jpg","small_image":"/w/t/wt02-orange_main.jpg","thumbnail":"/w/t/wt02-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoe-tank-s-orange-1694","links":{},"stock":{"item_id":1694,"product_id":1694,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt02-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt02-orange_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-s-orange-1694.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1682","_score":1,"_source":{"id":1682,"sku":"WT01-M-Orange","name":"Bella Tank-M-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bella-tank-m-orange-1682","links":{},"stock":{"item_id":1682,"product_id":1682,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-m-orange-1682.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1685","_score":1,"_source":{"id":1685,"sku":"WT01-L-Orange","name":"Bella Tank-L-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bella-tank-l-orange-1685","links":{},"stock":{"item_id":1685,"product_id":1685,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-l-orange-1685.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1672","_score":1,"_source":{"id":1672,"sku":"WB05-XL-Purple","name":"Lucia Cross-Fit Bra -XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-purple_main.jpg","small_image":"/w/b/wb05-purple_main.jpg","thumbnail":"/w/b/wb05-purple_main.jpg","color":"57","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lucia-cross-fit-bra-xl-purple-1672","links":{},"stock":{"item_id":1672,"product_id":1672,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb05-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-xl-purple-1672.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1668","_score":1,"_source":{"id":1668,"sku":"WB05-L-Orange","name":"Lucia Cross-Fit Bra -L-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

                            \n

                            • Black/white bra top.
                            • Criss-cross back design.
                            • Machine wash/dry.

                            ","image":"/w/b/wb05-orange_main.jpg","small_image":"/w/b/wb05-orange_main.jpg","thumbnail":"/w/b/wb05-orange_main.jpg","color":"56","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lucia-cross-fit-bra-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lucia-cross-fit-bra-l-orange-1668","links":{},"stock":{"item_id":1668,"product_id":1668,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb05-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/lucia-cross-fit-bra-l-orange-1668.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1696","_score":1,"_source":{"id":1696,"sku":"WT02-M-Green","name":"Zoe Tank-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoe-tank-m-green-1696","links":{},"stock":{"item_id":1696,"product_id":1696,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-m-green-1696.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1653","_score":1,"_source":{"id":1653,"sku":"WB04-L-Yellow","name":"Prima Compete Bra Top-L-Yellow","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-yellow_main.jpg","small_image":"/w/b/wb04-yellow_main.jpg","thumbnail":"/w/b/wb04-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"prima-compete-bra-top-l-yellow-1653","links":{},"stock":{"item_id":1653,"product_id":1653,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb04-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-l-yellow-1653.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1654","_score":1,"_source":{"id":1654,"sku":"WB04-XL-Blue","name":"Prima Compete Bra Top-XL-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                            Pull on the Prima Compete Bra Top and you'll love the fabric: soft, stretchy, and ultra lightweight. But you'll also love the racerback cut, for freer movement through all your athletic feats.
                            `
                            • Colorblocked details.
                            • Machine wash/line dry.

                            ","image":"/w/b/wb04-blue_main.jpg","small_image":"/w/b/wb04-blue_main.jpg","thumbnail":"/w/b/wb04-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"prima-compete-bra-top-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"prima-compete-bra-top-xl-blue-1654","links":{},"stock":{"item_id":1654,"product_id":1654,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb04-blue-0.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb04-blue_alt1.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/b/wb04-blue_back.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/prima-compete-bra-top-xl-blue-1654.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1675","_score":1,"_source":{"id":1675,"sku":"WT01-XS-Blue","name":"Bella Tank-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bella-tank-xs-blue-1675","links":{},"stock":{"item_id":1675,"product_id":1675,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xs-blue-1675.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1678","_score":1,"_source":{"id":1678,"sku":"WT01-S-Blue","name":"Bella Tank-S-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bella-tank-s-blue-1678","links":{},"stock":{"item_id":1678,"product_id":1678,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-s-blue-1678.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1683","_score":1,"_source":{"id":1683,"sku":"WT01-L-Black","name":"Bella Tank-L-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bella-tank-l-black-1683","links":{},"stock":{"item_id":1683,"product_id":1683,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-l-black-1683.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1699","_score":1,"_source":{"id":1699,"sku":"WT02-L-Green","name":"Zoe Tank-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-green_main.jpg","small_image":"/w/t/wt02-green_main.jpg","thumbnail":"/w/t/wt02-green_main.jpg","color":"53","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoe-tank-l-green-1699","links":{},"stock":{"item_id":1699,"product_id":1699,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt02-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-l-green-1699.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1760","_score":1,"_source":{"id":1760,"sku":"WT06-M-Blue","name":"Chloe Compete Tank-M-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                            \n

                            • Royal blue tank top - nylon/spandex.
                            • Flatlock stitching.
                            • Moisture-wicking fabric.
                            • Ergonomic seaming.
                            • Machine wash/dry.

                            ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chloe-compete-tank-m-blue-1760","links":{},"stock":{"item_id":1760,"product_id":1760,"stock_id":1,"qty":3,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-m-blue-1760.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1763","_score":1,"_source":{"id":1763,"sku":"WT06-L-Blue","name":"Chloe Compete Tank-L-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                            \n

                            • Royal blue tank top - nylon/spandex.
                            • Flatlock stitching.
                            • Moisture-wicking fabric.
                            • Ergonomic seaming.
                            • Machine wash/dry.

                            ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chloe-compete-tank-l-blue-1763","links":{},"stock":{"item_id":1763,"product_id":1763,"stock_id":1,"qty":61,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-l-blue-1763.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1754","_score":1,"_source":{"id":1754,"sku":"WT06-XS-Blue","name":"Chloe Compete Tank-XS-Blue - tier price","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2018-08-22 09:33:22","weight":1,"product_links":[],"tier_prices":[{"qty":1,"extension_attributes":{"website_id":0},"customer_group_id":1,"value":30}],"custom_attributes":null,"description":"

                            You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                            \r\n

                            • Royal blue tank top - nylon/spandex.
                            • Flatlock stitching.
                            • Moisture-wicking fabric.
                            • Ergonomic seaming.
                            • Machine wash/dry.

                            ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xs-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"167","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"chloe-compete-tank-xs-blue-tier-price-1754","links":{},"stock":{"item_id":1754,"product_id":1754,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-12-11 12:02:37","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":null},{"vid":null,"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":null}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xs-blue-tier-price-1754.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1755","_score":1,"_source":{"id":1755,"sku":"WT06-XS-Red","name":"Chloe Compete Tank-XS-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                            \n

                            • Royal blue tank top - nylon/spandex.
                            • Flatlock stitching.
                            • Moisture-wicking fabric.
                            • Ergonomic seaming.
                            • Machine wash/dry.

                            ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chloe-compete-tank-xs-red-1755","links":{},"stock":{"item_id":1755,"product_id":1755,"stock_id":1,"qty":30,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xs-red-1755.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1751","_score":1,"_source":{"id":1751,"sku":"WT05-XL-Purple","name":"Leah Yoga Top-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"leah-yoga-top-xl-purple-1751","links":{},"stock":{"item_id":1751,"product_id":1751,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xl-purple-1751.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1762","_score":1,"_source":{"id":1762,"sku":"WT06-M-Yellow","name":"Chloe Compete Tank-M-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                            \n

                            • Royal blue tank top - nylon/spandex.
                            • Flatlock stitching.
                            • Moisture-wicking fabric.
                            • Ergonomic seaming.
                            • Machine wash/dry.

                            ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chloe-compete-tank-m-yellow-1762","links":{},"stock":{"item_id":1762,"product_id":1762,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-m-yellow-1762.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1701","_score":1,"_source":{"id":1701,"sku":"WT02-L-Yellow","name":"Zoe Tank-L-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"zoe-tank-l-yellow-1701","links":{},"stock":{"item_id":1701,"product_id":1701,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-l-yellow-1701.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1704","_score":1,"_source":{"id":1704,"sku":"WT02-XL-Yellow","name":"Zoe Tank-XL-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoe-tank-xl-yellow-1704","links":{},"stock":{"item_id":1704,"product_id":1704,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xl-yellow-1704.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1707","_score":1,"_source":{"id":1707,"sku":"WT03-XS-Purple","name":"Nora Practice Tank-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nora-practice-tank-xs-purple-1707","links":{},"stock":{"item_id":1707,"product_id":1707,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xs-purple-1707.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1723","_score":1,"_source":{"id":1723,"sku":"WT04-XS-Purple","name":"Nona Fitness Tank-XS-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-purple_main.jpg","small_image":"/w/t/wt04-purple_main.jpg","thumbnail":"/w/t/wt04-purple_main.jpg","color":"57","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"nona-fitness-tank-xs-purple-1723","links":{},"stock":{"item_id":1723,"product_id":1723,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt04-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-xs-purple-1723.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1715","_score":1,"_source":{"id":1715,"sku":"WT03-L-Orange","name":"Nora Practice Tank-L-Orange","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-orange_main.jpg","small_image":"/w/t/wt03-orange_main.jpg","thumbnail":"/w/t/wt03-orange_main.jpg","color":"56","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nora-practice-tank-l-orange-1715","links":{},"stock":{"item_id":1715,"product_id":1715,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt03-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-l-orange-1715.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1713","_score":1,"_source":{"id":1713,"sku":"WT03-M-Purple","name":"Nora Practice Tank-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nora-practice-tank-m-purple-1713","links":{},"stock":{"item_id":1713,"product_id":1713,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-m-purple-1713.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1716","_score":1,"_source":{"id":1716,"sku":"WT03-L-Purple","name":"Nora Practice Tank-L-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"nora-practice-tank-l-purple-1716","links":{},"stock":{"item_id":1716,"product_id":1716,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-l-purple-1716.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1719","_score":1,"_source":{"id":1719,"sku":"WT03-XL-Purple","name":"Nora Practice Tank-XL-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

                            \n

                            • Pink stripped tank with side rouching.
                            • Pre-shrunk.
                            • Garment dyed.
                            • 92% Organic Cotton/8% Lycra.

                            ","image":"/w/t/wt03-purple_main.jpg","small_image":"/w/t/wt03-purple_main.jpg","thumbnail":"/w/t/wt03-purple_main.jpg","color":"57","category_ids":[26,8,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nora-practice-tank-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"nora-practice-tank-xl-purple-1719","links":{},"stock":{"item_id":1719,"product_id":1719,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt03-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nora-practice-tank-xl-purple-1719.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1681","_score":1,"_source":{"id":1681,"sku":"WT01-M-Blue","name":"Bella Tank-M-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bella-tank-m-blue-1681","links":{},"stock":{"item_id":1681,"product_id":1681,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-m-blue-1681.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1687","_score":1,"_source":{"id":1687,"sku":"WT01-XL-Blue","name":"Bella Tank-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-blue_main.jpg","small_image":"/w/t/wt01-blue_main.jpg","thumbnail":"/w/t/wt01-blue_main.jpg","color":"50","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bella-tank-xl-blue-1687","links":{},"stock":{"item_id":1687,"product_id":1687,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt01-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt01-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xl-blue-1687.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1698","_score":1,"_source":{"id":1698,"sku":"WT02-M-Yellow","name":"Zoe Tank-M-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoe-tank-m-yellow-1698","links":{},"stock":{"item_id":1698,"product_id":1698,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-m-yellow-1698.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1686","_score":1,"_source":{"id":1686,"sku":"WT01-XL-Black","name":"Bella Tank-XL-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bella-tank-xl-black-1686","links":{},"stock":{"item_id":1686,"product_id":1686,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-xl-black-1686.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1677","_score":1,"_source":{"id":1677,"sku":"WT01-S-Black","name":"Bella Tank-S-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bella-tank-s-black-1677","links":{},"stock":{"item_id":1677,"product_id":1677,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-s-black-1677.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1679","_score":1,"_source":{"id":1679,"sku":"WT01-S-Orange","name":"Bella Tank-S-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-orange_main.jpg","small_image":"/w/t/wt01-orange_main.jpg","thumbnail":"/w/t/wt01-orange_main.jpg","color":"56","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bella-tank-s-orange-1679","links":{},"stock":{"item_id":1679,"product_id":1679,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-s-orange-1679.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1680","_score":1,"_source":{"id":1680,"sku":"WT01-M-Black","name":"Bella Tank-M-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:22","updated_at":"2017-11-06 12:17:22","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.

                            \n

                            • Navy blue tank top - cotton.
                            • Feminine scoop neckline.
                            • Power mesh lining in shelf bra for superior support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt01-black_main.jpg","small_image":"/w/t/wt01-black_main.jpg","thumbnail":"/w/t/wt01-black_main.jpg","color":"49","category_ids":[26,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bella-tank-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bella-tank-m-black-1680","links":{},"stock":{"item_id":1680,"product_id":1680,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt01-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/bella-tank-m-black-1680.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1692","_score":1,"_source":{"id":1692,"sku":"WT02-XS-Yellow","name":"Zoe Tank-XS-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                            The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

                            \n

                            • Salmon heather tank top.
                            • 1\" elastic band on inner bra.
                            • Mesh lining on shelf bra for support.
                            • Soft, breathable fabric.
                            • Dry wick fabric to stay cool and dry.

                            ","image":"/w/t/wt02-yellow_main.jpg","small_image":"/w/t/wt02-yellow_main.jpg","thumbnail":"/w/t/wt02-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoe-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"zoe-tank-xs-yellow-1692","links":{},"stock":{"item_id":1692,"product_id":1692,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt02-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/zoe-tank-xs-yellow-1692.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1728","_score":1,"_source":{"id":1728,"sku":"WT04-M-Blue","name":"Nona Fitness Tank-M-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            It doesn't matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don't have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

                            \n

                            • Blue/white striped mesh tank.
                            • Relaxed fit.
                            • Chafe-resistant trim around armholes and collar.
                            • Machine wash/dry.

                            ","image":"/w/t/wt04-blue_main.jpg","small_image":"/w/t/wt04-blue_main.jpg","thumbnail":"/w/t/wt04-blue_main.jpg","color":"50","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"nona-fitness-tank-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"nona-fitness-tank-m-blue-1728","links":{},"stock":{"item_id":1728,"product_id":1728,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt04-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/nona-fitness-tank-m-blue-1728.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1745","_score":1,"_source":{"id":1745,"sku":"WT05-M-Purple","name":"Leah Yoga Top-M-Purple","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:23","updated_at":"2017-11-06 12:17:23","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                            The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                            \n

                            • Blue heather rouched tank top.
                            • Camisole tank top.
                            • Banding and shirring details.
                            • Body hugging fit.
                            • Contrast topstitch.
                            • Interior shelf bra with shapewear technology.
                            • 65% Polyester 35% Cotton.

                            ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"leah-yoga-top-m-purple-1745","links":{},"stock":{"item_id":1745,"product_id":1745,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-m-purple-1745.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"10","_score":1,"_source":{"id":10,"sku":"24-WB05","name":"Savvy Shoulder Tote","attribute_set_id":15,"price":32,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:25","updated_at":"2019-07-12 12:22:49","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":"24.0000","minimal_price":32,"regular_price":32,"description":"

                            Powerwalking to the gym or strolling to the local coffeehouse, the Savvy Shoulder Tote lets you stash your essentials in sporty style! A top-loading compartment provides quick and easy access to larger items, while zippered pockets on the front and side hold cash, credit cards and phone.

                            \r\n
                              \r\n
                            • Water-resistant shell.
                            • \r\n
                            • Water bottle pocket.
                            • \r\n
                            • Padded, articulating shoulder strap.
                            • \r\n
                            • Dimensions: W 21\" x H 15\" x D 10\".
                            • \r\n
                            ","special_from_date":"2017-11-06 00:00:00","special_to_date":"2018-07-11 00:00:00","image":"/w/b/wb05-red-0.jpg","small_image":"/w/b/wb05-red-0.jpg","thumbnail":"/w/b/wb05-red-0.jpg","color":"49","category_ids":[3,7,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"savvy-shoulder-tote","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[11,8],"style_bags":[29,30],"strap_bags":[61,62,66,67],"features_bags":[72,75],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"1","slug":"savvy-shoulder-tote-10","links":{},"stock":{"item_id":10,"product_id":10,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb05-red-0.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"collections/collections-7","category_id":7,"name":"Collections","slug":"collections-7"},{"path":"gear/bags/bags-4","category_id":4,"name":"Bags","slug":"bags-4"}],"url_path":"gear/gear-3/savvy-shoulder-tote-10.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1","_score":1,"_source":{"id":1,"sku":"24-MB01","name":"Joust Duffle Bag","attribute_set_id":15,"price":34,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:20","updated_at":"2019-09-03 13:22:05","product_links":[{"link_type":"related","linked_product_sku":"24-MB04","linked_product_type":"simple","position":1,"sku":"24-MB01"},{"link_type":"related","linked_product_sku":"24-MB05","linked_product_type":"simple","position":2,"sku":"24-MB01"},{"link_type":"related","linked_product_sku":"24-MB03","linked_product_type":"simple","position":3,"sku":"24-MB01"},{"link_type":"related","linked_product_sku":"24-MB02","linked_product_type":"simple","position":4,"sku":"24-MB01"},{"link_type":"related","linked_product_sku":"24-MB06","linked_product_type":"simple","position":5,"sku":"24-MB01"}],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":"99.0000","minimal_price":34,"regular_price":34,"description":"

                            The sporty Joust Duffle Bag can't be beat - not in the gym, not on the luggage carousel, not anywhere. Big enough to haul a basketball or soccer ball and some sneakers with plenty of room to spare, it's ideal for athletes with places to go.

                            \r\n
                              \r\n
                            • Dual top handles.
                            • \r\n
                            • Adjustable shoulder strap.
                            • \r\n
                            • Full-length zipper.
                            • \r\n
                            • L 29\" x W 13\" x H 11\".
                            • \r\n
                            ","special_from_date":"2010-06-04 00:00:00","special_to_date":"2019-07-12 00:00:00","image":"/m/b/mb01-blue-0.jpg","small_image":"/m/b/mb01-blue-0.jpg","thumbnail":"/m/b/mb01-blue-0.jpg","color":"49","category_ids":[3,4],"options_container":"container1","required_options":"0","has_options":"0","url_key":"joust-duffle-bag","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"0","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"joust-duffle-bag-1","links":{},"stock":{"item_id":1,"product_id":1,"stock_id":1,"qty":59,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/b/mb01-blue-0.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/bags/bags-4","category_id":4,"name":"Bags","slug":"bags-4"}],"url_path":"gear/gear-3/joust-duffle-bag-1.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"22","_score":1,"_source":{"id":22,"sku":"24-WG088","name":"Sprite Foam Roller","attribute_set_id":11,"price":19,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2019-09-03 12:09:39","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":19,"max_price":19,"max_regular_price":19,"minimal_regular_price":19,"special_price":null,"minimal_price":19,"regular_price":19,"description":"

                            It hurts so good to use the Sprite Foam Roller on achy, tired muscles for myofascial massage therapy. Or you can add this fundamental piece to your Pilates and yoga accouterment, or apply towards core stability, strengthening and balance exercise.

                            \r\n
                              \r\n
                            • 6'' wide by 12'' long.
                            • \r\n
                            • Safe for myofascial release.
                            • \r\n
                            • EPP or PE foam options.
                            • \r\n
                            • Solid, dense, closed-cell foam.
                            • \r\n
                            ","image":"/l/u/luma-foam-roller.jpg","small_image":"/l/u/luma-foam-roller.jpg","thumbnail":"/l/u/luma-foam-roller.jpg","color":"50","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-foam-roller","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[8,11],"material":"42","gender":[80,81,84],"category_gear":"87","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"sprite-foam-roller-22","links":{},"stock":{"item_id":22,"product_id":22,"stock_id":1,"qty":26,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/l/u/luma-foam-roller.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/fitness-equipment/fitness-equipment-5","category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5"}],"url_path":"gear/gear-3/sprite-foam-roller-22.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"7","_score":1,"_source":{"id":7,"sku":"24-UB02","name":"Impulse Duffle","attribute_set_id":15,"price":74,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:24","updated_at":"2017-11-06 12:16:24","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                            Good for beach trips, track meets, yoga retreats and more, the Impulse Duffle is the companion you'll want at your side. A large U-shaped opening makes packing a hassle-free affair, while a zippered interior pocket keeps jewelry and other small valuables safely tucked out of sight.

                            \n
                              \n
                            • Wheeled.
                            • \n
                            • Dual carry handles.
                            • \n
                            • Retractable top handle.
                            • \n
                            • W 14\" x H 26\" x D 11\".
                            • \n
                            ","image":"/u/b/ub02-black-0.jpg","small_image":"/u/b/ub02-black-0.jpg","thumbnail":"/u/b/ub02-black-0.jpg","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"impulse-duffle","tax_class_id":"2","activity":[11,19,22],"style_bags":[25,26],"material":[37,38],"strap_bags":[61,64,68],"features_bags":[70,76,79],"slug":"impulse-duffle-7","links":{},"stock":{"item_id":7,"product_id":7,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/u/b/ub02-black-0.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/bags/bags-4","category_id":4,"name":"Bags","slug":"bags-4"}],"url_path":"gear/gear-3/impulse-duffle-7.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"4","_score":1,"_source":{"id":4,"sku":"24-MB05","name":"Wayfarer Messenger Bag - custom options","attribute_set_id":15,"price":45,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:22","updated_at":"2019-04-24 08:09:51","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":60.5,"special_price":null,"minimal_price":60.5,"regular_price":45,"description":"

                            Perfect for class, work or the gym, the Wayfarer Messenger Bag is packed with pockets. The dual-buckle flap closure reveals an organizational panel, and the roomy main compartment has spaces for your laptop and a change of clothes. An adjustable shoulder strap and easy-grip handle promise easy carrying.

                            \r\n
                              \r\n
                            • Multiple internal zip pockets.
                            • \r\n
                            • Made of durable nylon.
                            • \r\n
                            ","image":"/m/b/mb05-black-0.jpg","small_image":"/m/b/mb05-black-0.jpg","thumbnail":"/m/b/mb05-black-0.jpg","color":"49","category_ids":[3,7,4,8],"options_container":"container2","required_options":"1","has_options":"1","url_key":"wayfarer-messenger-bag","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[11,19,22],"style_bags":[27,28],"material":[37,38],"strap_bags":[61,63,64,65,66],"features_bags":[74,75,77,78,79],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","slug":"wayfarer-messenger-bag-custom-options-4","links":{},"stock":{"item_id":4,"product_id":4,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/b/mb05-black-0.jpg","pos":1,"typ":"image","lab":"Image"}],"custom_options":[{"image_size_x":0,"product_sku":"24-MB05","image_size_y":0,"max_characters":0,"values":[{"price":1,"price_type":"fixed","option_type_id":1,"title":"radio option 1","sort_order":1},{"price":2,"price_type":"fixed","option_type_id":2,"title":"radio option 2","sort_order":2}],"option_id":1,"is_require":true,"title":"Radio button ","type":"radio","sort_order":1},{"image_size_x":0,"product_sku":"24-MB05","image_size_y":0,"max_characters":0,"values":[{"price":10,"price_type":"percent","option_type_id":3,"title":"option 1","sort_order":1},{"price":20,"price_type":"percent","option_type_id":4,"title":"option 2","sort_order":2}],"option_id":2,"is_require":true,"title":"Dropdown","type":"drop_down","sort_order":2},{"image_size_x":0,"product_sku":"24-MB05","image_size_y":0,"price":10,"max_characters":0,"price_type":"fixed","option_id":3,"is_require":true,"title":"Text field","type":"field","sort_order":3},{"image_size_x":0,"product_sku":"24-MB05","image_size_y":0,"max_characters":0,"values":[{"price":10,"price_type":"fixed","option_type_id":5,"title":"checkbox option 1","sort_order":1},{"price":20,"price_type":"fixed","option_type_id":6,"title":"checkbox option 2","sort_order":2},{"price":30,"price_type":"fixed","option_type_id":7,"title":"checkbox option 3","sort_order":3}],"option_id":4,"is_require":true,"title":"Checkbox options","type":"checkbox","sort_order":4}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"collections/collections-7","category_id":7,"name":"Collections","slug":"collections-7"},{"path":"gear/bags/bags-4","category_id":4,"name":"Bags","slug":"bags-4"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"}],"url_path":"gear/gear-3/wayfarer-messenger-bag-custom-options-4.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"13","_score":1,"_source":{"id":13,"sku":"24-WB07","name":"Overnight Duffle","attribute_set_id":15,"price":2,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:26","updated_at":"2019-05-08 10:36:22","product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            For long weekends away, camping outings and business trips, the Overnight Duffle can't be beat. The dual handles make it a cinch to carry, while the durable waterproof exterior helps you worry less about the weather. With multiple organizational pockets inside and out, it's the perfect travel companion.

                            \r\n
                              \r\n
                            • Dual top handles.
                            • \r\n
                            • W 15\" x H 15\" x D 9\".
                            • \r\n
                            ","image":"/w/b/wb07-brown-0_1.jpg","small_image":"/w/b/wb07-brown-0_1.jpg","thumbnail":"/w/b/wb07-brown-0_1.jpg","color":"49","category_ids":[3,7,4,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"overnight-duffle","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[19,22],"style_bags":"26","material":[35,37,38],"strap_bags":"64","features_bags":[74,79],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","slug":"overnight-duffle-13","links":{},"stock":{"item_id":13,"product_id":13,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-07-23 03:26:45","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/b/wb07-brown-0_1.jpg","pos":2,"typ":"image","lab":null}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"collections/collections-7","category_id":7,"name":"Collections","slug":"collections-7"},{"path":"gear/bags/bags-4","category_id":4,"name":"Bags","slug":"bags-4"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"}],"url_path":"gear/gear-3/overnight-duffle-13.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"9","_score":1,"_source":{"id":9,"sku":"24-WB02","name":"Compete Track Tote","attribute_set_id":15,"price":2,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:24","updated_at":"2019-07-12 12:20:12","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":2,"max_price":2,"max_regular_price":2,"minimal_regular_price":2,"special_price":"1.0000","minimal_price":2,"regular_price":2,"description":"

                            The Compete Track Tote holds a host of exercise supplies with ease. Stash your towel, jacket and street shoes inside. Tuck water bottles in easy-access external spaces. Perfect for trips to gym or yoga studio, with dual top handles for convenience to and from.

                            \r\n

                              \r\n
                            • Two-way zippers.
                            • \r\n
                            • Contrast detailing.
                            • \r\n
                            • W 22.0\" x H 17\" x D 10\".
                            • \r\n
                            ","special_from_date":"2015-05-06 00:00:00","special_to_date":"2016-07-12 00:00:00","image":"/w/b/wb02-green-0.jpg","small_image":"/w/b/wb02-green-0.jpg","thumbnail":"/w/b/wb02-green-0.jpg","color":"49","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"compete-track-tote","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[11,20,8],"style_bags":[29,30],"material":[37,38,39],"strap_bags":[61,64,66],"features_bags":[74,75,77],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"compete-track-tote-9","links":{},"stock":{"item_id":9,"product_id":9,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb02-green-0.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/bags/bags-4","category_id":4,"name":"Bags","slug":"bags-4"}],"url_path":"gear/gear-3/compete-track-tote-9.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"11","_score":1,"_source":{"id":11,"sku":"24-WB06","name":"Endeavor Daytrip Backpack","attribute_set_id":15,"price":33,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:25","updated_at":"2017-11-06 12:16:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":33,"max_price":33,"max_regular_price":33,"minimal_regular_price":33,"special_price":"33.0000","minimal_price":33,"regular_price":33,"description":"

                            With more room than it appears, the Endeavor Daytrip Backpack will hold a whole day's worth of books, binders and gym clothes. The spacious main compartment includes a dedicated laptop sleeve. Two other compartments offer extra storage space.

                            \n
                              \n
                            • Foam-padded adjustable shoulder straps.
                            • \n
                            • 900D polyester.
                            • \n
                            • Oversized zippers.
                            • \n
                            • Locker loop.
                            • \n
                            ","special_from_date":"2017-11-06 12:16:25","image":"/w/b/wb06-red-0.jpg","small_image":"/w/b/wb06-red-0.jpg","thumbnail":"/w/b/wb06-red-0.jpg","category_ids":[3,7,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"endeavor-daytrip-backpack","tax_class_id":"2","activity":[11,18,20,23],"style_bags":[24,28],"material":[36,37,38],"strap_bags":[61,64,65],"features_bags":[72,75,77,78,79],"erin_recommends":"1","sale":"1","slug":"endeavor-daytrip-backpack-11","links":{},"stock":{"item_id":11,"product_id":11,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb06-red-0.jpg","pos":1,"typ":"image","lab":"Image"},{"vid":null,"image":"/w/b/wb06-red-0_alt1.jpg","pos":2,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"collections/collections-7","category_id":7,"name":"Collections","slug":"collections-7"},{"path":"gear/bags/bags-4","category_id":4,"name":"Bags","slug":"bags-4"}],"url_path":"gear/gear-3/endeavor-daytrip-backpack-11.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"15","_score":1,"_source":{"id":15,"sku":"24-UG06","name":"Affirm Water Bottle ","attribute_set_id":11,"price":7,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2019-07-23 10:41:43","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":7,"max_price":7,"max_regular_price":7,"minimal_regular_price":7,"special_price":null,"minimal_price":7,"regular_price":7,"description":"

                            You'll stay hydrated with ease with the Affirm Water Bottle by your side or in hand. Measurements on the outside help you keep track of how much you're drinking, while the screw-top lid prevents spills. A metal carabiner clip allows you to attach it to the outside of a backpack or bag for easy access.

                            \r\n
                              \r\n
                            • Made of plastic.
                            • \r\n
                            • Grooved sides for an easy grip.
                            • \r\n
                            ","image":"/u/g/ug06-lb-0.jpg","small_image":"/u/g/ug06-lb-0.jpg","thumbnail":"/u/g/ug06-lb-0.jpg","color":"49","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"affirm-water-bottle","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[8,9,17,11],"material":"44","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"affirm-water-bottle-15","links":{},"stock":{"item_id":15,"product_id":15,"stock_id":1,"qty":75,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/u/g/ug06-lb-0.jpg","pos":1,"typ":"image","lab":"Image"},{"vid":{"meta":"","title":"The Aurora","type":"vimeo","url":"https://vimeo.com/21294655","desc":"Follow on http://www.facebook.com/TSOphotography\r\n\r\nI spent a week capturing one of the biggest aurora borealis shows in recent years. \r\n\r\nShot in and around Kirkenes and Pas National Park bordering Russia, at 70 degree north and 30 degrees east. Temperatures around -25 Celsius. Good fun.\r\n\r\nAvailable in Digital Cinema 4k.\r\n\r\nFollow Facebook: http://www.facebook.com/TSOPhotography\r\nFollow Twitter:\r\nhttp://twitter.com/TSOPhotography\r\nFollow Google+:\r\nhttps://plus.google.com/107543460658107759808\r\n\r\nPress/licensing/projects contact: tsophotography@gmail.com","video_id":"21294655"},"image":"/1/3/136883358_640.jpg","pos":2,"typ":"external-video","lab":null},{"vid":null,"image":"/b/i/biglogo512x512.jpg","pos":3,"typ":"image","lab":null}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/fitness-equipment/fitness-equipment-5","category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5"}],"url_path":"gear/gear-3/affirm-water-bottle-15.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"20","_score":1,"_source":{"id":20,"sku":"24-UG01","name":"Quest Lumaflex™ Band","attribute_set_id":11,"price":19,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2017-11-06 12:16:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":19,"max_price":19,"max_regular_price":19,"minimal_regular_price":19,"special_price":null,"minimal_price":19,"regular_price":19,"description":"

                            From leg extensions and standing squats to a full range of floor routines, the Quest Strength Band brings your own personal gym with you everywhere you go. Designed to add extra resistance to any training session, this strength band helps you tone and define your muscles. You'll love the extra comfort of its grippy handles and adjustable design.

                            \n
                              \n
                            • Adjusts from 30\" to 55\".\n
                            • Grippy comfort handles.\n
                            • Stretchy rubber construction.\n
                            ","image":"/u/g/ug01-bk-0.jpg","small_image":"/u/g/ug01-bk-0.jpg","thumbnail":"/u/g/ug01-bk-0.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"quest-lumaflex-trade-band","tax_class_id":"2","activity":"11","material":[35,44,45],"gender":[80,81,84],"category_gear":[85,87],"slug":"quest-lumaflex-and-trade-band-20","links":{},"stock":{"item_id":20,"product_id":20,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/u/g/ug01-bk-0.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/fitness-equipment/fitness-equipment-5","category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5"}],"url_path":"gear/gear-3/quest-lumaflex-and-trade-band-20.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"29","_score":1,"_source":{"id":29,"sku":"24-WG082-blue","name":"Sprite Stasis Ball 65 cm","attribute_set_id":12,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                            \n
                              \n
                            • 65 cm plastic shell.
                            • \n
                            • Durable, burst-resistant design.
                            • \n
                            • Hand pump included.
                            • \n
                            ","image":"/l/u/luma-stability-ball.jpg","small_image":"/l/u/luma-stability-ball.jpg","thumbnail":"/l/u/luma-stability-ball.jpg","color":"50","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-65-cm-blue","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"92","slug":"sprite-stasis-ball-65-cm-29","links":{},"stock":{"item_id":29,"product_id":29,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/l/u/luma-stability-ball.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/fitness-equipment/fitness-equipment-5","category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5"}],"url_path":"gear/gear-3/sprite-stasis-ball-65-cm-29.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"25","_score":1,"_source":{"id":25,"sku":"24-WG081-pink","name":"Sprite Stasis Ball 55 cm","attribute_set_id":12,"price":23,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":23,"max_price":23,"max_regular_price":23,"minimal_regular_price":23,"special_price":null,"minimal_price":23,"regular_price":23,"description":"

                            The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                            \n
                              \n
                            • Durable, burst-resistant design.
                            • \n
                            • Hand pump included.
                            • \n
                            ","image":"/l/u/luma-stability-ball-pink.jpg","small_image":"/l/u/luma-stability-ball-pink.jpg","thumbnail":"/l/u/luma-stability-ball-pink.jpg","color":"58","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-55-cm-pink","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"91","slug":"sprite-stasis-ball-55-cm-25","links":{},"stock":{"item_id":25,"product_id":25,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/l/u/luma-stability-ball-pink.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/fitness-equipment/fitness-equipment-5","category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5"}],"url_path":"gear/gear-3/sprite-stasis-ball-55-cm-25.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"28","_score":1,"_source":{"id":28,"sku":"24-WG082-pink","name":"Sprite Stasis Ball 65 cm","attribute_set_id":12,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                            The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                            \n
                              \n
                            • 65 cm plastic shell.
                            • \n
                            • Durable, burst-resistant design.
                            • \n
                            • Hand pump included.
                            • \n
                            ","image":"/l/u/luma-stability-ball-pink.jpg","small_image":"/l/u/luma-stability-ball-pink.jpg","thumbnail":"/l/u/luma-stability-ball-pink.jpg","color":"58","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-65-cm-pink","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"92","slug":"sprite-stasis-ball-65-cm-28","links":{},"stock":{"item_id":28,"product_id":28,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/l/u/luma-stability-ball-pink.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/fitness-equipment/fitness-equipment-5","category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5"}],"url_path":"gear/gear-3/sprite-stasis-ball-65-cm-28.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"21","_score":1,"_source":{"id":21,"sku":"24-WG084","name":"Sprite Foam Yoga Brick","attribute_set_id":11,"price":5,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2019-09-03 12:10:44","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":5,"max_price":5,"max_regular_price":5,"minimal_regular_price":5,"special_price":null,"minimal_price":5,"regular_price":5,"description":"

                            Our top-selling yoga prop, the 4-inch, high-quality Sprite Foam Yoga Brick is popular among yoga novices and studio professionals alike. An essential yoga accessory, the yoga brick is a critical tool for finding balance and alignment in many common yoga poses. Choose from 5 color options.

                            \r\n
                              \r\n
                            • Standard Large Size: 4\" x 6\" x 9\".\r\n
                            • Beveled edges for ideal contour grip.\r\n
                            • Durable and soft, scratch-proof foam.\r\n
                            • Individually wrapped.\r\n
                            • Ten color choices.\r\n
                            ","image":"/l/u/luma-yoga-brick.jpg","small_image":"/l/u/luma-yoga-brick.jpg","thumbnail":"/l/u/luma-yoga-brick.jpg","color":"50","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-foam-yoga-brick","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[8,9,17,11],"material":"42","gender":[80,81,84],"category_gear":"87","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"sprite-foam-yoga-brick-21","links":{},"stock":{"item_id":21,"product_id":21,"stock_id":1,"qty":23,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/l/u/luma-yoga-brick.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/fitness-equipment/fitness-equipment-5","category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5"}],"url_path":"gear/gear-3/sprite-foam-yoga-brick-21.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"33","_score":1,"_source":{"id":33,"sku":"24-WG085","name":"Sprite Yoga Strap 6 foot- tier price","attribute_set_id":13,"price":14,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2019-07-05 12:06:26","product_links":[],"tier_prices":[{"qty":1,"extension_attributes":{"website_id":0},"customer_group_id":1,"value":10}],"custom_attributes":null,"final_price":14,"max_price":14,"max_regular_price":14,"minimal_regular_price":14,"special_price":null,"minimal_price":14,"regular_price":14,"description":"

                            The Sprite Yoga Strap is your untiring partner in demanding stretches, holds and alignment routines. The strap's 100% organic cotton fabric is woven tightly to form a soft, textured yet non-slip surface. The plastic clasp buckle is easily adjustable, lightweight and durable under strain.

                            \r\n
                              \r\n
                            • 100% soft and durable cotton.\r\n
                            • Plastic cinch buckle is easy to use.\r\n
                            • Three natural colors made from phthalate and heavy metal free dyes.\r\n
                            ","image":"/l/u/luma-yoga-strap.jpg","small_image":"/l/u/luma-yoga-strap.jpg","thumbnail":"/l/u/luma-yoga-strap.jpg","color":"49","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-yoga-strap-6-foot","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":"8","material":[32,44],"gender":[80,81,84],"category_gear":"87","size":"94","slug":"sprite-yoga-strap-6-foot-tier-price-33","links":{},"stock":{"item_id":33,"product_id":33,"stock_id":1,"qty":39,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/l/u/luma-yoga-strap.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/fitness-equipment/fitness-equipment-5","category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5"}],"url_path":"gear/gear-3/sprite-yoga-strap-6-foot-tier-price-33.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"32","_score":1,"_source":{"id":32,"sku":"24-WG083-blue","name":"Sprite Stasis Ball 75 cm","attribute_set_id":12,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                            \n
                              \n
                            • 75 cm plastic shell.
                            • \n
                            • Durable, burst-resistant design.
                            • \n
                            • Hand pump included.
                            • \n
                            ","image":"/l/u/luma-stability-ball.jpg","small_image":"/l/u/luma-stability-ball.jpg","thumbnail":"/l/u/luma-stability-ball.jpg","color":"50","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-75-cm-blue","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"93","slug":"sprite-stasis-ball-75-cm-32","links":{},"stock":{"item_id":32,"product_id":32,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/l/u/luma-stability-ball.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/fitness-equipment/fitness-equipment-5","category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5"}],"url_path":"gear/gear-3/sprite-stasis-ball-75-cm-32.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"6","_score":1,"_source":{"id":6,"sku":"24-MB02","name":"Fusion Backpack","attribute_set_id":15,"price":59,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:23","updated_at":"2017-11-06 12:16:23","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                            With the Fusion Backpack strapped on, every trek is an adventure - even a bus ride to work. That's partly because two large zippered compartments store everything you need, while a front zippered pocket and side mesh pouches are perfect for stashing those little extras, in case you change your mind and take the day off.

                            \n
                              \n
                            • Durable nylon construction.
                            • \n
                            • 2 main zippered compartments.
                            • \n
                            • 1 exterior zippered pocket.
                            • \n
                            • Mesh side pouches.
                            • \n
                            • Padded, adjustable straps.
                            • \n
                            • Top carry handle.
                            • \n
                            • Dimensions: 18\" x 10\" x 6\".
                            • \n
                            ","image":"/m/b/mb02-gray-0.jpg","small_image":"/m/b/mb02-gray-0.jpg","thumbnail":"/m/b/mb02-gray-0.jpg","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fusion-backpack","tax_class_id":"2","activity":[18,20,8],"style_bags":[24,28],"material":[31,37,38],"strap_bags":[61,64,65],"features_bags":[71,72,74,75],"slug":"fusion-backpack-6","links":{},"stock":{"item_id":6,"product_id":6,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/b/mb02-gray-0.jpg","pos":1,"typ":"image","lab":"Image"},{"vid":null,"image":"/m/b/mb02-blue-0.jpg","pos":2,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/bags/bags-4","category_id":4,"name":"Bags","slug":"bags-4"}],"url_path":"gear/gear-3/fusion-backpack-6.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"30","_score":1,"_source":{"id":30,"sku":"24-WG083-gray","name":"Sprite Stasis Ball 75 cm","attribute_set_id":12,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                            The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                            \n
                              \n
                            • 75 cm plastic shell.
                            • \n
                            • Durable, burst-resistant design.
                            • \n
                            • Hand pump included.
                            • \n
                            ","image":"/l/u/luma-stability-ball-gray.jpg","small_image":"/l/u/luma-stability-ball-gray.jpg","thumbnail":"/l/u/luma-stability-ball-gray.jpg","color":"52","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-75-cm-gray","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"93","slug":"sprite-stasis-ball-75-cm-30","links":{},"stock":{"item_id":30,"product_id":30,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/l/u/luma-stability-ball-gray.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/fitness-equipment/fitness-equipment-5","category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5"}],"url_path":"gear/gear-3/sprite-stasis-ball-75-cm-30.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"34","_score":1,"_source":{"id":34,"sku":"24-WG086","name":"Sprite Yoga Strap 8 foot","attribute_set_id":13,"price":17,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":17,"max_price":17,"max_regular_price":17,"minimal_regular_price":17,"special_price":null,"minimal_price":17,"regular_price":17,"description":"

                            The Sprite Yoga Strap is your untiring partner in demanding stretches, holds and alignment routines. The strap's 100% organic cotton fabric is woven tightly to form a soft, textured yet non-slip surface. The plastic clasp buckle is easily adjustable, lightweight and durable under strain.

                            \n
                              \n
                            • 8' long x 1.0\" wide.\n
                            • 100% soft and durable cotton.\n
                            • Plastic cinch buckle is easy to use.\n
                            • Three natural colors made from phthalate and heavy metal free dyes.\n
                            ","image":"/l/u/luma-yoga-strap.jpg","small_image":"/l/u/luma-yoga-strap.jpg","thumbnail":"/l/u/luma-yoga-strap.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-yoga-strap-8-foot","tax_class_id":"2","activity":"8","material":[32,44],"gender":[80,81,84],"category_gear":"87","size":"95","slug":"sprite-yoga-strap-8-foot-34","links":{},"stock":{"item_id":34,"product_id":34,"stock_id":1,"qty":6,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/l/u/luma-yoga-strap.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/fitness-equipment/fitness-equipment-5","category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5"}],"url_path":"gear/gear-3/sprite-yoga-strap-8-foot-34.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"37","_score":1,"_source":{"id":37,"sku":"24-MG01","name":"Endurance Watch","attribute_set_id":11,"price":49,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                            It's easy to track and monitor your training progress with the Endurance Watch. You'll see standard info like time, date and day of the week, but it also functions for the serious high-mileage athete: lap counter, stopwatch, distance, heart rate, speed/pace, cadence and altitude.

                            \n
                              \n
                            • Digital display.
                            • \n
                            • LED backlight.
                            • \n
                            • Strap fits 7\" to 10\".
                            • \n
                            • 1-year limited warranty.
                            • \n
                            • Comes with polished metal case.
                            • \n
                            ","image":"/m/g/mg01-bk-0.jpg","small_image":"/m/g/mg01-bk-0.jpg","thumbnail":"/m/g/mg01-bk-0.jpg","category_ids":[3,6],"options_container":"container2","required_options":"0","has_options":"0","url_key":"endurance-watch","tax_class_id":"2","activity":[9,16],"material":[43,45,48],"gender":"80","category_gear":[86,87,90],"slug":"endurance-watch-37","links":{},"stock":{"item_id":37,"product_id":37,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/g/mg01-bk-0.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/watches/watches-6","category_id":6,"name":"Watches","slug":"watches-6"}],"url_path":"gear/gear-3/endurance-watch-37.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"36","_score":1,"_source":{"id":36,"sku":"24-MG04","name":"Aim Analog Watch","attribute_set_id":11,"price":45,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                            Stay light-years ahead of the competition with our Aim Analog Watch. The flexible, rubberized strap is contoured to conform to the shape of your wrist for a comfortable all-day fit. The face features three illuminated hands, a digital read-out of the current time, and stopwatch functions.

                            \n
                              \n
                            • Japanese quartz movement.
                            • \n
                            • Strap fits 7\" to 8.0\".
                            • \n
                            ","image":"/m/g/mg04-bk-0.jpg","small_image":"/m/g/mg04-bk-0.jpg","thumbnail":"/m/g/mg04-bk-0.jpg","category_ids":[3,6],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aim-analog-watch","tax_class_id":"2","activity":[9,17,5,11],"material":[44,45],"gender":"80","category_gear":[86,87,90],"slug":"aim-analog-watch-36","links":{},"stock":{"item_id":36,"product_id":36,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/g/mg04-bk-0.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/watches/watches-6","category_id":6,"name":"Watches","slug":"watches-6"}],"url_path":"gear/gear-3/aim-analog-watch-36.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"35","_score":1,"_source":{"id":35,"sku":"24-WG087","name":"Sprite Yoga Strap 10 foot","attribute_set_id":13,"price":21,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":21,"max_price":21,"max_regular_price":21,"minimal_regular_price":21,"special_price":null,"minimal_price":21,"regular_price":21,"description":"

                            The Sprite Yoga Strap is your untiring partner in demanding stretches, holds and alignment routines. The strap's 100% organic cotton fabric is woven tightly to form a soft, textured yet non-slip surface. The plastic clasp buckle is easily adjustable, lightweight and durable under strain.

                            \n
                              \n
                            • 10' long x 1.0\" wide.\n
                            • 100% soft and durable cotton.\n
                            • Plastic cinch buckle is easy to use.\n
                            • Three natural colors made from phthalate and heavy metal free dyes.\n
                            ","image":"/l/u/luma-yoga-strap.jpg","small_image":"/l/u/luma-yoga-strap.jpg","thumbnail":"/l/u/luma-yoga-strap.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-yoga-strap-10-foot","tax_class_id":"2","activity":"8","material":[32,44],"gender":[80,81,84],"category_gear":"87","size":"96","slug":"sprite-yoga-strap-10-foot-35","links":{},"stock":{"item_id":35,"product_id":35,"stock_id":1,"qty":2,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/l/u/luma-yoga-strap.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/fitness-equipment/fitness-equipment-5","category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5"}],"url_path":"gear/gear-3/sprite-yoga-strap-10-foot-35.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"24","_score":1,"_source":{"id":24,"sku":"24-WG081-gray","name":"Sprite Stasis Ball 55 cm","attribute_set_id":12,"price":23,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":23,"max_price":23,"max_regular_price":23,"minimal_regular_price":23,"special_price":null,"minimal_price":23,"regular_price":23,"description":"

                            The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                            \n
                              \n
                            • Durable, burst-resistant design.
                            • \n
                            • Hand pump included.
                            • \n
                            ","image":"/l/u/luma-stability-ball-gray.jpg","small_image":"/l/u/luma-stability-ball-gray.jpg","thumbnail":"/l/u/luma-stability-ball-gray.jpg","color":"52","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-55-cm-gray","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"91","slug":"sprite-stasis-ball-55-cm-24","links":{},"stock":{"item_id":24,"product_id":24,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/l/u/luma-stability-ball-gray.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/fitness-equipment/fitness-equipment-5","category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5"}],"url_path":"gear/gear-3/sprite-stasis-ball-55-cm-24.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"41","_score":1,"_source":{"id":41,"sku":"24-WG09","name":"Luma Analog Watch","attribute_set_id":11,"price":43,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                            Designed to stand up to your active lifestyle, this women's Luma Analog Watch features a tasteful brushed chrome finish and a stainless steel, water-resistant construction for lasting durability.

                            \n
                              \n
                            • Precision Miyota® three-hand movement.
                            • \n
                            ","special_price":"43.0000","special_from_date":"2017-11-06 12:16:30","image":"/w/g/wg09-gr-0.jpg","small_image":"/w/g/wg09-gr-0.jpg","thumbnail":"/w/g/wg09-gr-0.jpg","category_ids":[3,6],"options_container":"container2","required_options":"0","has_options":"0","url_key":"luma-analog-watch","tax_class_id":"2","activity":"9","material":"47","gender":"81","category_gear":[86,88,90],"sale":"1","slug":"luma-analog-watch-41","links":{},"stock":{"item_id":41,"product_id":41,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-06-23 11:05:41","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/g/wg09-gr-0.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/watches/watches-6","category_id":6,"name":"Watches","slug":"watches-6"}],"url_path":"gear/gear-3/luma-analog-watch-41.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"50","_score":1,"_source":{"id":50,"sku":"240-LV08","name":"Advanced Pilates & Yoga (Strength)","attribute_set_id":14,"price":18,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:34","updated_at":"2017-11-06 12:16:34","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":18,"max_price":18,"max_regular_price":18,"minimal_regular_price":18,"special_price":null,"minimal_price":18,"regular_price":18,"description":"

                            Advanced Pilates & Yoga will help you to increase your flexibility and tone core muscle groups through an invigorating workout for your whole body. The Pilates workout is a thorough strength-conditioning session that boosts flexibility, endurance and posture. The Yoga workout incorporates legacy and new poses into one continuous routine that will leave you feeling exhausted and fulfilled at once.

                            \n
                              \n
                            • Pilates-Yoga fusion.
                            • \n
                            • Breathing warmup and cooldown.
                            • \n
                            • Hour-long session.
                            • \n
                            • High-definition video.
                            • \n
                                ","short_description":"

                                \nNo equipment needed. Advanced Pilates & Yoga (Strength) is a muscle-defining program that employs balance, cardio and flexibility movements with plyometric and body-weight based exercises for an all-around, physically challenging workout. The Pilates elements of this compilation bring gentle resistance principals into the routines, emphasizing safety, technique and range of motion.\n

                                ","image":"/l/t/lt05.jpg","small_image":"/l/t/lt05.jpg","thumbnail":"/l/t/lt05.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"advanced-pilates-yoga-strength","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","tax_class_id":"2","activity":[8,16,11],"format":"102","slug":"advanced-pilates-and-yoga-strength-50","links":{},"stock":{"item_id":50,"product_id":50,"stock_id":1,"qty":null,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/l/t/lt05.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"training/training-9","category_id":9,"name":"Training","slug":"training-9"},{"path":"training/training-video/video-download-10","category_id":10,"name":"Video Download","slug":"video-download-10"}],"url_path":"training/training-9/advanced-pilates-and-yoga-strength-50.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"31","_score":1,"_source":{"id":31,"sku":"24-WG083-pink","name":"Sprite Stasis Ball 75 cm","attribute_set_id":12,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                                The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                                \n
                                  \n
                                • 75 cm plastic shell.
                                • \n
                                • Durable, burst-resistant design.
                                • \n
                                • Hand pump included.
                                • \n
                                ","image":"/l/u/luma-stability-ball-pink.jpg","small_image":"/l/u/luma-stability-ball-pink.jpg","thumbnail":"/l/u/luma-stability-ball-pink.jpg","color":"58","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-75-cm-pink","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"93","slug":"sprite-stasis-ball-75-cm-31","links":{},"stock":{"item_id":31,"product_id":31,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/l/u/luma-stability-ball-pink.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/fitness-equipment/fitness-equipment-5","category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5"}],"url_path":"gear/gear-3/sprite-stasis-ball-75-cm-31.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"42","_score":1,"_source":{"id":42,"sku":"24-WG01","name":"Bolo Sport Watch","attribute_set_id":11,"price":49,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":"49.0000","minimal_price":49,"regular_price":49,"description":"

                                The Bolo Sport Watch is sleek, sporty and sized just right to fit your smaller wrist. Easy to read and set up, it features a large digital face and button-activated alarm and stopwatch. The soft-touch resin band promises no-pinch comfort, while the water-resistant design lets you take your workout to the lap pool.

                                \n
                                  \n
                                • Displays time, day and date.
                                • \n
                                • Two-tone design.
                                • \n
                                • 12/24 hour formats.
                                • \n
                                • Nickel-free buckle on band.
                                • \n
                                • Battery included.
                                • \n
                                ","special_from_date":"2017-11-06 12:16:30","image":"/w/g/wg01-bk-0.jpg","small_image":"/w/g/wg01-bk-0.jpg","thumbnail":"/w/g/wg01-bk-0.jpg","category_ids":[3,6],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bolo-sport-watch","tax_class_id":"2","activity":[9,17],"material":"48","gender":"81","category_gear":[86,87,90],"sale":"1","slug":"bolo-sport-watch-42","links":{},"stock":{"item_id":42,"product_id":42,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/g/wg01-bk-0.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/watches/watches-6","category_id":6,"name":"Watches","slug":"watches-6"}],"url_path":"gear/gear-3/bolo-sport-watch-42.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"49","_score":1,"_source":{"id":49,"sku":"240-LV07","name":"Solo Power Circuit","attribute_set_id":14,"price":14,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:33","updated_at":"2017-11-06 12:16:33","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":14,"max_price":14,"max_regular_price":14,"minimal_regular_price":14,"special_price":null,"minimal_price":14,"regular_price":14,"description":"

                                Circuit training helps banish the boredom of traditional workouts. The Solo Power Circuit download lets you experience Luma's maximum efficiency circuit training in the training time you have available. Learn secrets to shed pounds, decrease body fat, sculpt amazing abs, and tone to reshape your entire body. You'll feel the difference after just one circuit.

                                \n
                                  \n
                                • Targets abs, arms and legs.
                                • \n
                                • 6 fun interval training circuits.
                                • \n
                                • Easy to follow.
                                • \n
                                • No special equipment needed.
                                • \n
                                • 43 minutes.
                                • \n
                                ","short_description":"

                                \nMany contemporary exercise trends sacrifice form and precision in favor of reps and \"PR\" goals. Luma's Solo Power Circuit teaches techniques to keep you safe. But don't think you'll get off easily: when it comes to building muscle and burning fat, these routines won't disappoint. A fusion of circuit training, yoga, Pilates and running, Solo Power Circuit brings out your sweatiest best.\n

                                ","image":"/l/t/lt04.jpg","small_image":"/l/t/lt04.jpg","thumbnail":"/l/t/lt04.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"solo-power-circuit","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","tax_class_id":"2","activity":[16,17,11],"format":"102","slug":"solo-power-circuit-49","links":{},"stock":{"item_id":49,"product_id":49,"stock_id":1,"qty":null,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/l/t/lt04.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"training/training-9","category_id":9,"name":"Training","slug":"training-9"},{"path":"training/training-video/video-download-10","category_id":10,"name":"Video Download","slug":"video-download-10"}],"url_path":"training/training-9/solo-power-circuit-49.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"39","_score":1,"_source":{"id":39,"sku":"24-MG05","name":"Cruise Dual Analog Watch","attribute_set_id":11,"price":55,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":55,"max_price":55,"max_regular_price":55,"minimal_regular_price":55,"special_price":null,"minimal_price":55,"regular_price":55,"description":"

                                Whether you're traveling or wish you were, you'll never let time zones perplex you again with the Cruise Dual Analog Watch. The thick, adjustable band promises a comfortable, personalized fit to this classy, modern time piece.

                                \n
                                  \n
                                • Two dials.
                                • \n
                                • Stainless steel case.
                                • \n
                                • Adjustable leather band.
                                • \n
                                ","image":"/m/g/mg05-br-0.jpg","small_image":"/m/g/mg05-br-0.jpg","thumbnail":"/m/g/mg05-br-0.jpg","category_ids":[3,7,6,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cruise-dual-analog-watch","tax_class_id":"2","activity":"9","material":[35,44],"gender":"80","category_gear":[86,88,90],"new":"1","slug":"cruise-dual-analog-watch-39","links":{},"stock":{"item_id":39,"product_id":39,"stock_id":1,"qty":79,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/g/mg05-br-0.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"collections/collections-7","category_id":7,"name":"Collections","slug":"collections-7"},{"path":"gear/watches/watches-6","category_id":6,"name":"Watches","slug":"watches-6"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"}],"url_path":"gear/gear-3/cruise-dual-analog-watch-39.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"46","_score":1,"_source":{"id":46,"sku":"240-LV04","name":"Beginner's Yoga","attribute_set_id":14,"price":6,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:32","updated_at":"2017-11-06 12:16:32","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":6,"max_price":6,"max_regular_price":6,"minimal_regular_price":6,"special_price":null,"minimal_price":6,"regular_price":6,"description":"

                                Beginner's Yoga starts you down the path toward strength, balance and mental focus. With this video download, you don't have to be a great athlete or gym guru to learn the best and most basic techniques for lifelong yoga foundation.

                                \n
                                  \n
                                • Video download
                                • \n
                                • Five workouts.
                                • \n
                                • Balance, strength and endurance.
                                • \n
                                • Flexibility and core strength.
                                • \n
                                • Includes modification for novices.
                                • \n
                                ","short_description":"

                                \nThe most difficult yoga poses to master are the ones learned incorrectly as a beginner. Luma's Beginner's Yoga is a fantastic way to break into your initial yoga session and begin the journey to a longer, leaner, healthier body. Confidently find your way into yoga with this effective yet gentle program. You'll learn proper alignment and how to sidestep common mistakes.\n

                                ","image":"/l/t/lt01.jpg","small_image":"/l/t/lt01.jpg","thumbnail":"/l/t/lt01.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beginner-s-yoga","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","tax_class_id":"2","activity":[8,16,17,5,11],"format":"102","slug":"beginners-yoga-46","links":{},"stock":{"item_id":46,"product_id":46,"stock_id":1,"qty":null,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/l/t/lt01.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"training/training-9","category_id":9,"name":"Training","slug":"training-9"},{"path":"training/training-video/video-download-10","category_id":10,"name":"Video Download","slug":"video-download-10"}],"url_path":"training/training-9/beginners-yoga-46.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"44","_score":1,"_source":{"id":44,"sku":"24-WG02","name":"Didi Sport Watch","attribute_set_id":11,"price":92,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                                The Didi Sport Watch helps you keep your workout plan down to the second. The vertical, digital face looks sleek and futuristic. This watch is programmed with tons of helpful features such as a timer, an alarm clock, a pedometer, and more to help make your excercise more productive.

                                \n
                                  \n
                                • Digital display.
                                • \n
                                • LED backlight.
                                • \n
                                • Rubber strap with buckle clasp.
                                • \n
                                • 1-year limited warranty.
                                • \n
                                ","image":"/w/g/wg02-bk-0.jpg","small_image":"/w/g/wg02-bk-0.jpg","thumbnail":"/w/g/wg02-bk-0.jpg","category_ids":[3,7,6,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"didi-sport-watch","tax_class_id":"2","activity":[16,11],"material":[43,45,48],"gender":"81","category_gear":[86,87,90],"new":"1","slug":"didi-sport-watch-44","links":{},"stock":{"item_id":44,"product_id":44,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-02-07 19:23:59","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/g/wg02-bk-0.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"collections/collections-7","category_id":7,"name":"Collections","slug":"collections-7"},{"path":"gear/watches/watches-6","category_id":6,"name":"Watches","slug":"watches-6"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"}],"url_path":"gear/gear-3/didi-sport-watch-44.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"38","_score":1,"_source":{"id":38,"sku":"24-MG03","name":"Summit Watch","attribute_set_id":11,"price":54,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:29","updated_at":"2017-11-06 12:16:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                                Trek high and low in the attractive Summit Watch, which features a digital LED display with time and date, stopwatch, lap counter, and 3-second backlight. It can also calculate the number of steps taken and calories burned.

                                \n
                                  \n
                                • Brushed metal case.
                                • \n
                                • Water resistant (100 meters).
                                • \n
                                • Buckle clasp.
                                • \n
                                • Strap fits 7\" - 10\".
                                • \n
                                • 1-year limited warranty.
                                • \n
                                ","image":"/m/g/mg03-br-0.jpg","small_image":"/m/g/mg03-br-0.jpg","thumbnail":"/m/g/mg03-br-0.jpg","category_ids":[3,7,6,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"summit-watch","tax_class_id":"2","activity":[9,16,17,5,11],"material":[43,44,48],"gender":[80,81,84],"category_gear":[86,87,90],"new":"1","slug":"summit-watch-38","links":{},"stock":{"item_id":38,"product_id":38,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/g/mg03-br-0.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"collections/collections-7","category_id":7,"name":"Collections","slug":"collections-7"},{"path":"gear/watches/watches-6","category_id":6,"name":"Watches","slug":"watches-6"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"}],"url_path":"gear/gear-3/summit-watch-38.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"48","_score":1,"_source":{"id":48,"sku":"240-LV06","name":"Yoga Adventure","attribute_set_id":14,"price":22,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:33","updated_at":"2019-03-22 09:14:31","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":15,"max_price":15,"max_regular_price":15,"minimal_regular_price":15,"special_price":"15.0000","minimal_price":15,"regular_price":22,"description":"

                                Luma presents an innovative power vinyasa yoga class for intermediate and advanced practitioners. The video allows you to pace yourself, but more intense work yields longer rest. This class is great for more advanced students looking to learn proper alignment in their yoga practice.

                                \r\n
                                  \r\n
                                • Includes a breakdown of 12 different postures.
                                • \r\n
                                • Chataranga Dandasana and prayer twist.
                                • \r\n
                                • Challenging posture (side crow).
                                • \r\n
                                • 55 minutes of movement.
                                • \r\n
                                ","short_description":"

                                \r\nThe practices on this downloadable training video are recommended only for experienced to advanced students. Those with the fundamental skills needed won't want to miss the insight and advice from world-renowned trainer Erin Renny in these exclusive Luma guided yoga sessions. Complete body, arm balance and leg strength workouts engage, strengthen and increase mobility.\r\n

                                ","special_from_date":"2019-03-22 00:00:00","image":"/l/t/lt03.jpg","small_image":"/l/t/lt03.jpg","thumbnail":"/l/t/lt03.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"yoga-adventure","msrp_display_actual_price_type":"0","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","gift_message_available":"0","tax_class_id":"2","activity":[8,16],"format":"102","slug":"yoga-adventure-48","links":{},"stock":{"item_id":48,"product_id":48,"stock_id":1,"qty":2,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/l/t/lt03.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"training/training-9","category_id":9,"name":"Training","slug":"training-9"},{"path":"training/training-video/video-download-10","category_id":10,"name":"Video Download","slug":"video-download-10"}],"url_path":"training/training-9/yoga-adventure-48.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"47","_score":1,"_source":{"id":47,"sku":"240-LV05","name":"LifeLong Fitness IV","attribute_set_id":14,"price":14,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:33","updated_at":"2017-11-06 12:16:33","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":14,"max_price":14,"max_regular_price":14,"minimal_regular_price":14,"special_price":null,"minimal_price":14,"regular_price":14,"description":"

                                Luma LifeLong Fitness Series is a world recognized, evidence based exercise program designed specifically for individuals focused on staying active their whole lives. If followed regularly, participants will see improved heart rate and blood pressure, increased mobility, reduced joint pain and overall improvement in functional fitness and health.\n

                                  \n
                                • 10 minute warm up.
                                • \n
                                • 30 minutes of mild aerobics.
                                • \n
                                • 20 minutes of strength, stretch and balance.
                                • \n
                                • Extensive modifications for varying fitness levels.
                                • \n
                                ","short_description":"

                                \nThe instructors and routines featured in LifeLong Fitness IV provide safe options to serve all types of physical conditions and abilities. Range of motion, body awareness and breathing practices are essential tools of yogic self-care, essential for maintaining alertness, health, and dignity over a lifetime. The LifeLong Fitness series acknowledges that as we age, the safety and sustainability of our exercise become as important as pushing our limits.\n

                                ","image":"/l/t/lt02.jpg","small_image":"/l/t/lt02.jpg","thumbnail":"/l/t/lt02.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lifelong-fitness-iv","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","tax_class_id":"2","activity":[16,17,5,11],"format":"102","slug":"lifelong-fitness-iv-47","links":{},"stock":{"item_id":47,"product_id":47,"stock_id":1,"qty":null,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/l/t/lt02.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"training/training-9","category_id":9,"name":"Training","slug":"training-9"},{"path":"training/training-video/video-download-10","category_id":10,"name":"Video Download","slug":"video-download-10"}],"url_path":"training/training-9/lifelong-fitness-iv-47.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"43","_score":1,"_source":{"id":43,"sku":"24-WG03","name":"Clamber Watch","attribute_set_id":11,"price":54,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                                Keep track of time on the treadmill or trail with our Clamber Watch. The flexible, rubberized strap is contoured to conform to your wrist for a comfortable fit all day. The face features an illuminated digital read-out of the current time and stopwatch functions.

                                \n
                                  \n
                                • Japanese quartz movement.
                                • \n
                                • Strap fits 5\" to 6.0\".
                                • \n
                                ","image":"/w/g/wg03-gr-0.jpg","small_image":"/w/g/wg03-gr-0.jpg","thumbnail":"/w/g/wg03-gr-0.jpg","category_ids":[3,6],"options_container":"container2","required_options":"0","has_options":"0","url_key":"clamber-watch","tax_class_id":"2","activity":[9,16,5,11],"material":[44,45,48],"gender":"81","category_gear":[86,87,90],"slug":"clamber-watch-43","links":{},"stock":{"item_id":43,"product_id":43,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/g/wg03-gr-0.jpg","pos":1,"typ":"image","lab":"Image"},{"vid":null,"image":"/w/g/wg03-sa-0.jpg","pos":2,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/watches/watches-6","category_id":6,"name":"Watches","slug":"watches-6"}],"url_path":"gear/gear-3/clamber-watch-43.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"45","_score":1,"_source":{"id":45,"sku":"24-WG080","name":"Sprite Yoga Companion Kit","attribute_set_id":11,"price":0,"status":1,"visibility":4,"type_id":"bundle","created_at":"2017-11-06 12:16:31","updated_at":"2019-07-05 12:02:07","weight":0,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":133,"max_regular_price":133,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                                A well-rounded yoga workout takes more than a mat. The Sprite Yoga Companion Kit helps stock your studio with the basics you need for a full-range workout. The kit is composed of four best-selling Luma Sprite accessories in one easy bundle: statis ball, foam block, yoga strap, and foam roller. Choose sizes and colors and leave the rest to us. The kit includes:

                                \r\n
                                  \r\n
                                • Sprite Statis Ball\r\n
                                • Sprite Foam Yoga Brick\r\n
                                • Sprite Yoga Strap\r\n
                                • Sprite Foam Roller\r\n
                                ","image":"/l/u/luma-yoga-kit-2.jpg","small_image":"/l/u/luma-yoga-kit-2.jpg","thumbnail":"/l/u/luma-yoga-kit-2.jpg","category_ids":[3,5],"options_container":"container2","required_options":"1","has_options":"1","url_key":"sprite-yoga-companion-kit","msrp_display_actual_price_type":"0","price_type":"0","sku_type":"0","weight_type":"0","price_view":"0","shipment_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[8,11],"gender":[80,81,84],"category_gear":"87","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"sprite-yoga-companion-kit-45","links":{},"stock":{"item_id":45,"product_id":45,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/l/u/luma-yoga-kit-2.jpg","pos":1,"typ":"image","lab":"Image"}],"bundle_options":[{"option_id":1,"position":1,"title":"Sprite Stasis Ball","type":"radio","sku":"24-WG080","product_links":[{"price":null,"qty":2,"price_type":null,"can_change_quantity":1,"option_id":1,"id":"1","position":1,"sku":"24-WG081-blue","is_default":true},{"price":null,"qty":1,"price_type":null,"can_change_quantity":1,"option_id":1,"id":"2","position":2,"sku":"24-WG082-blue","is_default":false},{"price":null,"qty":1,"price_type":null,"can_change_quantity":1,"option_id":1,"id":"3","position":3,"sku":"24-WG083-blue","is_default":false}],"required":true},{"option_id":2,"position":2,"title":"Sprite Foam Yoga Brick","type":"radio","sku":"24-WG080","product_links":[{"price":null,"qty":1,"price_type":null,"can_change_quantity":1,"option_id":2,"id":"4","position":1,"sku":"24-WG084","is_default":true}],"required":true},{"option_id":3,"position":3,"title":"Sprite Yoga Strap","type":"radio","sku":"24-WG080","product_links":[{"price":null,"qty":1,"price_type":null,"can_change_quantity":1,"option_id":3,"id":"5","position":1,"sku":"24-WG085","is_default":true},{"price":null,"qty":2,"price_type":null,"can_change_quantity":1,"option_id":3,"id":"6","position":2,"sku":"24-WG086","is_default":false},{"price":null,"qty":3,"price_type":null,"can_change_quantity":1,"option_id":3,"id":"7","position":3,"sku":"24-WG087","is_default":false}],"required":true},{"option_id":4,"position":4,"title":"Sprite Foam Roller","type":"radio","sku":"24-WG080","product_links":[{"price":null,"qty":1,"price_type":null,"can_change_quantity":1,"option_id":4,"id":"8","position":1,"sku":"24-WG088","is_default":true}],"required":true}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/fitness-equipment/fitness-equipment-5","category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5"}],"url_path":"gear/gear-3/sprite-yoga-companion-kit-45.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"86","_score":1,"_source":{"id":86,"sku":"MH03-XS-Green","name":"Bruno Compete Hoodie-XS-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                                \n

                                • Full zip black hoodie pullover.
                                • Adjustable drawstring hood.
                                • Ribbed cuffs/waistband.
                                • Kangaroo pocket.
                                • Machine wash/dry.

                                ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bruno-compete-hoodie-xs-green-86","links":{},"stock":{"item_id":86,"product_id":86,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xs-green-86.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"100","_score":1,"_source":{"id":100,"sku":"MH04-XS-Green","name":"Frankie Sweatshirt-XS-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                                \n

                                • Light green crewneck sweatshirt.
                                • Hand pockets.
                                • Relaxed fit.
                                • Machine wash/dry.

                                ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"frankie-sweatshirt-xs-green-100","links":{},"stock":{"item_id":100,"product_id":100,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xs-green-100.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"75","_score":1,"_source":{"id":75,"sku":"MH02-M-Purple","name":"Teton Pullover Hoodie-M-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                                \n

                                • Black pullover hoodie.
                                • Soft, brushed interior.
                                • Front hand pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"teton-pullover-hoodie-m-purple-75","links":{},"stock":{"item_id":75,"product_id":75,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-m-purple-75.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"94","_score":1,"_source":{"id":94,"sku":"MH03-L-Blue","name":"Bruno Compete Hoodie-L-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                                \n

                                • Full zip black hoodie pullover.
                                • Adjustable drawstring hood.
                                • Ribbed cuffs/waistband.
                                • Kangaroo pocket.
                                • Machine wash/dry.

                                ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bruno-compete-hoodie-l-blue-94","links":{},"stock":{"item_id":94,"product_id":94,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-l-blue-94.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"82","_score":1,"_source":{"id":82,"sku":"MH02-XL-Red","name":"Teton Pullover Hoodie-XL-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                                \n

                                • Black pullover hoodie.
                                • Soft, brushed interior.
                                • Front hand pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"teton-pullover-hoodie-xl-red-82","links":{},"stock":{"item_id":82,"product_id":82,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xl-red-82.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"88","_score":1,"_source":{"id":88,"sku":"MH03-S-Blue","name":"Bruno Compete Hoodie-S-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                                \n

                                • Full zip black hoodie pullover.
                                • Adjustable drawstring hood.
                                • Ribbed cuffs/waistband.
                                • Kangaroo pocket.
                                • Machine wash/dry.

                                ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bruno-compete-hoodie-s-blue-88","links":{},"stock":{"item_id":88,"product_id":88,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-s-blue-88.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"79","_score":1,"_source":{"id":79,"sku":"MH02-L-Red","name":"Teton Pullover Hoodie-L-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                                \n

                                • Black pullover hoodie.
                                • Soft, brushed interior.
                                • Front hand pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"teton-pullover-hoodie-l-red-79","links":{},"stock":{"item_id":79,"product_id":79,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-l-red-79.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"87","_score":1,"_source":{"id":87,"sku":"MH03-S-Black","name":"Bruno Compete Hoodie-S-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                                \n

                                • Full zip black hoodie pullover.
                                • Adjustable drawstring hood.
                                • Ribbed cuffs/waistband.
                                • Kangaroo pocket.
                                • Machine wash/dry.

                                ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bruno-compete-hoodie-s-black-87","links":{},"stock":{"item_id":87,"product_id":87,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-s-black-87.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"90","_score":1,"_source":{"id":90,"sku":"MH03-M-Black","name":"Bruno Compete Hoodie-M-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                                \n

                                • Full zip black hoodie pullover.
                                • Adjustable drawstring hood.
                                • Ribbed cuffs/waistband.
                                • Kangaroo pocket.
                                • Machine wash/dry.

                                ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bruno-compete-hoodie-m-black-90","links":{},"stock":{"item_id":90,"product_id":90,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-m-black-90.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"89","_score":1,"_source":{"id":89,"sku":"MH03-S-Green","name":"Bruno Compete Hoodie-S-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                                \n

                                • Full zip black hoodie pullover.
                                • Adjustable drawstring hood.
                                • Ribbed cuffs/waistband.
                                • Kangaroo pocket.
                                • Machine wash/dry.

                                ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"bruno-compete-hoodie-s-green-89","links":{},"stock":{"item_id":89,"product_id":89,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-s-green-89.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"80","_score":1,"_source":{"id":80,"sku":"MH02-XL-Black","name":"Teton Pullover Hoodie-XL-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                                \n

                                • Black pullover hoodie.
                                • Soft, brushed interior.
                                • Front hand pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"teton-pullover-hoodie-xl-black-80","links":{},"stock":{"item_id":80,"product_id":80,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xl-black-80.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"96","_score":1,"_source":{"id":96,"sku":"MH03-XL-Black","name":"Bruno Compete Hoodie-XL-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                                \n

                                • Full zip black hoodie pullover.
                                • Adjustable drawstring hood.
                                • Ribbed cuffs/waistband.
                                • Kangaroo pocket.
                                • Machine wash/dry.

                                ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bruno-compete-hoodie-xl-black-96","links":{},"stock":{"item_id":96,"product_id":96,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xl-black-96.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"98","_score":1,"_source":{"id":98,"sku":"MH03-XL-Green","name":"Bruno Compete Hoodie-XL-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                                \n

                                • Full zip black hoodie pullover.
                                • Adjustable drawstring hood.
                                • Ribbed cuffs/waistband.
                                • Kangaroo pocket.
                                • Machine wash/dry.

                                ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bruno-compete-hoodie-xl-green-98","links":{},"stock":{"item_id":98,"product_id":98,"stock_id":1,"qty":49,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xl-green-98.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"92","_score":1,"_source":{"id":92,"sku":"MH03-M-Green","name":"Bruno Compete Hoodie-M-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                                \n

                                • Full zip black hoodie pullover.
                                • Adjustable drawstring hood.
                                • Ribbed cuffs/waistband.
                                • Kangaroo pocket.
                                • Machine wash/dry.

                                ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bruno-compete-hoodie-m-green-92","links":{},"stock":{"item_id":92,"product_id":92,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-m-green-92.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"93","_score":1,"_source":{"id":93,"sku":"MH03-L-Black","name":"Bruno Compete Hoodie-L-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                                \n

                                • Full zip black hoodie pullover.
                                • Adjustable drawstring hood.
                                • Ribbed cuffs/waistband.
                                • Kangaroo pocket.
                                • Machine wash/dry.

                                ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bruno-compete-hoodie-l-black-93","links":{},"stock":{"item_id":93,"product_id":93,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-l-black-93.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"95","_score":1,"_source":{"id":95,"sku":"MH03-L-Green","name":"Bruno Compete Hoodie-L-Green","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                                \n

                                • Full zip black hoodie pullover.
                                • Adjustable drawstring hood.
                                • Ribbed cuffs/waistband.
                                • Kangaroo pocket.
                                • Machine wash/dry.

                                ","image":"/m/h/mh03-green_main.jpg","small_image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"bruno-compete-hoodie-l-green-95","links":{},"stock":{"item_id":95,"product_id":95,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-l-green-95.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"67","_score":1,"_source":{"id":67,"sku":"MH01","name":"Chaz Kangeroo Hoodie","attribute_set_id":9,"price":52,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                                \n

                                • Two-tone gray heather hoodie.
                                • Drawstring-adjustable hood.
                                • Machine wash/dry.

                                ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"chaz-kangeroo-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"159","eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","pattern":"195","climate":[202,204,205,208,210],"slug":"chaz-kangeroo-hoodie-67","links":{},"stock":{"item_id":67,"product_id":67,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","small_image":"/m/h/mh01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chaz-kangeroo-hoodie-xs-black","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"167","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Chaz Kangeroo Hoodie-XS-Black","id":52,"category_ids":["15","36","2"],"sku":"MH01-XS-Black","max_regular_price":52,"status":1},{"image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","small_image":"/m/h/mh01-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chaz-kangeroo-hoodie-xs-gray","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"167","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Chaz Kangeroo Hoodie-XS-Gray","id":53,"category_ids":["15","36","2"],"sku":"MH01-XS-Gray","max_regular_price":52,"status":1},{"image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","small_image":"/m/h/mh01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chaz-kangeroo-hoodie-xs-orange","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"167","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Chaz Kangeroo Hoodie-XS-Orange","id":54,"category_ids":["15","36","2"],"sku":"MH01-XS-Orange","max_regular_price":52,"status":1},{"image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","small_image":"/m/h/mh01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chaz-kangeroo-hoodie-s-black","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"168","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Chaz Kangeroo Hoodie-S-Black","id":55,"category_ids":["15","36","2"],"sku":"MH01-S-Black","max_regular_price":52,"status":1},{"image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","small_image":"/m/h/mh01-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chaz-kangeroo-hoodie-s-gray","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"168","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Chaz Kangeroo Hoodie-S-Gray","id":56,"category_ids":["15","36","2"],"sku":"MH01-S-Gray","max_regular_price":52,"status":1},{"image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","small_image":"/m/h/mh01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chaz-kangeroo-hoodie-s-orange","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"168","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Chaz Kangeroo Hoodie-S-Orange","id":57,"category_ids":["15","36","2"],"sku":"MH01-S-Orange","max_regular_price":52,"status":1},{"image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","small_image":"/m/h/mh01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chaz-kangeroo-hoodie-m-black","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"169","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Chaz Kangeroo Hoodie-M-Black","id":58,"category_ids":["15","36","2"],"sku":"MH01-M-Black","max_regular_price":52,"status":1},{"image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","small_image":"/m/h/mh01-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chaz-kangeroo-hoodie-m-gray","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"169","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Chaz Kangeroo Hoodie-M-Gray","id":59,"category_ids":["15","36","2"],"sku":"MH01-M-Gray","max_regular_price":52,"status":1},{"image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","small_image":"/m/h/mh01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chaz-kangeroo-hoodie-m-orange","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"169","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Chaz Kangeroo Hoodie-M-Orange","id":60,"category_ids":["15","36","2"],"sku":"MH01-M-Orange","max_regular_price":52,"status":1},{"image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","small_image":"/m/h/mh01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chaz-kangeroo-hoodie-l-black","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"170","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Chaz Kangeroo Hoodie-L-Black","id":61,"category_ids":["15","36","2"],"sku":"MH01-L-Black","max_regular_price":52,"status":1},{"image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","small_image":"/m/h/mh01-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chaz-kangeroo-hoodie-l-gray","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"170","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Chaz Kangeroo Hoodie-L-Gray","id":62,"category_ids":["15","36","2"],"sku":"MH01-L-Gray","max_regular_price":52,"status":1},{"image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","small_image":"/m/h/mh01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chaz-kangeroo-hoodie-l-orange","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"170","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Chaz Kangeroo Hoodie-L-Orange","id":63,"category_ids":["15","36","2"],"sku":"MH01-L-Orange","max_regular_price":52,"status":1},{"image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","small_image":"/m/h/mh01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chaz-kangeroo-hoodie-xl-black","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"171","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Chaz Kangeroo Hoodie-XL-Black","id":64,"category_ids":["15","36","2"],"sku":"MH01-XL-Black","max_regular_price":52,"status":1},{"image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","small_image":"/m/h/mh01-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chaz-kangeroo-hoodie-xl-gray","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"171","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Chaz Kangeroo Hoodie-XL-Gray","id":65,"category_ids":["15","36","2"],"sku":"MH01-XL-Gray","max_regular_price":52,"status":1},{"image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","small_image":"/m/h/mh01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chaz-kangeroo-hoodie-xl-orange","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"171","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Chaz Kangeroo Hoodie-XL-Orange","id":66,"category_ids":["15","36","2"],"sku":"MH01-XL-Orange","max_regular_price":52,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"}],"product_id":67,"id":3,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":67,"id":2,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,52,56],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-67.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"83","_score":1,"_source":{"id":83,"sku":"MH02","name":"Teton Pullover Hoodie","attribute_set_id":9,"price":70,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                                \n

                                • Black pullover hoodie.
                                • Soft, brushed interior.
                                • Front hand pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"teton-pullover-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,145,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","pattern":"197","climate":[202,204,205,208,210],"slug":"teton-pullover-hoodie-83","links":{},"stock":{"item_id":83,"product_id":83,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","small_image":"/m/h/mh02-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"teton-pullover-hoodie-xs-black","regular_price":70,"required_options":"0","msrp_display_actual_price_type":"0","max_price":70,"minimal_regular_price":70,"size":"167","final_price":70,"special_price":null,"price":70,"minimal_price":70,"name":"Teton Pullover Hoodie-XS-Black","id":68,"category_ids":["15"],"sku":"MH02-XS-Black","max_regular_price":70,"status":1},{"image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","small_image":"/m/h/mh02-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"teton-pullover-hoodie-xs-purple","regular_price":70,"required_options":"0","msrp_display_actual_price_type":"0","max_price":70,"minimal_regular_price":70,"size":"167","final_price":70,"special_price":null,"price":70,"minimal_price":70,"name":"Teton Pullover Hoodie-XS-Purple","id":69,"category_ids":["15"],"sku":"MH02-XS-Purple","max_regular_price":70,"status":1},{"image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","small_image":"/m/h/mh02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"teton-pullover-hoodie-xs-red","regular_price":70,"required_options":"0","msrp_display_actual_price_type":"0","max_price":70,"minimal_regular_price":70,"size":"167","final_price":70,"special_price":null,"price":70,"minimal_price":70,"name":"Teton Pullover Hoodie-XS-Red","id":70,"category_ids":["15"],"sku":"MH02-XS-Red","max_regular_price":70,"status":1},{"image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","small_image":"/m/h/mh02-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"teton-pullover-hoodie-s-black","regular_price":70,"required_options":"0","msrp_display_actual_price_type":"0","max_price":70,"minimal_regular_price":70,"size":"168","final_price":70,"special_price":null,"price":70,"minimal_price":70,"name":"Teton Pullover Hoodie-S-Black","id":71,"category_ids":["15"],"sku":"MH02-S-Black","max_regular_price":70,"status":1},{"image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","small_image":"/m/h/mh02-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"teton-pullover-hoodie-s-purple","regular_price":70,"required_options":"0","msrp_display_actual_price_type":"0","max_price":70,"minimal_regular_price":70,"size":"168","final_price":70,"special_price":null,"price":70,"minimal_price":70,"name":"Teton Pullover Hoodie-S-Purple","id":72,"category_ids":["15"],"sku":"MH02-S-Purple","max_regular_price":70,"status":1},{"image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","small_image":"/m/h/mh02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"teton-pullover-hoodie-s-red","regular_price":70,"required_options":"0","msrp_display_actual_price_type":"0","max_price":70,"minimal_regular_price":70,"size":"168","final_price":70,"special_price":null,"price":70,"minimal_price":70,"name":"Teton Pullover Hoodie-S-Red","id":73,"category_ids":["15"],"sku":"MH02-S-Red","max_regular_price":70,"status":1},{"image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","small_image":"/m/h/mh02-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"teton-pullover-hoodie-m-black","regular_price":70,"required_options":"0","msrp_display_actual_price_type":"0","max_price":70,"minimal_regular_price":70,"size":"169","final_price":70,"special_price":null,"price":70,"minimal_price":70,"name":"Teton Pullover Hoodie-M-Black","id":74,"category_ids":["15"],"sku":"MH02-M-Black","max_regular_price":70,"status":1},{"image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","small_image":"/m/h/mh02-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"teton-pullover-hoodie-m-purple","regular_price":70,"required_options":"0","msrp_display_actual_price_type":"0","max_price":70,"minimal_regular_price":70,"size":"169","final_price":70,"special_price":null,"price":70,"minimal_price":70,"name":"Teton Pullover Hoodie-M-Purple","id":75,"category_ids":["15"],"sku":"MH02-M-Purple","max_regular_price":70,"status":1},{"image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","small_image":"/m/h/mh02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"teton-pullover-hoodie-m-red","regular_price":70,"required_options":"0","msrp_display_actual_price_type":"0","max_price":70,"minimal_regular_price":70,"size":"169","final_price":70,"special_price":null,"price":70,"minimal_price":70,"name":"Teton Pullover Hoodie-M-Red","id":76,"category_ids":["15"],"sku":"MH02-M-Red","max_regular_price":70,"status":1},{"image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","small_image":"/m/h/mh02-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"teton-pullover-hoodie-l-black","regular_price":70,"required_options":"0","msrp_display_actual_price_type":"0","max_price":70,"minimal_regular_price":70,"size":"170","final_price":70,"special_price":null,"price":70,"minimal_price":70,"name":"Teton Pullover Hoodie-L-Black","id":77,"category_ids":["15"],"sku":"MH02-L-Black","max_regular_price":70,"status":1},{"image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","small_image":"/m/h/mh02-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"teton-pullover-hoodie-l-purple","regular_price":70,"required_options":"0","msrp_display_actual_price_type":"0","max_price":70,"minimal_regular_price":70,"size":"170","final_price":70,"special_price":null,"price":70,"minimal_price":70,"name":"Teton Pullover Hoodie-L-Purple","id":78,"category_ids":["15"],"sku":"MH02-L-Purple","max_regular_price":70,"status":1},{"image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","small_image":"/m/h/mh02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"teton-pullover-hoodie-l-red","regular_price":70,"required_options":"0","msrp_display_actual_price_type":"0","max_price":70,"minimal_regular_price":70,"size":"170","final_price":70,"special_price":null,"price":70,"minimal_price":70,"name":"Teton Pullover Hoodie-L-Red","id":79,"category_ids":["15"],"sku":"MH02-L-Red","max_regular_price":70,"status":1},{"image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","small_image":"/m/h/mh02-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"teton-pullover-hoodie-xl-black","regular_price":70,"required_options":"0","msrp_display_actual_price_type":"0","max_price":70,"minimal_regular_price":70,"size":"171","final_price":70,"special_price":null,"price":70,"minimal_price":70,"name":"Teton Pullover Hoodie-XL-Black","id":80,"category_ids":["15"],"sku":"MH02-XL-Black","max_regular_price":70,"status":1},{"image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","small_image":"/m/h/mh02-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"teton-pullover-hoodie-xl-purple","regular_price":70,"required_options":"0","msrp_display_actual_price_type":"0","max_price":70,"minimal_regular_price":70,"size":"171","final_price":70,"special_price":null,"price":70,"minimal_price":70,"name":"Teton Pullover Hoodie-XL-Purple","id":81,"category_ids":["15"],"sku":"MH02-XL-Purple","max_regular_price":70,"status":1},{"image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","small_image":"/m/h/mh02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"teton-pullover-hoodie-xl-red","regular_price":70,"required_options":"0","msrp_display_actual_price_type":"0","max_price":70,"minimal_regular_price":70,"size":"171","final_price":70,"special_price":null,"price":70,"minimal_price":70,"name":"Teton Pullover Hoodie-XL-Red","id":82,"category_ids":["15"],"sku":"MH02-XL-Red","max_regular_price":70,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":83,"id":5,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":83,"id":4,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,57,58],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-83.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"99","_score":1,"_source":{"id":99,"sku":"MH03","name":"Bruno Compete Hoodie","attribute_set_id":9,"price":63,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                                \n

                                • Full zip black hoodie pullover.
                                • Adjustable drawstring hood.
                                • Ribbed cuffs/waistband.
                                • Kangaroo pocket.
                                • Machine wash/dry.

                                ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"bruno-compete-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"1","sale":"0","pattern":"197","climate":[202,204,205,208,210],"slug":"bruno-compete-hoodie-99","links":{},"stock":{"item_id":99,"product_id":99,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","small_image":"/m/h/mh03-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bruno-compete-hoodie-xs-black","regular_price":63,"required_options":"0","msrp_display_actual_price_type":"0","max_price":63,"minimal_regular_price":63,"size":"167","final_price":63,"special_price":null,"price":63,"minimal_price":63,"name":"Bruno Compete Hoodie-XS-Black","id":84,"category_ids":["15","36","2"],"sku":"MH03-XS-Black","max_regular_price":63,"status":1},{"image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","small_image":"/m/h/mh03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bruno-compete-hoodie-xs-blue","regular_price":63,"required_options":"0","msrp_display_actual_price_type":"0","max_price":63,"minimal_regular_price":63,"size":"167","final_price":63,"special_price":null,"price":63,"minimal_price":63,"name":"Bruno Compete Hoodie-XS-Blue","id":85,"category_ids":["15","36","2"],"sku":"MH03-XS-Blue","max_regular_price":63,"status":1},{"image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","small_image":"/m/h/mh03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bruno-compete-hoodie-xs-green","regular_price":63,"required_options":"0","msrp_display_actual_price_type":"0","max_price":63,"minimal_regular_price":63,"size":"167","final_price":63,"special_price":null,"price":63,"minimal_price":63,"name":"Bruno Compete Hoodie-XS-Green","id":86,"category_ids":["15","36","2"],"sku":"MH03-XS-Green","max_regular_price":63,"status":1},{"image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","small_image":"/m/h/mh03-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bruno-compete-hoodie-s-black","regular_price":63,"required_options":"0","msrp_display_actual_price_type":"0","max_price":63,"minimal_regular_price":63,"size":"168","final_price":63,"special_price":null,"price":63,"minimal_price":63,"name":"Bruno Compete Hoodie-S-Black","id":87,"category_ids":["15","36","2"],"sku":"MH03-S-Black","max_regular_price":63,"status":1},{"image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","small_image":"/m/h/mh03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bruno-compete-hoodie-s-blue","regular_price":63,"required_options":"0","msrp_display_actual_price_type":"0","max_price":63,"minimal_regular_price":63,"size":"168","final_price":63,"special_price":null,"price":63,"minimal_price":63,"name":"Bruno Compete Hoodie-S-Blue","id":88,"category_ids":["15","36","2"],"sku":"MH03-S-Blue","max_regular_price":63,"status":1},{"image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","small_image":"/m/h/mh03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bruno-compete-hoodie-s-green","regular_price":63,"required_options":"0","msrp_display_actual_price_type":"0","max_price":63,"minimal_regular_price":63,"size":"168","final_price":63,"special_price":null,"price":63,"minimal_price":63,"name":"Bruno Compete Hoodie-S-Green","id":89,"category_ids":["15","36","2"],"sku":"MH03-S-Green","max_regular_price":63,"status":1},{"image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","small_image":"/m/h/mh03-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bruno-compete-hoodie-m-black","regular_price":63,"required_options":"0","msrp_display_actual_price_type":"0","max_price":63,"minimal_regular_price":63,"size":"169","final_price":63,"special_price":null,"price":63,"minimal_price":63,"name":"Bruno Compete Hoodie-M-Black","id":90,"category_ids":["15","36","2"],"sku":"MH03-M-Black","max_regular_price":63,"status":1},{"image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","small_image":"/m/h/mh03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bruno-compete-hoodie-m-blue","regular_price":63,"required_options":"0","msrp_display_actual_price_type":"0","max_price":63,"minimal_regular_price":63,"size":"169","final_price":63,"special_price":null,"price":63,"minimal_price":63,"name":"Bruno Compete Hoodie-M-Blue","id":91,"category_ids":["15","36","2"],"sku":"MH03-M-Blue","max_regular_price":63,"status":1},{"image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","small_image":"/m/h/mh03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bruno-compete-hoodie-m-green","regular_price":63,"required_options":"0","msrp_display_actual_price_type":"0","max_price":63,"minimal_regular_price":63,"size":"169","final_price":63,"special_price":null,"price":63,"minimal_price":63,"name":"Bruno Compete Hoodie-M-Green","id":92,"category_ids":["15","36","2"],"sku":"MH03-M-Green","max_regular_price":63,"status":1},{"image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","small_image":"/m/h/mh03-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bruno-compete-hoodie-l-black","regular_price":63,"required_options":"0","msrp_display_actual_price_type":"0","max_price":63,"minimal_regular_price":63,"size":"170","final_price":63,"special_price":null,"price":63,"minimal_price":63,"name":"Bruno Compete Hoodie-L-Black","id":93,"category_ids":["15","36","2"],"sku":"MH03-L-Black","max_regular_price":63,"status":1},{"image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","small_image":"/m/h/mh03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bruno-compete-hoodie-l-blue","regular_price":63,"required_options":"0","msrp_display_actual_price_type":"0","max_price":63,"minimal_regular_price":63,"size":"170","final_price":63,"special_price":null,"price":63,"minimal_price":63,"name":"Bruno Compete Hoodie-L-Blue","id":94,"category_ids":["15","36","2"],"sku":"MH03-L-Blue","max_regular_price":63,"status":1},{"image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","small_image":"/m/h/mh03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bruno-compete-hoodie-l-green","regular_price":63,"required_options":"0","msrp_display_actual_price_type":"0","max_price":63,"minimal_regular_price":63,"size":"170","final_price":63,"special_price":null,"price":63,"minimal_price":63,"name":"Bruno Compete Hoodie-L-Green","id":95,"category_ids":["15","36","2"],"sku":"MH03-L-Green","max_regular_price":63,"status":1},{"image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","small_image":"/m/h/mh03-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bruno-compete-hoodie-xl-black","regular_price":63,"required_options":"0","msrp_display_actual_price_type":"0","max_price":63,"minimal_regular_price":63,"size":"171","final_price":63,"special_price":null,"price":63,"minimal_price":63,"name":"Bruno Compete Hoodie-XL-Black","id":96,"category_ids":["15","36","2"],"sku":"MH03-XL-Black","max_regular_price":63,"status":1},{"image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","small_image":"/m/h/mh03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bruno-compete-hoodie-xl-blue","regular_price":63,"required_options":"0","msrp_display_actual_price_type":"0","max_price":63,"minimal_regular_price":63,"size":"171","final_price":63,"special_price":null,"price":63,"minimal_price":63,"name":"Bruno Compete Hoodie-XL-Blue","id":97,"category_ids":["15","36","2"],"sku":"MH03-XL-Blue","max_regular_price":63,"status":1},{"image":"/m/h/mh03-green_main.jpg","thumbnail":"/m/h/mh03-green_main.jpg","color":"53","small_image":"/m/h/mh03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bruno-compete-hoodie-xl-green","regular_price":63,"required_options":"0","msrp_display_actual_price_type":"0","max_price":63,"minimal_regular_price":63,"size":"171","final_price":63,"special_price":null,"price":63,"minimal_price":63,"name":"Bruno Compete Hoodie-XL-Green","id":98,"category_ids":["15","36","2"],"sku":"MH03-XL-Green","max_regular_price":63,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"}],"product_id":99,"id":7,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":99,"id":6,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,53],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-99.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"121","_score":1,"_source":{"id":121,"sku":"MH05-S-White","name":"Hollister Backyard Sweatshirt-S-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                                \n

                                • Cream crewneck sweatshirt with navy sleeves/trim.
                                • Relaxed fit.
                                • Ribbed cuffs and hem.
                                • Machine wash/dry.

                                ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hollister-backyard-sweatshirt-s-white-121","links":{},"stock":{"item_id":121,"product_id":121,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-s-white-121.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"150","_score":1,"_source":{"id":150,"sku":"MH07-XS-Green","name":"Hero Hoodie-XS-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                                Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                                \n

                                • Full-zip gray and black hoodie.
                                • Ribbed hem.
                                • Standard fit.
                                • Drawcord hood cinch.
                                • Water-resistant coating.

                                ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hero-hoodie-xs-green-150","links":{},"stock":{"item_id":150,"product_id":150,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xs-green-150.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"144","_score":1,"_source":{"id":144,"sku":"MH06-XL-Black","name":"Stark Fundamental Hoodie-XL-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                                \n

                                • Navy specked full zip hoodie.
                                • Ribbed cuffs, banded waist.
                                • Side pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"stark-fundamental-hoodie-xl-black-144","links":{},"stock":{"item_id":144,"product_id":144,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xl-black-144.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"136","_score":1,"_source":{"id":136,"sku":"MH06-S-Blue","name":"Stark Fundamental Hoodie-S-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                                \n

                                • Navy specked full zip hoodie.
                                • Ribbed cuffs, banded waist.
                                • Side pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stark-fundamental-hoodie-s-blue-136","links":{},"stock":{"item_id":136,"product_id":136,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-s-blue-136.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"130","_score":1,"_source":{"id":130,"sku":"MH05-XL-White","name":"Hollister Backyard Sweatshirt-XL-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                                \n

                                • Cream crewneck sweatshirt with navy sleeves/trim.
                                • Relaxed fit.
                                • Ribbed cuffs and hem.
                                • Machine wash/dry.

                                ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hollister-backyard-sweatshirt-xl-white-130","links":{},"stock":{"item_id":130,"product_id":130,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xl-white-130.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"149","_score":1,"_source":{"id":149,"sku":"MH07-XS-Gray","name":"Hero Hoodie-XS-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                                Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                                \n

                                • Full-zip gray and black hoodie.
                                • Ribbed hem.
                                • Standard fit.
                                • Drawcord hood cinch.
                                • Water-resistant coating.

                                ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hero-hoodie-xs-gray-149","links":{},"stock":{"item_id":149,"product_id":149,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xs-gray-149.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"146","_score":1,"_source":{"id":146,"sku":"MH06-XL-Purple","name":"Stark Fundamental Hoodie-XL-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                                \n

                                • Navy specked full zip hoodie.
                                • Ribbed cuffs, banded waist.
                                • Side pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"stark-fundamental-hoodie-xl-purple-146","links":{},"stock":{"item_id":146,"product_id":146,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xl-purple-146.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"133","_score":1,"_source":{"id":133,"sku":"MH06-XS-Blue","name":"Stark Fundamental Hoodie-XS-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                                \n

                                • Navy specked full zip hoodie.
                                • Ribbed cuffs, banded waist.
                                • Side pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"stark-fundamental-hoodie-xs-blue-133","links":{},"stock":{"item_id":133,"product_id":133,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xs-blue-133.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"137","_score":1,"_source":{"id":137,"sku":"MH06-S-Purple","name":"Stark Fundamental Hoodie-S-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                                \n

                                • Navy specked full zip hoodie.
                                • Ribbed cuffs, banded waist.
                                • Side pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stark-fundamental-hoodie-s-purple-137","links":{},"stock":{"item_id":137,"product_id":137,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-s-purple-137.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"142","_score":1,"_source":{"id":142,"sku":"MH06-L-Blue","name":"Stark Fundamental Hoodie-L-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                                \n

                                • Navy specked full zip hoodie.
                                • Ribbed cuffs, banded waist.
                                • Side pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stark-fundamental-hoodie-l-blue-142","links":{},"stock":{"item_id":142,"product_id":142,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-l-blue-142.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"143","_score":1,"_source":{"id":143,"sku":"MH06-L-Purple","name":"Stark Fundamental Hoodie-L-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                                \n

                                • Navy specked full zip hoodie.
                                • Ribbed cuffs, banded waist.
                                • Side pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stark-fundamental-hoodie-l-purple-143","links":{},"stock":{"item_id":143,"product_id":143,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-l-purple-143.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"148","_score":1,"_source":{"id":148,"sku":"MH07-XS-Black","name":"Hero Hoodie-XS-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                                Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                                \n

                                • Full-zip gray and black hoodie.
                                • Ribbed hem.
                                • Standard fit.
                                • Drawcord hood cinch.
                                • Water-resistant coating.

                                ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hero-hoodie-xs-black-148","links":{},"stock":{"item_id":148,"product_id":148,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xs-black-148.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"140","_score":1,"_source":{"id":140,"sku":"MH06-M-Purple","name":"Stark Fundamental Hoodie-M-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                                \n

                                • Navy specked full zip hoodie.
                                • Ribbed cuffs, banded waist.
                                • Side pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stark-fundamental-hoodie-m-purple-140","links":{},"stock":{"item_id":140,"product_id":140,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-m-purple-140.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"115","_score":1,"_source":{"id":115,"sku":"MH04","name":"Frankie Sweatshirt","attribute_set_id":9,"price":60,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                                \n

                                • Light green crewneck sweatshirt.
                                • Hand pockets.
                                • Relaxed fit.
                                • Machine wash/dry.

                                ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"frankie-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","pattern":"197","climate":[202,204,205,208,210],"slug":"frankie-sweatshirt-115","links":{},"stock":{"item_id":115,"product_id":115,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","small_image":"/m/h/mh04-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"frankie-sweatshirt-xs-green","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":60,"name":"Frankie Sweatshirt-XS-Green","id":100,"category_ids":["15","36","2"],"sku":"MH04-XS-Green","status":1},{"image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","small_image":"/m/h/mh04-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"frankie-sweatshirt-xs-white","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"167","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Frankie Sweatshirt-XS-White","id":101,"category_ids":["15","36","2"],"sku":"MH04-XS-White","max_regular_price":60,"status":1},{"image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","small_image":"/m/h/mh04-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"frankie-sweatshirt-xs-yellow","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"167","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Frankie Sweatshirt-XS-Yellow","id":102,"category_ids":["15","36","2"],"sku":"MH04-XS-Yellow","max_regular_price":60,"status":1},{"image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","small_image":"/m/h/mh04-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"frankie-sweatshirt-s-green","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"168","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Frankie Sweatshirt-S-Green","id":103,"category_ids":["15","36","2"],"sku":"MH04-S-Green","max_regular_price":60,"status":1},{"image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","small_image":"/m/h/mh04-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"frankie-sweatshirt-s-white","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"168","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Frankie Sweatshirt-S-White","id":104,"category_ids":["15","36","2"],"sku":"MH04-S-White","max_regular_price":60,"status":1},{"image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","small_image":"/m/h/mh04-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"frankie-sweatshirt-s-yellow","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"168","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Frankie Sweatshirt-S-Yellow","id":105,"category_ids":["15","36","2"],"sku":"MH04-S-Yellow","max_regular_price":60,"status":1},{"image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","small_image":"/m/h/mh04-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"frankie-sweatshirt-m-green","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"169","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Frankie Sweatshirt-M-Green","id":106,"category_ids":["15","36","2"],"sku":"MH04-M-Green","max_regular_price":60,"status":1},{"image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","small_image":"/m/h/mh04-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"frankie-sweatshirt-m-white","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"169","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Frankie Sweatshirt-M-White","id":107,"category_ids":["15","36","2"],"sku":"MH04-M-White","max_regular_price":60,"status":1},{"image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","small_image":"/m/h/mh04-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"frankie-sweatshirt-m-yellow","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"169","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Frankie Sweatshirt-M-Yellow","id":108,"category_ids":["15","36","2"],"sku":"MH04-M-Yellow","max_regular_price":60,"status":1},{"image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","small_image":"/m/h/mh04-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"frankie-sweatshirt-l-green","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"170","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Frankie Sweatshirt-L-Green","id":109,"category_ids":["15","36","2"],"sku":"MH04-L-Green","max_regular_price":60,"status":1},{"image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","small_image":"/m/h/mh04-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"frankie-sweatshirt-l-white","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"170","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Frankie Sweatshirt-L-White","id":110,"category_ids":["15","36","2"],"sku":"MH04-L-White","max_regular_price":60,"status":1},{"image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","small_image":"/m/h/mh04-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"frankie-sweatshirt-l-yellow","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"170","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Frankie Sweatshirt-L-Yellow","id":111,"category_ids":["15","36","2"],"sku":"MH04-L-Yellow","max_regular_price":60,"status":1},{"image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","small_image":"/m/h/mh04-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"frankie-sweatshirt-xl-green","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"171","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Frankie Sweatshirt-XL-Green","id":112,"category_ids":["15","36","2"],"sku":"MH04-XL-Green","max_regular_price":60,"status":1},{"image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","small_image":"/m/h/mh04-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"frankie-sweatshirt-xl-white","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"171","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Frankie Sweatshirt-XL-White","id":113,"category_ids":["15","36","2"],"sku":"MH04-XL-White","max_regular_price":60,"status":1},{"image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","small_image":"/m/h/mh04-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"frankie-sweatshirt-xl-yellow","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"171","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Frankie Sweatshirt-XL-Yellow","id":114,"category_ids":["15","36","2"],"sku":"MH04-XL-Yellow","max_regular_price":60,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":53,"label":"Green"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":115,"id":9,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":115,"id":8,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[53,59,60],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-115.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"147","_score":1,"_source":{"id":147,"sku":"MH06","name":"Stark Fundamental Hoodie","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                                \n

                                • Navy specked full zip hoodie.
                                • Ribbed cuffs, banded waist.
                                • Side pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"stark-fundamental-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,38,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"197","climate":[202,204,205,208],"slug":"stark-fundamental-hoodie-147","links":{},"stock":{"item_id":147,"product_id":147,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","small_image":"/m/h/mh06-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"stark-fundamental-hoodie-xs-black","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"167","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Stark Fundamental Hoodie-XS-Black","id":132,"category_ids":["15"],"sku":"MH06-XS-Black","max_regular_price":42,"status":1},{"image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","small_image":"/m/h/mh06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"stark-fundamental-hoodie-xs-blue","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"167","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Stark Fundamental Hoodie-XS-Blue","id":133,"category_ids":["15"],"sku":"MH06-XS-Blue","max_regular_price":42,"status":1},{"image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","small_image":"/m/h/mh06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"stark-fundamental-hoodie-xs-purple","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"167","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Stark Fundamental Hoodie-XS-Purple","id":134,"category_ids":["15"],"sku":"MH06-XS-Purple","max_regular_price":42,"status":1},{"image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","small_image":"/m/h/mh06-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"stark-fundamental-hoodie-s-black","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"168","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Stark Fundamental Hoodie-S-Black","id":135,"category_ids":["15"],"sku":"MH06-S-Black","max_regular_price":42,"status":1},{"image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","small_image":"/m/h/mh06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"stark-fundamental-hoodie-s-blue","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"168","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Stark Fundamental Hoodie-S-Blue","id":136,"category_ids":["15"],"sku":"MH06-S-Blue","max_regular_price":42,"status":1},{"image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","small_image":"/m/h/mh06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"stark-fundamental-hoodie-s-purple","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"168","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Stark Fundamental Hoodie-S-Purple","id":137,"category_ids":["15"],"sku":"MH06-S-Purple","max_regular_price":42,"status":1},{"image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","small_image":"/m/h/mh06-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"stark-fundamental-hoodie-m-black","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"169","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Stark Fundamental Hoodie-M-Black","id":138,"category_ids":["15"],"sku":"MH06-M-Black","max_regular_price":42,"status":1},{"image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","small_image":"/m/h/mh06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"stark-fundamental-hoodie-m-blue","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"169","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Stark Fundamental Hoodie-M-Blue","id":139,"category_ids":["15"],"sku":"MH06-M-Blue","max_regular_price":42,"status":1},{"image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","small_image":"/m/h/mh06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"stark-fundamental-hoodie-m-purple","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"169","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Stark Fundamental Hoodie-M-Purple","id":140,"category_ids":["15"],"sku":"MH06-M-Purple","max_regular_price":42,"status":1},{"image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","small_image":"/m/h/mh06-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"stark-fundamental-hoodie-l-black","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"170","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Stark Fundamental Hoodie-L-Black","id":141,"category_ids":["15"],"sku":"MH06-L-Black","max_regular_price":42,"status":1},{"image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","small_image":"/m/h/mh06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"stark-fundamental-hoodie-l-blue","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"170","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Stark Fundamental Hoodie-L-Blue","id":142,"category_ids":["15"],"sku":"MH06-L-Blue","max_regular_price":42,"status":1},{"image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","small_image":"/m/h/mh06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"stark-fundamental-hoodie-l-purple","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"170","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Stark Fundamental Hoodie-L-Purple","id":143,"category_ids":["15"],"sku":"MH06-L-Purple","max_regular_price":42,"status":1},{"image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","small_image":"/m/h/mh06-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"stark-fundamental-hoodie-xl-black","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"171","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Stark Fundamental Hoodie-XL-Black","id":144,"category_ids":["15"],"sku":"MH06-XL-Black","max_regular_price":42,"status":1},{"image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","small_image":"/m/h/mh06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"stark-fundamental-hoodie-xl-blue","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"171","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Stark Fundamental Hoodie-XL-Blue","id":145,"category_ids":["15"],"sku":"MH06-XL-Blue","max_regular_price":42,"status":1},{"image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","small_image":"/m/h/mh06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"stark-fundamental-hoodie-xl-purple","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"171","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Stark Fundamental Hoodie-XL-Purple","id":146,"category_ids":["15"],"sku":"MH06-XL-Purple","max_regular_price":42,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":147,"id":13,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":147,"id":12,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-147.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"131","_score":1,"_source":{"id":131,"sku":"MH05","name":"Hollister Backyard Sweatshirt","attribute_set_id":9,"price":52,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                                \n

                                • Cream crewneck sweatshirt with navy sleeves/trim.
                                • Relaxed fit.
                                • Ribbed cuffs and hem.
                                • Machine wash/dry.

                                ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hollister-backyard-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,38,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"195","climate":"204","slug":"hollister-backyard-sweatshirt-131","links":{},"stock":{"item_id":131,"product_id":131,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","small_image":"/m/h/mh05-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hollister-backyard-sweatshirt-xs-green","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"167","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Hollister Backyard Sweatshirt-XS-Green","id":116,"category_ids":["15"],"sku":"MH05-XS-Green","max_regular_price":52,"status":1},{"image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","small_image":"/m/h/mh05-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hollister-backyard-sweatshirt-xs-red","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"167","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Hollister Backyard Sweatshirt-XS-Red","id":117,"category_ids":["15"],"sku":"MH05-XS-Red","max_regular_price":52,"status":1},{"image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","small_image":"/m/h/mh05-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hollister-backyard-sweatshirt-xs-white","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"167","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Hollister Backyard Sweatshirt-XS-White","id":118,"category_ids":["15"],"sku":"MH05-XS-White","max_regular_price":52,"status":1},{"image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","small_image":"/m/h/mh05-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hollister-backyard-sweatshirt-s-green","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"168","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Hollister Backyard Sweatshirt-S-Green","id":119,"category_ids":["15"],"sku":"MH05-S-Green","max_regular_price":52,"status":1},{"image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","small_image":"/m/h/mh05-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hollister-backyard-sweatshirt-s-red","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"168","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Hollister Backyard Sweatshirt-S-Red","id":120,"category_ids":["15"],"sku":"MH05-S-Red","max_regular_price":52,"status":1},{"image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","small_image":"/m/h/mh05-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hollister-backyard-sweatshirt-s-white","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"168","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Hollister Backyard Sweatshirt-S-White","id":121,"category_ids":["15"],"sku":"MH05-S-White","max_regular_price":52,"status":1},{"image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","small_image":"/m/h/mh05-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hollister-backyard-sweatshirt-m-green","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"169","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Hollister Backyard Sweatshirt-M-Green","id":122,"category_ids":["15"],"sku":"MH05-M-Green","max_regular_price":52,"status":1},{"image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","small_image":"/m/h/mh05-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hollister-backyard-sweatshirt-m-red","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"169","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Hollister Backyard Sweatshirt-M-Red","id":123,"category_ids":["15"],"sku":"MH05-M-Red","max_regular_price":52,"status":1},{"image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","small_image":"/m/h/mh05-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hollister-backyard-sweatshirt-m-white","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"169","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Hollister Backyard Sweatshirt-M-White","id":124,"category_ids":["15"],"sku":"MH05-M-White","max_regular_price":52,"status":1},{"image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","small_image":"/m/h/mh05-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hollister-backyard-sweatshirt-l-green","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"170","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Hollister Backyard Sweatshirt-L-Green","id":125,"category_ids":["15"],"sku":"MH05-L-Green","max_regular_price":52,"status":1},{"image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","small_image":"/m/h/mh05-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hollister-backyard-sweatshirt-l-red","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"170","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Hollister Backyard Sweatshirt-L-Red","id":126,"category_ids":["15"],"sku":"MH05-L-Red","max_regular_price":52,"status":1},{"image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","small_image":"/m/h/mh05-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hollister-backyard-sweatshirt-l-white","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"170","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Hollister Backyard Sweatshirt-L-White","id":127,"category_ids":["15"],"sku":"MH05-L-White","max_regular_price":52,"status":1},{"image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","small_image":"/m/h/mh05-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hollister-backyard-sweatshirt-xl-green","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"171","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Hollister Backyard Sweatshirt-XL-Green","id":128,"category_ids":["15"],"sku":"MH05-XL-Green","max_regular_price":52,"status":1},{"image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","small_image":"/m/h/mh05-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hollister-backyard-sweatshirt-xl-red","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"171","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Hollister Backyard Sweatshirt-XL-Red","id":129,"category_ids":["15"],"sku":"MH05-XL-Red","max_regular_price":52,"status":1},{"image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","small_image":"/m/h/mh05-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hollister-backyard-sweatshirt-xl-white","regular_price":52,"required_options":"0","msrp_display_actual_price_type":"0","max_price":52,"minimal_regular_price":52,"size":"171","final_price":52,"special_price":null,"price":52,"minimal_price":52,"name":"Hollister Backyard Sweatshirt-XL-White","id":130,"category_ids":["15"],"sku":"MH05-XL-White","max_regular_price":52,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":131,"id":11,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":131,"id":10,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[53,58,59],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-131.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"57","_score":1,"_source":{"id":57,"sku":"MH01-S-Orange","name":"Chaz Kangeroo Hoodie-S-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                                \n

                                • Two-tone gray heather hoodie.
                                • Drawstring-adjustable hood.
                                • Machine wash/dry.

                                ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chaz-kangeroo-hoodie-s-orange-57","links":{},"stock":{"item_id":57,"product_id":57,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-s-orange-57.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"65","_score":1,"_source":{"id":65,"sku":"MH01-XL-Gray","name":"Chaz Kangeroo Hoodie-XL-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                                \n

                                • Two-tone gray heather hoodie.
                                • Drawstring-adjustable hood.
                                • Machine wash/dry.

                                ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chaz-kangeroo-hoodie-xl-gray-65","links":{},"stock":{"item_id":65,"product_id":65,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xl-gray-65.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"51","_score":1,"_source":{"id":51,"sku":"240-LV09","name":"Luma Yoga For Life","attribute_set_id":14,"price":10,"status":1,"visibility":4,"type_id":"downloadable","created_at":"2017-11-06 12:16:34","updated_at":"2019-05-16 19:49:54","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":10,"max_price":10,"max_regular_price":10,"minimal_regular_price":10,"special_price":null,"minimal_price":10,"regular_price":10,"description":"
                                • Increase strength + flexibility + metabolism
                                • Burn calories + feel great
                                • Gain energy + youthfulness + mental wellness

                                Download description

                                Tone up mind and bodyPro Yoga Instructor and Master Practitioner Marie Peale helps tone and sculpt your physique with her invigorating yet gentle approach.

                                You'll learn to use yoga to relax, control stress and increase your calorie-burning capacity, all while exploring traditional and new yoga poses that lengthen and strengthen your full muscular structure.

                                • Easy download
                                • Audio options: Music and instruction or instruction only
                                • Heart rate techniques explained
                                • Breathing techniques explained
                                • Move through exercises at your own pace

                                Two 25-minute workout episodes and one 40-minute workout episode with warm-up and cool down:

                                Episode 1Creative, fun session geared toward opening your lungs. Combines stretching and breathing with a focus on hips and shoulders.

                                Episode 2Ramp up the tempo and energy with calorie-burning flows. A stimulating workout introducing the body-sculpting power of yoga.

                                Episode 3Push your fitness reach and stamina with an intense series of standing and floor exercises and poses. End this extra-length session with a meditative cool down.

                                instructor bio

                                About MarieMarie is a trained martial artist and dancer with a BS in Biological Engineering and over 10 years as a certified yoga teacher. Marie has studied yoga in England, India and, in 2009, at the Ashraqat Ashram Yoga Farm in the United States. She has been teaching full time since then. Her focus on strength and wellness combines a deep knowledge of human biology and motivation guided by unconditional love for her audience.

                                ","short_description":"

                                \r\nLuma founder Erin Renny on yoga and longevity: \"I won't promise you'll live longer with yoga. No one can promise that. But your life will be healthier, less stressful, and more physically in tune when you focus on connecting your mind and body or a regular basis. Yoga is my favorite way to express this connection. I want to share the secrets of lifelong yoga with anyone willing to breathe and learn with me.\"\r\n

                                ","meta_description":"You'll learn to use yoga to relax, control stress and increase your calorie-burning capacity, all while exploring traditional and new yoga poses that lengthen and strengthen your full muscular structure.","image":"/l/t/lt06.jpg","small_image":"/l/t/lt06.jpg","thumbnail":"/l/t/lt06.jpg","category_ids":[9,10],"options_container":"container2","required_options":"0","has_options":"0","url_key":"luma-yoga-for-life","msrp_display_actual_price_type":"0","links_purchased_separately":"0","samples_title":"Trailers","links_title":"Downloads","gift_message_available":"0","tax_class_id":"2","activity":[8,16],"format":"102","slug":"luma-yoga-for-life-51","links":{},"stock":{"item_id":51,"product_id":51,"stock_id":1,"qty":10,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":false,"manage_stock":false,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/l/t/lt06.jpg","pos":1,"typ":"image","lab":"Image"},{"vid":{"meta":"","title":"Yoga For Life","type":"vimeo","url":"https://vimeo.com/233305101","desc":"Creative, fun session geared toward opening your lungs. Combines stretching and breathing with a focus on hips and shoulders.","video_id":"233305101"},"image":"/6/5/654598283_640.jpg","pos":2,"typ":"external-video","lab":null},{"vid":{"meta":"","title":"Vue Storefront - Open Source PWA eCommerce Solution Demo","type":"youtube","url":"https://youtu.be/L4K-mq9JoaQ","desc":"Vue Storefront is a progressive web application for eCommerce based on Vuejs.\r\n\r\nhttps://vuestorefront.io/\r\n\r\nWe created Vue Storefront to improve the shopping experience by making the storefront ultra fast, off-line ready and impervious to traffic overloads.\r\n\r\nVue Storefront is 100% open source and distributed under the MIT license. You can take the source code from GitHub, customize your template and use it for your eCommerce as a PWA.\r\n\r\nPlatforms we work with right now: Magento ( Magento2 and Magento 1 ), PrestaShop. \r\nYou can easily connect our Storefront to: hybris, spryker, shopify, demandware, sylius.\r\n\r\n--\r\nâ–º Subscribe to Divante Channel Here: \r\nhttps://www.youtube.com/channel/UCXELY-WzF41oJlM-8qt5z8g?sub_confirmation=1 \r\n\r\n--\r\nAs one of the biggest eCommerce Software Houses in Europe, headquartered in Poland and employing about 150 people, our core competencies are built around Magento. This is the leading eCommerce platform for medium to large companies. We have been operating since 2008 and we are part of the OEX Group which is listed on the Warsaw Stock Exchange. Our annual revenue has been growing at a minimum of about 30% y/y.\r\n\r\n----\r\nFollow Divante Online Here:\r\n\r\n\r\nFacebook: http://facebook.com/Divante.co\r\nWebsite: http://divante.co\r\nTwitter: http://twitter.com/DivanteLTD\r\nCEO Twitter: http://twitter.com/tomik99\r\nGitHub: https://github.com/DivanteLtd\r\nBehance: http://behance.net/behancead24\r\nLinkedIn: https://www.linkedin.com/company-beta/600853\r\n\r\n-","video_id":"L4K-mq9JoaQ"},"image":"/h/q/hqdefault_1.jpg","pos":5,"typ":"external-video","lab":null}],"category":[{"path":"training/training-9","category_id":9,"name":"Training","slug":"training-9"},{"path":"training/training-video/video-download-10","category_id":10,"name":"Video Download","slug":"video-download-10"}],"url_path":"training/training-9/luma-yoga-for-life-51.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"69","_score":1,"_source":{"id":69,"sku":"MH02-XS-Purple","name":"Teton Pullover Hoodie-XS-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                                \n

                                • Black pullover hoodie.
                                • Soft, brushed interior.
                                • Front hand pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"teton-pullover-hoodie-xs-purple-69","links":{},"stock":{"item_id":69,"product_id":69,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xs-purple-69.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"52","_score":1,"_source":{"id":52,"sku":"MH01-XS-Black","name":"Chaz Kangeroo Hoodie-XS-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                                \n

                                • Two-tone gray heather hoodie.
                                • Drawstring-adjustable hood.
                                • Machine wash/dry.

                                ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chaz-kangeroo-hoodie-xs-black-52","links":{},"stock":{"item_id":52,"product_id":52,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xs-black-52.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"61","_score":1,"_source":{"id":61,"sku":"MH01-L-Black","name":"Chaz Kangeroo Hoodie-L-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                                \n

                                • Two-tone gray heather hoodie.
                                • Drawstring-adjustable hood.
                                • Machine wash/dry.

                                ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chaz-kangeroo-hoodie-l-black-61","links":{},"stock":{"item_id":61,"product_id":61,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-l-black-61.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"66","_score":1,"_source":{"id":66,"sku":"MH01-XL-Orange","name":"Chaz Kangeroo Hoodie-XL-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                                \n

                                • Two-tone gray heather hoodie.
                                • Drawstring-adjustable hood.
                                • Machine wash/dry.

                                ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chaz-kangeroo-hoodie-xl-orange-66","links":{},"stock":{"item_id":66,"product_id":66,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xl-orange-66.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"62","_score":1,"_source":{"id":62,"sku":"MH01-L-Gray","name":"Chaz Kangeroo Hoodie-L-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                                \n

                                • Two-tone gray heather hoodie.
                                • Drawstring-adjustable hood.
                                • Machine wash/dry.

                                ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chaz-kangeroo-hoodie-l-gray-62","links":{},"stock":{"item_id":62,"product_id":62,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-l-gray-62.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"54","_score":1,"_source":{"id":54,"sku":"MH01-XS-Orange","name":"Chaz Kangeroo Hoodie-XS-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                                \n

                                • Two-tone gray heather hoodie.
                                • Drawstring-adjustable hood.
                                • Machine wash/dry.

                                ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chaz-kangeroo-hoodie-xs-orange-54","links":{},"stock":{"item_id":54,"product_id":54,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xs-orange-54.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"78","_score":1,"_source":{"id":78,"sku":"MH02-L-Purple","name":"Teton Pullover Hoodie-L-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                                \n

                                • Black pullover hoodie.
                                • Soft, brushed interior.
                                • Front hand pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"teton-pullover-hoodie-l-purple-78","links":{},"stock":{"item_id":78,"product_id":78,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-l-purple-78.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"74","_score":1,"_source":{"id":74,"sku":"MH02-M-Black","name":"Teton Pullover Hoodie-M-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                                \n

                                • Black pullover hoodie.
                                • Soft, brushed interior.
                                • Front hand pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"teton-pullover-hoodie-m-black-74","links":{},"stock":{"item_id":74,"product_id":74,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-m-black-74.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"76","_score":1,"_source":{"id":76,"sku":"MH02-M-Red","name":"Teton Pullover Hoodie-M-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                                \n

                                • Black pullover hoodie.
                                • Soft, brushed interior.
                                • Front hand pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"teton-pullover-hoodie-m-red-76","links":{},"stock":{"item_id":76,"product_id":76,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-m-red-76.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"64","_score":1,"_source":{"id":64,"sku":"MH01-XL-Black","name":"Chaz Kangeroo Hoodie-XL-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                                \n

                                • Two-tone gray heather hoodie.
                                • Drawstring-adjustable hood.
                                • Machine wash/dry.

                                ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chaz-kangeroo-hoodie-xl-black-64","links":{},"stock":{"item_id":64,"product_id":64,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xl-black-64.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"81","_score":1,"_source":{"id":81,"sku":"MH02-XL-Purple","name":"Teton Pullover Hoodie-XL-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                                \n

                                • Black pullover hoodie.
                                • Soft, brushed interior.
                                • Front hand pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"teton-pullover-hoodie-xl-purple-81","links":{},"stock":{"item_id":81,"product_id":81,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xl-purple-81.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"70","_score":1,"_source":{"id":70,"sku":"MH02-XS-Red","name":"Teton Pullover Hoodie-XS-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                                \n

                                • Black pullover hoodie.
                                • Soft, brushed interior.
                                • Front hand pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"teton-pullover-hoodie-xs-red-70","links":{},"stock":{"item_id":70,"product_id":70,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xs-red-70.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"68","_score":1,"_source":{"id":68,"sku":"MH02-XS-Black","name":"Teton Pullover Hoodie-XS-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                                \n

                                • Black pullover hoodie.
                                • Soft, brushed interior.
                                • Front hand pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"teton-pullover-hoodie-xs-black-68","links":{},"stock":{"item_id":68,"product_id":68,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-xs-black-68.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"63","_score":1,"_source":{"id":63,"sku":"MH01-L-Orange","name":"Chaz Kangeroo Hoodie-L-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                                \n

                                • Two-tone gray heather hoodie.
                                • Drawstring-adjustable hood.
                                • Machine wash/dry.

                                ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chaz-kangeroo-hoodie-l-orange-63","links":{},"stock":{"item_id":63,"product_id":63,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-l-orange-63.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"91","_score":1,"_source":{"id":91,"sku":"MH03-M-Blue","name":"Bruno Compete Hoodie-M-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                                \n

                                • Full zip black hoodie pullover.
                                • Adjustable drawstring hood.
                                • Ribbed cuffs/waistband.
                                • Kangaroo pocket.
                                • Machine wash/dry.

                                ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"bruno-compete-hoodie-m-blue-91","links":{},"stock":{"item_id":91,"product_id":91,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-m-blue-91.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"85","_score":1,"_source":{"id":85,"sku":"MH03-XS-Blue","name":"Bruno Compete Hoodie-XS-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                                \n

                                • Full zip black hoodie pullover.
                                • Adjustable drawstring hood.
                                • Ribbed cuffs/waistband.
                                • Kangaroo pocket.
                                • Machine wash/dry.

                                ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bruno-compete-hoodie-xs-blue-85","links":{},"stock":{"item_id":85,"product_id":85,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xs-blue-85.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"84","_score":1,"_source":{"id":84,"sku":"MH03-XS-Black","name":"Bruno Compete Hoodie-XS-Black","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                                \n

                                • Full zip black hoodie pullover.
                                • Adjustable drawstring hood.
                                • Ribbed cuffs/waistband.
                                • Kangaroo pocket.
                                • Machine wash/dry.

                                ","image":"/m/h/mh03-black_main.jpg","small_image":"/m/h/mh03-black_main.jpg","thumbnail":"/m/h/mh03-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"bruno-compete-hoodie-xs-black-84","links":{},"stock":{"item_id":84,"product_id":84,"stock_id":1,"qty":42,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh03-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh03-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh03-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xs-black-84.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"77","_score":1,"_source":{"id":77,"sku":"MH02-L-Black","name":"Teton Pullover Hoodie-L-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                                \n

                                • Black pullover hoodie.
                                • Soft, brushed interior.
                                • Front hand pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"teton-pullover-hoodie-l-black-77","links":{},"stock":{"item_id":77,"product_id":77,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-l-black-77.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"97","_score":1,"_source":{"id":97,"sku":"MH03-XL-Blue","name":"Bruno Compete Hoodie-XL-Blue","attribute_set_id":9,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                                Stay comfortable and stay in the race no matter what the weather's up to. The Bruno Compete Hoodie's water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

                                \n

                                • Full zip black hoodie pullover.
                                • Adjustable drawstring hood.
                                • Ribbed cuffs/waistband.
                                • Kangaroo pocket.
                                • Machine wash/dry.

                                ","image":"/m/h/mh03-blue_main.jpg","small_image":"/m/h/mh03-blue_main.jpg","thumbnail":"/m/h/mh03-blue_main.jpg","color":"50","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bruno-compete-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"bruno-compete-hoodie-xl-blue-97","links":{},"stock":{"item_id":97,"product_id":97,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/bruno-compete-hoodie-xl-blue-97.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"73","_score":1,"_source":{"id":73,"sku":"MH02-S-Red","name":"Teton Pullover Hoodie-S-Red","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                                This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                                \n

                                • Black pullover hoodie.
                                • Soft, brushed interior.
                                • Front hand pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh02-red_main.jpg","small_image":"/m/h/mh02-red_main.jpg","thumbnail":"/m/h/mh02-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"teton-pullover-hoodie-s-red-73","links":{},"stock":{"item_id":73,"product_id":73,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-s-red-73.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"102","_score":1,"_source":{"id":102,"sku":"MH04-XS-Yellow","name":"Frankie Sweatshirt-XS-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                                \n

                                • Light green crewneck sweatshirt.
                                • Hand pockets.
                                • Relaxed fit.
                                • Machine wash/dry.

                                ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"frankie-sweatshirt-xs-yellow-102","links":{},"stock":{"item_id":102,"product_id":102,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xs-yellow-102.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"119","_score":1,"_source":{"id":119,"sku":"MH05-S-Green","name":"Hollister Backyard Sweatshirt-S-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                                \n

                                • Cream crewneck sweatshirt with navy sleeves/trim.
                                • Relaxed fit.
                                • Ribbed cuffs and hem.
                                • Machine wash/dry.

                                ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hollister-backyard-sweatshirt-s-green-119","links":{},"stock":{"item_id":119,"product_id":119,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-s-green-119.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"104","_score":1,"_source":{"id":104,"sku":"MH04-S-White","name":"Frankie Sweatshirt-S-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                                \n

                                • Light green crewneck sweatshirt.
                                • Hand pockets.
                                • Relaxed fit.
                                • Machine wash/dry.

                                ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"frankie-sweatshirt-s-white-104","links":{},"stock":{"item_id":104,"product_id":104,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-s-white-104.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"108","_score":1,"_source":{"id":108,"sku":"MH04-M-Yellow","name":"Frankie Sweatshirt-M-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                                \n

                                • Light green crewneck sweatshirt.
                                • Hand pockets.
                                • Relaxed fit.
                                • Machine wash/dry.

                                ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"frankie-sweatshirt-m-yellow-108","links":{},"stock":{"item_id":108,"product_id":108,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-m-yellow-108.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"101","_score":1,"_source":{"id":101,"sku":"MH04-XS-White","name":"Frankie Sweatshirt-XS-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                                \n

                                • Light green crewneck sweatshirt.
                                • Hand pockets.
                                • Relaxed fit.
                                • Machine wash/dry.

                                ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"frankie-sweatshirt-xs-white-101","links":{},"stock":{"item_id":101,"product_id":101,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xs-white-101.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"111","_score":1,"_source":{"id":111,"sku":"MH04-L-Yellow","name":"Frankie Sweatshirt-L-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                                \n

                                • Light green crewneck sweatshirt.
                                • Hand pockets.
                                • Relaxed fit.
                                • Machine wash/dry.

                                ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"frankie-sweatshirt-l-yellow-111","links":{},"stock":{"item_id":111,"product_id":111,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-l-yellow-111.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"125","_score":1,"_source":{"id":125,"sku":"MH05-L-Green","name":"Hollister Backyard Sweatshirt-L-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                                \n

                                • Cream crewneck sweatshirt with navy sleeves/trim.
                                • Relaxed fit.
                                • Ribbed cuffs and hem.
                                • Machine wash/dry.

                                ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hollister-backyard-sweatshirt-l-green-125","links":{},"stock":{"item_id":125,"product_id":125,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-l-green-125.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"127","_score":1,"_source":{"id":127,"sku":"MH05-L-White","name":"Hollister Backyard Sweatshirt-L-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                                \n

                                • Cream crewneck sweatshirt with navy sleeves/trim.
                                • Relaxed fit.
                                • Ribbed cuffs and hem.
                                • Machine wash/dry.

                                ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hollister-backyard-sweatshirt-l-white-127","links":{},"stock":{"item_id":127,"product_id":127,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-l-white-127.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"112","_score":1,"_source":{"id":112,"sku":"MH04-XL-Green","name":"Frankie Sweatshirt-XL-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                                \n

                                • Light green crewneck sweatshirt.
                                • Hand pockets.
                                • Relaxed fit.
                                • Machine wash/dry.

                                ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"frankie-sweatshirt-xl-green-112","links":{},"stock":{"item_id":112,"product_id":112,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xl-green-112.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"109","_score":1,"_source":{"id":109,"sku":"MH04-L-Green","name":"Frankie Sweatshirt-L-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                                \n

                                • Light green crewneck sweatshirt.
                                • Hand pockets.
                                • Relaxed fit.
                                • Machine wash/dry.

                                ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"frankie-sweatshirt-l-green-109","links":{},"stock":{"item_id":109,"product_id":109,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-l-green-109.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"110","_score":1,"_source":{"id":110,"sku":"MH04-L-White","name":"Frankie Sweatshirt-L-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                                \n

                                • Light green crewneck sweatshirt.
                                • Hand pockets.
                                • Relaxed fit.
                                • Machine wash/dry.

                                ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"frankie-sweatshirt-l-white-110","links":{},"stock":{"item_id":110,"product_id":110,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-l-white-110.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"105","_score":1,"_source":{"id":105,"sku":"MH04-S-Yellow","name":"Frankie Sweatshirt-S-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                                \n

                                • Light green crewneck sweatshirt.
                                • Hand pockets.
                                • Relaxed fit.
                                • Machine wash/dry.

                                ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"frankie-sweatshirt-s-yellow-105","links":{},"stock":{"item_id":105,"product_id":105,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-s-yellow-105.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"120","_score":1,"_source":{"id":120,"sku":"MH05-S-Red","name":"Hollister Backyard Sweatshirt-S-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                                \n

                                • Cream crewneck sweatshirt with navy sleeves/trim.
                                • Relaxed fit.
                                • Ribbed cuffs and hem.
                                • Machine wash/dry.

                                ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hollister-backyard-sweatshirt-s-red-120","links":{},"stock":{"item_id":120,"product_id":120,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-s-red-120.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"107","_score":1,"_source":{"id":107,"sku":"MH04-M-White","name":"Frankie Sweatshirt-M-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                                \n

                                • Light green crewneck sweatshirt.
                                • Hand pockets.
                                • Relaxed fit.
                                • Machine wash/dry.

                                ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"frankie-sweatshirt-m-white-107","links":{},"stock":{"item_id":107,"product_id":107,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-m-white-107.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"122","_score":1,"_source":{"id":122,"sku":"MH05-M-Green","name":"Hollister Backyard Sweatshirt-M-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                                \n

                                • Cream crewneck sweatshirt with navy sleeves/trim.
                                • Relaxed fit.
                                • Ribbed cuffs and hem.
                                • Machine wash/dry.

                                ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hollister-backyard-sweatshirt-m-green-122","links":{},"stock":{"item_id":122,"product_id":122,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-m-green-122.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"116","_score":1,"_source":{"id":116,"sku":"MH05-XS-Green","name":"Hollister Backyard Sweatshirt-XS-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                                \n

                                • Cream crewneck sweatshirt with navy sleeves/trim.
                                • Relaxed fit.
                                • Ribbed cuffs and hem.
                                • Machine wash/dry.

                                ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hollister-backyard-sweatshirt-xs-green-116","links":{},"stock":{"item_id":116,"product_id":116,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xs-green-116.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"103","_score":1,"_source":{"id":103,"sku":"MH04-S-Green","name":"Frankie Sweatshirt-S-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                                \n

                                • Light green crewneck sweatshirt.
                                • Hand pockets.
                                • Relaxed fit.
                                • Machine wash/dry.

                                ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"frankie-sweatshirt-s-green-103","links":{},"stock":{"item_id":103,"product_id":103,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-s-green-103.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"114","_score":1,"_source":{"id":114,"sku":"MH04-XL-Yellow","name":"Frankie Sweatshirt-XL-Yellow","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                                \n

                                • Light green crewneck sweatshirt.
                                • Hand pockets.
                                • Relaxed fit.
                                • Machine wash/dry.

                                ","image":"/m/h/mh04-yellow_main.jpg","small_image":"/m/h/mh04-yellow_main.jpg","thumbnail":"/m/h/mh04-yellow_main.jpg","color":"60","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"frankie-sweatshirt-xl-yellow-114","links":{},"stock":{"item_id":114,"product_id":114,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh04-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xl-yellow-114.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"132","_score":1,"_source":{"id":132,"sku":"MH06-XS-Black","name":"Stark Fundamental Hoodie-XS-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                                \n

                                • Navy specked full zip hoodie.
                                • Ribbed cuffs, banded waist.
                                • Side pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"stark-fundamental-hoodie-xs-black-132","links":{},"stock":{"item_id":132,"product_id":132,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xs-black-132.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"135","_score":1,"_source":{"id":135,"sku":"MH06-S-Black","name":"Stark Fundamental Hoodie-S-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                                \n

                                • Navy specked full zip hoodie.
                                • Ribbed cuffs, banded waist.
                                • Side pockets.
                                • Machine wash/dry.

                                ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"stark-fundamental-hoodie-s-black-135","links":{},"stock":{"item_id":135,"product_id":135,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-s-black-135.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"5","_score":1,"_source":{"id":5,"sku":"24-MB06","name":"Rival Field Messenger","attribute_set_id":15,"price":2,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:23","updated_at":"2019-05-08 10:18:15","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":2,"max_price":2,"max_regular_price":2,"minimal_regular_price":2,"special_price":null,"minimal_price":2,"regular_price":2,"description":"

                                The Rival Field Messenger packs all your campus, studio or trail essentials inside a unique design of soft, textured leather - with loads of character to spare. Two exterior pockets keep all your smaller items handy, and the roomy interior offers even more space.

                                \r\n
                                  \r\n
                                • Leather construction.
                                • \r\n
                                • Adjustable fabric carry strap.
                                • \r\n
                                • Dimensions: 18\" x 10\" x 4\".
                                • \r\n
                                ","image":"/m/b/mb06-gray-0.jpg","small_image":"/m/b/mb06-gray-0.jpg","thumbnail":"/m/b/mb06-gray-0.jpg","color":"49","category_ids":[3,7,4,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"rival-field-messenger","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[22,23],"style_bags":[27,28,29],"material":[35,37,41],"strap_bags":[61,62,66,67],"features_bags":[73,75,78],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","slug":"rival-field-messenger-5","links":{},"stock":{"item_id":5,"product_id":5,"stock_id":1,"qty":22,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/b/mb06-gray-0.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"collections/collections-7","category_id":7,"name":"Collections","slug":"collections-7"},{"path":"gear/bags/bags-4","category_id":4,"name":"Bags","slug":"bags-4"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"}],"url_path":"gear/gear-3/rival-field-messenger-5.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"14","_score":1,"_source":{"id":14,"sku":"24-WB04","name":"Push It Messenger Bag - tier price","attribute_set_id":15,"price":45,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:26","updated_at":"2018-08-22 09:27:59","product_links":[],"tier_prices":[{"qty":1,"extension_attributes":{"website_id":0},"customer_group_id":1,"value":35}],"custom_attributes":null,"description":"

                                The name says so, but the Push It Messenger Bag is much more than a busy commuter's tote. It's a closet away from home when you're pedaling from class or work to gym and back or home again. It's the perfect size and shape for laptop, folded clothes, even extra shoes.

                                \r\n
                                  \r\n
                                • Adjustable crossbody strap.
                                • \r\n
                                • Top handle.
                                • \r\n
                                • Zippered interior pocket.
                                • \r\n
                                • Secure clip closures.
                                • \r\n
                                • Durable fabric construction.
                                • \r\n
                                ","image":"/w/b/wb04-blue-0.jpg","small_image":"/w/b/wb04-blue-0.jpg","thumbnail":"/w/b/wb04-blue-0.jpg","color":"49","category_ids":[3,7,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"push-it-messenger-bag","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[20,23,8],"style_bags":[27,28],"material":[37,38],"strap_bags":[61,62,63,65,66,67],"features_bags":[74,75,78,79],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","slug":"push-it-messenger-bag-tier-price-14","links":{},"stock":{"item_id":14,"product_id":14,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-07-31 17:04:19","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/b/wb04-blue-0.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"collections/collections-7","category_id":7,"name":"Collections","slug":"collections-7"},{"path":"gear/bags/bags-4","category_id":4,"name":"Bags","slug":"bags-4"}],"url_path":"gear/gear-3/push-it-messenger-bag-tier-price-14.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"12","_score":1,"_source":{"id":12,"sku":"24-WB03","name":"Driven Backpack","attribute_set_id":15,"price":36,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:25","updated_at":"2017-11-06 12:16:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":36,"max_price":36,"max_regular_price":36,"minimal_regular_price":36,"special_price":null,"minimal_price":36,"regular_price":36,"description":"

                                School books, camp gear and yoga clothes get along just fine in the all-purpose Driven Backpack. Crafted with tough polyester ripstop fabric, it's outfitted with rubberized end panels and padded, adjustable shoulder straps. The roomy main compartment features molded foam pockets that host everything you need.

                                \n
                                  \n
                                • Large main and small zip compartments.
                                • \n
                                • Adjustable, padded straps.
                                • \n
                                • Interior foam pockets.
                                • \n
                                • Exterior zip compartment.
                                • \n
                                • Left sport bottle pocket.
                                • \n
                                • Survival gear sold separately.
                                • \n
                                ","image":"/w/b/wb03-purple-0.jpg","small_image":"/w/b/wb03-purple-0.jpg","thumbnail":"/w/b/wb03-purple-0.jpg","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"driven-backpack","tax_class_id":"2","activity":[11,20,8],"style_bags":[24,28,29],"material":[36,37,38],"strap_bags":[61,64,65],"features_bags":[71,72,75,78],"slug":"driven-backpack-12","links":{},"stock":{"item_id":12,"product_id":12,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/b/wb03-purple-0.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/bags/bags-4","category_id":4,"name":"Bags","slug":"bags-4"}],"url_path":"gear/gear-3/driven-backpack-12.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"19","_score":1,"_source":{"id":19,"sku":"24-UG05","name":"Go-Get'r Pushup Grips","attribute_set_id":11,"price":19,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2017-11-06 12:16:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":19,"max_price":19,"max_regular_price":19,"minimal_regular_price":19,"special_price":null,"minimal_price":19,"regular_price":19,"description":"

                                The Go-Get'r Pushup Grips safely provide the extra range of motion you need for a deep-dip routine targeting core, shoulder, chest and arm strength. Do fewer pushups using more energy, getting better results faster than the standard floor-level technique yield.

                                \n
                                  \n
                                • Durable foam grips.
                                • \n
                                • Supportive base.
                                • \n
                                ","image":"/u/g/ug05-gr-0.jpg","small_image":"/u/g/ug05-gr-0.jpg","thumbnail":"/u/g/ug05-gr-0.jpg","category_ids":[3,7,5,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"go-get-r-pushup-grips","tax_class_id":"2","activity":[16,11],"material":[44,45],"gender":[80,81,84],"category_gear":"87","erin_recommends":"1","new":"1","slug":"go-getr-pushup-grips-19","links":{},"stock":{"item_id":19,"product_id":19,"stock_id":1,"qty":66,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/u/g/ug05-gr-0.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"collections/collections-7","category_id":7,"name":"Collections","slug":"collections-7"},{"path":"gear/fitness-equipment/fitness-equipment-5","category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"}],"url_path":"gear/gear-3/go-getr-pushup-grips-19.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"18","_score":1,"_source":{"id":18,"sku":"24-UG02","name":"Pursuit Lumaflex™ Tone Band","attribute_set_id":11,"price":16,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2017-11-06 12:16:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":16,"max_price":16,"max_regular_price":16,"minimal_regular_price":16,"special_price":null,"minimal_price":16,"regular_price":16,"description":"

                                Save your knees and joints while strengthening arms, legs and core with the Pursuit Lumaflex™ Tone Band. This ultra-durable training tool lets you complete a full-body workout free of bulky machines or free weights.

                                \n
                                  \n
                                • Home and/or gym use.
                                • \n
                                • Ergonomic handles.
                                • \n
                                ","image":"/u/g/ug02-bk-0.jpg","small_image":"/u/g/ug02-bk-0.jpg","thumbnail":"/u/g/ug02-bk-0.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"pursuit-lumaflex-trade-tone-band","tax_class_id":"2","activity":"11","material":[45,46],"gender":[80,81,84],"category_gear":[85,87],"slug":"pursuit-lumaflex-and-trade-tone-band-18","links":{},"stock":{"item_id":18,"product_id":18,"stock_id":1,"qty":74,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/u/g/ug02-bk-0.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/fitness-equipment/fitness-equipment-5","category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5"}],"url_path":"gear/gear-3/pursuit-lumaflex-and-trade-tone-band-18.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"27","_score":1,"_source":{"id":27,"sku":"24-WG082-gray","name":"Sprite Stasis Ball 65 cm","attribute_set_id":12,"price":27,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":27,"max_price":27,"max_regular_price":27,"minimal_regular_price":27,"special_price":null,"minimal_price":27,"regular_price":27,"description":"

                                The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                                \n
                                  \n
                                • 65 cm plastic shell.
                                • \n
                                • Durable, burst-resistant design.
                                • \n
                                • Hand pump included.
                                • \n
                                ","image":"/l/u/luma-stability-ball-gray.jpg","small_image":"/l/u/luma-stability-ball-gray.jpg","thumbnail":"/l/u/luma-stability-ball-gray.jpg","color":"52","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-65-cm-gray","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"92","slug":"sprite-stasis-ball-65-cm-27","links":{},"stock":{"item_id":27,"product_id":27,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/l/u/luma-stability-ball-gray.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/fitness-equipment/fitness-equipment-5","category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5"}],"url_path":"gear/gear-3/sprite-stasis-ball-65-cm-27.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"8","_score":1,"_source":{"id":8,"sku":"24-WB01","name":"Voyage Yoga Bag - tier price","attribute_set_id":15,"price":32,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:24","updated_at":"2018-08-22 09:32:35","product_links":[],"tier_prices":[{"qty":1,"extension_attributes":{"website_id":0},"customer_group_id":1,"value":15}],"custom_attributes":null,"description":"

                                Everything you need for a trip to the gym will fit inside this surprisingly spacious Voyage Yoga Bag. Stock it with a water bottle, change of clothes, pair of shoes, and even a few beauty products. Fits inside a locker and zips shut for security.

                                \r\n
                                  \r\n
                                • Slip pocket on front.
                                • \r\n
                                • Contrast piping.
                                • \r\n
                                • Durable nylon construction.
                                • \r\n
                                ","image":"/w/b/wb01-black-0.jpg","small_image":"/w/b/wb01-black-0.jpg","thumbnail":"/w/b/wb01-black-0.jpg","color":"49","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"voyage-yoga-bag","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[11,8],"style_bags":[29,30],"material":[37,38],"strap_bags":[64,66],"features_bags":[74,77,79],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"voyage-yoga-bag-tier-price-8","links":{},"stock":{"item_id":8,"product_id":8,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-08-20 20:22:00","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/b/wb01-black-0.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/bags/bags-4","category_id":4,"name":"Bags","slug":"bags-4"}],"url_path":"gear/gear-3/voyage-yoga-bag-tier-price-8.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"23","_score":1,"_source":{"id":23,"sku":"24-UG03","name":"Harmony Lumaflex™ Strength Band Kit ","attribute_set_id":11,"price":22,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2017-11-06 12:16:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":22,"max_price":22,"max_regular_price":22,"minimal_regular_price":22,"special_price":null,"minimal_price":22,"regular_price":22,"description":"

                                Forget fancy machines and costly memberships - the Harmony Lumaflex™ Stength Band Kit is all you need for an amazing workout. The kit has everything you need for a range of strengthening and toning exercises.

                                \n
                                  \n
                                • Three flex bands.
                                • \n
                                • Textured, ergonomic grips.
                                • \n
                                • Adjustable lengths.
                                • \n
                                • Mesh carry bag included.
                                • \n
                                ","image":"/u/g/ug03-bk-0.jpg","small_image":"/u/g/ug03-bk-0.jpg","thumbnail":"/u/g/ug03-bk-0.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"harmony-lumaflex-trade-strength-band-kit","tax_class_id":"2","activity":"11","material":[35,44,45],"gender":[80,81,84],"category_gear":"87","slug":"harmony-lumaflex-and-trade-strength-band-kit-23","links":{},"stock":{"item_id":23,"product_id":23,"stock_id":1,"qty":73,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/u/g/ug03-bk-0.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/fitness-equipment/fitness-equipment-5","category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5"}],"url_path":"gear/gear-3/harmony-lumaflex-and-trade-strength-band-kit-23.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"26","_score":1,"_source":{"id":26,"sku":"24-WG081-blue","name":"Sprite Stasis Ball 55 cm - tier price","attribute_set_id":12,"price":23,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:28","updated_at":"2019-07-05 12:03:25","product_links":[],"tier_prices":[{"qty":1,"extension_attributes":{"website_id":0},"customer_group_id":1,"value":15}],"custom_attributes":null,"final_price":23,"max_price":23,"max_regular_price":23,"minimal_regular_price":23,"special_price":null,"minimal_price":23,"regular_price":23,"description":"

                                The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.

                                \r\n
                                  \r\n
                                • Durable, burst-resistant design.
                                • \r\n
                                • Hand pump included.
                                • \r\n
                                ","image":"/l/u/luma-stability-ball.jpg","small_image":"/l/u/luma-stability-ball.jpg","thumbnail":"/l/u/luma-stability-ball.jpg","color":"50","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sprite-stasis-ball-55-cm-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[8,11],"material":"44","gender":[80,81,82,83,84],"category_gear":"87","size":"91","slug":"sprite-stasis-ball-55-cm-tier-price-26","links":{},"stock":{"item_id":26,"product_id":26,"stock_id":1,"qty":41,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/l/u/luma-stability-ball.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/fitness-equipment/fitness-equipment-5","category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5"}],"url_path":"gear/gear-3/sprite-stasis-ball-55-cm-tier-price-26.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"3","_score":1,"_source":{"id":3,"sku":"24-MB03","name":"Crown Summit Backpack","attribute_set_id":15,"price":32,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:22","updated_at":"2018-06-01 21:47:54","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                                The Crown Summit Backpack is equally at home in a gym locker, study cube or a pup tent, so be sure yours is packed with books, a bag lunch, water bottles, yoga block, laptop, or whatever else you want in hand. Rugged enough for day hikes and camping trips, it has two large zippered compartments and padded, adjustable shoulder straps.

                                \r\n
                                  \r\n
                                • Top handle.
                                • \r\n
                                • Grommet holes.
                                • \r\n
                                • Two-way zippers.
                                • \r\n
                                • H 20\" x W 14\" x D 13\".
                                • \r\n
                                • Weight: 2 lbs, 8 oz. Volume: 29 L.
                                • \r\n
                                    \r\n
                                  ","image":"/m/b/mb03-black-0.jpg","small_image":"/m/b/mb03-black-0.jpg","thumbnail":"/m/b/mb03-black-0.jpg","color":"49","category_ids":[3,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"crown-summit-backpack","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","activity":[11,18,19,20,21,22,23],"style_bags":"24","material":[37,38],"strap_bags":[61,64,65],"features_bags":[72,74,75,77,78],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"crown-summit-backpack-3","links":{},"stock":{"item_id":3,"product_id":3,"stock_id":1,"qty":62,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/b/mb03-black-0.jpg","pos":1,"typ":"image","lab":"Image"},{"vid":null,"image":"/m/b/mb03-black-0_alt1.jpg","pos":2,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/bags/bags-4","category_id":4,"name":"Bags","slug":"bags-4"}],"url_path":"gear/gear-3/crown-summit-backpack-3.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"16","_score":1,"_source":{"id":16,"sku":"24-UG07","name":"Dual Handle Cardio Ball","attribute_set_id":11,"price":12,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2017-11-06 12:16:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":12,"max_price":12,"max_regular_price":12,"minimal_regular_price":12,"special_price":"12.0000","minimal_price":12,"regular_price":12,"description":"

                                  Make the most of your limited workout window with our Dual-Handle Cardio Ball. The 15-lb ball maximizes the effort-impact to your abdominal, upper arm and lower-body muscles. It features a handle on each side for a firm, secure grip.

                                  \n
                                    \n
                                  • Durable plastic shell with sand fill.\n
                                  • Two handles.\n
                                  • 15 lbs.\n
                                  ","special_from_date":"2017-11-06 12:16:27","image":"/u/g/ug07-bk-0.jpg","small_image":"/u/g/ug07-bk-0.jpg","thumbnail":"/u/g/ug07-bk-0.jpg","category_ids":[3,7,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"dual-handle-cardio-ball","tax_class_id":"2","activity":[16,17,11],"material":"44","gender":[80,81,84],"category_gear":[85,87],"erin_recommends":"1","sale":"1","slug":"dual-handle-cardio-ball-16","links":{},"stock":{"item_id":16,"product_id":16,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/u/g/ug07-bk-0.jpg","pos":1,"typ":"image","lab":"Image"},{"vid":null,"image":"/u/g/ug07-bk-0_alt1.jpg","pos":2,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"collections/collections-7","category_id":7,"name":"Collections","slug":"collections-7"},{"path":"gear/fitness-equipment/fitness-equipment-5","category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5"}],"url_path":"gear/gear-3/dual-handle-cardio-ball-16.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"17","_score":1,"_source":{"id":17,"sku":"24-UG04","name":"Zing Jump Rope","attribute_set_id":11,"price":12,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:27","updated_at":"2017-11-06 12:16:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":12,"max_price":12,"max_regular_price":12,"minimal_regular_price":12,"special_price":null,"minimal_price":12,"regular_price":12,"description":"

                                  One of the world's simplest and most portable exercise devices, a jump rope enables endless variations and fitness output. The Zing Jump Rope goes anywhere and can be used any time. It is adjustable in length and has contoured foam handles for a great grip.

                                  \n
                                    \n
                                  • Contoured foam handles.\n
                                  • Adjustable length.\n
                                  ","image":"/u/g/ug04-bk-0.jpg","small_image":"/u/g/ug04-bk-0.jpg","thumbnail":"/u/g/ug04-bk-0.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zing-jump-rope","tax_class_id":"2","activity":"11","material":[35,44],"gender":[80,81,84],"category_gear":[85,87],"slug":"zing-jump-rope-17","links":{},"stock":{"item_id":17,"product_id":17,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/u/g/ug04-bk-0.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/fitness-equipment/fitness-equipment-5","category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5"}],"url_path":"gear/gear-3/zing-jump-rope-17.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2","_score":1,"_source":{"id":2,"sku":"24-MB04","name":"Strive Shoulder Pack","attribute_set_id":15,"price":32,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:22","updated_at":"2017-11-06 12:16:22","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":"32.0000","minimal_price":32,"regular_price":32,"description":"

                                  Convenience is next to nothing when your day is crammed with action. So whether you're heading to class, gym, or the unbeaten path, make sure you've got your Strive Shoulder Pack stuffed with all your essentials, and extras as well.

                                  \n
                                    \n
                                  • Zippered main compartment.
                                  • \n
                                  • Front zippered pocket.
                                  • \n
                                  • Side mesh pocket.
                                  • \n
                                  • Cell phone pocket on strap.
                                  • \n
                                  • Adjustable shoulder strap and top carry handle.
                                  • \n
                                  ","special_from_date":"2017-11-06 12:16:22","image":"/m/b/mb04-black-0.jpg","small_image":"/m/b/mb04-black-0.jpg","thumbnail":"/m/b/mb04-black-0.jpg","category_ids":[3,7,4],"options_container":"container2","required_options":"0","has_options":"0","url_key":"strive-shoulder-pack","tax_class_id":"2","activity":[11,21,23,18],"style_bags":[27,29,30],"material":[32,33,36,38],"strap_bags":[61,62,65,66,67],"features_bags":[72,74,75,78],"erin_recommends":"1","sale":"1","slug":"strive-shoulder-pack-2","links":{},"stock":{"item_id":2,"product_id":2,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/b/mb04-black-0.jpg","pos":1,"typ":"image","lab":"Image"},{"vid":null,"image":"/m/b/mb04-black-0_alt1.jpg","pos":2,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"collections/collections-7","category_id":7,"name":"Collections","slug":"collections-7"},{"path":"gear/bags/bags-4","category_id":4,"name":"Bags","slug":"bags-4"}],"url_path":"gear/gear-3/strive-shoulder-pack-2.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"40","_score":1,"_source":{"id":40,"sku":"24-MG02","name":"Dash Digital Watch","attribute_set_id":11,"price":92,"status":1,"visibility":4,"type_id":"simple","created_at":"2017-11-06 12:16:30","updated_at":"2017-11-06 12:16:30","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":92,"max_price":92,"max_regular_price":92,"minimal_regular_price":92,"special_price":null,"minimal_price":92,"regular_price":92,"description":"

                                  The Dash Digital Watch will challenge you to push harder and longer. Log workouts by date, average, and segment times, and recharge by setting hydration and nutrition alarms. This watch is styled with a sleek, square face and durable rubber strap for a long life.

                                  \n
                                    \n
                                  • Digital display.
                                  • \n
                                  • LED backlight.
                                  • \n
                                  • Rubber strap with buckle clasp.
                                  • \n
                                  • 1-year limited warranty.
                                  • ","image":"/m/g/mg02-bk-0.jpg","small_image":"/m/g/mg02-bk-0.jpg","thumbnail":"/m/g/mg02-bk-0.jpg","category_ids":[3,7,6,8],"options_container":"container2","required_options":"0","has_options":"0","url_key":"dash-digital-watch","tax_class_id":"2","activity":[16,17,5,11],"material":"45","gender":"80","category_gear":[86,87,90],"new":"1","slug":"dash-digital-watch-40","links":{},"stock":{"item_id":40,"product_id":40,"stock_id":1,"qty":7,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/g/mg02-bk-0.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"collections/collections-7","category_id":7,"name":"Collections","slug":"collections-7"},{"path":"gear/watches/watches-6","category_id":6,"name":"Watches","slug":"watches-6"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"}],"url_path":"gear/gear-3/dash-digital-watch-40.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"129","_score":1,"_source":{"id":129,"sku":"MH05-XL-Red","name":"Hollister Backyard Sweatshirt-XL-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                    Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                                    \n

                                    • Cream crewneck sweatshirt with navy sleeves/trim.
                                    • Relaxed fit.
                                    • Ribbed cuffs and hem.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hollister-backyard-sweatshirt-xl-red-129","links":{},"stock":{"item_id":129,"product_id":129,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xl-red-129.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"124","_score":1,"_source":{"id":124,"sku":"MH05-M-White","name":"Hollister Backyard Sweatshirt-M-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                    Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                                    \n

                                    • Cream crewneck sweatshirt with navy sleeves/trim.
                                    • Relaxed fit.
                                    • Ribbed cuffs and hem.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hollister-backyard-sweatshirt-m-white-124","links":{},"stock":{"item_id":124,"product_id":124,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-m-white-124.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"117","_score":1,"_source":{"id":117,"sku":"MH05-XS-Red","name":"Hollister Backyard Sweatshirt-XS-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                    Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                                    \n

                                    • Cream crewneck sweatshirt with navy sleeves/trim.
                                    • Relaxed fit.
                                    • Ribbed cuffs and hem.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hollister-backyard-sweatshirt-xs-red-117","links":{},"stock":{"item_id":117,"product_id":117,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xs-red-117.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"106","_score":1,"_source":{"id":106,"sku":"MH04-M-Green","name":"Frankie Sweatshirt-M-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                    The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                                    \n

                                    • Light green crewneck sweatshirt.
                                    • Hand pockets.
                                    • Relaxed fit.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh04-green_main.jpg","small_image":"/m/h/mh04-green_main.jpg","thumbnail":"/m/h/mh04-green_main.jpg","color":"53","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"frankie-sweatshirt-m-green-106","links":{},"stock":{"item_id":106,"product_id":106,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh04-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh04-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh04-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-m-green-106.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"113","_score":1,"_source":{"id":113,"sku":"MH04-XL-White","name":"Frankie Sweatshirt-XL-White","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                    The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

                                    \n

                                    • Light green crewneck sweatshirt.
                                    • Hand pockets.
                                    • Relaxed fit.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh04-white_main.jpg","small_image":"/m/h/mh04-white_main.jpg","thumbnail":"/m/h/mh04-white_main.jpg","color":"59","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"frankie-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"frankie-sweatshirt-xl-white-113","links":{},"stock":{"item_id":113,"product_id":113,"stock_id":1,"qty":73,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh04-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/frankie-sweatshirt-xl-white-113.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"126","_score":1,"_source":{"id":126,"sku":"MH05-L-Red","name":"Hollister Backyard Sweatshirt-L-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                    Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                                    \n

                                    • Cream crewneck sweatshirt with navy sleeves/trim.
                                    • Relaxed fit.
                                    • Ribbed cuffs and hem.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hollister-backyard-sweatshirt-l-red-126","links":{},"stock":{"item_id":126,"product_id":126,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-l-red-126.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"128","_score":1,"_source":{"id":128,"sku":"MH05-XL-Green","name":"Hollister Backyard Sweatshirt-XL-Green","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                    Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                                    \n

                                    • Cream crewneck sweatshirt with navy sleeves/trim.
                                    • Relaxed fit.
                                    • Ribbed cuffs and hem.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh05-green_main.jpg","small_image":"/m/h/mh05-green_main.jpg","thumbnail":"/m/h/mh05-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hollister-backyard-sweatshirt-xl-green-128","links":{},"stock":{"item_id":128,"product_id":128,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh05-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xl-green-128.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"134","_score":1,"_source":{"id":134,"sku":"MH06-XS-Purple","name":"Stark Fundamental Hoodie-XS-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                                    \n

                                    • Navy specked full zip hoodie.
                                    • Ribbed cuffs, banded waist.
                                    • Side pockets.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh06-purple_main.jpg","small_image":"/m/h/mh06-purple_main.jpg","thumbnail":"/m/h/mh06-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"stark-fundamental-hoodie-xs-purple-134","links":{},"stock":{"item_id":134,"product_id":134,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh06-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xs-purple-134.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"118","_score":1,"_source":{"id":118,"sku":"MH05-XS-White","name":"Hollister Backyard Sweatshirt-XS-White","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                    Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                                    \n

                                    • Cream crewneck sweatshirt with navy sleeves/trim.
                                    • Relaxed fit.
                                    • Ribbed cuffs and hem.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh05-white_main.jpg","small_image":"/m/h/mh05-white_main.jpg","thumbnail":"/m/h/mh05-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hollister-backyard-sweatshirt-xs-white-118","links":{},"stock":{"item_id":118,"product_id":118,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh05-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh05-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh05-white_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-xs-white-118.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"145","_score":1,"_source":{"id":145,"sku":"MH06-XL-Blue","name":"Stark Fundamental Hoodie-XL-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                                    \n

                                    • Navy specked full zip hoodie.
                                    • Ribbed cuffs, banded waist.
                                    • Side pockets.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"stark-fundamental-hoodie-xl-blue-145","links":{},"stock":{"item_id":145,"product_id":145,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-xl-blue-145.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"123","_score":1,"_source":{"id":123,"sku":"MH05-M-Red","name":"Hollister Backyard Sweatshirt-M-Red","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:46","updated_at":"2017-11-06 12:16:46","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                    Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you're raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

                                    \n

                                    • Cream crewneck sweatshirt with navy sleeves/trim.
                                    • Relaxed fit.
                                    • Ribbed cuffs and hem.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh05-red_main.jpg","small_image":"/m/h/mh05-red_main.jpg","thumbnail":"/m/h/mh05-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hollister-backyard-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hollister-backyard-sweatshirt-m-red-123","links":{},"stock":{"item_id":123,"product_id":123,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh05-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hollister-backyard-sweatshirt-m-red-123.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"138","_score":1,"_source":{"id":138,"sku":"MH06-M-Black","name":"Stark Fundamental Hoodie-M-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                                    \n

                                    • Navy specked full zip hoodie.
                                    • Ribbed cuffs, banded waist.
                                    • Side pockets.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stark-fundamental-hoodie-m-black-138","links":{},"stock":{"item_id":138,"product_id":138,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-m-black-138.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"141","_score":1,"_source":{"id":141,"sku":"MH06-L-Black","name":"Stark Fundamental Hoodie-L-Black","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                                    \n

                                    • Navy specked full zip hoodie.
                                    • Ribbed cuffs, banded waist.
                                    • Side pockets.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh06-black_main.jpg","small_image":"/m/h/mh06-black_main.jpg","thumbnail":"/m/h/mh06-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"stark-fundamental-hoodie-l-black-141","links":{},"stock":{"item_id":141,"product_id":141,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh06-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-l-black-141.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"139","_score":1,"_source":{"id":139,"sku":"MH06-M-Blue","name":"Stark Fundamental Hoodie-M-Blue","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    You don't need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won't let you overheat.

                                    \n

                                    • Navy specked full zip hoodie.
                                    • Ribbed cuffs, banded waist.
                                    • Side pockets.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh06-blue_main.jpg","small_image":"/m/h/mh06-blue_main.jpg","thumbnail":"/m/h/mh06-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"stark-fundamental-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"stark-fundamental-hoodie-m-blue-139","links":{},"stock":{"item_id":139,"product_id":139,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh06-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh06-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh06-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/stark-fundamental-hoodie-m-blue-139.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"56","_score":1,"_source":{"id":56,"sku":"MH01-S-Gray","name":"Chaz Kangeroo Hoodie-S-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                    Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                                    \n

                                    • Two-tone gray heather hoodie.
                                    • Drawstring-adjustable hood.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chaz-kangeroo-hoodie-s-gray-56","links":{},"stock":{"item_id":56,"product_id":56,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-s-gray-56.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"60","_score":1,"_source":{"id":60,"sku":"MH01-M-Orange","name":"Chaz Kangeroo Hoodie-M-Orange","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                    Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                                    \n

                                    • Two-tone gray heather hoodie.
                                    • Drawstring-adjustable hood.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh01-orange_main.jpg","small_image":"/m/h/mh01-orange_main.jpg","thumbnail":"/m/h/mh01-orange_main.jpg","color":"56","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chaz-kangeroo-hoodie-m-orange-60","links":{},"stock":{"item_id":60,"product_id":60,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-m-orange-60.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"59","_score":1,"_source":{"id":59,"sku":"MH01-M-Gray","name":"Chaz Kangeroo Hoodie-M-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                    Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                                    \n

                                    • Two-tone gray heather hoodie.
                                    • Drawstring-adjustable hood.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chaz-kangeroo-hoodie-m-gray-59","links":{},"stock":{"item_id":59,"product_id":59,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-m-gray-59.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"55","_score":1,"_source":{"id":55,"sku":"MH01-S-Black","name":"Chaz Kangeroo Hoodie-S-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                    Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                                    \n

                                    • Two-tone gray heather hoodie.
                                    • Drawstring-adjustable hood.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chaz-kangeroo-hoodie-s-black-55","links":{},"stock":{"item_id":55,"product_id":55,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-s-black-55.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"58","_score":1,"_source":{"id":58,"sku":"MH01-M-Black","name":"Chaz Kangeroo Hoodie-M-Black","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                    Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                                    \n

                                    • Two-tone gray heather hoodie.
                                    • Drawstring-adjustable hood.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh01-black_main.jpg","small_image":"/m/h/mh01-black_main.jpg","thumbnail":"/m/h/mh01-black_main.jpg","color":"49","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chaz-kangeroo-hoodie-m-black-58","links":{},"stock":{"item_id":58,"product_id":58,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh01-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-m-black-58.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"53","_score":1,"_source":{"id":53,"sku":"MH01-XS-Gray","name":"Chaz Kangeroo Hoodie-XS-Gray","attribute_set_id":9,"price":52,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":52,"max_price":52,"max_regular_price":52,"minimal_regular_price":52,"special_price":null,"minimal_price":52,"regular_price":52,"description":"

                                    Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

                                    \n

                                    • Two-tone gray heather hoodie.
                                    • Drawstring-adjustable hood.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh01-gray_main.jpg","small_image":"/m/h/mh01-gray_main.jpg","thumbnail":"/m/h/mh01-gray_main.jpg","color":"52","category_ids":[15,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chaz-kangeroo-hoodie-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chaz-kangeroo-hoodie-xs-gray-53","links":{},"stock":{"item_id":53,"product_id":53,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh01-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh01-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh01-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/chaz-kangeroo-hoodie-xs-gray-53.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"71","_score":1,"_source":{"id":71,"sku":"MH02-S-Black","name":"Teton Pullover Hoodie-S-Black","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                                    This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                                    \n

                                    • Black pullover hoodie.
                                    • Soft, brushed interior.
                                    • Front hand pockets.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh02-black_main.jpg","small_image":"/m/h/mh02-black_main.jpg","thumbnail":"/m/h/mh02-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"teton-pullover-hoodie-s-black-71","links":{},"stock":{"item_id":71,"product_id":71,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh02-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh02-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh02-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-s-black-71.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"72","_score":1,"_source":{"id":72,"sku":"MH02-S-Purple","name":"Teton Pullover Hoodie-S-Purple","attribute_set_id":9,"price":70,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:45","updated_at":"2017-11-06 12:16:45","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":70,"max_price":70,"max_regular_price":70,"minimal_regular_price":70,"special_price":null,"minimal_price":70,"regular_price":70,"description":"

                                    This Teton Pullover Hoodie gives you more than laid-back style. It's equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

                                    \n

                                    • Black pullover hoodie.
                                    • Soft, brushed interior.
                                    • Front hand pockets.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh02-purple_main.jpg","small_image":"/m/h/mh02-purple_main.jpg","thumbnail":"/m/h/mh02-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"teton-pullover-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"teton-pullover-hoodie-s-purple-72","links":{},"stock":{"item_id":72,"product_id":72,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh02-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/teton-pullover-hoodie-s-purple-72.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"163","_score":1,"_source":{"id":163,"sku":"MH07","name":"Hero Hoodie","attribute_set_id":9,"price":54,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                                    Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                                    \n

                                    • Full-zip gray and black hoodie.
                                    • Ribbed hem.
                                    • Standard fit.
                                    • Drawcord hood cinch.
                                    • Water-resistant coating.

                                    ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hero-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,146,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","pattern":"195","climate":"208","slug":"hero-hoodie-163","links":{},"stock":{"item_id":163,"product_id":163,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","small_image":"/m/h/mh07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hero-hoodie-xs-black","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":54,"name":"Hero Hoodie-XS-Black","id":148,"category_ids":["15"],"sku":"MH07-XS-Black","status":1},{"image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","small_image":"/m/h/mh07-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hero-hoodie-xs-gray","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":54,"name":"Hero Hoodie-XS-Gray","id":149,"category_ids":["15"],"sku":"MH07-XS-Gray","status":1},{"image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","small_image":"/m/h/mh07-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hero-hoodie-xs-green","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":54,"name":"Hero Hoodie-XS-Green","id":150,"category_ids":["15"],"sku":"MH07-XS-Green","status":1},{"image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","small_image":"/m/h/mh07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hero-hoodie-s-black","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"168","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Hero Hoodie-S-Black","id":151,"category_ids":["15"],"sku":"MH07-S-Black","max_regular_price":54,"status":1},{"image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","small_image":"/m/h/mh07-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hero-hoodie-s-gray","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"168","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Hero Hoodie-S-Gray","id":152,"category_ids":["15"],"sku":"MH07-S-Gray","max_regular_price":54,"status":1},{"image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","small_image":"/m/h/mh07-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hero-hoodie-s-green","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"168","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Hero Hoodie-S-Green","id":153,"category_ids":["15"],"sku":"MH07-S-Green","max_regular_price":54,"status":1},{"image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","small_image":"/m/h/mh07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hero-hoodie-m-black","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"169","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Hero Hoodie-M-Black","id":154,"category_ids":["15"],"sku":"MH07-M-Black","max_regular_price":54,"status":1},{"image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","small_image":"/m/h/mh07-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hero-hoodie-m-gray","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"169","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Hero Hoodie-M-Gray","id":155,"category_ids":["15"],"sku":"MH07-M-Gray","max_regular_price":54,"status":1},{"image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","small_image":"/m/h/mh07-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hero-hoodie-m-green","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"169","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Hero Hoodie-M-Green","id":156,"category_ids":["15"],"sku":"MH07-M-Green","max_regular_price":54,"status":1},{"image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","small_image":"/m/h/mh07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hero-hoodie-l-black","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"170","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Hero Hoodie-L-Black","id":157,"category_ids":["15"],"sku":"MH07-L-Black","max_regular_price":54,"status":1},{"image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","small_image":"/m/h/mh07-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hero-hoodie-l-gray","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"170","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Hero Hoodie-L-Gray","id":158,"category_ids":["15"],"sku":"MH07-L-Gray","max_regular_price":54,"status":1},{"image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","small_image":"/m/h/mh07-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hero-hoodie-l-green","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"170","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Hero Hoodie-L-Green","id":159,"category_ids":["15"],"sku":"MH07-L-Green","max_regular_price":54,"status":1},{"image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","small_image":"/m/h/mh07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hero-hoodie-xl-black","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"171","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Hero Hoodie-XL-Black","id":160,"category_ids":["15"],"sku":"MH07-XL-Black","max_regular_price":54,"status":1},{"image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","small_image":"/m/h/mh07-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hero-hoodie-xl-gray","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"171","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Hero Hoodie-XL-Gray","id":161,"category_ids":["15"],"sku":"MH07-XL-Gray","max_regular_price":54,"status":1},{"image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","small_image":"/m/h/mh07-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hero-hoodie-xl-green","regular_price":54,"required_options":"0","msrp_display_actual_price_type":"0","max_price":54,"minimal_regular_price":54,"size":"171","final_price":54,"special_price":null,"price":54,"minimal_price":54,"name":"Hero Hoodie-XL-Green","id":162,"category_ids":["15"],"sku":"MH07-XL-Green","max_regular_price":54,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":163,"id":15,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":163,"id":14,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,52,53],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-163.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"179","_score":1,"_source":{"id":179,"sku":"MH08","name":"Oslo Trek Hoodie","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":30,"max_price":30,"max_regular_price":30,"minimal_regular_price":30,"special_price":null,"minimal_price":30,"regular_price":42,"description":"

                                    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                                    \n

                                    • Brown hoodie with black detail.
                                    • Pullover.
                                    • Adjustable drawstring hood.
                                    • Ribbed cuffs/waistband.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"oslo-trek-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"197","climate":[210,204],"slug":"oslo-trek-hoodie-179","links":{},"stock":{"item_id":179,"product_id":179,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","small_image":"/m/h/mh08-brown_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"oslo-trek-hoodie-xs-brown","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"167","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Oslo Trek Hoodie-XS-Brown","id":164,"category_ids":["15"],"sku":"MH08-XS-Brown","max_regular_price":42,"status":1},{"image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","small_image":"/m/h/mh08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"oslo-trek-hoodie-xs-purple","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"167","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Oslo Trek Hoodie-XS-Purple","id":165,"category_ids":["15"],"sku":"MH08-XS-Purple","max_regular_price":42,"status":1},{"image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","small_image":"/m/h/mh08-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"oslo-trek-hoodie-xs-red","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"167","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Oslo Trek Hoodie-XS-Red","id":166,"category_ids":["15"],"sku":"MH08-XS-Red","max_regular_price":42,"status":1},{"image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","small_image":"/m/h/mh08-brown_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"oslo-trek-hoodie-s-brown","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"168","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Oslo Trek Hoodie-S-Brown","id":167,"category_ids":["15"],"sku":"MH08-S-Brown","max_regular_price":42,"status":1},{"image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","small_image":"/m/h/mh08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"oslo-trek-hoodie-s-purple","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"168","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Oslo Trek Hoodie-S-Purple","id":168,"category_ids":["15"],"sku":"MH08-S-Purple","max_regular_price":42,"status":1},{"image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","small_image":"/m/h/mh08-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"oslo-trek-hoodie-s-red","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"168","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Oslo Trek Hoodie-S-Red","id":169,"category_ids":["15"],"sku":"MH08-S-Red","max_regular_price":42,"status":1},{"image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","small_image":"/m/h/mh08-brown_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"oslo-trek-hoodie-m-brown","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"169","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Oslo Trek Hoodie-M-Brown","id":170,"category_ids":["15"],"sku":"MH08-M-Brown","max_regular_price":42,"status":1},{"image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","small_image":"/m/h/mh08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"oslo-trek-hoodie-m-purple","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"169","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Oslo Trek Hoodie-M-Purple","id":171,"category_ids":["15"],"sku":"MH08-M-Purple","max_regular_price":42,"status":1},{"color":"58","small_image":"/m/h/mh08-red_main.jpg","tier_prices":[],"regular_price":42,"msrp_display_actual_price_type":"0","final_price":30,"price":42,"special_from_date":"2019-03-22 08:35:33","id":172,"category_ids":["15"],"sku":"MH08-M-Red","image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","tax_class_id":"2","has_options":"0","url_key":"oslo-trek-hoodie-m-red","required_options":"0","max_price":30,"minimal_regular_price":30,"size":"169","special_price":30,"minimal_price":30,"name":"Oslo Trek Hoodie-M-Red","max_regular_price":30,"status":1},{"image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","small_image":"/m/h/mh08-brown_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"oslo-trek-hoodie-l-brown","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"170","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Oslo Trek Hoodie-L-Brown","id":173,"category_ids":["15"],"sku":"MH08-L-Brown","max_regular_price":42,"status":1},{"image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","small_image":"/m/h/mh08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"oslo-trek-hoodie-l-purple","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"170","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Oslo Trek Hoodie-L-Purple","id":174,"category_ids":["15"],"sku":"MH08-L-Purple","max_regular_price":42,"status":1},{"image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","small_image":"/m/h/mh08-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"oslo-trek-hoodie-l-red","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"170","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Oslo Trek Hoodie-L-Red","id":175,"category_ids":["15"],"sku":"MH08-L-Red","max_regular_price":42,"status":1},{"image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","small_image":"/m/h/mh08-brown_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"oslo-trek-hoodie-xl-brown","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"171","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Oslo Trek Hoodie-XL-Brown","id":176,"category_ids":["15"],"sku":"MH08-XL-Brown","max_regular_price":42,"status":1},{"image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","small_image":"/m/h/mh08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"oslo-trek-hoodie-xl-purple","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"171","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Oslo Trek Hoodie-XL-Purple","id":177,"category_ids":["15"],"sku":"MH08-XL-Purple","max_regular_price":42,"status":1},{"image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","small_image":"/m/h/mh08-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"oslo-trek-hoodie-xl-red","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"171","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Oslo Trek Hoodie-XL-Red","id":178,"category_ids":["15"],"sku":"MH08-XL-Red","max_regular_price":42,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":51,"label":"Brown"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":179,"id":17,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":179,"id":16,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[51,57,58],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-179.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"195","_score":1,"_source":{"id":195,"sku":"MH09","name":"Abominable Hoodie","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                                    \n

                                    • Blue heather hoodie.
                                    • Relaxed fit.
                                    • Moisture-wicking.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"abominable-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,159,37],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","pattern":"197","climate":[208,210],"slug":"abominable-hoodie-195","links":{},"stock":{"item_id":195,"product_id":195,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"color":"50","small_image":"/m/h/mh09-blue_main.jpg","tier_prices":[],"regular_price":69,"msrp_display_actual_price_type":"0","final_price":69,"price":69,"special_from_date":"2017-11-15 00:00:00","id":180,"category_ids":["15"],"sku":"MH09-XS-Blue","special_to_date":"2017-12-11 00:00:00","image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","tax_class_id":"2","has_options":"0","url_key":"abominable-hoodie-xs-blue","required_options":"0","max_price":69,"minimal_regular_price":69,"size":"167","special_price":null,"minimal_price":69,"name":"Abominable Hoodie-XS-Blue","max_regular_price":69,"status":1},{"image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","small_image":"/m/h/mh09-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"abominable-hoodie-xs-green","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"167","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Abominable Hoodie-XS-Green","id":181,"category_ids":["15"],"sku":"MH09-XS-Green","max_regular_price":69,"status":1},{"image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","small_image":"/m/h/mh09-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"abominable-hoodie-xs-red","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"167","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Abominable Hoodie-XS-Red","id":182,"category_ids":["15"],"sku":"MH09-XS-Red","max_regular_price":69,"status":1},{"image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","small_image":"/m/h/mh09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"abominable-hoodie-s-blue","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"168","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Abominable Hoodie-S-Blue","id":183,"category_ids":["15"],"sku":"MH09-S-Blue","max_regular_price":69,"status":1},{"image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","small_image":"/m/h/mh09-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"abominable-hoodie-s-green","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"168","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Abominable Hoodie-S-Green","id":184,"category_ids":["15"],"sku":"MH09-S-Green","max_regular_price":69,"status":1},{"image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","small_image":"/m/h/mh09-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"abominable-hoodie-s-red","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"168","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Abominable Hoodie-S-Red","id":185,"category_ids":["15"],"sku":"MH09-S-Red","max_regular_price":69,"status":1},{"image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","small_image":"/m/h/mh09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"abominable-hoodie-m-blue","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"169","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Abominable Hoodie-M-Blue","id":186,"category_ids":["15"],"sku":"MH09-M-Blue","max_regular_price":69,"status":1},{"image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","small_image":"/m/h/mh09-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"abominable-hoodie-m-green","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"169","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Abominable Hoodie-M-Green","id":187,"category_ids":["15"],"sku":"MH09-M-Green","max_regular_price":69,"status":1},{"image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","small_image":"/m/h/mh09-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"abominable-hoodie-m-red","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"169","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Abominable Hoodie-M-Red","id":188,"category_ids":["15"],"sku":"MH09-M-Red","max_regular_price":69,"status":1},{"image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","small_image":"/m/h/mh09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"abominable-hoodie-l-blue","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"170","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Abominable Hoodie-L-Blue","id":189,"category_ids":["15"],"sku":"MH09-L-Blue","max_regular_price":69,"status":1},{"image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","small_image":"/m/h/mh09-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"abominable-hoodie-l-green","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"170","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Abominable Hoodie-L-Green","id":190,"category_ids":["15"],"sku":"MH09-L-Green","max_regular_price":69,"status":1},{"image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","small_image":"/m/h/mh09-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"abominable-hoodie-l-red","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"170","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Abominable Hoodie-L-Red","id":191,"category_ids":["15"],"sku":"MH09-L-Red","max_regular_price":69,"status":1},{"image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","small_image":"/m/h/mh09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"abominable-hoodie-xl-blue","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"171","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Abominable Hoodie-XL-Blue","id":192,"category_ids":["15"],"sku":"MH09-XL-Blue","max_regular_price":69,"status":1},{"image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","small_image":"/m/h/mh09-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"abominable-hoodie-xl-green","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"171","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Abominable Hoodie-XL-Green","id":193,"category_ids":["15"],"sku":"MH09-XL-Green","max_regular_price":69,"status":1},{"image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","small_image":"/m/h/mh09-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"abominable-hoodie-xl-red","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"171","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Abominable Hoodie-XL-Red","id":194,"category_ids":["15"],"sku":"MH09-XL-Red","max_regular_price":69,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":195,"id":19,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":195,"id":18,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-195.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"211","_score":1,"_source":{"id":211,"sku":"MH10","name":"Mach Street Sweatshirt ","attribute_set_id":9,"price":62,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                                    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                                    \n

                                    • Navy heather crewneck sweatshirt.
                                    • LumaTech™ moisture-wicking fabric.
                                    • Antimicrobial, odor-resistant.
                                    • Zip hand pockets.
                                    • Chafe-resistant flatlock seams.
                                    • Rib-knit cuffs and hem.

                                    ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mach-street-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,148],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","pattern":"197","climate":[202,204,205,208],"slug":"mach-street-sweatshirt-211","links":{},"stock":{"item_id":211,"product_id":211,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","small_image":"/m/h/mh10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mach-street-sweatshirt-xs-black","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":62,"name":"Mach Street Sweatshirt -XS-Black","id":196,"category_ids":["15"],"sku":"MH10-XS-Black","status":1},{"image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","small_image":"/m/h/mh10-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mach-street-sweatshirt-xs-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":62,"name":"Mach Street Sweatshirt -XS-Blue","id":197,"category_ids":["15"],"sku":"MH10-XS-Blue","status":1},{"image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","small_image":"/m/h/mh10-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mach-street-sweatshirt-xs-red","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":62,"name":"Mach Street Sweatshirt -XS-Red","id":198,"category_ids":["15"],"sku":"MH10-XS-Red","status":1},{"image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","small_image":"/m/h/mh10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mach-street-sweatshirt-s-black","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":62,"name":"Mach Street Sweatshirt -S-Black","id":199,"category_ids":["15"],"sku":"MH10-S-Black","status":1},{"image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","small_image":"/m/h/mh10-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mach-street-sweatshirt-s-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":62,"name":"Mach Street Sweatshirt -S-Blue","id":200,"category_ids":["15"],"sku":"MH10-S-Blue","status":1},{"image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","small_image":"/m/h/mh10-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mach-street-sweatshirt-s-red","regular_price":62,"required_options":"0","msrp_display_actual_price_type":"0","max_price":62,"minimal_regular_price":62,"size":"168","final_price":62,"special_price":null,"price":62,"minimal_price":62,"name":"Mach Street Sweatshirt -S-Red","id":201,"category_ids":["15"],"sku":"MH10-S-Red","max_regular_price":62,"status":1},{"image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","small_image":"/m/h/mh10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mach-street-sweatshirt-m-black","regular_price":62,"required_options":"0","msrp_display_actual_price_type":"0","max_price":62,"minimal_regular_price":62,"size":"169","final_price":62,"special_price":null,"price":62,"minimal_price":62,"name":"Mach Street Sweatshirt -M-Black","id":202,"category_ids":["15"],"sku":"MH10-M-Black","max_regular_price":62,"status":1},{"image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","small_image":"/m/h/mh10-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mach-street-sweatshirt-m-blue","regular_price":62,"required_options":"0","msrp_display_actual_price_type":"0","max_price":62,"minimal_regular_price":62,"size":"169","final_price":62,"special_price":null,"price":62,"minimal_price":62,"name":"Mach Street Sweatshirt -M-Blue","id":203,"category_ids":["15"],"sku":"MH10-M-Blue","max_regular_price":62,"status":1},{"image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","small_image":"/m/h/mh10-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mach-street-sweatshirt-m-red","regular_price":62,"required_options":"0","msrp_display_actual_price_type":"0","max_price":62,"minimal_regular_price":62,"size":"169","final_price":62,"special_price":null,"price":62,"minimal_price":62,"name":"Mach Street Sweatshirt -M-Red","id":204,"category_ids":["15"],"sku":"MH10-M-Red","max_regular_price":62,"status":1},{"image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","small_image":"/m/h/mh10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mach-street-sweatshirt-l-black","regular_price":62,"required_options":"0","msrp_display_actual_price_type":"0","max_price":62,"minimal_regular_price":62,"size":"170","final_price":62,"special_price":null,"price":62,"minimal_price":62,"name":"Mach Street Sweatshirt -L-Black","id":205,"category_ids":["15"],"sku":"MH10-L-Black","max_regular_price":62,"status":1},{"image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","small_image":"/m/h/mh10-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mach-street-sweatshirt-l-blue","regular_price":62,"required_options":"0","msrp_display_actual_price_type":"0","max_price":62,"minimal_regular_price":62,"size":"170","final_price":62,"special_price":null,"price":62,"minimal_price":62,"name":"Mach Street Sweatshirt -L-Blue","id":206,"category_ids":["15"],"sku":"MH10-L-Blue","max_regular_price":62,"status":1},{"image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","small_image":"/m/h/mh10-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mach-street-sweatshirt-l-red","regular_price":62,"required_options":"0","msrp_display_actual_price_type":"0","max_price":62,"minimal_regular_price":62,"size":"170","final_price":62,"special_price":null,"price":62,"minimal_price":62,"name":"Mach Street Sweatshirt -L-Red","id":207,"category_ids":["15"],"sku":"MH10-L-Red","max_regular_price":62,"status":1},{"image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","small_image":"/m/h/mh10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mach-street-sweatshirt-xl-black","regular_price":62,"required_options":"0","msrp_display_actual_price_type":"0","max_price":62,"minimal_regular_price":62,"size":"171","final_price":62,"special_price":null,"price":62,"minimal_price":62,"name":"Mach Street Sweatshirt -XL-Black","id":208,"category_ids":["15"],"sku":"MH10-XL-Black","max_regular_price":62,"status":1},{"image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","small_image":"/m/h/mh10-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mach-street-sweatshirt-xl-blue","regular_price":62,"required_options":"0","msrp_display_actual_price_type":"0","max_price":62,"minimal_regular_price":62,"size":"171","final_price":62,"special_price":null,"price":62,"minimal_price":62,"name":"Mach Street Sweatshirt -XL-Blue","id":209,"category_ids":["15"],"sku":"MH10-XL-Blue","max_regular_price":62,"status":1},{"image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","small_image":"/m/h/mh10-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mach-street-sweatshirt-xl-red","regular_price":62,"required_options":"0","msrp_display_actual_price_type":"0","max_price":62,"minimal_regular_price":62,"size":"171","final_price":62,"special_price":null,"price":62,"minimal_price":62,"name":"Mach Street Sweatshirt -XL-Red","id":210,"category_ids":["15"],"sku":"MH10-XL-Red","max_regular_price":62,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":211,"id":21,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":211,"id":20,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-211.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"227","_score":1,"_source":{"id":227,"sku":"MH11","name":"Grayson Crewneck Sweatshirt ","attribute_set_id":9,"price":64,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                                    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                                    \n

                                    • Cream crewneck sweatshirt with black accents.
                                    • 80% cotton/20% polyester fleece.
                                    • Patterned knit hood lining.
                                    • Knit cuffs and waist.
                                    • Pouch pocket.
                                    • Curl edged seam detail

                                    ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"grayson-crewneck-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"195","climate":[202,204,205,208,210],"slug":"grayson-crewneck-sweatshirt-227","links":{},"stock":{"item_id":227,"product_id":227,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","small_image":"/m/h/mh11-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"grayson-crewneck-sweatshirt-xs-orange","regular_price":64,"required_options":"0","msrp_display_actual_price_type":"0","max_price":64,"minimal_regular_price":64,"size":"167","final_price":64,"special_price":null,"price":64,"minimal_price":64,"name":"Grayson Crewneck Sweatshirt -XS-Orange","id":212,"category_ids":["15"],"sku":"MH11-XS-Orange","max_regular_price":64,"status":1},{"image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","small_image":"/m/h/mh11-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"grayson-crewneck-sweatshirt-xs-red","regular_price":64,"required_options":"0","msrp_display_actual_price_type":"0","max_price":64,"minimal_regular_price":64,"size":"167","final_price":64,"special_price":null,"price":64,"minimal_price":64,"name":"Grayson Crewneck Sweatshirt -XS-Red","id":213,"category_ids":["15"],"sku":"MH11-XS-Red","max_regular_price":64,"status":1},{"image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","small_image":"/m/h/mh11-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"grayson-crewneck-sweatshirt-xs-white","regular_price":64,"required_options":"0","msrp_display_actual_price_type":"0","max_price":64,"minimal_regular_price":64,"size":"167","final_price":64,"special_price":null,"price":64,"minimal_price":64,"name":"Grayson Crewneck Sweatshirt -XS-White","id":214,"category_ids":["15"],"sku":"MH11-XS-White","max_regular_price":64,"status":1},{"image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","small_image":"/m/h/mh11-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"grayson-crewneck-sweatshirt-s-orange","regular_price":64,"required_options":"0","msrp_display_actual_price_type":"0","max_price":64,"minimal_regular_price":64,"size":"168","final_price":64,"special_price":null,"price":64,"minimal_price":64,"name":"Grayson Crewneck Sweatshirt -S-Orange","id":215,"category_ids":["15"],"sku":"MH11-S-Orange","max_regular_price":64,"status":1},{"image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","small_image":"/m/h/mh11-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"grayson-crewneck-sweatshirt-s-red","regular_price":64,"required_options":"0","msrp_display_actual_price_type":"0","max_price":64,"minimal_regular_price":64,"size":"168","final_price":64,"special_price":null,"price":64,"minimal_price":64,"name":"Grayson Crewneck Sweatshirt -S-Red","id":216,"category_ids":["15"],"sku":"MH11-S-Red","max_regular_price":64,"status":1},{"image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","small_image":"/m/h/mh11-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"grayson-crewneck-sweatshirt-s-white","regular_price":64,"required_options":"0","msrp_display_actual_price_type":"0","max_price":64,"minimal_regular_price":64,"size":"168","final_price":64,"special_price":null,"price":64,"minimal_price":64,"name":"Grayson Crewneck Sweatshirt -S-White","id":217,"category_ids":["15"],"sku":"MH11-S-White","max_regular_price":64,"status":1},{"image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","small_image":"/m/h/mh11-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"grayson-crewneck-sweatshirt-m-orange","regular_price":64,"required_options":"0","msrp_display_actual_price_type":"0","max_price":64,"minimal_regular_price":64,"size":"169","final_price":64,"special_price":null,"price":64,"minimal_price":64,"name":"Grayson Crewneck Sweatshirt -M-Orange","id":218,"category_ids":["15"],"sku":"MH11-M-Orange","max_regular_price":64,"status":1},{"image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","small_image":"/m/h/mh11-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"grayson-crewneck-sweatshirt-m-red","regular_price":64,"required_options":"0","msrp_display_actual_price_type":"0","max_price":64,"minimal_regular_price":64,"size":"169","final_price":64,"special_price":null,"price":64,"minimal_price":64,"name":"Grayson Crewneck Sweatshirt -M-Red","id":219,"category_ids":["15"],"sku":"MH11-M-Red","max_regular_price":64,"status":1},{"image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","small_image":"/m/h/mh11-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"grayson-crewneck-sweatshirt-m-white","regular_price":64,"required_options":"0","msrp_display_actual_price_type":"0","max_price":64,"minimal_regular_price":64,"size":"169","final_price":64,"special_price":null,"price":64,"minimal_price":64,"name":"Grayson Crewneck Sweatshirt -M-White","id":220,"category_ids":["15"],"sku":"MH11-M-White","max_regular_price":64,"status":1},{"image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","small_image":"/m/h/mh11-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"grayson-crewneck-sweatshirt-l-orange","regular_price":64,"required_options":"0","msrp_display_actual_price_type":"0","max_price":64,"minimal_regular_price":64,"size":"170","final_price":64,"special_price":null,"price":64,"minimal_price":64,"name":"Grayson Crewneck Sweatshirt -L-Orange","id":221,"category_ids":["15"],"sku":"MH11-L-Orange","max_regular_price":64,"status":1},{"image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","small_image":"/m/h/mh11-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"grayson-crewneck-sweatshirt-l-red","regular_price":64,"required_options":"0","msrp_display_actual_price_type":"0","max_price":64,"minimal_regular_price":64,"size":"170","final_price":64,"special_price":null,"price":64,"minimal_price":64,"name":"Grayson Crewneck Sweatshirt -L-Red","id":222,"category_ids":["15"],"sku":"MH11-L-Red","max_regular_price":64,"status":1},{"image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","small_image":"/m/h/mh11-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"grayson-crewneck-sweatshirt-l-white","regular_price":64,"required_options":"0","msrp_display_actual_price_type":"0","max_price":64,"minimal_regular_price":64,"size":"170","final_price":64,"special_price":null,"price":64,"minimal_price":64,"name":"Grayson Crewneck Sweatshirt -L-White","id":223,"category_ids":["15"],"sku":"MH11-L-White","max_regular_price":64,"status":1},{"image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","small_image":"/m/h/mh11-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"grayson-crewneck-sweatshirt-xl-orange","regular_price":64,"required_options":"0","msrp_display_actual_price_type":"0","max_price":64,"minimal_regular_price":64,"size":"171","final_price":64,"special_price":null,"price":64,"minimal_price":64,"name":"Grayson Crewneck Sweatshirt -XL-Orange","id":224,"category_ids":["15"],"sku":"MH11-XL-Orange","max_regular_price":64,"status":1},{"image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","small_image":"/m/h/mh11-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"grayson-crewneck-sweatshirt-xl-red","regular_price":64,"required_options":"0","msrp_display_actual_price_type":"0","max_price":64,"minimal_regular_price":64,"size":"171","final_price":64,"special_price":null,"price":64,"minimal_price":64,"name":"Grayson Crewneck Sweatshirt -XL-Red","id":225,"category_ids":["15"],"sku":"MH11-XL-Red","max_regular_price":64,"status":1},{"image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","small_image":"/m/h/mh11-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"grayson-crewneck-sweatshirt-xl-white","regular_price":64,"required_options":"0","msrp_display_actual_price_type":"0","max_price":64,"minimal_regular_price":64,"size":"171","final_price":64,"special_price":null,"price":64,"minimal_price":64,"name":"Grayson Crewneck Sweatshirt -XL-White","id":226,"category_ids":["15"],"sku":"MH11-XL-White","max_regular_price":64,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"},{"value_index":59,"label":"White"}],"product_id":227,"id":23,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":227,"id":22,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[56,58,59],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-227.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"243","_score":1,"_source":{"id":243,"sku":"MH12","name":"Ajax Full-Zip Sweatshirt ","attribute_set_id":9,"price":69,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                                    \n

                                    • Mint striped full zip hoodie.
                                    • 100% bonded polyester fleece.
                                    • Pouch pocket.
                                    • Rib cuffs and hem.
                                    • Machine washable.

                                    ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ajax-full-zip-sweatshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","pattern":"199","climate":[202,204,205,208,210],"slug":"ajax-full-zip-sweatshirt-243","links":{},"stock":{"item_id":243,"product_id":243,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","small_image":"/m/h/mh12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ajax-full-zip-sweatshirt-xs-blue","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"167","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Ajax Full-Zip Sweatshirt -XS-Blue","id":228,"category_ids":["15"],"sku":"MH12-XS-Blue","max_regular_price":69,"status":1},{"image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","small_image":"/m/h/mh12-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ajax-full-zip-sweatshirt-xs-green","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"167","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Ajax Full-Zip Sweatshirt -XS-Green","id":229,"category_ids":["15"],"sku":"MH12-XS-Green","max_regular_price":69,"status":1},{"image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","small_image":"/m/h/mh12-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ajax-full-zip-sweatshirt-xs-red","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"167","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Ajax Full-Zip Sweatshirt -XS-Red","id":230,"category_ids":["15"],"sku":"MH12-XS-Red","max_regular_price":69,"status":1},{"image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","small_image":"/m/h/mh12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ajax-full-zip-sweatshirt-s-blue","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"168","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Ajax Full-Zip Sweatshirt -S-Blue","id":231,"category_ids":["15"],"sku":"MH12-S-Blue","max_regular_price":69,"status":1},{"image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","small_image":"/m/h/mh12-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ajax-full-zip-sweatshirt-s-green","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"168","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Ajax Full-Zip Sweatshirt -S-Green","id":232,"category_ids":["15"],"sku":"MH12-S-Green","max_regular_price":69,"status":1},{"image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","small_image":"/m/h/mh12-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ajax-full-zip-sweatshirt-s-red","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"168","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Ajax Full-Zip Sweatshirt -S-Red","id":233,"category_ids":["15"],"sku":"MH12-S-Red","max_regular_price":69,"status":1},{"image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","small_image":"/m/h/mh12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ajax-full-zip-sweatshirt-m-blue","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"169","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Ajax Full-Zip Sweatshirt -M-Blue","id":234,"category_ids":["15"],"sku":"MH12-M-Blue","max_regular_price":69,"status":1},{"image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","small_image":"/m/h/mh12-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ajax-full-zip-sweatshirt-m-green","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"169","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Ajax Full-Zip Sweatshirt -M-Green","id":235,"category_ids":["15"],"sku":"MH12-M-Green","max_regular_price":69,"status":1},{"image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","small_image":"/m/h/mh12-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ajax-full-zip-sweatshirt-m-red","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"169","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Ajax Full-Zip Sweatshirt -M-Red","id":236,"category_ids":["15"],"sku":"MH12-M-Red","max_regular_price":69,"status":1},{"image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","small_image":"/m/h/mh12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ajax-full-zip-sweatshirt-l-blue","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"170","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Ajax Full-Zip Sweatshirt -L-Blue","id":237,"category_ids":["15"],"sku":"MH12-L-Blue","max_regular_price":69,"status":1},{"image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","small_image":"/m/h/mh12-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ajax-full-zip-sweatshirt-l-green","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"170","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Ajax Full-Zip Sweatshirt -L-Green","id":238,"category_ids":["15"],"sku":"MH12-L-Green","max_regular_price":69,"status":1},{"image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","small_image":"/m/h/mh12-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ajax-full-zip-sweatshirt-l-red","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"170","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Ajax Full-Zip Sweatshirt -L-Red","id":239,"category_ids":["15"],"sku":"MH12-L-Red","max_regular_price":69,"status":1},{"image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","small_image":"/m/h/mh12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ajax-full-zip-sweatshirt-xl-blue","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"171","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Ajax Full-Zip Sweatshirt -XL-Blue","id":240,"category_ids":["15"],"sku":"MH12-XL-Blue","max_regular_price":69,"status":1},{"image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","small_image":"/m/h/mh12-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ajax-full-zip-sweatshirt-xl-green","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"171","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Ajax Full-Zip Sweatshirt -XL-Green","id":241,"category_ids":["15"],"sku":"MH12-XL-Green","max_regular_price":69,"status":1},{"image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","small_image":"/m/h/mh12-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ajax-full-zip-sweatshirt-xl-red","regular_price":69,"required_options":"0","msrp_display_actual_price_type":"0","max_price":69,"minimal_regular_price":69,"size":"171","final_price":69,"special_price":null,"price":69,"minimal_price":69,"name":"Ajax Full-Zip Sweatshirt -XL-Red","id":242,"category_ids":["15"],"sku":"MH12-XL-Red","max_regular_price":69,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":243,"id":25,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":243,"id":24,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-243.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"233","_score":1,"_source":{"id":233,"sku":"MH12-S-Red","name":"Ajax Full-Zip Sweatshirt -S-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                                    \n

                                    • Mint striped full zip hoodie.
                                    • 100% bonded polyester fleece.
                                    • Pouch pocket.
                                    • Rib cuffs and hem.
                                    • Machine washable.

                                    ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ajax-full-zip-sweatshirt-s-red-233","links":{},"stock":{"item_id":233,"product_id":233,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-s-red-233.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"240","_score":1,"_source":{"id":240,"sku":"MH12-XL-Blue","name":"Ajax Full-Zip Sweatshirt -XL-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                                    \n

                                    • Mint striped full zip hoodie.
                                    • 100% bonded polyester fleece.
                                    • Pouch pocket.
                                    • Rib cuffs and hem.
                                    • Machine washable.

                                    ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ajax-full-zip-sweatshirt-xl-blue-240","links":{},"stock":{"item_id":240,"product_id":240,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xl-blue-240.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"217","_score":1,"_source":{"id":217,"sku":"MH11-S-White","name":"Grayson Crewneck Sweatshirt -S-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                                    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                                    \n

                                    • Cream crewneck sweatshirt with black accents.
                                    • 80% cotton/20% polyester fleece.
                                    • Patterned knit hood lining.
                                    • Knit cuffs and waist.
                                    • Pouch pocket.
                                    • Curl edged seam detail

                                    ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"grayson-crewneck-sweatshirt-s-white-217","links":{},"stock":{"item_id":217,"product_id":217,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-s-white-217.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"221","_score":1,"_source":{"id":221,"sku":"MH11-L-Orange","name":"Grayson Crewneck Sweatshirt -L-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                                    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                                    \n

                                    • Cream crewneck sweatshirt with black accents.
                                    • 80% cotton/20% polyester fleece.
                                    • Patterned knit hood lining.
                                    • Knit cuffs and waist.
                                    • Pouch pocket.
                                    • Curl edged seam detail

                                    ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"grayson-crewneck-sweatshirt-l-orange-221","links":{},"stock":{"item_id":221,"product_id":221,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-l-orange-221.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"215","_score":1,"_source":{"id":215,"sku":"MH11-S-Orange","name":"Grayson Crewneck Sweatshirt -S-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                                    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                                    \n

                                    • Cream crewneck sweatshirt with black accents.
                                    • 80% cotton/20% polyester fleece.
                                    • Patterned knit hood lining.
                                    • Knit cuffs and waist.
                                    • Pouch pocket.
                                    • Curl edged seam detail

                                    ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"grayson-crewneck-sweatshirt-s-orange-215","links":{},"stock":{"item_id":215,"product_id":215,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-s-orange-215.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"225","_score":1,"_source":{"id":225,"sku":"MH11-XL-Red","name":"Grayson Crewneck Sweatshirt -XL-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                                    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                                    \n

                                    • Cream crewneck sweatshirt with black accents.
                                    • 80% cotton/20% polyester fleece.
                                    • Patterned knit hood lining.
                                    • Knit cuffs and waist.
                                    • Pouch pocket.
                                    • Curl edged seam detail

                                    ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"grayson-crewneck-sweatshirt-xl-red-225","links":{},"stock":{"item_id":225,"product_id":225,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xl-red-225.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"220","_score":1,"_source":{"id":220,"sku":"MH11-M-White","name":"Grayson Crewneck Sweatshirt -M-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                                    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                                    \n

                                    • Cream crewneck sweatshirt with black accents.
                                    • 80% cotton/20% polyester fleece.
                                    • Patterned knit hood lining.
                                    • Knit cuffs and waist.
                                    • Pouch pocket.
                                    • Curl edged seam detail

                                    ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"grayson-crewneck-sweatshirt-m-white-220","links":{},"stock":{"item_id":220,"product_id":220,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-m-white-220.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"207","_score":1,"_source":{"id":207,"sku":"MH10-L-Red","name":"Mach Street Sweatshirt -L-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                                    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                                    \n

                                    • Navy heather crewneck sweatshirt.
                                    • LumaTech™ moisture-wicking fabric.
                                    • Antimicrobial, odor-resistant.
                                    • Zip hand pockets.
                                    • Chafe-resistant flatlock seams.
                                    • Rib-knit cuffs and hem.

                                    ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mach-street-sweatshirt-l-red-207","links":{},"stock":{"item_id":207,"product_id":207,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-l-red-207.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"246","_score":1,"_source":{"id":246,"sku":"MH13-XS-Lavender","name":"Marco Lightweight Active Hoodie-XS-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                                    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                                    \n

                                    • Light blue heather full zip hoodie.
                                    • Fitted flatlock seams.
                                    • Matching lining and drawstring.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xs-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"marco-lightweight-active-hoodie-xs-lavender-246","links":{},"stock":{"item_id":246,"product_id":246,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xs-lavender-246.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"210","_score":1,"_source":{"id":210,"sku":"MH10-XL-Red","name":"Mach Street Sweatshirt -XL-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                                    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                                    \n

                                    • Navy heather crewneck sweatshirt.
                                    • LumaTech™ moisture-wicking fabric.
                                    • Antimicrobial, odor-resistant.
                                    • Zip hand pockets.
                                    • Chafe-resistant flatlock seams.
                                    • Rib-knit cuffs and hem.

                                    ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mach-street-sweatshirt-xl-red-210","links":{},"stock":{"item_id":210,"product_id":210,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xl-red-210.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"234","_score":1,"_source":{"id":234,"sku":"MH12-M-Blue","name":"Ajax Full-Zip Sweatshirt -M-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                                    \n

                                    • Mint striped full zip hoodie.
                                    • 100% bonded polyester fleece.
                                    • Pouch pocket.
                                    • Rib cuffs and hem.
                                    • Machine washable.

                                    ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ajax-full-zip-sweatshirt-m-blue-234","links":{},"stock":{"item_id":234,"product_id":234,"stock_id":1,"qty":84,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-m-blue-234.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"245","_score":1,"_source":{"id":245,"sku":"MH13-XS-Green","name":"Marco Lightweight Active Hoodie-XS-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                                    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                                    \n

                                    • Light blue heather full zip hoodie.
                                    • Fitted flatlock seams.
                                    • Matching lining and drawstring.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"marco-lightweight-active-hoodie-xs-green-245","links":{},"stock":{"item_id":245,"product_id":245,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xs-green-245.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"223","_score":1,"_source":{"id":223,"sku":"MH11-L-White","name":"Grayson Crewneck Sweatshirt -L-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                                    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                                    \n

                                    • Cream crewneck sweatshirt with black accents.
                                    • 80% cotton/20% polyester fleece.
                                    • Patterned knit hood lining.
                                    • Knit cuffs and waist.
                                    • Pouch pocket.
                                    • Curl edged seam detail

                                    ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"grayson-crewneck-sweatshirt-l-white-223","links":{},"stock":{"item_id":223,"product_id":223,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-l-white-223.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"237","_score":1,"_source":{"id":237,"sku":"MH12-L-Blue","name":"Ajax Full-Zip Sweatshirt -L-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                                    \n

                                    • Mint striped full zip hoodie.
                                    • 100% bonded polyester fleece.
                                    • Pouch pocket.
                                    • Rib cuffs and hem.
                                    • Machine washable.

                                    ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ajax-full-zip-sweatshirt-l-blue-237","links":{},"stock":{"item_id":237,"product_id":237,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-l-blue-237.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"232","_score":1,"_source":{"id":232,"sku":"MH12-S-Green","name":"Ajax Full-Zip Sweatshirt -S-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                                    \n

                                    • Mint striped full zip hoodie.
                                    • 100% bonded polyester fleece.
                                    • Pouch pocket.
                                    • Rib cuffs and hem.
                                    • Machine washable.

                                    ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ajax-full-zip-sweatshirt-s-green-232","links":{},"stock":{"item_id":232,"product_id":232,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-s-green-232.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"226","_score":1,"_source":{"id":226,"sku":"MH11-XL-White","name":"Grayson Crewneck Sweatshirt -XL-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                                    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                                    \n

                                    • Cream crewneck sweatshirt with black accents.
                                    • 80% cotton/20% polyester fleece.
                                    • Patterned knit hood lining.
                                    • Knit cuffs and waist.
                                    • Pouch pocket.
                                    • Curl edged seam detail

                                    ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"grayson-crewneck-sweatshirt-xl-white-226","links":{},"stock":{"item_id":226,"product_id":226,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xl-white-226.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"231","_score":1,"_source":{"id":231,"sku":"MH12-S-Blue","name":"Ajax Full-Zip Sweatshirt -S-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                                    \n

                                    • Mint striped full zip hoodie.
                                    • 100% bonded polyester fleece.
                                    • Pouch pocket.
                                    • Rib cuffs and hem.
                                    • Machine washable.

                                    ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ajax-full-zip-sweatshirt-s-blue-231","links":{},"stock":{"item_id":231,"product_id":231,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-s-blue-231.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"228","_score":1,"_source":{"id":228,"sku":"MH12-XS-Blue","name":"Ajax Full-Zip Sweatshirt -XS-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                                    \n

                                    • Mint striped full zip hoodie.
                                    • 100% bonded polyester fleece.
                                    • Pouch pocket.
                                    • Rib cuffs and hem.
                                    • Machine washable.

                                    ","image":"/m/h/mh12-blue_main.jpg","small_image":"/m/h/mh12-blue_main.jpg","thumbnail":"/m/h/mh12-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ajax-full-zip-sweatshirt-xs-blue-228","links":{},"stock":{"item_id":228,"product_id":228,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh12-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xs-blue-228.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"238","_score":1,"_source":{"id":238,"sku":"MH12-L-Green","name":"Ajax Full-Zip Sweatshirt -L-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                                    \n

                                    • Mint striped full zip hoodie.
                                    • 100% bonded polyester fleece.
                                    • Pouch pocket.
                                    • Rib cuffs and hem.
                                    • Machine washable.

                                    ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ajax-full-zip-sweatshirt-l-green-238","links":{},"stock":{"item_id":238,"product_id":238,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-l-green-238.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"250","_score":1,"_source":{"id":250,"sku":"MH13-M-Blue","name":"Marco Lightweight Active Hoodie-M-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                                    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                                    \n

                                    • Light blue heather full zip hoodie.
                                    • Fitted flatlock seams.
                                    • Matching lining and drawstring.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"marco-lightweight-active-hoodie-m-blue-250","links":{},"stock":{"item_id":250,"product_id":250,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-m-blue-250.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"244","_score":1,"_source":{"id":244,"sku":"MH13-XS-Blue","name":"Marco Lightweight Active Hoodie-XS-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                                    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                                    \n

                                    • Light blue heather full zip hoodie.
                                    • Fitted flatlock seams.
                                    • Matching lining and drawstring.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"marco-lightweight-active-hoodie-xs-blue-244","links":{},"stock":{"item_id":244,"product_id":244,"stock_id":1,"qty":39,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xs-blue-244.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"235","_score":1,"_source":{"id":235,"sku":"MH12-M-Green","name":"Ajax Full-Zip Sweatshirt -M-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                                    \n

                                    • Mint striped full zip hoodie.
                                    • 100% bonded polyester fleece.
                                    • Pouch pocket.
                                    • Rib cuffs and hem.
                                    • Machine washable.

                                    ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ajax-full-zip-sweatshirt-m-green-235","links":{},"stock":{"item_id":235,"product_id":235,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-m-green-235.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"247","_score":1,"_source":{"id":247,"sku":"MH13-S-Blue","name":"Marco Lightweight Active Hoodie-S-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                                    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                                    \n

                                    • Light blue heather full zip hoodie.
                                    • Fitted flatlock seams.
                                    • Matching lining and drawstring.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"marco-lightweight-active-hoodie-s-blue-247","links":{},"stock":{"item_id":247,"product_id":247,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-s-blue-247.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"249","_score":1,"_source":{"id":249,"sku":"MH13-S-Lavender","name":"Marco Lightweight Active Hoodie-S-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                                    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                                    \n

                                    • Light blue heather full zip hoodie.
                                    • Fitted flatlock seams.
                                    • Matching lining and drawstring.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-s-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"marco-lightweight-active-hoodie-s-lavender-249","links":{},"stock":{"item_id":249,"product_id":249,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-s-lavender-249.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"229","_score":1,"_source":{"id":229,"sku":"MH12-XS-Green","name":"Ajax Full-Zip Sweatshirt -XS-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                                    \n

                                    • Mint striped full zip hoodie.
                                    • 100% bonded polyester fleece.
                                    • Pouch pocket.
                                    • Rib cuffs and hem.
                                    • Machine washable.

                                    ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ajax-full-zip-sweatshirt-xs-green-229","links":{},"stock":{"item_id":229,"product_id":229,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xs-green-229.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"239","_score":1,"_source":{"id":239,"sku":"MH12-L-Red","name":"Ajax Full-Zip Sweatshirt -L-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                                    \n

                                    • Mint striped full zip hoodie.
                                    • 100% bonded polyester fleece.
                                    • Pouch pocket.
                                    • Rib cuffs and hem.
                                    • Machine washable.

                                    ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ajax-full-zip-sweatshirt-l-red-239","links":{},"stock":{"item_id":239,"product_id":239,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-l-red-239.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"242","_score":1,"_source":{"id":242,"sku":"MH12-XL-Red","name":"Ajax Full-Zip Sweatshirt -XL-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                                    \n

                                    • Mint striped full zip hoodie.
                                    • 100% bonded polyester fleece.
                                    • Pouch pocket.
                                    • Rib cuffs and hem.
                                    • Machine washable.

                                    ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ajax-full-zip-sweatshirt-xl-red-242","links":{},"stock":{"item_id":242,"product_id":242,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xl-red-242.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"236","_score":1,"_source":{"id":236,"sku":"MH12-M-Red","name":"Ajax Full-Zip Sweatshirt -M-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                                    \n

                                    • Mint striped full zip hoodie.
                                    • 100% bonded polyester fleece.
                                    • Pouch pocket.
                                    • Rib cuffs and hem.
                                    • Machine washable.

                                    ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ajax-full-zip-sweatshirt-m-red-236","links":{},"stock":{"item_id":236,"product_id":236,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-m-red-236.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"248","_score":1,"_source":{"id":248,"sku":"MH13-S-Green","name":"Marco Lightweight Active Hoodie-S-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                                    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                                    \n

                                    • Light blue heather full zip hoodie.
                                    • Fitted flatlock seams.
                                    • Matching lining and drawstring.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"marco-lightweight-active-hoodie-s-green-248","links":{},"stock":{"item_id":248,"product_id":248,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-s-green-248.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"241","_score":1,"_source":{"id":241,"sku":"MH12-XL-Green","name":"Ajax Full-Zip Sweatshirt -XL-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                                    \n

                                    • Mint striped full zip hoodie.
                                    • 100% bonded polyester fleece.
                                    • Pouch pocket.
                                    • Rib cuffs and hem.
                                    • Machine washable.

                                    ","image":"/m/h/mh12-green_main.jpg","small_image":"/m/h/mh12-green_main.jpg","thumbnail":"/m/h/mh12-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ajax-full-zip-sweatshirt-xl-green-241","links":{},"stock":{"item_id":241,"product_id":241,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh12-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh12-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh12-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xl-green-241.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"187","_score":1,"_source":{"id":187,"sku":"MH09-M-Green","name":"Abominable Hoodie-M-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                                    \n

                                    • Blue heather hoodie.
                                    • Relaxed fit.
                                    • Moisture-wicking.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"abominable-hoodie-m-green-187","links":{},"stock":{"item_id":187,"product_id":187,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-m-green-187.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"178","_score":1,"_source":{"id":178,"sku":"MH08-XL-Red","name":"Oslo Trek Hoodie-XL-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                                    \n

                                    • Brown hoodie with black detail.
                                    • Pullover.
                                    • Adjustable drawstring hood.
                                    • Ribbed cuffs/waistband.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"oslo-trek-hoodie-xl-red-178","links":{},"stock":{"item_id":178,"product_id":178,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xl-red-178.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"181","_score":1,"_source":{"id":181,"sku":"MH09-XS-Green","name":"Abominable Hoodie-XS-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                                    \n

                                    • Blue heather hoodie.
                                    • Relaxed fit.
                                    • Moisture-wicking.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"abominable-hoodie-xs-green-181","links":{},"stock":{"item_id":181,"product_id":181,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xs-green-181.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"154","_score":1,"_source":{"id":154,"sku":"MH07-M-Black","name":"Hero Hoodie-M-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                                    Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                                    \n

                                    • Full-zip gray and black hoodie.
                                    • Ribbed hem.
                                    • Standard fit.
                                    • Drawcord hood cinch.
                                    • Water-resistant coating.

                                    ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hero-hoodie-m-black-154","links":{},"stock":{"item_id":154,"product_id":154,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-m-black-154.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"172","_score":1,"_source":{"id":172,"sku":"MH08-M-Red","name":"Oslo Trek Hoodie-M-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2019-03-22 08:35:33","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":30,"max_price":30,"max_regular_price":30,"minimal_regular_price":30,"special_price":"30.0000","minimal_price":30,"regular_price":42,"description":"

                                    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                                    \r\n

                                    • Brown hoodie with black detail.
                                    • Pullover.
                                    • Adjustable drawstring hood.
                                    • Ribbed cuffs/waistband.
                                    • Machine wash/dry.

                                    ","special_from_date":"2019-03-22 08:35:33","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-m-red","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"169","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"oslo-trek-hoodie-m-red-172","links":{},"stock":{"item_id":172,"product_id":172,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":null}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-m-red-172.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"169","_score":1,"_source":{"id":169,"sku":"MH08-S-Red","name":"Oslo Trek Hoodie-S-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                                    \n

                                    • Brown hoodie with black detail.
                                    • Pullover.
                                    • Adjustable drawstring hood.
                                    • Ribbed cuffs/waistband.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"oslo-trek-hoodie-s-red-169","links":{},"stock":{"item_id":169,"product_id":169,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-s-red-169.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"170","_score":1,"_source":{"id":170,"sku":"MH08-M-Brown","name":"Oslo Trek Hoodie-M-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                                    \n

                                    • Brown hoodie with black detail.
                                    • Pullover.
                                    • Adjustable drawstring hood.
                                    • Ribbed cuffs/waistband.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-m-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"oslo-trek-hoodie-m-brown-170","links":{},"stock":{"item_id":170,"product_id":170,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-m-brown-170.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"175","_score":1,"_source":{"id":175,"sku":"MH08-L-Red","name":"Oslo Trek Hoodie-L-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                                    \n

                                    • Brown hoodie with black detail.
                                    • Pullover.
                                    • Adjustable drawstring hood.
                                    • Ribbed cuffs/waistband.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"oslo-trek-hoodie-l-red-175","links":{},"stock":{"item_id":175,"product_id":175,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-l-red-175.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"188","_score":1,"_source":{"id":188,"sku":"MH09-M-Red","name":"Abominable Hoodie-M-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                                    \n

                                    • Blue heather hoodie.
                                    • Relaxed fit.
                                    • Moisture-wicking.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"abominable-hoodie-m-red-188","links":{},"stock":{"item_id":188,"product_id":188,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-m-red-188.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"155","_score":1,"_source":{"id":155,"sku":"MH07-M-Gray","name":"Hero Hoodie-M-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                                    Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                                    \n

                                    • Full-zip gray and black hoodie.
                                    • Ribbed hem.
                                    • Standard fit.
                                    • Drawcord hood cinch.
                                    • Water-resistant coating.

                                    ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hero-hoodie-m-gray-155","links":{},"stock":{"item_id":155,"product_id":155,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-m-gray-155.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"166","_score":1,"_source":{"id":166,"sku":"MH08-XS-Red","name":"Oslo Trek Hoodie-XS-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                                    \n

                                    • Brown hoodie with black detail.
                                    • Pullover.
                                    • Adjustable drawstring hood.
                                    • Ribbed cuffs/waistband.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh08-red_main.jpg","small_image":"/m/h/mh08-red_main.jpg","thumbnail":"/m/h/mh08-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"oslo-trek-hoodie-xs-red-166","links":{},"stock":{"item_id":166,"product_id":166,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh08-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xs-red-166.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"192","_score":1,"_source":{"id":192,"sku":"MH09-XL-Blue","name":"Abominable Hoodie-XL-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                                    \n

                                    • Blue heather hoodie.
                                    • Relaxed fit.
                                    • Moisture-wicking.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"abominable-hoodie-xl-blue-192","links":{},"stock":{"item_id":192,"product_id":192,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xl-blue-192.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"158","_score":1,"_source":{"id":158,"sku":"MH07-L-Gray","name":"Hero Hoodie-L-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                                    Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                                    \n

                                    • Full-zip gray and black hoodie.
                                    • Ribbed hem.
                                    • Standard fit.
                                    • Drawcord hood cinch.
                                    • Water-resistant coating.

                                    ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hero-hoodie-l-gray-158","links":{},"stock":{"item_id":158,"product_id":158,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-l-gray-158.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"162","_score":1,"_source":{"id":162,"sku":"MH07-XL-Green","name":"Hero Hoodie-XL-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                                    Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                                    \n

                                    • Full-zip gray and black hoodie.
                                    • Ribbed hem.
                                    • Standard fit.
                                    • Drawcord hood cinch.
                                    • Water-resistant coating.

                                    ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hero-hoodie-xl-green-162","links":{},"stock":{"item_id":162,"product_id":162,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xl-green-162.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"185","_score":1,"_source":{"id":185,"sku":"MH09-S-Red","name":"Abominable Hoodie-S-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                                    \n

                                    • Blue heather hoodie.
                                    • Relaxed fit.
                                    • Moisture-wicking.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"abominable-hoodie-s-red-185","links":{},"stock":{"item_id":185,"product_id":185,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-s-red-185.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"183","_score":1,"_source":{"id":183,"sku":"MH09-S-Blue","name":"Abominable Hoodie-S-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                                    \n

                                    • Blue heather hoodie.
                                    • Relaxed fit.
                                    • Moisture-wicking.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"abominable-hoodie-s-blue-183","links":{},"stock":{"item_id":183,"product_id":183,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-s-blue-183.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"189","_score":1,"_source":{"id":189,"sku":"MH09-L-Blue","name":"Abominable Hoodie-L-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                                    \n

                                    • Blue heather hoodie.
                                    • Relaxed fit.
                                    • Moisture-wicking.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"abominable-hoodie-l-blue-189","links":{},"stock":{"item_id":189,"product_id":189,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-l-blue-189.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"182","_score":1,"_source":{"id":182,"sku":"MH09-XS-Red","name":"Abominable Hoodie-XS-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                                    \n

                                    • Blue heather hoodie.
                                    • Relaxed fit.
                                    • Moisture-wicking.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"abominable-hoodie-xs-red-182","links":{},"stock":{"item_id":182,"product_id":182,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xs-red-182.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"190","_score":1,"_source":{"id":190,"sku":"MH09-L-Green","name":"Abominable Hoodie-L-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                                    \n

                                    • Blue heather hoodie.
                                    • Relaxed fit.
                                    • Moisture-wicking.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"abominable-hoodie-l-green-190","links":{},"stock":{"item_id":190,"product_id":190,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-l-green-190.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"196","_score":1,"_source":{"id":196,"sku":"MH10-XS-Black","name":"Mach Street Sweatshirt -XS-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                                    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                                    \n

                                    • Navy heather crewneck sweatshirt.
                                    • LumaTech™ moisture-wicking fabric.
                                    • Antimicrobial, odor-resistant.
                                    • Zip hand pockets.
                                    • Chafe-resistant flatlock seams.
                                    • Rib-knit cuffs and hem.

                                    ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mach-street-sweatshirt-xs-black-196","links":{},"stock":{"item_id":196,"product_id":196,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xs-black-196.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"199","_score":1,"_source":{"id":199,"sku":"MH10-S-Black","name":"Mach Street Sweatshirt -S-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                                    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                                    \n

                                    • Navy heather crewneck sweatshirt.
                                    • LumaTech™ moisture-wicking fabric.
                                    • Antimicrobial, odor-resistant.
                                    • Zip hand pockets.
                                    • Chafe-resistant flatlock seams.
                                    • Rib-knit cuffs and hem.

                                    ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mach-street-sweatshirt-s-black-199","links":{},"stock":{"item_id":199,"product_id":199,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-s-black-199.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"197","_score":1,"_source":{"id":197,"sku":"MH10-XS-Blue","name":"Mach Street Sweatshirt -XS-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                                    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                                    \n

                                    • Navy heather crewneck sweatshirt.
                                    • LumaTech™ moisture-wicking fabric.
                                    • Antimicrobial, odor-resistant.
                                    • Zip hand pockets.
                                    • Chafe-resistant flatlock seams.
                                    • Rib-knit cuffs and hem.

                                    ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mach-street-sweatshirt-xs-blue-197","links":{},"stock":{"item_id":197,"product_id":197,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xs-blue-197.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"255","_score":1,"_source":{"id":255,"sku":"MH13-L-Lavender","name":"Marco Lightweight Active Hoodie-L-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                                    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                                    \n

                                    • Light blue heather full zip hoodie.
                                    • Fitted flatlock seams.
                                    • Matching lining and drawstring.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-l-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"marco-lightweight-active-hoodie-l-lavender-255","links":{},"stock":{"item_id":255,"product_id":255,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-l-lavender-255.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"252","_score":1,"_source":{"id":252,"sku":"MH13-M-Lavender","name":"Marco Lightweight Active Hoodie-M-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                                    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                                    \n

                                    • Light blue heather full zip hoodie.
                                    • Fitted flatlock seams.
                                    • Matching lining and drawstring.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-m-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"marco-lightweight-active-hoodie-m-lavender-252","links":{},"stock":{"item_id":252,"product_id":252,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-m-lavender-252.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"251","_score":1,"_source":{"id":251,"sku":"MH13-M-Green","name":"Marco Lightweight Active Hoodie-M-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                                    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                                    \n

                                    • Light blue heather full zip hoodie.
                                    • Fitted flatlock seams.
                                    • Matching lining and drawstring.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"marco-lightweight-active-hoodie-m-green-251","links":{},"stock":{"item_id":251,"product_id":251,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-m-green-251.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"256","_score":1,"_source":{"id":256,"sku":"MH13-XL-Blue","name":"Marco Lightweight Active Hoodie-XL-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                                    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                                    \n

                                    • Light blue heather full zip hoodie.
                                    • Fitted flatlock seams.
                                    • Matching lining and drawstring.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"marco-lightweight-active-hoodie-xl-blue-256","links":{},"stock":{"item_id":256,"product_id":256,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xl-blue-256.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"266","_score":1,"_source":{"id":266,"sku":"MJ01-M-Orange","name":"Beaumont Summit Kit-M-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                                    \n

                                    • Yellow full zip rain jacket.
                                    • Full-zip front.
                                    • Stand-up collar.
                                    • Elasticized cuffs.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"beaumont-summit-kit-m-orange-266","links":{},"stock":{"item_id":266,"product_id":266,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-m-orange-266.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"263","_score":1,"_source":{"id":263,"sku":"MJ01-S-Orange","name":"Beaumont Summit Kit-S-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                                    \n

                                    • Yellow full zip rain jacket.
                                    • Full-zip front.
                                    • Stand-up collar.
                                    • Elasticized cuffs.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"beaumont-summit-kit-s-orange-263","links":{},"stock":{"item_id":263,"product_id":263,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-s-orange-263.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"257","_score":1,"_source":{"id":257,"sku":"MH13-XL-Green","name":"Marco Lightweight Active Hoodie-XL-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                                    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                                    \n

                                    • Light blue heather full zip hoodie.
                                    • Fitted flatlock seams.
                                    • Matching lining and drawstring.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"marco-lightweight-active-hoodie-xl-green-257","links":{},"stock":{"item_id":257,"product_id":257,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xl-green-257.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"260","_score":1,"_source":{"id":260,"sku":"MJ01-XS-Orange","name":"Beaumont Summit Kit-XS-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                                    \n

                                    • Yellow full zip rain jacket.
                                    • Full-zip front.
                                    • Stand-up collar.
                                    • Elasticized cuffs.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"beaumont-summit-kit-xs-orange-260","links":{},"stock":{"item_id":260,"product_id":260,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xs-orange-260.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"258","_score":1,"_source":{"id":258,"sku":"MH13-XL-Lavender","name":"Marco Lightweight Active Hoodie-XL-Lavender","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                                    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                                    \n

                                    • Light blue heather full zip hoodie.
                                    • Fitted flatlock seams.
                                    • Matching lining and drawstring.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh13-lavender_main.jpg","small_image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-xl-lavender","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"marco-lightweight-active-hoodie-xl-lavender-258","links":{},"stock":{"item_id":258,"product_id":258,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh13-lavender_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-xl-lavender-258.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"271","_score":1,"_source":{"id":271,"sku":"MJ01-L-Yellow","name":"Beaumont Summit Kit-L-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                                    \n

                                    • Yellow full zip rain jacket.
                                    • Full-zip front.
                                    • Stand-up collar.
                                    • Elasticized cuffs.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"beaumont-summit-kit-l-yellow-271","links":{},"stock":{"item_id":271,"product_id":271,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-l-yellow-271.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"254","_score":1,"_source":{"id":254,"sku":"MH13-L-Green","name":"Marco Lightweight Active Hoodie-L-Green","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                                    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                                    \n

                                    • Light blue heather full zip hoodie.
                                    • Fitted flatlock seams.
                                    • Matching lining and drawstring.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh13-green_main.jpg","small_image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"marco-lightweight-active-hoodie-l-green-254","links":{},"stock":{"item_id":254,"product_id":254,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh13-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-l-green-254.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"253","_score":1,"_source":{"id":253,"sku":"MH13-L-Blue","name":"Marco Lightweight Active Hoodie-L-Blue","attribute_set_id":9,"price":74,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                                    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                                    \n

                                    • Light blue heather full zip hoodie.
                                    • Fitted flatlock seams.
                                    • Matching lining and drawstring.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"marco-lightweight-active-hoodie-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"marco-lightweight-active-hoodie-l-blue-253","links":{},"stock":{"item_id":253,"product_id":253,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-l-blue-253.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"268","_score":1,"_source":{"id":268,"sku":"MJ01-M-Yellow","name":"Beaumont Summit Kit-M-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                                    \n

                                    • Yellow full zip rain jacket.
                                    • Full-zip front.
                                    • Stand-up collar.
                                    • Elasticized cuffs.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"beaumont-summit-kit-m-yellow-268","links":{},"stock":{"item_id":268,"product_id":268,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-m-yellow-268.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"272","_score":1,"_source":{"id":272,"sku":"MJ01-XL-Orange","name":"Beaumont Summit Kit-XL-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                                    \n

                                    • Yellow full zip rain jacket.
                                    • Full-zip front.
                                    • Stand-up collar.
                                    • Elasticized cuffs.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"beaumont-summit-kit-xl-orange-272","links":{},"stock":{"item_id":272,"product_id":272,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xl-orange-272.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"264","_score":1,"_source":{"id":264,"sku":"MJ01-S-Red","name":"Beaumont Summit Kit-S-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                                    \n

                                    • Yellow full zip rain jacket.
                                    • Full-zip front.
                                    • Stand-up collar.
                                    • Elasticized cuffs.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"beaumont-summit-kit-s-red-264","links":{},"stock":{"item_id":264,"product_id":264,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-s-red-264.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"267","_score":1,"_source":{"id":267,"sku":"MJ01-M-Red","name":"Beaumont Summit Kit-M-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                                    \n

                                    • Yellow full zip rain jacket.
                                    • Full-zip front.
                                    • Stand-up collar.
                                    • Elasticized cuffs.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"beaumont-summit-kit-m-red-267","links":{},"stock":{"item_id":267,"product_id":267,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-m-red-267.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"297","_score":1,"_source":{"id":297,"sku":"MJ04-S-Purple","name":"Kenobi Trail Jacket-S-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                                    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                                    \n

                                    • Black 1/4 zip pullover with royal zipper.
                                    • Adjustable hood and sleeve cuffs.
                                    • Machine wash/air dry.

                                    ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"kenobi-trail-jacket-s-purple-297","links":{},"stock":{"item_id":297,"product_id":297,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-s-purple-297.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"265","_score":1,"_source":{"id":265,"sku":"MJ01-S-Yellow","name":"Beaumont Summit Kit-S-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                                    \n

                                    • Yellow full zip rain jacket.
                                    • Full-zip front.
                                    • Stand-up collar.
                                    • Elasticized cuffs.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"beaumont-summit-kit-s-yellow-265","links":{},"stock":{"item_id":265,"product_id":265,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-s-yellow-265.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"276","_score":1,"_source":{"id":276,"sku":"MJ02-XS-Green","name":"Hyperion Elements Jacket-XS-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                                    \n

                                    • Lime 1/4 zip pullover.
                                    • Split pocket.
                                    • Thumb holes.
                                    • Machine wash/hang to dry.

                                    ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hyperion-elements-jacket-xs-green-276","links":{},"stock":{"item_id":276,"product_id":276,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xs-green-276.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"281","_score":1,"_source":{"id":281,"sku":"MJ02-S-Red","name":"Hyperion Elements Jacket-S-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                                    \n

                                    • Lime 1/4 zip pullover.
                                    • Split pocket.
                                    • Thumb holes.
                                    • Machine wash/hang to dry.

                                    ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hyperion-elements-jacket-s-red-281","links":{},"stock":{"item_id":281,"product_id":281,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-s-red-281.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"273","_score":1,"_source":{"id":273,"sku":"MJ01-XL-Red","name":"Beaumont Summit Kit-XL-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                                    \n

                                    • Yellow full zip rain jacket.
                                    • Full-zip front.
                                    • Stand-up collar.
                                    • Elasticized cuffs.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"beaumont-summit-kit-xl-red-273","links":{},"stock":{"item_id":273,"product_id":273,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xl-red-273.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"204","_score":1,"_source":{"id":204,"sku":"MH10-M-Red","name":"Mach Street Sweatshirt -M-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                                    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                                    \n

                                    • Navy heather crewneck sweatshirt.
                                    • LumaTech™ moisture-wicking fabric.
                                    • Antimicrobial, odor-resistant.
                                    • Zip hand pockets.
                                    • Chafe-resistant flatlock seams.
                                    • Rib-knit cuffs and hem.

                                    ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mach-street-sweatshirt-m-red-204","links":{},"stock":{"item_id":204,"product_id":204,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-m-red-204.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"222","_score":1,"_source":{"id":222,"sku":"MH11-L-Red","name":"Grayson Crewneck Sweatshirt -L-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                                    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                                    \n

                                    • Cream crewneck sweatshirt with black accents.
                                    • 80% cotton/20% polyester fleece.
                                    • Patterned knit hood lining.
                                    • Knit cuffs and waist.
                                    • Pouch pocket.
                                    • Curl edged seam detail

                                    ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"grayson-crewneck-sweatshirt-l-red-222","links":{},"stock":{"item_id":222,"product_id":222,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-l-red-222.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"216","_score":1,"_source":{"id":216,"sku":"MH11-S-Red","name":"Grayson Crewneck Sweatshirt -S-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                                    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                                    \n

                                    • Cream crewneck sweatshirt with black accents.
                                    • 80% cotton/20% polyester fleece.
                                    • Patterned knit hood lining.
                                    • Knit cuffs and waist.
                                    • Pouch pocket.
                                    • Curl edged seam detail

                                    ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"grayson-crewneck-sweatshirt-s-red-216","links":{},"stock":{"item_id":216,"product_id":216,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-s-red-216.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"219","_score":1,"_source":{"id":219,"sku":"MH11-M-Red","name":"Grayson Crewneck Sweatshirt -M-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                                    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                                    \n

                                    • Cream crewneck sweatshirt with black accents.
                                    • 80% cotton/20% polyester fleece.
                                    • Patterned knit hood lining.
                                    • Knit cuffs and waist.
                                    • Pouch pocket.
                                    • Curl edged seam detail

                                    ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"grayson-crewneck-sweatshirt-m-red-219","links":{},"stock":{"item_id":219,"product_id":219,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-m-red-219.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"214","_score":1,"_source":{"id":214,"sku":"MH11-XS-White","name":"Grayson Crewneck Sweatshirt -XS-White","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                                    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                                    \n

                                    • Cream crewneck sweatshirt with black accents.
                                    • 80% cotton/20% polyester fleece.
                                    • Patterned knit hood lining.
                                    • Knit cuffs and waist.
                                    • Pouch pocket.
                                    • Curl edged seam detail

                                    ","image":"/m/h/mh11-white_main.jpg","small_image":"/m/h/mh11-white_main.jpg","thumbnail":"/m/h/mh11-white_main.jpg","color":"59","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"grayson-crewneck-sweatshirt-xs-white-214","links":{},"stock":{"item_id":214,"product_id":214,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh11-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh11-white_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh11-white_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xs-white-214.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"201","_score":1,"_source":{"id":201,"sku":"MH10-S-Red","name":"Mach Street Sweatshirt -S-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                                    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                                    \n

                                    • Navy heather crewneck sweatshirt.
                                    • LumaTech™ moisture-wicking fabric.
                                    • Antimicrobial, odor-resistant.
                                    • Zip hand pockets.
                                    • Chafe-resistant flatlock seams.
                                    • Rib-knit cuffs and hem.

                                    ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mach-street-sweatshirt-s-red-201","links":{},"stock":{"item_id":201,"product_id":201,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-s-red-201.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"202","_score":1,"_source":{"id":202,"sku":"MH10-M-Black","name":"Mach Street Sweatshirt -M-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                                    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                                    \n

                                    • Navy heather crewneck sweatshirt.
                                    • LumaTech™ moisture-wicking fabric.
                                    • Antimicrobial, odor-resistant.
                                    • Zip hand pockets.
                                    • Chafe-resistant flatlock seams.
                                    • Rib-knit cuffs and hem.

                                    ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mach-street-sweatshirt-m-black-202","links":{},"stock":{"item_id":202,"product_id":202,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-m-black-202.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"208","_score":1,"_source":{"id":208,"sku":"MH10-XL-Black","name":"Mach Street Sweatshirt -XL-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                                    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                                    \n

                                    • Navy heather crewneck sweatshirt.
                                    • LumaTech™ moisture-wicking fabric.
                                    • Antimicrobial, odor-resistant.
                                    • Zip hand pockets.
                                    • Chafe-resistant flatlock seams.
                                    • Rib-knit cuffs and hem.

                                    ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mach-street-sweatshirt-xl-black-208","links":{},"stock":{"item_id":208,"product_id":208,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xl-black-208.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"218","_score":1,"_source":{"id":218,"sku":"MH11-M-Orange","name":"Grayson Crewneck Sweatshirt -M-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                                    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                                    \n

                                    • Cream crewneck sweatshirt with black accents.
                                    • 80% cotton/20% polyester fleece.
                                    • Patterned knit hood lining.
                                    • Knit cuffs and waist.
                                    • Pouch pocket.
                                    • Curl edged seam detail

                                    ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"grayson-crewneck-sweatshirt-m-orange-218","links":{},"stock":{"item_id":218,"product_id":218,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-m-orange-218.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"206","_score":1,"_source":{"id":206,"sku":"MH10-L-Blue","name":"Mach Street Sweatshirt -L-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                                    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                                    \n

                                    • Navy heather crewneck sweatshirt.
                                    • LumaTech™ moisture-wicking fabric.
                                    • Antimicrobial, odor-resistant.
                                    • Zip hand pockets.
                                    • Chafe-resistant flatlock seams.
                                    • Rib-knit cuffs and hem.

                                    ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mach-street-sweatshirt-l-blue-206","links":{},"stock":{"item_id":206,"product_id":206,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-l-blue-206.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"203","_score":1,"_source":{"id":203,"sku":"MH10-M-Blue","name":"Mach Street Sweatshirt -M-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                                    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                                    \n

                                    • Navy heather crewneck sweatshirt.
                                    • LumaTech™ moisture-wicking fabric.
                                    • Antimicrobial, odor-resistant.
                                    • Zip hand pockets.
                                    • Chafe-resistant flatlock seams.
                                    • Rib-knit cuffs and hem.

                                    ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mach-street-sweatshirt-m-blue-203","links":{},"stock":{"item_id":203,"product_id":203,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-m-blue-203.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"205","_score":1,"_source":{"id":205,"sku":"MH10-L-Black","name":"Mach Street Sweatshirt -L-Black","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                                    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                                    \n

                                    • Navy heather crewneck sweatshirt.
                                    • LumaTech™ moisture-wicking fabric.
                                    • Antimicrobial, odor-resistant.
                                    • Zip hand pockets.
                                    • Chafe-resistant flatlock seams.
                                    • Rib-knit cuffs and hem.

                                    ","image":"/m/h/mh10-black_main.jpg","small_image":"/m/h/mh10-black_main.jpg","thumbnail":"/m/h/mh10-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mach-street-sweatshirt-l-black-205","links":{},"stock":{"item_id":205,"product_id":205,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh10-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-l-black-205.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"212","_score":1,"_source":{"id":212,"sku":"MH11-XS-Orange","name":"Grayson Crewneck Sweatshirt -XS-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                                    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                                    \n

                                    • Cream crewneck sweatshirt with black accents.
                                    • 80% cotton/20% polyester fleece.
                                    • Patterned knit hood lining.
                                    • Knit cuffs and waist.
                                    • Pouch pocket.
                                    • Curl edged seam detail

                                    ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"grayson-crewneck-sweatshirt-xs-orange-212","links":{},"stock":{"item_id":212,"product_id":212,"stock_id":1,"qty":17,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xs-orange-212.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"224","_score":1,"_source":{"id":224,"sku":"MH11-XL-Orange","name":"Grayson Crewneck Sweatshirt -XL-Orange","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                                    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                                    \n

                                    • Cream crewneck sweatshirt with black accents.
                                    • 80% cotton/20% polyester fleece.
                                    • Patterned knit hood lining.
                                    • Knit cuffs and waist.
                                    • Pouch pocket.
                                    • Curl edged seam detail

                                    ","image":"/m/h/mh11-orange_main.jpg","small_image":"/m/h/mh11-orange_main.jpg","thumbnail":"/m/h/mh11-orange_main.jpg","color":"56","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"grayson-crewneck-sweatshirt-xl-orange-224","links":{},"stock":{"item_id":224,"product_id":224,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh11-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xl-orange-224.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"209","_score":1,"_source":{"id":209,"sku":"MH10-XL-Blue","name":"Mach Street Sweatshirt -XL-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                                    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                                    \n

                                    • Navy heather crewneck sweatshirt.
                                    • LumaTech™ moisture-wicking fabric.
                                    • Antimicrobial, odor-resistant.
                                    • Zip hand pockets.
                                    • Chafe-resistant flatlock seams.
                                    • Rib-knit cuffs and hem.

                                    ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mach-street-sweatshirt-xl-blue-209","links":{},"stock":{"item_id":209,"product_id":209,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xl-blue-209.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"186","_score":1,"_source":{"id":186,"sku":"MH09-M-Blue","name":"Abominable Hoodie-M-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                                    \n

                                    • Blue heather hoodie.
                                    • Relaxed fit.
                                    • Moisture-wicking.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"abominable-hoodie-m-blue-186","links":{},"stock":{"item_id":186,"product_id":186,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-m-blue-186.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"180","_score":1,"_source":{"id":180,"sku":"MH09-XS-Blue","name":"Abominable Hoodie-XS-Blue","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-12-01 13:03:34","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":"20.0000","minimal_price":69,"regular_price":69,"description":"

                                    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                                    \r\n

                                    • Blue heather hoodie.
                                    • Relaxed fit.
                                    • Moisture-wicking.
                                    • Machine wash/dry.

                                    ","special_from_date":"2017-11-15 00:00:00","special_to_date":"2017-12-11 00:00:00","image":"/m/h/mh09-blue_main.jpg","small_image":"/m/h/mh09-blue_main.jpg","thumbnail":"/m/h/mh09-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xs-blue","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"167","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"abominable-hoodie-xs-blue-180","links":{},"stock":{"item_id":180,"product_id":180,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh09-blue_main.jpg","pos":1,"typ":"image","lab":null},{"vid":null,"image":"/m/h/mh09-blue_alt1.jpg","pos":2,"typ":"image","lab":null},{"vid":null,"image":"/m/h/mh09-blue_back.jpg","pos":3,"typ":"image","lab":null}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xs-blue-180.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"171","_score":1,"_source":{"id":171,"sku":"MH08-M-Purple","name":"Oslo Trek Hoodie-M-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                                    \n

                                    • Brown hoodie with black detail.
                                    • Pullover.
                                    • Adjustable drawstring hood.
                                    • Ribbed cuffs/waistband.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"oslo-trek-hoodie-m-purple-171","links":{},"stock":{"item_id":171,"product_id":171,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-m-purple-171.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"193","_score":1,"_source":{"id":193,"sku":"MH09-XL-Green","name":"Abominable Hoodie-XL-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                                    \n

                                    • Blue heather hoodie.
                                    • Relaxed fit.
                                    • Moisture-wicking.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"abominable-hoodie-xl-green-193","links":{},"stock":{"item_id":193,"product_id":193,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xl-green-193.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"200","_score":1,"_source":{"id":200,"sku":"MH10-S-Blue","name":"Mach Street Sweatshirt -S-Blue","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                                    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                                    \n

                                    • Navy heather crewneck sweatshirt.
                                    • LumaTech™ moisture-wicking fabric.
                                    • Antimicrobial, odor-resistant.
                                    • Zip hand pockets.
                                    • Chafe-resistant flatlock seams.
                                    • Rib-knit cuffs and hem.

                                    ","image":"/m/h/mh10-blue_main.jpg","small_image":"/m/h/mh10-blue_main.jpg","thumbnail":"/m/h/mh10-blue_main.jpg","color":"50","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mach-street-sweatshirt-s-blue-200","links":{},"stock":{"item_id":200,"product_id":200,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh10-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh10-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh10-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-s-blue-200.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"177","_score":1,"_source":{"id":177,"sku":"MH08-XL-Purple","name":"Oslo Trek Hoodie-XL-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                                    \n

                                    • Brown hoodie with black detail.
                                    • Pullover.
                                    • Adjustable drawstring hood.
                                    • Ribbed cuffs/waistband.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"oslo-trek-hoodie-xl-purple-177","links":{},"stock":{"item_id":177,"product_id":177,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xl-purple-177.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"191","_score":1,"_source":{"id":191,"sku":"MH09-L-Red","name":"Abominable Hoodie-L-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                                    \n

                                    • Blue heather hoodie.
                                    • Relaxed fit.
                                    • Moisture-wicking.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"abominable-hoodie-l-red-191","links":{},"stock":{"item_id":191,"product_id":191,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-l-red-191.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"184","_score":1,"_source":{"id":184,"sku":"MH09-S-Green","name":"Abominable Hoodie-S-Green","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                                    \n

                                    • Blue heather hoodie.
                                    • Relaxed fit.
                                    • Moisture-wicking.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh09-green_main.jpg","small_image":"/m/h/mh09-green_main.jpg","thumbnail":"/m/h/mh09-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"abominable-hoodie-s-green-184","links":{},"stock":{"item_id":184,"product_id":184,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh09-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-s-green-184.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"194","_score":1,"_source":{"id":194,"sku":"MH09-XL-Red","name":"Abominable Hoodie-XL-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It's aggressively warm when it needs to be, while maintaining your comfort in milder climes.

                                    \n

                                    • Blue heather hoodie.
                                    • Relaxed fit.
                                    • Moisture-wicking.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh09-red_main.jpg","small_image":"/m/h/mh09-red_main.jpg","thumbnail":"/m/h/mh09-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"abominable-hoodie-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"abominable-hoodie-xl-red-194","links":{},"stock":{"item_id":194,"product_id":194,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh09-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/abominable-hoodie-xl-red-194.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"198","_score":1,"_source":{"id":198,"sku":"MH10-XS-Red","name":"Mach Street Sweatshirt -XS-Red","attribute_set_id":9,"price":62,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":62,"max_price":62,"max_regular_price":62,"minimal_regular_price":62,"special_price":null,"minimal_price":62,"regular_price":62,"description":"

                                    From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it's bound to become an everyday part of your active lifestyle

                                    \n

                                    • Navy heather crewneck sweatshirt.
                                    • LumaTech™ moisture-wicking fabric.
                                    • Antimicrobial, odor-resistant.
                                    • Zip hand pockets.
                                    • Chafe-resistant flatlock seams.
                                    • Rib-knit cuffs and hem.

                                    ","image":"/m/h/mh10-red_main.jpg","small_image":"/m/h/mh10-red_main.jpg","thumbnail":"/m/h/mh10-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mach-street-sweatshirt-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mach-street-sweatshirt-xs-red-198","links":{},"stock":{"item_id":198,"product_id":198,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh10-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/mach-street-sweatshirt-xs-red-198.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"156","_score":1,"_source":{"id":156,"sku":"MH07-M-Green","name":"Hero Hoodie-M-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                                    Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                                    \n

                                    • Full-zip gray and black hoodie.
                                    • Ribbed hem.
                                    • Standard fit.
                                    • Drawcord hood cinch.
                                    • Water-resistant coating.

                                    ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hero-hoodie-m-green-156","links":{},"stock":{"item_id":156,"product_id":156,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-m-green-156.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"160","_score":1,"_source":{"id":160,"sku":"MH07-XL-Black","name":"Hero Hoodie-XL-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                                    Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                                    \n

                                    • Full-zip gray and black hoodie.
                                    • Ribbed hem.
                                    • Standard fit.
                                    • Drawcord hood cinch.
                                    • Water-resistant coating.

                                    ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hero-hoodie-xl-black-160","links":{},"stock":{"item_id":160,"product_id":160,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xl-black-160.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"152","_score":1,"_source":{"id":152,"sku":"MH07-S-Gray","name":"Hero Hoodie-S-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                                    Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                                    \n

                                    • Full-zip gray and black hoodie.
                                    • Ribbed hem.
                                    • Standard fit.
                                    • Drawcord hood cinch.
                                    • Water-resistant coating.

                                    ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hero-hoodie-s-gray-152","links":{},"stock":{"item_id":152,"product_id":152,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-s-gray-152.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"164","_score":1,"_source":{"id":164,"sku":"MH08-XS-Brown","name":"Oslo Trek Hoodie-XS-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                                    \n

                                    • Brown hoodie with black detail.
                                    • Pullover.
                                    • Adjustable drawstring hood.
                                    • Ribbed cuffs/waistband.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xs-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"oslo-trek-hoodie-xs-brown-164","links":{},"stock":{"item_id":164,"product_id":164,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xs-brown-164.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"159","_score":1,"_source":{"id":159,"sku":"MH07-L-Green","name":"Hero Hoodie-L-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                                    Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                                    \n

                                    • Full-zip gray and black hoodie.
                                    • Ribbed hem.
                                    • Standard fit.
                                    • Drawcord hood cinch.
                                    • Water-resistant coating.

                                    ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hero-hoodie-l-green-159","links":{},"stock":{"item_id":159,"product_id":159,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-l-green-159.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"165","_score":1,"_source":{"id":165,"sku":"MH08-XS-Purple","name":"Oslo Trek Hoodie-XS-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                                    \n

                                    • Brown hoodie with black detail.
                                    • Pullover.
                                    • Adjustable drawstring hood.
                                    • Ribbed cuffs/waistband.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"oslo-trek-hoodie-xs-purple-165","links":{},"stock":{"item_id":165,"product_id":165,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xs-purple-165.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"157","_score":1,"_source":{"id":157,"sku":"MH07-L-Black","name":"Hero Hoodie-L-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                                    Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                                    \n

                                    • Full-zip gray and black hoodie.
                                    • Ribbed hem.
                                    • Standard fit.
                                    • Drawcord hood cinch.
                                    • Water-resistant coating.

                                    ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hero-hoodie-l-black-157","links":{},"stock":{"item_id":157,"product_id":157,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-l-black-157.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"161","_score":1,"_source":{"id":161,"sku":"MH07-XL-Gray","name":"Hero Hoodie-XL-Gray","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                                    Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                                    \n

                                    • Full-zip gray and black hoodie.
                                    • Ribbed hem.
                                    • Standard fit.
                                    • Drawcord hood cinch.
                                    • Water-resistant coating.

                                    ","image":"/m/h/mh07-gray_main.jpg","small_image":"/m/h/mh07-gray_main.jpg","thumbnail":"/m/h/mh07-gray_main.jpg","color":"52","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hero-hoodie-xl-gray-161","links":{},"stock":{"item_id":161,"product_id":161,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh07-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh07-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh07-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-xl-gray-161.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"151","_score":1,"_source":{"id":151,"sku":"MH07-S-Black","name":"Hero Hoodie-S-Black","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                                    Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                                    \n

                                    • Full-zip gray and black hoodie.
                                    • Ribbed hem.
                                    • Standard fit.
                                    • Drawcord hood cinch.
                                    • Water-resistant coating.

                                    ","image":"/m/h/mh07-black_main.jpg","small_image":"/m/h/mh07-black_main.jpg","thumbnail":"/m/h/mh07-black_main.jpg","color":"49","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hero-hoodie-s-black-151","links":{},"stock":{"item_id":151,"product_id":151,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh07-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-s-black-151.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"167","_score":1,"_source":{"id":167,"sku":"MH08-S-Brown","name":"Oslo Trek Hoodie-S-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                                    \n

                                    • Brown hoodie with black detail.
                                    • Pullover.
                                    • Adjustable drawstring hood.
                                    • Ribbed cuffs/waistband.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-s-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"oslo-trek-hoodie-s-brown-167","links":{},"stock":{"item_id":167,"product_id":167,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-s-brown-167.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"174","_score":1,"_source":{"id":174,"sku":"MH08-L-Purple","name":"Oslo Trek Hoodie-L-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                                    \n

                                    • Brown hoodie with black detail.
                                    • Pullover.
                                    • Adjustable drawstring hood.
                                    • Ribbed cuffs/waistband.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"oslo-trek-hoodie-l-purple-174","links":{},"stock":{"item_id":174,"product_id":174,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-l-purple-174.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"168","_score":1,"_source":{"id":168,"sku":"MH08-S-Purple","name":"Oslo Trek Hoodie-S-Purple","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                                    \n

                                    • Brown hoodie with black detail.
                                    • Pullover.
                                    • Adjustable drawstring hood.
                                    • Ribbed cuffs/waistband.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh08-purple_main.jpg","small_image":"/m/h/mh08-purple_main.jpg","thumbnail":"/m/h/mh08-purple_main.jpg","color":"57","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"oslo-trek-hoodie-s-purple-168","links":{},"stock":{"item_id":168,"product_id":168,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh08-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-s-purple-168.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"153","_score":1,"_source":{"id":153,"sku":"MH07-S-Green","name":"Hero Hoodie-S-Green","attribute_set_id":9,"price":54,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:47","updated_at":"2017-11-06 12:16:47","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":54,"max_price":54,"max_regular_price":54,"minimal_regular_price":54,"special_price":null,"minimal_price":54,"regular_price":54,"description":"

                                    Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

                                    \n

                                    • Full-zip gray and black hoodie.
                                    • Ribbed hem.
                                    • Standard fit.
                                    • Drawcord hood cinch.
                                    • Water-resistant coating.

                                    ","image":"/m/h/mh07-green_main.jpg","small_image":"/m/h/mh07-green_main.jpg","thumbnail":"/m/h/mh07-green_main.jpg","color":"53","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hero-hoodie-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hero-hoodie-s-green-153","links":{},"stock":{"item_id":153,"product_id":153,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh07-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/hero-hoodie-s-green-153.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"173","_score":1,"_source":{"id":173,"sku":"MH08-L-Brown","name":"Oslo Trek Hoodie-L-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                                    \n

                                    • Brown hoodie with black detail.
                                    • Pullover.
                                    • Adjustable drawstring hood.
                                    • Ribbed cuffs/waistband.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-l-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"oslo-trek-hoodie-l-brown-173","links":{},"stock":{"item_id":173,"product_id":173,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-l-brown-173.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"176","_score":1,"_source":{"id":176,"sku":"MH08-XL-Brown","name":"Oslo Trek Hoodie-XL-Brown","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

                                    \n

                                    • Brown hoodie with black detail.
                                    • Pullover.
                                    • Adjustable drawstring hood.
                                    • Ribbed cuffs/waistband.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh08-brown_main.jpg","small_image":"/m/h/mh08-brown_main.jpg","thumbnail":"/m/h/mh08-brown_main.jpg","color":"51","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"oslo-trek-hoodie-xl-brown","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"oslo-trek-hoodie-xl-brown-176","links":{},"stock":{"item_id":176,"product_id":176,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh08-brown_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh08-brown_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh08-brown_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/oslo-trek-hoodie-xl-brown-176.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"285","_score":1,"_source":{"id":285,"sku":"MJ02-L-Green","name":"Hyperion Elements Jacket-L-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                                    \n

                                    • Lime 1/4 zip pullover.
                                    • Split pocket.
                                    • Thumb holes.
                                    • Machine wash/hang to dry.

                                    ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hyperion-elements-jacket-l-green-285","links":{},"stock":{"item_id":285,"product_id":285,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-l-green-285.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"261","_score":1,"_source":{"id":261,"sku":"MJ01-XS-Red","name":"Beaumont Summit Kit-XS-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                                    \n

                                    • Yellow full zip rain jacket.
                                    • Full-zip front.
                                    • Stand-up collar.
                                    • Elasticized cuffs.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"beaumont-summit-kit-xs-red-261","links":{},"stock":{"item_id":261,"product_id":261,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xs-red-261.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"262","_score":1,"_source":{"id":262,"sku":"MJ01-XS-Yellow","name":"Beaumont Summit Kit-XS-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                                    \n

                                    • Yellow full zip rain jacket.
                                    • Full-zip front.
                                    • Stand-up collar.
                                    • Elasticized cuffs.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"beaumont-summit-kit-xs-yellow-262","links":{},"stock":{"item_id":262,"product_id":262,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xs-yellow-262.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"269","_score":1,"_source":{"id":269,"sku":"MJ01-L-Orange","name":"Beaumont Summit Kit-L-Orange","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                                    \n

                                    • Yellow full zip rain jacket.
                                    • Full-zip front.
                                    • Stand-up collar.
                                    • Elasticized cuffs.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj01-orange_main.jpg","small_image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"beaumont-summit-kit-l-orange-269","links":{},"stock":{"item_id":269,"product_id":269,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj01-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-l-orange-269.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"289","_score":1,"_source":{"id":289,"sku":"MJ02-XL-Orange","name":"Hyperion Elements Jacket-XL-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                                    \n

                                    • Lime 1/4 zip pullover.
                                    • Split pocket.
                                    • Thumb holes.
                                    • Machine wash/hang to dry.

                                    ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hyperion-elements-jacket-xl-orange-289","links":{},"stock":{"item_id":289,"product_id":289,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xl-orange-289.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"278","_score":1,"_source":{"id":278,"sku":"MJ02-XS-Red","name":"Hyperion Elements Jacket-XS-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                                    \n

                                    • Lime 1/4 zip pullover.
                                    • Split pocket.
                                    • Thumb holes.
                                    • Machine wash/hang to dry.

                                    ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hyperion-elements-jacket-xs-red-278","links":{},"stock":{"item_id":278,"product_id":278,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xs-red-278.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"282","_score":1,"_source":{"id":282,"sku":"MJ02-M-Green","name":"Hyperion Elements Jacket-M-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                                    \n

                                    • Lime 1/4 zip pullover.
                                    • Split pocket.
                                    • Thumb holes.
                                    • Machine wash/hang to dry.

                                    ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hyperion-elements-jacket-m-green-282","links":{},"stock":{"item_id":282,"product_id":282,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-m-green-282.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"280","_score":1,"_source":{"id":280,"sku":"MJ02-S-Orange","name":"Hyperion Elements Jacket-S-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                                    \n

                                    • Lime 1/4 zip pullover.
                                    • Split pocket.
                                    • Thumb holes.
                                    • Machine wash/hang to dry.

                                    ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hyperion-elements-jacket-s-orange-280","links":{},"stock":{"item_id":280,"product_id":280,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-s-orange-280.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"292","_score":1,"_source":{"id":292,"sku":"MJ04-XS-Black","name":"Kenobi Trail Jacket-XS-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                                    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                                    \n

                                    • Black 1/4 zip pullover with royal zipper.
                                    • Adjustable hood and sleeve cuffs.
                                    • Machine wash/air dry.

                                    ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"kenobi-trail-jacket-xs-black-292","links":{},"stock":{"item_id":292,"product_id":292,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xs-black-292.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"293","_score":1,"_source":{"id":293,"sku":"MJ04-XS-Blue","name":"Kenobi Trail Jacket-XS-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                                    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                                    \n

                                    • Black 1/4 zip pullover with royal zipper.
                                    • Adjustable hood and sleeve cuffs.
                                    • Machine wash/air dry.

                                    ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"kenobi-trail-jacket-xs-blue-293","links":{},"stock":{"item_id":293,"product_id":293,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xs-blue-293.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"287","_score":1,"_source":{"id":287,"sku":"MJ02-L-Red","name":"Hyperion Elements Jacket-L-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                                    \n

                                    • Lime 1/4 zip pullover.
                                    • Split pocket.
                                    • Thumb holes.
                                    • Machine wash/hang to dry.

                                    ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hyperion-elements-jacket-l-red-287","links":{},"stock":{"item_id":287,"product_id":287,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-l-red-287.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"290","_score":1,"_source":{"id":290,"sku":"MJ02-XL-Red","name":"Hyperion Elements Jacket-XL-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                                    \n

                                    • Lime 1/4 zip pullover.
                                    • Split pocket.
                                    • Thumb holes.
                                    • Machine wash/hang to dry.

                                    ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hyperion-elements-jacket-xl-red-290","links":{},"stock":{"item_id":290,"product_id":290,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xl-red-290.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"288","_score":1,"_source":{"id":288,"sku":"MJ02-XL-Green","name":"Hyperion Elements Jacket-XL-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                                    \n

                                    • Lime 1/4 zip pullover.
                                    • Split pocket.
                                    • Thumb holes.
                                    • Machine wash/hang to dry.

                                    ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"hyperion-elements-jacket-xl-green-288","links":{},"stock":{"item_id":288,"product_id":288,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xl-green-288.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"299","_score":1,"_source":{"id":299,"sku":"MJ04-M-Blue","name":"Kenobi Trail Jacket-M-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                                    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                                    \n

                                    • Black 1/4 zip pullover with royal zipper.
                                    • Adjustable hood and sleeve cuffs.
                                    • Machine wash/air dry.

                                    ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"kenobi-trail-jacket-m-blue-299","links":{},"stock":{"item_id":299,"product_id":299,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-m-blue-299.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"270","_score":1,"_source":{"id":270,"sku":"MJ01-L-Red","name":"Beaumont Summit Kit-L-Red","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                                    \n

                                    • Yellow full zip rain jacket.
                                    • Full-zip front.
                                    • Stand-up collar.
                                    • Elasticized cuffs.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj01-red_main.jpg","small_image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"beaumont-summit-kit-l-red-270","links":{},"stock":{"item_id":270,"product_id":270,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj01-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-l-red-270.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"274","_score":1,"_source":{"id":274,"sku":"MJ01-XL-Yellow","name":"Beaumont Summit Kit-XL-Yellow","attribute_set_id":9,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                                    \n

                                    • Yellow full zip rain jacket.
                                    • Full-zip front.
                                    • Stand-up collar.
                                    • Elasticized cuffs.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"beaumont-summit-kit-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"beaumont-summit-kit-xl-yellow-274","links":{},"stock":{"item_id":274,"product_id":274,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-xl-yellow-274.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"284","_score":1,"_source":{"id":284,"sku":"MJ02-M-Red","name":"Hyperion Elements Jacket-M-Red","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                                    \n

                                    • Lime 1/4 zip pullover.
                                    • Split pocket.
                                    • Thumb holes.
                                    • Machine wash/hang to dry.

                                    ","image":"/m/j/mj02-red_main.jpg","small_image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hyperion-elements-jacket-m-red-284","links":{},"stock":{"item_id":284,"product_id":284,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-m-red-284.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"283","_score":1,"_source":{"id":283,"sku":"MJ02-M-Orange","name":"Hyperion Elements Jacket-M-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                                    \n

                                    • Lime 1/4 zip pullover.
                                    • Split pocket.
                                    • Thumb holes.
                                    • Machine wash/hang to dry.

                                    ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"hyperion-elements-jacket-m-orange-283","links":{},"stock":{"item_id":283,"product_id":283,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-m-orange-283.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"277","_score":1,"_source":{"id":277,"sku":"MJ02-XS-Orange","name":"Hyperion Elements Jacket-XS-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                                    \n

                                    • Lime 1/4 zip pullover.
                                    • Split pocket.
                                    • Thumb holes.
                                    • Machine wash/hang to dry.

                                    ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"hyperion-elements-jacket-xs-orange-277","links":{},"stock":{"item_id":277,"product_id":277,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-xs-orange-277.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"286","_score":1,"_source":{"id":286,"sku":"MJ02-L-Orange","name":"Hyperion Elements Jacket-L-Orange","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                                    \n

                                    • Lime 1/4 zip pullover.
                                    • Split pocket.
                                    • Thumb holes.
                                    • Machine wash/hang to dry.

                                    ","image":"/m/j/mj02-orange_main.jpg","small_image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"hyperion-elements-jacket-l-orange-286","links":{},"stock":{"item_id":286,"product_id":286,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj02-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-l-orange-286.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"298","_score":1,"_source":{"id":298,"sku":"MJ04-M-Black","name":"Kenobi Trail Jacket-M-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                                    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                                    \n

                                    • Black 1/4 zip pullover with royal zipper.
                                    • Adjustable hood and sleeve cuffs.
                                    • Machine wash/air dry.

                                    ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"kenobi-trail-jacket-m-black-298","links":{},"stock":{"item_id":298,"product_id":298,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-m-black-298.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"300","_score":1,"_source":{"id":300,"sku":"MJ04-M-Purple","name":"Kenobi Trail Jacket-M-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                                    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                                    \n

                                    • Black 1/4 zip pullover with royal zipper.
                                    • Adjustable hood and sleeve cuffs.
                                    • Machine wash/air dry.

                                    ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"kenobi-trail-jacket-m-purple-300","links":{},"stock":{"item_id":300,"product_id":300,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-m-purple-300.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"279","_score":1,"_source":{"id":279,"sku":"MJ02-S-Green","name":"Hyperion Elements Jacket-S-Green","attribute_set_id":9,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                                    \n

                                    • Lime 1/4 zip pullover.
                                    • Split pocket.
                                    • Thumb holes.
                                    • Machine wash/hang to dry.

                                    ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"hyperion-elements-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"hyperion-elements-jacket-s-green-279","links":{},"stock":{"item_id":279,"product_id":279,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-s-green-279.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"294","_score":1,"_source":{"id":294,"sku":"MJ04-XS-Purple","name":"Kenobi Trail Jacket-XS-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                                    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                                    \n

                                    • Black 1/4 zip pullover with royal zipper.
                                    • Adjustable hood and sleeve cuffs.
                                    • Machine wash/air dry.

                                    ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"kenobi-trail-jacket-xs-purple-294","links":{},"stock":{"item_id":294,"product_id":294,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xs-purple-294.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"296","_score":1,"_source":{"id":296,"sku":"MJ04-S-Blue","name":"Kenobi Trail Jacket-S-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                                    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                                    \n

                                    • Black 1/4 zip pullover with royal zipper.
                                    • Adjustable hood and sleeve cuffs.
                                    • Machine wash/air dry.

                                    ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"kenobi-trail-jacket-s-blue-296","links":{},"stock":{"item_id":296,"product_id":296,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-s-blue-296.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"295","_score":1,"_source":{"id":295,"sku":"MJ04-S-Black","name":"Kenobi Trail Jacket-S-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                                    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                                    \n

                                    • Black 1/4 zip pullover with royal zipper.
                                    • Adjustable hood and sleeve cuffs.
                                    • Machine wash/air dry.

                                    ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"kenobi-trail-jacket-s-black-295","links":{},"stock":{"item_id":295,"product_id":295,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-s-black-295.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"291","_score":1,"_source":{"id":291,"sku":"MJ02","name":"Hyperion Elements Jacket","attribute_set_id":9,"price":51,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

                                    \n

                                    • Lime 1/4 zip pullover.
                                    • Split pocket.
                                    • Thumb holes.
                                    • Machine wash/hang to dry.

                                    ","image":"/m/j/mj02-green_main.jpg","small_image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"hyperion-elements-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,148,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_general":[117,123,124,126,128],"pattern":"197","climate":[204,207,208,210],"slug":"hyperion-elements-jacket-291","links":{},"stock":{"item_id":291,"product_id":291,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj02-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj02-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj02-green_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","small_image":"/m/j/mj02-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hyperion-elements-jacket-xs-green","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"167","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Hyperion Elements Jacket-XS-Green","id":276,"category_ids":["14"],"sku":"MJ02-XS-Green","max_regular_price":51,"status":1},{"image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","small_image":"/m/j/mj02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hyperion-elements-jacket-xs-orange","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"167","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Hyperion Elements Jacket-XS-Orange","id":277,"category_ids":["14"],"sku":"MJ02-XS-Orange","max_regular_price":51,"status":1},{"image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","small_image":"/m/j/mj02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hyperion-elements-jacket-xs-red","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"167","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Hyperion Elements Jacket-XS-Red","id":278,"category_ids":["14"],"sku":"MJ02-XS-Red","max_regular_price":51,"status":1},{"image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","small_image":"/m/j/mj02-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hyperion-elements-jacket-s-green","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"168","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Hyperion Elements Jacket-S-Green","id":279,"category_ids":["14"],"sku":"MJ02-S-Green","max_regular_price":51,"status":1},{"image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","small_image":"/m/j/mj02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hyperion-elements-jacket-s-orange","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"168","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Hyperion Elements Jacket-S-Orange","id":280,"category_ids":["14"],"sku":"MJ02-S-Orange","max_regular_price":51,"status":1},{"image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","small_image":"/m/j/mj02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hyperion-elements-jacket-s-red","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"168","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Hyperion Elements Jacket-S-Red","id":281,"category_ids":["14"],"sku":"MJ02-S-Red","max_regular_price":51,"status":1},{"image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","small_image":"/m/j/mj02-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hyperion-elements-jacket-m-green","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"169","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Hyperion Elements Jacket-M-Green","id":282,"category_ids":["14"],"sku":"MJ02-M-Green","max_regular_price":51,"status":1},{"image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","small_image":"/m/j/mj02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hyperion-elements-jacket-m-orange","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"169","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Hyperion Elements Jacket-M-Orange","id":283,"category_ids":["14"],"sku":"MJ02-M-Orange","max_regular_price":51,"status":1},{"image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","small_image":"/m/j/mj02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hyperion-elements-jacket-m-red","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"169","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Hyperion Elements Jacket-M-Red","id":284,"category_ids":["14"],"sku":"MJ02-M-Red","max_regular_price":51,"status":1},{"image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","small_image":"/m/j/mj02-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hyperion-elements-jacket-l-green","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"170","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Hyperion Elements Jacket-L-Green","id":285,"category_ids":["14"],"sku":"MJ02-L-Green","max_regular_price":51,"status":1},{"image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","small_image":"/m/j/mj02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hyperion-elements-jacket-l-orange","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"170","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Hyperion Elements Jacket-L-Orange","id":286,"category_ids":["14"],"sku":"MJ02-L-Orange","max_regular_price":51,"status":1},{"image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","small_image":"/m/j/mj02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hyperion-elements-jacket-l-red","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"170","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Hyperion Elements Jacket-L-Red","id":287,"category_ids":["14"],"sku":"MJ02-L-Red","max_regular_price":51,"status":1},{"image":"/m/j/mj02-green_main.jpg","thumbnail":"/m/j/mj02-green_main.jpg","color":"53","small_image":"/m/j/mj02-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hyperion-elements-jacket-xl-green","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"171","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Hyperion Elements Jacket-XL-Green","id":288,"category_ids":["14"],"sku":"MJ02-XL-Green","max_regular_price":51,"status":1},{"image":"/m/j/mj02-orange_main.jpg","thumbnail":"/m/j/mj02-orange_main.jpg","color":"56","small_image":"/m/j/mj02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hyperion-elements-jacket-xl-orange","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"171","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Hyperion Elements Jacket-XL-Orange","id":289,"category_ids":["14"],"sku":"MJ02-XL-Orange","max_regular_price":51,"status":1},{"image":"/m/j/mj02-red_main.jpg","thumbnail":"/m/j/mj02-red_main.jpg","color":"58","small_image":"/m/j/mj02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"hyperion-elements-jacket-xl-red","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"171","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Hyperion Elements Jacket-XL-Red","id":290,"category_ids":["14"],"sku":"MJ02-XL-Red","max_regular_price":51,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":291,"id":31,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":291,"id":30,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[53,56,58],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/hyperion-elements-jacket-291.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"259","_score":1,"_source":{"id":259,"sku":"MH13","name":"Marco Lightweight Active Hoodie","attribute_set_id":9,"price":74,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":74,"max_price":74,"max_regular_price":74,"minimal_regular_price":74,"special_price":null,"minimal_price":74,"regular_price":74,"description":"

                                    For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

                                    \n

                                    • Light blue heather full zip hoodie.
                                    • Fitted flatlock seams.
                                    • Matching lining and drawstring.
                                    • Machine wash/dry.

                                    ","image":"/m/h/mh13-blue_main.jpg","small_image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"marco-lightweight-active-hoodie","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,145],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"0","pattern":"197","climate":[202,204,205,208,210],"slug":"marco-lightweight-active-hoodie-259","links":{},"stock":{"item_id":259,"product_id":259,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh13-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh13-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/h/mh13-blue_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","small_image":"/m/h/mh13-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"marco-lightweight-active-hoodie-xs-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":74,"name":"Marco Lightweight Active Hoodie-XS-Blue","id":244,"category_ids":["15"],"sku":"MH13-XS-Blue","status":1},{"image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","small_image":"/m/h/mh13-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"marco-lightweight-active-hoodie-xs-green","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":74,"name":"Marco Lightweight Active Hoodie-XS-Green","id":245,"category_ids":["15"],"sku":"MH13-XS-Green","status":1},{"image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","small_image":"/m/h/mh13-lavender_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"marco-lightweight-active-hoodie-xs-lavender","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":74,"name":"Marco Lightweight Active Hoodie-XS-Lavender","id":246,"category_ids":["15"],"sku":"MH13-XS-Lavender","status":1},{"image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","small_image":"/m/h/mh13-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"marco-lightweight-active-hoodie-s-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":74,"name":"Marco Lightweight Active Hoodie-S-Blue","id":247,"category_ids":["15"],"sku":"MH13-S-Blue","status":1},{"image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","small_image":"/m/h/mh13-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"marco-lightweight-active-hoodie-s-green","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":74,"name":"Marco Lightweight Active Hoodie-S-Green","id":248,"category_ids":["15"],"sku":"MH13-S-Green","status":1},{"image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","small_image":"/m/h/mh13-lavender_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"marco-lightweight-active-hoodie-s-lavender","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":74,"name":"Marco Lightweight Active Hoodie-S-Lavender","id":249,"category_ids":["15"],"sku":"MH13-S-Lavender","status":1},{"image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","small_image":"/m/h/mh13-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"marco-lightweight-active-hoodie-m-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":74,"name":"Marco Lightweight Active Hoodie-M-Blue","id":250,"category_ids":["15"],"sku":"MH13-M-Blue","status":1},{"image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","small_image":"/m/h/mh13-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"marco-lightweight-active-hoodie-m-green","regular_price":74,"required_options":"0","msrp_display_actual_price_type":"0","max_price":74,"minimal_regular_price":74,"size":"169","final_price":74,"special_price":null,"price":74,"minimal_price":74,"name":"Marco Lightweight Active Hoodie-M-Green","id":251,"category_ids":["15"],"sku":"MH13-M-Green","max_regular_price":74,"status":1},{"image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","small_image":"/m/h/mh13-lavender_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"marco-lightweight-active-hoodie-m-lavender","regular_price":74,"required_options":"0","msrp_display_actual_price_type":"0","max_price":74,"minimal_regular_price":74,"size":"169","final_price":74,"special_price":null,"price":74,"minimal_price":74,"name":"Marco Lightweight Active Hoodie-M-Lavender","id":252,"category_ids":["15"],"sku":"MH13-M-Lavender","max_regular_price":74,"status":1},{"image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","small_image":"/m/h/mh13-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"marco-lightweight-active-hoodie-l-blue","regular_price":74,"required_options":"0","msrp_display_actual_price_type":"0","max_price":74,"minimal_regular_price":74,"size":"170","final_price":74,"special_price":null,"price":74,"minimal_price":74,"name":"Marco Lightweight Active Hoodie-L-Blue","id":253,"category_ids":["15"],"sku":"MH13-L-Blue","max_regular_price":74,"status":1},{"image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","small_image":"/m/h/mh13-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"marco-lightweight-active-hoodie-l-green","regular_price":74,"required_options":"0","msrp_display_actual_price_type":"0","max_price":74,"minimal_regular_price":74,"size":"170","final_price":74,"special_price":null,"price":74,"minimal_price":74,"name":"Marco Lightweight Active Hoodie-L-Green","id":254,"category_ids":["15"],"sku":"MH13-L-Green","max_regular_price":74,"status":1},{"image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","small_image":"/m/h/mh13-lavender_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"marco-lightweight-active-hoodie-l-lavender","regular_price":74,"required_options":"0","msrp_display_actual_price_type":"0","max_price":74,"minimal_regular_price":74,"size":"170","final_price":74,"special_price":null,"price":74,"minimal_price":74,"name":"Marco Lightweight Active Hoodie-L-Lavender","id":255,"category_ids":["15"],"sku":"MH13-L-Lavender","max_regular_price":74,"status":1},{"image":"/m/h/mh13-blue_main.jpg","thumbnail":"/m/h/mh13-blue_main.jpg","color":"50","small_image":"/m/h/mh13-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"marco-lightweight-active-hoodie-xl-blue","regular_price":74,"required_options":"0","msrp_display_actual_price_type":"0","max_price":74,"minimal_regular_price":74,"size":"171","final_price":74,"special_price":null,"price":74,"minimal_price":74,"name":"Marco Lightweight Active Hoodie-XL-Blue","id":256,"category_ids":["15"],"sku":"MH13-XL-Blue","max_regular_price":74,"status":1},{"image":"/m/h/mh13-green_main.jpg","thumbnail":"/m/h/mh13-green_main.jpg","color":"53","small_image":"/m/h/mh13-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"marco-lightweight-active-hoodie-xl-green","regular_price":74,"required_options":"0","msrp_display_actual_price_type":"0","max_price":74,"minimal_regular_price":74,"size":"171","final_price":74,"special_price":null,"price":74,"minimal_price":74,"name":"Marco Lightweight Active Hoodie-XL-Green","id":257,"category_ids":["15"],"sku":"MH13-XL-Green","max_regular_price":74,"status":1},{"image":"/m/h/mh13-lavender_main.jpg","thumbnail":"/m/h/mh13-lavender_main.jpg","color":"54","small_image":"/m/h/mh13-lavender_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"marco-lightweight-active-hoodie-xl-lavender","regular_price":74,"required_options":"0","msrp_display_actual_price_type":"0","max_price":74,"minimal_regular_price":74,"size":"171","final_price":74,"special_price":null,"price":74,"minimal_price":74,"name":"Marco Lightweight Active Hoodie-XL-Lavender","id":258,"category_ids":["15"],"sku":"MH13-XL-Lavender","max_regular_price":74,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":54,"label":"Lavender"}],"product_id":259,"id":27,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":259,"id":26,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,53,54],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/marco-lightweight-active-hoodie-259.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"344","_score":1,"_source":{"id":344,"sku":"MJ09-S-White","name":"Taurus Elements Shell-S-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                                    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                                    \n

                                    • Yellow 1/4 zip pullover.
                                    • Two chest pockets.
                                    • Standard fit.
                                    • Waterproof, breathable, seam sealed.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"taurus-elements-shell-s-white-344","links":{},"stock":{"item_id":344,"product_id":344,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-s-white-344.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"306","_score":1,"_source":{"id":306,"sku":"MJ04-XL-Purple","name":"Kenobi Trail Jacket-XL-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                                    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                                    \n

                                    • Black 1/4 zip pullover with royal zipper.
                                    • Adjustable hood and sleeve cuffs.
                                    • Machine wash/air dry.

                                    ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"kenobi-trail-jacket-xl-purple-306","links":{},"stock":{"item_id":306,"product_id":306,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xl-purple-306.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"350","_score":1,"_source":{"id":350,"sku":"MJ09-L-White","name":"Taurus Elements Shell-L-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                                    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                                    \n

                                    • Yellow 1/4 zip pullover.
                                    • Two chest pockets.
                                    • Standard fit.
                                    • Waterproof, breathable, seam sealed.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"taurus-elements-shell-l-white-350","links":{},"stock":{"item_id":350,"product_id":350,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-l-white-350.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"331","_score":1,"_source":{"id":331,"sku":"MJ08-M-Gray","name":"Lando Gym Jacket-M-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                                    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                                    \n

                                    • Gray polyester/spandex full zip jacket with orange lining.
                                    • Right pocket device storage.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-m-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lando-gym-jacket-m-gray-331","links":{},"stock":{"item_id":331,"product_id":331,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-m-gray-331.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"348","_score":1,"_source":{"id":348,"sku":"MJ09-M-Yellow","name":"Taurus Elements Shell-M-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                                    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                                    \n

                                    • Yellow 1/4 zip pullover.
                                    • Two chest pockets.
                                    • Standard fit.
                                    • Waterproof, breathable, seam sealed.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"taurus-elements-shell-m-yellow-348","links":{},"stock":{"item_id":348,"product_id":348,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-m-yellow-348.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"341","_score":1,"_source":{"id":341,"sku":"MJ09-XS-White","name":"Taurus Elements Shell-XS-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                                    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                                    \n

                                    • Yellow 1/4 zip pullover.
                                    • Two chest pockets.
                                    • Standard fit.
                                    • Waterproof, breathable, seam sealed.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"taurus-elements-shell-xs-white-341","links":{},"stock":{"item_id":341,"product_id":341,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xs-white-341.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"321","_score":1,"_source":{"id":321,"sku":"MJ07-XL-Red","name":"Orion Two-Tone Fitted Jacket-XL-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                                    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                                    \n

                                    • Red full zip fleece with gray insets.
                                    • Double-knit construction.
                                    • Full athletic cut.
                                    • Set in sleeves.
                                    • Front pouch pocket.

                                    ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"orion-two-tone-fitted-jacket-xl-red-321","links":{},"stock":{"item_id":321,"product_id":321,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xl-red-321.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"345","_score":1,"_source":{"id":345,"sku":"MJ09-S-Yellow","name":"Taurus Elements Shell-S-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                                    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                                    \n

                                    • Yellow 1/4 zip pullover.
                                    • Two chest pockets.
                                    • Standard fit.
                                    • Waterproof, breathable, seam sealed.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"taurus-elements-shell-s-yellow-345","links":{},"stock":{"item_id":345,"product_id":345,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-s-yellow-345.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"333","_score":1,"_source":{"id":333,"sku":"MJ08-L-Blue","name":"Lando Gym Jacket-L-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                                    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                                    \n

                                    • Gray polyester/spandex full zip jacket with orange lining.
                                    • Right pocket device storage.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lando-gym-jacket-l-blue-333","links":{},"stock":{"item_id":333,"product_id":333,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj08-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-l-blue-333.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"347","_score":1,"_source":{"id":347,"sku":"MJ09-M-White","name":"Taurus Elements Shell-M-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                                    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                                    \n

                                    • Yellow 1/4 zip pullover.
                                    • Two chest pockets.
                                    • Standard fit.
                                    • Waterproof, breathable, seam sealed.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"taurus-elements-shell-m-white-347","links":{},"stock":{"item_id":347,"product_id":347,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-m-white-347.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"340","_score":1,"_source":{"id":340,"sku":"MJ09-XS-Blue","name":"Taurus Elements Shell-XS-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                                    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                                    \n

                                    • Yellow 1/4 zip pullover.
                                    • Two chest pockets.
                                    • Standard fit.
                                    • Waterproof, breathable, seam sealed.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"taurus-elements-shell-xs-blue-340","links":{},"stock":{"item_id":340,"product_id":340,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xs-blue-340.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"323","_score":1,"_source":{"id":323,"sku":"MJ07","name":"Orion Two-Tone Fitted Jacket","attribute_set_id":9,"price":72,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                                    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                                    \n

                                    • Red full zip fleece with gray insets.
                                    • Double-knit construction.
                                    • Full athletic cut.
                                    • Set in sleeves.
                                    • Front pouch pocket.

                                    ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"orion-two-tone-fitted-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"38","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[120,121,123,125,129],"pattern":"197","climate":[202,204,207,208,210],"slug":"orion-two-tone-fitted-jacket-323","links":{},"stock":{"item_id":323,"product_id":323,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","small_image":"/m/j/mj07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orion-two-tone-fitted-jacket-xs-black","regular_price":72,"required_options":"0","msrp_display_actual_price_type":"0","max_price":72,"minimal_regular_price":72,"size":"167","final_price":72,"special_price":null,"price":72,"minimal_price":72,"name":"Orion Two-Tone Fitted Jacket-XS-Black","id":308,"category_ids":["14"],"sku":"MJ07-XS-Black","max_regular_price":72,"status":1},{"image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","small_image":"/m/j/mj07-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orion-two-tone-fitted-jacket-xs-red","regular_price":72,"required_options":"0","msrp_display_actual_price_type":"0","max_price":72,"minimal_regular_price":72,"size":"167","final_price":72,"special_price":null,"price":72,"minimal_price":72,"name":"Orion Two-Tone Fitted Jacket-XS-Red","id":309,"category_ids":["14"],"sku":"MJ07-XS-Red","max_regular_price":72,"status":1},{"image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","small_image":"/m/j/mj07-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orion-two-tone-fitted-jacket-xs-yellow","regular_price":72,"required_options":"0","msrp_display_actual_price_type":"0","max_price":72,"minimal_regular_price":72,"size":"167","final_price":72,"special_price":null,"price":72,"minimal_price":72,"name":"Orion Two-Tone Fitted Jacket-XS-Yellow","id":310,"category_ids":["14"],"sku":"MJ07-XS-Yellow","max_regular_price":72,"status":1},{"image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","small_image":"/m/j/mj07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orion-two-tone-fitted-jacket-s-black","regular_price":72,"required_options":"0","msrp_display_actual_price_type":"0","max_price":72,"minimal_regular_price":72,"size":"168","final_price":72,"special_price":null,"price":72,"minimal_price":72,"name":"Orion Two-Tone Fitted Jacket-S-Black","id":311,"category_ids":["14"],"sku":"MJ07-S-Black","max_regular_price":72,"status":1},{"image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","small_image":"/m/j/mj07-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orion-two-tone-fitted-jacket-s-red","regular_price":72,"required_options":"0","msrp_display_actual_price_type":"0","max_price":72,"minimal_regular_price":72,"size":"168","final_price":72,"special_price":null,"price":72,"minimal_price":72,"name":"Orion Two-Tone Fitted Jacket-S-Red","id":312,"category_ids":["14"],"sku":"MJ07-S-Red","max_regular_price":72,"status":1},{"image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","small_image":"/m/j/mj07-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orion-two-tone-fitted-jacket-s-yellow","regular_price":72,"required_options":"0","msrp_display_actual_price_type":"0","max_price":72,"minimal_regular_price":72,"size":"168","final_price":72,"special_price":null,"price":72,"minimal_price":72,"name":"Orion Two-Tone Fitted Jacket-S-Yellow","id":313,"category_ids":["14"],"sku":"MJ07-S-Yellow","max_regular_price":72,"status":1},{"image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","small_image":"/m/j/mj07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orion-two-tone-fitted-jacket-m-black","regular_price":72,"required_options":"0","msrp_display_actual_price_type":"0","max_price":72,"minimal_regular_price":72,"size":"169","final_price":72,"special_price":null,"price":72,"minimal_price":72,"name":"Orion Two-Tone Fitted Jacket-M-Black","id":314,"category_ids":["14"],"sku":"MJ07-M-Black","max_regular_price":72,"status":1},{"image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","small_image":"/m/j/mj07-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orion-two-tone-fitted-jacket-m-red","regular_price":72,"required_options":"0","msrp_display_actual_price_type":"0","max_price":72,"minimal_regular_price":72,"size":"169","final_price":72,"special_price":null,"price":72,"minimal_price":72,"name":"Orion Two-Tone Fitted Jacket-M-Red","id":315,"category_ids":["14"],"sku":"MJ07-M-Red","max_regular_price":72,"status":1},{"image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","small_image":"/m/j/mj07-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orion-two-tone-fitted-jacket-m-yellow","regular_price":72,"required_options":"0","msrp_display_actual_price_type":"0","max_price":72,"minimal_regular_price":72,"size":"169","final_price":72,"special_price":null,"price":72,"minimal_price":72,"name":"Orion Two-Tone Fitted Jacket-M-Yellow","id":316,"category_ids":["14"],"sku":"MJ07-M-Yellow","max_regular_price":72,"status":1},{"image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","small_image":"/m/j/mj07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orion-two-tone-fitted-jacket-l-black","regular_price":72,"required_options":"0","msrp_display_actual_price_type":"0","max_price":72,"minimal_regular_price":72,"size":"170","final_price":72,"special_price":null,"price":72,"minimal_price":72,"name":"Orion Two-Tone Fitted Jacket-L-Black","id":317,"category_ids":["14"],"sku":"MJ07-L-Black","max_regular_price":72,"status":1},{"image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","small_image":"/m/j/mj07-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orion-two-tone-fitted-jacket-l-red","regular_price":72,"required_options":"0","msrp_display_actual_price_type":"0","max_price":72,"minimal_regular_price":72,"size":"170","final_price":72,"special_price":null,"price":72,"minimal_price":72,"name":"Orion Two-Tone Fitted Jacket-L-Red","id":318,"category_ids":["14"],"sku":"MJ07-L-Red","max_regular_price":72,"status":1},{"image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","small_image":"/m/j/mj07-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orion-two-tone-fitted-jacket-l-yellow","regular_price":72,"required_options":"0","msrp_display_actual_price_type":"0","max_price":72,"minimal_regular_price":72,"size":"170","final_price":72,"special_price":null,"price":72,"minimal_price":72,"name":"Orion Two-Tone Fitted Jacket-L-Yellow","id":319,"category_ids":["14"],"sku":"MJ07-L-Yellow","max_regular_price":72,"status":1},{"image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","small_image":"/m/j/mj07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orion-two-tone-fitted-jacket-xl-black","regular_price":72,"required_options":"0","msrp_display_actual_price_type":"0","max_price":72,"minimal_regular_price":72,"size":"171","final_price":72,"special_price":null,"price":72,"minimal_price":72,"name":"Orion Two-Tone Fitted Jacket-XL-Black","id":320,"category_ids":["14"],"sku":"MJ07-XL-Black","max_regular_price":72,"status":1},{"image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","small_image":"/m/j/mj07-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orion-two-tone-fitted-jacket-xl-red","regular_price":72,"required_options":"0","msrp_display_actual_price_type":"0","max_price":72,"minimal_regular_price":72,"size":"171","final_price":72,"special_price":null,"price":72,"minimal_price":72,"name":"Orion Two-Tone Fitted Jacket-XL-Red","id":321,"category_ids":["14"],"sku":"MJ07-XL-Red","max_regular_price":72,"status":1},{"image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","small_image":"/m/j/mj07-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"orion-two-tone-fitted-jacket-xl-yellow","regular_price":72,"required_options":"0","msrp_display_actual_price_type":"0","max_price":72,"minimal_regular_price":72,"size":"171","final_price":72,"special_price":null,"price":72,"minimal_price":72,"name":"Orion Two-Tone Fitted Jacket-XL-Yellow","id":322,"category_ids":["14"],"sku":"MJ07-XL-Yellow","max_regular_price":72,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":323,"id":35,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":323,"id":34,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,58,60],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-323.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"307","_score":1,"_source":{"id":307,"sku":"MJ04","name":"Kenobi Trail Jacket","attribute_set_id":9,"price":47,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                                    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                                    \n

                                    • Black 1/4 zip pullover with royal zipper.
                                    • Adjustable hood and sleeve cuffs.
                                    • Machine wash/air dry.

                                    ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"kenobi-trail-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,145,37],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[117,125,128],"pattern":"197","climate":[203,204,208,210,211],"slug":"kenobi-trail-jacket-307","links":{},"stock":{"item_id":307,"product_id":307,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","small_image":"/m/j/mj04-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kenobi-trail-jacket-xs-black","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":47,"name":"Kenobi Trail Jacket-XS-Black","id":292,"category_ids":["14","36","2"],"sku":"MJ04-XS-Black","status":1},{"image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","small_image":"/m/j/mj04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kenobi-trail-jacket-xs-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":47,"name":"Kenobi Trail Jacket-XS-Blue","id":293,"category_ids":["14","36","2"],"sku":"MJ04-XS-Blue","status":1},{"image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","small_image":"/m/j/mj04-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kenobi-trail-jacket-xs-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":47,"name":"Kenobi Trail Jacket-XS-Purple","id":294,"category_ids":["14","36","2"],"sku":"MJ04-XS-Purple","status":1},{"image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","small_image":"/m/j/mj04-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kenobi-trail-jacket-s-black","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":47,"name":"Kenobi Trail Jacket-S-Black","id":295,"category_ids":["14","36","2"],"sku":"MJ04-S-Black","status":1},{"image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","small_image":"/m/j/mj04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kenobi-trail-jacket-s-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":47,"name":"Kenobi Trail Jacket-S-Blue","id":296,"category_ids":["14","36","2"],"sku":"MJ04-S-Blue","status":1},{"image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","small_image":"/m/j/mj04-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kenobi-trail-jacket-s-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":47,"name":"Kenobi Trail Jacket-S-Purple","id":297,"category_ids":["14","36","2"],"sku":"MJ04-S-Purple","status":1},{"image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","small_image":"/m/j/mj04-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kenobi-trail-jacket-m-black","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":47,"name":"Kenobi Trail Jacket-M-Black","id":298,"category_ids":["14","36","2"],"sku":"MJ04-M-Black","status":1},{"image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","small_image":"/m/j/mj04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kenobi-trail-jacket-m-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":47,"name":"Kenobi Trail Jacket-M-Blue","id":299,"category_ids":["14","36","2"],"sku":"MJ04-M-Blue","status":1},{"image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","small_image":"/m/j/mj04-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kenobi-trail-jacket-m-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":47,"name":"Kenobi Trail Jacket-M-Purple","id":300,"category_ids":["14","36","2"],"sku":"MJ04-M-Purple","status":1},{"image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","small_image":"/m/j/mj04-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kenobi-trail-jacket-l-black","regular_price":47,"required_options":"0","msrp_display_actual_price_type":"0","max_price":47,"minimal_regular_price":47,"size":"170","final_price":47,"special_price":null,"price":47,"minimal_price":47,"name":"Kenobi Trail Jacket-L-Black","id":301,"category_ids":["14","36","2"],"sku":"MJ04-L-Black","max_regular_price":47,"status":1},{"image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","small_image":"/m/j/mj04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kenobi-trail-jacket-l-blue","regular_price":47,"required_options":"0","msrp_display_actual_price_type":"0","max_price":47,"minimal_regular_price":47,"size":"170","final_price":47,"special_price":null,"price":47,"minimal_price":47,"name":"Kenobi Trail Jacket-L-Blue","id":302,"category_ids":["14","36","2"],"sku":"MJ04-L-Blue","max_regular_price":47,"status":1},{"image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","small_image":"/m/j/mj04-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kenobi-trail-jacket-l-purple","regular_price":47,"required_options":"0","msrp_display_actual_price_type":"0","max_price":47,"minimal_regular_price":47,"size":"170","final_price":47,"special_price":null,"price":47,"minimal_price":47,"name":"Kenobi Trail Jacket-L-Purple","id":303,"category_ids":["14","36","2"],"sku":"MJ04-L-Purple","max_regular_price":47,"status":1},{"image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","small_image":"/m/j/mj04-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kenobi-trail-jacket-xl-black","regular_price":47,"required_options":"0","msrp_display_actual_price_type":"0","max_price":47,"minimal_regular_price":47,"size":"171","final_price":47,"special_price":null,"price":47,"minimal_price":47,"name":"Kenobi Trail Jacket-XL-Black","id":304,"category_ids":["14","36","2"],"sku":"MJ04-XL-Black","max_regular_price":47,"status":1},{"image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","small_image":"/m/j/mj04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kenobi-trail-jacket-xl-blue","regular_price":47,"required_options":"0","msrp_display_actual_price_type":"0","max_price":47,"minimal_regular_price":47,"size":"171","final_price":47,"special_price":null,"price":47,"minimal_price":47,"name":"Kenobi Trail Jacket-XL-Blue","id":305,"category_ids":["14","36","2"],"sku":"MJ04-XL-Blue","max_regular_price":47,"status":1},{"image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","small_image":"/m/j/mj04-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"kenobi-trail-jacket-xl-purple","regular_price":47,"required_options":"0","msrp_display_actual_price_type":"0","max_price":47,"minimal_regular_price":47,"size":"171","final_price":47,"special_price":null,"price":47,"minimal_price":47,"name":"Kenobi Trail Jacket-XL-Purple","id":306,"category_ids":["14","36","2"],"sku":"MJ04-XL-Purple","max_regular_price":47,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":307,"id":33,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":307,"id":32,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-307.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"339","_score":1,"_source":{"id":339,"sku":"MJ08","name":"Lando Gym Jacket","attribute_set_id":9,"price":99,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                                    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                                    \n

                                    • Gray polyester/spandex full zip jacket with orange lining.
                                    • Right pocket device storage.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"lando-gym-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[151,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[125,128,129],"pattern":"197","climate":[203,204,210,211],"slug":"lando-gym-jacket-339","links":{},"stock":{"item_id":339,"product_id":339,"stock_id":1,"qty":10,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","small_image":"/m/j/mj08-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lando-gym-jacket-xs-blue","regular_price":99,"required_options":"0","msrp_display_actual_price_type":"0","max_price":99,"minimal_regular_price":99,"size":"167","final_price":99,"special_price":null,"price":99,"minimal_price":99,"name":"Lando Gym Jacket-XS-Blue","id":324,"category_ids":["14"],"sku":"MJ08-XS-Blue","max_regular_price":99,"status":1},{"image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","small_image":"/m/j/mj08-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lando-gym-jacket-xs-gray","regular_price":99,"required_options":"0","msrp_display_actual_price_type":"0","max_price":99,"minimal_regular_price":99,"size":"167","final_price":99,"special_price":null,"price":99,"minimal_price":99,"name":"Lando Gym Jacket-XS-Gray","id":325,"category_ids":["14"],"sku":"MJ08-XS-Gray","max_regular_price":99,"status":1},{"image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","small_image":"/m/j/mj08-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lando-gym-jacket-xs-green","regular_price":99,"required_options":"0","msrp_display_actual_price_type":"0","max_price":99,"minimal_regular_price":99,"size":"167","final_price":99,"special_price":null,"price":99,"minimal_price":99,"name":"Lando Gym Jacket-XS-Green","id":326,"category_ids":["14"],"sku":"MJ08-XS-Green","max_regular_price":99,"status":1},{"image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","small_image":"/m/j/mj08-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lando-gym-jacket-s-blue","regular_price":99,"required_options":"0","msrp_display_actual_price_type":"0","max_price":99,"minimal_regular_price":99,"size":"168","final_price":99,"special_price":null,"price":99,"minimal_price":99,"name":"Lando Gym Jacket-S-Blue","id":327,"category_ids":["14"],"sku":"MJ08-S-Blue","max_regular_price":99,"status":1},{"image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","small_image":"/m/j/mj08-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lando-gym-jacket-s-gray","regular_price":99,"required_options":"0","msrp_display_actual_price_type":"0","max_price":99,"minimal_regular_price":99,"size":"168","final_price":99,"special_price":null,"price":99,"minimal_price":99,"name":"Lando Gym Jacket-S-Gray","id":328,"category_ids":["14"],"sku":"MJ08-S-Gray","max_regular_price":99,"status":1},{"image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","small_image":"/m/j/mj08-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lando-gym-jacket-s-green","regular_price":99,"required_options":"0","msrp_display_actual_price_type":"0","max_price":99,"minimal_regular_price":99,"size":"168","final_price":99,"special_price":null,"price":99,"minimal_price":99,"name":"Lando Gym Jacket-S-Green","id":329,"category_ids":["14"],"sku":"MJ08-S-Green","max_regular_price":99,"status":1},{"image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","small_image":"/m/j/mj08-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lando-gym-jacket-m-blue","regular_price":99,"required_options":"0","msrp_display_actual_price_type":"0","max_price":99,"minimal_regular_price":99,"size":"169","final_price":99,"special_price":null,"price":99,"minimal_price":99,"name":"Lando Gym Jacket-M-Blue","id":330,"category_ids":["14"],"sku":"MJ08-M-Blue","max_regular_price":99,"status":1},{"image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","small_image":"/m/j/mj08-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lando-gym-jacket-m-gray","regular_price":99,"required_options":"0","msrp_display_actual_price_type":"0","max_price":99,"minimal_regular_price":99,"size":"169","final_price":99,"special_price":null,"price":99,"minimal_price":99,"name":"Lando Gym Jacket-M-Gray","id":331,"category_ids":["14"],"sku":"MJ08-M-Gray","max_regular_price":99,"status":1},{"image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","small_image":"/m/j/mj08-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lando-gym-jacket-m-green","regular_price":99,"required_options":"0","msrp_display_actual_price_type":"0","max_price":99,"minimal_regular_price":99,"size":"169","final_price":99,"special_price":null,"price":99,"minimal_price":99,"name":"Lando Gym Jacket-M-Green","id":332,"category_ids":["14"],"sku":"MJ08-M-Green","max_regular_price":99,"status":1},{"image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","small_image":"/m/j/mj08-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lando-gym-jacket-l-blue","regular_price":99,"required_options":"0","msrp_display_actual_price_type":"0","max_price":99,"minimal_regular_price":99,"size":"170","final_price":99,"special_price":null,"price":99,"minimal_price":99,"name":"Lando Gym Jacket-L-Blue","id":333,"category_ids":["14"],"sku":"MJ08-L-Blue","max_regular_price":99,"status":1},{"image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","small_image":"/m/j/mj08-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lando-gym-jacket-l-gray","regular_price":99,"required_options":"0","msrp_display_actual_price_type":"0","max_price":99,"minimal_regular_price":99,"size":"170","final_price":99,"special_price":null,"price":99,"minimal_price":99,"name":"Lando Gym Jacket-L-Gray","id":334,"category_ids":["14"],"sku":"MJ08-L-Gray","max_regular_price":99,"status":1},{"image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","small_image":"/m/j/mj08-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lando-gym-jacket-l-green","regular_price":99,"required_options":"0","msrp_display_actual_price_type":"0","max_price":99,"minimal_regular_price":99,"size":"170","final_price":99,"special_price":null,"price":99,"minimal_price":99,"name":"Lando Gym Jacket-L-Green","id":335,"category_ids":["14"],"sku":"MJ08-L-Green","max_regular_price":99,"status":1},{"image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","small_image":"/m/j/mj08-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lando-gym-jacket-xl-blue","regular_price":99,"required_options":"0","msrp_display_actual_price_type":"0","max_price":99,"minimal_regular_price":99,"size":"171","final_price":99,"special_price":null,"price":99,"minimal_price":99,"name":"Lando Gym Jacket-XL-Blue","id":336,"category_ids":["14"],"sku":"MJ08-XL-Blue","max_regular_price":99,"status":1},{"image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","small_image":"/m/j/mj08-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lando-gym-jacket-xl-gray","regular_price":99,"required_options":"0","msrp_display_actual_price_type":"0","max_price":99,"minimal_regular_price":99,"size":"171","final_price":99,"special_price":null,"price":99,"minimal_price":99,"name":"Lando Gym Jacket-XL-Gray","id":337,"category_ids":["14"],"sku":"MJ08-XL-Gray","max_regular_price":99,"status":1},{"image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","small_image":"/m/j/mj08-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"lando-gym-jacket-xl-green","regular_price":99,"required_options":"0","msrp_display_actual_price_type":"0","max_price":99,"minimal_regular_price":99,"size":"171","final_price":99,"special_price":null,"price":99,"minimal_price":99,"name":"Lando Gym Jacket-XL-Green","id":338,"category_ids":["14"],"sku":"MJ08-XL-Green","max_regular_price":99,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":339,"id":37,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":339,"id":36,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,52,53],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-339.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"398","_score":1,"_source":{"id":398,"sku":"MJ06-L-Green","name":"Jupiter All-Weather Trainer -L-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                                    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                                    \n

                                    • Relaxed fit.
                                    • Hand pockets.
                                    • Machine wash/dry.
                                    • Reflective safety trim.

                                    ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jupiter-all-weather-trainer-l-green-398","links":{},"stock":{"item_id":398,"product_id":398,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-l-green-398.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"393","_score":1,"_source":{"id":393,"sku":"MJ06-S-Purple","name":"Jupiter All-Weather Trainer -S-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                                    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                                    \n

                                    • Relaxed fit.
                                    • Hand pockets.
                                    • Machine wash/dry.
                                    • Reflective safety trim.

                                    ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jupiter-all-weather-trainer-s-purple-393","links":{},"stock":{"item_id":393,"product_id":393,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-s-purple-393.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"389","_score":1,"_source":{"id":389,"sku":"MJ06-XS-Green","name":"Jupiter All-Weather Trainer -XS-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                                    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                                    \n

                                    • Relaxed fit.
                                    • Hand pockets.
                                    • Machine wash/dry.
                                    • Reflective safety trim.

                                    ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jupiter-all-weather-trainer-xs-green-389","links":{},"stock":{"item_id":389,"product_id":389,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xs-green-389.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"390","_score":1,"_source":{"id":390,"sku":"MJ06-XS-Purple","name":"Jupiter All-Weather Trainer -XS-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                                    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                                    \n

                                    • Relaxed fit.
                                    • Hand pockets.
                                    • Machine wash/dry.
                                    • Reflective safety trim.

                                    ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jupiter-all-weather-trainer-xs-purple-390","links":{},"stock":{"item_id":390,"product_id":390,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xs-purple-390.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"383","_score":1,"_source":{"id":383,"sku":"MJ11-L-Red","name":"Typhon Performance Fleece-lined Jacket-L-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                                    \n

                                    • Black full-zip flight jacket.
                                    • Cocona® wicking fiber.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"typhon-performance-fleece-lined-jacket-l-red-383","links":{},"stock":{"item_id":383,"product_id":383,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-l-red-383.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"400","_score":1,"_source":{"id":400,"sku":"MJ06-XL-Blue","name":"Jupiter All-Weather Trainer -XL-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                                    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                                    \n

                                    • Relaxed fit.
                                    • Hand pockets.
                                    • Machine wash/dry.
                                    • Reflective safety trim.

                                    ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jupiter-all-weather-trainer-xl-blue-400","links":{},"stock":{"item_id":400,"product_id":400,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xl-blue-400.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"392","_score":1,"_source":{"id":392,"sku":"MJ06-S-Green","name":"Jupiter All-Weather Trainer -S-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                                    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                                    \n

                                    • Relaxed fit.
                                    • Hand pockets.
                                    • Machine wash/dry.
                                    • Reflective safety trim.

                                    ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jupiter-all-weather-trainer-s-green-392","links":{},"stock":{"item_id":392,"product_id":392,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-s-green-392.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"399","_score":1,"_source":{"id":399,"sku":"MJ06-L-Purple","name":"Jupiter All-Weather Trainer -L-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                                    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                                    \n

                                    • Relaxed fit.
                                    • Hand pockets.
                                    • Machine wash/dry.
                                    • Reflective safety trim.

                                    ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jupiter-all-weather-trainer-l-purple-399","links":{},"stock":{"item_id":399,"product_id":399,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-l-purple-399.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"355","_score":1,"_source":{"id":355,"sku":"MJ09","name":"Taurus Elements Shell","attribute_set_id":9,"price":65,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                                    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                                    \n

                                    • Yellow 1/4 zip pullover.
                                    • Two chest pockets.
                                    • Standard fit.
                                    • Waterproof, breathable, seam sealed.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"taurus-elements-shell","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,149,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[118,120,123,126,128],"pattern":"197","climate":[204,206,207,208,210],"slug":"taurus-elements-shell-355","links":{},"stock":{"item_id":355,"product_id":355,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","small_image":"/m/j/mj09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"taurus-elements-shell-xs-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":65,"name":"Taurus Elements Shell-XS-Blue","id":340,"category_ids":["14"],"sku":"MJ09-XS-Blue","status":1},{"image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","small_image":"/m/j/mj09-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"taurus-elements-shell-xs-white","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":65,"name":"Taurus Elements Shell-XS-White","id":341,"category_ids":["14"],"sku":"MJ09-XS-White","status":1},{"image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","small_image":"/m/j/mj09-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"taurus-elements-shell-xs-yellow","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":65,"name":"Taurus Elements Shell-XS-Yellow","id":342,"category_ids":["14"],"sku":"MJ09-XS-Yellow","status":1},{"image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","small_image":"/m/j/mj09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"taurus-elements-shell-s-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":65,"name":"Taurus Elements Shell-S-Blue","id":343,"category_ids":["14"],"sku":"MJ09-S-Blue","status":1},{"image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","small_image":"/m/j/mj09-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"taurus-elements-shell-s-white","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":65,"name":"Taurus Elements Shell-S-White","id":344,"category_ids":["14"],"sku":"MJ09-S-White","status":1},{"image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","small_image":"/m/j/mj09-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"taurus-elements-shell-s-yellow","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":65,"name":"Taurus Elements Shell-S-Yellow","id":345,"category_ids":["14"],"sku":"MJ09-S-Yellow","status":1},{"image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","small_image":"/m/j/mj09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"taurus-elements-shell-m-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":65,"name":"Taurus Elements Shell-M-Blue","id":346,"category_ids":["14"],"sku":"MJ09-M-Blue","status":1},{"image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","small_image":"/m/j/mj09-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"taurus-elements-shell-m-white","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":65,"name":"Taurus Elements Shell-M-White","id":347,"category_ids":["14"],"sku":"MJ09-M-White","status":1},{"image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","small_image":"/m/j/mj09-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"taurus-elements-shell-m-yellow","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":65,"name":"Taurus Elements Shell-M-Yellow","id":348,"category_ids":["14"],"sku":"MJ09-M-Yellow","status":1},{"image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","small_image":"/m/j/mj09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"taurus-elements-shell-l-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":65,"name":"Taurus Elements Shell-L-Blue","id":349,"category_ids":["14"],"sku":"MJ09-L-Blue","status":1},{"image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","small_image":"/m/j/mj09-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"taurus-elements-shell-l-white","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":65,"name":"Taurus Elements Shell-L-White","id":350,"category_ids":["14"],"sku":"MJ09-L-White","status":1},{"image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","small_image":"/m/j/mj09-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"taurus-elements-shell-l-yellow","regular_price":65,"required_options":"0","msrp_display_actual_price_type":"0","max_price":65,"minimal_regular_price":65,"size":"170","final_price":65,"special_price":null,"price":65,"minimal_price":65,"name":"Taurus Elements Shell-L-Yellow","id":351,"category_ids":["14"],"sku":"MJ09-L-Yellow","max_regular_price":65,"status":1},{"image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","small_image":"/m/j/mj09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"taurus-elements-shell-xl-blue","regular_price":65,"required_options":"0","msrp_display_actual_price_type":"0","max_price":65,"minimal_regular_price":65,"size":"171","final_price":65,"special_price":null,"price":65,"minimal_price":65,"name":"Taurus Elements Shell-XL-Blue","id":352,"category_ids":["14"],"sku":"MJ09-XL-Blue","max_regular_price":65,"status":1},{"image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","small_image":"/m/j/mj09-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"taurus-elements-shell-xl-white","regular_price":65,"required_options":"0","msrp_display_actual_price_type":"0","max_price":65,"minimal_regular_price":65,"size":"171","final_price":65,"special_price":null,"price":65,"minimal_price":65,"name":"Taurus Elements Shell-XL-White","id":353,"category_ids":["14"],"sku":"MJ09-XL-White","max_regular_price":65,"status":1},{"image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","small_image":"/m/j/mj09-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"taurus-elements-shell-xl-yellow","regular_price":65,"required_options":"0","msrp_display_actual_price_type":"0","max_price":65,"minimal_regular_price":65,"size":"171","final_price":65,"special_price":null,"price":65,"minimal_price":65,"name":"Taurus Elements Shell-XL-Yellow","id":354,"category_ids":["14"],"sku":"MJ09-XL-Yellow","max_regular_price":65,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":355,"id":39,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":355,"id":38,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,59,60],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-355.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"371","_score":1,"_source":{"id":371,"sku":"MJ10","name":"Mars HeatTech™ Pullover","attribute_set_id":9,"price":66,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                                    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                                    \n

                                    • Red 1/4 zip pullover.
                                    • Adjustable VELCRO® sleeve cuffs.
                                    • Two hand pockets.
                                    • Napoleon pocket.
                                    • Machine wash/dry

                                    ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mars-heattech-trade-pullover","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[120,123,124,126,128],"pattern":"197","climate":[202,204,206,207,208,210],"slug":"mars-heattech-and-trade-pullover-371","links":{},"stock":{"item_id":371,"product_id":371,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","small_image":"/m/j/mj10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mars-heattech-trade-pullover-xs-black","regular_price":66,"required_options":"0","msrp_display_actual_price_type":"0","max_price":66,"minimal_regular_price":66,"size":"167","final_price":66,"special_price":null,"price":66,"minimal_price":66,"name":"Mars HeatTech™ Pullover-XS-Black","id":356,"category_ids":["14"],"sku":"MJ10-XS-Black","max_regular_price":66,"status":1},{"image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","small_image":"/m/j/mj10-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mars-heattech-trade-pullover-xs-orange","regular_price":66,"required_options":"0","msrp_display_actual_price_type":"0","max_price":66,"minimal_regular_price":66,"size":"167","final_price":66,"special_price":null,"price":66,"minimal_price":66,"name":"Mars HeatTech™ Pullover-XS-Orange","id":357,"category_ids":["14"],"sku":"MJ10-XS-Orange","max_regular_price":66,"status":1},{"image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","small_image":"/m/j/mj10-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mars-heattech-trade-pullover-xs-red","regular_price":66,"required_options":"0","msrp_display_actual_price_type":"0","max_price":66,"minimal_regular_price":66,"size":"167","final_price":66,"special_price":null,"price":66,"minimal_price":66,"name":"Mars HeatTech™ Pullover-XS-Red","id":358,"category_ids":["14"],"sku":"MJ10-XS-Red","max_regular_price":66,"status":1},{"image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","small_image":"/m/j/mj10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mars-heattech-trade-pullover-s-black","regular_price":66,"required_options":"0","msrp_display_actual_price_type":"0","max_price":66,"minimal_regular_price":66,"size":"168","final_price":66,"special_price":null,"price":66,"minimal_price":66,"name":"Mars HeatTech™ Pullover-S-Black","id":359,"category_ids":["14"],"sku":"MJ10-S-Black","max_regular_price":66,"status":1},{"image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","small_image":"/m/j/mj10-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mars-heattech-trade-pullover-s-orange","regular_price":66,"required_options":"0","msrp_display_actual_price_type":"0","max_price":66,"minimal_regular_price":66,"size":"168","final_price":66,"special_price":null,"price":66,"minimal_price":66,"name":"Mars HeatTech™ Pullover-S-Orange","id":360,"category_ids":["14"],"sku":"MJ10-S-Orange","max_regular_price":66,"status":1},{"image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","small_image":"/m/j/mj10-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mars-heattech-trade-pullover-s-red","regular_price":66,"required_options":"0","msrp_display_actual_price_type":"0","max_price":66,"minimal_regular_price":66,"size":"168","final_price":66,"special_price":null,"price":66,"minimal_price":66,"name":"Mars HeatTech™ Pullover-S-Red","id":361,"category_ids":["14"],"sku":"MJ10-S-Red","max_regular_price":66,"status":1},{"image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","small_image":"/m/j/mj10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mars-heattech-trade-pullover-m-black","regular_price":66,"required_options":"0","msrp_display_actual_price_type":"0","max_price":66,"minimal_regular_price":66,"size":"169","final_price":66,"special_price":null,"price":66,"minimal_price":66,"name":"Mars HeatTech™ Pullover-M-Black","id":362,"category_ids":["14"],"sku":"MJ10-M-Black","max_regular_price":66,"status":1},{"image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","small_image":"/m/j/mj10-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mars-heattech-trade-pullover-m-orange","regular_price":66,"required_options":"0","msrp_display_actual_price_type":"0","max_price":66,"minimal_regular_price":66,"size":"169","final_price":66,"special_price":null,"price":66,"minimal_price":66,"name":"Mars HeatTech™ Pullover-M-Orange","id":363,"category_ids":["14"],"sku":"MJ10-M-Orange","max_regular_price":66,"status":1},{"image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","small_image":"/m/j/mj10-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mars-heattech-trade-pullover-m-red","regular_price":66,"required_options":"0","msrp_display_actual_price_type":"0","max_price":66,"minimal_regular_price":66,"size":"169","final_price":66,"special_price":null,"price":66,"minimal_price":66,"name":"Mars HeatTech™ Pullover-M-Red","id":364,"category_ids":["14"],"sku":"MJ10-M-Red","max_regular_price":66,"status":1},{"image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","small_image":"/m/j/mj10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mars-heattech-trade-pullover-l-black","regular_price":66,"required_options":"0","msrp_display_actual_price_type":"0","max_price":66,"minimal_regular_price":66,"size":"170","final_price":66,"special_price":null,"price":66,"minimal_price":66,"name":"Mars HeatTech™ Pullover-L-Black","id":365,"category_ids":["14"],"sku":"MJ10-L-Black","max_regular_price":66,"status":1},{"image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","small_image":"/m/j/mj10-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mars-heattech-trade-pullover-l-orange","regular_price":66,"required_options":"0","msrp_display_actual_price_type":"0","max_price":66,"minimal_regular_price":66,"size":"170","final_price":66,"special_price":null,"price":66,"minimal_price":66,"name":"Mars HeatTech™ Pullover-L-Orange","id":366,"category_ids":["14"],"sku":"MJ10-L-Orange","max_regular_price":66,"status":1},{"image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","small_image":"/m/j/mj10-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mars-heattech-trade-pullover-l-red","regular_price":66,"required_options":"0","msrp_display_actual_price_type":"0","max_price":66,"minimal_regular_price":66,"size":"170","final_price":66,"special_price":null,"price":66,"minimal_price":66,"name":"Mars HeatTech™ Pullover-L-Red","id":367,"category_ids":["14"],"sku":"MJ10-L-Red","max_regular_price":66,"status":1},{"image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","small_image":"/m/j/mj10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mars-heattech-trade-pullover-xl-black","regular_price":66,"required_options":"0","msrp_display_actual_price_type":"0","max_price":66,"minimal_regular_price":66,"size":"171","final_price":66,"special_price":null,"price":66,"minimal_price":66,"name":"Mars HeatTech™ Pullover-XL-Black","id":368,"category_ids":["14"],"sku":"MJ10-XL-Black","max_regular_price":66,"status":1},{"image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","small_image":"/m/j/mj10-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mars-heattech-trade-pullover-xl-orange","regular_price":66,"required_options":"0","msrp_display_actual_price_type":"0","max_price":66,"minimal_regular_price":66,"size":"171","final_price":66,"special_price":null,"price":66,"minimal_price":66,"name":"Mars HeatTech™ Pullover-XL-Orange","id":369,"category_ids":["14"],"sku":"MJ10-XL-Orange","max_regular_price":66,"status":1},{"image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","small_image":"/m/j/mj10-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mars-heattech-trade-pullover-xl-red","regular_price":66,"required_options":"0","msrp_display_actual_price_type":"0","max_price":66,"minimal_regular_price":66,"size":"171","final_price":66,"special_price":null,"price":66,"minimal_price":66,"name":"Mars HeatTech™ Pullover-XL-Red","id":370,"category_ids":["14"],"sku":"MJ10-XL-Red","max_regular_price":66,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":371,"id":41,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":371,"id":40,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,56,58],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-371.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"387","_score":1,"_source":{"id":387,"sku":"MJ11","name":"Typhon Performance Fleece-lined Jacket","attribute_set_id":9,"price":60,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                                    \n

                                    • Black full-zip flight jacket.
                                    • Cocona® wicking fiber.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"typhon-performance-fleece-lined-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,37,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[117,122,124,126,129],"pattern":"197","climate":[202,208,210,211],"slug":"typhon-performance-fleece-lined-jacket-387","links":{},"stock":{"item_id":387,"product_id":387,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","small_image":"/m/j/mj11-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"typhon-performance-fleece-lined-jacket-xs-black","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":60,"name":"Typhon Performance Fleece-lined Jacket-XS-Black","id":372,"category_ids":["14"],"sku":"MJ11-XS-Black","status":1},{"image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","small_image":"/m/j/mj11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"typhon-performance-fleece-lined-jacket-xs-green","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"167","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Typhon Performance Fleece-lined Jacket-XS-Green","id":373,"category_ids":["14"],"sku":"MJ11-XS-Green","max_regular_price":60,"status":1},{"image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","small_image":"/m/j/mj11-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"typhon-performance-fleece-lined-jacket-xs-red","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"167","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Typhon Performance Fleece-lined Jacket-XS-Red","id":374,"category_ids":["14"],"sku":"MJ11-XS-Red","max_regular_price":60,"status":1},{"image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","small_image":"/m/j/mj11-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"typhon-performance-fleece-lined-jacket-s-black","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"168","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Typhon Performance Fleece-lined Jacket-S-Black","id":375,"category_ids":["14"],"sku":"MJ11-S-Black","max_regular_price":60,"status":1},{"image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","small_image":"/m/j/mj11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"typhon-performance-fleece-lined-jacket-s-green","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"168","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Typhon Performance Fleece-lined Jacket-S-Green","id":376,"category_ids":["14"],"sku":"MJ11-S-Green","max_regular_price":60,"status":1},{"image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","small_image":"/m/j/mj11-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"typhon-performance-fleece-lined-jacket-s-red","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"168","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Typhon Performance Fleece-lined Jacket-S-Red","id":377,"category_ids":["14"],"sku":"MJ11-S-Red","max_regular_price":60,"status":1},{"image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","small_image":"/m/j/mj11-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"typhon-performance-fleece-lined-jacket-m-black","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"169","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Typhon Performance Fleece-lined Jacket-M-Black","id":378,"category_ids":["14"],"sku":"MJ11-M-Black","max_regular_price":60,"status":1},{"image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","small_image":"/m/j/mj11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"typhon-performance-fleece-lined-jacket-m-green","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"169","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Typhon Performance Fleece-lined Jacket-M-Green","id":379,"category_ids":["14"],"sku":"MJ11-M-Green","max_regular_price":60,"status":1},{"image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","small_image":"/m/j/mj11-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"typhon-performance-fleece-lined-jacket-m-red","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"169","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Typhon Performance Fleece-lined Jacket-M-Red","id":380,"category_ids":["14"],"sku":"MJ11-M-Red","max_regular_price":60,"status":1},{"image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","small_image":"/m/j/mj11-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"typhon-performance-fleece-lined-jacket-l-black","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"170","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Typhon Performance Fleece-lined Jacket-L-Black","id":381,"category_ids":["14"],"sku":"MJ11-L-Black","max_regular_price":60,"status":1},{"image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","small_image":"/m/j/mj11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"typhon-performance-fleece-lined-jacket-l-green","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"170","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Typhon Performance Fleece-lined Jacket-L-Green","id":382,"category_ids":["14"],"sku":"MJ11-L-Green","max_regular_price":60,"status":1},{"image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","small_image":"/m/j/mj11-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"typhon-performance-fleece-lined-jacket-l-red","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"170","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Typhon Performance Fleece-lined Jacket-L-Red","id":383,"category_ids":["14"],"sku":"MJ11-L-Red","max_regular_price":60,"status":1},{"image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","small_image":"/m/j/mj11-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"typhon-performance-fleece-lined-jacket-xl-black","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"171","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Typhon Performance Fleece-lined Jacket-XL-Black","id":384,"category_ids":["14"],"sku":"MJ11-XL-Black","max_regular_price":60,"status":1},{"image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","small_image":"/m/j/mj11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"typhon-performance-fleece-lined-jacket-xl-green","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"171","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Typhon Performance Fleece-lined Jacket-XL-Green","id":385,"category_ids":["14"],"sku":"MJ11-XL-Green","max_regular_price":60,"status":1},{"image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","small_image":"/m/j/mj11-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"typhon-performance-fleece-lined-jacket-xl-red","regular_price":60,"required_options":"0","msrp_display_actual_price_type":"0","max_price":60,"minimal_regular_price":60,"size":"171","final_price":60,"special_price":null,"price":60,"minimal_price":60,"name":"Typhon Performance Fleece-lined Jacket-XL-Red","id":386,"category_ids":["14"],"sku":"MJ11-XL-Red","max_regular_price":60,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":387,"id":43,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":387,"id":42,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,53,58],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-387.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"315","_score":1,"_source":{"id":315,"sku":"MJ07-M-Red","name":"Orion Two-Tone Fitted Jacket-M-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                                    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                                    \n

                                    • Red full zip fleece with gray insets.
                                    • Double-knit construction.
                                    • Full athletic cut.
                                    • Set in sleeves.
                                    • Front pouch pocket.

                                    ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"orion-two-tone-fitted-jacket-m-red-315","links":{},"stock":{"item_id":315,"product_id":315,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-m-red-315.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"326","_score":1,"_source":{"id":326,"sku":"MJ08-XS-Green","name":"Lando Gym Jacket-XS-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                                    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                                    \n

                                    • Gray polyester/spandex full zip jacket with orange lining.
                                    • Right pocket device storage.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lando-gym-jacket-xs-green-326","links":{},"stock":{"item_id":326,"product_id":326,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xs-green-326.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"319","_score":1,"_source":{"id":319,"sku":"MJ07-L-Yellow","name":"Orion Two-Tone Fitted Jacket-L-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                                    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                                    \n

                                    • Red full zip fleece with gray insets.
                                    • Double-knit construction.
                                    • Full athletic cut.
                                    • Set in sleeves.
                                    • Front pouch pocket.

                                    ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"orion-two-tone-fitted-jacket-l-yellow-319","links":{},"stock":{"item_id":319,"product_id":319,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-l-yellow-319.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"338","_score":1,"_source":{"id":338,"sku":"MJ08-XL-Green","name":"Lando Gym Jacket-XL-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                                    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                                    \n

                                    • Gray polyester/spandex full zip jacket with orange lining.
                                    • Right pocket device storage.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lando-gym-jacket-xl-green-338","links":{},"stock":{"item_id":338,"product_id":338,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xl-green-338.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"336","_score":1,"_source":{"id":336,"sku":"MJ08-XL-Blue","name":"Lando Gym Jacket-XL-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                                    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                                    \n

                                    • Gray polyester/spandex full zip jacket with orange lining.
                                    • Right pocket device storage.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lando-gym-jacket-xl-blue-336","links":{},"stock":{"item_id":336,"product_id":336,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj08-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xl-blue-336.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"311","_score":1,"_source":{"id":311,"sku":"MJ07-S-Black","name":"Orion Two-Tone Fitted Jacket-S-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                                    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                                    \n

                                    • Red full zip fleece with gray insets.
                                    • Double-knit construction.
                                    • Full athletic cut.
                                    • Set in sleeves.
                                    • Front pouch pocket.

                                    ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"orion-two-tone-fitted-jacket-s-black-311","links":{},"stock":{"item_id":311,"product_id":311,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-s-black-311.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"337","_score":1,"_source":{"id":337,"sku":"MJ08-XL-Gray","name":"Lando Gym Jacket-XL-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                                    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                                    \n

                                    • Gray polyester/spandex full zip jacket with orange lining.
                                    • Right pocket device storage.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xl-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"lando-gym-jacket-xl-gray-337","links":{},"stock":{"item_id":337,"product_id":337,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xl-gray-337.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"304","_score":1,"_source":{"id":304,"sku":"MJ04-XL-Black","name":"Kenobi Trail Jacket-XL-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                                    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                                    \n

                                    • Black 1/4 zip pullover with royal zipper.
                                    • Adjustable hood and sleeve cuffs.
                                    • Machine wash/air dry.

                                    ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"kenobi-trail-jacket-xl-black-304","links":{},"stock":{"item_id":304,"product_id":304,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xl-black-304.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"334","_score":1,"_source":{"id":334,"sku":"MJ08-L-Gray","name":"Lando Gym Jacket-L-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                                    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                                    \n

                                    • Gray polyester/spandex full zip jacket with orange lining.
                                    • Right pocket device storage.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-l-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lando-gym-jacket-l-gray-334","links":{},"stock":{"item_id":334,"product_id":334,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-l-gray-334.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"327","_score":1,"_source":{"id":327,"sku":"MJ08-S-Blue","name":"Lando Gym Jacket-S-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                                    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                                    \n

                                    • Gray polyester/spandex full zip jacket with orange lining.
                                    • Right pocket device storage.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lando-gym-jacket-s-blue-327","links":{},"stock":{"item_id":327,"product_id":327,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj08-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-s-blue-327.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"309","_score":1,"_source":{"id":309,"sku":"MJ07-XS-Red","name":"Orion Two-Tone Fitted Jacket-XS-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                                    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                                    \n

                                    • Red full zip fleece with gray insets.
                                    • Double-knit construction.
                                    • Full athletic cut.
                                    • Set in sleeves.
                                    • Front pouch pocket.

                                    ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"orion-two-tone-fitted-jacket-xs-red-309","links":{},"stock":{"item_id":309,"product_id":309,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xs-red-309.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"328","_score":1,"_source":{"id":328,"sku":"MJ08-S-Gray","name":"Lando Gym Jacket-S-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                                    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                                    \n

                                    • Gray polyester/spandex full zip jacket with orange lining.
                                    • Right pocket device storage.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lando-gym-jacket-s-gray-328","links":{},"stock":{"item_id":328,"product_id":328,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-s-gray-328.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"318","_score":1,"_source":{"id":318,"sku":"MJ07-L-Red","name":"Orion Two-Tone Fitted Jacket-L-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                                    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                                    \n

                                    • Red full zip fleece with gray insets.
                                    • Double-knit construction.
                                    • Full athletic cut.
                                    • Set in sleeves.
                                    • Front pouch pocket.

                                    ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"orion-two-tone-fitted-jacket-l-red-318","links":{},"stock":{"item_id":318,"product_id":318,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-l-red-318.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"325","_score":1,"_source":{"id":325,"sku":"MJ08-XS-Gray","name":"Lando Gym Jacket-XS-Gray","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                                    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                                    \n

                                    • Gray polyester/spandex full zip jacket with orange lining.
                                    • Right pocket device storage.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj08-gray_main.jpg","small_image":"/m/j/mj08-gray_main.jpg","thumbnail":"/m/j/mj08-gray_main.jpg","color":"52","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lando-gym-jacket-xs-gray-325","links":{},"stock":{"item_id":325,"product_id":325,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj08-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj08-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj08-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xs-gray-325.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"308","_score":1,"_source":{"id":308,"sku":"MJ07-XS-Black","name":"Orion Two-Tone Fitted Jacket-XS-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                                    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                                    \n

                                    • Red full zip fleece with gray insets.
                                    • Double-knit construction.
                                    • Full athletic cut.
                                    • Set in sleeves.
                                    • Front pouch pocket.

                                    ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"orion-two-tone-fitted-jacket-xs-black-308","links":{},"stock":{"item_id":308,"product_id":308,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xs-black-308.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"305","_score":1,"_source":{"id":305,"sku":"MJ04-XL-Blue","name":"Kenobi Trail Jacket-XL-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                                    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                                    \n

                                    • Black 1/4 zip pullover with royal zipper.
                                    • Adjustable hood and sleeve cuffs.
                                    • Machine wash/air dry.

                                    ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"kenobi-trail-jacket-xl-blue-305","links":{},"stock":{"item_id":305,"product_id":305,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-xl-blue-305.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"310","_score":1,"_source":{"id":310,"sku":"MJ07-XS-Yellow","name":"Orion Two-Tone Fitted Jacket-XS-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                                    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                                    \n

                                    • Red full zip fleece with gray insets.
                                    • Double-knit construction.
                                    • Full athletic cut.
                                    • Set in sleeves.
                                    • Front pouch pocket.

                                    ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"orion-two-tone-fitted-jacket-xs-yellow-310","links":{},"stock":{"item_id":310,"product_id":310,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xs-yellow-310.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"330","_score":1,"_source":{"id":330,"sku":"MJ08-M-Blue","name":"Lando Gym Jacket-M-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                                    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                                    \n

                                    • Gray polyester/spandex full zip jacket with orange lining.
                                    • Right pocket device storage.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lando-gym-jacket-m-blue-330","links":{},"stock":{"item_id":330,"product_id":330,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj08-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-m-blue-330.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"314","_score":1,"_source":{"id":314,"sku":"MJ07-M-Black","name":"Orion Two-Tone Fitted Jacket-M-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                                    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                                    \n

                                    • Red full zip fleece with gray insets.
                                    • Double-knit construction.
                                    • Full athletic cut.
                                    • Set in sleeves.
                                    • Front pouch pocket.

                                    ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"orion-two-tone-fitted-jacket-m-black-314","links":{},"stock":{"item_id":314,"product_id":314,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-m-black-314.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"322","_score":1,"_source":{"id":322,"sku":"MJ07-XL-Yellow","name":"Orion Two-Tone Fitted Jacket-XL-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                                    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                                    \n

                                    • Red full zip fleece with gray insets.
                                    • Double-knit construction.
                                    • Full athletic cut.
                                    • Set in sleeves.
                                    • Front pouch pocket.

                                    ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"orion-two-tone-fitted-jacket-xl-yellow-322","links":{},"stock":{"item_id":322,"product_id":322,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xl-yellow-322.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"320","_score":1,"_source":{"id":320,"sku":"MJ07-XL-Black","name":"Orion Two-Tone Fitted Jacket-XL-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                                    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                                    \n

                                    • Red full zip fleece with gray insets.
                                    • Double-knit construction.
                                    • Full athletic cut.
                                    • Set in sleeves.
                                    • Front pouch pocket.

                                    ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"orion-two-tone-fitted-jacket-xl-black-320","links":{},"stock":{"item_id":320,"product_id":320,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-xl-black-320.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"349","_score":1,"_source":{"id":349,"sku":"MJ09-L-Blue","name":"Taurus Elements Shell-L-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                                    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                                    \n

                                    • Yellow 1/4 zip pullover.
                                    • Two chest pockets.
                                    • Standard fit.
                                    • Waterproof, breathable, seam sealed.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"taurus-elements-shell-l-blue-349","links":{},"stock":{"item_id":349,"product_id":349,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-l-blue-349.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"346","_score":1,"_source":{"id":346,"sku":"MJ09-M-Blue","name":"Taurus Elements Shell-M-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                                    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                                    \n

                                    • Yellow 1/4 zip pullover.
                                    • Two chest pockets.
                                    • Standard fit.
                                    • Waterproof, breathable, seam sealed.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"taurus-elements-shell-m-blue-346","links":{},"stock":{"item_id":346,"product_id":346,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-m-blue-346.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"303","_score":1,"_source":{"id":303,"sku":"MJ04-L-Purple","name":"Kenobi Trail Jacket-L-Purple","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                                    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                                    \n

                                    • Black 1/4 zip pullover with royal zipper.
                                    • Adjustable hood and sleeve cuffs.
                                    • Machine wash/air dry.

                                    ","image":"/m/j/mj04-purple_main.jpg","small_image":"/m/j/mj04-purple_main.jpg","thumbnail":"/m/j/mj04-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"kenobi-trail-jacket-l-purple-303","links":{},"stock":{"item_id":303,"product_id":303,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj04-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-l-purple-303.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"343","_score":1,"_source":{"id":343,"sku":"MJ09-S-Blue","name":"Taurus Elements Shell-S-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                                    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                                    \n

                                    • Yellow 1/4 zip pullover.
                                    • Two chest pockets.
                                    • Standard fit.
                                    • Waterproof, breathable, seam sealed.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"taurus-elements-shell-s-blue-343","links":{},"stock":{"item_id":343,"product_id":343,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-s-blue-343.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"302","_score":1,"_source":{"id":302,"sku":"MJ04-L-Blue","name":"Kenobi Trail Jacket-L-Blue","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                                    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                                    \n

                                    • Black 1/4 zip pullover with royal zipper.
                                    • Adjustable hood and sleeve cuffs.
                                    • Machine wash/air dry.

                                    ","image":"/m/j/mj04-blue_main.jpg","small_image":"/m/j/mj04-blue_main.jpg","thumbnail":"/m/j/mj04-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"kenobi-trail-jacket-l-blue-302","links":{},"stock":{"item_id":302,"product_id":302,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj04-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-l-blue-302.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"335","_score":1,"_source":{"id":335,"sku":"MJ08-L-Green","name":"Lando Gym Jacket-L-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                                    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                                    \n

                                    • Gray polyester/spandex full zip jacket with orange lining.
                                    • Right pocket device storage.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"lando-gym-jacket-l-green-335","links":{},"stock":{"item_id":335,"product_id":335,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-l-green-335.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"301","_score":1,"_source":{"id":301,"sku":"MJ04-L-Black","name":"Kenobi Trail Jacket-L-Black","attribute_set_id":9,"price":47,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":47,"max_price":47,"max_regular_price":47,"minimal_regular_price":47,"special_price":null,"minimal_price":47,"regular_price":47,"description":"

                                    Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

                                    \n

                                    • Black 1/4 zip pullover with royal zipper.
                                    • Adjustable hood and sleeve cuffs.
                                    • Machine wash/air dry.

                                    ","image":"/m/j/mj04-black_main.jpg","small_image":"/m/j/mj04-black_main.jpg","thumbnail":"/m/j/mj04-black_main.jpg","color":"49","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"kenobi-trail-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"kenobi-trail-jacket-l-black-301","links":{},"stock":{"item_id":301,"product_id":301,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj04-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj04-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj04-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/kenobi-trail-jacket-l-black-301.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"342","_score":1,"_source":{"id":342,"sku":"MJ09-XS-Yellow","name":"Taurus Elements Shell-XS-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                                    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                                    \n

                                    • Yellow 1/4 zip pullover.
                                    • Two chest pockets.
                                    • Standard fit.
                                    • Waterproof, breathable, seam sealed.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"taurus-elements-shell-xs-yellow-342","links":{},"stock":{"item_id":342,"product_id":342,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xs-yellow-342.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"332","_score":1,"_source":{"id":332,"sku":"MJ08-M-Green","name":"Lando Gym Jacket-M-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                                    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                                    \n

                                    • Gray polyester/spandex full zip jacket with orange lining.
                                    • Right pocket device storage.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"lando-gym-jacket-m-green-332","links":{},"stock":{"item_id":332,"product_id":332,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-m-green-332.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"324","_score":1,"_source":{"id":324,"sku":"MJ08-XS-Blue","name":"Lando Gym Jacket-XS-Blue","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                                    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                                    \n

                                    • Gray polyester/spandex full zip jacket with orange lining.
                                    • Right pocket device storage.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj08-blue_main.jpg","small_image":"/m/j/mj08-blue_main.jpg","thumbnail":"/m/j/mj08-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"lando-gym-jacket-xs-blue-324","links":{},"stock":{"item_id":324,"product_id":324,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj08-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-xs-blue-324.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"316","_score":1,"_source":{"id":316,"sku":"MJ07-M-Yellow","name":"Orion Two-Tone Fitted Jacket-M-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                                    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                                    \n

                                    • Red full zip fleece with gray insets.
                                    • Double-knit construction.
                                    • Full athletic cut.
                                    • Set in sleeves.
                                    • Front pouch pocket.

                                    ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"orion-two-tone-fitted-jacket-m-yellow-316","links":{},"stock":{"item_id":316,"product_id":316,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-m-yellow-316.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"360","_score":1,"_source":{"id":360,"sku":"MJ10-S-Orange","name":"Mars HeatTech™ Pullover-S-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                                    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                                    \n

                                    • Red 1/4 zip pullover.
                                    • Adjustable VELCRO® sleeve cuffs.
                                    • Two hand pockets.
                                    • Napoleon pocket.
                                    • Machine wash/dry

                                    ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mars-heattech-and-trade-pullover-s-orange-360","links":{},"stock":{"item_id":360,"product_id":360,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-s-orange-360.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"365","_score":1,"_source":{"id":365,"sku":"MJ10-L-Black","name":"Mars HeatTech™ Pullover-L-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                                    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                                    \n

                                    • Red 1/4 zip pullover.
                                    • Adjustable VELCRO® sleeve cuffs.
                                    • Two hand pockets.
                                    • Napoleon pocket.
                                    • Machine wash/dry

                                    ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mars-heattech-and-trade-pullover-l-black-365","links":{},"stock":{"item_id":365,"product_id":365,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-l-black-365.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"354","_score":1,"_source":{"id":354,"sku":"MJ09-XL-Yellow","name":"Taurus Elements Shell-XL-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                                    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                                    \n

                                    • Yellow 1/4 zip pullover.
                                    • Two chest pockets.
                                    • Standard fit.
                                    • Waterproof, breathable, seam sealed.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"taurus-elements-shell-xl-yellow-354","links":{},"stock":{"item_id":354,"product_id":354,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xl-yellow-354.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"366","_score":1,"_source":{"id":366,"sku":"MJ10-L-Orange","name":"Mars HeatTech™ Pullover-L-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                                    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                                    \n

                                    • Red 1/4 zip pullover.
                                    • Adjustable VELCRO® sleeve cuffs.
                                    • Two hand pockets.
                                    • Napoleon pocket.
                                    • Machine wash/dry

                                    ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mars-heattech-and-trade-pullover-l-orange-366","links":{},"stock":{"item_id":366,"product_id":366,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-l-orange-366.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"357","_score":1,"_source":{"id":357,"sku":"MJ10-XS-Orange","name":"Mars HeatTech™ Pullover-XS-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                                    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                                    \n

                                    • Red 1/4 zip pullover.
                                    • Adjustable VELCRO® sleeve cuffs.
                                    • Two hand pockets.
                                    • Napoleon pocket.
                                    • Machine wash/dry

                                    ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mars-heattech-and-trade-pullover-xs-orange-357","links":{},"stock":{"item_id":357,"product_id":357,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xs-orange-357.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"378","_score":1,"_source":{"id":378,"sku":"MJ11-M-Black","name":"Typhon Performance Fleece-lined Jacket-M-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                                    \n

                                    • Black full-zip flight jacket.
                                    • Cocona® wicking fiber.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"typhon-performance-fleece-lined-jacket-m-black-378","links":{},"stock":{"item_id":378,"product_id":378,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-m-black-378.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"368","_score":1,"_source":{"id":368,"sku":"MJ10-XL-Black","name":"Mars HeatTech™ Pullover-XL-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                                    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                                    \n

                                    • Red 1/4 zip pullover.
                                    • Adjustable VELCRO® sleeve cuffs.
                                    • Two hand pockets.
                                    • Napoleon pocket.
                                    • Machine wash/dry

                                    ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mars-heattech-and-trade-pullover-xl-black-368","links":{},"stock":{"item_id":368,"product_id":368,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xl-black-368.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"379","_score":1,"_source":{"id":379,"sku":"MJ11-M-Green","name":"Typhon Performance Fleece-lined Jacket-M-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                                    \n

                                    • Black full-zip flight jacket.
                                    • Cocona® wicking fiber.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"typhon-performance-fleece-lined-jacket-m-green-379","links":{},"stock":{"item_id":379,"product_id":379,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-m-green-379.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"359","_score":1,"_source":{"id":359,"sku":"MJ10-S-Black","name":"Mars HeatTech™ Pullover-S-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                                    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                                    \n

                                    • Red 1/4 zip pullover.
                                    • Adjustable VELCRO® sleeve cuffs.
                                    • Two hand pockets.
                                    • Napoleon pocket.
                                    • Machine wash/dry

                                    ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mars-heattech-and-trade-pullover-s-black-359","links":{},"stock":{"item_id":359,"product_id":359,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-s-black-359.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"373","_score":1,"_source":{"id":373,"sku":"MJ11-XS-Green","name":"Typhon Performance Fleece-lined Jacket-XS-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                                    \n

                                    • Black full-zip flight jacket.
                                    • Cocona® wicking fiber.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"typhon-performance-fleece-lined-jacket-xs-green-373","links":{},"stock":{"item_id":373,"product_id":373,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xs-green-373.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"377","_score":1,"_source":{"id":377,"sku":"MJ11-S-Red","name":"Typhon Performance Fleece-lined Jacket-S-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                                    \n

                                    • Black full-zip flight jacket.
                                    • Cocona® wicking fiber.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"typhon-performance-fleece-lined-jacket-s-red-377","links":{},"stock":{"item_id":377,"product_id":377,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-s-red-377.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"353","_score":1,"_source":{"id":353,"sku":"MJ09-XL-White","name":"Taurus Elements Shell-XL-White","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                                    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                                    \n

                                    • Yellow 1/4 zip pullover.
                                    • Two chest pockets.
                                    • Standard fit.
                                    • Waterproof, breathable, seam sealed.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj09-white_main.jpg","small_image":"/m/j/mj09-white_main.jpg","thumbnail":"/m/j/mj09-white_main.jpg","color":"59","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"taurus-elements-shell-xl-white-353","links":{},"stock":{"item_id":353,"product_id":353,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj09-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xl-white-353.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"358","_score":1,"_source":{"id":358,"sku":"MJ10-XS-Red","name":"Mars HeatTech™ Pullover-XS-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                                    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                                    \n

                                    • Red 1/4 zip pullover.
                                    • Adjustable VELCRO® sleeve cuffs.
                                    • Two hand pockets.
                                    • Napoleon pocket.
                                    • Machine wash/dry

                                    ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mars-heattech-and-trade-pullover-xs-red-358","links":{},"stock":{"item_id":358,"product_id":358,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xs-red-358.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"376","_score":1,"_source":{"id":376,"sku":"MJ11-S-Green","name":"Typhon Performance Fleece-lined Jacket-S-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                                    \n

                                    • Black full-zip flight jacket.
                                    • Cocona® wicking fiber.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"typhon-performance-fleece-lined-jacket-s-green-376","links":{},"stock":{"item_id":376,"product_id":376,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-s-green-376.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"380","_score":1,"_source":{"id":380,"sku":"MJ11-M-Red","name":"Typhon Performance Fleece-lined Jacket-M-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                                    \n

                                    • Black full-zip flight jacket.
                                    • Cocona® wicking fiber.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"typhon-performance-fleece-lined-jacket-m-red-380","links":{},"stock":{"item_id":380,"product_id":380,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-m-red-380.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"372","_score":1,"_source":{"id":372,"sku":"MJ11-XS-Black","name":"Typhon Performance Fleece-lined Jacket-XS-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                                    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                                    \n

                                    • Black full-zip flight jacket.
                                    • Cocona® wicking fiber.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"typhon-performance-fleece-lined-jacket-xs-black-372","links":{},"stock":{"item_id":372,"product_id":372,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-07-03 11:29:59","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xs-black-372.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"386","_score":1,"_source":{"id":386,"sku":"MJ11-XL-Red","name":"Typhon Performance Fleece-lined Jacket-XL-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                                    \n

                                    • Black full-zip flight jacket.
                                    • Cocona® wicking fiber.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"typhon-performance-fleece-lined-jacket-xl-red-386","links":{},"stock":{"item_id":386,"product_id":386,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xl-red-386.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"391","_score":1,"_source":{"id":391,"sku":"MJ06-S-Blue","name":"Jupiter All-Weather Trainer -S-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                                    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                                    \n

                                    • Relaxed fit.
                                    • Hand pockets.
                                    • Machine wash/dry.
                                    • Reflective safety trim.

                                    ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"jupiter-all-weather-trainer-s-blue-391","links":{},"stock":{"item_id":391,"product_id":391,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-s-blue-391.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"374","_score":1,"_source":{"id":374,"sku":"MJ11-XS-Red","name":"Typhon Performance Fleece-lined Jacket-XS-Red","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                                    \n

                                    • Black full-zip flight jacket.
                                    • Cocona® wicking fiber.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj11-red_main.jpg","small_image":"/m/j/mj11-red_main.jpg","thumbnail":"/m/j/mj11-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"typhon-performance-fleece-lined-jacket-xs-red-374","links":{},"stock":{"item_id":374,"product_id":374,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj11-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xs-red-374.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"397","_score":1,"_source":{"id":397,"sku":"MJ06-L-Blue","name":"Jupiter All-Weather Trainer -L-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                                    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                                    \n

                                    • Relaxed fit.
                                    • Hand pockets.
                                    • Machine wash/dry.
                                    • Reflective safety trim.

                                    ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"jupiter-all-weather-trainer-l-blue-397","links":{},"stock":{"item_id":397,"product_id":397,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-l-blue-397.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"381","_score":1,"_source":{"id":381,"sku":"MJ11-L-Black","name":"Typhon Performance Fleece-lined Jacket-L-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                                    \n

                                    • Black full-zip flight jacket.
                                    • Cocona® wicking fiber.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"typhon-performance-fleece-lined-jacket-l-black-381","links":{},"stock":{"item_id":381,"product_id":381,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-l-black-381.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"388","_score":1,"_source":{"id":388,"sku":"MJ06-XS-Blue","name":"Jupiter All-Weather Trainer -XS-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                                    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                                    \n

                                    • Relaxed fit.
                                    • Hand pockets.
                                    • Machine wash/dry.
                                    • Reflective safety trim.

                                    ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"jupiter-all-weather-trainer-xs-blue-388","links":{},"stock":{"item_id":388,"product_id":388,"stock_id":1,"qty":49,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xs-blue-388.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"384","_score":1,"_source":{"id":384,"sku":"MJ11-XL-Black","name":"Typhon Performance Fleece-lined Jacket-XL-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                                    \n

                                    • Black full-zip flight jacket.
                                    • Cocona® wicking fiber.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"typhon-performance-fleece-lined-jacket-xl-black-384","links":{},"stock":{"item_id":384,"product_id":384,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xl-black-384.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"382","_score":1,"_source":{"id":382,"sku":"MJ11-L-Green","name":"Typhon Performance Fleece-lined Jacket-L-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                                    \n

                                    • Black full-zip flight jacket.
                                    • Cocona® wicking fiber.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"typhon-performance-fleece-lined-jacket-l-green-382","links":{},"stock":{"item_id":382,"product_id":382,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-l-green-382.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"395","_score":1,"_source":{"id":395,"sku":"MJ06-M-Green","name":"Jupiter All-Weather Trainer -M-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                                    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                                    \n

                                    • Relaxed fit.
                                    • Hand pockets.
                                    • Machine wash/dry.
                                    • Reflective safety trim.

                                    ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jupiter-all-weather-trainer-m-green-395","links":{},"stock":{"item_id":395,"product_id":395,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-m-green-395.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"394","_score":1,"_source":{"id":394,"sku":"MJ06-M-Blue","name":"Jupiter All-Weather Trainer -M-Blue","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                                    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                                    \n

                                    • Relaxed fit.
                                    • Hand pockets.
                                    • Machine wash/dry.
                                    • Reflective safety trim.

                                    ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jupiter-all-weather-trainer-m-blue-394","links":{},"stock":{"item_id":394,"product_id":394,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-m-blue-394.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"385","_score":1,"_source":{"id":385,"sku":"MJ11-XL-Green","name":"Typhon Performance Fleece-lined Jacket-XL-Green","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                                    \n

                                    • Black full-zip flight jacket.
                                    • Cocona® wicking fiber.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj11-green_main.jpg","small_image":"/m/j/mj11-green_main.jpg","thumbnail":"/m/j/mj11-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"typhon-performance-fleece-lined-jacket-xl-green-385","links":{},"stock":{"item_id":385,"product_id":385,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj11-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-xl-green-385.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"396","_score":1,"_source":{"id":396,"sku":"MJ06-M-Purple","name":"Jupiter All-Weather Trainer -M-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                                    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                                    \n

                                    • Relaxed fit.
                                    • Hand pockets.
                                    • Machine wash/dry.
                                    • Reflective safety trim.

                                    ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"jupiter-all-weather-trainer-m-purple-396","links":{},"stock":{"item_id":396,"product_id":396,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-m-purple-396.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"275","_score":1,"_source":{"id":275,"sku":"MJ01","name":"Beaumont Summit Kit","attribute_set_id":9,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.

                                    \n

                                    • Yellow full zip rain jacket.
                                    • Full-zip front.
                                    • Stand-up collar.
                                    • Elasticized cuffs.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj01-yellow_main.jpg","small_image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"beaumont-summit-kit","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,148,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":[120,121,123,124,126,128,130],"pattern":"197","climate":[204,207,208,210],"slug":"beaumont-summit-kit-275","links":{},"stock":{"item_id":275,"product_id":275,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj01-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj01-yellow_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj01-yellow_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","small_image":"/m/j/mj01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"beaumont-summit-kit-xs-orange","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"167","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Beaumont Summit Kit-XS-Orange","id":260,"category_ids":["14"],"sku":"MJ01-XS-Orange","max_regular_price":42,"status":1},{"image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","small_image":"/m/j/mj01-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"beaumont-summit-kit-xs-red","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"167","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Beaumont Summit Kit-XS-Red","id":261,"category_ids":["14"],"sku":"MJ01-XS-Red","max_regular_price":42,"status":1},{"image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","small_image":"/m/j/mj01-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"beaumont-summit-kit-xs-yellow","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"167","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Beaumont Summit Kit-XS-Yellow","id":262,"category_ids":["14"],"sku":"MJ01-XS-Yellow","max_regular_price":42,"status":1},{"image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","small_image":"/m/j/mj01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"beaumont-summit-kit-s-orange","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"168","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Beaumont Summit Kit-S-Orange","id":263,"category_ids":["14"],"sku":"MJ01-S-Orange","max_regular_price":42,"status":1},{"image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","small_image":"/m/j/mj01-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"beaumont-summit-kit-s-red","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"168","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Beaumont Summit Kit-S-Red","id":264,"category_ids":["14"],"sku":"MJ01-S-Red","max_regular_price":42,"status":1},{"image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","small_image":"/m/j/mj01-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"beaumont-summit-kit-s-yellow","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"168","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Beaumont Summit Kit-S-Yellow","id":265,"category_ids":["14"],"sku":"MJ01-S-Yellow","max_regular_price":42,"status":1},{"image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","small_image":"/m/j/mj01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"beaumont-summit-kit-m-orange","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"169","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Beaumont Summit Kit-M-Orange","id":266,"category_ids":["14"],"sku":"MJ01-M-Orange","max_regular_price":42,"status":1},{"image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","small_image":"/m/j/mj01-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"beaumont-summit-kit-m-red","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"169","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Beaumont Summit Kit-M-Red","id":267,"category_ids":["14"],"sku":"MJ01-M-Red","max_regular_price":42,"status":1},{"image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","small_image":"/m/j/mj01-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"beaumont-summit-kit-m-yellow","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"169","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Beaumont Summit Kit-M-Yellow","id":268,"category_ids":["14"],"sku":"MJ01-M-Yellow","max_regular_price":42,"status":1},{"image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","small_image":"/m/j/mj01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"beaumont-summit-kit-l-orange","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"170","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Beaumont Summit Kit-L-Orange","id":269,"category_ids":["14"],"sku":"MJ01-L-Orange","max_regular_price":42,"status":1},{"image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","small_image":"/m/j/mj01-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"beaumont-summit-kit-l-red","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"170","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Beaumont Summit Kit-L-Red","id":270,"category_ids":["14"],"sku":"MJ01-L-Red","max_regular_price":42,"status":1},{"image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","small_image":"/m/j/mj01-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"beaumont-summit-kit-l-yellow","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"170","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Beaumont Summit Kit-L-Yellow","id":271,"category_ids":["14"],"sku":"MJ01-L-Yellow","max_regular_price":42,"status":1},{"image":"/m/j/mj01-orange_main.jpg","thumbnail":"/m/j/mj01-orange_main.jpg","color":"56","small_image":"/m/j/mj01-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"beaumont-summit-kit-xl-orange","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"171","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Beaumont Summit Kit-XL-Orange","id":272,"category_ids":["14"],"sku":"MJ01-XL-Orange","max_regular_price":42,"status":1},{"image":"/m/j/mj01-red_main.jpg","thumbnail":"/m/j/mj01-red_main.jpg","color":"58","small_image":"/m/j/mj01-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"beaumont-summit-kit-xl-red","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"171","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Beaumont Summit Kit-XL-Red","id":273,"category_ids":["14"],"sku":"MJ01-XL-Red","max_regular_price":42,"status":1},{"image":"/m/j/mj01-yellow_main.jpg","thumbnail":"/m/j/mj01-yellow_main.jpg","color":"60","small_image":"/m/j/mj01-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"beaumont-summit-kit-xl-yellow","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"171","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Beaumont Summit Kit-XL-Yellow","id":274,"category_ids":["14"],"sku":"MJ01-XL-Yellow","max_regular_price":42,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":275,"id":29,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":275,"id":28,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[56,58,60],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/beaumont-summit-kit-275.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"363","_score":1,"_source":{"id":363,"sku":"MJ10-M-Orange","name":"Mars HeatTech™ Pullover-M-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                                    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                                    \n

                                    • Red 1/4 zip pullover.
                                    • Adjustable VELCRO® sleeve cuffs.
                                    • Two hand pockets.
                                    • Napoleon pocket.
                                    • Machine wash/dry

                                    ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mars-heattech-and-trade-pullover-m-orange-363","links":{},"stock":{"item_id":363,"product_id":363,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-m-orange-363.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"364","_score":1,"_source":{"id":364,"sku":"MJ10-M-Red","name":"Mars HeatTech™ Pullover-M-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                                    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                                    \n

                                    • Red 1/4 zip pullover.
                                    • Adjustable VELCRO® sleeve cuffs.
                                    • Two hand pockets.
                                    • Napoleon pocket.
                                    • Machine wash/dry

                                    ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mars-heattech-and-trade-pullover-m-red-364","links":{},"stock":{"item_id":364,"product_id":364,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-m-red-364.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"370","_score":1,"_source":{"id":370,"sku":"MJ10-XL-Red","name":"Mars HeatTech™ Pullover-XL-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                                    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                                    \n

                                    • Red 1/4 zip pullover.
                                    • Adjustable VELCRO® sleeve cuffs.
                                    • Two hand pockets.
                                    • Napoleon pocket.
                                    • Machine wash/dry

                                    ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mars-heattech-and-trade-pullover-xl-red-370","links":{},"stock":{"item_id":370,"product_id":370,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xl-red-370.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"369","_score":1,"_source":{"id":369,"sku":"MJ10-XL-Orange","name":"Mars HeatTech™ Pullover-XL-Orange","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                                    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                                    \n

                                    • Red 1/4 zip pullover.
                                    • Adjustable VELCRO® sleeve cuffs.
                                    • Two hand pockets.
                                    • Napoleon pocket.
                                    • Machine wash/dry

                                    ","image":"/m/j/mj10-orange_main.jpg","small_image":"/m/j/mj10-orange_main.jpg","thumbnail":"/m/j/mj10-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"mars-heattech-and-trade-pullover-xl-orange-369","links":{},"stock":{"item_id":369,"product_id":369,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj10-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xl-orange-369.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"351","_score":1,"_source":{"id":351,"sku":"MJ09-L-Yellow","name":"Taurus Elements Shell-L-Yellow","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                                    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                                    \n

                                    • Yellow 1/4 zip pullover.
                                    • Two chest pockets.
                                    • Standard fit.
                                    • Waterproof, breathable, seam sealed.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj09-yellow_main.jpg","small_image":"/m/j/mj09-yellow_main.jpg","thumbnail":"/m/j/mj09-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"taurus-elements-shell-l-yellow-351","links":{},"stock":{"item_id":351,"product_id":351,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj09-yellow_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj09-yellow_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj09-yellow_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-l-yellow-351.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"367","_score":1,"_source":{"id":367,"sku":"MJ10-L-Red","name":"Mars HeatTech™ Pullover-L-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                                    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                                    \n

                                    • Red 1/4 zip pullover.
                                    • Adjustable VELCRO® sleeve cuffs.
                                    • Two hand pockets.
                                    • Napoleon pocket.
                                    • Machine wash/dry

                                    ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"mars-heattech-and-trade-pullover-l-red-367","links":{},"stock":{"item_id":367,"product_id":367,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-l-red-367.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"352","_score":1,"_source":{"id":352,"sku":"MJ09-XL-Blue","name":"Taurus Elements Shell-XL-Blue","attribute_set_id":9,"price":65,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":65,"max_price":65,"max_regular_price":65,"minimal_regular_price":65,"special_price":null,"minimal_price":65,"regular_price":65,"description":"

                                    What's a little rain or snow when you're inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

                                    \n

                                    • Yellow 1/4 zip pullover.
                                    • Two chest pockets.
                                    • Standard fit.
                                    • Waterproof, breathable, seam sealed.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj09-blue_main.jpg","small_image":"/m/j/mj09-blue_main.jpg","thumbnail":"/m/j/mj09-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"taurus-elements-shell-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"taurus-elements-shell-xl-blue-352","links":{},"stock":{"item_id":352,"product_id":352,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj09-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/taurus-elements-shell-xl-blue-352.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"361","_score":1,"_source":{"id":361,"sku":"MJ10-S-Red","name":"Mars HeatTech™ Pullover-S-Red","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                                    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                                    \n

                                    • Red 1/4 zip pullover.
                                    • Adjustable VELCRO® sleeve cuffs.
                                    • Two hand pockets.
                                    • Napoleon pocket.
                                    • Machine wash/dry

                                    ","image":"/m/j/mj10-red_main.jpg","small_image":"/m/j/mj10-red_main.jpg","thumbnail":"/m/j/mj10-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"mars-heattech-and-trade-pullover-s-red-361","links":{},"stock":{"item_id":361,"product_id":361,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj10-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj10-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj10-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-s-red-361.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"356","_score":1,"_source":{"id":356,"sku":"MJ10-XS-Black","name":"Mars HeatTech™ Pullover-XS-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                                    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                                    \n

                                    • Red 1/4 zip pullover.
                                    • Adjustable VELCRO® sleeve cuffs.
                                    • Two hand pockets.
                                    • Napoleon pocket.
                                    • Machine wash/dry

                                    ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"mars-heattech-and-trade-pullover-xs-black-356","links":{},"stock":{"item_id":356,"product_id":356,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-xs-black-356.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"375","_score":1,"_source":{"id":375,"sku":"MJ11-S-Black","name":"Typhon Performance Fleece-lined Jacket-S-Black","attribute_set_id":9,"price":60,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":60,"max_price":60,"max_regular_price":60,"minimal_regular_price":60,"special_price":null,"minimal_price":60,"regular_price":60,"description":"

                                    Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

                                    \n

                                    • Black full-zip flight jacket.
                                    • Cocona® wicking fiber.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj11-black_main.jpg","small_image":"/m/j/mj11-black_main.jpg","thumbnail":"/m/j/mj11-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"typhon-performance-fleece-lined-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"typhon-performance-fleece-lined-jacket-s-black-375","links":{},"stock":{"item_id":375,"product_id":375,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj11-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj11-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj11-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/typhon-performance-fleece-lined-jacket-s-black-375.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"362","_score":1,"_source":{"id":362,"sku":"MJ10-M-Black","name":"Mars HeatTech™ Pullover-M-Black","attribute_set_id":9,"price":66,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":66,"max_price":66,"max_regular_price":66,"minimal_regular_price":66,"special_price":null,"minimal_price":66,"regular_price":66,"description":"

                                    The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

                                    \n

                                    • Red 1/4 zip pullover.
                                    • Adjustable VELCRO® sleeve cuffs.
                                    • Two hand pockets.
                                    • Napoleon pocket.
                                    • Machine wash/dry

                                    ","image":"/m/j/mj10-black_main.jpg","small_image":"/m/j/mj10-black_main.jpg","thumbnail":"/m/j/mj10-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mars-heattech-trade-pullover-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"mars-heattech-and-trade-pullover-m-black-362","links":{},"stock":{"item_id":362,"product_id":362,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj10-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/mars-heattech-and-trade-pullover-m-black-362.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"329","_score":1,"_source":{"id":329,"sku":"MJ08-S-Green","name":"Lando Gym Jacket-S-Green","attribute_set_id":9,"price":99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:51","updated_at":"2017-11-06 12:16:51","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":99,"max_price":99,"max_regular_price":99,"minimal_regular_price":99,"special_price":null,"minimal_price":99,"regular_price":99,"description":"

                                    The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you're plugged in when working out.

                                    \n

                                    • Gray polyester/spandex full zip jacket with orange lining.
                                    • Right pocket device storage.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/j/mj08-green_main.jpg","small_image":"/m/j/mj08-green_main.jpg","thumbnail":"/m/j/mj08-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"lando-gym-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"lando-gym-jacket-s-green-329","links":{},"stock":{"item_id":329,"product_id":329,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj08-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/lando-gym-jacket-s-green-329.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"317","_score":1,"_source":{"id":317,"sku":"MJ07-L-Black","name":"Orion Two-Tone Fitted Jacket-L-Black","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                                    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                                    \n

                                    • Red full zip fleece with gray insets.
                                    • Double-knit construction.
                                    • Full athletic cut.
                                    • Set in sleeves.
                                    • Front pouch pocket.

                                    ","image":"/m/j/mj07-black_main.jpg","small_image":"/m/j/mj07-black_main.jpg","thumbnail":"/m/j/mj07-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"orion-two-tone-fitted-jacket-l-black-317","links":{},"stock":{"item_id":317,"product_id":317,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj07-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-l-black-317.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"313","_score":1,"_source":{"id":313,"sku":"MJ07-S-Yellow","name":"Orion Two-Tone Fitted Jacket-S-Yellow","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                                    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                                    \n

                                    • Red full zip fleece with gray insets.
                                    • Double-knit construction.
                                    • Full athletic cut.
                                    • Set in sleeves.
                                    • Front pouch pocket.

                                    ","image":"/m/j/mj07-yellow_main.jpg","small_image":"/m/j/mj07-yellow_main.jpg","thumbnail":"/m/j/mj07-yellow_main.jpg","color":"60","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"orion-two-tone-fitted-jacket-s-yellow-313","links":{},"stock":{"item_id":313,"product_id":313,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj07-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-s-yellow-313.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"312","_score":1,"_source":{"id":312,"sku":"MJ07-S-Red","name":"Orion Two-Tone Fitted Jacket-S-Red","attribute_set_id":9,"price":72,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:50","updated_at":"2017-11-06 12:16:50","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":72,"max_price":72,"max_regular_price":72,"minimal_regular_price":72,"special_price":null,"minimal_price":72,"regular_price":72,"description":"

                                    While you're getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

                                    \n

                                    • Red full zip fleece with gray insets.
                                    • Double-knit construction.
                                    • Full athletic cut.
                                    • Set in sleeves.
                                    • Front pouch pocket.

                                    ","image":"/m/j/mj07-red_main.jpg","small_image":"/m/j/mj07-red_main.jpg","thumbnail":"/m/j/mj07-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"orion-two-tone-fitted-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"orion-two-tone-fitted-jacket-s-red-312","links":{},"stock":{"item_id":312,"product_id":312,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj07-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj07-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj07-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/orion-two-tone-fitted-jacket-s-red-312.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"213","_score":1,"_source":{"id":213,"sku":"MH11-XS-Red","name":"Grayson Crewneck Sweatshirt -XS-Red","attribute_set_id":9,"price":64,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:48","updated_at":"2017-11-06 12:16:48","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":64,"max_price":64,"max_regular_price":64,"minimal_regular_price":64,"special_price":null,"minimal_price":64,"regular_price":64,"description":"

                                    The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.

                                    \n

                                    • Cream crewneck sweatshirt with black accents.
                                    • 80% cotton/20% polyester fleece.
                                    • Patterned knit hood lining.
                                    • Knit cuffs and waist.
                                    • Pouch pocket.
                                    • Curl edged seam detail

                                    ","image":"/m/h/mh11-red_main.jpg","small_image":"/m/h/mh11-red_main.jpg","thumbnail":"/m/h/mh11-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"grayson-crewneck-sweatshirt-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"grayson-crewneck-sweatshirt-xs-red-213","links":{},"stock":{"item_id":213,"product_id":213,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh11-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/grayson-crewneck-sweatshirt-xs-red-213.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"230","_score":1,"_source":{"id":230,"sku":"MH12-XS-Red","name":"Ajax Full-Zip Sweatshirt -XS-Red","attribute_set_id":9,"price":69,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:49","updated_at":"2017-11-06 12:16:49","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":69,"max_price":69,"max_regular_price":69,"minimal_regular_price":69,"special_price":null,"minimal_price":69,"regular_price":69,"description":"

                                    The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

                                    \n

                                    • Mint striped full zip hoodie.
                                    • 100% bonded polyester fleece.
                                    • Pouch pocket.
                                    • Rib cuffs and hem.
                                    • Machine washable.

                                    ","image":"/m/h/mh12-red_main.jpg","small_image":"/m/h/mh12-red_main.jpg","thumbnail":"/m/h/mh12-red_main.jpg","color":"58","category_ids":["15"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ajax-full-zip-sweatshirt-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ajax-full-zip-sweatshirt-xs-red-230","links":{},"stock":{"item_id":230,"product_id":230,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/h/mh12-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15","category_id":15,"name":"Hoodies & Sweatshirts","slug":"hoodies-and-sweatshirts-15"}],"url_path":"men/tops-men/hoodies-and-sweatshirts-men/hoodies-and-sweatshirts-15/ajax-full-zip-sweatshirt-xs-red-230.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"405","_score":1,"_source":{"id":405,"sku":"MJ03-XS-Green","name":"Montana Wind Jacket-XS-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                                    \n

                                    Adjustable hood.
                                    Split pocket.
                                    Thumb holes.
                                    Machine wash/hang to dry.

                                    ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"montana-wind-jacket-xs-green-405","links":{},"stock":{"item_id":405,"product_id":405,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xs-green-405.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"404","_score":1,"_source":{"id":404,"sku":"MJ03-XS-Black","name":"Montana Wind Jacket-XS-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                                    \n

                                    Adjustable hood.
                                    Split pocket.
                                    Thumb holes.
                                    Machine wash/hang to dry.

                                    ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"montana-wind-jacket-xs-black-404","links":{},"stock":{"item_id":404,"product_id":404,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xs-black-404.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"406","_score":1,"_source":{"id":406,"sku":"MJ03-XS-Red","name":"Montana Wind Jacket-XS-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                                    \n

                                    Adjustable hood.
                                    Split pocket.
                                    Thumb holes.
                                    Machine wash/hang to dry.

                                    ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"montana-wind-jacket-xs-red-406","links":{},"stock":{"item_id":406,"product_id":406,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xs-red-406.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"420","_score":1,"_source":{"id":420,"sku":"MJ12-XS-Black","name":"Proteus Fitness Jackshirt-XS-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                                    \n

                                    • 1/4 zip. Stand-up collar.
                                    • Machine wash/dry.
                                    • Quilted inner layer.

                                    ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"proteus-fitness-jackshirt-xs-black-420","links":{},"stock":{"item_id":420,"product_id":420,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xs-black-420.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"401","_score":1,"_source":{"id":401,"sku":"MJ06-XL-Green","name":"Jupiter All-Weather Trainer -XL-Green","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                                    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                                    \n

                                    • Relaxed fit.
                                    • Hand pockets.
                                    • Machine wash/dry.
                                    • Reflective safety trim.

                                    ","image":"/m/j/mj06-green_main.jpg","small_image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jupiter-all-weather-trainer-xl-green-401","links":{},"stock":{"item_id":401,"product_id":401,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj06-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xl-green-401.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"423","_score":1,"_source":{"id":423,"sku":"MJ12-S-Black","name":"Proteus Fitness Jackshirt-S-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                                    \n

                                    • 1/4 zip. Stand-up collar.
                                    • Machine wash/dry.
                                    • Quilted inner layer.

                                    ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"proteus-fitness-jackshirt-s-black-423","links":{},"stock":{"item_id":423,"product_id":423,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-s-black-423.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"402","_score":1,"_source":{"id":402,"sku":"MJ06-XL-Purple","name":"Jupiter All-Weather Trainer -XL-Purple","attribute_set_id":9,"price":56.99,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                                    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                                    \n

                                    • Relaxed fit.
                                    • Hand pockets.
                                    • Machine wash/dry.
                                    • Reflective safety trim.

                                    ","image":"/m/j/mj06-purple_main.jpg","small_image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"jupiter-all-weather-trainer-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"jupiter-all-weather-trainer-xl-purple-402","links":{},"stock":{"item_id":402,"product_id":402,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj06-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-xl-purple-402.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"424","_score":1,"_source":{"id":424,"sku":"MJ12-S-Blue","name":"Proteus Fitness Jackshirt-S-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                                    \n

                                    • 1/4 zip. Stand-up collar.
                                    • Machine wash/dry.
                                    • Quilted inner layer.

                                    ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"proteus-fitness-jackshirt-s-blue-424","links":{},"stock":{"item_id":424,"product_id":424,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-s-blue-424.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"410","_score":1,"_source":{"id":410,"sku":"MJ03-M-Black","name":"Montana Wind Jacket-M-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                                    \n

                                    Adjustable hood.
                                    Split pocket.
                                    Thumb holes.
                                    Machine wash/hang to dry.

                                    ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"montana-wind-jacket-m-black-410","links":{},"stock":{"item_id":410,"product_id":410,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-m-black-410.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"433","_score":1,"_source":{"id":433,"sku":"MJ12-XL-Blue","name":"Proteus Fitness Jackshirt-XL-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                                    \n

                                    • 1/4 zip. Stand-up collar.
                                    • Machine wash/dry.
                                    • Quilted inner layer.

                                    ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"proteus-fitness-jackshirt-xl-blue-433","links":{},"stock":{"item_id":433,"product_id":433,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xl-blue-433.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"439","_score":1,"_source":{"id":439,"sku":"MS04-S-Black","name":"Gobi HeatTec® Tee-S-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                                    \n

                                    • Orange micropolyester shirt.
                                    • HeatTec® wicking fabric.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gobi-heattec-and-reg-tee-s-black-439","links":{},"stock":{"item_id":439,"product_id":439,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-s-black-439.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"417","_score":1,"_source":{"id":417,"sku":"MJ03-XL-Green","name":"Montana Wind Jacket-XL-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                                    \n

                                    Adjustable hood.
                                    Split pocket.
                                    Thumb holes.
                                    Machine wash/hang to dry.

                                    ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"montana-wind-jacket-xl-green-417","links":{},"stock":{"item_id":417,"product_id":417,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xl-green-417.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"408","_score":1,"_source":{"id":408,"sku":"MJ03-S-Green","name":"Montana Wind Jacket-S-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                                    \n

                                    Adjustable hood.
                                    Split pocket.
                                    Thumb holes.
                                    Machine wash/hang to dry.

                                    ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"montana-wind-jacket-s-green-408","links":{},"stock":{"item_id":408,"product_id":408,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-s-green-408.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"415","_score":1,"_source":{"id":415,"sku":"MJ03-L-Red","name":"Montana Wind Jacket-L-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                                    \n

                                    Adjustable hood.
                                    Split pocket.
                                    Thumb holes.
                                    Machine wash/hang to dry.

                                    ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"montana-wind-jacket-l-red-415","links":{},"stock":{"item_id":415,"product_id":415,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-l-red-415.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"407","_score":1,"_source":{"id":407,"sku":"MJ03-S-Black","name":"Montana Wind Jacket-S-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                                    \n

                                    Adjustable hood.
                                    Split pocket.
                                    Thumb holes.
                                    Machine wash/hang to dry.

                                    ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"montana-wind-jacket-s-black-407","links":{},"stock":{"item_id":407,"product_id":407,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-s-black-407.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"411","_score":1,"_source":{"id":411,"sku":"MJ03-M-Green","name":"Montana Wind Jacket-M-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                                    \n

                                    Adjustable hood.
                                    Split pocket.
                                    Thumb holes.
                                    Machine wash/hang to dry.

                                    ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"montana-wind-jacket-m-green-411","links":{},"stock":{"item_id":411,"product_id":411,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-m-green-411.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"441","_score":1,"_source":{"id":441,"sku":"MS04-S-Red","name":"Gobi HeatTec® Tee-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                                    \n

                                    • Orange micropolyester shirt.
                                    • HeatTec® wicking fabric.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gobi-heattec-and-reg-tee-s-red-441","links":{},"stock":{"item_id":441,"product_id":441,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-s-red-441.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"429","_score":1,"_source":{"id":429,"sku":"MJ12-L-Black","name":"Proteus Fitness Jackshirt-L-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                                    \n

                                    • 1/4 zip. Stand-up collar.
                                    • Machine wash/dry.
                                    • Quilted inner layer.

                                    ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"proteus-fitness-jackshirt-l-black-429","links":{},"stock":{"item_id":429,"product_id":429,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-l-black-429.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"426","_score":1,"_source":{"id":426,"sku":"MJ12-M-Black","name":"Proteus Fitness Jackshirt-M-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                                    \n

                                    • 1/4 zip. Stand-up collar.
                                    • Machine wash/dry.
                                    • Quilted inner layer.

                                    ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"proteus-fitness-jackshirt-m-black-426","links":{},"stock":{"item_id":426,"product_id":426,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-m-black-426.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"430","_score":1,"_source":{"id":430,"sku":"MJ12-L-Blue","name":"Proteus Fitness Jackshirt-L-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                                    \n

                                    • 1/4 zip. Stand-up collar.
                                    • Machine wash/dry.
                                    • Quilted inner layer.

                                    ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"proteus-fitness-jackshirt-l-blue-430","links":{},"stock":{"item_id":430,"product_id":430,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-l-blue-430.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"425","_score":1,"_source":{"id":425,"sku":"MJ12-S-Orange","name":"Proteus Fitness Jackshirt-S-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                                    \n

                                    • 1/4 zip. Stand-up collar.
                                    • Machine wash/dry.
                                    • Quilted inner layer.

                                    ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"proteus-fitness-jackshirt-s-orange-425","links":{},"stock":{"item_id":425,"product_id":425,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-s-orange-425.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"413","_score":1,"_source":{"id":413,"sku":"MJ03-L-Black","name":"Montana Wind Jacket-L-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                                    \n

                                    Adjustable hood.
                                    Split pocket.
                                    Thumb holes.
                                    Machine wash/hang to dry.

                                    ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"montana-wind-jacket-l-black-413","links":{},"stock":{"item_id":413,"product_id":413,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-l-black-413.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"432","_score":1,"_source":{"id":432,"sku":"MJ12-XL-Black","name":"Proteus Fitness Jackshirt-XL-Black","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                                    \n

                                    • 1/4 zip. Stand-up collar.
                                    • Machine wash/dry.
                                    • Quilted inner layer.

                                    ","image":"/m/j/mj12-black_main.jpg","small_image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"proteus-fitness-jackshirt-xl-black-432","links":{},"stock":{"item_id":432,"product_id":432,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj12-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xl-black-432.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"431","_score":1,"_source":{"id":431,"sku":"MJ12-L-Orange","name":"Proteus Fitness Jackshirt-L-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                                    \n

                                    • 1/4 zip. Stand-up collar.
                                    • Machine wash/dry.
                                    • Quilted inner layer.

                                    ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"proteus-fitness-jackshirt-l-orange-431","links":{},"stock":{"item_id":431,"product_id":431,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-l-orange-431.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"428","_score":1,"_source":{"id":428,"sku":"MJ12-M-Orange","name":"Proteus Fitness Jackshirt-M-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                                    \n

                                    • 1/4 zip. Stand-up collar.
                                    • Machine wash/dry.
                                    • Quilted inner layer.

                                    ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"proteus-fitness-jackshirt-m-orange-428","links":{},"stock":{"item_id":428,"product_id":428,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-m-orange-428.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"414","_score":1,"_source":{"id":414,"sku":"MJ03-L-Green","name":"Montana Wind Jacket-L-Green","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                                    \n

                                    Adjustable hood.
                                    Split pocket.
                                    Thumb holes.
                                    Machine wash/hang to dry.

                                    ","image":"/m/j/mj03-green_main.jpg","small_image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"montana-wind-jacket-l-green-414","links":{},"stock":{"item_id":414,"product_id":414,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-l-green-414.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"443","_score":1,"_source":{"id":443,"sku":"MS04-M-Orange","name":"Gobi HeatTec® Tee-M-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                                    \n

                                    • Orange micropolyester shirt.
                                    • HeatTec® wicking fabric.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-m-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gobi-heattec-and-reg-tee-m-orange-443","links":{},"stock":{"item_id":443,"product_id":443,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-m-orange-443.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"421","_score":1,"_source":{"id":421,"sku":"MJ12-XS-Blue","name":"Proteus Fitness Jackshirt-XS-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                                    \n

                                    • 1/4 zip. Stand-up collar.
                                    • Machine wash/dry.
                                    • Quilted inner layer.

                                    ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"proteus-fitness-jackshirt-xs-blue-421","links":{},"stock":{"item_id":421,"product_id":421,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xs-blue-421.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"416","_score":1,"_source":{"id":416,"sku":"MJ03-XL-Black","name":"Montana Wind Jacket-XL-Black","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                                    \n

                                    Adjustable hood.
                                    Split pocket.
                                    Thumb holes.
                                    Machine wash/hang to dry.

                                    ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"montana-wind-jacket-xl-black-416","links":{},"stock":{"item_id":416,"product_id":416,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xl-black-416.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"442","_score":1,"_source":{"id":442,"sku":"MS04-M-Black","name":"Gobi HeatTec® Tee-M-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                                    \n

                                    • Orange micropolyester shirt.
                                    • HeatTec® wicking fabric.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gobi-heattec-and-reg-tee-m-black-442","links":{},"stock":{"item_id":442,"product_id":442,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-m-black-442.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"446","_score":1,"_source":{"id":446,"sku":"MS04-L-Orange","name":"Gobi HeatTec® Tee-L-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                                    \n

                                    • Orange micropolyester shirt.
                                    • HeatTec® wicking fabric.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-l-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gobi-heattec-and-reg-tee-l-orange-446","links":{},"stock":{"item_id":446,"product_id":446,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-l-orange-446.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"437","_score":1,"_source":{"id":437,"sku":"MS04-XS-Orange","name":"Gobi HeatTec® Tee-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                                    \n

                                    • Orange micropolyester shirt.
                                    • HeatTec® wicking fabric.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gobi-heattec-and-reg-tee-xs-orange-437","links":{},"stock":{"item_id":437,"product_id":437,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xs-orange-437.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"422","_score":1,"_source":{"id":422,"sku":"MJ12-XS-Orange","name":"Proteus Fitness Jackshirt-XS-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                                    \n

                                    • 1/4 zip. Stand-up collar.
                                    • Machine wash/dry.
                                    • Quilted inner layer.

                                    ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"proteus-fitness-jackshirt-xs-orange-422","links":{},"stock":{"item_id":422,"product_id":422,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xs-orange-422.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"447","_score":1,"_source":{"id":447,"sku":"MS04-L-Red","name":"Gobi HeatTec® Tee-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                                    \n

                                    • Orange micropolyester shirt.
                                    • HeatTec® wicking fabric.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gobi-heattec-and-reg-tee-l-red-447","links":{},"stock":{"item_id":447,"product_id":447,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-l-red-447.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"438","_score":1,"_source":{"id":438,"sku":"MS04-XS-Red","name":"Gobi HeatTec® Tee-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                                    \n

                                    • Orange micropolyester shirt.
                                    • HeatTec® wicking fabric.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gobi-heattec-and-reg-tee-xs-red-438","links":{},"stock":{"item_id":438,"product_id":438,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xs-red-438.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"450","_score":1,"_source":{"id":450,"sku":"MS04-XL-Red","name":"Gobi HeatTec® Tee-XL-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                                    \n

                                    • Orange micropolyester shirt.
                                    • HeatTec® wicking fabric.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gobi-heattec-and-reg-tee-xl-red-450","links":{},"stock":{"item_id":450,"product_id":450,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xl-red-450.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"427","_score":1,"_source":{"id":427,"sku":"MJ12-M-Blue","name":"Proteus Fitness Jackshirt-M-Blue","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                                    \n

                                    • 1/4 zip. Stand-up collar.
                                    • Machine wash/dry.
                                    • Quilted inner layer.

                                    ","image":"/m/j/mj12-blue_main.jpg","small_image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"proteus-fitness-jackshirt-m-blue-427","links":{},"stock":{"item_id":427,"product_id":427,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj12-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-m-blue-427.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"434","_score":1,"_source":{"id":434,"sku":"MJ12-XL-Orange","name":"Proteus Fitness Jackshirt-XL-Orange","attribute_set_id":9,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                                    \n

                                    • 1/4 zip. Stand-up collar.
                                    • Machine wash/dry.
                                    • Quilted inner layer.

                                    ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"proteus-fitness-jackshirt-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"proteus-fitness-jackshirt-xl-orange-434","links":{},"stock":{"item_id":434,"product_id":434,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-xl-orange-434.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"440","_score":1,"_source":{"id":440,"sku":"MS04-S-Orange","name":"Gobi HeatTec® Tee-S-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                                    \n

                                    • Orange micropolyester shirt.
                                    • HeatTec® wicking fabric.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-s-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"gobi-heattec-and-reg-tee-s-orange-440","links":{},"stock":{"item_id":440,"product_id":440,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-s-orange-440.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"409","_score":1,"_source":{"id":409,"sku":"MJ03-S-Red","name":"Montana Wind Jacket-S-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                                    \n

                                    Adjustable hood.
                                    Split pocket.
                                    Thumb holes.
                                    Machine wash/hang to dry.

                                    ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"montana-wind-jacket-s-red-409","links":{},"stock":{"item_id":409,"product_id":409,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-s-red-409.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"418","_score":1,"_source":{"id":418,"sku":"MJ03-XL-Red","name":"Montana Wind Jacket-XL-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                                    \n

                                    Adjustable hood.
                                    Split pocket.
                                    Thumb holes.
                                    Machine wash/hang to dry.

                                    ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"montana-wind-jacket-xl-red-418","links":{},"stock":{"item_id":418,"product_id":418,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-xl-red-418.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"445","_score":1,"_source":{"id":445,"sku":"MS04-L-Black","name":"Gobi HeatTec® Tee-L-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                                    \n

                                    • Orange micropolyester shirt.
                                    • HeatTec® wicking fabric.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"gobi-heattec-and-reg-tee-l-black-445","links":{},"stock":{"item_id":445,"product_id":445,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-l-black-445.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"412","_score":1,"_source":{"id":412,"sku":"MJ03-M-Red","name":"Montana Wind Jacket-M-Red","attribute_set_id":9,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                                    \n

                                    Adjustable hood.
                                    Split pocket.
                                    Thumb holes.
                                    Machine wash/hang to dry.

                                    ","image":"/m/j/mj03-red_main.jpg","small_image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"montana-wind-jacket-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"montana-wind-jacket-m-red-412","links":{},"stock":{"item_id":412,"product_id":412,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj03-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-m-red-412.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"444","_score":1,"_source":{"id":444,"sku":"MS04-M-Red","name":"Gobi HeatTec® Tee-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                                    \n

                                    • Orange micropolyester shirt.
                                    • HeatTec® wicking fabric.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms04-red_main.jpg","small_image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"gobi-heattec-and-reg-tee-m-red-444","links":{},"stock":{"item_id":444,"product_id":444,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms04-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-m-red-444.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"436","_score":1,"_source":{"id":436,"sku":"MS04-XS-Black","name":"Gobi HeatTec® Tee-XS-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                                    \n

                                    • Orange micropolyester shirt.
                                    • HeatTec® wicking fabric.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"gobi-heattec-and-reg-tee-xs-black-436","links":{},"stock":{"item_id":436,"product_id":436,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xs-black-436.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"448","_score":1,"_source":{"id":448,"sku":"MS04-XL-Black","name":"Gobi HeatTec® Tee-XL-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                                    \n

                                    • Orange micropolyester shirt.
                                    • HeatTec® wicking fabric.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms04-black_main.jpg","small_image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gobi-heattec-and-reg-tee-xl-black-448","links":{},"stock":{"item_id":448,"product_id":448,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms04-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xl-black-448.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"449","_score":1,"_source":{"id":449,"sku":"MS04-XL-Orange","name":"Gobi HeatTec® Tee-XL-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                                    \n

                                    • Orange micropolyester shirt.
                                    • HeatTec® wicking fabric.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gobi-heattec-reg-tee-xl-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"gobi-heattec-and-reg-tee-xl-orange-449","links":{},"stock":{"item_id":449,"product_id":449,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-xl-orange-449.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"403","_score":1,"_source":{"id":403,"sku":"MJ06","name":"Jupiter All-Weather Trainer ","attribute_set_id":9,"price":56.99,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":56.99,"max_price":56.99,"max_regular_price":56.99,"minimal_regular_price":56.99,"special_price":null,"minimal_price":56.99,"regular_price":56.99,"description":"

                                    Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

                                    \n

                                    • Relaxed fit.
                                    • Hand pockets.
                                    • Machine wash/dry.
                                    • Reflective safety trim.

                                    ","image":"/m/j/mj06-blue_main.jpg","small_image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","category_ids":[14,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"jupiter-all-weather-trainer","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[145,146,37],"eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[117,120,125,129],"pattern":"197","climate":[202,205,206,208,209],"slug":"jupiter-all-weather-trainer-403","links":{},"stock":{"item_id":403,"product_id":403,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj06-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj06-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj06-blue_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","small_image":"/m/j/mj06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jupiter-all-weather-trainer-xs-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":56.99,"name":"Jupiter All-Weather Trainer -XS-Blue","id":388,"category_ids":["14","36","2"],"sku":"MJ06-XS-Blue","status":1},{"image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","small_image":"/m/j/mj06-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jupiter-all-weather-trainer-xs-green","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":56.99,"name":"Jupiter All-Weather Trainer -XS-Green","id":389,"category_ids":["14","36","2"],"sku":"MJ06-XS-Green","status":1},{"image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","small_image":"/m/j/mj06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jupiter-all-weather-trainer-xs-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":56.99,"name":"Jupiter All-Weather Trainer -XS-Purple","id":390,"category_ids":["14","36","2"],"sku":"MJ06-XS-Purple","status":1},{"image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","small_image":"/m/j/mj06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jupiter-all-weather-trainer-s-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":56.99,"name":"Jupiter All-Weather Trainer -S-Blue","id":391,"category_ids":["14","36","2"],"sku":"MJ06-S-Blue","status":1},{"image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","small_image":"/m/j/mj06-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jupiter-all-weather-trainer-s-green","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":56.99,"name":"Jupiter All-Weather Trainer -S-Green","id":392,"category_ids":["14","36","2"],"sku":"MJ06-S-Green","status":1},{"image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","small_image":"/m/j/mj06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jupiter-all-weather-trainer-s-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":56.99,"name":"Jupiter All-Weather Trainer -S-Purple","id":393,"category_ids":["14","36","2"],"sku":"MJ06-S-Purple","status":1},{"image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","small_image":"/m/j/mj06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jupiter-all-weather-trainer-m-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":56.99,"name":"Jupiter All-Weather Trainer -M-Blue","id":394,"category_ids":["14","36","2"],"sku":"MJ06-M-Blue","status":1},{"image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","small_image":"/m/j/mj06-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jupiter-all-weather-trainer-m-green","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":56.99,"name":"Jupiter All-Weather Trainer -M-Green","id":395,"category_ids":["14","36","2"],"sku":"MJ06-M-Green","status":1},{"image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","small_image":"/m/j/mj06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jupiter-all-weather-trainer-m-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":56.99,"name":"Jupiter All-Weather Trainer -M-Purple","id":396,"category_ids":["14","36","2"],"sku":"MJ06-M-Purple","status":1},{"image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","small_image":"/m/j/mj06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jupiter-all-weather-trainer-l-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":56.99,"name":"Jupiter All-Weather Trainer -L-Blue","id":397,"category_ids":["14","36","2"],"sku":"MJ06-L-Blue","status":1},{"image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","small_image":"/m/j/mj06-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jupiter-all-weather-trainer-l-green","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":56.99,"name":"Jupiter All-Weather Trainer -L-Green","id":398,"category_ids":["14","36","2"],"sku":"MJ06-L-Green","status":1},{"image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","small_image":"/m/j/mj06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jupiter-all-weather-trainer-l-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":56.99,"name":"Jupiter All-Weather Trainer -L-Purple","id":399,"category_ids":["14","36","2"],"sku":"MJ06-L-Purple","status":1},{"image":"/m/j/mj06-blue_main.jpg","thumbnail":"/m/j/mj06-blue_main.jpg","color":"50","small_image":"/m/j/mj06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jupiter-all-weather-trainer-xl-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"171","price":56.99,"name":"Jupiter All-Weather Trainer -XL-Blue","id":400,"category_ids":["14","36","2"],"sku":"MJ06-XL-Blue","status":1},{"image":"/m/j/mj06-green_main.jpg","thumbnail":"/m/j/mj06-green_main.jpg","color":"53","small_image":"/m/j/mj06-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jupiter-all-weather-trainer-xl-green","regular_price":56.99,"required_options":"0","msrp_display_actual_price_type":"0","max_price":56.99,"minimal_regular_price":56.99,"size":"171","final_price":56.99,"special_price":null,"price":56.99,"minimal_price":56.99,"name":"Jupiter All-Weather Trainer -XL-Green","id":401,"category_ids":["14","36","2"],"sku":"MJ06-XL-Green","max_regular_price":56.99,"status":1},{"image":"/m/j/mj06-purple_main.jpg","thumbnail":"/m/j/mj06-purple_main.jpg","color":"57","small_image":"/m/j/mj06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"jupiter-all-weather-trainer-xl-purple","regular_price":56.99,"required_options":"0","msrp_display_actual_price_type":"0","max_price":56.99,"minimal_regular_price":56.99,"size":"171","final_price":56.99,"special_price":null,"price":56.99,"minimal_price":56.99,"name":"Jupiter All-Weather Trainer -XL-Purple","id":402,"category_ids":["14","36","2"],"sku":"MJ06-XL-Purple","max_regular_price":56.99,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"}],"product_id":403,"id":45,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":403,"id":44,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,53,57],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/jackets-men/jackets-14/jupiter-all-weather-trainer-403.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"419","_score":1,"_source":{"id":419,"sku":"MJ03","name":"Montana Wind Jacket","attribute_set_id":9,"price":49,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.

                                    \n

                                    Adjustable hood.
                                    Split pocket.
                                    Thumb holes.
                                    Machine wash/hang to dry.

                                    ","image":"/m/j/mj03-black_main.jpg","small_image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"montana-wind-jacket","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_general":[120,121,124,126,129],"pattern":"197","climate":[204,206,208,210],"slug":"montana-wind-jacket-419","links":{},"stock":{"item_id":419,"product_id":419,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj03-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj03-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj03-black_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","small_image":"/m/j/mj03-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"montana-wind-jacket-xs-black","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"167","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Montana Wind Jacket-XS-Black","id":404,"category_ids":["14"],"sku":"MJ03-XS-Black","max_regular_price":49,"status":1},{"image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","small_image":"/m/j/mj03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"montana-wind-jacket-xs-green","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"167","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Montana Wind Jacket-XS-Green","id":405,"category_ids":["14"],"sku":"MJ03-XS-Green","max_regular_price":49,"status":1},{"image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","small_image":"/m/j/mj03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"montana-wind-jacket-xs-red","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"167","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Montana Wind Jacket-XS-Red","id":406,"category_ids":["14"],"sku":"MJ03-XS-Red","max_regular_price":49,"status":1},{"image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","small_image":"/m/j/mj03-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"montana-wind-jacket-s-black","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"168","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Montana Wind Jacket-S-Black","id":407,"category_ids":["14"],"sku":"MJ03-S-Black","max_regular_price":49,"status":1},{"image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","small_image":"/m/j/mj03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"montana-wind-jacket-s-green","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"168","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Montana Wind Jacket-S-Green","id":408,"category_ids":["14"],"sku":"MJ03-S-Green","max_regular_price":49,"status":1},{"image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","small_image":"/m/j/mj03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"montana-wind-jacket-s-red","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"168","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Montana Wind Jacket-S-Red","id":409,"category_ids":["14"],"sku":"MJ03-S-Red","max_regular_price":49,"status":1},{"image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","small_image":"/m/j/mj03-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"montana-wind-jacket-m-black","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"169","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Montana Wind Jacket-M-Black","id":410,"category_ids":["14"],"sku":"MJ03-M-Black","max_regular_price":49,"status":1},{"image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","small_image":"/m/j/mj03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"montana-wind-jacket-m-green","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"169","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Montana Wind Jacket-M-Green","id":411,"category_ids":["14"],"sku":"MJ03-M-Green","max_regular_price":49,"status":1},{"image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","small_image":"/m/j/mj03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"montana-wind-jacket-m-red","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"169","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Montana Wind Jacket-M-Red","id":412,"category_ids":["14"],"sku":"MJ03-M-Red","max_regular_price":49,"status":1},{"image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","small_image":"/m/j/mj03-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"montana-wind-jacket-l-black","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"170","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Montana Wind Jacket-L-Black","id":413,"category_ids":["14"],"sku":"MJ03-L-Black","max_regular_price":49,"status":1},{"image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","small_image":"/m/j/mj03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"montana-wind-jacket-l-green","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"170","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Montana Wind Jacket-L-Green","id":414,"category_ids":["14"],"sku":"MJ03-L-Green","max_regular_price":49,"status":1},{"image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","small_image":"/m/j/mj03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"montana-wind-jacket-l-red","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"170","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Montana Wind Jacket-L-Red","id":415,"category_ids":["14"],"sku":"MJ03-L-Red","max_regular_price":49,"status":1},{"image":"/m/j/mj03-black_main.jpg","thumbnail":"/m/j/mj03-black_main.jpg","color":"49","small_image":"/m/j/mj03-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"montana-wind-jacket-xl-black","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"171","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Montana Wind Jacket-XL-Black","id":416,"category_ids":["14"],"sku":"MJ03-XL-Black","max_regular_price":49,"status":1},{"image":"/m/j/mj03-green_main.jpg","thumbnail":"/m/j/mj03-green_main.jpg","color":"53","small_image":"/m/j/mj03-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"montana-wind-jacket-xl-green","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"171","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Montana Wind Jacket-XL-Green","id":417,"category_ids":["14"],"sku":"MJ03-XL-Green","max_regular_price":49,"status":1},{"image":"/m/j/mj03-red_main.jpg","thumbnail":"/m/j/mj03-red_main.jpg","color":"58","small_image":"/m/j/mj03-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"montana-wind-jacket-xl-red","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"171","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Montana Wind Jacket-XL-Red","id":418,"category_ids":["14"],"sku":"MJ03-XL-Red","max_regular_price":49,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":419,"id":47,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":419,"id":46,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,53,58],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/montana-wind-jacket-419.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"435","_score":1,"_source":{"id":435,"sku":"MJ12","name":"Proteus Fitness Jackshirt","attribute_set_id":9,"price":45,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:52","updated_at":"2017-11-06 12:16:52","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona® technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.

                                    \n

                                    • 1/4 zip. Stand-up collar.
                                    • Machine wash/dry.
                                    • Quilted inner layer.

                                    ","image":"/m/j/mj12-orange_main.jpg","small_image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","category_ids":["14"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"proteus-fitness-jackshirt","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[159,145,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":[117,122,125,128],"pattern":"197","climate":[202,204,205,208],"slug":"proteus-fitness-jackshirt-435","links":{},"stock":{"item_id":435,"product_id":435,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/j/mj12-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj12-orange_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/j/mj12-orange_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","small_image":"/m/j/mj12-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"proteus-fitness-jackshirt-xs-black","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"167","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Proteus Fitness Jackshirt-XS-Black","id":420,"category_ids":["14"],"sku":"MJ12-XS-Black","max_regular_price":45,"status":1},{"image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","small_image":"/m/j/mj12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"proteus-fitness-jackshirt-xs-blue","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"167","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Proteus Fitness Jackshirt-XS-Blue","id":421,"category_ids":["14"],"sku":"MJ12-XS-Blue","max_regular_price":45,"status":1},{"image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","small_image":"/m/j/mj12-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"proteus-fitness-jackshirt-xs-orange","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"167","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Proteus Fitness Jackshirt-XS-Orange","id":422,"category_ids":["14"],"sku":"MJ12-XS-Orange","max_regular_price":45,"status":1},{"image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","small_image":"/m/j/mj12-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"proteus-fitness-jackshirt-s-black","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"168","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Proteus Fitness Jackshirt-S-Black","id":423,"category_ids":["14"],"sku":"MJ12-S-Black","max_regular_price":45,"status":1},{"image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","small_image":"/m/j/mj12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"proteus-fitness-jackshirt-s-blue","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"168","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Proteus Fitness Jackshirt-S-Blue","id":424,"category_ids":["14"],"sku":"MJ12-S-Blue","max_regular_price":45,"status":1},{"image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","small_image":"/m/j/mj12-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"proteus-fitness-jackshirt-s-orange","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"168","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Proteus Fitness Jackshirt-S-Orange","id":425,"category_ids":["14"],"sku":"MJ12-S-Orange","max_regular_price":45,"status":1},{"image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","small_image":"/m/j/mj12-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"proteus-fitness-jackshirt-m-black","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"169","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Proteus Fitness Jackshirt-M-Black","id":426,"category_ids":["14"],"sku":"MJ12-M-Black","max_regular_price":45,"status":1},{"image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","small_image":"/m/j/mj12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"proteus-fitness-jackshirt-m-blue","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"169","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Proteus Fitness Jackshirt-M-Blue","id":427,"category_ids":["14"],"sku":"MJ12-M-Blue","max_regular_price":45,"status":1},{"image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","small_image":"/m/j/mj12-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"proteus-fitness-jackshirt-m-orange","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"169","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Proteus Fitness Jackshirt-M-Orange","id":428,"category_ids":["14"],"sku":"MJ12-M-Orange","max_regular_price":45,"status":1},{"image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","small_image":"/m/j/mj12-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"proteus-fitness-jackshirt-l-black","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"170","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Proteus Fitness Jackshirt-L-Black","id":429,"category_ids":["14"],"sku":"MJ12-L-Black","max_regular_price":45,"status":1},{"image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","small_image":"/m/j/mj12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"proteus-fitness-jackshirt-l-blue","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"170","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Proteus Fitness Jackshirt-L-Blue","id":430,"category_ids":["14"],"sku":"MJ12-L-Blue","max_regular_price":45,"status":1},{"image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","small_image":"/m/j/mj12-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"proteus-fitness-jackshirt-l-orange","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"170","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Proteus Fitness Jackshirt-L-Orange","id":431,"category_ids":["14"],"sku":"MJ12-L-Orange","max_regular_price":45,"status":1},{"image":"/m/j/mj12-black_main.jpg","thumbnail":"/m/j/mj12-black_main.jpg","color":"49","small_image":"/m/j/mj12-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"proteus-fitness-jackshirt-xl-black","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"171","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Proteus Fitness Jackshirt-XL-Black","id":432,"category_ids":["14"],"sku":"MJ12-XL-Black","max_regular_price":45,"status":1},{"image":"/m/j/mj12-blue_main.jpg","thumbnail":"/m/j/mj12-blue_main.jpg","color":"50","small_image":"/m/j/mj12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"proteus-fitness-jackshirt-xl-blue","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"171","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Proteus Fitness Jackshirt-XL-Blue","id":433,"category_ids":["14"],"sku":"MJ12-XL-Blue","max_regular_price":45,"status":1},{"image":"/m/j/mj12-orange_main.jpg","thumbnail":"/m/j/mj12-orange_main.jpg","color":"56","small_image":"/m/j/mj12-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"proteus-fitness-jackshirt-xl-orange","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"171","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Proteus Fitness Jackshirt-XL-Orange","id":434,"category_ids":["14"],"sku":"MJ12-XL-Orange","max_regular_price":45,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":435,"id":49,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":435,"id":48,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/jackets-men/jackets-14","category_id":14,"name":"Jackets","slug":"jackets-14"}],"url_path":"men/tops-men/jackets-men/jackets-14/proteus-fitness-jackshirt-435.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"480","_score":1,"_source":{"id":480,"sku":"MS09-XL-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                                    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                                    \n

                                    • Royal polyester tee with black accents.
                                    • Relaxed fit.
                                    • Short-Sleeve.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-crew-neck-xl-black-480","links":{},"stock":{"item_id":480,"product_id":480,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xl-black-480.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"462","_score":1,"_source":{"id":462,"sku":"MS05-L-Blue","name":"Helios EverCool™ Tee-L-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                                    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                                    \n

                                    • Teal quick dry tee.
                                    • Relaxed fit.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helios-evercool-and-trade-tee-l-blue-462","links":{},"stock":{"item_id":462,"product_id":462,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-l-blue-462.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"466","_score":1,"_source":{"id":466,"sku":"MS05-XL-Purple","name":"Helios EverCool™ Tee-XL-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                                    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                                    \n

                                    • Teal quick dry tee.
                                    • Relaxed fit.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helios-evercool-and-trade-tee-xl-purple-466","links":{},"stock":{"item_id":466,"product_id":466,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xl-purple-466.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"458","_score":1,"_source":{"id":458,"sku":"MS05-M-Black","name":"Helios EverCool™ Tee-M-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                                    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                                    \n

                                    • Teal quick dry tee.
                                    • Relaxed fit.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helios-evercool-and-trade-tee-m-black-458","links":{},"stock":{"item_id":458,"product_id":458,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-m-black-458.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"471","_score":1,"_source":{"id":471,"sku":"MS09-S-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-S-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                                    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                                    \n

                                    • Royal polyester tee with black accents.
                                    • Relaxed fit.
                                    • Short-Sleeve.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-crew-neck-s-black-471","links":{},"stock":{"item_id":471,"product_id":471,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-s-black-471.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"469","_score":1,"_source":{"id":469,"sku":"MS09-XS-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                                    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                                    \n

                                    • Royal polyester tee with black accents.
                                    • Relaxed fit.
                                    • Short-Sleeve.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-crew-neck-xs-blue-469","links":{},"stock":{"item_id":469,"product_id":469,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xs-blue-469.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"477","_score":1,"_source":{"id":477,"sku":"MS09-L-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-L-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                                    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                                    \n

                                    • Royal polyester tee with black accents.
                                    • Relaxed fit.
                                    • Short-Sleeve.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-crew-neck-l-black-477","links":{},"stock":{"item_id":477,"product_id":477,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-l-black-477.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"454","_score":1,"_source":{"id":454,"sku":"MS05-XS-Purple","name":"Helios EverCool™ Tee-XS-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                                    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                                    \n

                                    • Teal quick dry tee.
                                    • Relaxed fit.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helios-evercool-and-trade-tee-xs-purple-454","links":{},"stock":{"item_id":454,"product_id":454,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xs-purple-454.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"474","_score":1,"_source":{"id":474,"sku":"MS09-M-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-M-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                                    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                                    \n

                                    • Royal polyester tee with black accents.
                                    • Relaxed fit.
                                    • Short-Sleeve.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-crew-neck-m-black-474","links":{},"stock":{"item_id":474,"product_id":474,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-m-black-474.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"479","_score":1,"_source":{"id":479,"sku":"MS09-L-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-L-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                                    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                                    \n

                                    • Royal polyester tee with black accents.
                                    • Relaxed fit.
                                    • Short-Sleeve.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-crew-neck-l-red-479","links":{},"stock":{"item_id":479,"product_id":479,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-l-red-479.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"468","_score":1,"_source":{"id":468,"sku":"MS09-XS-Black","name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Black","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                                    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                                    \n

                                    • Royal polyester tee with black accents.
                                    • Relaxed fit.
                                    • Short-Sleeve.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms09-black_main.jpg","small_image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-crew-neck-xs-black-468","links":{},"stock":{"item_id":468,"product_id":468,"stock_id":1,"qty":72,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms09-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xs-black-468.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"465","_score":1,"_source":{"id":465,"sku":"MS05-XL-Blue","name":"Helios EverCool™ Tee-XL-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                                    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                                    \n

                                    • Teal quick dry tee.
                                    • Relaxed fit.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helios-evercool-and-trade-tee-xl-blue-465","links":{},"stock":{"item_id":465,"product_id":465,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xl-blue-465.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"470","_score":1,"_source":{"id":470,"sku":"MS09-XS-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                                    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                                    \n

                                    • Royal polyester tee with black accents.
                                    • Relaxed fit.
                                    • Short-Sleeve.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"ryker-lumatech-and-trade-tee-crew-neck-xs-red-470","links":{},"stock":{"item_id":470,"product_id":470,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xs-red-470.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"487","_score":1,"_source":{"id":487,"sku":"MS11-S-Blue","name":"Atomic Endurance Running Tee (V-neck)-S-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                                    \n

                                    • Lime heathered v-neck tee.
                                    • Ultra-lightweight.
                                    • Moisture-wicking Cocona® fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-v-neck-s-blue-487","links":{},"stock":{"item_id":487,"product_id":487,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-s-blue-487.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"486","_score":1,"_source":{"id":486,"sku":"MS11-XS-Yellow","name":"Atomic Endurance Running Tee (V-neck)-XS-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                                    \n

                                    • Lime heathered v-neck tee.
                                    • Ultra-lightweight.
                                    • Moisture-wicking Cocona® fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-v-neck-xs-yellow-486","links":{},"stock":{"item_id":486,"product_id":486,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xs-yellow-486.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"457","_score":1,"_source":{"id":457,"sku":"MS05-S-Purple","name":"Helios EverCool™ Tee-S-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                                    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                                    \n

                                    • Teal quick dry tee.
                                    • Relaxed fit.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helios-evercool-and-trade-tee-s-purple-457","links":{},"stock":{"item_id":457,"product_id":457,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-s-purple-457.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"497","_score":1,"_source":{"id":497,"sku":"MS11-XL-Green","name":"Atomic Endurance Running Tee (V-neck)-XL-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                                    \n

                                    • Lime heathered v-neck tee.
                                    • Ultra-lightweight.
                                    • Moisture-wicking Cocona® fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-v-neck-xl-green-497","links":{},"stock":{"item_id":497,"product_id":497,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xl-green-497.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"478","_score":1,"_source":{"id":478,"sku":"MS09-L-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-L-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                                    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                                    \n

                                    • Royal polyester tee with black accents.
                                    • Relaxed fit.
                                    • Short-Sleeve.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"ryker-lumatech-and-trade-tee-crew-neck-l-blue-478","links":{},"stock":{"item_id":478,"product_id":478,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-l-blue-478.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"453","_score":1,"_source":{"id":453,"sku":"MS05-XS-Blue","name":"Helios EverCool™ Tee-XS-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                                    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                                    \n

                                    • Teal quick dry tee.
                                    • Relaxed fit.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helios-evercool-and-trade-tee-xs-blue-453","links":{},"stock":{"item_id":453,"product_id":453,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xs-blue-453.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"460","_score":1,"_source":{"id":460,"sku":"MS05-M-Purple","name":"Helios EverCool™ Tee-M-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                                    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                                    \n

                                    • Teal quick dry tee.
                                    • Relaxed fit.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helios-evercool-and-trade-tee-m-purple-460","links":{},"stock":{"item_id":460,"product_id":460,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-m-purple-460.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"488","_score":1,"_source":{"id":488,"sku":"MS11-S-Green","name":"Atomic Endurance Running Tee (V-neck)-S-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                                    \n

                                    • Lime heathered v-neck tee.
                                    • Ultra-lightweight.
                                    • Moisture-wicking Cocona® fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-v-neck-s-green-488","links":{},"stock":{"item_id":488,"product_id":488,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-s-green-488.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"461","_score":1,"_source":{"id":461,"sku":"MS05-L-Black","name":"Helios EverCool™ Tee-L-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                                    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                                    \n

                                    • Teal quick dry tee.
                                    • Relaxed fit.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helios-evercool-and-trade-tee-l-black-461","links":{},"stock":{"item_id":461,"product_id":461,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-l-black-461.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"459","_score":1,"_source":{"id":459,"sku":"MS05-M-Blue","name":"Helios EverCool™ Tee-M-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                                    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                                    \n

                                    • Teal quick dry tee.
                                    • Relaxed fit.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"helios-evercool-and-trade-tee-m-blue-459","links":{},"stock":{"item_id":459,"product_id":459,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-m-blue-459.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"496","_score":1,"_source":{"id":496,"sku":"MS11-XL-Blue","name":"Atomic Endurance Running Tee (V-neck)-XL-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                                    \n

                                    • Lime heathered v-neck tee.
                                    • Ultra-lightweight.
                                    • Moisture-wicking Cocona® fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-v-neck-xl-blue-496","links":{},"stock":{"item_id":496,"product_id":496,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xl-blue-496.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"452","_score":1,"_source":{"id":452,"sku":"MS05-XS-Black","name":"Helios EverCool™ Tee-XS-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                                    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                                    \n

                                    • Teal quick dry tee.
                                    • Relaxed fit.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"helios-evercool-and-trade-tee-xs-black-452","links":{},"stock":{"item_id":452,"product_id":452,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xs-black-452.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"463","_score":1,"_source":{"id":463,"sku":"MS05-L-Purple","name":"Helios EverCool™ Tee-L-Purple","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                                    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                                    \n

                                    • Teal quick dry tee.
                                    • Relaxed fit.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms05-purple_main.jpg","small_image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"helios-evercool-and-trade-tee-l-purple-463","links":{},"stock":{"item_id":463,"product_id":463,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms05-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-l-purple-463.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"464","_score":1,"_source":{"id":464,"sku":"MS05-XL-Black","name":"Helios EverCool™ Tee-XL-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                                    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                                    \n

                                    • Teal quick dry tee.
                                    • Relaxed fit.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"helios-evercool-and-trade-tee-xl-black-464","links":{},"stock":{"item_id":464,"product_id":464,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-xl-black-464.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"473","_score":1,"_source":{"id":473,"sku":"MS09-S-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-S-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                                    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                                    \n

                                    • Royal polyester tee with black accents.
                                    • Relaxed fit.
                                    • Short-Sleeve.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-crew-neck-s-red-473","links":{},"stock":{"item_id":473,"product_id":473,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-s-red-473.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"455","_score":1,"_source":{"id":455,"sku":"MS05-S-Black","name":"Helios EverCool™ Tee-S-Black","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                                    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                                    \n

                                    • Teal quick dry tee.
                                    • Relaxed fit.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms05-black_main.jpg","small_image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helios-evercool-and-trade-tee-s-black-455","links":{},"stock":{"item_id":455,"product_id":455,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms05-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-s-black-455.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"495","_score":1,"_source":{"id":495,"sku":"MS11-L-Yellow","name":"Atomic Endurance Running Tee (V-neck)-L-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                                    \n

                                    • Lime heathered v-neck tee.
                                    • Ultra-lightweight.
                                    • Moisture-wicking Cocona® fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-v-neck-l-yellow-495","links":{},"stock":{"item_id":495,"product_id":495,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-l-yellow-495.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"476","_score":1,"_source":{"id":476,"sku":"MS09-M-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-M-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                                    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                                    \n

                                    • Royal polyester tee with black accents.
                                    • Relaxed fit.
                                    • Short-Sleeve.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-crew-neck-m-red-476","links":{},"stock":{"item_id":476,"product_id":476,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-m-red-476.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"494","_score":1,"_source":{"id":494,"sku":"MS11-L-Green","name":"Atomic Endurance Running Tee (V-neck)-L-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                                    \n

                                    • Lime heathered v-neck tee.
                                    • Ultra-lightweight.
                                    • Moisture-wicking Cocona® fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-v-neck-l-green-494","links":{},"stock":{"item_id":494,"product_id":494,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-l-green-494.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"485","_score":1,"_source":{"id":485,"sku":"MS11-XS-Green","name":"Atomic Endurance Running Tee (V-neck)-XS-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                                    \n

                                    • Lime heathered v-neck tee.
                                    • Ultra-lightweight.
                                    • Moisture-wicking Cocona® fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-v-neck-xs-green-485","links":{},"stock":{"item_id":485,"product_id":485,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xs-green-485.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"472","_score":1,"_source":{"id":472,"sku":"MS09-S-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-S-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                                    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                                    \n

                                    • Royal polyester tee with black accents.
                                    • Relaxed fit.
                                    • Short-Sleeve.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"ryker-lumatech-and-trade-tee-crew-neck-s-blue-472","links":{},"stock":{"item_id":472,"product_id":472,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-s-blue-472.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"498","_score":1,"_source":{"id":498,"sku":"MS11-XL-Yellow","name":"Atomic Endurance Running Tee (V-neck)-XL-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                                    \n

                                    • Lime heathered v-neck tee.
                                    • Ultra-lightweight.
                                    • Moisture-wicking Cocona® fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-v-neck-xl-yellow-498","links":{},"stock":{"item_id":498,"product_id":498,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xl-yellow-498.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"492","_score":1,"_source":{"id":492,"sku":"MS11-M-Yellow","name":"Atomic Endurance Running Tee (V-neck)-M-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                                    \n

                                    • Lime heathered v-neck tee.
                                    • Ultra-lightweight.
                                    • Moisture-wicking Cocona® fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-v-neck-m-yellow-492","links":{},"stock":{"item_id":492,"product_id":492,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-m-yellow-492.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"456","_score":1,"_source":{"id":456,"sku":"MS05-S-Blue","name":"Helios EverCool™ Tee-S-Blue","attribute_set_id":9,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                                    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                                    \n

                                    • Teal quick dry tee.
                                    • Relaxed fit.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"helios-evercool-trade-tee-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"helios-evercool-and-trade-tee-s-blue-456","links":{},"stock":{"item_id":456,"product_id":456,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-s-blue-456.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"481","_score":1,"_source":{"id":481,"sku":"MS09-XL-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                                    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                                    \n

                                    • Royal polyester tee with black accents.
                                    • Relaxed fit.
                                    • Short-Sleeve.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-crew-neck-xl-blue-481","links":{},"stock":{"item_id":481,"product_id":481,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xl-blue-481.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"493","_score":1,"_source":{"id":493,"sku":"MS11-L-Blue","name":"Atomic Endurance Running Tee (V-neck)-L-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                                    \n

                                    • Lime heathered v-neck tee.
                                    • Ultra-lightweight.
                                    • Moisture-wicking Cocona® fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-l-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-v-neck-l-blue-493","links":{},"stock":{"item_id":493,"product_id":493,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-l-blue-493.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"500","_score":1,"_source":{"id":500,"sku":"MS12-XS-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                                    \n

                                    • Red polyester tee.
                                    • Crew neckline.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-crew-neck-xs-black-500","links":{},"stock":{"item_id":500,"product_id":500,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xs-black-500.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"484","_score":1,"_source":{"id":484,"sku":"MS11-XS-Blue","name":"Atomic Endurance Running Tee (V-neck)-XS-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                                    \n

                                    • Lime heathered v-neck tee.
                                    • Ultra-lightweight.
                                    • Moisture-wicking Cocona® fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-v-neck-xs-blue-484","links":{},"stock":{"item_id":484,"product_id":484,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-xs-blue-484.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"490","_score":1,"_source":{"id":490,"sku":"MS11-M-Blue","name":"Atomic Endurance Running Tee (V-neck)-M-Blue","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                                    \n

                                    • Lime heathered v-neck tee.
                                    • Ultra-lightweight.
                                    • Moisture-wicking Cocona® fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms11-blue_main.jpg","small_image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-v-neck-m-blue-490","links":{},"stock":{"item_id":490,"product_id":490,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms11-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-m-blue-490.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"489","_score":1,"_source":{"id":489,"sku":"MS11-S-Yellow","name":"Atomic Endurance Running Tee (V-neck)-S-Yellow","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                                    \n

                                    • Lime heathered v-neck tee.
                                    • Ultra-lightweight.
                                    • Moisture-wicking Cocona® fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms11-yellow_main.jpg","small_image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-v-neck-s-yellow-489","links":{},"stock":{"item_id":489,"product_id":489,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms11-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-s-yellow-489.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"482","_score":1,"_source":{"id":482,"sku":"MS09-XL-Red","name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Red","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                                    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                                    \n

                                    • Royal polyester tee with black accents.
                                    • Relaxed fit.
                                    • Short-Sleeve.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms09-red_main.jpg","small_image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"ryker-lumatech-and-trade-tee-crew-neck-xl-red-482","links":{},"stock":{"item_id":482,"product_id":482,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms09-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-xl-red-482.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"491","_score":1,"_source":{"id":491,"sku":"MS11-M-Green","name":"Atomic Endurance Running Tee (V-neck)-M-Green","attribute_set_id":9,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                                    \n

                                    • Lime heathered v-neck tee.
                                    • Ultra-lightweight.
                                    • Moisture-wicking Cocona® fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-v-neck-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-v-neck-m-green-491","links":{},"stock":{"item_id":491,"product_id":491,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-m-green-491.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"475","_score":1,"_source":{"id":475,"sku":"MS09-M-Blue","name":"Ryker LumaTech™ Tee (Crew-neck)-M-Blue","attribute_set_id":9,"price":32,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                                    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                                    \n

                                    • Royal polyester tee with black accents.
                                    • Relaxed fit.
                                    • Short-Sleeve.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ryker-lumatech-trade-tee-crew-neck-m-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"ryker-lumatech-and-trade-tee-crew-neck-m-blue-475","links":{},"stock":{"item_id":475,"product_id":475,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-m-blue-475.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"451","_score":1,"_source":{"id":451,"sku":"MS04","name":"Gobi HeatTec® Tee","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:53","updated_at":"2017-11-06 12:16:53","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.

                                    \n

                                    • Orange micropolyester shirt.
                                    • HeatTec® wicking fabric.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms04-orange_main.jpg","small_image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"gobi-heattec-reg-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,152,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"gobi-heattec-and-reg-tee-451","links":{},"stock":{"item_id":451,"product_id":451,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms04-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms04-orange_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","small_image":"/m/s/ms04-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gobi-heattec-reg-tee-xs-black","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":29,"name":"Gobi HeatTec® Tee-XS-Black","id":436,"category_ids":["16"],"sku":"MS04-XS-Black","status":1},{"image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","small_image":"/m/s/ms04-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gobi-heattec-reg-tee-xs-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":29,"name":"Gobi HeatTec® Tee-XS-Orange","id":437,"category_ids":["16"],"sku":"MS04-XS-Orange","status":1},{"image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","small_image":"/m/s/ms04-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gobi-heattec-reg-tee-xs-red","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":29,"name":"Gobi HeatTec® Tee-XS-Red","id":438,"category_ids":["16"],"sku":"MS04-XS-Red","status":1},{"image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","small_image":"/m/s/ms04-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gobi-heattec-reg-tee-s-black","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":29,"name":"Gobi HeatTec® Tee-S-Black","id":439,"category_ids":["16"],"sku":"MS04-S-Black","status":1},{"image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","small_image":"/m/s/ms04-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gobi-heattec-reg-tee-s-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":29,"name":"Gobi HeatTec® Tee-S-Orange","id":440,"category_ids":["16"],"sku":"MS04-S-Orange","status":1},{"image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","small_image":"/m/s/ms04-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gobi-heattec-reg-tee-s-red","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":29,"name":"Gobi HeatTec® Tee-S-Red","id":441,"category_ids":["16"],"sku":"MS04-S-Red","status":1},{"image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","small_image":"/m/s/ms04-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gobi-heattec-reg-tee-m-black","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":29,"name":"Gobi HeatTec® Tee-M-Black","id":442,"category_ids":["16"],"sku":"MS04-M-Black","status":1},{"image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","small_image":"/m/s/ms04-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gobi-heattec-reg-tee-m-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":29,"name":"Gobi HeatTec® Tee-M-Orange","id":443,"category_ids":["16"],"sku":"MS04-M-Orange","status":1},{"image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","small_image":"/m/s/ms04-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gobi-heattec-reg-tee-m-red","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":29,"name":"Gobi HeatTec® Tee-M-Red","id":444,"category_ids":["16"],"sku":"MS04-M-Red","status":1},{"image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","small_image":"/m/s/ms04-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gobi-heattec-reg-tee-l-black","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":29,"name":"Gobi HeatTec® Tee-L-Black","id":445,"category_ids":["16"],"sku":"MS04-L-Black","status":1},{"image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","small_image":"/m/s/ms04-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gobi-heattec-reg-tee-l-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":29,"name":"Gobi HeatTec® Tee-L-Orange","id":446,"category_ids":["16"],"sku":"MS04-L-Orange","status":1},{"image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","small_image":"/m/s/ms04-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gobi-heattec-reg-tee-l-red","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":29,"name":"Gobi HeatTec® Tee-L-Red","id":447,"category_ids":["16"],"sku":"MS04-L-Red","status":1},{"image":"/m/s/ms04-black_main.jpg","thumbnail":"/m/s/ms04-black_main.jpg","color":"49","small_image":"/m/s/ms04-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gobi-heattec-reg-tee-xl-black","required_options":"0","msrp_display_actual_price_type":"0","size":"171","price":29,"name":"Gobi HeatTec® Tee-XL-Black","id":448,"category_ids":["16"],"sku":"MS04-XL-Black","status":1},{"image":"/m/s/ms04-orange_main.jpg","thumbnail":"/m/s/ms04-orange_main.jpg","color":"56","small_image":"/m/s/ms04-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gobi-heattec-reg-tee-xl-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"171","price":29,"name":"Gobi HeatTec® Tee-XL-Orange","id":449,"category_ids":["16"],"sku":"MS04-XL-Orange","status":1},{"image":"/m/s/ms04-red_main.jpg","thumbnail":"/m/s/ms04-red_main.jpg","color":"58","small_image":"/m/s/ms04-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gobi-heattec-reg-tee-xl-red","required_options":"0","msrp_display_actual_price_type":"0","size":"171","price":29,"name":"Gobi HeatTec® Tee-XL-Red","id":450,"category_ids":["16"],"sku":"MS04-XL-Red","status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":451,"id":51,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":451,"id":50,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,56,58],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/gobi-heattec-and-reg-tee-451.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"483","_score":1,"_source":{"id":483,"sku":"MS09","name":"Ryker LumaTech™ Tee (Crew-neck)","attribute_set_id":9,"price":32,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":32,"max_price":32,"max_regular_price":32,"minimal_regular_price":32,"special_price":null,"minimal_price":32,"regular_price":32,"description":"

                                    The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

                                    \n

                                    • Royal polyester tee with black accents.
                                    • Relaxed fit.
                                    • Short-Sleeve.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms09-blue_main.jpg","small_image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ryker-lumatech-trade-tee-crew-neck","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"ryker-lumatech-and-trade-tee-crew-neck-483","links":{},"stock":{"item_id":483,"product_id":483,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms09-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms09-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms09-blue_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","small_image":"/m/s/ms09-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-crew-neck-xs-black","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"167","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Black","id":468,"category_ids":["16"],"sku":"MS09-XS-Black","max_regular_price":32,"status":1},{"image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","small_image":"/m/s/ms09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-crew-neck-xs-blue","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"167","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Blue","id":469,"category_ids":["16"],"sku":"MS09-XS-Blue","max_regular_price":32,"status":1},{"image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","small_image":"/m/s/ms09-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-crew-neck-xs-red","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"167","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Ryker LumaTech™ Tee (Crew-neck)-XS-Red","id":470,"category_ids":["16"],"sku":"MS09-XS-Red","max_regular_price":32,"status":1},{"image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","small_image":"/m/s/ms09-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-crew-neck-s-black","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"168","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Ryker LumaTech™ Tee (Crew-neck)-S-Black","id":471,"category_ids":["16"],"sku":"MS09-S-Black","max_regular_price":32,"status":1},{"image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","small_image":"/m/s/ms09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-crew-neck-s-blue","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"168","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Ryker LumaTech™ Tee (Crew-neck)-S-Blue","id":472,"category_ids":["16"],"sku":"MS09-S-Blue","max_regular_price":32,"status":1},{"image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","small_image":"/m/s/ms09-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-crew-neck-s-red","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"168","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Ryker LumaTech™ Tee (Crew-neck)-S-Red","id":473,"category_ids":["16"],"sku":"MS09-S-Red","max_regular_price":32,"status":1},{"image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","small_image":"/m/s/ms09-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-crew-neck-m-black","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"169","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Ryker LumaTech™ Tee (Crew-neck)-M-Black","id":474,"category_ids":["16"],"sku":"MS09-M-Black","max_regular_price":32,"status":1},{"image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","small_image":"/m/s/ms09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-crew-neck-m-blue","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"169","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Ryker LumaTech™ Tee (Crew-neck)-M-Blue","id":475,"category_ids":["16"],"sku":"MS09-M-Blue","max_regular_price":32,"status":1},{"image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","small_image":"/m/s/ms09-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-crew-neck-m-red","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"169","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Ryker LumaTech™ Tee (Crew-neck)-M-Red","id":476,"category_ids":["16"],"sku":"MS09-M-Red","max_regular_price":32,"status":1},{"image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","small_image":"/m/s/ms09-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-crew-neck-l-black","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"170","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Ryker LumaTech™ Tee (Crew-neck)-L-Black","id":477,"category_ids":["16"],"sku":"MS09-L-Black","max_regular_price":32,"status":1},{"image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","small_image":"/m/s/ms09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-crew-neck-l-blue","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"170","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Ryker LumaTech™ Tee (Crew-neck)-L-Blue","id":478,"category_ids":["16"],"sku":"MS09-L-Blue","max_regular_price":32,"status":1},{"image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","small_image":"/m/s/ms09-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-crew-neck-l-red","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"170","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Ryker LumaTech™ Tee (Crew-neck)-L-Red","id":479,"category_ids":["16"],"sku":"MS09-L-Red","max_regular_price":32,"status":1},{"image":"/m/s/ms09-black_main.jpg","thumbnail":"/m/s/ms09-black_main.jpg","color":"49","small_image":"/m/s/ms09-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-crew-neck-xl-black","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"171","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Black","id":480,"category_ids":["16"],"sku":"MS09-XL-Black","max_regular_price":32,"status":1},{"image":"/m/s/ms09-blue_main.jpg","thumbnail":"/m/s/ms09-blue_main.jpg","color":"50","small_image":"/m/s/ms09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-crew-neck-xl-blue","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"171","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Blue","id":481,"category_ids":["16"],"sku":"MS09-XL-Blue","max_regular_price":32,"status":1},{"image":"/m/s/ms09-red_main.jpg","thumbnail":"/m/s/ms09-red_main.jpg","color":"58","small_image":"/m/s/ms09-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ryker-lumatech-trade-tee-crew-neck-xl-red","regular_price":32,"required_options":"0","msrp_display_actual_price_type":"0","max_price":32,"minimal_regular_price":32,"size":"171","final_price":32,"special_price":null,"price":32,"minimal_price":32,"name":"Ryker LumaTech™ Tee (Crew-neck)-XL-Red","id":482,"category_ids":["16"],"sku":"MS09-XL-Red","max_regular_price":32,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"}],"product_id":483,"id":55,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":483,"id":54,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,58],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/ryker-lumatech-and-trade-tee-crew-neck-483.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"467","_score":1,"_source":{"id":467,"sku":"MS05","name":"Helios EverCool™ Tee","attribute_set_id":9,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                                    Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

                                    \n

                                    • Teal quick dry tee.
                                    • Relaxed fit.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms05-blue_main.jpg","small_image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","category_ids":[16,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"helios-evercool-trade-tee","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[153,149,154],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"helios-evercool-and-trade-tee-467","links":{},"stock":{"item_id":467,"product_id":467,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms05-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms05-blue_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","small_image":"/m/s/ms05-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helios-evercool-trade-tee-xs-black","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"167","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Helios EverCool™ Tee-XS-Black","id":452,"category_ids":["16","36","2"],"sku":"MS05-XS-Black","max_regular_price":24,"status":1},{"image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","small_image":"/m/s/ms05-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helios-evercool-trade-tee-xs-blue","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"167","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Helios EverCool™ Tee-XS-Blue","id":453,"category_ids":["16","36","2"],"sku":"MS05-XS-Blue","max_regular_price":24,"status":1},{"image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","small_image":"/m/s/ms05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helios-evercool-trade-tee-xs-purple","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"167","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Helios EverCool™ Tee-XS-Purple","id":454,"category_ids":["16","36","2"],"sku":"MS05-XS-Purple","max_regular_price":24,"status":1},{"image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","small_image":"/m/s/ms05-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helios-evercool-trade-tee-s-black","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"168","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Helios EverCool™ Tee-S-Black","id":455,"category_ids":["16","36","2"],"sku":"MS05-S-Black","max_regular_price":24,"status":1},{"image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","small_image":"/m/s/ms05-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helios-evercool-trade-tee-s-blue","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"168","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Helios EverCool™ Tee-S-Blue","id":456,"category_ids":["16","36","2"],"sku":"MS05-S-Blue","max_regular_price":24,"status":1},{"image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","small_image":"/m/s/ms05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helios-evercool-trade-tee-s-purple","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"168","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Helios EverCool™ Tee-S-Purple","id":457,"category_ids":["16","36","2"],"sku":"MS05-S-Purple","max_regular_price":24,"status":1},{"image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","small_image":"/m/s/ms05-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helios-evercool-trade-tee-m-black","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"169","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Helios EverCool™ Tee-M-Black","id":458,"category_ids":["16","36","2"],"sku":"MS05-M-Black","max_regular_price":24,"status":1},{"image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","small_image":"/m/s/ms05-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helios-evercool-trade-tee-m-blue","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"169","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Helios EverCool™ Tee-M-Blue","id":459,"category_ids":["16","36","2"],"sku":"MS05-M-Blue","max_regular_price":24,"status":1},{"image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","small_image":"/m/s/ms05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helios-evercool-trade-tee-m-purple","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"169","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Helios EverCool™ Tee-M-Purple","id":460,"category_ids":["16","36","2"],"sku":"MS05-M-Purple","max_regular_price":24,"status":1},{"image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","small_image":"/m/s/ms05-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helios-evercool-trade-tee-l-black","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"170","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Helios EverCool™ Tee-L-Black","id":461,"category_ids":["16","36","2"],"sku":"MS05-L-Black","max_regular_price":24,"status":1},{"image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","small_image":"/m/s/ms05-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helios-evercool-trade-tee-l-blue","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"170","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Helios EverCool™ Tee-L-Blue","id":462,"category_ids":["16","36","2"],"sku":"MS05-L-Blue","max_regular_price":24,"status":1},{"image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","small_image":"/m/s/ms05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helios-evercool-trade-tee-l-purple","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"170","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Helios EverCool™ Tee-L-Purple","id":463,"category_ids":["16","36","2"],"sku":"MS05-L-Purple","max_regular_price":24,"status":1},{"image":"/m/s/ms05-black_main.jpg","thumbnail":"/m/s/ms05-black_main.jpg","color":"49","small_image":"/m/s/ms05-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helios-evercool-trade-tee-xl-black","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"171","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Helios EverCool™ Tee-XL-Black","id":464,"category_ids":["16","36","2"],"sku":"MS05-XL-Black","max_regular_price":24,"status":1},{"image":"/m/s/ms05-blue_main.jpg","thumbnail":"/m/s/ms05-blue_main.jpg","color":"50","small_image":"/m/s/ms05-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helios-evercool-trade-tee-xl-blue","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"171","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Helios EverCool™ Tee-XL-Blue","id":465,"category_ids":["16","36","2"],"sku":"MS05-XL-Blue","max_regular_price":24,"status":1},{"image":"/m/s/ms05-purple_main.jpg","thumbnail":"/m/s/ms05-purple_main.jpg","color":"57","small_image":"/m/s/ms05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"helios-evercool-trade-tee-xl-purple","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"171","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Helios EverCool™ Tee-XL-Purple","id":466,"category_ids":["16","36","2"],"sku":"MS05-XL-Purple","max_regular_price":24,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":467,"id":53,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":467,"id":52,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"men/tops-men/tees-men/tees-16/helios-evercool-and-trade-tee-467.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"499","_score":1,"_source":{"id":499,"sku":"MS11","name":"Atomic Endurance Running Tee (V-neck)","attribute_set_id":9,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

                                    \n

                                    • Lime heathered v-neck tee.
                                    • Ultra-lightweight.
                                    • Moisture-wicking Cocona® fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms11-green_main.jpg","small_image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"atomic-endurance-running-tee-v-neck","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":"136","pattern":"197","climate":[202,205,209],"slug":"atomic-endurance-running-tee-v-neck-499","links":{},"stock":{"item_id":499,"product_id":499,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms11-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms11-green_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","small_image":"/m/s/ms11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"atomic-endurance-running-tee-v-neck-xs-blue","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"167","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Atomic Endurance Running Tee (V-neck)-XS-Blue","id":484,"category_ids":["16"],"sku":"MS11-XS-Blue","max_regular_price":28,"status":1},{"image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","small_image":"/m/s/ms11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"atomic-endurance-running-tee-v-neck-xs-green","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"167","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Atomic Endurance Running Tee (V-neck)-XS-Green","id":485,"category_ids":["16"],"sku":"MS11-XS-Green","max_regular_price":28,"status":1},{"image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","small_image":"/m/s/ms11-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"atomic-endurance-running-tee-v-neck-xs-yellow","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"167","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Atomic Endurance Running Tee (V-neck)-XS-Yellow","id":486,"category_ids":["16"],"sku":"MS11-XS-Yellow","max_regular_price":28,"status":1},{"image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","small_image":"/m/s/ms11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"atomic-endurance-running-tee-v-neck-s-blue","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"168","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Atomic Endurance Running Tee (V-neck)-S-Blue","id":487,"category_ids":["16"],"sku":"MS11-S-Blue","max_regular_price":28,"status":1},{"image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","small_image":"/m/s/ms11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"atomic-endurance-running-tee-v-neck-s-green","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"168","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Atomic Endurance Running Tee (V-neck)-S-Green","id":488,"category_ids":["16"],"sku":"MS11-S-Green","max_regular_price":28,"status":1},{"image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","small_image":"/m/s/ms11-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"atomic-endurance-running-tee-v-neck-s-yellow","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"168","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Atomic Endurance Running Tee (V-neck)-S-Yellow","id":489,"category_ids":["16"],"sku":"MS11-S-Yellow","max_regular_price":28,"status":1},{"image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","small_image":"/m/s/ms11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"atomic-endurance-running-tee-v-neck-m-blue","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"169","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Atomic Endurance Running Tee (V-neck)-M-Blue","id":490,"category_ids":["16"],"sku":"MS11-M-Blue","max_regular_price":28,"status":1},{"image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","small_image":"/m/s/ms11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"atomic-endurance-running-tee-v-neck-m-green","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"169","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Atomic Endurance Running Tee (V-neck)-M-Green","id":491,"category_ids":["16"],"sku":"MS11-M-Green","max_regular_price":28,"status":1},{"image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","small_image":"/m/s/ms11-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"atomic-endurance-running-tee-v-neck-m-yellow","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"169","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Atomic Endurance Running Tee (V-neck)-M-Yellow","id":492,"category_ids":["16"],"sku":"MS11-M-Yellow","max_regular_price":28,"status":1},{"image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","small_image":"/m/s/ms11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"atomic-endurance-running-tee-v-neck-l-blue","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"170","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Atomic Endurance Running Tee (V-neck)-L-Blue","id":493,"category_ids":["16"],"sku":"MS11-L-Blue","max_regular_price":28,"status":1},{"image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","small_image":"/m/s/ms11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"atomic-endurance-running-tee-v-neck-l-green","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"170","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Atomic Endurance Running Tee (V-neck)-L-Green","id":494,"category_ids":["16"],"sku":"MS11-L-Green","max_regular_price":28,"status":1},{"image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","small_image":"/m/s/ms11-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"atomic-endurance-running-tee-v-neck-l-yellow","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"170","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Atomic Endurance Running Tee (V-neck)-L-Yellow","id":495,"category_ids":["16"],"sku":"MS11-L-Yellow","max_regular_price":28,"status":1},{"image":"/m/s/ms11-blue_main.jpg","thumbnail":"/m/s/ms11-blue_main.jpg","color":"50","small_image":"/m/s/ms11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"atomic-endurance-running-tee-v-neck-xl-blue","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"171","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Atomic Endurance Running Tee (V-neck)-XL-Blue","id":496,"category_ids":["16"],"sku":"MS11-XL-Blue","max_regular_price":28,"status":1},{"image":"/m/s/ms11-green_main.jpg","thumbnail":"/m/s/ms11-green_main.jpg","color":"53","small_image":"/m/s/ms11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"atomic-endurance-running-tee-v-neck-xl-green","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"171","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Atomic Endurance Running Tee (V-neck)-XL-Green","id":497,"category_ids":["16"],"sku":"MS11-XL-Green","max_regular_price":28,"status":1},{"image":"/m/s/ms11-yellow_main.jpg","thumbnail":"/m/s/ms11-yellow_main.jpg","color":"60","small_image":"/m/s/ms11-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"atomic-endurance-running-tee-v-neck-xl-yellow","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"171","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Atomic Endurance Running Tee (V-neck)-XL-Yellow","id":498,"category_ids":["16"],"sku":"MS11-XL-Yellow","max_regular_price":28,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":60,"label":"Yellow"}],"product_id":499,"id":57,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":499,"id":56,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,53,60],"size_options":[167,168,169,170,171],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-v-neck-499.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"518","_score":1,"_source":{"id":518,"sku":"MS03-XS-Orange","name":"Balboa Persistence Tee-XS-Orange","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                                    \n

                                    • Crew neckline.
                                    • Semi-fitted.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms03-orange_main.jpg","small_image":"/m/s/ms03-orange_main.jpg","thumbnail":"/m/s/ms03-orange_main.jpg","color":"56","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xs-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"balboa-persistence-tee-xs-orange-518","links":{},"stock":{"item_id":518,"product_id":518,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms03-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xs-orange-518.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"536","_score":1,"_source":{"id":536,"sku":"MS06-S-Green","name":"Zoltan Gym Tee-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                                    \n

                                    • Relaxed fit.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoltan-gym-tee-s-green-536","links":{},"stock":{"item_id":536,"product_id":536,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms06-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-s-green-536.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"508","_score":1,"_source":{"id":508,"sku":"MS12-M-Red","name":"Atomic Endurance Running Tee (Crew-Neck)-M-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                                    \n

                                    • Red polyester tee.
                                    • Crew neckline.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-crew-neck-m-red-508","links":{},"stock":{"item_id":508,"product_id":508,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-m-red-508.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"544","_score":1,"_source":{"id":544,"sku":"MS06-XL-Blue","name":"Zoltan Gym Tee-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                                    \n

                                    • Relaxed fit.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms06-blue_main.jpg","small_image":"/m/s/ms06-blue_main.jpg","thumbnail":"/m/s/ms06-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoltan-gym-tee-xl-blue-544","links":{},"stock":{"item_id":544,"product_id":544,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms06-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms06-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms06-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xl-blue-544.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"513","_score":1,"_source":{"id":513,"sku":"MS12-XL-Blue","name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                                    \n

                                    • Red polyester tee.
                                    • Crew neckline.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-crew-neck-xl-blue-513","links":{},"stock":{"item_id":513,"product_id":513,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms12-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xl-blue-513.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"502","_score":1,"_source":{"id":502,"sku":"MS12-XS-Red","name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                                    \n

                                    • Red polyester tee.
                                    • Crew neckline.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xs-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-crew-neck-xs-red-502","links":{},"stock":{"item_id":502,"product_id":502,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xs-red-502.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"512","_score":1,"_source":{"id":512,"sku":"MS12-XL-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-XL-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                                    \n

                                    • Red polyester tee.
                                    • Crew neckline.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"atomic-endurance-running-tee-crew-neck-xl-black-512","links":{},"stock":{"item_id":512,"product_id":512,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xl-black-512.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"516","_score":1,"_source":{"id":516,"sku":"MS03-XS-Gray","name":"Balboa Persistence Tee-XS-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                                    \n

                                    • Crew neckline.
                                    • Semi-fitted.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xs-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"balboa-persistence-tee-xs-gray-516","links":{},"stock":{"item_id":516,"product_id":516,"stock_id":1,"qty":36,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms03-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms03-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms03-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xs-gray-516.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"509","_score":1,"_source":{"id":509,"sku":"MS12-L-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-L-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                                    \n

                                    • Red polyester tee.
                                    • Crew neckline.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-crew-neck-l-black-509","links":{},"stock":{"item_id":509,"product_id":509,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-l-black-509.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"511","_score":1,"_source":{"id":511,"sku":"MS12-L-Red","name":"Atomic Endurance Running Tee (Crew-Neck)-L-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                                    \n

                                    • Red polyester tee.
                                    • Crew neckline.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"atomic-endurance-running-tee-crew-neck-l-red-511","links":{},"stock":{"item_id":511,"product_id":511,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-l-red-511.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"545","_score":1,"_source":{"id":545,"sku":"MS06-XL-Green","name":"Zoltan Gym Tee-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                                    \n

                                    • Relaxed fit.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"zoltan-gym-tee-xl-green-545","links":{},"stock":{"item_id":545,"product_id":545,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms06-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-xl-green-545.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"520","_score":1,"_source":{"id":520,"sku":"MS03-S-Green","name":"Balboa Persistence Tee-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                                    \n

                                    • Crew neckline.
                                    • Semi-fitted.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"balboa-persistence-tee-s-green-520","links":{},"stock":{"item_id":520,"product_id":520,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-s-green-520.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"503","_score":1,"_source":{"id":503,"sku":"MS12-S-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-S-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                                    \n

                                    • Red polyester tee.
                                    • Crew neckline.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-crew-neck-s-black-503","links":{},"stock":{"item_id":503,"product_id":503,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-s-black-503.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"539","_score":1,"_source":{"id":539,"sku":"MS06-M-Green","name":"Zoltan Gym Tee-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                                    \n

                                    • Relaxed fit.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms06-green_main.jpg","small_image":"/m/s/ms06-green_main.jpg","thumbnail":"/m/s/ms06-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"zoltan-gym-tee-m-green-539","links":{},"stock":{"item_id":539,"product_id":539,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms06-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-m-green-539.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"537","_score":1,"_source":{"id":537,"sku":"MS06-S-Yellow","name":"Zoltan Gym Tee-S-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

                                    \n

                                    • Relaxed fit.
                                    • Crew neckline.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms06-yellow_main.jpg","small_image":"/m/s/ms06-yellow_main.jpg","thumbnail":"/m/s/ms06-yellow_main.jpg","color":"60","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"zoltan-gym-tee-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"zoltan-gym-tee-s-yellow-537","links":{},"stock":{"item_id":537,"product_id":537,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms06-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/zoltan-gym-tee-s-yellow-537.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"501","_score":1,"_source":{"id":501,"sku":"MS12-XS-Blue","name":"Atomic Endurance Running Tee (Crew-Neck)-XS-Blue","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:54","updated_at":"2017-11-06 12:16:54","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                                    \n

                                    • Red polyester tee.
                                    • Crew neckline.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms12-blue_main.jpg","small_image":"/m/s/ms12-blue_main.jpg","thumbnail":"/m/s/ms12-blue_main.jpg","color":"50","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-xs-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"atomic-endurance-running-tee-crew-neck-xs-blue-501","links":{},"stock":{"item_id":501,"product_id":501,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms12-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-xs-blue-501.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"519","_score":1,"_source":{"id":519,"sku":"MS03-S-Gray","name":"Balboa Persistence Tee-S-Gray","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                                    \n

                                    • Crew neckline.
                                    • Semi-fitted.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms03-gray_main.jpg","small_image":"/m/s/ms03-gray_main.jpg","thumbnail":"/m/s/ms03-gray_main.jpg","color":"52","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-s-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"balboa-persistence-tee-s-gray-519","links":{},"stock":{"item_id":519,"product_id":519,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms03-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms03-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms03-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-s-gray-519.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"517","_score":1,"_source":{"id":517,"sku":"MS03-XS-Green","name":"Balboa Persistence Tee-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

                                    \n

                                    • Crew neckline.
                                    • Semi-fitted.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms03-green_main.jpg","small_image":"/m/s/ms03-green_main.jpg","thumbnail":"/m/s/ms03-green_main.jpg","color":"53","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"balboa-persistence-tee-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"balboa-persistence-tee-xs-green-517","links":{},"stock":{"item_id":517,"product_id":517,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms03-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/balboa-persistence-tee-xs-green-517.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"505","_score":1,"_source":{"id":505,"sku":"MS12-S-Red","name":"Atomic Endurance Running Tee (Crew-Neck)-S-Red","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                                    \n

                                    • Red polyester tee.
                                    • Crew neckline.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms12-red_main.jpg","small_image":"/m/s/ms12-red_main.jpg","thumbnail":"/m/s/ms12-red_main.jpg","color":"58","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"atomic-endurance-running-tee-crew-neck-s-red-505","links":{},"stock":{"item_id":505,"product_id":505,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms12-red_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms12-red_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/m/s/ms12-red_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-s-red-505.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"506","_score":1,"_source":{"id":506,"sku":"MS12-M-Black","name":"Atomic Endurance Running Tee (Crew-Neck)-M-Black","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:16:55","updated_at":"2017-11-06 12:16:55","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Like it's v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

                                    \n

                                    • Red polyester tee.
                                    • Crew neckline.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/m/s/ms12-black_main.jpg","small_image":"/m/s/ms12-black_main.jpg","thumbnail":"/m/s/ms12-black_main.jpg","color":"49","category_ids":["16"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"atomic-endurance-running-tee-crew-neck-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"atomic-endurance-running-tee-crew-neck-m-black-506","links":{},"stock":{"item_id":506,"product_id":506,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/m/s/ms12-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"men/tops-men/tees-men/tees-16","category_id":16,"name":"Tees","slug":"tees-16"}],"url_path":"men/tops-men/tees-men/tees-16/atomic-endurance-running-tee-crew-neck-m-black-506.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1837","_score":1,"_source":{"id":1837,"sku":"WP03-29-Purple","name":"Ida Workout Parachute Pant-29-Purple","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                                    The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                                    \n

                                    • Royal blue parachute pants.
                                    • Contrast stripe.
                                    • Relaxed fit.
                                    • Drawstring closure.
                                    • Machine wash/dry.

                                    ","image":"/w/p/wp03-purple_main.jpg","small_image":"/w/p/wp03-purple_main.jpg","thumbnail":"/w/p/wp03-purple_main.jpg","color":"57","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ida-workout-parachute-pant-29-purple-1837","links":{},"stock":{"item_id":1837,"product_id":1837,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp03-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-29-purple-1837.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1826","_score":1,"_source":{"id":1826,"sku":"WP02-28-Purple","name":"Emma Leggings-28-Purple","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                                    \n

                                    • Light blue heather yoga pants.
                                    • Body hugging fit.
                                    • Low rise fit.

                                    ","image":"/w/p/wp02-purple_main.jpg","small_image":"/w/p/wp02-purple_main.jpg","thumbnail":"/w/p/wp02-purple_main.jpg","color":"57","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"emma-leggings-28-purple-1826","links":{},"stock":{"item_id":1826,"product_id":1826,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp02-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-28-purple-1826.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1819","_score":1,"_source":{"id":1819,"sku":"WP01-28-Gray","name":"Karmen Yoga Pant-28-Gray","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                                    Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                                    \n

                                    • Light blue parachute pants.
                                    • Power mesh internal waistband for support.
                                    • Internal waistband pocket.
                                    • Antimicrobial finish.

                                    ","image":"/w/p/wp01-gray_main.jpg","small_image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","color":"52","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"karmen-yoga-pant-28-gray-1819","links":{},"stock":{"item_id":1819,"product_id":1819,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp01-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp01-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-28-gray-1819.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1821","_score":1,"_source":{"id":1821,"sku":"WP01-29-Black","name":"Karmen Yoga Pant-29-Black","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                                    Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                                    \n

                                    • Light blue parachute pants.
                                    • Power mesh internal waistband for support.
                                    • Internal waistband pocket.
                                    • Antimicrobial finish.

                                    ","image":"/w/p/wp01-black_main.jpg","small_image":"/w/p/wp01-black_main.jpg","thumbnail":"/w/p/wp01-black_main.jpg","color":"49","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"karmen-yoga-pant-29-black-1821","links":{},"stock":{"item_id":1821,"product_id":1821,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp01-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-29-black-1821.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1814","_score":1,"_source":{"id":1814,"sku":"WT09-XL-Purple","name":"Breathe-Easy Tank-XL-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                                    \n

                                    • Machine wash/dry.
                                    • Cocona® fabric.

                                    ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"breathe-easy-tank-xl-purple-1814","links":{},"stock":{"item_id":1814,"product_id":1814,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xl-purple-1814.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1850","_score":1,"_source":{"id":1850,"sku":"WP05-29-Gray","name":"Sahara Leggings-29-Gray","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                                    Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                                    \n

                                    • Pinstripe legging with rouched ankles.
                                    • Secret pocket at waistband.
                                    • Flat seams for comfort.
                                    • Shaped fit with low rise.
                                    • 4-way stretch, moisture-wicking material.

                                    ","image":"/w/p/wp05-gray_main.jpg","small_image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","color":"52","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sahara-leggings-29-gray-1850","links":{},"stock":{"item_id":1850,"product_id":1850,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp05-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp05-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp05-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-29-gray-1850.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1844","_score":1,"_source":{"id":1844,"sku":"WP04-29-White","name":"Cora Parachute Pant-29-White","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                                    Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                                    \n

                                    • Light blue parachute pants.
                                    • Power mesh internal waistband for support.
                                    • Internal waistband pocket.
                                    • Antimicrobial finish.

                                    ","image":"/w/p/wp04-white_main.jpg","small_image":"/w/p/wp04-white_main.jpg","thumbnail":"/w/p/wp04-white_main.jpg","color":"59","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"cora-parachute-pant-29-white-1844","links":{},"stock":{"item_id":1844,"product_id":1844,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp04-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-29-white-1844.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1842","_score":1,"_source":{"id":1842,"sku":"WP04-29-Black","name":"Cora Parachute Pant-29-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                                    Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                                    \n

                                    • Light blue parachute pants.
                                    • Power mesh internal waistband for support.
                                    • Internal waistband pocket.
                                    • Antimicrobial finish.

                                    ","image":"/w/p/wp04-black_main.jpg","small_image":"/w/p/wp04-black_main.jpg","thumbnail":"/w/p/wp04-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"cora-parachute-pant-29-black-1842","links":{},"stock":{"item_id":1842,"product_id":1842,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp04-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-29-black-1842.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1834","_score":1,"_source":{"id":1834,"sku":"WP03-28-Purple","name":"Ida Workout Parachute Pant-28-Purple","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                                    The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                                    \n

                                    • Royal blue parachute pants.
                                    • Contrast stripe.
                                    • Relaxed fit.
                                    • Drawstring closure.
                                    • Machine wash/dry.

                                    ","image":"/w/p/wp03-purple_main.jpg","small_image":"/w/p/wp03-purple_main.jpg","thumbnail":"/w/p/wp03-purple_main.jpg","color":"57","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ida-workout-parachute-pant-28-purple-1834","links":{},"stock":{"item_id":1834,"product_id":1834,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp03-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-28-purple-1834.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1836","_score":1,"_source":{"id":1836,"sku":"WP03-29-Blue","name":"Ida Workout Parachute Pant-29-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                                    The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                                    \n

                                    • Royal blue parachute pants.
                                    • Contrast stripe.
                                    • Relaxed fit.
                                    • Drawstring closure.
                                    • Machine wash/dry.

                                    ","image":"/w/p/wp03-blue_main.jpg","small_image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","color":"50","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ida-workout-parachute-pant-29-blue-1836","links":{},"stock":{"item_id":1836,"product_id":1836,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp03-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp03-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp03-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-29-blue-1836.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1848","_score":1,"_source":{"id":1848,"sku":"WP05-28-Red","name":"Sahara Leggings-28-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                                    Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                                    \n

                                    • Pinstripe legging with rouched ankles.
                                    • Secret pocket at waistband.
                                    • Flat seams for comfort.
                                    • Shaped fit with low rise.
                                    • 4-way stretch, moisture-wicking material.

                                    ","image":"/w/p/wp05-red_main.jpg","small_image":"/w/p/wp05-red_main.jpg","thumbnail":"/w/p/wp05-red_main.jpg","color":"58","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sahara-leggings-28-red-1848","links":{},"stock":{"item_id":1848,"product_id":1848,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp05-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-28-red-1848.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1828","_score":1,"_source":{"id":1828,"sku":"WP02-29-Blue","name":"Emma Leggings-29-Blue","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                                    \n

                                    • Light blue heather yoga pants.
                                    • Body hugging fit.
                                    • Low rise fit.

                                    ","image":"/w/p/wp02-blue_main.jpg","small_image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"emma-leggings-29-blue-1828","links":{},"stock":{"item_id":1828,"product_id":1828,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp02-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp02-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-29-blue-1828.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1847","_score":1,"_source":{"id":1847,"sku":"WP05-28-Gray","name":"Sahara Leggings-28-Gray","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                                    Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                                    \n

                                    • Pinstripe legging with rouched ankles.
                                    • Secret pocket at waistband.
                                    • Flat seams for comfort.
                                    • Shaped fit with low rise.
                                    • 4-way stretch, moisture-wicking material.

                                    ","image":"/w/p/wp05-gray_main.jpg","small_image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","color":"52","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sahara-leggings-28-gray-1847","links":{},"stock":{"item_id":1847,"product_id":1847,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp05-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp05-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp05-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-28-gray-1847.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1849","_score":1,"_source":{"id":1849,"sku":"WP05-29-Blue","name":"Sahara Leggings-29-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                                    Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                                    \n

                                    • Pinstripe legging with rouched ankles.
                                    • Secret pocket at waistband.
                                    • Flat seams for comfort.
                                    • Shaped fit with low rise.
                                    • 4-way stretch, moisture-wicking material.

                                    ","image":"/w/p/wp05-blue_main.jpg","small_image":"/w/p/wp05-blue_main.jpg","thumbnail":"/w/p/wp05-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sahara-leggings-29-blue-1849","links":{},"stock":{"item_id":1849,"product_id":1849,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp05-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-29-blue-1849.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1843","_score":1,"_source":{"id":1843,"sku":"WP04-29-Blue","name":"Cora Parachute Pant-29-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                                    Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                                    \n

                                    • Light blue parachute pants.
                                    • Power mesh internal waistband for support.
                                    • Internal waistband pocket.
                                    • Antimicrobial finish.

                                    ","image":"/w/p/wp04-blue_main.jpg","small_image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"cora-parachute-pant-29-blue-1843","links":{},"stock":{"item_id":1843,"product_id":1843,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp04-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp04-blue_alternate.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp04-blue_back.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-29-blue-1843.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1840","_score":1,"_source":{"id":1840,"sku":"WP04-28-Blue","name":"Cora Parachute Pant-28-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                                    Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                                    \n

                                    • Light blue parachute pants.
                                    • Power mesh internal waistband for support.
                                    • Internal waistband pocket.
                                    • Antimicrobial finish.

                                    ","image":"/w/p/wp04-blue_main.jpg","small_image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"cora-parachute-pant-28-blue-1840","links":{},"stock":{"item_id":1840,"product_id":1840,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp04-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp04-blue_alternate.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp04-blue_back.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-28-blue-1840.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1846","_score":1,"_source":{"id":1846,"sku":"WP05-28-Blue","name":"Sahara Leggings-28-Blue","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                                    Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                                    \n

                                    • Pinstripe legging with rouched ankles.
                                    • Secret pocket at waistband.
                                    • Flat seams for comfort.
                                    • Shaped fit with low rise.
                                    • 4-way stretch, moisture-wicking material.

                                    ","image":"/w/p/wp05-blue_main.jpg","small_image":"/w/p/wp05-blue_main.jpg","thumbnail":"/w/p/wp05-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sahara-leggings-28-blue-1846","links":{},"stock":{"item_id":1846,"product_id":1846,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp05-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-28-blue-1846.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1829","_score":1,"_source":{"id":1829,"sku":"WP02-29-Purple","name":"Emma Leggings-29-Purple","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                                    \n

                                    • Light blue heather yoga pants.
                                    • Body hugging fit.
                                    • Low rise fit.

                                    ","image":"/w/p/wp02-purple_main.jpg","small_image":"/w/p/wp02-purple_main.jpg","thumbnail":"/w/p/wp02-purple_main.jpg","color":"57","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"emma-leggings-29-purple-1829","links":{},"stock":{"item_id":1829,"product_id":1829,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp02-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-29-purple-1829.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1830","_score":1,"_source":{"id":1830,"sku":"WP02-29-Red","name":"Emma Leggings-29-Red","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                                    \n

                                    • Light blue heather yoga pants.
                                    • Body hugging fit.
                                    • Low rise fit.

                                    ","image":"/w/p/wp02-red_main.jpg","small_image":"/w/p/wp02-red_main.jpg","thumbnail":"/w/p/wp02-red_main.jpg","color":"58","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"emma-leggings-29-red-1830","links":{},"stock":{"item_id":1830,"product_id":1830,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-29-red-1830.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1801","_score":1,"_source":{"id":1801,"sku":"WT08","name":"Antonia Racer Tank","attribute_set_id":9,"price":34,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                                    \n

                                    • Machine wash.
                                    • Line dry.

                                    ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"antonia-racer-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[152,37,38],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[205,209],"slug":"antonia-racer-tank-1801","links":{},"stock":{"item_id":1801,"product_id":1801,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","small_image":"/w/t/wt08-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"antonia-racer-tank-xs-black","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":34,"name":"Antonia Racer Tank-XS-Black","id":1786,"category_ids":["26","30","35","2"],"sku":"WT08-XS-Black","status":1},{"image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","small_image":"/w/t/wt08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"antonia-racer-tank-xs-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":34,"name":"Antonia Racer Tank-XS-Purple","id":1787,"category_ids":["26","30","35","2"],"sku":"WT08-XS-Purple","status":1},{"image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","small_image":"/w/t/wt08-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"antonia-racer-tank-xs-yellow","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":34,"name":"Antonia Racer Tank-XS-Yellow","id":1788,"category_ids":["26","30","35","2"],"sku":"WT08-XS-Yellow","status":1},{"image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","small_image":"/w/t/wt08-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"antonia-racer-tank-s-black","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":34,"name":"Antonia Racer Tank-S-Black","id":1789,"category_ids":["26","30","35","2"],"sku":"WT08-S-Black","status":1},{"image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","small_image":"/w/t/wt08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"antonia-racer-tank-s-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":34,"name":"Antonia Racer Tank-S-Purple","id":1790,"category_ids":["26","30","35","2"],"sku":"WT08-S-Purple","status":1},{"image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","small_image":"/w/t/wt08-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"antonia-racer-tank-s-yellow","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":34,"name":"Antonia Racer Tank-S-Yellow","id":1791,"category_ids":["26","30","35","2"],"sku":"WT08-S-Yellow","status":1},{"image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","small_image":"/w/t/wt08-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"antonia-racer-tank-m-black","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":34,"name":"Antonia Racer Tank-M-Black","id":1792,"category_ids":["26","30","35","2"],"sku":"WT08-M-Black","status":1},{"image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","small_image":"/w/t/wt08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"antonia-racer-tank-m-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":34,"name":"Antonia Racer Tank-M-Purple","id":1793,"category_ids":["26","30","35","2"],"sku":"WT08-M-Purple","status":1},{"image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","small_image":"/w/t/wt08-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"antonia-racer-tank-m-yellow","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":34,"name":"Antonia Racer Tank-M-Yellow","id":1794,"category_ids":["26","30","35","2"],"sku":"WT08-M-Yellow","status":1},{"image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","small_image":"/w/t/wt08-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"antonia-racer-tank-l-black","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":34,"name":"Antonia Racer Tank-L-Black","id":1795,"category_ids":["26","30","35","2"],"sku":"WT08-L-Black","status":1},{"image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","small_image":"/w/t/wt08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"antonia-racer-tank-l-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":34,"name":"Antonia Racer Tank-L-Purple","id":1796,"category_ids":["26","30","35","2"],"sku":"WT08-L-Purple","status":1},{"image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","small_image":"/w/t/wt08-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"antonia-racer-tank-l-yellow","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":34,"name":"Antonia Racer Tank-L-Yellow","id":1797,"category_ids":["26","30","35","2"],"sku":"WT08-L-Yellow","status":1},{"image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","small_image":"/w/t/wt08-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"antonia-racer-tank-xl-black","required_options":"0","msrp_display_actual_price_type":"0","size":"171","price":34,"name":"Antonia Racer Tank-XL-Black","id":1798,"category_ids":["26","30","35","2"],"sku":"WT08-XL-Black","status":1},{"image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","small_image":"/w/t/wt08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"antonia-racer-tank-xl-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"171","price":34,"name":"Antonia Racer Tank-XL-Purple","id":1799,"category_ids":["26","30","35","2"],"sku":"WT08-XL-Purple","status":1},{"image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","small_image":"/w/t/wt08-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"antonia-racer-tank-xl-yellow","required_options":"0","msrp_display_actual_price_type":"0","size":"171","price":34,"name":"Antonia Racer Tank-XL-Yellow","id":1800,"category_ids":["26","30","35","2"],"sku":"WT08-XL-Yellow","status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":57,"label":"Purple"},{"value_index":60,"label":"Yellow"}],"product_id":1801,"id":243,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1801,"id":242,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,57,60],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-1801.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1845","_score":1,"_source":{"id":1845,"sku":"WP04","name":"Cora Parachute Pant","attribute_set_id":10,"price":75,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                                    Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                                    \n

                                    • Light blue parachute pants.
                                    • Power mesh internal waistband for support.
                                    • Internal waistband pocket.
                                    • Antimicrobial finish.

                                    ","image":"/w/p/wp04-blue_main.jpg","small_image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"cora-parachute-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,37,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[110,115],"pattern":"197","climate":[205,212,206,208,209],"slug":"cora-parachute-pant-1845","links":{},"stock":{"item_id":1845,"product_id":1845,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp04-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp04-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp04-blue_alternate.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp04-blue_back.jpg","pos":4,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/p/wp04-black_main.jpg","thumbnail":"/w/p/wp04-black_main.jpg","color":"49","small_image":"/w/p/wp04-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cora-parachute-pant-28-black","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"172","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Cora Parachute Pant-28-Black","id":1839,"category_ids":["27","32","2"],"sku":"WP04-28-Black","max_regular_price":75,"status":1},{"image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","color":"50","small_image":"/w/p/wp04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cora-parachute-pant-28-blue","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"172","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Cora Parachute Pant-28-Blue","id":1840,"category_ids":["27","32","2"],"sku":"WP04-28-Blue","max_regular_price":75,"status":1},{"image":"/w/p/wp04-white_main.jpg","thumbnail":"/w/p/wp04-white_main.jpg","color":"59","small_image":"/w/p/wp04-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cora-parachute-pant-28-white","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"172","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Cora Parachute Pant-28-White","id":1841,"category_ids":["27","32","2"],"sku":"WP04-28-White","max_regular_price":75,"status":1},{"image":"/w/p/wp04-black_main.jpg","thumbnail":"/w/p/wp04-black_main.jpg","color":"49","small_image":"/w/p/wp04-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cora-parachute-pant-29-black","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"173","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Cora Parachute Pant-29-Black","id":1842,"category_ids":["27","32","2"],"sku":"WP04-29-Black","max_regular_price":75,"status":1},{"image":"/w/p/wp04-blue_main.jpg","thumbnail":"/w/p/wp04-blue_main.jpg","color":"50","small_image":"/w/p/wp04-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cora-parachute-pant-29-blue","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"173","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Cora Parachute Pant-29-Blue","id":1843,"category_ids":["27","32","2"],"sku":"WP04-29-Blue","max_regular_price":75,"status":1},{"image":"/w/p/wp04-white_main.jpg","thumbnail":"/w/p/wp04-white_main.jpg","color":"59","small_image":"/w/p/wp04-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"cora-parachute-pant-29-white","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"173","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Cora Parachute Pant-29-White","id":1844,"category_ids":["27","32","2"],"sku":"WP04-29-White","max_regular_price":75,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":59,"label":"White"}],"product_id":1845,"id":253,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1845,"id":252,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,59],"size_options":[172,173],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-1845.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1838","_score":1,"_source":{"id":1838,"sku":"WP03","name":"Ida Workout Parachute Pant","attribute_set_id":10,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                                    The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                                    \n

                                    • Royal blue parachute pants.
                                    • Contrast stripe.
                                    • Relaxed fit.
                                    • Drawstring closure.
                                    • Machine wash/dry.

                                    ","image":"/w/p/wp03-blue_main.jpg","small_image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ida-workout-parachute-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,37,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[110,115],"pattern":"195","climate":[205,212,206,208,209],"slug":"ida-workout-parachute-pant-1838","links":{},"stock":{"item_id":1838,"product_id":1838,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp03-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp03-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp03-blue_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/p/wp03-black_main.jpg","thumbnail":"/w/p/wp03-black_main.jpg","color":"49","small_image":"/w/p/wp03-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ida-workout-parachute-pant-28-black","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"172","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Ida Workout Parachute Pant-28-Black","id":1832,"category_ids":["27","32","8","2"],"sku":"WP03-28-Black","max_regular_price":48,"status":1},{"image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","color":"50","small_image":"/w/p/wp03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ida-workout-parachute-pant-28-blue","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"172","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Ida Workout Parachute Pant-28-Blue","id":1833,"category_ids":["27","32","8","2"],"sku":"WP03-28-Blue","max_regular_price":48,"status":1},{"image":"/w/p/wp03-purple_main.jpg","thumbnail":"/w/p/wp03-purple_main.jpg","color":"57","small_image":"/w/p/wp03-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ida-workout-parachute-pant-28-purple","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"172","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Ida Workout Parachute Pant-28-Purple","id":1834,"category_ids":["27","32","8","2"],"sku":"WP03-28-Purple","max_regular_price":48,"status":1},{"image":"/w/p/wp03-black_main.jpg","thumbnail":"/w/p/wp03-black_main.jpg","color":"49","small_image":"/w/p/wp03-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ida-workout-parachute-pant-29-black","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"173","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Ida Workout Parachute Pant-29-Black","id":1835,"category_ids":["27","32","8","2"],"sku":"WP03-29-Black","max_regular_price":48,"status":1},{"image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","color":"50","small_image":"/w/p/wp03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ida-workout-parachute-pant-29-blue","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"173","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Ida Workout Parachute Pant-29-Blue","id":1836,"category_ids":["27","32","8","2"],"sku":"WP03-29-Blue","max_regular_price":48,"status":1},{"image":"/w/p/wp03-purple_main.jpg","thumbnail":"/w/p/wp03-purple_main.jpg","color":"57","small_image":"/w/p/wp03-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ida-workout-parachute-pant-29-purple","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"173","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Ida Workout Parachute Pant-29-Purple","id":1837,"category_ids":["27","32","8","2"],"sku":"WP03-29-Purple","max_regular_price":48,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":1838,"id":251,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1838,"id":250,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[172,173],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-1838.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1753","_score":1,"_source":{"id":1753,"sku":"WT05","name":"Leah Yoga Top","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                                    The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                                    \n

                                    • Blue heather rouched tank top.
                                    • Camisole tank top.
                                    • Banding and shirring details.
                                    • Body hugging fit.
                                    • Contrast topstitch.
                                    • Interior shelf bra with shapewear technology.
                                    • 65% Polyester 35% Cotton.

                                    ","image":"/w/t/wt05-purple_main.jpg","small_image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"leah-yoga-top","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_general":[135,142],"pattern":"197","climate":[205,209],"slug":"leah-yoga-top-1753","links":{},"stock":{"item_id":1753,"product_id":1753,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt05-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt05-purple_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt05-purple_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","small_image":"/w/t/wt05-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"leah-yoga-top-xs-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":39,"name":"Leah Yoga Top-XS-Orange","id":1738,"category_ids":["26","34","2"],"sku":"WT05-XS-Orange","status":1},{"image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","small_image":"/w/t/wt05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"leah-yoga-top-xs-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":39,"name":"Leah Yoga Top-XS-Purple","id":1739,"category_ids":["26","34","2"],"sku":"WT05-XS-Purple","status":1},{"image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","small_image":"/w/t/wt05-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"leah-yoga-top-xs-white","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":39,"name":"Leah Yoga Top-XS-White","id":1740,"category_ids":["26","34","2"],"sku":"WT05-XS-White","status":1},{"image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","small_image":"/w/t/wt05-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"leah-yoga-top-s-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":39,"name":"Leah Yoga Top-S-Orange","id":1741,"category_ids":["26","34","2"],"sku":"WT05-S-Orange","status":1},{"image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","small_image":"/w/t/wt05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"leah-yoga-top-s-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":39,"name":"Leah Yoga Top-S-Purple","id":1742,"category_ids":["26","34","2"],"sku":"WT05-S-Purple","status":1},{"image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","small_image":"/w/t/wt05-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"leah-yoga-top-s-white","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":39,"name":"Leah Yoga Top-S-White","id":1743,"category_ids":["26","34","2"],"sku":"WT05-S-White","status":1},{"image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","small_image":"/w/t/wt05-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"leah-yoga-top-m-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":39,"name":"Leah Yoga Top-M-Orange","id":1744,"category_ids":["26","34","2"],"sku":"WT05-M-Orange","status":1},{"image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","small_image":"/w/t/wt05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"leah-yoga-top-m-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":39,"name":"Leah Yoga Top-M-Purple","id":1745,"category_ids":["26","34","2"],"sku":"WT05-M-Purple","status":1},{"image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","small_image":"/w/t/wt05-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"leah-yoga-top-m-white","required_options":"0","msrp_display_actual_price_type":"0","size":"169","price":39,"name":"Leah Yoga Top-M-White","id":1746,"category_ids":["26","34","2"],"sku":"WT05-M-White","status":1},{"image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","small_image":"/w/t/wt05-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"leah-yoga-top-l-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":39,"name":"Leah Yoga Top-L-Orange","id":1747,"category_ids":["26","34","2"],"sku":"WT05-L-Orange","status":1},{"image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","small_image":"/w/t/wt05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"leah-yoga-top-l-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":39,"name":"Leah Yoga Top-L-Purple","id":1748,"category_ids":["26","34","2"],"sku":"WT05-L-Purple","status":1},{"image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","small_image":"/w/t/wt05-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"leah-yoga-top-l-white","required_options":"0","msrp_display_actual_price_type":"0","size":"170","price":39,"name":"Leah Yoga Top-L-White","id":1749,"category_ids":["26","34","2"],"sku":"WT05-L-White","status":1},{"image":"/w/t/wt05-orange_main.jpg","thumbnail":"/w/t/wt05-orange_main.jpg","color":"56","small_image":"/w/t/wt05-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"leah-yoga-top-xl-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"171","price":39,"name":"Leah Yoga Top-XL-Orange","id":1750,"category_ids":["26","34","2"],"sku":"WT05-XL-Orange","status":1},{"image":"/w/t/wt05-purple_main.jpg","thumbnail":"/w/t/wt05-purple_main.jpg","color":"57","small_image":"/w/t/wt05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"leah-yoga-top-xl-purple","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Leah Yoga Top-XL-Purple","id":1751,"category_ids":["26","34","2"],"sku":"WT05-XL-Purple","max_regular_price":39,"status":1},{"image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","small_image":"/w/t/wt05-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"leah-yoga-top-xl-white","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Leah Yoga Top-XL-White","id":1752,"category_ids":["26","34","2"],"sku":"WT05-XL-White","max_regular_price":39,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"}],"product_id":1753,"id":237,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1753,"id":236,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[56,57,59],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-1753.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1769","_score":1,"_source":{"id":1769,"sku":"WT06","name":"Chloe Compete Tank","attribute_set_id":9,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:24","updated_at":"2018-08-22 10:34:49","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                                    You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                                    \r\n

                                    • Royal blue tank top - nylon/spandex.
                                    • Flatlock stitching.
                                    • Moisture-wicking fabric.
                                    • Ergonomic seaming.
                                    • Machine wash/dry.

                                    ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","category_ids":["26"],"options_container":"container2","required_options":"1","has_options":"1","url_key":"chloe-compete-tank","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","material":[36,37,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"chloe-compete-tank-1769","links":{},"stock":{"item_id":1769,"product_id":1769,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":null},{"vid":null,"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":null}],"configurable_children":[{"image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","small_image":"/w/t/wt06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[{"qty":1,"extension_attributes":{"website_id":0},"customer_group_id":1,"value":30}],"url_key":"chloe-compete-tank-xs-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"167","price":39,"name":"Chloe Compete Tank-XS-Blue - tier price","id":1754,"category_ids":["26"],"sku":"WT06-XS-Blue","status":1},{"image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","small_image":"/w/t/wt06-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chloe-compete-tank-xs-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"167","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Chloe Compete Tank-XS-Red","id":1755,"category_ids":["26"],"sku":"WT06-XS-Red","max_regular_price":39,"status":1},{"image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","small_image":"/w/t/wt06-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chloe-compete-tank-xs-yellow","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"167","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Chloe Compete Tank-XS-Yellow","id":1756,"category_ids":["26"],"sku":"WT06-XS-Yellow","max_regular_price":39,"status":1},{"image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","small_image":"/w/t/wt06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chloe-compete-tank-s-blue","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Chloe Compete Tank-S-Blue","id":1757,"category_ids":["26"],"sku":"WT06-S-Blue","max_regular_price":39,"status":1},{"image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","small_image":"/w/t/wt06-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chloe-compete-tank-s-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Chloe Compete Tank-S-Red","id":1758,"category_ids":["26"],"sku":"WT06-S-Red","max_regular_price":39,"status":1},{"image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","small_image":"/w/t/wt06-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chloe-compete-tank-s-yellow","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"168","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Chloe Compete Tank-S-Yellow","id":1759,"category_ids":["26"],"sku":"WT06-S-Yellow","max_regular_price":39,"status":1},{"image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","small_image":"/w/t/wt06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chloe-compete-tank-m-blue","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Chloe Compete Tank-M-Blue","id":1760,"category_ids":["26"],"sku":"WT06-M-Blue","max_regular_price":39,"status":1},{"image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","small_image":"/w/t/wt06-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chloe-compete-tank-m-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Chloe Compete Tank-M-Red","id":1761,"category_ids":["26"],"sku":"WT06-M-Red","max_regular_price":39,"status":1},{"image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","small_image":"/w/t/wt06-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chloe-compete-tank-m-yellow","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"169","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Chloe Compete Tank-M-Yellow","id":1762,"category_ids":["26"],"sku":"WT06-M-Yellow","max_regular_price":39,"status":1},{"image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","small_image":"/w/t/wt06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chloe-compete-tank-l-blue","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Chloe Compete Tank-L-Blue","id":1763,"category_ids":["26"],"sku":"WT06-L-Blue","max_regular_price":39,"status":1},{"image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","small_image":"/w/t/wt06-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chloe-compete-tank-l-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Chloe Compete Tank-L-Red","id":1764,"category_ids":["26"],"sku":"WT06-L-Red","max_regular_price":39,"status":1},{"image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","small_image":"/w/t/wt06-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chloe-compete-tank-l-yellow","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"170","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Chloe Compete Tank-L-Yellow","id":1765,"category_ids":["26"],"sku":"WT06-L-Yellow","max_regular_price":39,"status":1},{"image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","small_image":"/w/t/wt06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chloe-compete-tank-xl-blue","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Chloe Compete Tank-XL-Blue","id":1766,"category_ids":["26"],"sku":"WT06-XL-Blue","max_regular_price":39,"status":1},{"image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","small_image":"/w/t/wt06-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chloe-compete-tank-xl-red","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Chloe Compete Tank-XL-Red","id":1767,"category_ids":["26"],"sku":"WT06-XL-Red","max_regular_price":39,"status":1},{"image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","small_image":"/w/t/wt06-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"chloe-compete-tank-xl-yellow","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"171","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Chloe Compete Tank-XL-Yellow","id":1768,"category_ids":["26"],"sku":"WT06-XL-Yellow","max_regular_price":39,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":58,"label":"Red"},{"value_index":60,"label":"Yellow"}],"product_id":1769,"id":300,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1769,"id":301,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,58,60],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-1769.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1785","_score":1,"_source":{"id":1785,"sku":"WT07","name":"Maya Tunic","attribute_set_id":9,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                                    \n

                                    • Mint green heather tunic-style tank.
                                    • Wrapped back with cut out detail.
                                    • Drawcord detail at end.
                                    • Abutted seams.

                                    ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"maya-tunic","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_general":"135","pattern":"197","climate":[205,209],"slug":"maya-tunic-1785","links":{},"stock":{"item_id":1785,"product_id":1785,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","small_image":"/w/t/wt07-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maya-tunic-xs-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"167","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Maya Tunic-XS-Green","id":1770,"category_ids":["26","35","2"],"sku":"WT07-XS-Green","max_regular_price":29,"status":1},{"image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","small_image":"/w/t/wt07-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maya-tunic-xs-white","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"167","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Maya Tunic-XS-White","id":1771,"category_ids":["26","35","2"],"sku":"WT07-XS-White","max_regular_price":29,"status":1},{"image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","small_image":"/w/t/wt07-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maya-tunic-xs-yellow","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"167","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Maya Tunic-XS-Yellow","id":1772,"category_ids":["26","35","2"],"sku":"WT07-XS-Yellow","max_regular_price":29,"status":1},{"image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","small_image":"/w/t/wt07-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maya-tunic-s-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"168","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Maya Tunic-S-Green","id":1773,"category_ids":["26","35","2"],"sku":"WT07-S-Green","max_regular_price":29,"status":1},{"image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","small_image":"/w/t/wt07-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maya-tunic-s-white","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"168","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Maya Tunic-S-White","id":1774,"category_ids":["26","35","2"],"sku":"WT07-S-White","max_regular_price":29,"status":1},{"image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","small_image":"/w/t/wt07-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maya-tunic-s-yellow","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"168","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Maya Tunic-S-Yellow","id":1775,"category_ids":["26","35","2"],"sku":"WT07-S-Yellow","max_regular_price":29,"status":1},{"image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","small_image":"/w/t/wt07-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maya-tunic-m-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Maya Tunic-M-Green","id":1776,"category_ids":["26","35","2"],"sku":"WT07-M-Green","max_regular_price":29,"status":1},{"image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","small_image":"/w/t/wt07-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maya-tunic-m-white","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Maya Tunic-M-White","id":1777,"category_ids":["26","35","2"],"sku":"WT07-M-White","max_regular_price":29,"status":1},{"image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","small_image":"/w/t/wt07-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maya-tunic-m-yellow","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"169","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Maya Tunic-M-Yellow","id":1778,"category_ids":["26","35","2"],"sku":"WT07-M-Yellow","max_regular_price":29,"status":1},{"image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","small_image":"/w/t/wt07-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maya-tunic-l-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Maya Tunic-L-Green","id":1779,"category_ids":["26","35","2"],"sku":"WT07-L-Green","max_regular_price":29,"status":1},{"image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","small_image":"/w/t/wt07-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maya-tunic-l-white","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Maya Tunic-L-White","id":1780,"category_ids":["26","35","2"],"sku":"WT07-L-White","max_regular_price":29,"status":1},{"image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","small_image":"/w/t/wt07-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maya-tunic-l-yellow","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"170","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Maya Tunic-L-Yellow","id":1781,"category_ids":["26","35","2"],"sku":"WT07-L-Yellow","max_regular_price":29,"status":1},{"image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","small_image":"/w/t/wt07-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maya-tunic-xl-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Maya Tunic-XL-Green","id":1782,"category_ids":["26","35","2"],"sku":"WT07-XL-Green","max_regular_price":29,"status":1},{"image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","small_image":"/w/t/wt07-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maya-tunic-xl-white","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Maya Tunic-XL-White","id":1783,"category_ids":["26","35","2"],"sku":"WT07-XL-White","max_regular_price":29,"status":1},{"image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","small_image":"/w/t/wt07-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maya-tunic-xl-yellow","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"171","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Maya Tunic-XL-Yellow","id":1784,"category_ids":["26","35","2"],"sku":"WT07-XL-Yellow","max_regular_price":29,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":53,"label":"Green"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":1785,"id":241,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1785,"id":240,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[53,59,60],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-1785.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1824","_score":1,"_source":{"id":1824,"sku":"WP01","name":"Karmen Yoga Pant","attribute_set_id":10,"price":39,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                                    Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                                    \n

                                    • Light blue parachute pants.
                                    • Power mesh internal waistband for support.
                                    • Internal waistband pocket.
                                    • Antimicrobial finish.

                                    ","image":"/w/p/wp01-gray_main.jpg","small_image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"karmen-yoga-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,154],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"113","pattern":"197","climate":[205,206],"slug":"karmen-yoga-pant-1824","links":{},"stock":{"item_id":1824,"product_id":1824,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp01-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp01-gray_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/p/wp01-black_main.jpg","thumbnail":"/w/p/wp01-black_main.jpg","color":"49","small_image":"/w/p/wp01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"karmen-yoga-pant-28-black","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"172","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Karmen Yoga Pant-28-Black","id":1818,"category_ids":["27","32","35","2"],"sku":"WP01-28-Black","max_regular_price":39,"status":1},{"image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","color":"52","small_image":"/w/p/wp01-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"karmen-yoga-pant-28-gray","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"172","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Karmen Yoga Pant-28-Gray","id":1819,"category_ids":["27","32","35","2"],"sku":"WP01-28-Gray","max_regular_price":39,"status":1},{"image":"/w/p/wp01-white_main.jpg","thumbnail":"/w/p/wp01-white_main.jpg","color":"59","small_image":"/w/p/wp01-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"karmen-yoga-pant-28-white","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"172","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Karmen Yoga Pant-28-White","id":1820,"category_ids":["27","32","35","2"],"sku":"WP01-28-White","max_regular_price":39,"status":1},{"image":"/w/p/wp01-black_main.jpg","thumbnail":"/w/p/wp01-black_main.jpg","color":"49","small_image":"/w/p/wp01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"karmen-yoga-pant-29-black","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"173","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Karmen Yoga Pant-29-Black","id":1821,"category_ids":["27","32","35","2"],"sku":"WP01-29-Black","max_regular_price":39,"status":1},{"image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","color":"52","small_image":"/w/p/wp01-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"karmen-yoga-pant-29-gray","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"173","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Karmen Yoga Pant-29-Gray","id":1822,"category_ids":["27","32","35","2"],"sku":"WP01-29-Gray","max_regular_price":39,"status":1},{"image":"/w/p/wp01-white_main.jpg","thumbnail":"/w/p/wp01-white_main.jpg","color":"59","small_image":"/w/p/wp01-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"karmen-yoga-pant-29-white","regular_price":39,"required_options":"0","msrp_display_actual_price_type":"0","max_price":39,"minimal_regular_price":39,"size":"173","final_price":39,"special_price":null,"price":39,"minimal_price":39,"name":"Karmen Yoga Pant-29-White","id":1823,"category_ids":["27","32","35","2"],"sku":"WP01-29-White","max_regular_price":39,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":59,"label":"White"}],"product_id":1824,"id":247,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1824,"id":246,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,52,59],"size_options":[172,173],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-1824.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1831","_score":1,"_source":{"id":1831,"sku":"WP02","name":"Emma Leggings","attribute_set_id":10,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                                    \n

                                    • Light blue heather yoga pants.
                                    • Body hugging fit.
                                    • Low rise fit.

                                    ","image":"/w/p/wp02-blue_main.jpg","small_image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"emma-leggings","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"113","pattern":"197","climate":[204,205,206,208],"slug":"emma-leggings-1831","links":{},"stock":{"item_id":1831,"product_id":1831,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp02-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp02-blue_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","color":"50","small_image":"/w/p/wp02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"emma-leggings-28-blue","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"172","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Emma Leggings-28-Blue","id":1825,"category_ids":["27","32","35","2"],"sku":"WP02-28-Blue","max_regular_price":42,"status":1},{"image":"/w/p/wp02-purple_main.jpg","thumbnail":"/w/p/wp02-purple_main.jpg","color":"57","small_image":"/w/p/wp02-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"emma-leggings-28-purple","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"172","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Emma Leggings-28-Purple","id":1826,"category_ids":["27","32","35","2"],"sku":"WP02-28-Purple","max_regular_price":42,"status":1},{"image":"/w/p/wp02-red_main.jpg","thumbnail":"/w/p/wp02-red_main.jpg","color":"58","small_image":"/w/p/wp02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"emma-leggings-28-red","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"172","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Emma Leggings-28-Red","id":1827,"category_ids":["27","32","35","2"],"sku":"WP02-28-Red","max_regular_price":42,"status":1},{"image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","color":"50","small_image":"/w/p/wp02-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"emma-leggings-29-blue","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"173","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Emma Leggings-29-Blue","id":1828,"category_ids":["27","32","35","2"],"sku":"WP02-29-Blue","max_regular_price":42,"status":1},{"image":"/w/p/wp02-purple_main.jpg","thumbnail":"/w/p/wp02-purple_main.jpg","color":"57","small_image":"/w/p/wp02-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"emma-leggings-29-purple","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"173","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Emma Leggings-29-Purple","id":1829,"category_ids":["27","32","35","2"],"sku":"WP02-29-Purple","max_regular_price":42,"status":1},{"image":"/w/p/wp02-red_main.jpg","thumbnail":"/w/p/wp02-red_main.jpg","color":"58","small_image":"/w/p/wp02-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"emma-leggings-29-red","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"173","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Emma Leggings-29-Red","id":1830,"category_ids":["27","32","35","2"],"sku":"WP02-29-Red","max_regular_price":42,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":1831,"id":249,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1831,"id":248,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,57,58],"size_options":[172,173],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-1831.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1817","_score":1,"_source":{"id":1817,"sku":"WT09","name":"Breathe-Easy Tank","attribute_set_id":9,"price":34,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                                    \n

                                    • Machine wash/dry.
                                    • Cocona® fabric.

                                    ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"breathe-easy-tank","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,33],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"1","style_general":"135","pattern":"197","climate":[205,209],"slug":"breathe-easy-tank-1817","links":{},"stock":{"item_id":1817,"product_id":1817,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","small_image":"/w/t/wt09-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"breathe-easy-tank-xs-purple","regular_price":34,"required_options":"0","msrp_display_actual_price_type":"0","max_price":34,"minimal_regular_price":34,"size":"167","final_price":34,"special_price":null,"price":34,"minimal_price":34,"name":"Breathe-Easy Tank-XS-Purple","id":1802,"category_ids":["26","30","34","2"],"sku":"WT09-XS-Purple","max_regular_price":34,"status":1},{"image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","small_image":"/w/t/wt09-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"breathe-easy-tank-xs-white","regular_price":34,"required_options":"0","msrp_display_actual_price_type":"0","max_price":34,"minimal_regular_price":34,"size":"167","final_price":34,"special_price":null,"price":34,"minimal_price":34,"name":"Breathe-Easy Tank-XS-White","id":1803,"category_ids":["26","30","34","2"],"sku":"WT09-XS-White","max_regular_price":34,"status":1},{"image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","small_image":"/w/t/wt09-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"breathe-easy-tank-xs-yellow","regular_price":34,"required_options":"0","msrp_display_actual_price_type":"0","max_price":34,"minimal_regular_price":34,"size":"167","final_price":34,"special_price":null,"price":34,"minimal_price":34,"name":"Breathe-Easy Tank-XS-Yellow","id":1804,"category_ids":["26","30","34","2"],"sku":"WT09-XS-Yellow","max_regular_price":34,"status":1},{"image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","small_image":"/w/t/wt09-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"breathe-easy-tank-s-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"168","price":34,"name":"Breathe-Easy Tank-S-Purple","id":1805,"category_ids":["26","30","34","2"],"sku":"WT09-S-Purple","status":1},{"image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","small_image":"/w/t/wt09-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"breathe-easy-tank-s-white","regular_price":34,"required_options":"0","msrp_display_actual_price_type":"0","max_price":34,"minimal_regular_price":34,"size":"168","final_price":34,"special_price":null,"price":34,"minimal_price":34,"name":"Breathe-Easy Tank-S-White","id":1806,"category_ids":["26","30","34","2"],"sku":"WT09-S-White","max_regular_price":34,"status":1},{"image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","small_image":"/w/t/wt09-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"breathe-easy-tank-s-yellow","regular_price":34,"required_options":"0","msrp_display_actual_price_type":"0","max_price":34,"minimal_regular_price":34,"size":"168","final_price":34,"special_price":null,"price":34,"minimal_price":34,"name":"Breathe-Easy Tank-S-Yellow","id":1807,"category_ids":["26","30","34","2"],"sku":"WT09-S-Yellow","max_regular_price":34,"status":1},{"image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","small_image":"/w/t/wt09-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"breathe-easy-tank-m-purple","regular_price":34,"required_options":"0","msrp_display_actual_price_type":"0","max_price":34,"minimal_regular_price":34,"size":"169","final_price":34,"special_price":null,"price":34,"minimal_price":34,"name":"Breathe-Easy Tank-M-Purple","id":1808,"category_ids":["26","30","34","2"],"sku":"WT09-M-Purple","max_regular_price":34,"status":1},{"image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","small_image":"/w/t/wt09-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"breathe-easy-tank-m-white","regular_price":34,"required_options":"0","msrp_display_actual_price_type":"0","max_price":34,"minimal_regular_price":34,"size":"169","final_price":34,"special_price":null,"price":34,"minimal_price":34,"name":"Breathe-Easy Tank-M-White","id":1809,"category_ids":["26","30","34","2"],"sku":"WT09-M-White","max_regular_price":34,"status":1},{"image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","small_image":"/w/t/wt09-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"breathe-easy-tank-m-yellow","regular_price":34,"required_options":"0","msrp_display_actual_price_type":"0","max_price":34,"minimal_regular_price":34,"size":"169","final_price":34,"special_price":null,"price":34,"minimal_price":34,"name":"Breathe-Easy Tank-M-Yellow","id":1810,"category_ids":["26","30","34","2"],"sku":"WT09-M-Yellow","max_regular_price":34,"status":1},{"image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","small_image":"/w/t/wt09-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"breathe-easy-tank-l-purple","regular_price":34,"required_options":"0","msrp_display_actual_price_type":"0","max_price":34,"minimal_regular_price":34,"size":"170","final_price":34,"special_price":null,"price":34,"minimal_price":34,"name":"Breathe-Easy Tank-L-Purple","id":1811,"category_ids":["26","30","34","2"],"sku":"WT09-L-Purple","max_regular_price":34,"status":1},{"image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","small_image":"/w/t/wt09-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"breathe-easy-tank-l-white","regular_price":34,"required_options":"0","msrp_display_actual_price_type":"0","max_price":34,"minimal_regular_price":34,"size":"170","final_price":34,"special_price":null,"price":34,"minimal_price":34,"name":"Breathe-Easy Tank-L-White","id":1812,"category_ids":["26","30","34","2"],"sku":"WT09-L-White","max_regular_price":34,"status":1},{"image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","small_image":"/w/t/wt09-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"breathe-easy-tank-l-yellow","regular_price":34,"required_options":"0","msrp_display_actual_price_type":"0","max_price":34,"minimal_regular_price":34,"size":"170","final_price":34,"special_price":null,"price":34,"minimal_price":34,"name":"Breathe-Easy Tank-L-Yellow","id":1813,"category_ids":["26","30","34","2"],"sku":"WT09-L-Yellow","max_regular_price":34,"status":1},{"image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","small_image":"/w/t/wt09-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"breathe-easy-tank-xl-purple","regular_price":34,"required_options":"0","msrp_display_actual_price_type":"0","max_price":34,"minimal_regular_price":34,"size":"171","final_price":34,"special_price":null,"price":34,"minimal_price":34,"name":"Breathe-Easy Tank-XL-Purple","id":1814,"category_ids":["26","30","34","2"],"sku":"WT09-XL-Purple","max_regular_price":34,"status":1},{"image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","small_image":"/w/t/wt09-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"breathe-easy-tank-xl-white","regular_price":34,"required_options":"0","msrp_display_actual_price_type":"0","max_price":34,"minimal_regular_price":34,"size":"171","final_price":34,"special_price":null,"price":34,"minimal_price":34,"name":"Breathe-Easy Tank-XL-White","id":1815,"category_ids":["26","30","34","2"],"sku":"WT09-XL-White","max_regular_price":34,"status":1},{"image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","small_image":"/w/t/wt09-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"breathe-easy-tank-xl-yellow","regular_price":34,"required_options":"0","msrp_display_actual_price_type":"0","max_price":34,"minimal_regular_price":34,"size":"171","final_price":34,"special_price":null,"price":34,"minimal_price":34,"name":"Breathe-Easy Tank-XL-Yellow","id":1816,"category_ids":["26","30","34","2"],"sku":"WT09-XL-Yellow","max_regular_price":34,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":57,"label":"Purple"},{"value_index":59,"label":"White"},{"value_index":60,"label":"Yellow"}],"product_id":1817,"id":245,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":167,"label":"XS"},{"value_index":168,"label":"S"},{"value_index":169,"label":"M"},{"value_index":170,"label":"L"},{"value_index":171,"label":"XL"}],"product_id":1817,"id":244,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[57,59,60],"size_options":[167,168,169,170,171],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-1817.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1807","_score":1,"_source":{"id":1807,"sku":"WT09-S-Yellow","name":"Breathe-Easy Tank-S-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                                    \n

                                    • Machine wash/dry.
                                    • Cocona® fabric.

                                    ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"breathe-easy-tank-s-yellow-1807","links":{},"stock":{"item_id":1807,"product_id":1807,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-s-yellow-1807.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1805","_score":1,"_source":{"id":1805,"sku":"WT09-S-Purple","name":"Breathe-Easy Tank-S-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                                    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                                    \n

                                    • Machine wash/dry.
                                    • Cocona® fabric.

                                    ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"breathe-easy-tank-s-purple-1805","links":{},"stock":{"item_id":1805,"product_id":1805,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2018-03-06 13:46:27","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-s-purple-1805.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1804","_score":1,"_source":{"id":1804,"sku":"WT09-XS-Yellow","name":"Breathe-Easy Tank-XS-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                                    \n

                                    • Machine wash/dry.
                                    • Cocona® fabric.

                                    ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"breathe-easy-tank-xs-yellow-1804","links":{},"stock":{"item_id":1804,"product_id":1804,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xs-yellow-1804.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1802","_score":1,"_source":{"id":1802,"sku":"WT09-XS-Purple","name":"Breathe-Easy Tank-XS-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                                    \n

                                    • Machine wash/dry.
                                    • Cocona® fabric.

                                    ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"breathe-easy-tank-xs-purple-1802","links":{},"stock":{"item_id":1802,"product_id":1802,"stock_id":1,"qty":41,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xs-purple-1802.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1809","_score":1,"_source":{"id":1809,"sku":"WT09-M-White","name":"Breathe-Easy Tank-M-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                                    \n

                                    • Machine wash/dry.
                                    • Cocona® fabric.

                                    ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"breathe-easy-tank-m-white-1809","links":{},"stock":{"item_id":1809,"product_id":1809,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-m-white-1809.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1816","_score":1,"_source":{"id":1816,"sku":"WT09-XL-Yellow","name":"Breathe-Easy Tank-XL-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                                    \n

                                    • Machine wash/dry.
                                    • Cocona® fabric.

                                    ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"breathe-easy-tank-xl-yellow-1816","links":{},"stock":{"item_id":1816,"product_id":1816,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xl-yellow-1816.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1810","_score":1,"_source":{"id":1810,"sku":"WT09-M-Yellow","name":"Breathe-Easy Tank-M-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                                    \n

                                    • Machine wash/dry.
                                    • Cocona® fabric.

                                    ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"breathe-easy-tank-m-yellow-1810","links":{},"stock":{"item_id":1810,"product_id":1810,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-m-yellow-1810.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1813","_score":1,"_source":{"id":1813,"sku":"WT09-L-Yellow","name":"Breathe-Easy Tank-L-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                                    \n

                                    • Machine wash/dry.
                                    • Cocona® fabric.

                                    ","image":"/w/t/wt09-yellow_main.jpg","small_image":"/w/t/wt09-yellow_main.jpg","thumbnail":"/w/t/wt09-yellow_main.jpg","color":"60","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"breathe-easy-tank-l-yellow-1813","links":{},"stock":{"item_id":1813,"product_id":1813,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt09-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-l-yellow-1813.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1820","_score":1,"_source":{"id":1820,"sku":"WP01-28-White","name":"Karmen Yoga Pant-28-White","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                                    Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                                    \n

                                    • Light blue parachute pants.
                                    • Power mesh internal waistband for support.
                                    • Internal waistband pocket.
                                    • Antimicrobial finish.

                                    ","image":"/w/p/wp01-white_main.jpg","small_image":"/w/p/wp01-white_main.jpg","thumbnail":"/w/p/wp01-white_main.jpg","color":"59","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"karmen-yoga-pant-28-white-1820","links":{},"stock":{"item_id":1820,"product_id":1820,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp01-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-28-white-1820.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1806","_score":1,"_source":{"id":1806,"sku":"WT09-S-White","name":"Breathe-Easy Tank-S-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                                    \n

                                    • Machine wash/dry.
                                    • Cocona® fabric.

                                    ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"breathe-easy-tank-s-white-1806","links":{},"stock":{"item_id":1806,"product_id":1806,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-s-white-1806.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1822","_score":1,"_source":{"id":1822,"sku":"WP01-29-Gray","name":"Karmen Yoga Pant-29-Gray","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                                    Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                                    \n

                                    • Light blue parachute pants.
                                    • Power mesh internal waistband for support.
                                    • Internal waistband pocket.
                                    • Antimicrobial finish.

                                    ","image":"/w/p/wp01-gray_main.jpg","small_image":"/w/p/wp01-gray_main.jpg","thumbnail":"/w/p/wp01-gray_main.jpg","color":"52","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"karmen-yoga-pant-29-gray-1822","links":{},"stock":{"item_id":1822,"product_id":1822,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp01-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp01-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-29-gray-1822.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1818","_score":1,"_source":{"id":1818,"sku":"WP01-28-Black","name":"Karmen Yoga Pant-28-Black","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                                    Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                                    \n

                                    • Light blue parachute pants.
                                    • Power mesh internal waistband for support.
                                    • Internal waistband pocket.
                                    • Antimicrobial finish.

                                    ","image":"/w/p/wp01-black_main.jpg","small_image":"/w/p/wp01-black_main.jpg","thumbnail":"/w/p/wp01-black_main.jpg","color":"49","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"karmen-yoga-pant-28-black-1818","links":{},"stock":{"item_id":1818,"product_id":1818,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp01-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-28-black-1818.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1825","_score":1,"_source":{"id":1825,"sku":"WP02-28-Blue","name":"Emma Leggings-28-Blue","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                                    \n

                                    • Light blue heather yoga pants.
                                    • Body hugging fit.
                                    • Low rise fit.

                                    ","image":"/w/p/wp02-blue_main.jpg","small_image":"/w/p/wp02-blue_main.jpg","thumbnail":"/w/p/wp02-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"emma-leggings-28-blue-1825","links":{},"stock":{"item_id":1825,"product_id":1825,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp02-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp02-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-28-blue-1825.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1808","_score":1,"_source":{"id":1808,"sku":"WT09-M-Purple","name":"Breathe-Easy Tank-M-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                                    \n

                                    • Machine wash/dry.
                                    • Cocona® fabric.

                                    ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"breathe-easy-tank-m-purple-1808","links":{},"stock":{"item_id":1808,"product_id":1808,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-m-purple-1808.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1827","_score":1,"_source":{"id":1827,"sku":"WP02-28-Red","name":"Emma Leggings-28-Red","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma's subtle contrast fabric and fit ensure you're stylish without overdoing it.

                                    \n

                                    • Light blue heather yoga pants.
                                    • Body hugging fit.
                                    • Low rise fit.

                                    ","image":"/w/p/wp02-red_main.jpg","small_image":"/w/p/wp02-red_main.jpg","thumbnail":"/w/p/wp02-red_main.jpg","color":"58","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"emma-leggings-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"emma-leggings-28-red-1827","links":{},"stock":{"item_id":1827,"product_id":1827,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp02-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/emma-leggings-28-red-1827.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1815","_score":1,"_source":{"id":1815,"sku":"WT09-XL-White","name":"Breathe-Easy Tank-XL-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                                    \n

                                    • Machine wash/dry.
                                    • Cocona® fabric.

                                    ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"breathe-easy-tank-xl-white-1815","links":{},"stock":{"item_id":1815,"product_id":1815,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xl-white-1815.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1758","_score":1,"_source":{"id":1758,"sku":"WT06-S-Red","name":"Chloe Compete Tank-S-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                                    You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                                    \n

                                    • Royal blue tank top - nylon/spandex.
                                    • Flatlock stitching.
                                    • Moisture-wicking fabric.
                                    • Ergonomic seaming.
                                    • Machine wash/dry.

                                    ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-s-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chloe-compete-tank-s-red-1758","links":{},"stock":{"item_id":1758,"product_id":1758,"stock_id":1,"qty":32,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-s-red-1758.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1774","_score":1,"_source":{"id":1774,"sku":"WT07-S-White","name":"Maya Tunic-S-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                                    \n

                                    • Mint green heather tunic-style tank.
                                    • Wrapped back with cut out detail.
                                    • Drawcord detail at end.
                                    • Abutted seams.

                                    ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-s-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"maya-tunic-s-white-1774","links":{},"stock":{"item_id":1774,"product_id":1774,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-s-white-1774.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1783","_score":1,"_source":{"id":1783,"sku":"WT07-XL-White","name":"Maya Tunic-XL-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                                    \n

                                    • Mint green heather tunic-style tank.
                                    • Wrapped back with cut out detail.
                                    • Drawcord detail at end.
                                    • Abutted seams.

                                    ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"maya-tunic-xl-white-1783","links":{},"stock":{"item_id":1783,"product_id":1783,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xl-white-1783.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1773","_score":1,"_source":{"id":1773,"sku":"WT07-S-Green","name":"Maya Tunic-S-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                                    \n

                                    • Mint green heather tunic-style tank.
                                    • Wrapped back with cut out detail.
                                    • Drawcord detail at end.
                                    • Abutted seams.

                                    ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-s-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"maya-tunic-s-green-1773","links":{},"stock":{"item_id":1773,"product_id":1773,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-s-green-1773.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1764","_score":1,"_source":{"id":1764,"sku":"WT06-L-Red","name":"Chloe Compete Tank-L-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                                    You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                                    \n

                                    • Royal blue tank top - nylon/spandex.
                                    • Flatlock stitching.
                                    • Moisture-wicking fabric.
                                    • Ergonomic seaming.
                                    • Machine wash/dry.

                                    ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-l-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chloe-compete-tank-l-red-1764","links":{},"stock":{"item_id":1764,"product_id":1764,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-l-red-1764.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1757","_score":1,"_source":{"id":1757,"sku":"WT06-S-Blue","name":"Chloe Compete Tank-S-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                                    You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                                    \n

                                    • Royal blue tank top - nylon/spandex.
                                    • Flatlock stitching.
                                    • Moisture-wicking fabric.
                                    • Ergonomic seaming.
                                    • Machine wash/dry.

                                    ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-s-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chloe-compete-tank-s-blue-1757","links":{},"stock":{"item_id":1757,"product_id":1757,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-s-blue-1757.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1756","_score":1,"_source":{"id":1756,"sku":"WT06-XS-Yellow","name":"Chloe Compete Tank-XS-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                                    You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                                    \n

                                    • Royal blue tank top - nylon/spandex.
                                    • Flatlock stitching.
                                    • Moisture-wicking fabric.
                                    • Ergonomic seaming.
                                    • Machine wash/dry.

                                    ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"chloe-compete-tank-xs-yellow-1756","links":{},"stock":{"item_id":1756,"product_id":1756,"stock_id":1,"qty":85,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xs-yellow-1756.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1775","_score":1,"_source":{"id":1775,"sku":"WT07-S-Yellow","name":"Maya Tunic-S-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                                    \n

                                    • Mint green heather tunic-style tank.
                                    • Wrapped back with cut out detail.
                                    • Drawcord detail at end.
                                    • Abutted seams.

                                    ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"maya-tunic-s-yellow-1775","links":{},"stock":{"item_id":1775,"product_id":1775,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-s-yellow-1775.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1759","_score":1,"_source":{"id":1759,"sku":"WT06-S-Yellow","name":"Chloe Compete Tank-S-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                                    You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                                    \n

                                    • Royal blue tank top - nylon/spandex.
                                    • Flatlock stitching.
                                    • Moisture-wicking fabric.
                                    • Ergonomic seaming.
                                    • Machine wash/dry.

                                    ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"chloe-compete-tank-s-yellow-1759","links":{},"stock":{"item_id":1759,"product_id":1759,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-s-yellow-1759.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1787","_score":1,"_source":{"id":1787,"sku":"WT08-XS-Purple","name":"Antonia Racer Tank-XS-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                                    \n

                                    • Machine wash.
                                    • Line dry.

                                    ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xs-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"antonia-racer-tank-xs-purple-1787","links":{},"stock":{"item_id":1787,"product_id":1787,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xs-purple-1787.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1776","_score":1,"_source":{"id":1776,"sku":"WT07-M-Green","name":"Maya Tunic-M-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                                    \n

                                    • Mint green heather tunic-style tank.
                                    • Wrapped back with cut out detail.
                                    • Drawcord detail at end.
                                    • Abutted seams.

                                    ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-m-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"maya-tunic-m-green-1776","links":{},"stock":{"item_id":1776,"product_id":1776,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-m-green-1776.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1790","_score":1,"_source":{"id":1790,"sku":"WT08-S-Purple","name":"Antonia Racer Tank-S-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                                    \n

                                    • Machine wash.
                                    • Line dry.

                                    ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-s-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"antonia-racer-tank-s-purple-1790","links":{},"stock":{"item_id":1790,"product_id":1790,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-s-purple-1790.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1791","_score":1,"_source":{"id":1791,"sku":"WT08-S-Yellow","name":"Antonia Racer Tank-S-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                                    \n

                                    • Machine wash.
                                    • Line dry.

                                    ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-s-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"antonia-racer-tank-s-yellow-1791","links":{},"stock":{"item_id":1791,"product_id":1791,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-s-yellow-1791.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1784","_score":1,"_source":{"id":1784,"sku":"WT07-XL-Yellow","name":"Maya Tunic-XL-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                                    \n

                                    • Mint green heather tunic-style tank.
                                    • Wrapped back with cut out detail.
                                    • Drawcord detail at end.
                                    • Abutted seams.

                                    ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"maya-tunic-xl-yellow-1784","links":{},"stock":{"item_id":1784,"product_id":1784,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xl-yellow-1784.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1772","_score":1,"_source":{"id":1772,"sku":"WT07-XS-Yellow","name":"Maya Tunic-XS-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                                    \n

                                    • Mint green heather tunic-style tank.
                                    • Wrapped back with cut out detail.
                                    • Drawcord detail at end.
                                    • Abutted seams.

                                    ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"maya-tunic-xs-yellow-1772","links":{},"stock":{"item_id":1772,"product_id":1772,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xs-yellow-1772.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1799","_score":1,"_source":{"id":1799,"sku":"WT08-XL-Purple","name":"Antonia Racer Tank-XL-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                                    \n

                                    • Machine wash.
                                    • Line dry.

                                    ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xl-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"antonia-racer-tank-xl-purple-1799","links":{},"stock":{"item_id":1799,"product_id":1799,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xl-purple-1799.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1798","_score":1,"_source":{"id":1798,"sku":"WT08-XL-Black","name":"Antonia Racer Tank-XL-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                                    \n

                                    • Machine wash.
                                    • Line dry.

                                    ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xl-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"antonia-racer-tank-xl-black-1798","links":{},"stock":{"item_id":1798,"product_id":1798,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xl-black-1798.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1781","_score":1,"_source":{"id":1781,"sku":"WT07-L-Yellow","name":"Maya Tunic-L-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                                    \n

                                    • Mint green heather tunic-style tank.
                                    • Wrapped back with cut out detail.
                                    • Drawcord detail at end.
                                    • Abutted seams.

                                    ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"maya-tunic-l-yellow-1781","links":{},"stock":{"item_id":1781,"product_id":1781,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-l-yellow-1781.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1752","_score":1,"_source":{"id":1752,"sku":"WT05-XL-White","name":"Leah Yoga Top-XL-White","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                                    The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

                                    \n

                                    • Blue heather rouched tank top.
                                    • Camisole tank top.
                                    • Banding and shirring details.
                                    • Body hugging fit.
                                    • Contrast topstitch.
                                    • Interior shelf bra with shapewear technology.
                                    • 65% Polyester 35% Cotton.

                                    ","image":"/w/t/wt05-white_main.jpg","small_image":"/w/t/wt05-white_main.jpg","thumbnail":"/w/t/wt05-white_main.jpg","color":"59","category_ids":[26,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"leah-yoga-top-xl-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"leah-yoga-top-xl-white-1752","links":{},"stock":{"item_id":1752,"product_id":1752,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt05-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/leah-yoga-top-xl-white-1752.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1771","_score":1,"_source":{"id":1771,"sku":"WT07-XS-White","name":"Maya Tunic-XS-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                                    \n

                                    • Mint green heather tunic-style tank.
                                    • Wrapped back with cut out detail.
                                    • Drawcord detail at end.
                                    • Abutted seams.

                                    ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"maya-tunic-xs-white-1771","links":{},"stock":{"item_id":1771,"product_id":1771,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xs-white-1771.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1761","_score":1,"_source":{"id":1761,"sku":"WT06-M-Red","name":"Chloe Compete Tank-M-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                                    You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                                    \n

                                    • Royal blue tank top - nylon/spandex.
                                    • Flatlock stitching.
                                    • Moisture-wicking fabric.
                                    • Ergonomic seaming.
                                    • Machine wash/dry.

                                    ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-m-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"chloe-compete-tank-m-red-1761","links":{},"stock":{"item_id":1761,"product_id":1761,"stock_id":1,"qty":71,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-m-red-1761.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1780","_score":1,"_source":{"id":1780,"sku":"WT07-L-White","name":"Maya Tunic-L-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                                    \n

                                    • Mint green heather tunic-style tank.
                                    • Wrapped back with cut out detail.
                                    • Drawcord detail at end.
                                    • Abutted seams.

                                    ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"maya-tunic-l-white-1780","links":{},"stock":{"item_id":1780,"product_id":1780,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-l-white-1780.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1768","_score":1,"_source":{"id":1768,"sku":"WT06-XL-Yellow","name":"Chloe Compete Tank-XL-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                                    You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                                    \n

                                    • Royal blue tank top - nylon/spandex.
                                    • Flatlock stitching.
                                    • Moisture-wicking fabric.
                                    • Ergonomic seaming.
                                    • Machine wash/dry.

                                    ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chloe-compete-tank-xl-yellow-1768","links":{},"stock":{"item_id":1768,"product_id":1768,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xl-yellow-1768.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1766","_score":1,"_source":{"id":1766,"sku":"WT06-XL-Blue","name":"Chloe Compete Tank-XL-Blue","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                                    You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                                    \n

                                    • Royal blue tank top - nylon/spandex.
                                    • Flatlock stitching.
                                    • Moisture-wicking fabric.
                                    • Ergonomic seaming.
                                    • Machine wash/dry.

                                    ","image":"/w/t/wt06-blue_main.jpg","small_image":"/w/t/wt06-blue_main.jpg","thumbnail":"/w/t/wt06-blue_main.jpg","color":"50","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xl-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chloe-compete-tank-xl-blue-1766","links":{},"stock":{"item_id":1766,"product_id":1766,"stock_id":1,"qty":70,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt06-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt06-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xl-blue-1766.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1770","_score":1,"_source":{"id":1770,"sku":"WT07-XS-Green","name":"Maya Tunic-XS-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                                    \n

                                    • Mint green heather tunic-style tank.
                                    • Wrapped back with cut out detail.
                                    • Drawcord detail at end.
                                    • Abutted seams.

                                    ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xs-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"maya-tunic-xs-green-1770","links":{},"stock":{"item_id":1770,"product_id":1770,"stock_id":1,"qty":71,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xs-green-1770.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1786","_score":1,"_source":{"id":1786,"sku":"WT08-XS-Black","name":"Antonia Racer Tank-XS-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                                    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                                    \n

                                    • Machine wash.
                                    • Line dry.

                                    ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xs-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"antonia-racer-tank-xs-black-1786","links":{},"stock":{"item_id":1786,"product_id":1786,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-03-30 21:09:00","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xs-black-1786.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1767","_score":1,"_source":{"id":1767,"sku":"WT06-XL-Red","name":"Chloe Compete Tank-XL-Red","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                                    You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                                    \n

                                    • Royal blue tank top - nylon/spandex.
                                    • Flatlock stitching.
                                    • Moisture-wicking fabric.
                                    • Ergonomic seaming.
                                    • Machine wash/dry.

                                    ","image":"/w/t/wt06-red_main.jpg","small_image":"/w/t/wt06-red_main.jpg","thumbnail":"/w/t/wt06-red_main.jpg","color":"58","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-xl-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"chloe-compete-tank-xl-red-1767","links":{},"stock":{"item_id":1767,"product_id":1767,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt06-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-xl-red-1767.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1777","_score":1,"_source":{"id":1777,"sku":"WT07-M-White","name":"Maya Tunic-M-White","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                                    \n

                                    • Mint green heather tunic-style tank.
                                    • Wrapped back with cut out detail.
                                    • Drawcord detail at end.
                                    • Abutted seams.

                                    ","image":"/w/t/wt07-white_main.jpg","small_image":"/w/t/wt07-white_main.jpg","thumbnail":"/w/t/wt07-white_main.jpg","color":"59","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-m-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"maya-tunic-m-white-1777","links":{},"stock":{"item_id":1777,"product_id":1777,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt07-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-m-white-1777.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1795","_score":1,"_source":{"id":1795,"sku":"WT08-L-Black","name":"Antonia Racer Tank-L-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                                    \n

                                    • Machine wash.
                                    • Line dry.

                                    ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-l-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"antonia-racer-tank-l-black-1795","links":{},"stock":{"item_id":1795,"product_id":1795,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-l-black-1795.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1792","_score":1,"_source":{"id":1792,"sku":"WT08-M-Black","name":"Antonia Racer Tank-M-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                                    \n

                                    • Machine wash.
                                    • Line dry.

                                    ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-m-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"antonia-racer-tank-m-black-1792","links":{},"stock":{"item_id":1792,"product_id":1792,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-m-black-1792.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1803","_score":1,"_source":{"id":1803,"sku":"WT09-XS-White","name":"Breathe-Easy Tank-XS-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                                    \n

                                    • Machine wash/dry.
                                    • Cocona® fabric.

                                    ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-xs-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"breathe-easy-tank-xs-white-1803","links":{},"stock":{"item_id":1803,"product_id":1803,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-xs-white-1803.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1812","_score":1,"_source":{"id":1812,"sku":"WT09-L-White","name":"Breathe-Easy Tank-L-White","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                                    \n

                                    • Machine wash/dry.
                                    • Cocona® fabric.

                                    ","image":"/w/t/wt09-white_main.jpg","small_image":"/w/t/wt09-white_main.jpg","thumbnail":"/w/t/wt09-white_main.jpg","color":"59","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-l-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"breathe-easy-tank-l-white-1812","links":{},"stock":{"item_id":1812,"product_id":1812,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt09-white_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt09-white_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-l-white-1812.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1833","_score":1,"_source":{"id":1833,"sku":"WP03-28-Blue","name":"Ida Workout Parachute Pant-28-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                                    The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                                    \n

                                    • Royal blue parachute pants.
                                    • Contrast stripe.
                                    • Relaxed fit.
                                    • Drawstring closure.
                                    • Machine wash/dry.

                                    ","image":"/w/p/wp03-blue_main.jpg","small_image":"/w/p/wp03-blue_main.jpg","thumbnail":"/w/p/wp03-blue_main.jpg","color":"50","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ida-workout-parachute-pant-28-blue-1833","links":{},"stock":{"item_id":1833,"product_id":1833,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp03-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp03-blue_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp03-blue_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-28-blue-1833.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1823","_score":1,"_source":{"id":1823,"sku":"WP01-29-White","name":"Karmen Yoga Pant-29-White","attribute_set_id":10,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                                    Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                                    \n

                                    • Light blue parachute pants.
                                    • Power mesh internal waistband for support.
                                    • Internal waistband pocket.
                                    • Antimicrobial finish.

                                    ","image":"/w/p/wp01-white_main.jpg","small_image":"/w/p/wp01-white_main.jpg","thumbnail":"/w/p/wp01-white_main.jpg","color":"59","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"karmen-yoga-pant-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"karmen-yoga-pant-29-white-1823","links":{},"stock":{"item_id":1823,"product_id":1823,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp01-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/karmen-yoga-pant-29-white-1823.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1811","_score":1,"_source":{"id":1811,"sku":"WT09-L-Purple","name":"Breathe-Easy Tank-L-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    The Breathe Easy Tank is so soft, lightweight, and comfortable, you won't even know it's there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

                                    \n

                                    • Machine wash/dry.
                                    • Cocona® fabric.

                                    ","image":"/w/t/wt09-purple_main.jpg","small_image":"/w/t/wt09-purple_main.jpg","thumbnail":"/w/t/wt09-purple_main.jpg","color":"57","category_ids":[26,30,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"breathe-easy-tank-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"breathe-easy-tank-l-purple-1811","links":{},"stock":{"item_id":1811,"product_id":1811,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt09-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/breathe-easy-tank-l-purple-1811.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1839","_score":1,"_source":{"id":1839,"sku":"WP04-28-Black","name":"Cora Parachute Pant-28-Black","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                                    Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                                    \n

                                    • Light blue parachute pants.
                                    • Power mesh internal waistband for support.
                                    • Internal waistband pocket.
                                    • Antimicrobial finish.

                                    ","image":"/w/p/wp04-black_main.jpg","small_image":"/w/p/wp04-black_main.jpg","thumbnail":"/w/p/wp04-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"cora-parachute-pant-28-black-1839","links":{},"stock":{"item_id":1839,"product_id":1839,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp04-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-28-black-1839.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1832","_score":1,"_source":{"id":1832,"sku":"WP03-28-Black","name":"Ida Workout Parachute Pant-28-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                                    The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                                    \n

                                    • Royal blue parachute pants.
                                    • Contrast stripe.
                                    • Relaxed fit.
                                    • Drawstring closure.
                                    • Machine wash/dry.

                                    ","image":"/w/p/wp03-black_main.jpg","small_image":"/w/p/wp03-black_main.jpg","thumbnail":"/w/p/wp03-black_main.jpg","color":"49","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ida-workout-parachute-pant-28-black-1832","links":{},"stock":{"item_id":1832,"product_id":1832,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp03-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-28-black-1832.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1841","_score":1,"_source":{"id":1841,"sku":"WP04-28-White","name":"Cora Parachute Pant-28-White","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                                    Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

                                    \n

                                    • Light blue parachute pants.
                                    • Power mesh internal waistband for support.
                                    • Internal waistband pocket.
                                    • Antimicrobial finish.

                                    ","image":"/w/p/wp04-white_main.jpg","small_image":"/w/p/wp04-white_main.jpg","thumbnail":"/w/p/wp04-white_main.jpg","color":"59","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"cora-parachute-pant-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"cora-parachute-pant-28-white-1841","links":{},"stock":{"item_id":1841,"product_id":1841,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp04-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/cora-parachute-pant-28-white-1841.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1835","_score":1,"_source":{"id":1835,"sku":"WP03-29-Black","name":"Ida Workout Parachute Pant-29-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                                    The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

                                    \n

                                    • Royal blue parachute pants.
                                    • Contrast stripe.
                                    • Relaxed fit.
                                    • Drawstring closure.
                                    • Machine wash/dry.

                                    ","image":"/w/p/wp03-black_main.jpg","small_image":"/w/p/wp03-black_main.jpg","thumbnail":"/w/p/wp03-black_main.jpg","color":"49","category_ids":[27,32,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ida-workout-parachute-pant-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ida-workout-parachute-pant-29-black-1835","links":{},"stock":{"item_id":1835,"product_id":1835,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp03-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/ida-workout-parachute-pant-29-black-1835.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1779","_score":1,"_source":{"id":1779,"sku":"WT07-L-Green","name":"Maya Tunic-L-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                                    \n

                                    • Mint green heather tunic-style tank.
                                    • Wrapped back with cut out detail.
                                    • Drawcord detail at end.
                                    • Abutted seams.

                                    ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-l-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"maya-tunic-l-green-1779","links":{},"stock":{"item_id":1779,"product_id":1779,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-l-green-1779.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1800","_score":1,"_source":{"id":1800,"sku":"WT08-XL-Yellow","name":"Antonia Racer Tank-XL-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                                    \n

                                    • Machine wash.
                                    • Line dry.

                                    ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xl-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"antonia-racer-tank-xl-yellow-1800","links":{},"stock":{"item_id":1800,"product_id":1800,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xl-yellow-1800.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1765","_score":1,"_source":{"id":1765,"sku":"WT06-L-Yellow","name":"Chloe Compete Tank-L-Yellow","attribute_set_id":9,"price":39,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":39,"max_price":39,"max_regular_price":39,"minimal_regular_price":39,"special_price":null,"minimal_price":39,"regular_price":39,"description":"

                                    You've earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

                                    \n

                                    • Royal blue tank top - nylon/spandex.
                                    • Flatlock stitching.
                                    • Moisture-wicking fabric.
                                    • Ergonomic seaming.
                                    • Machine wash/dry.

                                    ","image":"/w/t/wt06-yellow_main.jpg","small_image":"/w/t/wt06-yellow_main.jpg","thumbnail":"/w/t/wt06-yellow_main.jpg","color":"60","category_ids":["26"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"chloe-compete-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"chloe-compete-tank-l-yellow-1765","links":{},"stock":{"item_id":1765,"product_id":1765,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt06-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/chloe-compete-tank-l-yellow-1765.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1793","_score":1,"_source":{"id":1793,"sku":"WT08-M-Purple","name":"Antonia Racer Tank-M-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                                    \n

                                    • Machine wash.
                                    • Line dry.

                                    ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-m-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"antonia-racer-tank-m-purple-1793","links":{},"stock":{"item_id":1793,"product_id":1793,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-m-purple-1793.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1778","_score":1,"_source":{"id":1778,"sku":"WT07-M-Yellow","name":"Maya Tunic-M-Yellow","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                                    \n

                                    • Mint green heather tunic-style tank.
                                    • Wrapped back with cut out detail.
                                    • Drawcord detail at end.
                                    • Abutted seams.

                                    ","image":"/w/t/wt07-yellow_main.jpg","small_image":"/w/t/wt07-yellow_main.jpg","thumbnail":"/w/t/wt07-yellow_main.jpg","color":"60","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"maya-tunic-m-yellow-1778","links":{},"stock":{"item_id":1778,"product_id":1778,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt07-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-m-yellow-1778.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1782","_score":1,"_source":{"id":1782,"sku":"WT07-XL-Green","name":"Maya Tunic-XL-Green","attribute_set_id":9,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

                                    \n

                                    • Mint green heather tunic-style tank.
                                    • Wrapped back with cut out detail.
                                    • Drawcord detail at end.
                                    • Abutted seams.

                                    ","image":"/w/t/wt07-green_main.jpg","small_image":"/w/t/wt07-green_main.jpg","thumbnail":"/w/t/wt07-green_main.jpg","color":"53","category_ids":[26,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maya-tunic-xl-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"171","slug":"maya-tunic-xl-green-1782","links":{},"stock":{"item_id":1782,"product_id":1782,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt07-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt07-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt07-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/maya-tunic-xl-green-1782.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1797","_score":1,"_source":{"id":1797,"sku":"WT08-L-Yellow","name":"Antonia Racer Tank-L-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                                    \n

                                    • Machine wash.
                                    • Line dry.

                                    ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-l-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"antonia-racer-tank-l-yellow-1797","links":{},"stock":{"item_id":1797,"product_id":1797,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-l-yellow-1797.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1789","_score":1,"_source":{"id":1789,"sku":"WT08-S-Black","name":"Antonia Racer Tank-S-Black","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                                    \n

                                    • Machine wash.
                                    • Line dry.

                                    ","image":"/w/t/wt08-black_main.jpg","small_image":"/w/t/wt08-black_main.jpg","thumbnail":"/w/t/wt08-black_main.jpg","color":"49","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-s-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"168","slug":"antonia-racer-tank-s-black-1789","links":{},"stock":{"item_id":1789,"product_id":1789,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt08-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt08-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/t/wt08-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-s-black-1789.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1788","_score":1,"_source":{"id":1788,"sku":"WT08-XS-Yellow","name":"Antonia Racer Tank-XS-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:24","updated_at":"2017-11-06 12:17:24","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                                    \n

                                    • Machine wash.
                                    • Line dry.

                                    ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-xs-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"167","slug":"antonia-racer-tank-xs-yellow-1788","links":{},"stock":{"item_id":1788,"product_id":1788,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-xs-yellow-1788.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1796","_score":1,"_source":{"id":1796,"sku":"WT08-L-Purple","name":"Antonia Racer Tank-L-Purple","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                                    \n

                                    • Machine wash.
                                    • Line dry.

                                    ","image":"/w/t/wt08-purple_main.jpg","small_image":"/w/t/wt08-purple_main.jpg","thumbnail":"/w/t/wt08-purple_main.jpg","color":"57","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-l-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"170","slug":"antonia-racer-tank-l-purple-1796","links":{},"stock":{"item_id":1796,"product_id":1796,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt08-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-l-purple-1796.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1794","_score":1,"_source":{"id":1794,"sku":"WT08-M-Yellow","name":"Antonia Racer Tank-M-Yellow","attribute_set_id":9,"price":34,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":34,"max_price":34,"max_regular_price":34,"minimal_regular_price":34,"special_price":null,"minimal_price":34,"regular_price":34,"description":"

                                    You won't know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

                                    \n

                                    • Machine wash.
                                    • Line dry.

                                    ","image":"/w/t/wt08-yellow_main.jpg","small_image":"/w/t/wt08-yellow_main.jpg","thumbnail":"/w/t/wt08-yellow_main.jpg","color":"60","category_ids":[26,30,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"antonia-racer-tank-m-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"169","slug":"antonia-racer-tank-m-yellow-1794","links":{},"stock":{"item_id":1794,"product_id":1794,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/t/wt08-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/tops-women/tanks-women/bras-and-tanks-26","category_id":26,"name":"Bras & Tanks","slug":"bras-and-tanks-26"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/tops-women/tanks-women/bras-and-tanks-26/antonia-racer-tank-m-yellow-1794.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1853","_score":1,"_source":{"id":1853,"sku":"WP06-28-Black","name":"Diana Tights-28-Black","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                                    Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                                    \n

                                    • Black legging with slate details.
                                    • Flat-lock, chafe-free side seams.
                                    • Vented gusset.
                                    • Secret interior pocket.
                                    • Sustainable and recycled fabric.

                                    ","image":"/w/p/wp06-black_main.jpg","small_image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","color":"49","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"diana-tights-28-black-1853","links":{},"stock":{"item_id":1853,"product_id":1853,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp06-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp06-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp06-black_back.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp06-black_outfit.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-28-black-1853.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1869","_score":1,"_source":{"id":1869,"sku":"WP08-28-Red","name":"Bardot Capri-28-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                                    Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                                    \n

                                    • Black capris with pink waistband.
                                    • Cropped leggings.
                                    • Waistband drawcord.
                                    • Flat, thin and flattering.
                                    • Made with organic fabric.

                                    ","image":"/w/p/wp08-red_main.jpg","small_image":"/w/p/wp08-red_main.jpg","thumbnail":"/w/p/wp08-red_main.jpg","color":"58","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bardot-capri-28-red-1869","links":{},"stock":{"item_id":1869,"product_id":1869,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp08-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-28-red-1869.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1861","_score":1,"_source":{"id":1861,"sku":"WP07-28-Blue","name":"Aeon Capri-28-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                                    Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                                    \n

                                    • Black capris with teal accents.
                                    • Thick, 3\" flattering waistband.
                                    • Media pocket on inner waistband.
                                    • Dry wick finish for ultimate comfort and dryness.

                                    ","image":"/w/p/wp07-blue_main.jpg","small_image":"/w/p/wp07-blue_main.jpg","thumbnail":"/w/p/wp07-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"aeon-capri-28-blue-1861","links":{},"stock":{"item_id":1861,"product_id":1861,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp07-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-28-blue-1861.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1851","_score":1,"_source":{"id":1851,"sku":"WP05-29-Red","name":"Sahara Leggings-29-Red","attribute_set_id":10,"price":75,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:25","updated_at":"2017-11-06 12:17:25","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                                    Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                                    \n

                                    • Pinstripe legging with rouched ankles.
                                    • Secret pocket at waistband.
                                    • Flat seams for comfort.
                                    • Shaped fit with low rise.
                                    • 4-way stretch, moisture-wicking material.

                                    ","image":"/w/p/wp05-red_main.jpg","small_image":"/w/p/wp05-red_main.jpg","thumbnail":"/w/p/wp05-red_main.jpg","color":"58","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sahara-leggings-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sahara-leggings-29-red-1851","links":{},"stock":{"item_id":1851,"product_id":1851,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp05-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-29-red-1851.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1862","_score":1,"_source":{"id":1862,"sku":"WP07-28-Orange","name":"Aeon Capri-28-Orange","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                                    Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                                    \n

                                    • Black capris with teal accents.
                                    • Thick, 3\" flattering waistband.
                                    • Media pocket on inner waistband.
                                    • Dry wick finish for ultimate comfort and dryness.

                                    ","image":"/w/p/wp07-orange_main.jpg","small_image":"/w/p/wp07-orange_main.jpg","thumbnail":"/w/p/wp07-orange_main.jpg","color":"56","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"aeon-capri-28-orange-1862","links":{},"stock":{"item_id":1862,"product_id":1862,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp07-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-28-orange-1862.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1860","_score":1,"_source":{"id":1860,"sku":"WP07-28-Black","name":"Aeon Capri-28-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                                    Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                                    \n

                                    • Black capris with teal accents.
                                    • Thick, 3\" flattering waistband.
                                    • Media pocket on inner waistband.
                                    • Dry wick finish for ultimate comfort and dryness.

                                    ","image":"/w/p/wp07-black_main.jpg","small_image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","color":"49","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"aeon-capri-28-black-1860","links":{},"stock":{"item_id":1860,"product_id":1860,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp07-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp07-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp07-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-28-black-1860.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1855","_score":1,"_source":{"id":1855,"sku":"WP06-28-Orange","name":"Diana Tights-28-Orange","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                                    Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                                    \n

                                    • Black legging with slate details.
                                    • Flat-lock, chafe-free side seams.
                                    • Vented gusset.
                                    • Secret interior pocket.
                                    • Sustainable and recycled fabric.

                                    ","image":"/w/p/wp06-orange_main.jpg","small_image":"/w/p/wp06-orange_main.jpg","thumbnail":"/w/p/wp06-orange_main.jpg","color":"56","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"diana-tights-28-orange-1855","links":{},"stock":{"item_id":1855,"product_id":1855,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp06-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-28-orange-1855.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1922","_score":1,"_source":{"id":1922,"sku":"WSH01-32-Green","name":"Fiona Fitness Short-32-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                                    \n

                                    • Black run shorts
                                    - cotton/spandex.
                                    • 5” inseam.
                                    • Machine wash/Line dry.

                                    ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"fiona-fitness-short-32-green-1922","links":{},"stock":{"item_id":1922,"product_id":1922,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-32-green-1922.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1928","_score":1,"_source":{"id":1928,"sku":"WSH02-29-Gray","name":"Maxima Drawstring Short-29-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                                    \n

                                    • Light gray run shorts
                                    - cotton polyester.
                                    • Contrast binding.
                                    • 3\" inseam.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"maxima-drawstring-short-29-gray-1928","links":{},"stock":{"item_id":1928,"product_id":1928,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-29-gray-1928.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1929","_score":1,"_source":{"id":1929,"sku":"WSH02-29-Orange","name":"Maxima Drawstring Short-29-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                                    \n

                                    • Light gray run shorts
                                    - cotton polyester.
                                    • Contrast binding.
                                    • 3\" inseam.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"maxima-drawstring-short-29-orange-1929","links":{},"stock":{"item_id":1929,"product_id":1929,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-29-orange-1929.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1917","_score":1,"_source":{"id":1917,"sku":"WSH01-30-Red","name":"Fiona Fitness Short-30-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                                    \n

                                    • Black run shorts
                                    - cotton/spandex.
                                    • 5” inseam.
                                    • Machine wash/Line dry.

                                    ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-30-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"fiona-fitness-short-30-red-1917","links":{},"stock":{"item_id":1917,"product_id":1917,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-30-red-1917.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1902","_score":1,"_source":{"id":1902,"sku":"WP13-28-Blue","name":"Portia Capri-28-Blue","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                                    \n

                                    • Salmon heather capri sweats.
                                    • Relaxed fit, high waist.
                                    • Inseam: 21\".
                                    • Wide elastic waistband.
                                    • Machine wash/dry.

                                    ","image":"/w/p/wp13-blue_main.jpg","small_image":"/w/p/wp13-blue_main.jpg","thumbnail":"/w/p/wp13-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"portia-capri-28-blue-1902","links":{},"stock":{"item_id":1902,"product_id":1902,"stock_id":1,"qty":63,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp13-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-28-blue-1902.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1942","_score":1,"_source":{"id":1942,"sku":"WSH03-28-Gray","name":"Gwen Drawstring Bike Short-28-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                                    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                                    \n

                                    • Dark heather gray rouched bike shorts.
                                    • Fitted. Inseam: 2\".
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"gwen-drawstring-bike-short-28-gray-1942","links":{},"stock":{"item_id":1942,"product_id":1942,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-28-gray-1942.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1935","_score":1,"_source":{"id":1935,"sku":"WSH02-31-Orange","name":"Maxima Drawstring Short-31-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                                    \n

                                    • Light gray run shorts
                                    - cotton polyester.
                                    • Contrast binding.
                                    • 3\" inseam.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-31-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"maxima-drawstring-short-31-orange-1935","links":{},"stock":{"item_id":1935,"product_id":1935,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-31-orange-1935.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1937","_score":1,"_source":{"id":1937,"sku":"WSH02-32-Gray","name":"Maxima Drawstring Short-32-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                                    \n

                                    • Light gray run shorts
                                    - cotton polyester.
                                    • Contrast binding.
                                    • 3\" inseam.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"maxima-drawstring-short-32-gray-1937","links":{},"stock":{"item_id":1937,"product_id":1937,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-32-gray-1937.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1934","_score":1,"_source":{"id":1934,"sku":"WSH02-31-Gray","name":"Maxima Drawstring Short-31-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                                    \n

                                    • Light gray run shorts
                                    - cotton polyester.
                                    • Contrast binding.
                                    • 3\" inseam.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-31-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"maxima-drawstring-short-31-gray-1934","links":{},"stock":{"item_id":1934,"product_id":1934,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-31-gray-1934.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1941","_score":1,"_source":{"id":1941,"sku":"WSH03-28-Blue","name":"Gwen Drawstring Bike Short-28-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                                    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                                    \n

                                    • Dark heather gray rouched bike shorts.
                                    • Fitted. Inseam: 2\".
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"gwen-drawstring-bike-short-28-blue-1941","links":{},"stock":{"item_id":1941,"product_id":1941,"stock_id":1,"qty":21,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-28-blue-1941.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1933","_score":1,"_source":{"id":1933,"sku":"WSH02-30-Yellow","name":"Maxima Drawstring Short-30-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                                    \n

                                    • Light gray run shorts
                                    - cotton polyester.
                                    • Contrast binding.
                                    • 3\" inseam.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-30-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"maxima-drawstring-short-30-yellow-1933","links":{},"stock":{"item_id":1933,"product_id":1933,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-30-yellow-1933.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1943","_score":1,"_source":{"id":1943,"sku":"WSH03-28-Orange","name":"Gwen Drawstring Bike Short-28-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                                    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                                    \n

                                    • Dark heather gray rouched bike shorts.
                                    • Fitted. Inseam: 2\".
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"gwen-drawstring-bike-short-28-orange-1943","links":{},"stock":{"item_id":1943,"product_id":1943,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-28-orange-1943.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1931","_score":1,"_source":{"id":1931,"sku":"WSH02-30-Gray","name":"Maxima Drawstring Short-30-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                                    \n

                                    • Light gray run shorts
                                    - cotton polyester.
                                    • Contrast binding.
                                    • 3\" inseam.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-30-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"maxima-drawstring-short-30-gray-1931","links":{},"stock":{"item_id":1931,"product_id":1931,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-30-gray-1931.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1948","_score":1,"_source":{"id":1948,"sku":"WSH03-30-Gray","name":"Gwen Drawstring Bike Short-30-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                                    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                                    \n

                                    • Dark heather gray rouched bike shorts.
                                    • Fitted. Inseam: 2\".
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-30-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"gwen-drawstring-bike-short-30-gray-1948","links":{},"stock":{"item_id":1948,"product_id":1948,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-30-gray-1948.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1944","_score":1,"_source":{"id":1944,"sku":"WSH03-29-Blue","name":"Gwen Drawstring Bike Short-29-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                                    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                                    \n

                                    • Dark heather gray rouched bike shorts.
                                    • Fitted. Inseam: 2\".
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"gwen-drawstring-bike-short-29-blue-1944","links":{},"stock":{"item_id":1944,"product_id":1944,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-29-blue-1944.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1947","_score":1,"_source":{"id":1947,"sku":"WSH03-30-Blue","name":"Gwen Drawstring Bike Short-30-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                                    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                                    \n

                                    • Dark heather gray rouched bike shorts.
                                    • Fitted. Inseam: 2\".
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-30-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"gwen-drawstring-bike-short-30-blue-1947","links":{},"stock":{"item_id":1947,"product_id":1947,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-30-blue-1947.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1945","_score":1,"_source":{"id":1945,"sku":"WSH03-29-Gray","name":"Gwen Drawstring Bike Short-29-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                                    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                                    \n

                                    • Dark heather gray rouched bike shorts.
                                    • Fitted. Inseam: 2\".
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"gwen-drawstring-bike-short-29-gray-1945","links":{},"stock":{"item_id":1945,"product_id":1945,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-29-gray-1945.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1939","_score":1,"_source":{"id":1939,"sku":"WSH02-32-Yellow","name":"Maxima Drawstring Short-32-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                                    \n

                                    • Light gray run shorts
                                    - cotton polyester.
                                    • Contrast binding.
                                    • 3\" inseam.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-32-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"maxima-drawstring-short-32-yellow-1939","links":{},"stock":{"item_id":1939,"product_id":1939,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-32-yellow-1939.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1901","_score":1,"_source":{"id":1901,"sku":"WP12","name":"Deirdre Relaxed-Fit Capri","attribute_set_id":10,"price":63,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                                    Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                                    \n

                                    • Heather gray capris with mint green waist & accents.
                                    • Comfortable, relaxed fit with high rise.
                                    • Moisture-wicking, 4-way stretch construction.
                                    • Lined with mesh for better support.
                                    • Hidden pocket at waistband.
                                    • Flatlock seams and lined gusset for comfort.

                                    ","image":"/w/p/wp12-gray_main.jpg","small_image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"deirdre-relaxed-fit-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,154,39],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"107","pattern":"195","climate":[205,212,206],"slug":"deirdre-relaxed-fit-capri-1901","links":{},"stock":{"item_id":1901,"product_id":1901,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp12-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp12-gray_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/p/wp12-blue_main.jpg","thumbnail":"/w/p/wp12-blue_main.jpg","color":"50","small_image":"/w/p/wp12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"deirdre-relaxed-fit-capri-28-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"172","price":63,"name":"Deirdre Relaxed-Fit Capri-28-Blue","id":1895,"category_ids":["27","32","35","2"],"sku":"WP12-28-Blue","status":1},{"image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","color":"52","small_image":"/w/p/wp12-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"deirdre-relaxed-fit-capri-28-gray","required_options":"0","msrp_display_actual_price_type":"0","size":"172","price":63,"name":"Deirdre Relaxed-Fit Capri-28-Gray","id":1896,"category_ids":["27","32","35","2"],"sku":"WP12-28-Gray","status":1},{"image":"/w/p/wp12-green_main.jpg","thumbnail":"/w/p/wp12-green_main.jpg","color":"53","small_image":"/w/p/wp12-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"deirdre-relaxed-fit-capri-28-green","required_options":"0","msrp_display_actual_price_type":"0","size":"172","price":63,"name":"Deirdre Relaxed-Fit Capri-28-Green","id":1897,"category_ids":["27","32","35","2"],"sku":"WP12-28-Green","status":1},{"image":"/w/p/wp12-blue_main.jpg","thumbnail":"/w/p/wp12-blue_main.jpg","color":"50","small_image":"/w/p/wp12-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"deirdre-relaxed-fit-capri-29-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"173","price":63,"name":"Deirdre Relaxed-Fit Capri-29-Blue","id":1898,"category_ids":["27","32","35","2"],"sku":"WP12-29-Blue","status":1},{"image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","color":"52","small_image":"/w/p/wp12-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"deirdre-relaxed-fit-capri-29-gray","required_options":"0","msrp_display_actual_price_type":"0","size":"173","price":63,"name":"Deirdre Relaxed-Fit Capri-29-Gray","id":1899,"category_ids":["27","32","35","2"],"sku":"WP12-29-Gray","status":1},{"image":"/w/p/wp12-green_main.jpg","thumbnail":"/w/p/wp12-green_main.jpg","color":"53","small_image":"/w/p/wp12-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"deirdre-relaxed-fit-capri-29-green","required_options":"0","msrp_display_actual_price_type":"0","size":"173","price":63,"name":"Deirdre Relaxed-Fit Capri-29-Green","id":1900,"category_ids":["27","32","35","2"],"sku":"WP12-29-Green","status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"}],"product_id":1901,"id":269,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1901,"id":268,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,52,53],"size_options":[172,173],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-1901.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1924","_score":1,"_source":{"id":1924,"sku":"WSH01","name":"Fiona Fitness Short","attribute_set_id":10,"price":29,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                                    \n

                                    • Black run shorts
                                    - cotton/spandex.
                                    • 5” inseam.
                                    • Machine wash/Line dry.

                                    ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"fiona-fitness-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,151],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[106,105],"pattern":"197","climate":[205,212,206,209],"slug":"fiona-fitness-short-1924","links":{},"stock":{"item_id":1924,"product_id":1924,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","small_image":"/w/s/wsh01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"fiona-fitness-short-28-black","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"172","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Fiona Fitness Short-28-Black","id":1909,"category_ids":["28","8","36","2"],"sku":"WSH01-28-Black","max_regular_price":29,"status":1},{"image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","small_image":"/w/s/wsh01-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"fiona-fitness-short-28-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"172","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Fiona Fitness Short-28-Green","id":1910,"category_ids":["28","8","36","2"],"sku":"WSH01-28-Green","max_regular_price":29,"status":1},{"image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","small_image":"/w/s/wsh01-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"fiona-fitness-short-28-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"172","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Fiona Fitness Short-28-Red","id":1911,"category_ids":["28","8","36","2"],"sku":"WSH01-28-Red","max_regular_price":29,"status":1},{"image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","small_image":"/w/s/wsh01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"fiona-fitness-short-29-black","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"173","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Fiona Fitness Short-29-Black","id":1912,"category_ids":["28","8","36","2"],"sku":"WSH01-29-Black","max_regular_price":29,"status":1},{"image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","small_image":"/w/s/wsh01-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"fiona-fitness-short-29-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"173","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Fiona Fitness Short-29-Green","id":1913,"category_ids":["28","8","36","2"],"sku":"WSH01-29-Green","max_regular_price":29,"status":1},{"image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","small_image":"/w/s/wsh01-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"fiona-fitness-short-29-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"173","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Fiona Fitness Short-29-Red","id":1914,"category_ids":["28","8","36","2"],"sku":"WSH01-29-Red","max_regular_price":29,"status":1},{"image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","small_image":"/w/s/wsh01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"fiona-fitness-short-30-black","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"174","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Fiona Fitness Short-30-Black","id":1915,"category_ids":["28","8","36","2"],"sku":"WSH01-30-Black","max_regular_price":29,"status":1},{"image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","small_image":"/w/s/wsh01-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"fiona-fitness-short-30-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"174","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Fiona Fitness Short-30-Green","id":1916,"category_ids":["28","8","36","2"],"sku":"WSH01-30-Green","max_regular_price":29,"status":1},{"image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","small_image":"/w/s/wsh01-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"fiona-fitness-short-30-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"174","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Fiona Fitness Short-30-Red","id":1917,"category_ids":["28","8","36","2"],"sku":"WSH01-30-Red","max_regular_price":29,"status":1},{"image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","small_image":"/w/s/wsh01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"fiona-fitness-short-31-black","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"175","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Fiona Fitness Short-31-Black","id":1918,"category_ids":["28","8","36","2"],"sku":"WSH01-31-Black","max_regular_price":29,"status":1},{"image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","small_image":"/w/s/wsh01-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"fiona-fitness-short-31-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"175","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Fiona Fitness Short-31-Green","id":1919,"category_ids":["28","8","36","2"],"sku":"WSH01-31-Green","max_regular_price":29,"status":1},{"image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","small_image":"/w/s/wsh01-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"fiona-fitness-short-31-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"175","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Fiona Fitness Short-31-Red","id":1920,"category_ids":["28","8","36","2"],"sku":"WSH01-31-Red","max_regular_price":29,"status":1},{"image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","small_image":"/w/s/wsh01-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"fiona-fitness-short-32-black","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"176","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Fiona Fitness Short-32-Black","id":1921,"category_ids":["28","8","36","2"],"sku":"WSH01-32-Black","max_regular_price":29,"status":1},{"image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","small_image":"/w/s/wsh01-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"fiona-fitness-short-32-green","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"176","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Fiona Fitness Short-32-Green","id":1922,"category_ids":["28","8","36","2"],"sku":"WSH01-32-Green","max_regular_price":29,"status":1},{"image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","small_image":"/w/s/wsh01-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"fiona-fitness-short-32-red","regular_price":29,"required_options":"0","msrp_display_actual_price_type":"0","max_price":29,"minimal_regular_price":29,"size":"176","final_price":29,"special_price":null,"price":29,"minimal_price":29,"name":"Fiona Fitness Short-32-Red","id":1923,"category_ids":["28","8","36","2"],"sku":"WSH01-32-Red","max_regular_price":29,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1924,"id":273,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1924,"id":272,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,53,58],"size_options":[172,173,174,175,176],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-1924.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1908","_score":1,"_source":{"id":1908,"sku":"WP13","name":"Portia Capri","attribute_set_id":10,"price":49,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                                    \n

                                    • Salmon heather capri sweats.
                                    • Relaxed fit, high waist.
                                    • Inseam: 21\".
                                    • Wide elastic waistband.
                                    • Machine wash/dry.

                                    ","image":"/w/p/wp13-orange_main.jpg","small_image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"portia-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":"154","eco_collection":"1","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":"107","pattern":"197","climate":[205,212,206],"slug":"portia-capri-1908","links":{},"stock":{"item_id":1908,"product_id":1908,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp13-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp13-orange_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/p/wp13-blue_main.jpg","thumbnail":"/w/p/wp13-blue_main.jpg","color":"50","small_image":"/w/p/wp13-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"portia-capri-28-blue","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"172","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Portia Capri-28-Blue","id":1902,"category_ids":["27","32","34","2"],"sku":"WP13-28-Blue","max_regular_price":49,"status":1},{"image":"/w/p/wp13-green_main.jpg","thumbnail":"/w/p/wp13-green_main.jpg","color":"53","small_image":"/w/p/wp13-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"portia-capri-28-green","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"172","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Portia Capri-28-Green","id":1903,"category_ids":["27","32","34","2"],"sku":"WP13-28-Green","max_regular_price":49,"status":1},{"image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","color":"56","small_image":"/w/p/wp13-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"portia-capri-28-orange","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"172","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Portia Capri-28-Orange","id":1904,"category_ids":["27","32","34","2"],"sku":"WP13-28-Orange","max_regular_price":49,"status":1},{"image":"/w/p/wp13-blue_main.jpg","thumbnail":"/w/p/wp13-blue_main.jpg","color":"50","small_image":"/w/p/wp13-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"portia-capri-29-blue","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"173","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Portia Capri-29-Blue","id":1905,"category_ids":["27","32","34","2"],"sku":"WP13-29-Blue","max_regular_price":49,"status":1},{"image":"/w/p/wp13-green_main.jpg","thumbnail":"/w/p/wp13-green_main.jpg","color":"53","small_image":"/w/p/wp13-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"portia-capri-29-green","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"173","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Portia Capri-29-Green","id":1906,"category_ids":["27","32","34","2"],"sku":"WP13-29-Green","max_regular_price":49,"status":1},{"image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","color":"56","small_image":"/w/p/wp13-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"portia-capri-29-orange","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"173","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Portia Capri-29-Orange","id":1907,"category_ids":["27","32","34","2"],"sku":"WP13-29-Orange","max_regular_price":49,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":1908,"id":271,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1908,"id":270,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,53,56],"size_options":[172,173],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-1908.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1940","_score":1,"_source":{"id":1940,"sku":"WSH02","name":"Maxima Drawstring Short","attribute_set_id":10,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                                    \n

                                    • Light gray run shorts
                                    - cotton polyester.
                                    • Contrast binding.
                                    • 3\" inseam.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"maxima-drawstring-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_bottom":"106","pattern":"197","climate":[205,212,206,209],"slug":"maxima-drawstring-short-1940","links":{},"stock":{"item_id":1940,"product_id":1940,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","small_image":"/w/s/wsh02-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maxima-drawstring-short-28-gray","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"172","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Maxima Drawstring Short-28-Gray","id":1925,"category_ids":["28","30","2"],"sku":"WSH02-28-Gray","max_regular_price":28,"status":1},{"image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","small_image":"/w/s/wsh02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maxima-drawstring-short-28-orange","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"172","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Maxima Drawstring Short-28-Orange","id":1926,"category_ids":["28","30","2"],"sku":"WSH02-28-Orange","max_regular_price":28,"status":1},{"image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","small_image":"/w/s/wsh02-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maxima-drawstring-short-28-yellow","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"172","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Maxima Drawstring Short-28-Yellow","id":1927,"category_ids":["28","30","2"],"sku":"WSH02-28-Yellow","max_regular_price":28,"status":1},{"image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","small_image":"/w/s/wsh02-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maxima-drawstring-short-29-gray","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"173","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Maxima Drawstring Short-29-Gray","id":1928,"category_ids":["28","30","2"],"sku":"WSH02-29-Gray","max_regular_price":28,"status":1},{"image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","small_image":"/w/s/wsh02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maxima-drawstring-short-29-orange","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"173","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Maxima Drawstring Short-29-Orange","id":1929,"category_ids":["28","30","2"],"sku":"WSH02-29-Orange","max_regular_price":28,"status":1},{"image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","small_image":"/w/s/wsh02-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maxima-drawstring-short-29-yellow","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"173","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Maxima Drawstring Short-29-Yellow","id":1930,"category_ids":["28","30","2"],"sku":"WSH02-29-Yellow","max_regular_price":28,"status":1},{"image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","small_image":"/w/s/wsh02-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maxima-drawstring-short-30-gray","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"174","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Maxima Drawstring Short-30-Gray","id":1931,"category_ids":["28","30","2"],"sku":"WSH02-30-Gray","max_regular_price":28,"status":1},{"image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","small_image":"/w/s/wsh02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maxima-drawstring-short-30-orange","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"174","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Maxima Drawstring Short-30-Orange","id":1932,"category_ids":["28","30","2"],"sku":"WSH02-30-Orange","max_regular_price":28,"status":1},{"image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","small_image":"/w/s/wsh02-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maxima-drawstring-short-30-yellow","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"174","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Maxima Drawstring Short-30-Yellow","id":1933,"category_ids":["28","30","2"],"sku":"WSH02-30-Yellow","max_regular_price":28,"status":1},{"image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","small_image":"/w/s/wsh02-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maxima-drawstring-short-31-gray","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"175","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Maxima Drawstring Short-31-Gray","id":1934,"category_ids":["28","30","2"],"sku":"WSH02-31-Gray","max_regular_price":28,"status":1},{"image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","small_image":"/w/s/wsh02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maxima-drawstring-short-31-orange","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"175","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Maxima Drawstring Short-31-Orange","id":1935,"category_ids":["28","30","2"],"sku":"WSH02-31-Orange","max_regular_price":28,"status":1},{"image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","small_image":"/w/s/wsh02-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maxima-drawstring-short-31-yellow","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"175","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Maxima Drawstring Short-31-Yellow","id":1936,"category_ids":["28","30","2"],"sku":"WSH02-31-Yellow","max_regular_price":28,"status":1},{"image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","small_image":"/w/s/wsh02-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maxima-drawstring-short-32-gray","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"176","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Maxima Drawstring Short-32-Gray","id":1937,"category_ids":["28","30","2"],"sku":"WSH02-32-Gray","max_regular_price":28,"status":1},{"image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","small_image":"/w/s/wsh02-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maxima-drawstring-short-32-orange","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"176","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Maxima Drawstring Short-32-Orange","id":1938,"category_ids":["28","30","2"],"sku":"WSH02-32-Orange","max_regular_price":28,"status":1},{"image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","small_image":"/w/s/wsh02-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"maxima-drawstring-short-32-yellow","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"176","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Maxima Drawstring Short-32-Yellow","id":1939,"category_ids":["28","30","2"],"sku":"WSH02-32-Yellow","max_regular_price":28,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"},{"value_index":60,"label":"Yellow"}],"product_id":1940,"id":275,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1940,"id":274,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[52,56,60],"size_options":[172,173,174,175,176],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-1940.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1884","_score":1,"_source":{"id":1884,"sku":"WP10-29-Black","name":"Daria Bikram Pant-29-Black","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                                    \n

                                    • Heather gray capris with pink striped waist.
                                    • Flatlock seams.
                                    • Interior pocket.

                                    ","image":"/w/p/wp10-black_main.jpg","small_image":"/w/p/wp10-black_main.jpg","thumbnail":"/w/p/wp10-black_main.jpg","color":"49","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"daria-bikram-pant-29-black-1884","links":{},"stock":{"item_id":1884,"product_id":1884,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp10-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-29-black-1884.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1892","_score":1,"_source":{"id":1892,"sku":"WP11-29-Green","name":"Sylvia Capri-29-Green","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                                    \n

                                    • Green striped capri.
                                    • Strategic side seam
                                    • Comfort gusset with lining.
                                    • Flat seaming.
                                    • Wide waistband.
                                    • Moisture wicking.

                                    ","image":"/w/p/wp11-green_main.jpg","small_image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","color":"53","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sylvia-capri-29-green-1892","links":{},"stock":{"item_id":1892,"product_id":1892,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp11-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp11-green_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-29-green-1892.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1879","_score":1,"_source":{"id":1879,"sku":"WP09-29-Purple","name":"Carina Basic Capri-29-Purple","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                                    \n

                                    • Black capris with rouching detail.
                                    • 93% cotton, 7% spandex.
                                    • Elasticized waistband.
                                    • Reinforced seams with exposed topstitching.
                                    • Soft, medium-weight jersey with added stretch.

                                    ","image":"/w/p/wp09-purple_main.jpg","small_image":"/w/p/wp09-purple_main.jpg","thumbnail":"/w/p/wp09-purple_main.jpg","color":"57","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"carina-basic-capri-29-purple-1879","links":{},"stock":{"item_id":1879,"product_id":1879,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp09-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-29-purple-1879.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1877","_score":1,"_source":{"id":1877,"sku":"WP09-29-Black","name":"Carina Basic Capri-29-Black","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                                    \n

                                    • Black capris with rouching detail.
                                    • 93% cotton, 7% spandex.
                                    • Elasticized waistband.
                                    • Reinforced seams with exposed topstitching.
                                    • Soft, medium-weight jersey with added stretch.

                                    ","image":"/w/p/wp09-black_main.jpg","small_image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"carina-basic-capri-29-black-1877","links":{},"stock":{"item_id":1877,"product_id":1877,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp09-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp09-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp09-black_back.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp09-black_outfit.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-29-black-1877.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1876","_score":1,"_source":{"id":1876,"sku":"WP09-28-Purple","name":"Carina Basic Capri-28-Purple","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                                    \n

                                    • Black capris with rouching detail.
                                    • 93% cotton, 7% spandex.
                                    • Elasticized waistband.
                                    • Reinforced seams with exposed topstitching.
                                    • Soft, medium-weight jersey with added stretch.

                                    ","image":"/w/p/wp09-purple_main.jpg","small_image":"/w/p/wp09-purple_main.jpg","thumbnail":"/w/p/wp09-purple_main.jpg","color":"57","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"carina-basic-capri-28-purple-1876","links":{},"stock":{"item_id":1876,"product_id":1876,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp09-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-28-purple-1876.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1893","_score":1,"_source":{"id":1893,"sku":"WP11-29-Red","name":"Sylvia Capri-29-Red","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                                    \n

                                    • Green striped capri.
                                    • Strategic side seam
                                    • Comfort gusset with lining.
                                    • Flat seaming.
                                    • Wide waistband.
                                    • Moisture wicking.

                                    ","image":"/w/p/wp11-red_main.jpg","small_image":"/w/p/wp11-red_main.jpg","thumbnail":"/w/p/wp11-red_main.jpg","color":"58","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sylvia-capri-29-red-1893","links":{},"stock":{"item_id":1893,"product_id":1893,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp11-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-29-red-1893.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1882","_score":1,"_source":{"id":1882,"sku":"WP10-28-Gray","name":"Daria Bikram Pant-28-Gray","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                                    \n

                                    • Heather gray capris with pink striped waist.
                                    • Flatlock seams.
                                    • Interior pocket.

                                    ","image":"/w/p/wp10-gray_main.jpg","small_image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","color":"52","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"daria-bikram-pant-28-gray-1882","links":{},"stock":{"item_id":1882,"product_id":1882,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp10-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp10-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp10-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-28-gray-1882.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1897","_score":1,"_source":{"id":1897,"sku":"WP12-28-Green","name":"Deirdre Relaxed-Fit Capri-28-Green","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                                    Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                                    \n

                                    • Heather gray capris with mint green waist & accents.
                                    • Comfortable, relaxed fit with high rise.
                                    • Moisture-wicking, 4-way stretch construction.
                                    • Lined with mesh for better support.
                                    • Hidden pocket at waistband.
                                    • Flatlock seams and lined gusset for comfort.

                                    ","image":"/w/p/wp12-green_main.jpg","small_image":"/w/p/wp12-green_main.jpg","thumbnail":"/w/p/wp12-green_main.jpg","color":"53","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"deirdre-relaxed-fit-capri-28-green-1897","links":{},"stock":{"item_id":1897,"product_id":1897,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp12-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-28-green-1897.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1896","_score":1,"_source":{"id":1896,"sku":"WP12-28-Gray","name":"Deirdre Relaxed-Fit Capri-28-Gray","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                                    Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                                    \n

                                    • Heather gray capris with mint green waist & accents.
                                    • Comfortable, relaxed fit with high rise.
                                    • Moisture-wicking, 4-way stretch construction.
                                    • Lined with mesh for better support.
                                    • Hidden pocket at waistband.
                                    • Flatlock seams and lined gusset for comfort.

                                    ","image":"/w/p/wp12-gray_main.jpg","small_image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","color":"52","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"deirdre-relaxed-fit-capri-28-gray-1896","links":{},"stock":{"item_id":1896,"product_id":1896,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp12-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp12-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-28-gray-1896.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1895","_score":1,"_source":{"id":1895,"sku":"WP12-28-Blue","name":"Deirdre Relaxed-Fit Capri-28-Blue","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                                    Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                                    \n

                                    • Heather gray capris with mint green waist & accents.
                                    • Comfortable, relaxed fit with high rise.
                                    • Moisture-wicking, 4-way stretch construction.
                                    • Lined with mesh for better support.
                                    • Hidden pocket at waistband.
                                    • Flatlock seams and lined gusset for comfort.

                                    ","image":"/w/p/wp12-blue_main.jpg","small_image":"/w/p/wp12-blue_main.jpg","thumbnail":"/w/p/wp12-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"deirdre-relaxed-fit-capri-28-blue-1895","links":{},"stock":{"item_id":1895,"product_id":1895,"stock_id":1,"qty":80,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp12-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-28-blue-1895.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1891","_score":1,"_source":{"id":1891,"sku":"WP11-29-Blue","name":"Sylvia Capri-29-Blue","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                                    \n

                                    • Green striped capri.
                                    • Strategic side seam
                                    • Comfort gusset with lining.
                                    • Flat seaming.
                                    • Wide waistband.
                                    • Moisture wicking.

                                    ","image":"/w/p/wp11-blue_main.jpg","small_image":"/w/p/wp11-blue_main.jpg","thumbnail":"/w/p/wp11-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sylvia-capri-29-blue-1891","links":{},"stock":{"item_id":1891,"product_id":1891,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp11-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-29-blue-1891.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1900","_score":1,"_source":{"id":1900,"sku":"WP12-29-Green","name":"Deirdre Relaxed-Fit Capri-29-Green","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                                    Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                                    \n

                                    • Heather gray capris with mint green waist & accents.
                                    • Comfortable, relaxed fit with high rise.
                                    • Moisture-wicking, 4-way stretch construction.
                                    • Lined with mesh for better support.
                                    • Hidden pocket at waistband.
                                    • Flatlock seams and lined gusset for comfort.

                                    ","image":"/w/p/wp12-green_main.jpg","small_image":"/w/p/wp12-green_main.jpg","thumbnail":"/w/p/wp12-green_main.jpg","color":"53","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"deirdre-relaxed-fit-capri-29-green-1900","links":{},"stock":{"item_id":1900,"product_id":1900,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp12-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-29-green-1900.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1899","_score":1,"_source":{"id":1899,"sku":"WP12-29-Gray","name":"Deirdre Relaxed-Fit Capri-29-Gray","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                                    Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                                    \n

                                    • Heather gray capris with mint green waist & accents.
                                    • Comfortable, relaxed fit with high rise.
                                    • Moisture-wicking, 4-way stretch construction.
                                    • Lined with mesh for better support.
                                    • Hidden pocket at waistband.
                                    • Flatlock seams and lined gusset for comfort.

                                    ","image":"/w/p/wp12-gray_main.jpg","small_image":"/w/p/wp12-gray_main.jpg","thumbnail":"/w/p/wp12-gray_main.jpg","color":"52","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"deirdre-relaxed-fit-capri-29-gray-1899","links":{},"stock":{"item_id":1899,"product_id":1899,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp12-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp12-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-29-gray-1899.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1894","_score":1,"_source":{"id":1894,"sku":"WP11","name":"Sylvia Capri","attribute_set_id":10,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                                    \n

                                    • Green striped capri.
                                    • Strategic side seam
                                    • Comfort gusset with lining.
                                    • Flat seaming.
                                    • Wide waistband.
                                    • Moisture wicking.

                                    ","image":"/w/p/wp11-green_main.jpg","small_image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sylvia-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,154,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"107","pattern":"199","climate":"205","slug":"sylvia-capri-1894","links":{},"stock":{"item_id":1894,"product_id":1894,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp11-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp11-green_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/p/wp11-blue_main.jpg","thumbnail":"/w/p/wp11-blue_main.jpg","color":"50","small_image":"/w/p/wp11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sylvia-capri-28-blue","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"172","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Sylvia Capri-28-Blue","id":1888,"category_ids":["27","32","2"],"sku":"WP11-28-Blue","max_regular_price":42,"status":1},{"image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","color":"53","small_image":"/w/p/wp11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sylvia-capri-28-green","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"172","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Sylvia Capri-28-Green","id":1889,"category_ids":["27","32","2"],"sku":"WP11-28-Green","max_regular_price":42,"status":1},{"image":"/w/p/wp11-red_main.jpg","thumbnail":"/w/p/wp11-red_main.jpg","color":"58","small_image":"/w/p/wp11-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sylvia-capri-28-red","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"172","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Sylvia Capri-28-Red","id":1890,"category_ids":["27","32","2"],"sku":"WP11-28-Red","max_regular_price":42,"status":1},{"image":"/w/p/wp11-blue_main.jpg","thumbnail":"/w/p/wp11-blue_main.jpg","color":"50","small_image":"/w/p/wp11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sylvia-capri-29-blue","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"173","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Sylvia Capri-29-Blue","id":1891,"category_ids":["27","32","2"],"sku":"WP11-29-Blue","max_regular_price":42,"status":1},{"image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","color":"53","small_image":"/w/p/wp11-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sylvia-capri-29-green","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"173","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Sylvia Capri-29-Green","id":1892,"category_ids":["27","32","2"],"sku":"WP11-29-Green","max_regular_price":42,"status":1},{"image":"/w/p/wp11-red_main.jpg","thumbnail":"/w/p/wp11-red_main.jpg","color":"58","small_image":"/w/p/wp11-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sylvia-capri-29-red","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"173","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Sylvia Capri-29-Red","id":1893,"category_ids":["27","32","2"],"sku":"WP11-29-Red","max_regular_price":42,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1894,"id":267,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1894,"id":266,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,53,58],"size_options":[172,173],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-1894.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1880","_score":1,"_source":{"id":1880,"sku":"WP09","name":"Carina Basic Capri","attribute_set_id":10,"price":51,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                                    \n

                                    • Black capris with rouching detail.
                                    • 93% cotton, 7% spandex.
                                    • Elasticized waistband.
                                    • Reinforced seams with exposed topstitching.
                                    • Soft, medium-weight jersey with added stretch.

                                    ","image":"/w/p/wp09-black_main.jpg","small_image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"carina-basic-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[107,108,109],"pattern":"197","climate":[202,205,206,208,209],"slug":"carina-basic-capri-1880","links":{},"stock":{"item_id":1880,"product_id":1880,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp09-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp09-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp09-black_back.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp09-black_outfit.jpg","pos":4,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","color":"49","small_image":"/w/p/wp09-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"carina-basic-capri-28-black","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"172","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Carina Basic Capri-28-Black","id":1874,"category_ids":["27","32","2"],"sku":"WP09-28-Black","max_regular_price":51,"status":1},{"image":"/w/p/wp09-blue_main.jpg","thumbnail":"/w/p/wp09-blue_main.jpg","color":"50","small_image":"/w/p/wp09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"carina-basic-capri-28-blue","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"172","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Carina Basic Capri-28-Blue","id":1875,"category_ids":["27","32","2"],"sku":"WP09-28-Blue","max_regular_price":51,"status":1},{"image":"/w/p/wp09-purple_main.jpg","thumbnail":"/w/p/wp09-purple_main.jpg","color":"57","small_image":"/w/p/wp09-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"carina-basic-capri-28-purple","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"172","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Carina Basic Capri-28-Purple","id":1876,"category_ids":["27","32","2"],"sku":"WP09-28-Purple","max_regular_price":51,"status":1},{"image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","color":"49","small_image":"/w/p/wp09-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"carina-basic-capri-29-black","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"173","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Carina Basic Capri-29-Black","id":1877,"category_ids":["27","32","2"],"sku":"WP09-29-Black","max_regular_price":51,"status":1},{"image":"/w/p/wp09-blue_main.jpg","thumbnail":"/w/p/wp09-blue_main.jpg","color":"50","small_image":"/w/p/wp09-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"carina-basic-capri-29-blue","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"173","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Carina Basic Capri-29-Blue","id":1878,"category_ids":["27","32","2"],"sku":"WP09-29-Blue","max_regular_price":51,"status":1},{"image":"/w/p/wp09-purple_main.jpg","thumbnail":"/w/p/wp09-purple_main.jpg","color":"57","small_image":"/w/p/wp09-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"carina-basic-capri-29-purple","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"173","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Carina Basic Capri-29-Purple","id":1879,"category_ids":["27","32","2"],"sku":"WP09-29-Purple","max_regular_price":51,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":1880,"id":263,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1880,"id":262,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[172,173],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-1880.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1852","_score":1,"_source":{"id":1852,"sku":"WP05","name":"Sahara Leggings","attribute_set_id":10,"price":75,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":75,"max_price":75,"max_regular_price":75,"minimal_regular_price":75,"special_price":null,"minimal_price":75,"regular_price":75,"description":"

                                    Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

                                    \n

                                    • Pinstripe legging with rouched ankles.
                                    • Secret pocket at waistband.
                                    • Flat seams for comfort.
                                    • Shaped fit with low rise.
                                    • 4-way stretch, moisture-wicking material.

                                    ","image":"/w/p/wp05-gray_main.jpg","small_image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sahara-leggings","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,154],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[109,113,115],"pattern":"197","climate":[204,205,208],"slug":"sahara-leggings-1852","links":{},"stock":{"item_id":1852,"product_id":1852,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp05-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp05-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp05-gray_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/p/wp05-blue_main.jpg","thumbnail":"/w/p/wp05-blue_main.jpg","color":"50","small_image":"/w/p/wp05-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sahara-leggings-28-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"172","price":75,"name":"Sahara Leggings-28-Blue","id":1846,"category_ids":["27","32","34","2"],"sku":"WP05-28-Blue","status":1},{"image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","color":"52","small_image":"/w/p/wp05-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sahara-leggings-28-gray","required_options":"0","msrp_display_actual_price_type":"0","size":"172","price":75,"name":"Sahara Leggings-28-Gray","id":1847,"category_ids":["27","32","34","2"],"sku":"WP05-28-Gray","status":1},{"image":"/w/p/wp05-red_main.jpg","thumbnail":"/w/p/wp05-red_main.jpg","color":"58","small_image":"/w/p/wp05-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sahara-leggings-28-red","required_options":"0","msrp_display_actual_price_type":"0","size":"172","price":75,"name":"Sahara Leggings-28-Red","id":1848,"category_ids":["27","32","34","2"],"sku":"WP05-28-Red","status":1},{"image":"/w/p/wp05-blue_main.jpg","thumbnail":"/w/p/wp05-blue_main.jpg","color":"50","small_image":"/w/p/wp05-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sahara-leggings-29-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"173","price":75,"name":"Sahara Leggings-29-Blue","id":1849,"category_ids":["27","32","34","2"],"sku":"WP05-29-Blue","status":1},{"image":"/w/p/wp05-gray_main.jpg","thumbnail":"/w/p/wp05-gray_main.jpg","color":"52","small_image":"/w/p/wp05-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sahara-leggings-29-gray","required_options":"0","msrp_display_actual_price_type":"0","size":"173","price":75,"name":"Sahara Leggings-29-Gray","id":1850,"category_ids":["27","32","34","2"],"sku":"WP05-29-Gray","status":1},{"image":"/w/p/wp05-red_main.jpg","thumbnail":"/w/p/wp05-red_main.jpg","color":"58","small_image":"/w/p/wp05-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sahara-leggings-29-red","regular_price":75,"required_options":"0","msrp_display_actual_price_type":"0","max_price":75,"minimal_regular_price":75,"size":"173","final_price":75,"special_price":null,"price":75,"minimal_price":75,"name":"Sahara Leggings-29-Red","id":1851,"category_ids":["27","32","34","2"],"sku":"WP05-29-Red","max_regular_price":75,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":58,"label":"Red"}],"product_id":1852,"id":255,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1852,"id":254,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,52,58],"size_options":[172,173],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sahara-leggings-1852.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1859","_score":1,"_source":{"id":1859,"sku":"WP06","name":"Diana Tights","attribute_set_id":10,"price":59,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                                    Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                                    \n

                                    • Black legging with slate details.
                                    • Flat-lock, chafe-free side seams.
                                    • Vented gusset.
                                    • Secret interior pocket.
                                    • Sustainable and recycled fabric.

                                    ","image":"/w/p/wp06-black_main.jpg","small_image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"diana-tights","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[150,38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[107,109],"pattern":"197","climate":[202,204,205,206,208,209],"slug":"diana-tights-1859","links":{},"stock":{"item_id":1859,"product_id":1859,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp06-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp06-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp06-black_back.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp06-black_outfit.jpg","pos":4,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","color":"49","small_image":"/w/p/wp06-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"diana-tights-28-black","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"172","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Diana Tights-28-Black","id":1853,"category_ids":["27","32","34","2"],"sku":"WP06-28-Black","max_regular_price":59,"status":1},{"image":"/w/p/wp06-blue_main.jpg","thumbnail":"/w/p/wp06-blue_main.jpg","color":"50","small_image":"/w/p/wp06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"diana-tights-28-blue","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"172","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Diana Tights-28-Blue","id":1854,"category_ids":["27","32","34","2"],"sku":"WP06-28-Blue","max_regular_price":59,"status":1},{"image":"/w/p/wp06-orange_main.jpg","thumbnail":"/w/p/wp06-orange_main.jpg","color":"56","small_image":"/w/p/wp06-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"diana-tights-28-orange","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"172","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Diana Tights-28-Orange","id":1855,"category_ids":["27","32","34","2"],"sku":"WP06-28-Orange","max_regular_price":59,"status":1},{"image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","color":"49","small_image":"/w/p/wp06-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"diana-tights-29-black","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"173","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Diana Tights-29-Black","id":1856,"category_ids":["27","32","34","2"],"sku":"WP06-29-Black","max_regular_price":59,"status":1},{"image":"/w/p/wp06-blue_main.jpg","thumbnail":"/w/p/wp06-blue_main.jpg","color":"50","small_image":"/w/p/wp06-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"diana-tights-29-blue","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"173","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Diana Tights-29-Blue","id":1857,"category_ids":["27","32","34","2"],"sku":"WP06-29-Blue","max_regular_price":59,"status":1},{"image":"/w/p/wp06-orange_main.jpg","thumbnail":"/w/p/wp06-orange_main.jpg","color":"56","small_image":"/w/p/wp06-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"diana-tights-29-orange","regular_price":59,"required_options":"0","msrp_display_actual_price_type":"0","max_price":59,"minimal_regular_price":59,"size":"173","final_price":59,"special_price":null,"price":59,"minimal_price":59,"name":"Diana Tights-29-Orange","id":1858,"category_ids":["27","32","34","2"],"sku":"WP06-29-Orange","max_regular_price":59,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":1859,"id":257,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1859,"id":256,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[172,173],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-1859.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1866","_score":1,"_source":{"id":1866,"sku":"WP07","name":"Aeon Capri","attribute_set_id":10,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                                    Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                                    \n

                                    • Black capris with teal accents.
                                    • Thick, 3\" flattering waistband.
                                    • Media pocket on inner waistband.
                                    • Dry wick finish for ultimate comfort and dryness.

                                    ","image":"/w/p/wp07-black_main.jpg","small_image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"aeon-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,150,154],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"107","pattern":"195","climate":[205,212,206],"slug":"aeon-capri-1866","links":{},"stock":{"item_id":1866,"product_id":1866,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp07-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp07-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp07-black_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","color":"49","small_image":"/w/p/wp07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aeon-capri-28-black","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"172","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Aeon Capri-28-Black","id":1860,"category_ids":["27","32","35","2"],"sku":"WP07-28-Black","max_regular_price":48,"status":1},{"image":"/w/p/wp07-blue_main.jpg","thumbnail":"/w/p/wp07-blue_main.jpg","color":"50","small_image":"/w/p/wp07-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aeon-capri-28-blue","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"172","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Aeon Capri-28-Blue","id":1861,"category_ids":["27","32","35","2"],"sku":"WP07-28-Blue","max_regular_price":48,"status":1},{"image":"/w/p/wp07-orange_main.jpg","thumbnail":"/w/p/wp07-orange_main.jpg","color":"56","small_image":"/w/p/wp07-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aeon-capri-28-orange","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"172","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Aeon Capri-28-Orange","id":1862,"category_ids":["27","32","35","2"],"sku":"WP07-28-Orange","max_regular_price":48,"status":1},{"image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","color":"49","small_image":"/w/p/wp07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aeon-capri-29-black","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"173","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Aeon Capri-29-Black","id":1863,"category_ids":["27","32","35","2"],"sku":"WP07-29-Black","max_regular_price":48,"status":1},{"image":"/w/p/wp07-blue_main.jpg","thumbnail":"/w/p/wp07-blue_main.jpg","color":"50","small_image":"/w/p/wp07-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aeon-capri-29-blue","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"173","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Aeon Capri-29-Blue","id":1864,"category_ids":["27","32","35","2"],"sku":"WP07-29-Blue","max_regular_price":48,"status":1},{"image":"/w/p/wp07-orange_main.jpg","thumbnail":"/w/p/wp07-orange_main.jpg","color":"56","small_image":"/w/p/wp07-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"aeon-capri-29-orange","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"173","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Aeon Capri-29-Orange","id":1865,"category_ids":["27","32","35","2"],"sku":"WP07-29-Orange","max_regular_price":48,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"}],"product_id":1866,"id":259,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1866,"id":258,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,56],"size_options":[172,173],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-1866.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1873","_score":1,"_source":{"id":1873,"sku":"WP08","name":"Bardot Capri","attribute_set_id":10,"price":48,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                                    Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                                    \n

                                    • Black capris with pink waistband.
                                    • Cropped leggings.
                                    • Waistband drawcord.
                                    • Flat, thin and flattering.
                                    • Made with organic fabric.

                                    ","image":"/w/p/wp08-black_main.jpg","small_image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"bardot-capri","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[150,39,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[107,109],"pattern":"195","climate":[205,212,206,209],"slug":"bardot-capri-1873","links":{},"stock":{"item_id":1873,"product_id":1873,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp08-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp08-black_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","color":"49","small_image":"/w/p/wp08-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bardot-capri-28-black","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"172","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Bardot Capri-28-Black","id":1867,"category_ids":["27","32","2"],"sku":"WP08-28-Black","max_regular_price":48,"status":1},{"image":"/w/p/wp08-green_main.jpg","thumbnail":"/w/p/wp08-green_main.jpg","color":"53","small_image":"/w/p/wp08-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bardot-capri-28-green","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"172","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Bardot Capri-28-Green","id":1868,"category_ids":["27","32","2"],"sku":"WP08-28-Green","max_regular_price":48,"status":1},{"image":"/w/p/wp08-red_main.jpg","thumbnail":"/w/p/wp08-red_main.jpg","color":"58","small_image":"/w/p/wp08-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bardot-capri-28-red","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"172","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Bardot Capri-28-Red","id":1869,"category_ids":["27","32","2"],"sku":"WP08-28-Red","max_regular_price":48,"status":1},{"image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","color":"49","small_image":"/w/p/wp08-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bardot-capri-29-black","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"173","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Bardot Capri-29-Black","id":1870,"category_ids":["27","32","2"],"sku":"WP08-29-Black","max_regular_price":48,"status":1},{"image":"/w/p/wp08-green_main.jpg","thumbnail":"/w/p/wp08-green_main.jpg","color":"53","small_image":"/w/p/wp08-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bardot-capri-29-green","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"173","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Bardot Capri-29-Green","id":1871,"category_ids":["27","32","2"],"sku":"WP08-29-Green","max_regular_price":48,"status":1},{"image":"/w/p/wp08-red_main.jpg","thumbnail":"/w/p/wp08-red_main.jpg","color":"58","small_image":"/w/p/wp08-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bardot-capri-29-red","regular_price":48,"required_options":"0","msrp_display_actual_price_type":"0","max_price":48,"minimal_regular_price":48,"size":"173","final_price":48,"special_price":null,"price":48,"minimal_price":48,"name":"Bardot Capri-29-Red","id":1872,"category_ids":["27","32","2"],"sku":"WP08-29-Red","max_regular_price":48,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":58,"label":"Red"}],"product_id":1873,"id":261,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1873,"id":260,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,53,58],"size_options":[172,173],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-1873.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1887","_score":1,"_source":{"id":1887,"sku":"WP10","name":"Daria Bikram Pant","attribute_set_id":10,"price":51,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                                    \n

                                    • Heather gray capris with pink striped waist.
                                    • Flatlock seams.
                                    • Interior pocket.

                                    ","image":"/w/p/wp10-gray_main.jpg","small_image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"daria-bikram-pant","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,151],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"107","pattern":"195","climate":[202,205,206,208,209],"slug":"daria-bikram-pant-1887","links":{},"stock":{"item_id":1887,"product_id":1887,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp10-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp10-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp10-gray_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/p/wp10-black_main.jpg","thumbnail":"/w/p/wp10-black_main.jpg","color":"49","small_image":"/w/p/wp10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"daria-bikram-pant-28-black","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"172","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Daria Bikram Pant-28-Black","id":1881,"category_ids":["27","32","36","2"],"sku":"WP10-28-Black","max_regular_price":51,"status":1},{"image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","color":"52","small_image":"/w/p/wp10-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"daria-bikram-pant-28-gray","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"172","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Daria Bikram Pant-28-Gray","id":1882,"category_ids":["27","32","36","2"],"sku":"WP10-28-Gray","max_regular_price":51,"status":1},{"image":"/w/p/wp10-white_main.jpg","thumbnail":"/w/p/wp10-white_main.jpg","color":"59","small_image":"/w/p/wp10-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"daria-bikram-pant-28-white","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"172","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Daria Bikram Pant-28-White","id":1883,"category_ids":["27","32","36","2"],"sku":"WP10-28-White","max_regular_price":51,"status":1},{"image":"/w/p/wp10-black_main.jpg","thumbnail":"/w/p/wp10-black_main.jpg","color":"49","small_image":"/w/p/wp10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"daria-bikram-pant-29-black","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"173","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Daria Bikram Pant-29-Black","id":1884,"category_ids":["27","32","36","2"],"sku":"WP10-29-Black","max_regular_price":51,"status":1},{"image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","color":"52","small_image":"/w/p/wp10-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"daria-bikram-pant-29-gray","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"173","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Daria Bikram Pant-29-Gray","id":1885,"category_ids":["27","32","36","2"],"sku":"WP10-29-Gray","max_regular_price":51,"status":1},{"image":"/w/p/wp10-white_main.jpg","thumbnail":"/w/p/wp10-white_main.jpg","color":"59","small_image":"/w/p/wp10-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"daria-bikram-pant-29-white","regular_price":51,"required_options":"0","msrp_display_actual_price_type":"0","max_price":51,"minimal_regular_price":51,"size":"173","final_price":51,"special_price":null,"price":51,"minimal_price":51,"name":"Daria Bikram Pant-29-White","id":1886,"category_ids":["27","32","36","2"],"sku":"WP10-29-White","max_regular_price":51,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":52,"label":"Gray"},{"value_index":59,"label":"White"}],"product_id":1887,"id":265,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1887,"id":264,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,52,59],"size_options":[172,173],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-1887.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1905","_score":1,"_source":{"id":1905,"sku":"WP13-29-Blue","name":"Portia Capri-29-Blue","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                                    \n

                                    • Salmon heather capri sweats.
                                    • Relaxed fit, high waist.
                                    • Inseam: 21\".
                                    • Wide elastic waistband.
                                    • Machine wash/dry.

                                    ","image":"/w/p/wp13-blue_main.jpg","small_image":"/w/p/wp13-blue_main.jpg","thumbnail":"/w/p/wp13-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"portia-capri-29-blue-1905","links":{},"stock":{"item_id":1905,"product_id":1905,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp13-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-29-blue-1905.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1907","_score":1,"_source":{"id":1907,"sku":"WP13-29-Orange","name":"Portia Capri-29-Orange","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                                    \n

                                    • Salmon heather capri sweats.
                                    • Relaxed fit, high waist.
                                    • Inseam: 21\".
                                    • Wide elastic waistband.
                                    • Machine wash/dry.

                                    ","image":"/w/p/wp13-orange_main.jpg","small_image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","color":"56","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"portia-capri-29-orange-1907","links":{},"stock":{"item_id":1907,"product_id":1907,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp13-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp13-orange_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-29-orange-1907.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1914","_score":1,"_source":{"id":1914,"sku":"WSH01-29-Red","name":"Fiona Fitness Short-29-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                                    \n

                                    • Black run shorts
                                    - cotton/spandex.
                                    • 5” inseam.
                                    • Machine wash/Line dry.

                                    ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"fiona-fitness-short-29-red-1914","links":{},"stock":{"item_id":1914,"product_id":1914,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-29-red-1914.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1910","_score":1,"_source":{"id":1910,"sku":"WSH01-28-Green","name":"Fiona Fitness Short-28-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                                    \n

                                    • Black run shorts
                                    - cotton/spandex.
                                    • 5” inseam.
                                    • Machine wash/Line dry.

                                    ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"fiona-fitness-short-28-green-1910","links":{},"stock":{"item_id":1910,"product_id":1910,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-28-green-1910.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1906","_score":1,"_source":{"id":1906,"sku":"WP13-29-Green","name":"Portia Capri-29-Green","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                                    \n

                                    • Salmon heather capri sweats.
                                    • Relaxed fit, high waist.
                                    • Inseam: 21\".
                                    • Wide elastic waistband.
                                    • Machine wash/dry.

                                    ","image":"/w/p/wp13-green_main.jpg","small_image":"/w/p/wp13-green_main.jpg","thumbnail":"/w/p/wp13-green_main.jpg","color":"53","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"portia-capri-29-green-1906","links":{},"stock":{"item_id":1906,"product_id":1906,"stock_id":1,"qty":92,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp13-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-29-green-1906.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1938","_score":1,"_source":{"id":1938,"sku":"WSH02-32-Orange","name":"Maxima Drawstring Short-32-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                                    \n

                                    • Light gray run shorts
                                    - cotton polyester.
                                    • Contrast binding.
                                    • 3\" inseam.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-32-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"maxima-drawstring-short-32-orange-1938","links":{},"stock":{"item_id":1938,"product_id":1938,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-32-orange-1938.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1919","_score":1,"_source":{"id":1919,"sku":"WSH01-31-Green","name":"Fiona Fitness Short-31-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                                    \n

                                    • Black run shorts
                                    - cotton/spandex.
                                    • 5” inseam.
                                    • Machine wash/Line dry.

                                    ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-31-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"fiona-fitness-short-31-green-1919","links":{},"stock":{"item_id":1919,"product_id":1919,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-31-green-1919.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1904","_score":1,"_source":{"id":1904,"sku":"WP13-28-Orange","name":"Portia Capri-28-Orange","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                                    \n

                                    • Salmon heather capri sweats.
                                    • Relaxed fit, high waist.
                                    • Inseam: 21\".
                                    • Wide elastic waistband.
                                    • Machine wash/dry.

                                    ","image":"/w/p/wp13-orange_main.jpg","small_image":"/w/p/wp13-orange_main.jpg","thumbnail":"/w/p/wp13-orange_main.jpg","color":"56","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"portia-capri-28-orange-1904","links":{},"stock":{"item_id":1904,"product_id":1904,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp13-orange_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp13-orange_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-28-orange-1904.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1918","_score":1,"_source":{"id":1918,"sku":"WSH01-31-Black","name":"Fiona Fitness Short-31-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                                    \n

                                    • Black run shorts
                                    - cotton/spandex.
                                    • 5” inseam.
                                    • Machine wash/Line dry.

                                    ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-31-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"fiona-fitness-short-31-black-1918","links":{},"stock":{"item_id":1918,"product_id":1918,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-31-black-1918.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1923","_score":1,"_source":{"id":1923,"sku":"WSH01-32-Red","name":"Fiona Fitness Short-32-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                                    \n

                                    • Black run shorts
                                    - cotton/spandex.
                                    • 5” inseam.
                                    • Machine wash/Line dry.

                                    ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"fiona-fitness-short-32-red-1923","links":{},"stock":{"item_id":1923,"product_id":1923,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-32-red-1923.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1927","_score":1,"_source":{"id":1927,"sku":"WSH02-28-Yellow","name":"Maxima Drawstring Short-28-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                                    \n

                                    • Light gray run shorts
                                    - cotton polyester.
                                    • Contrast binding.
                                    • 3\" inseam.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-28-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"maxima-drawstring-short-28-yellow-1927","links":{},"stock":{"item_id":1927,"product_id":1927,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-28-yellow-1927.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1912","_score":1,"_source":{"id":1912,"sku":"WSH01-29-Black","name":"Fiona Fitness Short-29-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                                    \n

                                    • Black run shorts
                                    - cotton/spandex.
                                    • 5” inseam.
                                    • Machine wash/Line dry.

                                    ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"fiona-fitness-short-29-black-1912","links":{},"stock":{"item_id":1912,"product_id":1912,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-29-black-1912.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1926","_score":1,"_source":{"id":1926,"sku":"WSH02-28-Orange","name":"Maxima Drawstring Short-28-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                                    \n

                                    • Light gray run shorts
                                    - cotton polyester.
                                    • Contrast binding.
                                    • 3\" inseam.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"maxima-drawstring-short-28-orange-1926","links":{},"stock":{"item_id":1926,"product_id":1926,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-28-orange-1926.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1925","_score":1,"_source":{"id":1925,"sku":"WSH02-28-Gray","name":"Maxima Drawstring Short-28-Gray","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                                    \n

                                    • Light gray run shorts
                                    - cotton polyester.
                                    • Contrast binding.
                                    • 3\" inseam.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh02-gray_main.jpg","small_image":"/w/s/wsh02-gray_main.jpg","thumbnail":"/w/s/wsh02-gray_main.jpg","color":"52","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"maxima-drawstring-short-28-gray-1925","links":{},"stock":{"item_id":1925,"product_id":1925,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh02-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh02-gray_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-28-gray-1925.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1936","_score":1,"_source":{"id":1936,"sku":"WSH02-31-Yellow","name":"Maxima Drawstring Short-31-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                                    \n

                                    • Light gray run shorts
                                    - cotton polyester.
                                    • Contrast binding.
                                    • 3\" inseam.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-31-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"maxima-drawstring-short-31-yellow-1936","links":{},"stock":{"item_id":1936,"product_id":1936,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-31-yellow-1936.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1916","_score":1,"_source":{"id":1916,"sku":"WSH01-30-Green","name":"Fiona Fitness Short-30-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                                    \n

                                    • Black run shorts
                                    - cotton/spandex.
                                    • 5” inseam.
                                    • Machine wash/Line dry.

                                    ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-30-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"fiona-fitness-short-30-green-1916","links":{},"stock":{"item_id":1916,"product_id":1916,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-30-green-1916.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1915","_score":1,"_source":{"id":1915,"sku":"WSH01-30-Black","name":"Fiona Fitness Short-30-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                                    \n

                                    • Black run shorts
                                    - cotton/spandex.
                                    • 5” inseam.
                                    • Machine wash/Line dry.

                                    ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-30-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"fiona-fitness-short-30-black-1915","links":{},"stock":{"item_id":1915,"product_id":1915,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-30-black-1915.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1920","_score":1,"_source":{"id":1920,"sku":"WSH01-31-Red","name":"Fiona Fitness Short-31-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                                    \n

                                    • Black run shorts
                                    - cotton/spandex.
                                    • 5” inseam.
                                    • Machine wash/Line dry.

                                    ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-31-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"fiona-fitness-short-31-red-1920","links":{},"stock":{"item_id":1920,"product_id":1920,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-31-red-1920.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1932","_score":1,"_source":{"id":1932,"sku":"WSH02-30-Orange","name":"Maxima Drawstring Short-30-Orange","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                                    \n

                                    • Light gray run shorts
                                    - cotton polyester.
                                    • Contrast binding.
                                    • 3\" inseam.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh02-orange_main.jpg","small_image":"/w/s/wsh02-orange_main.jpg","thumbnail":"/w/s/wsh02-orange_main.jpg","color":"56","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-30-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"maxima-drawstring-short-30-orange-1932","links":{},"stock":{"item_id":1932,"product_id":1932,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh02-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-30-orange-1932.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1949","_score":1,"_source":{"id":1949,"sku":"WSH03-30-Orange","name":"Gwen Drawstring Bike Short-30-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                                    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                                    \n

                                    • Dark heather gray rouched bike shorts.
                                    • Fitted. Inseam: 2\".
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-30-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"gwen-drawstring-bike-short-30-orange-1949","links":{},"stock":{"item_id":1949,"product_id":1949,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-30-orange-1949.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1946","_score":1,"_source":{"id":1946,"sku":"WSH03-29-Orange","name":"Gwen Drawstring Bike Short-29-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                                    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                                    \n

                                    • Dark heather gray rouched bike shorts.
                                    • Fitted. Inseam: 2\".
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"gwen-drawstring-bike-short-29-orange-1946","links":{},"stock":{"item_id":1946,"product_id":1946,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-29-orange-1946.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1930","_score":1,"_source":{"id":1930,"sku":"WSH02-29-Yellow","name":"Maxima Drawstring Short-29-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Even laid-back women like to stay stylish, and that's just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

                                    \n

                                    • Light gray run shorts
                                    - cotton polyester.
                                    • Contrast binding.
                                    • 3\" inseam.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh02-yellow_main.jpg","small_image":"/w/s/wsh02-yellow_main.jpg","thumbnail":"/w/s/wsh02-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"maxima-drawstring-short-29-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"maxima-drawstring-short-29-yellow-1930","links":{},"stock":{"item_id":1930,"product_id":1930,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh02-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/maxima-drawstring-short-29-yellow-1930.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1874","_score":1,"_source":{"id":1874,"sku":"WP09-28-Black","name":"Carina Basic Capri-28-Black","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                                    \n

                                    • Black capris with rouching detail.
                                    • 93% cotton, 7% spandex.
                                    • Elasticized waistband.
                                    • Reinforced seams with exposed topstitching.
                                    • Soft, medium-weight jersey with added stretch.

                                    ","image":"/w/p/wp09-black_main.jpg","small_image":"/w/p/wp09-black_main.jpg","thumbnail":"/w/p/wp09-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"carina-basic-capri-28-black-1874","links":{},"stock":{"item_id":1874,"product_id":1874,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp09-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp09-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp09-black_back.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp09-black_outfit.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-28-black-1874.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1854","_score":1,"_source":{"id":1854,"sku":"WP06-28-Blue","name":"Diana Tights-28-Blue","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                                    Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                                    \n

                                    • Black legging with slate details.
                                    • Flat-lock, chafe-free side seams.
                                    • Vented gusset.
                                    • Secret interior pocket.
                                    • Sustainable and recycled fabric.

                                    ","image":"/w/p/wp06-blue_main.jpg","small_image":"/w/p/wp06-blue_main.jpg","thumbnail":"/w/p/wp06-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"diana-tights-28-blue-1854","links":{},"stock":{"item_id":1854,"product_id":1854,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp06-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-28-blue-1854.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1872","_score":1,"_source":{"id":1872,"sku":"WP08-29-Red","name":"Bardot Capri-29-Red","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                                    Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                                    \n

                                    • Black capris with pink waistband.
                                    • Cropped leggings.
                                    • Waistband drawcord.
                                    • Flat, thin and flattering.
                                    • Made with organic fabric.

                                    ","image":"/w/p/wp08-red_main.jpg","small_image":"/w/p/wp08-red_main.jpg","thumbnail":"/w/p/wp08-red_main.jpg","color":"58","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bardot-capri-29-red-1872","links":{},"stock":{"item_id":1872,"product_id":1872,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp08-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-29-red-1872.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1867","_score":1,"_source":{"id":1867,"sku":"WP08-28-Black","name":"Bardot Capri-28-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                                    Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                                    \n

                                    • Black capris with pink waistband.
                                    • Cropped leggings.
                                    • Waistband drawcord.
                                    • Flat, thin and flattering.
                                    • Made with organic fabric.

                                    ","image":"/w/p/wp08-black_main.jpg","small_image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bardot-capri-28-black-1867","links":{},"stock":{"item_id":1867,"product_id":1867,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp08-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp08-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-28-black-1867.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1870","_score":1,"_source":{"id":1870,"sku":"WP08-29-Black","name":"Bardot Capri-29-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                                    Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                                    \n

                                    • Black capris with pink waistband.
                                    • Cropped leggings.
                                    • Waistband drawcord.
                                    • Flat, thin and flattering.
                                    • Made with organic fabric.

                                    ","image":"/w/p/wp08-black_main.jpg","small_image":"/w/p/wp08-black_main.jpg","thumbnail":"/w/p/wp08-black_main.jpg","color":"49","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bardot-capri-29-black-1870","links":{},"stock":{"item_id":1870,"product_id":1870,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp08-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp08-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-29-black-1870.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1858","_score":1,"_source":{"id":1858,"sku":"WP06-29-Orange","name":"Diana Tights-29-Orange","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                                    Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                                    \n

                                    • Black legging with slate details.
                                    • Flat-lock, chafe-free side seams.
                                    • Vented gusset.
                                    • Secret interior pocket.
                                    • Sustainable and recycled fabric.

                                    ","image":"/w/p/wp06-orange_main.jpg","small_image":"/w/p/wp06-orange_main.jpg","thumbnail":"/w/p/wp06-orange_main.jpg","color":"56","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"diana-tights-29-orange-1858","links":{},"stock":{"item_id":1858,"product_id":1858,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp06-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-29-orange-1858.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1856","_score":1,"_source":{"id":1856,"sku":"WP06-29-Black","name":"Diana Tights-29-Black","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                                    Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                                    \n

                                    • Black legging with slate details.
                                    • Flat-lock, chafe-free side seams.
                                    • Vented gusset.
                                    • Secret interior pocket.
                                    • Sustainable and recycled fabric.

                                    ","image":"/w/p/wp06-black_main.jpg","small_image":"/w/p/wp06-black_main.jpg","thumbnail":"/w/p/wp06-black_main.jpg","color":"49","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"diana-tights-29-black-1856","links":{},"stock":{"item_id":1856,"product_id":1856,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp06-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp06-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp06-black_back.jpg","pos":3,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp06-black_outfit.jpg","pos":4,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-29-black-1856.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1885","_score":1,"_source":{"id":1885,"sku":"WP10-29-Gray","name":"Daria Bikram Pant-29-Gray","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                                    \n

                                    • Heather gray capris with pink striped waist.
                                    • Flatlock seams.
                                    • Interior pocket.

                                    ","image":"/w/p/wp10-gray_main.jpg","small_image":"/w/p/wp10-gray_main.jpg","thumbnail":"/w/p/wp10-gray_main.jpg","color":"52","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"daria-bikram-pant-29-gray-1885","links":{},"stock":{"item_id":1885,"product_id":1885,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp10-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp10-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp10-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-29-gray-1885.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1865","_score":1,"_source":{"id":1865,"sku":"WP07-29-Orange","name":"Aeon Capri-29-Orange","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                                    Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                                    \n

                                    • Black capris with teal accents.
                                    • Thick, 3\" flattering waistband.
                                    • Media pocket on inner waistband.
                                    • Dry wick finish for ultimate comfort and dryness.

                                    ","image":"/w/p/wp07-orange_main.jpg","small_image":"/w/p/wp07-orange_main.jpg","thumbnail":"/w/p/wp07-orange_main.jpg","color":"56","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"aeon-capri-29-orange-1865","links":{},"stock":{"item_id":1865,"product_id":1865,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp07-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-29-orange-1865.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1883","_score":1,"_source":{"id":1883,"sku":"WP10-28-White","name":"Daria Bikram Pant-28-White","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                                    \n

                                    • Heather gray capris with pink striped waist.
                                    • Flatlock seams.
                                    • Interior pocket.

                                    ","image":"/w/p/wp10-white_main.jpg","small_image":"/w/p/wp10-white_main.jpg","thumbnail":"/w/p/wp10-white_main.jpg","color":"59","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"daria-bikram-pant-28-white-1883","links":{},"stock":{"item_id":1883,"product_id":1883,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp10-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-28-white-1883.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1886","_score":1,"_source":{"id":1886,"sku":"WP10-29-White","name":"Daria Bikram Pant-29-White","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                                    \n

                                    • Heather gray capris with pink striped waist.
                                    • Flatlock seams.
                                    • Interior pocket.

                                    ","image":"/w/p/wp10-white_main.jpg","small_image":"/w/p/wp10-white_main.jpg","thumbnail":"/w/p/wp10-white_main.jpg","color":"59","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"daria-bikram-pant-29-white-1886","links":{},"stock":{"item_id":1886,"product_id":1886,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp10-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-29-white-1886.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1878","_score":1,"_source":{"id":1878,"sku":"WP09-29-Blue","name":"Carina Basic Capri-29-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                                    \n

                                    • Black capris with rouching detail.
                                    • 93% cotton, 7% spandex.
                                    • Elasticized waistband.
                                    • Reinforced seams with exposed topstitching.
                                    • Soft, medium-weight jersey with added stretch.

                                    ","image":"/w/p/wp09-blue_main.jpg","small_image":"/w/p/wp09-blue_main.jpg","thumbnail":"/w/p/wp09-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"carina-basic-capri-29-blue-1878","links":{},"stock":{"item_id":1878,"product_id":1878,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp09-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-29-blue-1878.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1875","_score":1,"_source":{"id":1875,"sku":"WP09-28-Blue","name":"Carina Basic Capri-28-Blue","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

                                    \n

                                    • Black capris with rouching detail.
                                    • 93% cotton, 7% spandex.
                                    • Elasticized waistband.
                                    • Reinforced seams with exposed topstitching.
                                    • Soft, medium-weight jersey with added stretch.

                                    ","image":"/w/p/wp09-blue_main.jpg","small_image":"/w/p/wp09-blue_main.jpg","thumbnail":"/w/p/wp09-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"carina-basic-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"carina-basic-capri-28-blue-1875","links":{},"stock":{"item_id":1875,"product_id":1875,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp09-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/carina-basic-capri-28-blue-1875.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1889","_score":1,"_source":{"id":1889,"sku":"WP11-28-Green","name":"Sylvia Capri-28-Green","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                                    \n

                                    • Green striped capri.
                                    • Strategic side seam
                                    • Comfort gusset with lining.
                                    • Flat seaming.
                                    • Wide waistband.
                                    • Moisture wicking.

                                    ","image":"/w/p/wp11-green_main.jpg","small_image":"/w/p/wp11-green_main.jpg","thumbnail":"/w/p/wp11-green_main.jpg","color":"53","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sylvia-capri-28-green-1889","links":{},"stock":{"item_id":1889,"product_id":1889,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp11-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp11-green_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-28-green-1889.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1888","_score":1,"_source":{"id":1888,"sku":"WP11-28-Blue","name":"Sylvia Capri-28-Blue","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                                    \n

                                    • Green striped capri.
                                    • Strategic side seam
                                    • Comfort gusset with lining.
                                    • Flat seaming.
                                    • Wide waistband.
                                    • Moisture wicking.

                                    ","image":"/w/p/wp11-blue_main.jpg","small_image":"/w/p/wp11-blue_main.jpg","thumbnail":"/w/p/wp11-blue_main.jpg","color":"50","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sylvia-capri-28-blue-1888","links":{},"stock":{"item_id":1888,"product_id":1888,"stock_id":1,"qty":76,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp11-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-28-blue-1888.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1881","_score":1,"_source":{"id":1881,"sku":"WP10-28-Black","name":"Daria Bikram Pant-28-Black","attribute_set_id":10,"price":51,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":51,"max_price":51,"max_regular_price":51,"minimal_regular_price":51,"special_price":null,"minimal_price":51,"regular_price":51,"description":"

                                    The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

                                    \n

                                    • Heather gray capris with pink striped waist.
                                    • Flatlock seams.
                                    • Interior pocket.

                                    ","image":"/w/p/wp10-black_main.jpg","small_image":"/w/p/wp10-black_main.jpg","thumbnail":"/w/p/wp10-black_main.jpg","color":"49","category_ids":[27,32,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"daria-bikram-pant-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"daria-bikram-pant-28-black-1881","links":{},"stock":{"item_id":1881,"product_id":1881,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp10-black_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/daria-bikram-pant-28-black-1881.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1890","_score":1,"_source":{"id":1890,"sku":"WP11-28-Red","name":"Sylvia Capri-28-Red","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

                                    \n

                                    • Green striped capri.
                                    • Strategic side seam
                                    • Comfort gusset with lining.
                                    • Flat seaming.
                                    • Wide waistband.
                                    • Moisture wicking.

                                    ","image":"/w/p/wp11-red_main.jpg","small_image":"/w/p/wp11-red_main.jpg","thumbnail":"/w/p/wp11-red_main.jpg","color":"58","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sylvia-capri-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sylvia-capri-28-red-1890","links":{},"stock":{"item_id":1890,"product_id":1890,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp11-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/sylvia-capri-28-red-1890.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1863","_score":1,"_source":{"id":1863,"sku":"WP07-29-Black","name":"Aeon Capri-29-Black","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                                    Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                                    \n

                                    • Black capris with teal accents.
                                    • Thick, 3\" flattering waistband.
                                    • Media pocket on inner waistband.
                                    • Dry wick finish for ultimate comfort and dryness.

                                    ","image":"/w/p/wp07-black_main.jpg","small_image":"/w/p/wp07-black_main.jpg","thumbnail":"/w/p/wp07-black_main.jpg","color":"49","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"aeon-capri-29-black-1863","links":{},"stock":{"item_id":1863,"product_id":1863,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp07-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp07-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/p/wp07-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-29-black-1863.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1857","_score":1,"_source":{"id":1857,"sku":"WP06-29-Blue","name":"Diana Tights-29-Blue","attribute_set_id":10,"price":59,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":59,"max_price":59,"max_regular_price":59,"minimal_regular_price":59,"special_price":null,"minimal_price":59,"regular_price":59,"description":"

                                    Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you'll feel like anything is possible in the capri-style Diana Tights.

                                    \n

                                    • Black legging with slate details.
                                    • Flat-lock, chafe-free side seams.
                                    • Vented gusset.
                                    • Secret interior pocket.
                                    • Sustainable and recycled fabric.

                                    ","image":"/w/p/wp06-blue_main.jpg","small_image":"/w/p/wp06-blue_main.jpg","thumbnail":"/w/p/wp06-blue_main.jpg","color":"50","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"diana-tights-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"diana-tights-29-blue-1857","links":{},"stock":{"item_id":1857,"product_id":1857,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp06-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/diana-tights-29-blue-1857.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1868","_score":1,"_source":{"id":1868,"sku":"WP08-28-Green","name":"Bardot Capri-28-Green","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                                    Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                                    \n

                                    • Black capris with pink waistband.
                                    • Cropped leggings.
                                    • Waistband drawcord.
                                    • Flat, thin and flattering.
                                    • Made with organic fabric.

                                    ","image":"/w/p/wp08-green_main.jpg","small_image":"/w/p/wp08-green_main.jpg","thumbnail":"/w/p/wp08-green_main.jpg","color":"53","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bardot-capri-28-green-1868","links":{},"stock":{"item_id":1868,"product_id":1868,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp08-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-28-green-1868.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1864","_score":1,"_source":{"id":1864,"sku":"WP07-29-Blue","name":"Aeon Capri-29-Blue","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                                    Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

                                    \n

                                    • Black capris with teal accents.
                                    • Thick, 3\" flattering waistband.
                                    • Media pocket on inner waistband.
                                    • Dry wick finish for ultimate comfort and dryness.

                                    ","image":"/w/p/wp07-blue_main.jpg","small_image":"/w/p/wp07-blue_main.jpg","thumbnail":"/w/p/wp07-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"aeon-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"aeon-capri-29-blue-1864","links":{},"stock":{"item_id":1864,"product_id":1864,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp07-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/aeon-capri-29-blue-1864.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1871","_score":1,"_source":{"id":1871,"sku":"WP08-29-Green","name":"Bardot Capri-29-Green","attribute_set_id":10,"price":48,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:26","updated_at":"2017-11-06 12:17:26","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":48,"max_price":48,"max_regular_price":48,"minimal_regular_price":48,"special_price":null,"minimal_price":48,"regular_price":48,"description":"

                                    Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

                                    \n

                                    • Black capris with pink waistband.
                                    • Cropped leggings.
                                    • Waistband drawcord.
                                    • Flat, thin and flattering.
                                    • Made with organic fabric.

                                    ","image":"/w/p/wp08-green_main.jpg","small_image":"/w/p/wp08-green_main.jpg","thumbnail":"/w/p/wp08-green_main.jpg","color":"53","category_ids":[27,32,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bardot-capri-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bardot-capri-29-green-1871","links":{},"stock":{"item_id":1871,"product_id":1871,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp08-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/bardot-capri-29-green-1871.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1903","_score":1,"_source":{"id":1903,"sku":"WP13-28-Green","name":"Portia Capri-28-Green","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.

                                    \n

                                    • Salmon heather capri sweats.
                                    • Relaxed fit, high waist.
                                    • Inseam: 21\".
                                    • Wide elastic waistband.
                                    • Machine wash/dry.

                                    ","image":"/w/p/wp13-green_main.jpg","small_image":"/w/p/wp13-green_main.jpg","thumbnail":"/w/p/wp13-green_main.jpg","color":"53","category_ids":[27,32,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"portia-capri-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"portia-capri-28-green-1903","links":{},"stock":{"item_id":1903,"product_id":1903,"stock_id":1,"qty":94,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp13-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/portia-capri-28-green-1903.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1909","_score":1,"_source":{"id":1909,"sku":"WSH01-28-Black","name":"Fiona Fitness Short-28-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                                    \n

                                    • Black run shorts
                                    - cotton/spandex.
                                    • 5” inseam.
                                    • Machine wash/Line dry.

                                    ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"fiona-fitness-short-28-black-1909","links":{},"stock":{"item_id":1909,"product_id":1909,"stock_id":1,"qty":90,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-28-black-1909.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1911","_score":1,"_source":{"id":1911,"sku":"WSH01-28-Red","name":"Fiona Fitness Short-28-Red","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                                    \n

                                    • Black run shorts
                                    - cotton/spandex.
                                    • 5” inseam.
                                    • Machine wash/Line dry.

                                    ","image":"/w/s/wsh01-red_main.jpg","small_image":"/w/s/wsh01-red_main.jpg","thumbnail":"/w/s/wsh01-red_main.jpg","color":"58","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"fiona-fitness-short-28-red-1911","links":{},"stock":{"item_id":1911,"product_id":1911,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh01-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-28-red-1911.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1921","_score":1,"_source":{"id":1921,"sku":"WSH01-32-Black","name":"Fiona Fitness Short-32-Black","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                                    \n

                                    • Black run shorts
                                    - cotton/spandex.
                                    • 5” inseam.
                                    • Machine wash/Line dry.

                                    ","image":"/w/s/wsh01-black_main.jpg","small_image":"/w/s/wsh01-black_main.jpg","thumbnail":"/w/s/wsh01-black_main.jpg","color":"49","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"fiona-fitness-short-32-black-1921","links":{},"stock":{"item_id":1921,"product_id":1921,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh01-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh01-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-32-black-1921.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1950","_score":1,"_source":{"id":1950,"sku":"WSH03-31-Blue","name":"Gwen Drawstring Bike Short-31-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                                    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                                    \n

                                    • Dark heather gray rouched bike shorts.
                                    • Fitted. Inseam: 2\".
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-31-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"gwen-drawstring-bike-short-31-blue-1950","links":{},"stock":{"item_id":1950,"product_id":1950,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-31-blue-1950.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1898","_score":1,"_source":{"id":1898,"sku":"WP12-29-Blue","name":"Deirdre Relaxed-Fit Capri-29-Blue","attribute_set_id":10,"price":63,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":63,"max_price":63,"max_regular_price":63,"minimal_regular_price":63,"special_price":null,"minimal_price":63,"regular_price":63,"description":"

                                    Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

                                    \n

                                    • Heather gray capris with mint green waist & accents.
                                    • Comfortable, relaxed fit with high rise.
                                    • Moisture-wicking, 4-way stretch construction.
                                    • Lined with mesh for better support.
                                    • Hidden pocket at waistband.
                                    • Flatlock seams and lined gusset for comfort.

                                    ","image":"/w/p/wp12-blue_main.jpg","small_image":"/w/p/wp12-blue_main.jpg","thumbnail":"/w/p/wp12-blue_main.jpg","color":"50","category_ids":[27,32,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"deirdre-relaxed-fit-capri-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"deirdre-relaxed-fit-capri-29-blue-1898","links":{},"stock":{"item_id":1898,"product_id":1898,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/p/wp12-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/pants-women/pants-27","category_id":27,"name":"Pants","slug":"pants-27"},{"path":"promotions/pants-all/pants-32","category_id":32,"name":"Pants","slug":"pants-32"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/pants-women/pants-27/deirdre-relaxed-fit-capri-29-blue-1898.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1913","_score":1,"_source":{"id":1913,"sku":"WSH01-29-Green","name":"Fiona Fitness Short-29-Green","attribute_set_id":10,"price":29,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":29,"max_price":29,"max_regular_price":29,"minimal_regular_price":29,"special_price":null,"minimal_price":29,"regular_price":29,"description":"

                                    Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

                                    \n

                                    • Black run shorts
                                    - cotton/spandex.
                                    • 5” inseam.
                                    • Machine wash/Line dry.

                                    ","image":"/w/s/wsh01-green_main.jpg","small_image":"/w/s/wsh01-green_main.jpg","thumbnail":"/w/s/wsh01-green_main.jpg","color":"53","category_ids":[28,8,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"fiona-fitness-short-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"fiona-fitness-short-29-green-1913","links":{},"stock":{"item_id":1913,"product_id":1913,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh01-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/fiona-fitness-short-29-green-1913.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1963","_score":1,"_source":{"id":1963,"sku":"WSH04-30-Black","name":"Artemis Running Short-30-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                                    \n

                                    • Black rouched shorts with mint waist.
                                    • Soft, lightweight construction.
                                    • LumaTech™ wicking technology.
                                    • Semi-fitted.

                                    ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-30-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"artemis-running-short-30-black-1963","links":{},"stock":{"item_id":1963,"product_id":1963,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-30-black-1963.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1951","_score":1,"_source":{"id":1951,"sku":"WSH03-31-Gray","name":"Gwen Drawstring Bike Short-31-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:27","updated_at":"2017-11-06 12:17:27","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                                    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                                    \n

                                    • Dark heather gray rouched bike shorts.
                                    • Fitted. Inseam: 2\".
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-31-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"gwen-drawstring-bike-short-31-gray-1951","links":{},"stock":{"item_id":1951,"product_id":1951,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-31-gray-1951.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1952","_score":1,"_source":{"id":1952,"sku":"WSH03-31-Orange","name":"Gwen Drawstring Bike Short-31-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                                    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                                    \n

                                    • Dark heather gray rouched bike shorts.
                                    • Fitted. Inseam: 2\".
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-31-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"gwen-drawstring-bike-short-31-orange-1952","links":{},"stock":{"item_id":1952,"product_id":1952,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-31-orange-1952.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1962","_score":1,"_source":{"id":1962,"sku":"WSH04-29-Orange","name":"Artemis Running Short-29-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                                    \n

                                    • Black rouched shorts with mint waist.
                                    • Soft, lightweight construction.
                                    • LumaTech™ wicking technology.
                                    • Semi-fitted.

                                    ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"artemis-running-short-29-orange-1962","links":{},"stock":{"item_id":1962,"product_id":1962,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-29-orange-1962.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1970","_score":1,"_source":{"id":1970,"sku":"WSH04-32-Green","name":"Artemis Running Short-32-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                                    \n

                                    • Black rouched shorts with mint waist.
                                    • Soft, lightweight construction.
                                    • LumaTech™ wicking technology.
                                    • Semi-fitted.

                                    ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"artemis-running-short-32-green-1970","links":{},"stock":{"item_id":1970,"product_id":1970,"stock_id":1,"qty":52,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-32-green-1970.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1953","_score":1,"_source":{"id":1953,"sku":"WSH03-32-Blue","name":"Gwen Drawstring Bike Short-32-Blue","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                                    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                                    \n

                                    • Dark heather gray rouched bike shorts.
                                    • Fitted. Inseam: 2\".
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh03-blue_main.jpg","small_image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"gwen-drawstring-bike-short-32-blue-1953","links":{},"stock":{"item_id":1953,"product_id":1953,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh03-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-32-blue-1953.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1967","_score":1,"_source":{"id":1967,"sku":"WSH04-31-Green","name":"Artemis Running Short-31-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                                    \n

                                    • Black rouched shorts with mint waist.
                                    • Soft, lightweight construction.
                                    • LumaTech™ wicking technology.
                                    • Semi-fitted.

                                    ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-31-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"artemis-running-short-31-green-1967","links":{},"stock":{"item_id":1967,"product_id":1967,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-31-green-1967.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1965","_score":1,"_source":{"id":1965,"sku":"WSH04-30-Orange","name":"Artemis Running Short-30-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                                    \n

                                    • Black rouched shorts with mint waist.
                                    • Soft, lightweight construction.
                                    • LumaTech™ wicking technology.
                                    • Semi-fitted.

                                    ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-30-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"artemis-running-short-30-orange-1965","links":{},"stock":{"item_id":1965,"product_id":1965,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-30-orange-1965.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1980","_score":1,"_source":{"id":1980,"sku":"WSH05-30-Purple","name":"Bess Yoga Short-30-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                                    \n

                                    • Navy cotton shorts with light bue waist detail.
                                    • Front shirred waistband.
                                    • Flat-lock, chafe-free side seams.
                                    • Vented gusset.
                                    • Hidden interior pocket.
                                    • Sustainable and recycled fabric.

                                    ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-30-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"bess-yoga-short-30-purple-1980","links":{},"stock":{"item_id":1980,"product_id":1980,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-30-purple-1980.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1975","_score":1,"_source":{"id":1975,"sku":"WSH05-28-Yellow","name":"Bess Yoga Short-28-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                                    \n

                                    • Navy cotton shorts with light bue waist detail.
                                    • Front shirred waistband.
                                    • Flat-lock, chafe-free side seams.
                                    • Vented gusset.
                                    • Hidden interior pocket.
                                    • Sustainable and recycled fabric.

                                    ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-28-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bess-yoga-short-28-yellow-1975","links":{},"stock":{"item_id":1975,"product_id":1975,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-28-yellow-1975.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1976","_score":1,"_source":{"id":1976,"sku":"WSH05-29-Blue","name":"Bess Yoga Short-29-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                                    \n

                                    • Navy cotton shorts with light bue waist detail.
                                    • Front shirred waistband.
                                    • Flat-lock, chafe-free side seams.
                                    • Vented gusset.
                                    • Hidden interior pocket.
                                    • Sustainable and recycled fabric.

                                    ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bess-yoga-short-29-blue-1976","links":{},"stock":{"item_id":1976,"product_id":1976,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-29-blue-1976.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1989","_score":1,"_source":{"id":1989,"sku":"WSH06-28-Gray","name":"Angel Light Running Short-28-Gray","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                                    \n

                                    • Dark heather gray running shorts.
                                    • Snug fit.
                                    • Elastic waistband.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh06-gray_main.jpg","small_image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","color":"52","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"angel-light-running-short-28-gray-1989","links":{},"stock":{"item_id":1989,"product_id":1989,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh06-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh06-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh06-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-28-gray-1989.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1966","_score":1,"_source":{"id":1966,"sku":"WSH04-31-Black","name":"Artemis Running Short-31-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                                    \n

                                    • Black rouched shorts with mint waist.
                                    • Soft, lightweight construction.
                                    • LumaTech™ wicking technology.
                                    • Semi-fitted.

                                    ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-31-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"artemis-running-short-31-black-1966","links":{},"stock":{"item_id":1966,"product_id":1966,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-31-black-1966.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1985","_score":1,"_source":{"id":1985,"sku":"WSH05-32-Blue","name":"Bess Yoga Short-32-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                                    \n

                                    • Navy cotton shorts with light bue waist detail.
                                    • Front shirred waistband.
                                    • Flat-lock, chafe-free side seams.
                                    • Vented gusset.
                                    • Hidden interior pocket.
                                    • Sustainable and recycled fabric.

                                    ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-32-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"bess-yoga-short-32-blue-1985","links":{},"stock":{"item_id":1985,"product_id":1985,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-32-blue-1985.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1958","_score":1,"_source":{"id":1958,"sku":"WSH04-28-Green","name":"Artemis Running Short-28-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                                    \n

                                    • Black rouched shorts with mint waist.
                                    • Soft, lightweight construction.
                                    • LumaTech™ wicking technology.
                                    • Semi-fitted.

                                    ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"artemis-running-short-28-green-1958","links":{},"stock":{"item_id":1958,"product_id":1958,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-28-green-1958.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1973","_score":1,"_source":{"id":1973,"sku":"WSH05-28-Blue","name":"Bess Yoga Short-28-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                                    \n

                                    • Navy cotton shorts with light bue waist detail.
                                    • Front shirred waistband.
                                    • Flat-lock, chafe-free side seams.
                                    • Vented gusset.
                                    • Hidden interior pocket.
                                    • Sustainable and recycled fabric.

                                    ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bess-yoga-short-28-blue-1973","links":{},"stock":{"item_id":1973,"product_id":1973,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-28-blue-1973.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1957","_score":1,"_source":{"id":1957,"sku":"WSH04-28-Black","name":"Artemis Running Short-28-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                                    \n

                                    • Black rouched shorts with mint waist.
                                    • Soft, lightweight construction.
                                    • LumaTech™ wicking technology.
                                    • Semi-fitted.

                                    ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"artemis-running-short-28-black-1957","links":{},"stock":{"item_id":1957,"product_id":1957,"stock_id":1,"qty":65,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-28-black-1957.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1954","_score":1,"_source":{"id":1954,"sku":"WSH03-32-Gray","name":"Gwen Drawstring Bike Short-32-Gray","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                                    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                                    \n

                                    • Dark heather gray rouched bike shorts.
                                    • Fitted. Inseam: 2\".
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-32-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"gwen-drawstring-bike-short-32-gray-1954","links":{},"stock":{"item_id":1954,"product_id":1954,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-32-gray-1954.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1961","_score":1,"_source":{"id":1961,"sku":"WSH04-29-Green","name":"Artemis Running Short-29-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                                    \n

                                    • Black rouched shorts with mint waist.
                                    • Soft, lightweight construction.
                                    • LumaTech™ wicking technology.
                                    • Semi-fitted.

                                    ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"artemis-running-short-29-green-1961","links":{},"stock":{"item_id":1961,"product_id":1961,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-29-green-1961.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1977","_score":1,"_source":{"id":1977,"sku":"WSH05-29-Purple","name":"Bess Yoga Short-29-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                                    \n

                                    • Navy cotton shorts with light bue waist detail.
                                    • Front shirred waistband.
                                    • Flat-lock, chafe-free side seams.
                                    • Vented gusset.
                                    • Hidden interior pocket.
                                    • Sustainable and recycled fabric.

                                    ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bess-yoga-short-29-purple-1977","links":{},"stock":{"item_id":1977,"product_id":1977,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-29-purple-1977.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1971","_score":1,"_source":{"id":1971,"sku":"WSH04-32-Orange","name":"Artemis Running Short-32-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                                    \n

                                    • Black rouched shorts with mint waist.
                                    • Soft, lightweight construction.
                                    • LumaTech™ wicking technology.
                                    • Semi-fitted.

                                    ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-32-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"artemis-running-short-32-orange-1971","links":{},"stock":{"item_id":1971,"product_id":1971,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-32-orange-1971.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1964","_score":1,"_source":{"id":1964,"sku":"WSH04-30-Green","name":"Artemis Running Short-30-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                                    \n

                                    • Black rouched shorts with mint waist.
                                    • Soft, lightweight construction.
                                    • LumaTech™ wicking technology.
                                    • Semi-fitted.

                                    ","image":"/w/s/wsh04-green_main.jpg","small_image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-30-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"artemis-running-short-30-green-1964","links":{},"stock":{"item_id":1964,"product_id":1964,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh04-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-30-green-1964.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1960","_score":1,"_source":{"id":1960,"sku":"WSH04-29-Black","name":"Artemis Running Short-29-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                                    \n

                                    • Black rouched shorts with mint waist.
                                    • Soft, lightweight construction.
                                    • LumaTech™ wicking technology.
                                    • Semi-fitted.

                                    ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"artemis-running-short-29-black-1960","links":{},"stock":{"item_id":1960,"product_id":1960,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-29-black-1960.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2000","_score":1,"_source":{"id":2000,"sku":"WSH07-29-Blue","name":"Echo Fit Compression Short-29-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                                    Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                                    \n

                                    • Black compression shorts.
                                    • High-waisted cut.
                                    • Compression fit.
                                    • Inseam: 1.0\".
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh07-blue_main.jpg","small_image":"/w/s/wsh07-blue_main.jpg","thumbnail":"/w/s/wsh07-blue_main.jpg","color":"50","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"echo-fit-compression-short-29-blue-2000","links":{},"stock":{"item_id":2000,"product_id":2000,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh07-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-29-blue-2000.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1959","_score":1,"_source":{"id":1959,"sku":"WSH04-28-Orange","name":"Artemis Running Short-28-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                                    \n

                                    • Black rouched shorts with mint waist.
                                    • Soft, lightweight construction.
                                    • LumaTech™ wicking technology.
                                    • Semi-fitted.

                                    ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"artemis-running-short-28-orange-1959","links":{},"stock":{"item_id":1959,"product_id":1959,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-28-orange-1959.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1969","_score":1,"_source":{"id":1969,"sku":"WSH04-32-Black","name":"Artemis Running Short-32-Black","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                                    \n

                                    • Black rouched shorts with mint waist.
                                    • Soft, lightweight construction.
                                    • LumaTech™ wicking technology.
                                    • Semi-fitted.

                                    ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-32-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"artemis-running-short-32-black-1969","links":{},"stock":{"item_id":1969,"product_id":1969,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-32-black-1969.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1981","_score":1,"_source":{"id":1981,"sku":"WSH05-30-Yellow","name":"Bess Yoga Short-30-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                                    \n

                                    • Navy cotton shorts with light bue waist detail.
                                    • Front shirred waistband.
                                    • Flat-lock, chafe-free side seams.
                                    • Vented gusset.
                                    • Hidden interior pocket.
                                    • Sustainable and recycled fabric.

                                    ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-30-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"bess-yoga-short-30-yellow-1981","links":{},"stock":{"item_id":1981,"product_id":1981,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-30-yellow-1981.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1986","_score":1,"_source":{"id":1986,"sku":"WSH05-32-Purple","name":"Bess Yoga Short-32-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                                    \n

                                    • Navy cotton shorts with light bue waist detail.
                                    • Front shirred waistband.
                                    • Flat-lock, chafe-free side seams.
                                    • Vented gusset.
                                    • Hidden interior pocket.
                                    • Sustainable and recycled fabric.

                                    ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"bess-yoga-short-32-purple-1986","links":{},"stock":{"item_id":1986,"product_id":1986,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-32-purple-1986.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1968","_score":1,"_source":{"id":1968,"sku":"WSH04-31-Orange","name":"Artemis Running Short-31-Orange","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                                    \n

                                    • Black rouched shorts with mint waist.
                                    • Soft, lightweight construction.
                                    • LumaTech™ wicking technology.
                                    • Semi-fitted.

                                    ","image":"/w/s/wsh04-orange_main.jpg","small_image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"artemis-running-short-31-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"artemis-running-short-31-orange-1968","links":{},"stock":{"item_id":1968,"product_id":1968,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh04-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-31-orange-1968.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1974","_score":1,"_source":{"id":1974,"sku":"WSH05-28-Purple","name":"Bess Yoga Short-28-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                                    \n

                                    • Navy cotton shorts with light bue waist detail.
                                    • Front shirred waistband.
                                    • Flat-lock, chafe-free side seams.
                                    • Vented gusset.
                                    • Hidden interior pocket.
                                    • Sustainable and recycled fabric.

                                    ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"bess-yoga-short-28-purple-1974","links":{},"stock":{"item_id":1974,"product_id":1974,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-28-purple-1974.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1955","_score":1,"_source":{"id":1955,"sku":"WSH03-32-Orange","name":"Gwen Drawstring Bike Short-32-Orange","attribute_set_id":10,"price":50,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                                    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                                    \n

                                    • Dark heather gray rouched bike shorts.
                                    • Fitted. Inseam: 2\".
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh03-orange_main.jpg","small_image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"gwen-drawstring-bike-short-32-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"gwen-drawstring-bike-short-32-orange-1955","links":{},"stock":{"item_id":1955,"product_id":1955,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh03-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-32-orange-1955.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1978","_score":1,"_source":{"id":1978,"sku":"WSH05-29-Yellow","name":"Bess Yoga Short-29-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                                    \n

                                    • Navy cotton shorts with light bue waist detail.
                                    • Front shirred waistband.
                                    • Flat-lock, chafe-free side seams.
                                    • Vented gusset.
                                    • Hidden interior pocket.
                                    • Sustainable and recycled fabric.

                                    ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-29-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"bess-yoga-short-29-yellow-1978","links":{},"stock":{"item_id":1978,"product_id":1978,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-29-yellow-1978.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1982","_score":1,"_source":{"id":1982,"sku":"WSH05-31-Blue","name":"Bess Yoga Short-31-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                                    \n

                                    • Navy cotton shorts with light bue waist detail.
                                    • Front shirred waistband.
                                    • Flat-lock, chafe-free side seams.
                                    • Vented gusset.
                                    • Hidden interior pocket.
                                    • Sustainable and recycled fabric.

                                    ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-31-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"bess-yoga-short-31-blue-1982","links":{},"stock":{"item_id":1982,"product_id":1982,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-31-blue-1982.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1983","_score":1,"_source":{"id":1983,"sku":"WSH05-31-Purple","name":"Bess Yoga Short-31-Purple","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                                    \n

                                    • Navy cotton shorts with light bue waist detail.
                                    • Front shirred waistband.
                                    • Flat-lock, chafe-free side seams.
                                    • Vented gusset.
                                    • Hidden interior pocket.
                                    • Sustainable and recycled fabric.

                                    ","image":"/w/s/wsh05-purple_main.jpg","small_image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-31-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"bess-yoga-short-31-purple-1983","links":{},"stock":{"item_id":1983,"product_id":1983,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh05-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-31-purple-1983.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1990","_score":1,"_source":{"id":1990,"sku":"WSH06-28-Orange","name":"Angel Light Running Short-28-Orange","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                                    \n

                                    • Dark heather gray running shorts.
                                    • Snug fit.
                                    • Elastic waistband.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh06-orange_main.jpg","small_image":"/w/s/wsh06-orange_main.jpg","thumbnail":"/w/s/wsh06-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"angel-light-running-short-28-orange-1990","links":{},"stock":{"item_id":1990,"product_id":1990,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh06-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-28-orange-1990.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1984","_score":1,"_source":{"id":1984,"sku":"WSH05-31-Yellow","name":"Bess Yoga Short-31-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                                    \n

                                    • Navy cotton shorts with light bue waist detail.
                                    • Front shirred waistband.
                                    • Flat-lock, chafe-free side seams.
                                    • Vented gusset.
                                    • Hidden interior pocket.
                                    • Sustainable and recycled fabric.

                                    ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-31-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"bess-yoga-short-31-yellow-1984","links":{},"stock":{"item_id":1984,"product_id":1984,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-31-yellow-1984.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1999","_score":1,"_source":{"id":1999,"sku":"WSH07-29-Black","name":"Echo Fit Compression Short-29-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                                    Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                                    \n

                                    • Black compression shorts.
                                    • High-waisted cut.
                                    • Compression fit.
                                    • Inseam: 1.0\".
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh07-black_main.jpg","small_image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","color":"49","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"echo-fit-compression-short-29-black-1999","links":{},"stock":{"item_id":1999,"product_id":1999,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh07-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh07-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-29-black-1999.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1992","_score":1,"_source":{"id":1992,"sku":"WSH06-29-Gray","name":"Angel Light Running Short-29-Gray","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                                    \n

                                    • Dark heather gray running shorts.
                                    • Snug fit.
                                    • Elastic waistband.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh06-gray_main.jpg","small_image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","color":"52","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"angel-light-running-short-29-gray-1992","links":{},"stock":{"item_id":1992,"product_id":1992,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh06-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh06-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh06-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-29-gray-1992.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1994","_score":1,"_source":{"id":1994,"sku":"WSH06-29-Purple","name":"Angel Light Running Short-29-Purple","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                                    \n

                                    • Dark heather gray running shorts.
                                    • Snug fit.
                                    • Elastic waistband.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh06-purple_main.jpg","small_image":"/w/s/wsh06-purple_main.jpg","thumbnail":"/w/s/wsh06-purple_main.jpg","color":"57","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"angel-light-running-short-29-purple-1994","links":{},"stock":{"item_id":1994,"product_id":1994,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh06-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-29-purple-1994.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1996","_score":1,"_source":{"id":1996,"sku":"WSH07-28-Black","name":"Echo Fit Compression Short-28-Black","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                                    Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                                    \n

                                    • Black compression shorts.
                                    • High-waisted cut.
                                    • Compression fit.
                                    • Inseam: 1.0\".
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh07-black_main.jpg","small_image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","color":"49","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"echo-fit-compression-short-28-black-1996","links":{},"stock":{"item_id":1996,"product_id":1996,"stock_id":1,"qty":70,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh07-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh07-black_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-28-black-1996.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1979","_score":1,"_source":{"id":1979,"sku":"WSH05-30-Blue","name":"Bess Yoga Short-30-Blue","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                                    \n

                                    • Navy cotton shorts with light bue waist detail.
                                    • Front shirred waistband.
                                    • Flat-lock, chafe-free side seams.
                                    • Vented gusset.
                                    • Hidden interior pocket.
                                    • Sustainable and recycled fabric.

                                    ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-30-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"bess-yoga-short-30-blue-1979","links":{},"stock":{"item_id":1979,"product_id":1979,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-30-blue-1979.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1997","_score":1,"_source":{"id":1997,"sku":"WSH07-28-Blue","name":"Echo Fit Compression Short-28-Blue","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                                    Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                                    \n

                                    • Black compression shorts.
                                    • High-waisted cut.
                                    • Compression fit.
                                    • Inseam: 1.0\".
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh07-blue_main.jpg","small_image":"/w/s/wsh07-blue_main.jpg","thumbnail":"/w/s/wsh07-blue_main.jpg","color":"50","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"echo-fit-compression-short-28-blue-1997","links":{},"stock":{"item_id":1997,"product_id":1997,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh07-blue_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-28-blue-1997.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1987","_score":1,"_source":{"id":1987,"sku":"WSH05-32-Yellow","name":"Bess Yoga Short-32-Yellow","attribute_set_id":10,"price":28,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                                    \n

                                    • Navy cotton shorts with light bue waist detail.
                                    • Front shirred waistband.
                                    • Flat-lock, chafe-free side seams.
                                    • Vented gusset.
                                    • Hidden interior pocket.
                                    • Sustainable and recycled fabric.

                                    ","image":"/w/s/wsh05-yellow_main.jpg","small_image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"bess-yoga-short-32-yellow","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"bess-yoga-short-32-yellow-1987","links":{},"stock":{"item_id":1987,"product_id":1987,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh05-yellow_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-32-yellow-1987.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1991","_score":1,"_source":{"id":1991,"sku":"WSH06-28-Purple","name":"Angel Light Running Short-28-Purple","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                                    \n

                                    • Dark heather gray running shorts.
                                    • Snug fit.
                                    • Elastic waistband.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh06-purple_main.jpg","small_image":"/w/s/wsh06-purple_main.jpg","thumbnail":"/w/s/wsh06-purple_main.jpg","color":"57","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"angel-light-running-short-28-purple-1991","links":{},"stock":{"item_id":1991,"product_id":1991,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh06-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-28-purple-1991.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1998","_score":1,"_source":{"id":1998,"sku":"WSH07-28-Purple","name":"Echo Fit Compression Short-28-Purple","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                                    Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                                    \n

                                    • Black compression shorts.
                                    • High-waisted cut.
                                    • Compression fit.
                                    • Inseam: 1.0\".
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh07-purple_main.jpg","small_image":"/w/s/wsh07-purple_main.jpg","thumbnail":"/w/s/wsh07-purple_main.jpg","color":"57","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"echo-fit-compression-short-28-purple-1998","links":{},"stock":{"item_id":1998,"product_id":1998,"stock_id":1,"qty":91,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh07-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-28-purple-1998.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1993","_score":1,"_source":{"id":1993,"sku":"WSH06-29-Orange","name":"Angel Light Running Short-29-Orange","attribute_set_id":10,"price":42,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                                    \n

                                    • Dark heather gray running shorts.
                                    • Snug fit.
                                    • Elastic waistband.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh06-orange_main.jpg","small_image":"/w/s/wsh06-orange_main.jpg","thumbnail":"/w/s/wsh06-orange_main.jpg","color":"56","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"angel-light-running-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"angel-light-running-short-29-orange-1993","links":{},"stock":{"item_id":1993,"product_id":1993,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh06-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-29-orange-1993.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1956","_score":1,"_source":{"id":1956,"sku":"WSH03","name":"Gwen Drawstring Bike Short","attribute_set_id":10,"price":50,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":50,"max_price":50,"max_regular_price":50,"minimal_regular_price":50,"special_price":null,"minimal_price":50,"regular_price":50,"description":"

                                    For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

                                    \n

                                    • Dark heather gray rouched bike shorts.
                                    • Fitted. Inseam: 2\".
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh03-gray_main.jpg","small_image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","category_ids":[28,8,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"gwen-drawstring-bike-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,154],"eco_collection":"1","performance_fabric":"1","erin_recommends":"0","new":"1","sale":"0","style_bottom":[106,112,105],"pattern":"197","climate":[202,205,212],"slug":"gwen-drawstring-bike-short-1956","links":{},"stock":{"item_id":1956,"product_id":1956,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh03-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh03-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh03-gray_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","small_image":"/w/s/wsh03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwen-drawstring-bike-short-28-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"172","price":50,"name":"Gwen Drawstring Bike Short-28-Blue","id":1941,"category_ids":["28","8","35","2"],"sku":"WSH03-28-Blue","status":1},{"image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","small_image":"/w/s/wsh03-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwen-drawstring-bike-short-28-gray","required_options":"0","msrp_display_actual_price_type":"0","size":"172","price":50,"name":"Gwen Drawstring Bike Short-28-Gray","id":1942,"category_ids":["28","8","35","2"],"sku":"WSH03-28-Gray","status":1},{"image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","small_image":"/w/s/wsh03-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwen-drawstring-bike-short-28-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"172","price":50,"name":"Gwen Drawstring Bike Short-28-Orange","id":1943,"category_ids":["28","8","35","2"],"sku":"WSH03-28-Orange","status":1},{"image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","small_image":"/w/s/wsh03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwen-drawstring-bike-short-29-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"173","price":50,"name":"Gwen Drawstring Bike Short-29-Blue","id":1944,"category_ids":["28","8","35","2"],"sku":"WSH03-29-Blue","status":1},{"image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","small_image":"/w/s/wsh03-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwen-drawstring-bike-short-29-gray","required_options":"0","msrp_display_actual_price_type":"0","size":"173","price":50,"name":"Gwen Drawstring Bike Short-29-Gray","id":1945,"category_ids":["28","8","35","2"],"sku":"WSH03-29-Gray","status":1},{"image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","small_image":"/w/s/wsh03-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwen-drawstring-bike-short-29-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"173","price":50,"name":"Gwen Drawstring Bike Short-29-Orange","id":1946,"category_ids":["28","8","35","2"],"sku":"WSH03-29-Orange","status":1},{"image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","small_image":"/w/s/wsh03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwen-drawstring-bike-short-30-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"174","price":50,"name":"Gwen Drawstring Bike Short-30-Blue","id":1947,"category_ids":["28","8","35","2"],"sku":"WSH03-30-Blue","status":1},{"image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","small_image":"/w/s/wsh03-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwen-drawstring-bike-short-30-gray","required_options":"0","msrp_display_actual_price_type":"0","size":"174","price":50,"name":"Gwen Drawstring Bike Short-30-Gray","id":1948,"category_ids":["28","8","35","2"],"sku":"WSH03-30-Gray","status":1},{"image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","small_image":"/w/s/wsh03-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwen-drawstring-bike-short-30-orange","required_options":"0","msrp_display_actual_price_type":"0","size":"174","price":50,"name":"Gwen Drawstring Bike Short-30-Orange","id":1949,"category_ids":["28","8","35","2"],"sku":"WSH03-30-Orange","status":1},{"image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","small_image":"/w/s/wsh03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwen-drawstring-bike-short-31-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"175","price":50,"name":"Gwen Drawstring Bike Short-31-Blue","id":1950,"category_ids":["28","8","35","2"],"sku":"WSH03-31-Blue","status":1},{"image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","small_image":"/w/s/wsh03-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwen-drawstring-bike-short-31-gray","regular_price":50,"required_options":"0","msrp_display_actual_price_type":"0","max_price":50,"minimal_regular_price":50,"size":"175","final_price":50,"special_price":null,"price":50,"minimal_price":50,"name":"Gwen Drawstring Bike Short-31-Gray","id":1951,"category_ids":["28","8","35","2"],"sku":"WSH03-31-Gray","max_regular_price":50,"status":1},{"image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","small_image":"/w/s/wsh03-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwen-drawstring-bike-short-31-orange","regular_price":50,"required_options":"0","msrp_display_actual_price_type":"0","max_price":50,"minimal_regular_price":50,"size":"175","final_price":50,"special_price":null,"price":50,"minimal_price":50,"name":"Gwen Drawstring Bike Short-31-Orange","id":1952,"category_ids":["28","8","35","2"],"sku":"WSH03-31-Orange","max_regular_price":50,"status":1},{"image":"/w/s/wsh03-blue_main.jpg","thumbnail":"/w/s/wsh03-blue_main.jpg","color":"50","small_image":"/w/s/wsh03-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwen-drawstring-bike-short-32-blue","regular_price":50,"required_options":"0","msrp_display_actual_price_type":"0","max_price":50,"minimal_regular_price":50,"size":"176","final_price":50,"special_price":null,"price":50,"minimal_price":50,"name":"Gwen Drawstring Bike Short-32-Blue","id":1953,"category_ids":["28","8","35","2"],"sku":"WSH03-32-Blue","max_regular_price":50,"status":1},{"image":"/w/s/wsh03-gray_main.jpg","thumbnail":"/w/s/wsh03-gray_main.jpg","color":"52","small_image":"/w/s/wsh03-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwen-drawstring-bike-short-32-gray","regular_price":50,"required_options":"0","msrp_display_actual_price_type":"0","max_price":50,"minimal_regular_price":50,"size":"176","final_price":50,"special_price":null,"price":50,"minimal_price":50,"name":"Gwen Drawstring Bike Short-32-Gray","id":1954,"category_ids":["28","8","35","2"],"sku":"WSH03-32-Gray","max_regular_price":50,"status":1},{"image":"/w/s/wsh03-orange_main.jpg","thumbnail":"/w/s/wsh03-orange_main.jpg","color":"56","small_image":"/w/s/wsh03-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"gwen-drawstring-bike-short-32-orange","regular_price":50,"required_options":"0","msrp_display_actual_price_type":"0","max_price":50,"minimal_regular_price":50,"size":"176","final_price":50,"special_price":null,"price":50,"minimal_price":50,"name":"Gwen Drawstring Bike Short-32-Orange","id":1955,"category_ids":["28","8","35","2"],"sku":"WSH03-32-Orange","max_regular_price":50,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"}],"product_id":1956,"id":277,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1956,"id":276,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,52,56],"size_options":[172,173,174,175,176],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/gwen-drawstring-bike-short-1956.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1972","_score":1,"_source":{"id":1972,"sku":"WSH04","name":"Artemis Running Short","attribute_set_id":10,"price":45,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

                                    \n

                                    • Black rouched shorts with mint waist.
                                    • Soft, lightweight construction.
                                    • LumaTech™ wicking technology.
                                    • Semi-fitted.

                                    ","image":"/w/s/wsh04-black_main.jpg","small_image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"artemis-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"106","pattern":"198","climate":[202,205,212,206,209],"slug":"artemis-running-short-1972","links":{},"stock":{"item_id":1972,"product_id":1972,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"tsk":1568838059181,"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":53,"label":"Green"},{"value_index":56,"label":"Orange"}],"product_id":1972,"id":279,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1972,"id":278,"label":"Size","position":0,"attribute_code":"size"}],"configurable_children":[{"image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","small_image":"/w/s/wsh04-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"artemis-running-short-28-black","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"172","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Artemis Running Short-28-Black","id":1957,"category_ids":["28"],"sku":"WSH04-28-Black","max_regular_price":45,"status":1},{"image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","small_image":"/w/s/wsh04-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"artemis-running-short-28-green","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"172","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Artemis Running Short-28-Green","id":1958,"category_ids":["28"],"sku":"WSH04-28-Green","max_regular_price":45,"status":1},{"image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","small_image":"/w/s/wsh04-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"artemis-running-short-28-orange","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"172","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Artemis Running Short-28-Orange","id":1959,"category_ids":["28"],"sku":"WSH04-28-Orange","max_regular_price":45,"status":1},{"image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","small_image":"/w/s/wsh04-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"artemis-running-short-29-black","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"173","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Artemis Running Short-29-Black","id":1960,"category_ids":["28"],"sku":"WSH04-29-Black","max_regular_price":45,"status":1},{"image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","small_image":"/w/s/wsh04-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"artemis-running-short-29-green","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"173","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Artemis Running Short-29-Green","id":1961,"category_ids":["28"],"sku":"WSH04-29-Green","max_regular_price":45,"status":1},{"image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","small_image":"/w/s/wsh04-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"artemis-running-short-29-orange","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"173","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Artemis Running Short-29-Orange","id":1962,"category_ids":["28"],"sku":"WSH04-29-Orange","max_regular_price":45,"status":1},{"image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","small_image":"/w/s/wsh04-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"artemis-running-short-30-black","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"174","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Artemis Running Short-30-Black","id":1963,"category_ids":["28"],"sku":"WSH04-30-Black","max_regular_price":45,"status":1},{"image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","small_image":"/w/s/wsh04-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"artemis-running-short-30-green","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"174","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Artemis Running Short-30-Green","id":1964,"category_ids":["28"],"sku":"WSH04-30-Green","max_regular_price":45,"status":1},{"image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","small_image":"/w/s/wsh04-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"artemis-running-short-30-orange","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"174","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Artemis Running Short-30-Orange","id":1965,"category_ids":["28"],"sku":"WSH04-30-Orange","max_regular_price":45,"status":1},{"image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","small_image":"/w/s/wsh04-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"artemis-running-short-31-black","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"175","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Artemis Running Short-31-Black","id":1966,"category_ids":["28"],"sku":"WSH04-31-Black","max_regular_price":45,"status":1},{"image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","small_image":"/w/s/wsh04-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"artemis-running-short-31-green","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"175","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Artemis Running Short-31-Green","id":1967,"category_ids":["28"],"sku":"WSH04-31-Green","max_regular_price":45,"status":1},{"image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","small_image":"/w/s/wsh04-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"artemis-running-short-31-orange","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"175","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Artemis Running Short-31-Orange","id":1968,"category_ids":["28"],"sku":"WSH04-31-Orange","max_regular_price":45,"status":1},{"image":"/w/s/wsh04-black_main.jpg","thumbnail":"/w/s/wsh04-black_main.jpg","color":"49","small_image":"/w/s/wsh04-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"artemis-running-short-32-black","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"176","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Artemis Running Short-32-Black","id":1969,"category_ids":["28"],"sku":"WSH04-32-Black","max_regular_price":45,"status":1},{"image":"/w/s/wsh04-green_main.jpg","thumbnail":"/w/s/wsh04-green_main.jpg","color":"53","small_image":"/w/s/wsh04-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"artemis-running-short-32-green","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"176","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Artemis Running Short-32-Green","id":1970,"category_ids":["28"],"sku":"WSH04-32-Green","max_regular_price":45,"status":1},{"image":"/w/s/wsh04-orange_main.jpg","thumbnail":"/w/s/wsh04-orange_main.jpg","color":"56","small_image":"/w/s/wsh04-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"artemis-running-short-32-orange","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"176","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Artemis Running Short-32-Orange","id":1971,"category_ids":["28"],"sku":"WSH04-32-Orange","max_regular_price":45,"status":1}],"size_options":[172,173,174,175,176],"color_options":[49,53,56],"url_path":"women/bottoms-women/shorts-women/shorts-28/artemis-running-short-1972.html","media_gallery":[{"vid":null,"image":"/w/s/wsh04-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh04-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh04-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}]}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1988","_score":1,"_source":{"id":1988,"sku":"WSH05","name":"Bess Yoga Short","attribute_set_id":10,"price":28,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":28,"max_price":28,"max_regular_price":28,"minimal_regular_price":28,"special_price":null,"minimal_price":28,"regular_price":28,"description":"

                                    Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

                                    \n

                                    • Navy cotton shorts with light bue waist detail.
                                    • Front shirred waistband.
                                    • Flat-lock, chafe-free side seams.
                                    • Vented gusset.
                                    • Hidden interior pocket.
                                    • Sustainable and recycled fabric.

                                    ","image":"/w/s/wsh05-blue_main.jpg","small_image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","category_ids":[28,30,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"bess-yoga-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[33,156,36],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"1","style_bottom":"106","pattern":"198","climate":[202,212,209],"slug":"bess-yoga-short-1988","links":{},"stock":{"item_id":1988,"product_id":1988,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh05-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh05-blue_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","small_image":"/w/s/wsh05-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bess-yoga-short-28-blue","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"172","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Bess Yoga Short-28-Blue","id":1973,"category_ids":["28","30","2"],"sku":"WSH05-28-Blue","max_regular_price":28,"status":1},{"image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","small_image":"/w/s/wsh05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bess-yoga-short-28-purple","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"172","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Bess Yoga Short-28-Purple","id":1974,"category_ids":["28","30","2"],"sku":"WSH05-28-Purple","max_regular_price":28,"status":1},{"image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","small_image":"/w/s/wsh05-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bess-yoga-short-28-yellow","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"172","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Bess Yoga Short-28-Yellow","id":1975,"category_ids":["28","30","2"],"sku":"WSH05-28-Yellow","max_regular_price":28,"status":1},{"image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","small_image":"/w/s/wsh05-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bess-yoga-short-29-blue","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"173","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Bess Yoga Short-29-Blue","id":1976,"category_ids":["28","30","2"],"sku":"WSH05-29-Blue","max_regular_price":28,"status":1},{"image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","small_image":"/w/s/wsh05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bess-yoga-short-29-purple","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"173","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Bess Yoga Short-29-Purple","id":1977,"category_ids":["28","30","2"],"sku":"WSH05-29-Purple","max_regular_price":28,"status":1},{"image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","small_image":"/w/s/wsh05-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bess-yoga-short-29-yellow","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"173","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Bess Yoga Short-29-Yellow","id":1978,"category_ids":["28","30","2"],"sku":"WSH05-29-Yellow","max_regular_price":28,"status":1},{"image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","small_image":"/w/s/wsh05-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bess-yoga-short-30-blue","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"174","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Bess Yoga Short-30-Blue","id":1979,"category_ids":["28","30","2"],"sku":"WSH05-30-Blue","max_regular_price":28,"status":1},{"image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","small_image":"/w/s/wsh05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bess-yoga-short-30-purple","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"174","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Bess Yoga Short-30-Purple","id":1980,"category_ids":["28","30","2"],"sku":"WSH05-30-Purple","max_regular_price":28,"status":1},{"image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","small_image":"/w/s/wsh05-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bess-yoga-short-30-yellow","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"174","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Bess Yoga Short-30-Yellow","id":1981,"category_ids":["28","30","2"],"sku":"WSH05-30-Yellow","max_regular_price":28,"status":1},{"image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","small_image":"/w/s/wsh05-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bess-yoga-short-31-blue","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"175","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Bess Yoga Short-31-Blue","id":1982,"category_ids":["28","30","2"],"sku":"WSH05-31-Blue","max_regular_price":28,"status":1},{"image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","small_image":"/w/s/wsh05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bess-yoga-short-31-purple","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"175","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Bess Yoga Short-31-Purple","id":1983,"category_ids":["28","30","2"],"sku":"WSH05-31-Purple","max_regular_price":28,"status":1},{"image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","small_image":"/w/s/wsh05-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bess-yoga-short-31-yellow","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"175","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Bess Yoga Short-31-Yellow","id":1984,"category_ids":["28","30","2"],"sku":"WSH05-31-Yellow","max_regular_price":28,"status":1},{"image":"/w/s/wsh05-blue_main.jpg","thumbnail":"/w/s/wsh05-blue_main.jpg","color":"50","small_image":"/w/s/wsh05-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bess-yoga-short-32-blue","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"176","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Bess Yoga Short-32-Blue","id":1985,"category_ids":["28","30","2"],"sku":"WSH05-32-Blue","max_regular_price":28,"status":1},{"image":"/w/s/wsh05-purple_main.jpg","thumbnail":"/w/s/wsh05-purple_main.jpg","color":"57","small_image":"/w/s/wsh05-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bess-yoga-short-32-purple","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"176","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Bess Yoga Short-32-Purple","id":1986,"category_ids":["28","30","2"],"sku":"WSH05-32-Purple","max_regular_price":28,"status":1},{"image":"/w/s/wsh05-yellow_main.jpg","thumbnail":"/w/s/wsh05-yellow_main.jpg","color":"60","small_image":"/w/s/wsh05-yellow_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"bess-yoga-short-32-yellow","regular_price":28,"required_options":"0","msrp_display_actual_price_type":"0","max_price":28,"minimal_regular_price":28,"size":"176","final_price":28,"special_price":null,"price":28,"minimal_price":28,"name":"Bess Yoga Short-32-Yellow","id":1987,"category_ids":["28","30","2"],"sku":"WSH05-32-Yellow","max_regular_price":28,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"},{"value_index":60,"label":"Yellow"}],"product_id":1988,"id":281,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":1988,"id":280,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,57,60],"size_options":[172,173,174,175,176],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"promotions/women-sale/women-sale-30","category_id":30,"name":"Women Sale","slug":"women-sale-30"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/bess-yoga-short-1988.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"1995","_score":1,"_source":{"id":1995,"sku":"WSH06","name":"Angel Light Running Short","attribute_set_id":10,"price":42,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":42,"max_price":42,"max_regular_price":42,"minimal_regular_price":42,"special_price":null,"minimal_price":42,"regular_price":42,"description":"

                                    The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

                                    \n

                                    • Dark heather gray running shorts.
                                    • Snug fit.
                                    • Elastic waistband.
                                    • Cocona® performance fabric.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh06-gray_main.jpg","small_image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"angel-light-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,36,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":[106,112],"pattern":"197","climate":[202,205,212],"slug":"angel-light-running-short-1995","links":{},"stock":{"item_id":1995,"product_id":1995,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh06-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh06-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh06-gray_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","color":"52","small_image":"/w/s/wsh06-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"angel-light-running-short-28-gray","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"172","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Angel Light Running Short-28-Gray","id":1989,"category_ids":["28"],"sku":"WSH06-28-Gray","max_regular_price":42,"status":1},{"image":"/w/s/wsh06-orange_main.jpg","thumbnail":"/w/s/wsh06-orange_main.jpg","color":"56","small_image":"/w/s/wsh06-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"angel-light-running-short-28-orange","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"172","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Angel Light Running Short-28-Orange","id":1990,"category_ids":["28"],"sku":"WSH06-28-Orange","max_regular_price":42,"status":1},{"image":"/w/s/wsh06-purple_main.jpg","thumbnail":"/w/s/wsh06-purple_main.jpg","color":"57","small_image":"/w/s/wsh06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"angel-light-running-short-28-purple","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"172","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Angel Light Running Short-28-Purple","id":1991,"category_ids":["28"],"sku":"WSH06-28-Purple","max_regular_price":42,"status":1},{"image":"/w/s/wsh06-gray_main.jpg","thumbnail":"/w/s/wsh06-gray_main.jpg","color":"52","small_image":"/w/s/wsh06-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"angel-light-running-short-29-gray","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"173","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Angel Light Running Short-29-Gray","id":1992,"category_ids":["28"],"sku":"WSH06-29-Gray","max_regular_price":42,"status":1},{"image":"/w/s/wsh06-orange_main.jpg","thumbnail":"/w/s/wsh06-orange_main.jpg","color":"56","small_image":"/w/s/wsh06-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"angel-light-running-short-29-orange","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"173","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Angel Light Running Short-29-Orange","id":1993,"category_ids":["28"],"sku":"WSH06-29-Orange","max_regular_price":42,"status":1},{"image":"/w/s/wsh06-purple_main.jpg","thumbnail":"/w/s/wsh06-purple_main.jpg","color":"57","small_image":"/w/s/wsh06-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"angel-light-running-short-29-purple","regular_price":42,"required_options":"0","msrp_display_actual_price_type":"0","max_price":42,"minimal_regular_price":42,"size":"173","final_price":42,"special_price":null,"price":42,"minimal_price":42,"name":"Angel Light Running Short-29-Purple","id":1994,"category_ids":["28"],"sku":"WSH06-29-Purple","max_regular_price":42,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":52,"label":"Gray"},{"value_index":56,"label":"Orange"},{"value_index":57,"label":"Purple"}],"product_id":1995,"id":283,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":1995,"id":282,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[52,56,57],"size_options":[172,173],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/angel-light-running-short-1995.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2006","_score":1,"_source":{"id":2006,"sku":"WSH08-31-Purple","name":"Sybil Running Short-31-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"description":"

                                    Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

                                    \n

                                    • Blue running shorts with green waist.
                                    • Drawstring-adjustable waist.
                                    • 4\" inseam. Machine wash/line dry.

                                    ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-31-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"sybil-running-short-31-purple-2006","links":{},"stock":{"item_id":2006,"product_id":2006,"stock_id":1,"qty":0,"is_in_stock":false,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":"2019-01-14 09:38:48","is_decimal_divided":false,"stock_status_changed_auto":1},"media_gallery":[{"vid":null,"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-31-purple-2006.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2003","_score":1,"_source":{"id":2003,"sku":"WSH08-28-Purple","name":"Sybil Running Short-28-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                                    Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

                                    \n

                                    • Blue running shorts with green waist.
                                    • Drawstring-adjustable waist.
                                    • 4\" inseam. Machine wash/line dry.

                                    ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"sybil-running-short-28-purple-2003","links":{},"stock":{"item_id":2003,"product_id":2003,"stock_id":1,"qty":63,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-28-purple-2003.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2038","_score":1,"_source":{"id":2038,"sku":"WSH12-30-Red","name":"Erika Running Short-30-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                                    \n

                                    • Seafoam pattern running shorts.
                                    • Elastic waistband.
                                    • Snug fit.
                                    • 4'' inseam.
                                    • 76% premium brushed Nylon / 24% Spandex.

                                    ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-30-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"erika-running-short-30-red-2038","links":{},"stock":{"item_id":2038,"product_id":2038,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-30-red-2038.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2010","_score":1,"_source":{"id":2010,"sku":"WSH09-28-Green","name":"Mimi All-Purpose Short-28-Green","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                                    You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                                    \n

                                    • Gray/seafoam two-layer shorts.
                                    • Water-resistant construction.
                                    • Inner mesh brief for breathable support.
                                    • 2.0\" inseam.
                                    • Reflective trim for visibility.

                                    ","image":"/w/s/wsh09-green_main.jpg","small_image":"/w/s/wsh09-green_main.jpg","thumbnail":"/w/s/wsh09-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-28-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"mimi-all-purpose-short-28-green-2010","links":{},"stock":{"item_id":2010,"product_id":2010,"stock_id":1,"qty":77,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh09-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-28-green-2010.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2005","_score":1,"_source":{"id":2005,"sku":"WSH08-30-Purple","name":"Sybil Running Short-30-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                                    Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

                                    \n

                                    • Blue running shorts with green waist.
                                    • Drawstring-adjustable waist.
                                    • 4\" inseam. Machine wash/line dry.

                                    ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-30-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"sybil-running-short-30-purple-2005","links":{},"stock":{"item_id":2005,"product_id":2005,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-30-purple-2005.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2009","_score":1,"_source":{"id":2009,"sku":"WSH09-28-Gray","name":"Mimi All-Purpose Short-28-Gray","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                                    You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                                    \n

                                    • Gray/seafoam two-layer shorts.
                                    • Water-resistant construction.
                                    • Inner mesh brief for breathable support.
                                    • 2.0\" inseam.
                                    • Reflective trim for visibility.

                                    ","image":"/w/s/wsh09-gray_main.jpg","small_image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","color":"52","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-28-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"mimi-all-purpose-short-28-gray-2009","links":{},"stock":{"item_id":2009,"product_id":2009,"stock_id":1,"qty":45,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh09-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh09-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh09-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-28-gray-2009.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2013","_score":1,"_source":{"id":2013,"sku":"WSH09-29-Green","name":"Mimi All-Purpose Short-29-Green","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                                    You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                                    \n

                                    • Gray/seafoam two-layer shorts.
                                    • Water-resistant construction.
                                    • Inner mesh brief for breathable support.
                                    • 2.0\" inseam.
                                    • Reflective trim for visibility.

                                    ","image":"/w/s/wsh09-green_main.jpg","small_image":"/w/s/wsh09-green_main.jpg","thumbnail":"/w/s/wsh09-green_main.jpg","color":"53","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"mimi-all-purpose-short-29-green-2013","links":{},"stock":{"item_id":2013,"product_id":2013,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh09-green_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-29-green-2013.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2017","_score":1,"_source":{"id":2017,"sku":"WSH10-28-Orange","name":"Ana Running Short-28-Orange","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40,"description":"

                                    Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                                    \n

                                    • Black/pink two-layer shorts.
                                    • Low-rise elastic waistband.
                                    • Relaxed fit.
                                    • Ultra-lightweight fabric.
                                    • Internal drawstring.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh10-orange_main.jpg","small_image":"/w/s/wsh10-orange_main.jpg","thumbnail":"/w/s/wsh10-orange_main.jpg","color":"56","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ana-running-short-28-orange-2017","links":{},"stock":{"item_id":2017,"product_id":2017,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh10-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-28-orange-2017.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2014","_score":1,"_source":{"id":2014,"sku":"WSH09-29-White","name":"Mimi All-Purpose Short-29-White","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                                    You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                                    \n

                                    • Gray/seafoam two-layer shorts.
                                    • Water-resistant construction.
                                    • Inner mesh brief for breathable support.
                                    • 2.0\" inseam.
                                    • Reflective trim for visibility.

                                    ","image":"/w/s/wsh09-white_main.jpg","small_image":"/w/s/wsh09-white_main.jpg","thumbnail":"/w/s/wsh09-white_main.jpg","color":"59","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"mimi-all-purpose-short-29-white-2014","links":{},"stock":{"item_id":2014,"product_id":2014,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh09-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-29-white-2014.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2001","_score":1,"_source":{"id":2001,"sku":"WSH07-29-Purple","name":"Echo Fit Compression Short-29-Purple","attribute_set_id":10,"price":24,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                                    Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                                    \n

                                    • Black compression shorts.
                                    • High-waisted cut.
                                    • Compression fit.
                                    • Inseam: 1.0\".
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh07-purple_main.jpg","small_image":"/w/s/wsh07-purple_main.jpg","thumbnail":"/w/s/wsh07-purple_main.jpg","color":"57","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"echo-fit-compression-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"echo-fit-compression-short-29-purple-2001","links":{},"stock":{"item_id":2001,"product_id":2001,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh07-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-29-purple-2001.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2026","_score":1,"_source":{"id":2026,"sku":"WSH11-29-Blue","name":"Ina Compression Short-29-Blue","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                                    \n

                                    • Royal blue bike shorts.
                                    • Compression fit.
                                    • Moisture-wicking.
                                    • Anti-microbial.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh11-blue_main.jpg","small_image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","color":"50","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-29-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ina-compression-short-29-blue-2026","links":{},"stock":{"item_id":2026,"product_id":2026,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh11-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-29-blue-2026.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2020","_score":1,"_source":{"id":2020,"sku":"WSH10-29-Orange","name":"Ana Running Short-29-Orange","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40,"description":"

                                    Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                                    \n

                                    • Black/pink two-layer shorts.
                                    • Low-rise elastic waistband.
                                    • Relaxed fit.
                                    • Ultra-lightweight fabric.
                                    • Internal drawstring.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh10-orange_main.jpg","small_image":"/w/s/wsh10-orange_main.jpg","thumbnail":"/w/s/wsh10-orange_main.jpg","color":"56","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ana-running-short-29-orange-2020","links":{},"stock":{"item_id":2020,"product_id":2020,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh10-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-29-orange-2020.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2016","_score":1,"_source":{"id":2016,"sku":"WSH10-28-Black","name":"Ana Running Short-28-Black","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40,"description":"

                                    Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                                    \n

                                    • Black/pink two-layer shorts.
                                    • Low-rise elastic waistband.
                                    • Relaxed fit.
                                    • Ultra-lightweight fabric.
                                    • Internal drawstring.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh10-black_main.jpg","small_image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","color":"49","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-28-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ana-running-short-28-black-2016","links":{},"stock":{"item_id":2016,"product_id":2016,"stock_id":1,"qty":35,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh10-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh10-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh10-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-28-black-2016.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2023","_score":1,"_source":{"id":2023,"sku":"WSH11-28-Blue","name":"Ina Compression Short-28-Blue","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                                    \n

                                    • Royal blue bike shorts.
                                    • Compression fit.
                                    • Moisture-wicking.
                                    • Anti-microbial.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh11-blue_main.jpg","small_image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","color":"50","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-28-blue","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ina-compression-short-28-blue-2023","links":{},"stock":{"item_id":2023,"product_id":2023,"stock_id":1,"qty":3,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh11-blue_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-28-blue-2023.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2018","_score":1,"_source":{"id":2018,"sku":"WSH10-28-White","name":"Ana Running Short-28-White","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40,"description":"

                                    Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                                    \n

                                    • Black/pink two-layer shorts.
                                    • Low-rise elastic waistband.
                                    • Relaxed fit.
                                    • Ultra-lightweight fabric.
                                    • Internal drawstring.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh10-white_main.jpg","small_image":"/w/s/wsh10-white_main.jpg","thumbnail":"/w/s/wsh10-white_main.jpg","color":"59","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ana-running-short-28-white-2018","links":{},"stock":{"item_id":2018,"product_id":2018,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh10-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-28-white-2018.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2021","_score":1,"_source":{"id":2021,"sku":"WSH10-29-White","name":"Ana Running Short-29-White","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40,"description":"

                                    Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                                    \n

                                    • Black/pink two-layer shorts.
                                    • Low-rise elastic waistband.
                                    • Relaxed fit.
                                    • Ultra-lightweight fabric.
                                    • Internal drawstring.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh10-white_main.jpg","small_image":"/w/s/wsh10-white_main.jpg","thumbnail":"/w/s/wsh10-white_main.jpg","color":"59","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-29-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ana-running-short-29-white-2021","links":{},"stock":{"item_id":2021,"product_id":2021,"stock_id":1,"qty":95,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh10-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-29-white-2021.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2011","_score":1,"_source":{"id":2011,"sku":"WSH09-28-White","name":"Mimi All-Purpose Short-28-White","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                                    You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                                    \n

                                    • Gray/seafoam two-layer shorts.
                                    • Water-resistant construction.
                                    • Inner mesh brief for breathable support.
                                    • 2.0\" inseam.
                                    • Reflective trim for visibility.

                                    ","image":"/w/s/wsh09-white_main.jpg","small_image":"/w/s/wsh09-white_main.jpg","thumbnail":"/w/s/wsh09-white_main.jpg","color":"59","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-28-white","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"mimi-all-purpose-short-28-white-2011","links":{},"stock":{"item_id":2011,"product_id":2011,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh09-white_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-28-white-2011.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2028","_score":1,"_source":{"id":2028,"sku":"WSH11-29-Red","name":"Ina Compression Short-29-Red","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                                    \n

                                    • Royal blue bike shorts.
                                    • Compression fit.
                                    • Moisture-wicking.
                                    • Anti-microbial.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh11-red_main.jpg","small_image":"/w/s/wsh11-red_main.jpg","thumbnail":"/w/s/wsh11-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ina-compression-short-29-red-2028","links":{},"stock":{"item_id":2028,"product_id":2028,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh11-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-29-red-2028.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2019","_score":1,"_source":{"id":2019,"sku":"WSH10-29-Black","name":"Ana Running Short-29-Black","attribute_set_id":10,"price":40,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40,"description":"

                                    Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                                    \n

                                    • Black/pink two-layer shorts.
                                    • Low-rise elastic waistband.
                                    • Relaxed fit.
                                    • Ultra-lightweight fabric.
                                    • Internal drawstring.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh10-black_main.jpg","small_image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","color":"49","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ana-running-short-29-black","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ana-running-short-29-black-2019","links":{},"stock":{"item_id":2019,"product_id":2019,"stock_id":1,"qty":86,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh10-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh10-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh10-black_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-29-black-2019.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2004","_score":1,"_source":{"id":2004,"sku":"WSH08-29-Purple","name":"Sybil Running Short-29-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                                    Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

                                    \n

                                    • Blue running shorts with green waist.
                                    • Drawstring-adjustable waist.
                                    • 4\" inseam. Machine wash/line dry.

                                    ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"sybil-running-short-29-purple-2004","links":{},"stock":{"item_id":2004,"product_id":2004,"stock_id":1,"qty":96,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-29-purple-2004.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2044","_score":1,"_source":{"id":2044,"sku":"WSH12-32-Red","name":"Erika Running Short-32-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                                    \n

                                    • Seafoam pattern running shorts.
                                    • Elastic waistband.
                                    • Snug fit.
                                    • 4'' inseam.
                                    • 76% premium brushed Nylon / 24% Spandex.

                                    ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-32-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"erika-running-short-32-red-2044","links":{},"stock":{"item_id":2044,"product_id":2044,"stock_id":1,"qty":100,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-32-red-2044.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2007","_score":1,"_source":{"id":2007,"sku":"WSH08-32-Purple","name":"Sybil Running Short-32-Purple","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                                    Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

                                    \n

                                    • Blue running shorts with green waist.
                                    • Drawstring-adjustable waist.
                                    • 4\" inseam. Machine wash/line dry.

                                    ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"sybil-running-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"sybil-running-short-32-purple-2007","links":{},"stock":{"item_id":2007,"product_id":2007,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-32-purple-2007.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2024","_score":1,"_source":{"id":2024,"sku":"WSH11-28-Orange","name":"Ina Compression Short-28-Orange","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                                    \n

                                    • Royal blue bike shorts.
                                    • Compression fit.
                                    • Moisture-wicking.
                                    • Anti-microbial.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh11-orange_main.jpg","small_image":"/w/s/wsh11-orange_main.jpg","thumbnail":"/w/s/wsh11-orange_main.jpg","color":"56","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-28-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ina-compression-short-28-orange-2024","links":{},"stock":{"item_id":2024,"product_id":2024,"stock_id":1,"qty":83,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh11-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-28-orange-2024.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2037","_score":1,"_source":{"id":2037,"sku":"WSH12-30-Purple","name":"Erika Running Short-30-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                                    \n

                                    • Seafoam pattern running shorts.
                                    • Elastic waistband.
                                    • Snug fit.
                                    • 4'' inseam.
                                    • 76% premium brushed Nylon / 24% Spandex.

                                    ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-30-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"erika-running-short-30-purple-2037","links":{},"stock":{"item_id":2037,"product_id":2037,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-30-purple-2037.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2033","_score":1,"_source":{"id":2033,"sku":"WSH12-29-Green","name":"Erika Running Short-29-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                                    \n

                                    • Seafoam pattern running shorts.
                                    • Elastic waistband.
                                    • Snug fit.
                                    • 4'' inseam.
                                    • 76% premium brushed Nylon / 24% Spandex.

                                    ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-29-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"erika-running-short-29-green-2033","links":{},"stock":{"item_id":2033,"product_id":2033,"stock_id":1,"qty":87,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-29-green-2033.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2027","_score":1,"_source":{"id":2027,"sku":"WSH11-29-Orange","name":"Ina Compression Short-29-Orange","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                                    \n

                                    • Royal blue bike shorts.
                                    • Compression fit.
                                    • Moisture-wicking.
                                    • Anti-microbial.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh11-orange_main.jpg","small_image":"/w/s/wsh11-orange_main.jpg","thumbnail":"/w/s/wsh11-orange_main.jpg","color":"56","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-29-orange","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"ina-compression-short-29-orange-2027","links":{},"stock":{"item_id":2027,"product_id":2027,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh11-orange_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-29-orange-2027.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2040","_score":1,"_source":{"id":2040,"sku":"WSH12-31-Purple","name":"Erika Running Short-31-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                                    \n

                                    • Seafoam pattern running shorts.
                                    • Elastic waistband.
                                    • Snug fit.
                                    • 4'' inseam.
                                    • 76% premium brushed Nylon / 24% Spandex.

                                    ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-31-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"erika-running-short-31-purple-2040","links":{},"stock":{"item_id":2040,"product_id":2040,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-31-purple-2040.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2034","_score":1,"_source":{"id":2034,"sku":"WSH12-29-Purple","name":"Erika Running Short-29-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                                    \n

                                    • Seafoam pattern running shorts.
                                    • Elastic waistband.
                                    • Snug fit.
                                    • 4'' inseam.
                                    • 76% premium brushed Nylon / 24% Spandex.

                                    ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-29-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"erika-running-short-29-purple-2034","links":{},"stock":{"item_id":2034,"product_id":2034,"stock_id":1,"qty":88,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-29-purple-2034.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2043","_score":1,"_source":{"id":2043,"sku":"WSH12-32-Purple","name":"Erika Running Short-32-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                                    \n

                                    • Seafoam pattern running shorts.
                                    • Elastic waistband.
                                    • Snug fit.
                                    • 4'' inseam.
                                    • 76% premium brushed Nylon / 24% Spandex.

                                    ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-32-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"erika-running-short-32-purple-2043","links":{},"stock":{"item_id":2043,"product_id":2043,"stock_id":1,"qty":99,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-32-purple-2043.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2015","_score":1,"_source":{"id":2015,"sku":"WSH09","name":"Mimi All-Purpose Short","attribute_set_id":10,"price":44,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                                    You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                                    \n

                                    • Gray/seafoam two-layer shorts.
                                    • Water-resistant construction.
                                    • Inner mesh brief for breathable support.
                                    • 2.0\" inseam.
                                    • Reflective trim for visibility.

                                    ","image":"/w/s/wsh09-gray_main.jpg","small_image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"1","url_key":"mimi-all-purpose-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[37,154,38],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"106","pattern":"198","climate":[206,209],"slug":"mimi-all-purpose-short-2015","links":{},"stock":{"item_id":2015,"product_id":2015,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh09-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh09-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh09-gray_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","color":"52","small_image":"/w/s/wsh09-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mimi-all-purpose-short-28-gray","regular_price":44,"required_options":"0","msrp_display_actual_price_type":"0","max_price":44,"minimal_regular_price":44,"size":"172","final_price":44,"special_price":null,"price":44,"minimal_price":44,"name":"Mimi All-Purpose Short-28-Gray","id":2009,"category_ids":["28"],"sku":"WSH09-28-Gray","max_regular_price":44,"status":1},{"image":"/w/s/wsh09-green_main.jpg","thumbnail":"/w/s/wsh09-green_main.jpg","color":"53","small_image":"/w/s/wsh09-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mimi-all-purpose-short-28-green","regular_price":44,"required_options":"0","msrp_display_actual_price_type":"0","max_price":44,"minimal_regular_price":44,"size":"172","final_price":44,"special_price":null,"price":44,"minimal_price":44,"name":"Mimi All-Purpose Short-28-Green","id":2010,"category_ids":["28"],"sku":"WSH09-28-Green","max_regular_price":44,"status":1},{"image":"/w/s/wsh09-white_main.jpg","thumbnail":"/w/s/wsh09-white_main.jpg","color":"59","small_image":"/w/s/wsh09-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mimi-all-purpose-short-28-white","regular_price":44,"required_options":"0","msrp_display_actual_price_type":"0","max_price":44,"minimal_regular_price":44,"size":"172","final_price":44,"special_price":null,"price":44,"minimal_price":44,"name":"Mimi All-Purpose Short-28-White","id":2011,"category_ids":["28"],"sku":"WSH09-28-White","max_regular_price":44,"status":1},{"image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","color":"52","small_image":"/w/s/wsh09-gray_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mimi-all-purpose-short-29-gray","regular_price":44,"required_options":"0","msrp_display_actual_price_type":"0","max_price":44,"minimal_regular_price":44,"size":"173","final_price":44,"special_price":null,"price":44,"minimal_price":44,"name":"Mimi All-Purpose Short-29-Gray","id":2012,"category_ids":["28"],"sku":"WSH09-29-Gray","max_regular_price":44,"status":1},{"image":"/w/s/wsh09-green_main.jpg","thumbnail":"/w/s/wsh09-green_main.jpg","color":"53","small_image":"/w/s/wsh09-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mimi-all-purpose-short-29-green","regular_price":44,"required_options":"0","msrp_display_actual_price_type":"0","max_price":44,"minimal_regular_price":44,"size":"173","final_price":44,"special_price":null,"price":44,"minimal_price":44,"name":"Mimi All-Purpose Short-29-Green","id":2013,"category_ids":["28"],"sku":"WSH09-29-Green","max_regular_price":44,"status":1},{"image":"/w/s/wsh09-white_main.jpg","thumbnail":"/w/s/wsh09-white_main.jpg","color":"59","small_image":"/w/s/wsh09-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"mimi-all-purpose-short-29-white","regular_price":44,"required_options":"0","msrp_display_actual_price_type":"0","max_price":44,"minimal_regular_price":44,"size":"173","final_price":44,"special_price":null,"price":44,"minimal_price":44,"name":"Mimi All-Purpose Short-29-White","id":2014,"category_ids":["28"],"sku":"WSH09-29-White","max_regular_price":44,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":52,"label":"Gray"},{"value_index":53,"label":"Green"},{"value_index":59,"label":"White"}],"product_id":2015,"id":289,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":2015,"id":288,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[52,53,59],"size_options":[172,173],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-2015.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2008","_score":1,"_source":{"id":2008,"sku":"WSH08","name":"Sybil Running Short","attribute_set_id":10,"price":44,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                                    Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

                                    \n

                                    • Blue running shorts with green waist.
                                    • Drawstring-adjustable waist.
                                    • 4\" inseam. Machine wash/line dry.

                                    ","image":"/w/s/wsh08-purple_main.jpg","small_image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","category_ids":[28,35,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"sybil-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[143,33,36],"eco_collection":"0","performance_fabric":"1","erin_recommends":"0","new":"0","sale":"0","style_bottom":"106","pattern":"198","climate":[205,212],"slug":"sybil-running-short-2008","links":{},"stock":{"item_id":2008,"product_id":2008,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh08-purple_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh08-purple_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","small_image":"/w/s/wsh08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sybil-running-short-28-purple","regular_price":44,"required_options":"0","msrp_display_actual_price_type":"0","max_price":44,"minimal_regular_price":44,"size":"172","final_price":44,"special_price":null,"price":44,"minimal_price":44,"name":"Sybil Running Short-28-Purple","id":2003,"category_ids":["28","35","2"],"sku":"WSH08-28-Purple","max_regular_price":44,"status":1},{"image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","small_image":"/w/s/wsh08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sybil-running-short-29-purple","regular_price":44,"required_options":"0","msrp_display_actual_price_type":"0","max_price":44,"minimal_regular_price":44,"size":"173","final_price":44,"special_price":null,"price":44,"minimal_price":44,"name":"Sybil Running Short-29-Purple","id":2004,"category_ids":["28","35","2"],"sku":"WSH08-29-Purple","max_regular_price":44,"status":1},{"image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","small_image":"/w/s/wsh08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sybil-running-short-30-purple","regular_price":44,"required_options":"0","msrp_display_actual_price_type":"0","max_price":44,"minimal_regular_price":44,"size":"174","final_price":44,"special_price":null,"price":44,"minimal_price":44,"name":"Sybil Running Short-30-Purple","id":2005,"category_ids":["28","35","2"],"sku":"WSH08-30-Purple","max_regular_price":44,"status":1},{"image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","small_image":"/w/s/wsh08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sybil-running-short-31-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"175","price":44,"name":"Sybil Running Short-31-Purple","id":2006,"category_ids":["28","35","2"],"sku":"WSH08-31-Purple","status":1},{"image":"/w/s/wsh08-purple_main.jpg","thumbnail":"/w/s/wsh08-purple_main.jpg","color":"57","small_image":"/w/s/wsh08-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"sybil-running-short-32-purple","regular_price":44,"required_options":"0","msrp_display_actual_price_type":"0","max_price":44,"minimal_regular_price":44,"size":"176","final_price":44,"special_price":null,"price":44,"minimal_price":44,"name":"Sybil Running Short-32-Purple","id":2007,"category_ids":["28","35","2"],"sku":"WSH08-32-Purple","max_regular_price":44,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":57,"label":"Purple"}],"product_id":2008,"id":287,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":2008,"id":286,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[57],"size_options":[172,173,174,175,176],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/performance-fabrics/performance-fabrics-35","category_id":35,"name":"Performance Fabrics","slug":"performance-fabrics-35"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/sybil-running-short-2008.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2029","_score":1,"_source":{"id":2029,"sku":"WSH11","name":"Ina Compression Short","attribute_set_id":10,"price":49,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                                    \n

                                    • Royal blue bike shorts.
                                    • Compression fit.
                                    • Moisture-wicking.
                                    • Anti-microbial.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh11-blue_main.jpg","small_image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ina-compression-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[148,151],"eco_collection":"0","performance_fabric":"1","erin_recommends":"1","new":"0","sale":"0","style_bottom":[112,105,108],"pattern":"197","climate":[202,212,209],"slug":"ina-compression-short-2029","links":{},"stock":{"item_id":2029,"product_id":2029,"stock_id":1,"qty":9,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh11-blue_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh11-blue_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","color":"50","small_image":"/w/s/wsh11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ina-compression-short-28-blue","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"172","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Ina Compression Short-28-Blue","id":2023,"category_ids":["28","34","2"],"sku":"WSH11-28-Blue","max_regular_price":49,"status":1},{"image":"/w/s/wsh11-orange_main.jpg","thumbnail":"/w/s/wsh11-orange_main.jpg","color":"56","small_image":"/w/s/wsh11-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ina-compression-short-28-orange","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"172","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Ina Compression Short-28-Orange","id":2024,"category_ids":["28","34","2"],"sku":"WSH11-28-Orange","max_regular_price":49,"status":1},{"image":"/w/s/wsh11-red_main.jpg","thumbnail":"/w/s/wsh11-red_main.jpg","color":"58","small_image":"/w/s/wsh11-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ina-compression-short-28-red","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"172","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Ina Compression Short-28-Red","id":2025,"category_ids":["28","34","2"],"sku":"WSH11-28-Red","max_regular_price":49,"status":1},{"image":"/w/s/wsh11-blue_main.jpg","thumbnail":"/w/s/wsh11-blue_main.jpg","color":"50","small_image":"/w/s/wsh11-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ina-compression-short-29-blue","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"173","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Ina Compression Short-29-Blue","id":2026,"category_ids":["28","34","2"],"sku":"WSH11-29-Blue","max_regular_price":49,"status":1},{"image":"/w/s/wsh11-orange_main.jpg","thumbnail":"/w/s/wsh11-orange_main.jpg","color":"56","small_image":"/w/s/wsh11-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ina-compression-short-29-orange","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"173","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Ina Compression Short-29-Orange","id":2027,"category_ids":["28","34","2"],"sku":"WSH11-29-Orange","max_regular_price":49,"status":1},{"image":"/w/s/wsh11-red_main.jpg","thumbnail":"/w/s/wsh11-red_main.jpg","color":"58","small_image":"/w/s/wsh11-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ina-compression-short-29-red","regular_price":49,"required_options":"0","msrp_display_actual_price_type":"0","max_price":49,"minimal_regular_price":49,"size":"173","final_price":49,"special_price":null,"price":49,"minimal_price":49,"name":"Ina Compression Short-29-Red","id":2028,"category_ids":["28","34","2"],"sku":"WSH11-29-Red","max_regular_price":49,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":50,"label":"Blue"},{"value_index":56,"label":"Orange"},{"value_index":58,"label":"Red"}],"product_id":2029,"id":293,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":2029,"id":292,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[50,56,58],"size_options":[172,173],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-2029.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2045","_score":1,"_source":{"id":2045,"sku":"WSH12","name":"Erika Running Short","attribute_set_id":10,"price":45,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                                    \n

                                    • Seafoam pattern running shorts.
                                    • Elastic waistband.
                                    • Snug fit.
                                    • 4'' inseam.
                                    • 76% premium brushed Nylon / 24% Spandex.

                                    ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"erika-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[154,38,151],"eco_collection":"0","performance_fabric":"0","erin_recommends":"1","new":"0","sale":"0","style_bottom":[106,112],"pattern":"196","climate":[212,206,209],"slug":"erika-running-short-2045","links":{},"stock":{"item_id":2045,"product_id":2045,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"color":"53","small_image":"/w/s/wsh12-green_main.jpg","tier_prices":[],"regular_price":45,"msrp_display_actual_price_type":"0","final_price":45,"price":45,"special_from_date":"2019-06-25 00:00:00","id":2030,"category_ids":["28","34","2"],"sku":"WSH12-28-Green","image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","tax_class_id":"2","has_options":"0","url_key":"erika-running-short-28-green","required_options":"0","max_price":45,"minimal_regular_price":45,"size":"172","special_price":null,"minimal_price":45,"name":"Erika Running Short-28-Green","max_regular_price":45,"status":1},{"image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","small_image":"/w/s/wsh12-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erika-running-short-28-purple","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"172","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Erika Running Short-28-Purple","id":2031,"category_ids":["28","34","2"],"sku":"WSH12-28-Purple","max_regular_price":45,"status":1},{"image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","small_image":"/w/s/wsh12-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erika-running-short-28-red","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"172","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Erika Running Short-28-Red","id":2032,"category_ids":["28","34","2"],"sku":"WSH12-28-Red","max_regular_price":45,"status":1},{"image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","small_image":"/w/s/wsh12-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erika-running-short-29-green","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"173","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Erika Running Short-29-Green","id":2033,"category_ids":["28","34","2"],"sku":"WSH12-29-Green","max_regular_price":45,"status":1},{"image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","small_image":"/w/s/wsh12-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erika-running-short-29-purple","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"173","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Erika Running Short-29-Purple","id":2034,"category_ids":["28","34","2"],"sku":"WSH12-29-Purple","max_regular_price":45,"status":1},{"image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","small_image":"/w/s/wsh12-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erika-running-short-29-red","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"173","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Erika Running Short-29-Red","id":2035,"category_ids":["28","34","2"],"sku":"WSH12-29-Red","max_regular_price":45,"status":1},{"image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","small_image":"/w/s/wsh12-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erika-running-short-30-green","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"174","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Erika Running Short-30-Green","id":2036,"category_ids":["28","34","2"],"sku":"WSH12-30-Green","max_regular_price":45,"status":1},{"image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","small_image":"/w/s/wsh12-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erika-running-short-30-purple","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"174","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Erika Running Short-30-Purple","id":2037,"category_ids":["28","34","2"],"sku":"WSH12-30-Purple","max_regular_price":45,"status":1},{"image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","small_image":"/w/s/wsh12-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erika-running-short-30-red","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"174","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Erika Running Short-30-Red","id":2038,"category_ids":["28","34","2"],"sku":"WSH12-30-Red","max_regular_price":45,"status":1},{"image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","small_image":"/w/s/wsh12-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erika-running-short-31-green","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"175","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Erika Running Short-31-Green","id":2039,"category_ids":["28","34","2"],"sku":"WSH12-31-Green","max_regular_price":45,"status":1},{"image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","small_image":"/w/s/wsh12-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erika-running-short-31-purple","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"175","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Erika Running Short-31-Purple","id":2040,"category_ids":["28","34","2"],"sku":"WSH12-31-Purple","max_regular_price":45,"status":1},{"image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","small_image":"/w/s/wsh12-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erika-running-short-31-red","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"175","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Erika Running Short-31-Red","id":2041,"category_ids":["28","34","2"],"sku":"WSH12-31-Red","max_regular_price":45,"status":1},{"image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","small_image":"/w/s/wsh12-green_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erika-running-short-32-green","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"176","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Erika Running Short-32-Green","id":2042,"category_ids":["28","34","2"],"sku":"WSH12-32-Green","max_regular_price":45,"status":1},{"image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","small_image":"/w/s/wsh12-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erika-running-short-32-purple","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"176","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Erika Running Short-32-Purple","id":2043,"category_ids":["28","34","2"],"sku":"WSH12-32-Purple","max_regular_price":45,"status":1},{"image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","small_image":"/w/s/wsh12-red_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"erika-running-short-32-red","regular_price":45,"required_options":"0","msrp_display_actual_price_type":"0","max_price":45,"minimal_regular_price":45,"size":"176","final_price":45,"special_price":null,"price":45,"minimal_price":45,"name":"Erika Running Short-32-Red","id":2044,"category_ids":["28","34","2"],"sku":"WSH12-32-Red","max_regular_price":45,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":53,"label":"Green"},{"value_index":57,"label":"Purple"},{"value_index":58,"label":"Red"}],"product_id":2045,"id":295,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"},{"value_index":174,"label":"30"},{"value_index":175,"label":"31"},{"value_index":176,"label":"32"}],"product_id":2045,"id":294,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[53,57,58],"size_options":[172,173,174,175,176],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-2045.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2030","_score":1,"_source":{"id":2030,"sku":"WSH12-28-Green","name":"Erika Running Short-28-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2019-08-08 07:03:33","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":"48.0000","minimal_price":45,"regular_price":45,"description":"

                                    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                                    \r\n

                                    • Seafoam pattern running shorts.
                                    • Elastic waistband.
                                    • Snug fit.
                                    • 4'' inseam.
                                    • 76% premium brushed Nylon / 24% Spandex.

                                    ","special_from_date":"2019-06-25 00:00:00","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-28-green","msrp_display_actual_price_type":"0","gift_message_available":"0","tax_class_id":"2","size":"172","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"erika-running-short-28-green-2030","links":{},"stock":{"item_id":2030,"product_id":2030,"stock_id":1,"qty":33,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":null},{"vid":null,"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":null},{"vid":null,"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":null},{"vid":{"meta":"","title":"Big Buck Bunny - Official Trailer","type":"vimeo","url":"https://vimeo.com/798022","desc":"The official trailer for BIG BUCK BUNNY\r\n\r\nwww.bigbuckbunny.org","video_id":"798022"},"image":"/2/0/20972656_640.jpg","pos":4,"typ":"external-video","lab":null}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-28-green-2030.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2025","_score":1,"_source":{"id":2025,"sku":"WSH11-28-Red","name":"Ina Compression Short-28-Red","attribute_set_id":10,"price":49,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":49,"max_price":49,"max_regular_price":49,"minimal_regular_price":49,"special_price":null,"minimal_price":49,"regular_price":49,"description":"

                                    One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

                                    \n

                                    • Royal blue bike shorts.
                                    • Compression fit.
                                    • Moisture-wicking.
                                    • Anti-microbial.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh11-red_main.jpg","small_image":"/w/s/wsh11-red_main.jpg","thumbnail":"/w/s/wsh11-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"ina-compression-short-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"ina-compression-short-28-red-2025","links":{},"stock":{"item_id":2025,"product_id":2025,"stock_id":1,"qty":82,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh11-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ina-compression-short-28-red-2025.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2042","_score":1,"_source":{"id":2042,"sku":"WSH12-32-Green","name":"Erika Running Short-32-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                                    \n

                                    • Seafoam pattern running shorts.
                                    • Elastic waistband.
                                    • Snug fit.
                                    • 4'' inseam.
                                    • 76% premium brushed Nylon / 24% Spandex.

                                    ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-32-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"176","slug":"erika-running-short-32-green-2042","links":{},"stock":{"item_id":2042,"product_id":2042,"stock_id":1,"qty":89,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-32-green-2042.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2039","_score":1,"_source":{"id":2039,"sku":"WSH12-31-Green","name":"Erika Running Short-31-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                                    \n

                                    • Seafoam pattern running shorts.
                                    • Elastic waistband.
                                    • Snug fit.
                                    • 4'' inseam.
                                    • 76% premium brushed Nylon / 24% Spandex.

                                    ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-31-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"erika-running-short-31-green-2039","links":{},"stock":{"item_id":2039,"product_id":2039,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-31-green-2039.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2012","_score":1,"_source":{"id":2012,"sku":"WSH09-29-Gray","name":"Mimi All-Purpose Short-29-Gray","attribute_set_id":10,"price":44,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":44,"max_price":44,"max_regular_price":44,"minimal_regular_price":44,"special_price":null,"minimal_price":44,"regular_price":44,"description":"

                                    You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

                                    \n

                                    • Gray/seafoam two-layer shorts.
                                    • Water-resistant construction.
                                    • Inner mesh brief for breathable support.
                                    • 2.0\" inseam.
                                    • Reflective trim for visibility.

                                    ","image":"/w/s/wsh09-gray_main.jpg","small_image":"/w/s/wsh09-gray_main.jpg","thumbnail":"/w/s/wsh09-gray_main.jpg","color":"52","category_ids":["28"],"options_container":"container2","required_options":"0","has_options":"0","url_key":"mimi-all-purpose-short-29-gray","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"mimi-all-purpose-short-29-gray-2012","links":{},"stock":{"item_id":2012,"product_id":2012,"stock_id":1,"qty":97,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh09-gray_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh09-gray_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh09-gray_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/mimi-all-purpose-short-29-gray-2012.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2035","_score":1,"_source":{"id":2035,"sku":"WSH12-29-Red","name":"Erika Running Short-29-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                                    \n

                                    • Seafoam pattern running shorts.
                                    • Elastic waistband.
                                    • Snug fit.
                                    • 4'' inseam.
                                    • 76% premium brushed Nylon / 24% Spandex.

                                    ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-29-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"173","slug":"erika-running-short-29-red-2035","links":{},"stock":{"item_id":2035,"product_id":2035,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-29-red-2035.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2031","_score":1,"_source":{"id":2031,"sku":"WSH12-28-Purple","name":"Erika Running Short-28-Purple","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                                    \n

                                    • Seafoam pattern running shorts.
                                    • Elastic waistband.
                                    • Snug fit.
                                    • 4'' inseam.
                                    • 76% premium brushed Nylon / 24% Spandex.

                                    ","image":"/w/s/wsh12-purple_main.jpg","small_image":"/w/s/wsh12-purple_main.jpg","thumbnail":"/w/s/wsh12-purple_main.jpg","color":"57","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-28-purple","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"erika-running-short-28-purple-2031","links":{},"stock":{"item_id":2031,"product_id":2031,"stock_id":1,"qty":93,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh12-purple_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-28-purple-2031.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2046","_score":1,"_source":{"id":2046,"sku":"24-WG085_Group","name":"Set of Sprite Yoga Straps","attribute_set_id":11,"status":1,"visibility":4,"type_id":"grouped","created_at":"2017-11-06 12:17:53","updated_at":"2019-07-05 12:07:54","product_links":[{"link_type":"associated","linked_product_sku":"24-WG085","linked_product_type":"simple","extension_attributes":{"qty":20},"position":0,"sku":"24-WG085_Group"},{"link_type":"associated","linked_product_sku":"24-WG086","linked_product_type":"simple","extension_attributes":{"qty":30},"position":1,"sku":"24-WG085_Group"},{"link_type":"associated","linked_product_sku":"24-WG087","linked_product_type":"simple","extension_attributes":{"qty":40},"position":2,"sku":"24-WG085_Group"}],"tier_prices":[],"custom_attributes":null,"final_price":14,"max_price":14,"max_regular_price":14,"minimal_regular_price":14,"special_price":null,"minimal_price":14,"regular_price":0,"description":"

                                    Great set of Sprite Yoga Straps for every stretch and hold you need. There are three straps in this set: 6', 8' and 10'.

                                    \r\n
                                      \r\n
                                    • 100% soft and durable cotton.\r\n
                                    • Plastic cinch buckle is easy to use.\r\n
                                    • Choice of three natural colors made from phthalate and heavy metal free dyes.\r\n
                                    ","image":"/l/u/luma-yoga-strap-set.jpg","small_image":"/l/u/luma-yoga-strap-set.jpg","thumbnail":"/l/u/luma-yoga-strap-set.jpg","category_ids":[3,5],"options_container":"container2","required_options":"0","has_options":"0","url_key":"set-of-sprite-yoga-straps","gift_message_available":"0","activity":"8","material":[32,44],"category_gear":"87","eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","slug":"set-of-sprite-yoga-straps-2046","links":{"associated":[{"pos":0,"sku":"24-WG085"},{"pos":1,"sku":"24-WG086"},{"pos":2,"sku":"24-WG087"}]},"stock":{"item_id":2046,"product_id":2046,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/l/u/luma-yoga-strap-set.jpg","pos":1,"typ":"image","lab":"Image"}],"category":[{"path":"gear/gear-3","category_id":3,"name":"Gear","slug":"gear-3"},{"path":"gear/fitness-equipment/fitness-equipment-5","category_id":5,"name":"Fitness Equipment","slug":"fitness-equipment-5"}],"url_path":"gear/gear-3/set-of-sprite-yoga-straps-2046.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2032","_score":1,"_source":{"id":2032,"sku":"WSH12-28-Red","name":"Erika Running Short-28-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                                    \n

                                    • Seafoam pattern running shorts.
                                    • Elastic waistband.
                                    • Snug fit.
                                    • 4'' inseam.
                                    • 76% premium brushed Nylon / 24% Spandex.

                                    ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-28-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"172","slug":"erika-running-short-28-red-2032","links":{},"stock":{"item_id":2032,"product_id":2032,"stock_id":1,"qty":81,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-28-red-2032.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2036","_score":1,"_source":{"id":2036,"sku":"WSH12-30-Green","name":"Erika Running Short-30-Green","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                                    \n

                                    • Seafoam pattern running shorts.
                                    • Elastic waistband.
                                    • Snug fit.
                                    • 4'' inseam.
                                    • 76% premium brushed Nylon / 24% Spandex.

                                    ","image":"/w/s/wsh12-green_main.jpg","small_image":"/w/s/wsh12-green_main.jpg","thumbnail":"/w/s/wsh12-green_main.jpg","color":"53","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-30-green","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"174","slug":"erika-running-short-30-green-2036","links":{},"stock":{"item_id":2036,"product_id":2036,"stock_id":1,"qty":79,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh12-green_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh12-green_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh12-green_back.jpg","pos":3,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-30-green-2036.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2041","_score":1,"_source":{"id":2041,"sku":"WSH12-31-Red","name":"Erika Running Short-31-Red","attribute_set_id":10,"price":45,"status":1,"visibility":1,"type_id":"simple","created_at":"2017-11-06 12:17:29","updated_at":"2017-11-06 12:17:29","weight":1,"product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":45,"max_price":45,"max_regular_price":45,"minimal_regular_price":45,"special_price":null,"minimal_price":45,"regular_price":45,"description":"

                                    A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

                                    \n

                                    • Seafoam pattern running shorts.
                                    • Elastic waistband.
                                    • Snug fit.
                                    • 4'' inseam.
                                    • 76% premium brushed Nylon / 24% Spandex.

                                    ","image":"/w/s/wsh12-red_main.jpg","small_image":"/w/s/wsh12-red_main.jpg","thumbnail":"/w/s/wsh12-red_main.jpg","color":"58","category_ids":[28,34,2],"options_container":"container2","required_options":"0","has_options":"0","url_key":"erika-running-short-31-red","msrp_display_actual_price_type":"0","tax_class_id":"2","size":"175","slug":"erika-running-short-31-red-2041","links":{},"stock":{"item_id":2041,"product_id":2041,"stock_id":1,"qty":98,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh12-red_main.jpg","pos":1,"typ":"image","lab":""}],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/erin-recommends/erin-recommends-34","category_id":34,"name":"Erin Recommends","slug":"erin-recommends-34"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/erika-running-short-31-red-2041.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2002","_score":1,"_source":{"id":2002,"sku":"WSH07","name":"Echo Fit Compression Short","attribute_set_id":10,"price":24,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":24,"max_price":24,"max_regular_price":24,"minimal_regular_price":24,"special_price":null,"minimal_price":24,"regular_price":24,"description":"

                                    Your muscles know it's go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

                                    \n

                                    • Black compression shorts.
                                    • High-waisted cut.
                                    • Compression fit.
                                    • Inseam: 1.0\".
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh07-black_main.jpg","small_image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","category_ids":[28,8,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"echo-fit-compression-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[149,151,159],"eco_collection":"0","performance_fabric":"0","erin_recommends":"0","new":"1","sale":"0","style_bottom":[112,105,108],"pattern":"197","climate":[202,205,212,206,209],"slug":"echo-fit-compression-short-2002","links":{},"stock":{"item_id":2002,"product_id":2002,"stock_id":1,"qty":14,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh07-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh07-black_back.jpg","pos":2,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","color":"49","small_image":"/w/s/wsh07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"echo-fit-compression-short-28-black","required_options":"0","msrp_display_actual_price_type":"0","size":"172","price":24,"name":"Echo Fit Compression Short-28-Black","id":1996,"category_ids":["28","8","2"],"sku":"WSH07-28-Black","status":1},{"image":"/w/s/wsh07-blue_main.jpg","thumbnail":"/w/s/wsh07-blue_main.jpg","color":"50","small_image":"/w/s/wsh07-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"echo-fit-compression-short-28-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"172","price":24,"name":"Echo Fit Compression Short-28-Blue","id":1997,"category_ids":["28","8","2"],"sku":"WSH07-28-Blue","status":1},{"image":"/w/s/wsh07-purple_main.jpg","thumbnail":"/w/s/wsh07-purple_main.jpg","color":"57","small_image":"/w/s/wsh07-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"echo-fit-compression-short-28-purple","required_options":"0","msrp_display_actual_price_type":"0","size":"172","price":24,"name":"Echo Fit Compression Short-28-Purple","id":1998,"category_ids":["28","8","2"],"sku":"WSH07-28-Purple","status":1},{"image":"/w/s/wsh07-black_main.jpg","thumbnail":"/w/s/wsh07-black_main.jpg","color":"49","small_image":"/w/s/wsh07-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"echo-fit-compression-short-29-black","required_options":"0","msrp_display_actual_price_type":"0","size":"173","price":24,"name":"Echo Fit Compression Short-29-Black","id":1999,"category_ids":["28","8","2"],"sku":"WSH07-29-Black","status":1},{"image":"/w/s/wsh07-blue_main.jpg","thumbnail":"/w/s/wsh07-blue_main.jpg","color":"50","small_image":"/w/s/wsh07-blue_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"echo-fit-compression-short-29-blue","required_options":"0","msrp_display_actual_price_type":"0","size":"173","price":24,"name":"Echo Fit Compression Short-29-Blue","id":2000,"category_ids":["28","8","2"],"sku":"WSH07-29-Blue","status":1},{"image":"/w/s/wsh07-purple_main.jpg","thumbnail":"/w/s/wsh07-purple_main.jpg","color":"57","small_image":"/w/s/wsh07-purple_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"echo-fit-compression-short-29-purple","regular_price":24,"required_options":"0","msrp_display_actual_price_type":"0","max_price":24,"minimal_regular_price":24,"size":"173","final_price":24,"special_price":null,"price":24,"minimal_price":24,"name":"Echo Fit Compression Short-29-Purple","id":2001,"category_ids":["28","8","2"],"sku":"WSH07-29-Purple","max_regular_price":24,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":50,"label":"Blue"},{"value_index":57,"label":"Purple"}],"product_id":2002,"id":285,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":2002,"id":284,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,50,57],"size_options":[172,173],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/yoga-new/new-luma-yoga-collection-8","category_id":8,"name":"New Luma Yoga Collection","slug":"new-luma-yoga-collection-8"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/echo-fit-compression-short-2002.html","tsk":1568838059181}} +{"_index":"vue_storefront_catalog_product_1568838132","_type":"_doc","_id":"2022","_score":1,"_source":{"id":2022,"sku":"WSH10","name":"Ana Running Short","attribute_set_id":10,"price":40,"status":1,"visibility":4,"type_id":"configurable","created_at":"2017-11-06 12:17:28","updated_at":"2017-11-06 12:17:28","product_links":[],"tier_prices":[],"custom_attributes":null,"final_price":40,"max_price":40,"max_regular_price":40,"minimal_regular_price":40,"special_price":null,"minimal_price":40,"regular_price":40,"description":"

                                    Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.

                                    \n

                                    • Black/pink two-layer shorts.
                                    • Low-rise elastic waistband.
                                    • Relaxed fit.
                                    • Ultra-lightweight fabric.
                                    • Internal drawstring.
                                    • Machine wash/dry.

                                    ","image":"/w/s/wsh10-black_main.jpg","small_image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","category_ids":[28,36,2],"options_container":"container2","required_options":"0","has_options":"1","url_key":"ana-running-short","msrp_display_actual_price_type":"0","tax_class_id":"2","material":[156,154,38],"eco_collection":"1","performance_fabric":"0","erin_recommends":"0","new":"0","sale":"0","style_bottom":"106","pattern":"198","climate":[202,209],"slug":"ana-running-short-2022","links":{},"stock":{"item_id":2022,"product_id":2022,"stock_id":1,"qty":0,"is_in_stock":true,"is_qty_decimal":false,"show_default_notification_message":false,"use_config_min_qty":true,"min_qty":0,"use_config_min_sale_qty":1,"min_sale_qty":1,"use_config_max_sale_qty":true,"max_sale_qty":10000,"use_config_backorders":true,"backorders":0,"use_config_notify_stock_qty":true,"notify_stock_qty":1,"use_config_qty_increments":true,"qty_increments":0,"use_config_enable_qty_inc":true,"enable_qty_increments":false,"use_config_manage_stock":true,"manage_stock":true,"low_stock_date":null,"is_decimal_divided":false,"stock_status_changed_auto":0},"media_gallery":[{"vid":null,"image":"/w/s/wsh10-black_main.jpg","pos":1,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh10-black_alt1.jpg","pos":2,"typ":"image","lab":""},{"vid":null,"image":"/w/s/wsh10-black_back.jpg","pos":3,"typ":"image","lab":""}],"configurable_children":[{"image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","color":"49","small_image":"/w/s/wsh10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ana-running-short-28-black","regular_price":40,"required_options":"0","msrp_display_actual_price_type":"0","max_price":40,"minimal_regular_price":40,"size":"172","final_price":40,"special_price":null,"price":40,"minimal_price":40,"name":"Ana Running Short-28-Black","id":2016,"category_ids":["28","36","2"],"sku":"WSH10-28-Black","max_regular_price":40,"status":1},{"image":"/w/s/wsh10-orange_main.jpg","thumbnail":"/w/s/wsh10-orange_main.jpg","color":"56","small_image":"/w/s/wsh10-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ana-running-short-28-orange","regular_price":40,"required_options":"0","msrp_display_actual_price_type":"0","max_price":40,"minimal_regular_price":40,"size":"172","final_price":40,"special_price":null,"price":40,"minimal_price":40,"name":"Ana Running Short-28-Orange","id":2017,"category_ids":["28","36","2"],"sku":"WSH10-28-Orange","max_regular_price":40,"status":1},{"image":"/w/s/wsh10-white_main.jpg","thumbnail":"/w/s/wsh10-white_main.jpg","color":"59","small_image":"/w/s/wsh10-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ana-running-short-28-white","regular_price":40,"required_options":"0","msrp_display_actual_price_type":"0","max_price":40,"minimal_regular_price":40,"size":"172","final_price":40,"special_price":null,"price":40,"minimal_price":40,"name":"Ana Running Short-28-White","id":2018,"category_ids":["28","36","2"],"sku":"WSH10-28-White","max_regular_price":40,"status":1},{"image":"/w/s/wsh10-black_main.jpg","thumbnail":"/w/s/wsh10-black_main.jpg","color":"49","small_image":"/w/s/wsh10-black_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ana-running-short-29-black","regular_price":40,"required_options":"0","msrp_display_actual_price_type":"0","max_price":40,"minimal_regular_price":40,"size":"173","final_price":40,"special_price":null,"price":40,"minimal_price":40,"name":"Ana Running Short-29-Black","id":2019,"category_ids":["28","36","2"],"sku":"WSH10-29-Black","max_regular_price":40,"status":1},{"image":"/w/s/wsh10-orange_main.jpg","thumbnail":"/w/s/wsh10-orange_main.jpg","color":"56","small_image":"/w/s/wsh10-orange_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ana-running-short-29-orange","regular_price":40,"required_options":"0","msrp_display_actual_price_type":"0","max_price":40,"minimal_regular_price":40,"size":"173","final_price":40,"special_price":null,"price":40,"minimal_price":40,"name":"Ana Running Short-29-Orange","id":2020,"category_ids":["28","36","2"],"sku":"WSH10-29-Orange","max_regular_price":40,"status":1},{"image":"/w/s/wsh10-white_main.jpg","thumbnail":"/w/s/wsh10-white_main.jpg","color":"59","small_image":"/w/s/wsh10-white_main.jpg","tax_class_id":"2","has_options":"0","tier_prices":[],"url_key":"ana-running-short-29-white","regular_price":40,"required_options":"0","msrp_display_actual_price_type":"0","max_price":40,"minimal_regular_price":40,"size":"173","final_price":40,"special_price":null,"price":40,"minimal_price":40,"name":"Ana Running Short-29-White","id":2021,"category_ids":["28","36","2"],"sku":"WSH10-29-White","max_regular_price":40,"status":1}],"configurable_options":[{"attribute_id":"93","values":[{"value_index":49,"label":"Black"},{"value_index":56,"label":"Orange"},{"value_index":59,"label":"White"}],"product_id":2022,"id":291,"label":"Color","position":1,"attribute_code":"color"},{"attribute_id":"142","values":[{"value_index":172,"label":"28"},{"value_index":173,"label":"29"}],"product_id":2022,"id":290,"label":"Size","position":0,"attribute_code":"size"}],"color_options":[49,56,59],"size_options":[172,173],"category":[{"path":"women/bottoms-women/shorts-women/shorts-28","category_id":28,"name":"Shorts","slug":"shorts-28"},{"path":"collections/eco-friendly/eco-friendly-36","category_id":36,"name":"Eco Friendly","slug":"eco-friendly-36"},{"path":"all-2","category_id":2,"name":"All","slug":"all-2"}],"url_path":"women/bottoms-women/shorts-women/shorts-28/ana-running-short-2022.html","tsk":1568838059181}} diff --git a/var/catalog_review.json b/var/catalog_review.json new file mode 100644 index 00000000..752cf667 --- /dev/null +++ b/var/catalog_review.json @@ -0,0 +1,637 @@ +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"2","_score":1,"_source":{"id":2,"title":"I use it a lot ","detail":"It's a good size and I use it a lot. My only issue with it was I wanted the handles to be longer so I can wear it on my back.","nickname":"Filiberto","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:43","store_id":1,"stores":[0,1],"product_id":1,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"24","_score":1,"_source":{"id":24,"title":"No ticktock","detail":"I got it because I thought it would still make a ticktick noise even though it's digital, but it doesn't!","nickname":"Chuck","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":38,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"13","_score":1,"_source":{"id":13,"title":"Great bag! I use it for everything! ","detail":"Great bag! I use it for everything! Not sure what happened with the person who said the strap broke because mine is perfect. Maybe it was fluke? I'd return it and try another. It's been awesome for me!","nickname":"Quinn","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":4,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"15","_score":1,"_source":{"id":15,"title":"Color is weird","detail":"I wanted to like this bag, and it is definitely good quality, but the color is so weird in real life. From a distance it kind of looks like I just found it in a dumpster. Shame because that is the only drawback.","nickname":"Adalberto","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":5,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"26","_score":1,"_source":{"id":26,"title":"the only watch I wear","detail":"Hands down, it's the only watch I wear when I'm out on a run. The strap is soft and smooth, and the face even glows in the dark.","nickname":"Noe","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":36,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"560","_score":1,"_source":{"id":560,"title":"sdsdsds","detail":"adsadsa","nickname":"Vinod","customer_id":12189,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-07-16 08:57:46","store_id":1,"stores":[0,1],"product_id":1482,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"202","_score":1,"_source":{"id":202,"title":"Soft but not wrm","detail":"Definitely not as warm as I hoped, but its super soft. I'll wear it when I need another layer.","nickname":"Lilliam","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1225,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"201","_score":1,"_source":{"id":201,"title":"Fall weather jogs or walks","detail":"Perfect for fall weather jogs or walks on cool evenings. The sweat-wicking fabric works wonders, keeps the hoodie dry after you've cooled down so you're not cold and wet (which I can't stand).","nickname":"Stefany","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1119,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"536","_score":1,"_source":{"id":536,"title":"test ","detail":"test 1223 review","nickname":"manvendra","customer_id":11159,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-07-03 05:09:39","store_id":1,"stores":[0,1],"product_id":1755,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"608","_score":1,"_source":{"id":608,"title":"dd","detail":"dd","nickname":"dd","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-09-02 11:47:37","store_id":1,"stores":[0,1],"product_id":1529,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"208","_score":1,"_source":{"id":208,"title":"my new fave zip up","detail":"OMG, I've found my new fave zip up!! I live in this thing! I'm just mad their arent more colors.","nickname":"Lakeesha","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1241,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"210","_score":1,"_source":{"id":210,"title":"it's so light and really long!","detail":"it's so light and really long! I wear it with jeans, yoga pants, whatever!","nickname":"Regenia","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1257,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"211","_score":1,"_source":{"id":211,"title":"Wish I'd bought the tshirt","detail":"Love the material, but the hood kind of flops around. I should have bought the t-shirt instead of the hoodie.","nickname":"Juliette","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1257,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"188","_score":1,"_source":{"id":188,"title":"I can't get enough of this hoodie","detail":"I can't get enough of this hoodie. It's so comfortable, I hate taking it off! I'm buying it in more colors now so that I can wear it more without people realizing that I wear the same thing every day ;)","nickname":"Olene","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1065,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"190","_score":1,"_source":{"id":190,"title":"Softest hoodie ever","detail":"This hoodie may be the softest thing I've ever touched! It's so perfect for curling up on a chilly day. I wore it hiking on a really cold day last November and it kept me really warm. My only issue is that it's kind of plain and unflattering. I would love to wear it all the time but it makes me look a little frumpy. Luma, I need this fabric with a more stylish design!","nickname":"Martina","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1065,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"631","_score":1,"_source":{"id":631,"title":"So hot","detail":"Its so hot ","nickname":"Hans","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-09-10 09:18:37","store_id":1,"stores":[0,1],"product_id":51,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"615","_score":1,"_source":{"id":615,"title":"Test","detail":"Test","nickname":"Test","review_entity":"product","review_type":3,"review_status":1,"created_at":"2019-09-02 12:45:33","store_id":1,"stores":[0,1],"product_id":1754,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"624","_score":1,"_source":{"id":624,"title":"test","detail":"test","nickname":"Roy","customer_id":13158,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-09-04 16:55:50","store_id":1,"stores":[0,1],"product_id":21,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"618","_score":1,"_source":{"id":618,"title":"Test","detail":"Test","nickname":"Test","review_entity":"product","review_type":3,"review_status":1,"created_at":"2019-09-02 12:48:32","store_id":1,"stores":[0,1],"product_id":1769,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"626","_score":1,"_source":{"id":626,"title":"review","detail":"review","nickname":"Bilal","customer_id":13164,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-09-04 18:45:32","store_id":1,"stores":[0,1],"product_id":1754,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"619","_score":1,"_source":{"id":619,"title":"Nice Product","detail":"Very nice product. recommend","nickname":"test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-09-02 13:43:07","store_id":1,"stores":[0,1],"product_id":644,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"633","_score":1,"_source":{"id":633,"title":"Best product ever","detail":"It's green","nickname":"Fred","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-09-13 22:09:36","store_id":1,"stores":[0,1],"product_id":1902,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"640","_score":1,"_source":{"id":640,"title":"good","detail":"one","nickname":"JJ","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-09-18 11:49:20","store_id":1,"stores":[0,1],"product_id":1545,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"221","_score":1,"_source":{"id":221,"title":"Square shape","detail":"Makes me look like a square. Literally, like a square shape.","nickname":"Jessi","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1305,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"634","_score":1,"_source":{"id":634,"title":"Dolore ea est volupt","detail":"Non do ex quaerat om","nickname":"Itaque debitis excep","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-09-14 12:57:58","store_id":1,"stores":[0,1],"product_id":39,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"500","_score":1,"_source":{"id":500,"title":"Nice","detail":"Nice!","nickname":"Pawel","review_entity":"product","review_type":3,"review_status":1,"created_at":"2019-06-08 11:01:32","store_id":1,"stores":[0,1],"product_id":1450,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"638","_score":1,"_source":{"id":638,"title":"pruebas","detail":"normal","nickname":"Juan","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-09-18 03:39:52","store_id":1,"stores":[0,1],"product_id":42,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"627","_score":1,"_source":{"id":627,"title":"Product is good","detail":"This product is good. Really really good","nickname":"Daryl","customer_id":13175,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-09-06 08:59:31","store_id":1,"stores":[0,1],"product_id":1513,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"511","_score":1,"_source":{"id":511,"title":"Dolores enim earum q","detail":"Et nisi aut cupidata","nickname":"Eum pariatur Autem ","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-06-18 05:12:04","store_id":1,"stores":[0,1],"product_id":1033,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"508","_score":1,"_source":{"id":508,"title":"Velly nice","detail":"Velly nice","nickname":"johan","review_entity":"product","review_type":3,"review_status":1,"created_at":"2019-06-17 09:21:37","store_id":1,"stores":[0,1],"product_id":1756,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"620","_score":1,"_source":{"id":620,"title":"test","detail":"test","nickname":"test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-09-03 07:37:52","store_id":1,"stores":[0,1],"product_id":994,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"240","_score":1,"_source":{"id":240,"title":"These pants move so well!","detail":"These pants move so well! They provide nice coverage so when I'm in Downward Dog, I don't have to worry. I don't know about this Cooltech technology though. I sweat in them, so they definitely don't keep me dry. They're pretty warm!","nickname":"Deloise","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1838,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"241","_score":1,"_source":{"id":241,"title":"Seams separated righth away","detail":"I wear them once and the seams started to separate! Not constructed well at all. With the kazillion other yoga pants out there, there's no excuse for this!","nickname":"Rosann","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1838,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"503","_score":1,"_source":{"id":503,"title":"red","detail":"red","nickname":"alinadivante","review_entity":"product","review_type":3,"review_status":1,"created_at":"2019-06-12 10:19:04","store_id":1,"stores":[0,1],"product_id":1513,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"501","_score":1,"_source":{"id":501,"title":"nice, very nice","detail":"10.06.2019 perfect choice","nickname":"atest","customer_id":8596,"review_entity":"product","review_type":1,"review_status":1,"created_at":"2019-06-10 06:45:01","store_id":1,"stores":[0,1],"product_id":1513,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"239","_score":1,"_source":{"id":239,"title":"I have 5 pairs","detail":"I literally have about 5 pairs of these in my drawer. I don't just wear them to yoga though. Oh no! I wear them on a normal Saturday around town. Love them!","nickname":"Dannielle","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1838,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"507","_score":1,"_source":{"id":507,"title":"Test","detail":"Testreview","nickname":"Kurt Wagmer","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-06-17 07:30:57","store_id":1,"stores":[0,1],"product_id":982,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"502","_score":1,"_source":{"id":502,"title":"test","detail":"test","nickname":"test","review_entity":"product","review_type":3,"review_status":1,"created_at":"2019-06-11 02:01:55","store_id":1,"stores":[0,1],"product_id":987,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"512","_score":1,"_source":{"id":512,"title":"dew","detail":"sfsdfsf","nickname":"Gabi","customer_id":8838,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-06-18 05:12:14","store_id":1,"stores":[0,1],"product_id":1033,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"244","_score":1,"_source":{"id":244,"title":"LOVE, LOVE, LOVE. ","detail":"LOVE, LOVE, LOVE. They are so comfy and good for anything. I have two toddlers, so I rarely get a chance to finish my morning stretches and yoga, let alone get changed afterward before I get interrupted by my kids. Sometimes I will be making lunch and realize that I'm still wearing these! They're so comfy and good for anything. It's nice to know that if I need to run out on a quick errand, I won't look like a total bum even if I forgot to change.","nickname":"Brittni","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1845,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"196","_score":1,"_source":{"id":196,"title":"Not very stylish","detail":"It's kinda average and I don't know if I would get it again. With the right color combination, it might look ok, but the combo I have and the short sleeve style doesn't make it very stylish.","nickname":"Jonna","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1097,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"256","_score":1,"_source":{"id":256,"title":"Fits my large head TG","detail":"So I have a really large head and I love this shirt bc the neckline is so stretchy! Honestly I have gotten stuck in other running shirts with the really small collar hahahahaha so embarrassing!!! !!","nickname":"Hsiu","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1417,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"499","_score":1,"_source":{"id":499,"title":"test","detail":"test","nickname":"Chen","customer_id":9107,"review_entity":"product","review_type":1,"review_status":1,"created_at":"2019-06-08 01:46:47","store_id":1,"stores":[0,1],"product_id":1482,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"493","_score":1,"_source":{"id":493,"title":"gg","detail":"ggg","nickname":"Ranjeet","customer_id":9056,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-06-04 13:19:49","store_id":1,"stores":[0,1],"product_id":1349,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"610","_score":1,"_source":{"id":610,"title":"aa","detail":"aa","nickname":"aa","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-09-02 11:52:06","store_id":1,"stores":[0,1],"product_id":1529,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"236","_score":1,"_source":{"id":236,"title":"Yoga is for hippees","detail":"I bought these to hang out in not for yoga. yoga is for hippees!","nickname":"Judith","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1831,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"495","_score":1,"_source":{"id":495,"title":"Test","detail":"Test","nickname":"Test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-06-06 17:29:29","store_id":1,"stores":[0,1],"product_id":84,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"235","_score":1,"_source":{"id":235,"title":"Great for yoga","detail":"I'm not a fan of really tight or compressed pants so I love these for my yoga classes (not so much for hot yoga, though). ","nickname":"Nyla","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1824,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"509","_score":1,"_source":{"id":509,"title":"summary","detail":"daje OKejke","nickname":"alinadivante","review_entity":"product","review_type":3,"review_status":1,"created_at":"2019-06-17 12:26:09","store_id":1,"stores":[0,1],"product_id":1529,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"506","_score":1,"_source":{"id":506,"title":"some text","detail":"more t4es","nickname":"tesdt","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-06-16 15:37:50","store_id":1,"stores":[0,1],"product_id":1394,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"232","_score":1,"_source":{"id":232,"title":"Not for cold weather","detail":"This really doesn't deliver on the insulating part. I can't say I would throw this on in really chilly temperatures-need a coat.","nickname":"Eda","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1369,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"238","_score":1,"_source":{"id":238,"title":"Want more colors","detail":"Guys. I have like 10 pairs of these cause they're so comfy, natch! Please make more colors!","nickname":"Isela","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1831,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"246","_score":1,"_source":{"id":246,"title":"These are soft and stretchy","detail":"These are soft and stretchy enough but don't draw sweat away. ","nickname":"Tarra","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1852,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"7","_score":1,"_source":{"id":7,"title":"The back needs more padding","detail":"If the back had more padding I would recommend it for everyone. You can tell the material is strong and not cheap so it's definitely worth it.","nickname":"Chase","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:43","store_id":1,"stores":[0,1],"product_id":3,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"4","_score":1,"_source":{"id":4,"title":"Decent bag","detail":"Decent bag. I keep my stuff in it for work and the gym. It's nice and roomy. I wish it had a more sophisticated design, though. Kinda looks like it's for kids.","nickname":"Craig","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:43","store_id":1,"stores":[0,1],"product_id":6,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"30","_score":1,"_source":{"id":30,"title":"This watch is so tight","detail":"This watch is so tight around my wrist! I don't care if it's adjustable, it cuts off my circulation.","nickname":"Tommie","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":39,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"33","_score":1,"_source":{"id":33,"title":"Perfect layer for the game","detail":"Perfect layer for wearing to the game, it doesn't shed all over your clothes like a regular hoodie.","nickname":"Mike","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":291,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"17","_score":1,"_source":{"id":17,"title":"This thing is awesome ","detail":"This thing is awesome and remembers all the stuff I've stored. ","nickname":"Jewel","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":37,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"19","_score":1,"_source":{"id":19,"title":"Working flawlessly","detail":"I recently replace my 25 year old watch with this one, so it had high expectations to live up to. So far all the features are working flawlessly, I only hope it lasts as long as my old one.","nickname":"Billy","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":40,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"28","_score":1,"_source":{"id":28,"title":"Really perfect for travel ","detail":"Really perfect for my needs. I travel a ton, so I'll always know what time to give my wife a call back home.","nickname":"Jamie","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":39,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"18","_score":1,"_source":{"id":18,"title":"It slides around on my wrist","detail":"It slides around on my wrist when I sweat. I've tried making it smaller but that doesn't seem to help.","nickname":"Brice","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":37,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"25","_score":1,"_source":{"id":25,"title":"Not a bad watch for the price","detail":"Not a bad watch for the price. Wish it had actual numbers instead of marks, though.","nickname":"Robert","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":36,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"16","_score":1,"_source":{"id":16,"title":"I am OBSESSED with these","detail":"I run 5 times a day and am OBSESSED with this watch! It tracks and calculates all the things my brain can't because I hate maths. PS I know this is a men's watch and I am not a man, but I have large wrists!","nickname":"Refugio","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":37,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"39","_score":1,"_source":{"id":39,"title":"Practically perferct","detail":"I have to say this is a practically perfect rain jacket. I do wish it was heavier though since it only works for me in spring and summer rainstorms. ","nickname":"Lindsay","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":307,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"37","_score":1,"_source":{"id":37,"title":"avid hiker/snowboarder","detail":"I'm an avid hiker/snowboarder and know quality when I see it. Please don't be fooled by the thin feel of this jacket - I always feel very comfortable and only rarely feel too warm, and then it's only because I wear insulating base layers. You will not be disappointed, especially if you're into winter sports or outdoor activities at higher elevations. My only issue with it is the zipper, which broke and had to be replaced.","nickname":"Wilbur","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":419,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"44","_score":1,"_source":{"id":44,"title":"I didn't think it was that warm","detail":"I didn't think it was that warm at all and it needs a hood. I wouldn't wear it in the winter that's for sure. ","nickname":"Neal","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":323,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"45","_score":1,"_source":{"id":45,"title":"for my son to wear to school ","detail":"I got this for my son to wear to school and it's treated him very well. Not too bulky and the reversible design is a very nice touch!","nickname":"Herschel","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":323,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"48","_score":1,"_source":{"id":48,"title":"does everything it's suppose","detail":"This jacket does everything it's supposed to do. Keeps me warm and has lots of room for my stuff. Good buy!","nickname":"Burl","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":339,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"21","_score":1,"_source":{"id":21,"title":"Hydration alarm","detail":"This was given as a gift to me and it wasn't the one I asked for, but I'm starting to like the different perks like the hydration alarm","nickname":"Luther","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":40,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"57","_score":1,"_source":{"id":57,"title":"Inseam is WAY too long","detail":"Either I'm too short or this inseam is way off. WAY too long! I trip constantly in these.","nickname":"Reyes","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":755,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"59","_score":1,"_source":{"id":59,"title":"There's nothing to dislike","detail":"There's nothing to dislike about these track pants bc they do everything you want??blocks the wind and keeps you warm. Very happy I got them!","nickname":"Darius","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":768,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"46","_score":1,"_source":{"id":46,"title":"Kinda bulky","detail":"Kinda bulky when you wear both, but they still let me move ok. Great for football games.","nickname":"Rudolf","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":339,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"67","_score":1,"_source":{"id":67,"title":"I got this for running","detail":"I got this for running, but the fit is kind of funny so I just end up wearing it for yard work. It's light enough, just nothing special.","nickname":"Tyree","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":563,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"61","_score":1,"_source":{"id":61,"title":"These are great!","detail":"These are great! Major major points for the two-tone design plus all those technologies - I never feel gross after my runs. A must have for anyone serious about their body! ","nickname":"Hershel","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":781,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"68","_score":1,"_source":{"id":68,"title":"Nice and light. ","detail":"Nice and light. I like that there's no obnoxious design.","nickname":"Weston","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":563,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"36","_score":1,"_source":{"id":36,"title":"I don't feel protected","detail":"Not sure exactly what \"elements\" they're talking about here. I don't feel protected from any \"elements\" in this throw-away.","nickname":"Homer","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":419,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"52","_score":1,"_source":{"id":52,"title":"Loop thing broke","detail":"I'd give it 4 or 5 stars if it wasn't for the fact that the effing loop thing broke. It wasn't stretchy enough and now im back to carrying my fone and sweating on it ughghg! ","nickname":"Jessie","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":371,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"64","_score":1,"_source":{"id":64,"title":"THESE PANTS KEEP ME WARM","detail":"THESE PANTS KEEP ME WARM WHEN IM BENCHED AT MY GAME! I DON'T GET TO PLAY A LOT. LOL","nickname":"Nicky","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":794,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"70","_score":1,"_source":{"id":70,"title":"my new favorite CrossFit shirt","detail":"Fits great. It's my new favorite CrossFit shirt.","nickname":"Leigh","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":579,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"43","_score":1,"_source":{"id":43,"title":"fleece lining","detail":"The fleece lining is what sold me! I hate being cold and this jacket really helps me not to be. Almost perfect-the hem slightly unraveled which is preventing me from giving it a 5.","nickname":"Shon","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":403,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"74","_score":1,"_source":{"id":74,"title":"Ready to hit the gym","detail":"As soon as I put this shirt on I feel ready to hit the gym, even on my laziest days. Something about the way it feels just gets me psyched up!","nickname":"Cletus","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":451,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"76","_score":1,"_source":{"id":76,"title":"it says moisturewicking?","detail":"it says moisturewicking but i still sweat when i wear this shirt, don't trust what you read on the internet","nickname":"Filiberto","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":451,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"62","_score":1,"_source":{"id":62,"title":"I bought these for my man.","detail":"I bought these for my man. What can I say, these pants keep him comfortable and dry. Never heard any complaints except that he wishes they stretched more. Good buy! ","nickname":"Hans","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":781,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"53","_score":1,"_source":{"id":53,"title":"They chafed me!","detail":"They chafed me!","nickname":"Rashad","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":742,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"65","_score":1,"_source":{"id":65,"title":"Good dog walking pants","detail":"Good dog walking pants","nickname":"Mark","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":794,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"83","_score":1,"_source":{"id":83,"title":"This shirt is too tight and too thin.","detail":"This shirt is too tight and too thin. REALLY emphasizes the fact that I do not have clearly defined pectorals.","nickname":"Sergio","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":611,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"84","_score":1,"_source":{"id":84,"title":"Great training top. ","detail":"Great training top. I like that it also has UV protection because I'm outdoors all the time. Seems are a little weird tho.","nickname":"Donnell","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":611,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"49","_score":1,"_source":{"id":49,"title":"Love it; don't have to take off gloves","detail":"Love it; don't have to take my gloves off and dig around in my pocket for my ipod","nickname":"Carol","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":355,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"54","_score":1,"_source":{"id":54,"title":"They are comfy","detail":"Don't know why people on here are so negative about these pants. They are comfy and feel very lightweight and soft. The internal pocket is great for cash when I need to refeul during runs! ","nickname":"Barrett","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":742,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"98","_score":1,"_source":{"id":98,"title":"Yea. This pilled imeddiately","detail":"Yea. This pilled imeddiately after I washed it. Definatly returning.","nickname":"Wendell","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":515,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"93","_score":1,"_source":{"id":93,"title":"Ripped the FIRST TIME I wore ","detail":"This shirt ripped the FIRST TIME I wore it.","nickname":"Carlo","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":595,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"110","_score":1,"_source":{"id":110,"title":"Love, love, love - did I say love? It wa","detail":"Love, love, love - did I say love? It was totally worth it to wait for Luma to come out with a trail running shoe. Very comfortable.","nickname":"Jerold","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":942,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"102","_score":1,"_source":{"id":102,"title":"These do drain well","detail":"These do drain well and are really comfortable but the bottoms can still be slippery if you're walking on wet rocks. Just be careful!","nickname":"Milton","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":898,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"133","_score":1,"_source":{"id":133,"title":"Shirt can stink after","detail":"Ok, MAYBE this is just me but I sweat a LOT when I run, and I've noticed that this shirt really retains odor. I washed it three times and it still stank so I had to just throw it away. Which sucks because I really liked it, but come on!","nickname":"Scotty","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":681,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"134","_score":1,"_source":{"id":134,"title":"Wish it was longer","detail":"wish it was longer. i'm 5'11 with a long torso and it's too short.","nickname":"Alexander","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":681,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"206","_score":1,"_source":{"id":206,"title":"Shrinks a lot","detail":"Mine shrunk to! :( I gave it to my little sister.","nickname":"Alesha","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1241,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"207","_score":1,"_source":{"id":207,"title":"Shrunk right away!","detail":"So annoyed! I loved this, but then it shrunk after I washed it once! It's adorable but now the sleeves are too short. Returning. :(","nickname":"Tennille","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1241,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"130","_score":1,"_source":{"id":130,"title":"Comfortable","detail":"Not as lightweight as it seems but it was ok. Comfortable.","nickname":"Joey","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":675,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"139","_score":1,"_source":{"id":139,"title":"The material is a little thin","detail":"The material is a little thin so I'm afraid it won't last long. The zippers slide really nice and the wheels are good on the pavement. Overall a good purchase.","nickname":"Alene","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":7,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"167","_score":1,"_source":{"id":167,"title":"What's not to like about this bag?!!","detail":"What's not to like about this bag?!! It's simple, clean and modern, and it fits me perfeclty. The roominess is a big plus when I make multiple trips to the gym then the grocery store then wherever else. LOVE IT! ","nickname":"Anglea","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":10,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"153","_score":1,"_source":{"id":153,"title":"Will whip you into shape!","detail":"these things whip you into shape! a month after I got them and used them several times aeach week I could see a huge difference in my muscle tone. very happy with the results!!! :)","nickname":"Ashlea","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":19,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"161","_score":1,"_source":{"id":161,"title":"Wish it had more pocket","detail":"Wish it had more pockets, but it's still good. A shoulder strap would also have been nice.","nickname":"Lidia","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":9,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"137","_score":1,"_source":{"id":137,"title":"I bought this bag for my daughter","detail":"I bought this bag for my daughter because she travels all the time and she loves it! It's easy for her to roll and carry by herself even when full. ","nickname":"Shella","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":7,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"163","_score":1,"_source":{"id":163,"title":"ok bag for a day's hike","detail":"ok bag for a day's hike around Hawk Mountain. Needs a sturdier top handle tho, things ripped","nickname":"Sueann","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":12,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"136","_score":1,"_source":{"id":136,"title":"Fits true to size, feels great.","detail":"Fits true to size, feels great. I bought three and I won't wear anything else when I'm training.","nickname":"Patrick","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":681,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"127","_score":1,"_source":{"id":127,"title":"NOT for skinny dudes ","detail":"Unless ur really muscular this won't look good. I'm keeping it cuz it's motivation to keep working out. But skinny dudes be warned.","nickname":"Tracey","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":659,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"225","_score":1,"_source":{"id":225,"title":"The actual color is brighter","detail":"The actual color is brighter than it looks in the photo, but thats why I like it for jogging in the neighborhood at night ","nickname":"Chasidy","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1337,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"170","_score":1,"_source":{"id":170,"title":"I heart this backpack so hard. ","detail":"I heart this backpack so hard. The colors are soooo cute and there's enough room for all my stuff xoxo ","nickname":"Susy","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":11,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"259","_score":1,"_source":{"id":259,"title":"Fabric is great for sport","detail":"I do think the fabric is great for sports but the cut and style are weeeird.","nickname":"Becki","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1433,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"260","_score":1,"_source":{"id":260,"title":"Doesn't help my figure one bit","detail":"The contored design is NOT really contored. I rarely wear this top out because it doesn't do anything for my figure.","nickname":"Hellen","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1433,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"265","_score":1,"_source":{"id":265,"title":"Really close-fitting. Do not love.","detail":"Really close-fitting. Do not love.","nickname":"Amberly","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1593,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"301","_score":1,"_source":{"id":301,"title":"I couldn't live without these. I wear th","detail":"I couldn't live without these. I wear them everywhere, not just running. They feel like I don't have anything on my feet, and their so, so comfortble.","nickname":"Leonia","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":2008,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"299","_score":1,"_source":{"id":299,"title":"These looked really ugly on my feet when","detail":"These looked really ugly on my feet when I got them. The picture online is much more flattering than the reality. I'm bummed. ","nickname":"Joyce","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":2002,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"312","_score":1,"_source":{"id":312,"title":"Have no idea what all the fuss is about ","detail":"Have no idea what all the fuss is about with these. I don't know, maybe I just bought the wrong size, but these are so uncomfortable. They dig into my toes and I always end up with blisters. Their cute but will look elsewhere.","nickname":"Roseline","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":2029,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"315","_score":1,"_source":{"id":315,"title":"I'm a mom on the go and I love these sho","detail":"I'm a mom on the go and I love these shoes! They're comfy, cute and easy to slip on. What more could you ask for?","nickname":"Elina","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":2045,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"317","_score":1,"_source":{"id":317,"title":"Snug fit without being too tight","detail":"Snug fit without being too tight and no irritation or chafing. ","nickname":"Ming","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1609,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"321","_score":1,"_source":{"id":321,"title":"does not fit. worthless.","detail":"does not fit. worthless.","nickname":"Ardelia","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1625,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"323","_score":1,"_source":{"id":323,"title":"I love this bra","detail":"I have a B cup and I love how this bra feels! It has a really firm fit but it doesn't feel too tight. I wish every bra felt like this!","nickname":"Cayla","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1625,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"326","_score":1,"_source":{"id":326,"title":"Make this with patterns","detail":"I wish they made this bra with patterns because I like to look good at the gym. This is a little blah, but still cute. I would never wear it by itself.","nickname":"Jammie","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1641,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"324","_score":1,"_source":{"id":324,"title":"So comfortable","detail":"If I could wear this sports bra every day, I definitely would. It's so so comfortable and washes well.","nickname":"Tonya","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1641,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"330","_score":1,"_source":{"id":330,"title":"unflattering. Ugh.","detail":"unflattering. Ugh. The elastic was literaly digging into my skin. I got my exact size so I thought I'd be good. All set.","nickname":"Avelina","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1673,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"338","_score":1,"_source":{"id":338,"title":"Not for high impact","detail":"Definitely not good for anything high-impact, but it's very stylish for yoga or something else low impact.","nickname":"Merrie","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1801,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"335","_score":1,"_source":{"id":335,"title":"Not for non-petite","detail":"Watch out if you're shapely like me - this tiny thing makes it hard to breath! ","nickname":"Teofila","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1769,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"336","_score":1,"_source":{"id":336,"title":"one of my favorites","detail":"I do a lot of different exercises and this tank - I have 2 of them - is one of my favorites. It's really soft and stays drier than other tops I've had.","nickname":"Elza","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1785,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"339","_score":1,"_source":{"id":339,"title":"A regular or me","detail":"This is in regular rotation at the gym. Its colorful and looks kinda cute under my exercise tanks.","nickname":"Pearl","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1801,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"334","_score":1,"_source":{"id":334,"title":"Could be flirtier.","detail":"Could be flirtier.","nickname":"Emerald","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1769,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"344","_score":1,"_source":{"id":344,"title":"I love the look","detail":"I love the look of this top, but I wasn't too crazy about the fit. The medium was too big in my opinion.","nickname":"Yan","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1705,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"342","_score":1,"_source":{"id":342,"title":"A sweet n sporty look for the gym","detail":"Always a sweet n sporty look for the gym! Keeps me cool and the seams don't rub up against me like some of my other tanks.","nickname":"Maryanna","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1689,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"343","_score":1,"_source":{"id":343,"title":"Good choice for working out","detail":"Good choice for working out and stylin' enough to wear when I'm hanging with friends on hot days. Also washes really well! ","nickname":"Elfriede","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1689,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"346","_score":1,"_source":{"id":346,"title":"Super cute!!! I love it","detail":"Super cute!!! I love it and want more colors. I really like running in this tank because it's not too tight.","nickname":"Mikkel","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1705,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"347","_score":1,"_source":{"id":347,"title":"ts","detail":"tes","nickname":"Piotr","customer_id":1166,"review_entity":"product","review_type":1,"review_status":1,"created_at":"2018-09-27 08:41:30","store_id":1,"stores":[0,1],"product_id":1578,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"349","_score":1,"_source":{"id":349,"title":"Test","detail":"This is a test review","nickname":"Test","customer_id":1793,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2018-11-07 04:27:51","store_id":1,"stores":[0,1],"product_id":41,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"352","_score":1,"_source":{"id":352,"title":"how to goto shopping cart?","detail":"not clear at all","nickname":"andrew","customer_id":1924,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2018-11-15 11:27:49","store_id":1,"stores":[0,1],"product_id":516,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"359","_score":1,"_source":{"id":359,"title":"test","detail":"test","nickname":"Test","customer_id":1,"review_entity":"product","review_type":1,"review_status":1,"created_at":"2018-11-21 11:47:24","store_id":1,"stores":[0,1],"product_id":2023,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"361","_score":1,"_source":{"id":361,"title":"Test","detail":"Test","nickname":"Antoine","customer_id":1997,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2018-11-22 09:46:23","store_id":1,"stores":[0,1],"product_id":1640,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"364","_score":1,"_source":{"id":364,"title":"asdas","detail":"sadasd","nickname":"Scott","review_entity":"product","review_type":3,"review_status":2,"created_at":"2018-12-07 01:05:01","store_id":1,"stores":[0,1],"product_id":244,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"368","_score":1,"_source":{"id":368,"title":"hjbhkjbjksdjkh","detail":"jhbkjhkjhkk","nickname":"yasser","review_entity":"product","review_type":3,"review_status":2,"created_at":"2018-12-13 05:26:38","store_id":1,"stores":[0,1],"product_id":834,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"366","_score":1,"_source":{"id":366,"title":"sdf","detail":"sdf","nickname":"dr","review_entity":"product","review_type":3,"review_status":2,"created_at":"2018-12-08 17:55:37","store_id":1,"stores":[0,1],"product_id":72119,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"373","_score":1,"_source":{"id":373,"title":"My Summury","detail":"My Review","nickname":"commercito","customer_id":2388,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2018-12-25 12:11:43","store_id":1,"stores":[0,1],"product_id":426,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"383","_score":1,"_source":{"id":383,"title":"123","detail":"123","nickname":"123","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-01-17 19:59:02","store_id":1,"stores":[0,1],"product_id":566,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"384","_score":1,"_source":{"id":384,"title":"123","detail":"123","nickname":"123","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-01-17 21:42:25","store_id":1,"stores":[0,1],"product_id":956,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"385","_score":1,"_source":{"id":385,"title":"312312312","detail":"312312312","nickname":"Alex","customer_id":2579,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-01-17 21:55:23","store_id":1,"stores":[0,1],"product_id":565,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"382","_score":1,"_source":{"id":382,"title":"Nice","detail":"Love it!","nickname":"Sarah","customer_id":2543,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-01-15 06:59:30","store_id":1,"stores":[0,1],"product_id":1758,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"390","_score":1,"_source":{"id":390,"title":"Test","detail":"testtesttest","nickname":"Iga","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-02-01 15:04:38","store_id":1,"stores":[0,1],"product_id":1578,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"392","_score":1,"_source":{"id":392,"title":"123","detail":"test2","nickname":"test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-02-04 09:34:09","store_id":1,"stores":[0,1],"product_id":1,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"395","_score":1,"_source":{"id":395,"title":"This is a test review","detail":"I was super happy with the product quality. Totally recommended. ","nickname":"Fernando Cejas","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-02-08 14:27:21","store_id":1,"stores":[0,1],"product_id":50,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"374","_score":1,"_source":{"id":374,"title":"TestSummary","detail":"TestRewiev","nickname":"TestFirst","customer_id":2400,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2018-12-26 15:41:40","store_id":1,"stores":[0,1],"product_id":396,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"402","_score":1,"_source":{"id":402,"title":"vcxzxczxc","detail":"zcxzxczxczxcz","nickname":"cxvcxv","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-02-21 15:51:59","store_id":1,"stores":[0,1],"product_id":1562,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"401","_score":1,"_source":{"id":401,"title":"ma","detail":"asfkj","nickname":"879879","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-02-19 16:26:28","store_id":1,"stores":[0,1],"product_id":8,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"413","_score":1,"_source":{"id":413,"title":"test","detail":"test","nickname":"Denis","customer_id":7895,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-03-18 08:36:24","store_id":1,"stores":[0,1],"product_id":1482,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"411","_score":1,"_source":{"id":411,"title":"rtyr","detail":"rty","nickname":"Test","customer_id":6885,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-03-08 16:05:48","store_id":1,"stores":[0,1],"product_id":995,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"409","_score":1,"_source":{"id":409,"title":"cvyvchgvj","detail":"gvhgvghv","nickname":"uytg","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-03-03 21:07:42","store_id":1,"stores":[0,1],"product_id":1515,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"414","_score":1,"_source":{"id":414,"title":"test","detail":"test","nickname":"test","customer_id":8166,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-03-21 17:04:08","store_id":1,"stores":[0,1],"product_id":700,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"407","_score":1,"_source":{"id":407,"title":"bhjb","detail":"vhjk","nickname":"sv","customer_id":3302,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-02-26 14:24:48","store_id":1,"stores":[0,1],"product_id":3059982310,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"410","_score":1,"_source":{"id":410,"title":"Another Great Product!","detail":"This javascript technology rocks. I am blown away. It is so beautiful.","nickname":"Melanie","customer_id":4723,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-03-07 12:44:50","store_id":1,"stores":[0,1],"product_id":2,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"417","_score":1,"_source":{"id":417,"title":"dasfsfaldjfsldkjflkjfdadskj","detail":"fsdfjks;laifjsoidfjsofaspdifuspoa","nickname":"test","customer_id":8166,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-03-21 17:09:10","store_id":1,"stores":[0,1],"product_id":37,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"431","_score":1,"_source":{"id":431,"title":"Test","detail":"Test","nickname":"Test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-04-08 14:20:58","store_id":1,"stores":[0,1],"product_id":730,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"430","_score":1,"_source":{"id":430,"title":"akjsdkjasbdkjb","detail":"askdjbkjabsd","nickname":"asdasd","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-04-08 12:07:15","store_id":1,"stores":[0,1],"product_id":1382,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"434","_score":1,"_source":{"id":434,"title":"Mohammad","detail":"hola","nickname":"Mohammad","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-04-11 16:47:20","store_id":1,"stores":[0,1],"product_id":1493,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"432","_score":1,"_source":{"id":432,"title":"Test","detail":"Test","nickname":"Test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-04-09 01:56:23","store_id":1,"stores":[0,1],"product_id":14,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"421","_score":1,"_source":{"id":421,"title":"test","detail":"review","nickname":"test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-03-26 10:38:37","store_id":1,"stores":[0,1],"product_id":1488,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"440","_score":1,"_source":{"id":440,"title":"good","detail":"Very cool short","nickname":"tester","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-04-17 23:27:13","store_id":1,"stores":[0,1],"product_id":985,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"438","_score":1,"_source":{"id":438,"title":"test","detail":"Just some\n\nText\n\n¶™©•{[=^^","nickname":"testafe","customer_id":8624,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-04-17 10:52:21","store_id":1,"stores":[0,1],"product_id":420,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"439","_score":1,"_source":{"id":439,"title":"test","detail":"test","nickname":"test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-04-17 19:42:12","store_id":1,"stores":[0,1],"product_id":1574,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"437","_score":1,"_source":{"id":437,"title":"test","detail":"rerew","nickname":"test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-04-17 08:52:08","store_id":1,"stores":[0,1],"product_id":1482,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"425","_score":1,"_source":{"id":425,"title":"sdfgdsgf","detail":"dfgdf","nickname":"test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-03-29 15:19:35","store_id":1,"stores":[0,1],"product_id":1370,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"436","_score":1,"_source":{"id":436,"title":"Did gg gf ff","detail":"Fabulous","nickname":"Ddd","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-04-14 01:07:33","store_id":1,"stores":[0,1],"product_id":730,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"448","_score":1,"_source":{"id":448,"title":"Ipsum autem volupta","detail":"Ad ut omnis sint qui","nickname":"Omnis suscipit ipsum","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-04-23 11:12:47","store_id":1,"stores":[0,1],"product_id":756,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"444","_score":1,"_source":{"id":444,"title":"321312","detail":"eqweqwdasdas","nickname":"31231231","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-04-18 18:50:33","store_id":1,"stores":[0,1],"product_id":14,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"443","_score":1,"_source":{"id":443,"title":"Killer Bag!","detail":"Warning - Don't buy it. It can kill you !","nickname":"Amal","customer_id":8635,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-04-18 14:47:20","store_id":1,"stores":[0,1],"product_id":1,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"441","_score":1,"_source":{"id":441,"title":"312312eq","detail":"eqweqweqw312312","nickname":"Test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-04-18 12:33:51","store_id":1,"stores":[0,1],"product_id":14,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"446","_score":1,"_source":{"id":446,"title":"333","detail":"333","nickname":"333","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-04-22 01:54:24","store_id":1,"stores":[0,1],"product_id":7,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"468","_score":1,"_source":{"id":468,"title":"test","detail":"tet","nickname":"test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-05-09 10:58:49","store_id":1,"stores":[0,1],"product_id":1498,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"454","_score":1,"_source":{"id":454,"title":"Cool","detail":"PRoduct","nickname":"fsf","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-04-30 17:14:20","store_id":1,"stores":[0,1],"product_id":1890,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"142","_score":1,"_source":{"id":142,"title":"I hate working out...This does not help.","detail":"I hate working out...This does not help.it gets tangled really easily.can't even get threw 1 work out with it. Returning.","nickname":"Ardith","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":20,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"115","_score":1,"_source":{"id":115,"title":"How awesome is it to find a product that","detail":"How awesome is it to find a product that works exactly as advertised! These seriously felt like I'd been wearing them forever, the first time I put them on. The way it molds to your foot is amazing. I have run two full marathons in these with barely a blister. GO LUMA!","nickname":"King","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":968,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"467","_score":1,"_source":{"id":467,"title":"ttt","detail":"ttt","nickname":"tt","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-05-09 10:58:38","store_id":1,"stores":[0,1],"product_id":1498,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"464","_score":1,"_source":{"id":464,"title":"Trés bon","detail":"Wow","nickname":"Arthur","customer_id":8825,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-05-08 14:56:03","store_id":1,"stores":[0,1],"product_id":688,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"147","_score":1,"_source":{"id":147,"title":"They work, nothing special. ","detail":"They work, nothing special. I had a set that I liked better but my ex stole it. ","nickname":"Krystle","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":23,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"117","_score":1,"_source":{"id":117,"title":"I wear these for a variety of sports and","detail":"I wear these for a variety of sports and they are very comfortable, no complaints there. I'm not crazy about the design though. In person they look kind of feminine. Plus the color is no bueno. They somehow looked dirty and old even fresh out of the box.","nickname":"Monroe","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":968,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"160","_score":1,"_source":{"id":160,"title":"Motivated by this Bag!","detail":"I purchased this bag hoping it would give me more motivation to go to the gym and it has! Not too big, sized just right for me and all my friends love it :)","nickname":"Tamisha","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":9,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"171","_score":1,"_source":{"id":171,"title":"Can I give zero stars?","detail":"I would give this bag zero stars if I could!!! All of the zippers fell off the first tim I used it!!! DON'T BUY THIS ","nickname":"Ingeborg","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":11,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"156","_score":1,"_source":{"id":156,"title":"should've got a while ago","detail":"I don't know why I didn't get this years ago. I've been diligently doing ab workouts every day with little effect. Incorporated this into my routine and BAM! I can see my love handles melting away!","nickname":"Keith","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":16,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"158","_score":1,"_source":{"id":158,"title":"I pack a TON of stuff","detail":"I take a TON of stuff to the gym and yoga studio. Way more than I should but this bag still allows me to carry a bunch of it. I like taking it better than any other bag.","nickname":"Tara","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":8,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"489","_score":1,"_source":{"id":489,"title":"Test ","detail":"Some review ","nickname":"Kamkk","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-05-29 17:39:26","store_id":1,"stores":[0,1],"product_id":1515,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"491","_score":1,"_source":{"id":491,"title":"Wonderful Products","detail":"This looks so good.","nickname":"Anton R.","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-06-03 11:32:40","store_id":1,"stores":[0,1],"product_id":1228,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"490","_score":1,"_source":{"id":490,"title":"qweqweq","detail":"weqweqwe","nickname":"weerwer","customer_id":9027,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-06-01 07:50:21","store_id":1,"stores":[0,1],"product_id":1902,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"492","_score":1,"_source":{"id":492,"title":"test","detail":"test","nickname":"test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-06-04 09:27:41","store_id":1,"stores":[0,1],"product_id":703,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"463","_score":1,"_source":{"id":463,"title":"Good Product","detail":"I've purchased this product and feels awesome product this is.","nickname":"Vishal","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-05-08 05:03:35","store_id":1,"stores":[0,1],"product_id":1546,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"180","_score":1,"_source":{"id":180,"title":"It died after a week","detail":"It died after a week of infuriating malfunctionality! First that little plastic screen that houses the numbers - yeah. it popped off in 24 hours. Okay, no problem i thought, i'll just not touch any thing vital. Then the metal back popped off and landed in the toilet so there was just no recovering that. THEN the buckle broke! In the trash it went!","nickname":"Nadia","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":43,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"513","_score":1,"_source":{"id":513,"title":"Review title","detail":"This is product review.","nickname":"Arulkumar","customer_id":9536,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-06-18 05:21:25","store_id":1,"stores":[0,1],"product_id":860,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"514","_score":1,"_source":{"id":514,"title":"Just review","detail":"This is review","nickname":"Toan","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-06-18 07:33:42","store_id":1,"stores":[0,1],"product_id":13,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"154","_score":1,"_source":{"id":154,"title":"Easy to clean","detail":"Wide mouth opening makes it easy to clean! ","nickname":"Olimpia","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":15,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"519","_score":1,"_source":{"id":519,"title":"19.06","detail":"good price my friend","nickname":"atest","customer_id":9593,"review_entity":"product","review_type":1,"review_status":1,"created_at":"2019-06-19 10:49:43","store_id":1,"stores":[0,1],"product_id":451,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"520","_score":1,"_source":{"id":520,"title":"my review","detail":"perfect red short","nickname":"atest","customer_id":9593,"review_entity":"product","review_type":1,"review_status":1,"created_at":"2019-06-19 10:50:54","store_id":1,"stores":[0,1],"product_id":2030,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"515","_score":1,"_source":{"id":515,"title":"my favorite black color","detail":"nice model","nickname":"alinadivante","review_entity":"product","review_type":3,"review_status":1,"created_at":"2019-06-18 07:50:39","store_id":1,"stores":[0,1],"product_id":52,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"522","_score":1,"_source":{"id":522,"title":"summary","detail":"this is my review. why the f are there no stars.","nickname":"test review","review_entity":"product","review_type":3,"review_status":1,"created_at":"2019-06-21 19:21:36","store_id":1,"stores":[0,1],"product_id":1546,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"523","_score":1,"_source":{"id":523,"title":"Uhm","detail":"Uhm","nickname":"This","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-06-24 16:32:52","store_id":1,"stores":[0,1],"product_id":1770,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"175","_score":1,"_source":{"id":175,"title":"Good bank for small hand","detail":"I bought this watch specifically for its band because I have really small wrists and have a hard time finding watches that fit, even ones that say women's. This one fit wonderfully and I could even make it smaller!","nickname":"Desiree","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":42,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"540","_score":1,"_source":{"id":540,"title":"sdfsdf","detail":"sdfsdfds","nickname":"test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-03 06:10:06","store_id":1,"stores":[0,1],"product_id":1514,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"541","_score":1,"_source":{"id":541,"title":"person","detail":"This is nice!","nickname":"jo","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-03 19:28:30","store_id":1,"stores":[0,1],"product_id":724,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"525","_score":1,"_source":{"id":525,"title":"sdf","detail":"asdadadadad\nada\nd\nad\nad","nickname":"asdf","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-06-25 18:05:12","store_id":1,"stores":[0,1],"product_id":1546,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"538","_score":1,"_source":{"id":538,"title":"sdfsdfssd","detail":"sdfsdfsdfsdf","nickname":"test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-03 05:53:47","store_id":1,"stores":[0,1],"product_id":1514,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"198","_score":1,"_source":{"id":198,"title":"Great value","detail":"The sleeves are definitely thicker than you realize, which is a good thing! The photo is a little misleading because it makes the hoodie look thin but it's really quite substantial! Great value. ","nickname":"Oma","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1113,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"552","_score":1,"_source":{"id":552,"title":"dope","detail":"hehehehe","nickname":"Yolo","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-11 13:20:35","store_id":1,"stores":[0,1],"product_id":1531,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"183","_score":1,"_source":{"id":183,"title":"Keeps excellent time and is pretty tough","detail":"Keeps excellent time and is pretty tough! Still no scratches or scuffs after a year of wearing it.","nickname":"Denese","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":41,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"549","_score":1,"_source":{"id":549,"title":"fhtdytfh","detail":"ghfgfhkk","nickname":"asd","customer_id":12134,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-07-08 11:10:21","store_id":1,"stores":[0,1],"product_id":1482,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"550","_score":1,"_source":{"id":550,"title":"amazing product","detail":"good fit ","nickname":"juan","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-10 13:08:29","store_id":1,"stores":[0,1],"product_id":372,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"546","_score":1,"_source":{"id":546,"title":"Hhvvv","detail":"Hhhfc","nickname":"Apondi","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-05 15:18:16","store_id":1,"stores":[0,1],"product_id":1498,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"189","_score":1,"_source":{"id":189,"title":"Not really flattering","detail":"Not really flattering for my body type","nickname":"Scarlet","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1065,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"193","_score":1,"_source":{"id":193,"title":"Zipper is goofy","detail":"Honestly this hoodie is okay but I do not get thezipper. Why not just make a full length zipper? I would rather have no zipper.","nickname":"Julieann","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1081,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"216","_score":1,"_source":{"id":216,"title":"Thumb holes rock!","detail":"Thumb holes rock!","nickname":"Tawny","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1289,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"255","_score":1,"_source":{"id":255,"title":"Wish it was longer","detail":"fits kind of awkward wish it was longer","nickname":"Chloe","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1417,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"563","_score":1,"_source":{"id":563,"title":"asdfasdf","detail":"asdf","nickname":"fasdf","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-17 11:23:53","store_id":1,"stores":[0,1],"product_id":163,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"178","_score":1,"_source":{"id":178,"title":"Not classical but cool","detail":"Even though I'm a fan of classic/traditional styles, I bought this watch for something different since it's fun and I could really use for tracking my sprints. I have no complaints!","nickname":"Pok","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":44,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"253","_score":1,"_source":{"id":253,"title":"I really dig this shirt for races","detail":"I really dig this shirt for races, it makes me feel like I'm flying.","nickname":"Lorena","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1577,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"254","_score":1,"_source":{"id":254,"title":"This shirt is decent for running","detail":"This shirt is pretty good! I'm a long distance runner and it keeps me pretty comfortable, although these companies always act like their shirts are magical and really it's just pretty basic stuff. Still it's a decent shirt and I would recommend it. Just don't expect it to change your life.","nickname":"Allyson","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1417,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"629","_score":1,"_source":{"id":629,"title":"This is very cool","detail":"Yeah!!!","nickname":"Ugo","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-09-07 00:01:57","store_id":1,"stores":[0,1],"product_id":2030,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"632","_score":1,"_source":{"id":632,"title":"fwef","detail":"wefwef","nickname":"efwfwe","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-09-13 01:11:53","store_id":1,"stores":[0,1],"product_id":44,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"226","_score":1,"_source":{"id":226,"title":"Big back pocket","detail":"my fave part is the back pocket. I needed a place to keep my cell phone safe when I run","nickname":"Wava","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1337,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"195","_score":1,"_source":{"id":195,"title":"My favorite hoodie","detail":"This is definitely my favorite hoodie in my closet. I wouldn't wear it if it was freezing out, but it's a great extra layer on normal mornings.","nickname":"Joelle","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1097,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"222","_score":1,"_source":{"id":222,"title":"This is my go-to jacket","detail":"This is my go-to jacket when I'm running in the rain or cold! It's warm but lightweight, totally waterproof, and I love the colors!","nickname":"Kellye","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1305,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"224","_score":1,"_source":{"id":224,"title":"Horrible unflatterung design","detail":"It's called not making clothes that are boxy and unflattering. Heard of it?","nickname":"May","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1321,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"637","_score":1,"_source":{"id":637,"title":"Nice Product","detail":"Nice Product","nickname":"aditya","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-09-17 06:10:14","store_id":1,"stores":[0,1],"product_id":1577,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"5","_score":1,"_source":{"id":5,"title":"Screwed up my back","detail":"I can't believe they're claiming these straps are \"padded.\" Wearing this thing to class for a semester totally screwed up my back, and my shoulders would start to ache after a few minutes where the straps dug in.","nickname":"Orville","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:43","store_id":1,"stores":[0,1],"product_id":6,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"10","_score":1,"_source":{"id":10,"title":"comfy and i don't feel like a loser","detail":"comfy and i don't feel like a loser carrying it.","nickname":"Issac","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":2,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"20","_score":1,"_source":{"id":20,"title":"offers a lot of technology","detail":"can't say this is the coolest looking watch I've ever owned (it's no FAMOUS DESIGNER or anything) but it has a lot to offer technology-wise","nickname":"Marc","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":40,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"29","_score":1,"_source":{"id":29,"title":"I really like the modern look","detail":"I really like the modern look of this watch, but I could only get one time zone to work. I hope it has a warranty because I'm sending it back!","nickname":"Bobby","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":39,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"23","_score":1,"_source":{"id":23,"title":"Watch too tight","detail":"Watch too tight please email how to loosen it or I'll leave bad review","nickname":"Max","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":38,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"14","_score":1,"_source":{"id":14,"title":"This bag is really cool","detail":"This bag is really cool. I'm an art major, so I have tons of supplies that I have to lug back and forth every day for class. I didn't think this would be big enough, but surprisingly it can hold just about all my stuff. I really like the way it looks too.","nickname":"Jame","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":5,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"11","_score":1,"_source":{"id":11,"title":"The shoulder strap broke ","detail":"The shoulder strap broke the first time I used it. Awesome.","nickname":"Daren","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":4,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"42","_score":1,"_source":{"id":42,"title":"Not 100% sure how I feel","detail":"Not 100% sure how I feel about this yet so I'm going to number it right in the middle. It keeps me warm but the fleece is kind of itchy. It definitely has to go on top of another layer or you'll spend all day itching!","nickname":"Glen","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":403,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"38","_score":1,"_source":{"id":38,"title":"Has never let me down","detail":"This jacket is going to be by my side for the rest of my life. It's never let me down once in a rainstorm, always keeping me dry as I bike back and forth to work. ","nickname":"Long","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":307,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"35","_score":1,"_source":{"id":35,"title":"This jacket isn't keeping me warm","detail":"This jacket isn't keeping me warm","nickname":"Jon","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":419,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"40","_score":1,"_source":{"id":40,"title":"Excellent quality. I actually love","detail":"Excellent quality. I actually love when it rains because I get a lot of compliments whenever I wear this jacket. ","nickname":"Randell","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":307,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"41","_score":1,"_source":{"id":41,"title":"I just live for this track jacket","detail":"I just live for this track jacket. Because it's solid, I can put it on over any t-shirt and look really athletic. I may not exercise all the time, but wearing this jacket makes other people think I do!","nickname":"Wyatt","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":403,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"27","_score":1,"_source":{"id":27,"title":"Dual time zone settings","detail":"When I'm in another country, I hate not knowing what time it really is back home so the dual time zone settings are awesome!","nickname":"Frank","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":39,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"47","_score":1,"_source":{"id":47,"title":"easy to take apart","detail":"I like this one. It's easy to take apart when you want to wear the quilted part and zips back in no problem. If you're a big guy its fits a little tight under the arms though.","nickname":"Emmett","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":339,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"60","_score":1,"_source":{"id":60,"title":"The mesh lining sometimes snags","detail":"The mesh lining sometimes snags when your taking them off but that's pretty common I think. Like them and would recommend.","nickname":"Armando","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":768,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"79","_score":1,"_source":{"id":79,"title":"Liked the way it fit mostly","detail":"Liked the way it fit mostly. But the collar was weird. I guess it kept me dry?","nickname":"Jonas","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":467,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"71","_score":1,"_source":{"id":71,"title":"Works for the gym","detail":"Works for the gym and even as an undershirt.","nickname":"Roland","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":579,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"73","_score":1,"_source":{"id":73,"title":"Hate the fabric","detail":"Why is this kind of fabric all the rage? I know it's supposed to be the best thing since sliced bread with the moisture wicking crap but I feel like I sweat MORE than with just regular cotton. I'm over paying an arm and a leg for the \"technology.\" give me a 5 dollar tshirt from the dollar store!","nickname":"Hai","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":531,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"81","_score":1,"_source":{"id":81,"title":"Gets the job done. Even when I'm pouring","detail":"Gets the job done. Even when I'm pouring sweat, this shirt maintains a nice dry feel. I think the sizing runs a little large, so order accordingly.","nickname":"Jerome","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":547,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"56","_score":1,"_source":{"id":56,"title":"These are really bulky","detail":"These are really bulky and not very flattering at all. It looks like I have a big bulge at my stomach. I wear them around the house but I wouldn't go out in public with them on.","nickname":"Donte","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":755,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"63","_score":1,"_source":{"id":63,"title":"I like them","detail":"I like them, they keep my sweat on the down low. They are stretchy. And I like the pockets. They look cool, too. So yeah. Go buy them.","nickname":"Kenny","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":781,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"51","_score":1,"_source":{"id":51,"title":"Great on my evening ride","detail":"I went back to the site and snagged another in a different color - they're great on my evening rides. I usually prefer raglan sleeves but I am always comfortable in this design, and the mesh works wonders for keeping my temperature down. ","nickname":"Arden","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":371,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"72","_score":1,"_source":{"id":72,"title":"I like the crew neck","detail":"I got this shirt in the v-neck version too and I like the crew a lot better. It seems to fit better and I think the fabric is lighter. This one doesn't have the mesh inserts but allover the fabric feels better.","nickname":"Edison","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":531,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"66","_score":1,"_source":{"id":66,"title":"The draw string is more like half a draw","detail":"The draw string is more like half a draw string. Dosent stay so pants fall of my butt. I think they run too big.","nickname":"Margarito","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":794,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"80","_score":1,"_source":{"id":80,"title":"Keeps me cool","detail":"I like this shirt, it keeps me cool when I'm lifting. Would like a tighter fit though.","nickname":"Warren","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":547,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"77","_score":1,"_source":{"id":77,"title":"This shirt is a dream come true","detail":"This shirt is a dream come true for a sweat bucket like me. Love the material and I don't look like I got stuck in the rain when I'm done working out.","nickname":"Nathan","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":467,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"78","_score":1,"_source":{"id":78,"title":"Awesome tee! Not cheap.","detail":"Awesome tee! Not the cheapest though.","nickname":"Darwin","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":467,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"86","_score":1,"_source":{"id":86,"title":"Comfortable and soft","detail":"On the plus side, it's definitely comfortble and soft, and yes it does keep you dry no matter how much you sweat. However, I found the cuffs to be too tight and the material is a little too sheer for my tastes. But it's not the most expensive on the shelf, so whatever.","nickname":"Don","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":627,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"82","_score":1,"_source":{"id":82,"title":"I sweat SO much.","detail":"I sweat SO much. This top is fine when I don't intend to exert myself, but BOY does it NOT work for people with hyperhydrosis!","nickname":"Alfonzo","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":611,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"89","_score":1,"_source":{"id":89,"title":"I've lost 50 pounds in 5 months","detail":"I've lost 50 pounds in 5 months and this shirt kept me comfortable since day one. I would recommend it to anyone serious about workout. Sizes run small tho so order a size up. ","nickname":"Darwin","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":483,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"87","_score":1,"_source":{"id":87,"title":"It's okay, a little boring. ","detail":"It's okay, a little boring. ","nickname":"Maynard","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":627,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"69","_score":1,"_source":{"id":69,"title":"I bought 5 of the same color!","detail":"People at the gym probably think I don't wwas my cloths because I wear this evryday but I just bought 5 of the same color because it's awesome!","nickname":"Jude","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":563,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"55","_score":1,"_source":{"id":55,"title":"Saggy pants","detail":"After running in these saggy pants I just wanted to crawl into a hole a die. ","nickname":"Davis","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":742,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"58","_score":1,"_source":{"id":58,"title":"Keeping me warm before games","detail":"They do the job of keeping me warm before a game. I wear them then and only then-wouldn't wear them anywhere else.","nickname":"Harold","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":755,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"88","_score":1,"_source":{"id":88,"title":"Very comfy but wears thin","detail":"It is very comfy but wears thin - I won't be able to get much more use out it as it now is revealing my bra I think. I have the white one so I will switch to a darker color if I decide to by another 1. Very embarrassing when your at the gym. ","nickname":"Hiram","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":627,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"100","_score":1,"_source":{"id":100,"title":"Wear this on evening runs","detail":"Wear this on evening runs. I absolutely adore it and will probably buy more.","nickname":"Kasey","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":515,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"90","_score":1,"_source":{"id":90,"title":"Fell apart in wash","detail":"I don't even know where to begin. It fell apart during the third wash. Whoever says this is a good-quality piece of gear is lying through their teeth! ","nickname":"Chung","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":483,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"101","_score":1,"_source":{"id":101,"title":"Great for baoting ","detail":"We go boating a lot and these are great for when I'm putting our boat in the water. Those tiny rocks and pebbles can be super sharp but I never feel a single one of them. ","nickname":"Manual","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":898,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"92","_score":1,"_source":{"id":92,"title":"Luma got it right with this one.","detail":"Luma got it right with this one. I don't care about looking stylish, I just want a shirt that will still feel good after an hour at the gym, and that's what I got.","nickname":"Alfred","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":595,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"96","_score":1,"_source":{"id":96,"title":"Nice fit and fabric","detail":"Nice fit and fabric, but the inserts are in weird places.","nickname":"Damon","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":499,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"108","_score":1,"_source":{"id":108,"title":"Pretty average cts. Their comfrtable whe","detail":"Pretty average cts. Their comfrtable when I first start but don't try working out too hard in them. You're feet will definitely start to hurt!","nickname":"Judson","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":929,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"99","_score":1,"_source":{"id":99,"title":"Why can't you make this in my size?","detail":"Why can't you make this in my size? Thank you for the color at least. ","nickname":"Harold","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":515,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"94","_score":1,"_source":{"id":94,"title":"Really comfy shirt","detail":"Really comfy shirt, sometimes clings a bit but at least it dries fast.","nickname":"Gus","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":595,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"105","_score":1,"_source":{"id":105,"title":"Great! I wear these almost every day-esp","detail":"Great! I wear these almost every day-especially love that I don't have to worry about the laces.","nickname":"Gerald","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":916,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"50","_score":1,"_source":{"id":50,"title":"Wish buttons were on sleeve","detail":"Wish the buttons were on the sleeve but still very cool. Jacket is way warm too","nickname":"Ronald","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":355,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"125","_score":1,"_source":{"id":125,"title":"Nothing to write home about","detail":"I agree with the reviewer above. You can get this same tank in a million other stores, nothing to write home about. Do like the top stitching though-really adds some athleticsm.","nickname":"Trey","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":643,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"200","_score":1,"_source":{"id":200,"title":"Love it!","detail":"Walking our St. Benard is pretty serious exercise - you WILL sweat trying to keep up with him. This hoodie keeps me just warm enough and doesn't get bogged down with sweat. Love it! ","nickname":"Georgeann","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1119,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"162","_score":1,"_source":{"id":162,"title":"Fits tons of gear","detail":"I take this along whenever I head up to my cabin. Fits tons of gear plus a few of my favorite electronics. And duct tape.","nickname":"Elizabeth","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":12,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"111","_score":1,"_source":{"id":111,"title":"I slipped on a rock on these shoes and I","detail":"I slipped on a rock on these shoes and I could feel all the pain. I would go out running on a regular day in these but not if it's been previously raining.","nickname":"Ezra","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":942,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"157","_score":1,"_source":{"id":157,"title":"I love this bag! It's cute","detail":"I love this bag! It's cute and doesn't advertise that I'm going to the gym like a duffel bag.","nickname":"Dodie","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":8,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"209","_score":1,"_source":{"id":209,"title":"Only shirt I wear anywmore","detail":"I wear this to class so often, my friend asked me if I actually own any other shirts!","nickname":"Charlyn","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1257,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"128","_score":1,"_source":{"id":128,"title":"Keeps me feeling dry","detail":"The fabric is great when I'm sweating hard. It keeps me feeling dry. Wish there was more ventilation.","nickname":"Archie","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":659,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"165","_score":1,"_source":{"id":165,"title":"I would love this bag EXCEPT . . .","detail":"I would love this bag EXCEPT with the case on my Iphone won't fit in the cell phone pocket! Why make a pocket for cell phones if it's not going to fit an Iphone.","nickname":"Adena","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":14,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"223","_score":1,"_source":{"id":223,"title":"I wear this pretty much every day!","detail":"I wear this pretty much every day! The material is really soft and it goes with everything!","nickname":"Marvella","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1321,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"132","_score":1,"_source":{"id":132,"title":"TINY neck hole??","detail":"Why is the neck opening so small??? Didn't fit right.","nickname":"Monroe","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":675,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"251","_score":1,"_source":{"id":251,"title":"Soooooooooooooo light!","detail":"Soooooooooooooo light!","nickname":"Beverlee","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1577,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"168","_score":1,"_source":{"id":168,"title":"Did I get floor model?","detail":"I must have a floor model or soemthin cuz when I ordered it it came all stained up, some brown crust or somethin. Gross. I requested a refund so we'll see. Other than that I think it's a quality bag, just disappointed with mine. ","nickname":"Lasandra","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":10,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"126","_score":1,"_source":{"id":126,"title":"Average tank","detail":"It's just an average tank. Nothing really to say about it. I rarely work out so I can't speak to the moisture-wicking part.","nickname":"Edmund","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":643,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"131","_score":1,"_source":{"id":131,"title":"I bought a few of these for my husband. ","detail":"I bought a few of these for my husband. He likes them but they did shrink when washed. I just don't put them in the dryer anymore and it's fine!","nickname":"Matthew","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":675,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"159","_score":1,"_source":{"id":159,"title":"Wish there were pockets ","detail":"I like it but I wish there were pockets on the inside instead of just one big space. I didn't think it would fit inside my locker but it did.","nickname":"Chasidy","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":8,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"169","_score":1,"_source":{"id":169,"title":"I bought this backpack for my daughter","detail":"I bought this backpack for my daughter who's going to college this year. Her campus is huge and I was concerned that she would hurt her back lugging all those books around. It seems like there's enough padding!","nickname":"Francesca","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":11,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"258","_score":1,"_source":{"id":258,"title":"Fits my fiancee better","detail":"My fiance accidentally put this on when he was getting dressed and it fit him better than it fits me?? ","nickname":"Lang","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1433,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"264","_score":1,"_source":{"id":264,"title":"Looks and feels aweseom ","detail":"Really like the seams. Looks and feels awesome!","nickname":"Skye","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1593,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"266","_score":1,"_source":{"id":266,"title":"Not at all soft","detail":"There's a ton of other t-shirts I'd choose over this one. It's not soft at all and the fabric feels like sandpaper next to my skin-was really hoping for better.","nickname":"Ashli","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1481,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"270","_score":1,"_source":{"id":270,"title":"Like the color .sleeves were too tight. ","detail":"Like the color .sleeves were too tight. felt constricted.","nickname":"Elmira","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1497,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"269","_score":1,"_source":{"id":269,"title":"Um, NOT flattering at ALL.","detail":"Um, NOT flattering at ALL. Too tight and short.","nickname":"Candie","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1497,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"271","_score":1,"_source":{"id":271,"title":"Sooooooooooo soft! ","detail":"Sooooooooooo soft! Nice and long too.","nickname":"Nyla","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1513,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"272","_score":1,"_source":{"id":272,"title":"Cute, comfy. ","detail":"Cute, comfy. A little overpriced though.","nickname":"Hollie","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1513,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"267","_score":1,"_source":{"id":267,"title":"This T is a no brainer-solid color","detail":"This T is a no brainer-solid color, pairs with everything, and keeps me cool. What more could I want during my run?","nickname":"Ruth","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1481,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"273","_score":1,"_source":{"id":273,"title":"I love that it's so lightweight. ","detail":"I love that it's so lightweight. I can wear it under jackets and vests without feeling like a stuffed sausage.","nickname":"Celestine","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1513,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"274","_score":1,"_source":{"id":274,"title":"who doesn't love a racerback, amiright?!","detail":"who doesn't love a racerback, amiright?!","nickname":"Irma","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1529,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"282","_score":1,"_source":{"id":282,"title":"What a versatile shirt!","detail":"What a versatile shirt! Not only does it feel very soft compared to my old worn out polos, but it also does the job promised. I like going out after my gamefor drinks so I look good then too and don't need to change into something fresh. ","nickname":"Adaline","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1561,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"278","_score":1,"_source":{"id":278,"title":"Soft","detail":"seriously, I can't get over how soft this tank top is. Do you have anything else made with it?","nickname":"Karine","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1545,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"279","_score":1,"_source":{"id":279,"title":"omg I love this tank top, it's perfect","detail":"omg I love this tank top, it's perfect for running and yoga. The fabric is so soft and stretchy!","nickname":"Bree","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1545,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"276","_score":1,"_source":{"id":276,"title":"soft but a little tight","detail":"soft but a little tight for my liking.","nickname":"Tatiana","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1529,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"277","_score":1,"_source":{"id":277,"title":"Love the fabric, but it's huge!","detail":"Love the fabric, but it's huge! I look like a homeless person in it.","nickname":"Maisie","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1545,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"284","_score":1,"_source":{"id":284,"title":"On the plus side, the perforated cushion","detail":"On the plus side, the perforated cushioning is really soft and reduces friction. However, they seem to absorb sweat and don't dry very quickly, which causes a lot of odor. ","nickname":"Evelyn","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1924,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"283","_score":1,"_source":{"id":283,"title":"So comfortable I almost feel barefoot. T","detail":"So comfortable I almost feel barefoot. The treads on these is so intricate and deep, so they can be hard to clean. ","nickname":"Karisa","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1924,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"289","_score":1,"_source":{"id":289,"title":"Love a preppy sneaker! These are still a","detail":"Love a preppy sneaker! These are still adorable but not as casual as running shoes! Love them!","nickname":"Shellie","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1956,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"285","_score":1,"_source":{"id":285,"title":"I threw them out when the mushy lining s","detail":"I threw them out when the mushy lining started to ooze. ","nickname":"Markita","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1924,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"293","_score":1,"_source":{"id":293,"title":"Velcro straps?? Are you kidding me? Am I","detail":"Velcro straps?? Are you kidding me? Am I two years old? The bottom is cool though!","nickname":"Star","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1988,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"291","_score":1,"_source":{"id":291,"title":"Have had these for quite a while and the","detail":"Have had these for quite a while and they're still my go-to pair for every morning jog. Really hold up well and still feel good.","nickname":"Evalyn","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1972,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"294","_score":1,"_source":{"id":294,"title":"Cool-looking kicks! I'd wear them anywhe","detail":"Cool-looking kicks! I'd wear them anywhere not just the gym or running. They'll look great with everything!","nickname":"Nikki","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1988,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"296","_score":1,"_source":{"id":296,"title":"Don't like the strap on top; gets too lo","detail":"Don't like the strap on top; gets too loose sometimes","nickname":"Aleen","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1995,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"300","_score":1,"_source":{"id":300,"title":"I can appreciate the concept, but I thin","detail":"I can appreciate the concept, but I think I'll be going back to regular laced sneakers from now on, they just didn't seem to fit my feet as well I guess because my feet are so narrow. People with narrow feet shouldn't buy these!","nickname":"Gertrud","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":2002,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"305","_score":1,"_source":{"id":305,"title":"Cute and comfortable definitely. The ela","detail":"Cute and comfortable definitely. The elastic streteched out a bit too much but I still wear them.","nickname":"Laurice","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":2015,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"316","_score":1,"_source":{"id":316,"title":"Not exactly true to size","detail":"Not exactly true to size but still very comfortable. ","nickname":"Mistie","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1609,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"320","_score":1,"_source":{"id":320,"title":"Doesn't fit me. Luma fail.","detail":"Doesn't fit me. Luma fail.","nickname":"Roxie","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1625,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"318","_score":1,"_source":{"id":318,"title":"bra stays comfy and dry","detail":"I play field hockey and it gets crazy hot outside - bra stays comfy and pretty dry. Recommended!","nickname":"Mei","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1609,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"325","_score":1,"_source":{"id":325,"title":"It's an average bra","detail":"It's an average bra-nothing to write home about. I don't like how the straps dig into my shoulders, and it really doesn't provide that much support.","nickname":"Eartha","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1641,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"329","_score":1,"_source":{"id":329,"title":"I got every color","detail":"I am a compulsive hoarder of workout gear so of course I had to have this in every color. I feel better after I buy them all because it's a good price!","nickname":"Ayanna","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1657,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"331","_score":1,"_source":{"id":331,"title":"Training bra?","detail":"Makes me feel like I'm wearing a training bra. Comfy though.","nickname":"Maribel","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1673,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"327","_score":1,"_source":{"id":327,"title":"Cute gym top","detail":"So, it doesn't say that theres no shelf bra. BEWARE! Other than that, cute gym top.","nickname":"Lorena","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1657,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"328","_score":1,"_source":{"id":328,"title":"Cute, stretchy top!","detail":"Cute, stretchy top! Perfect for people with zero body fat.","nickname":"Modesta","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1657,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"332","_score":1,"_source":{"id":332,"title":"Sizes are off","detail":"I had to order 3 sizes before I found my fit. The sizes do NOT line up. I did like it in the end. Just took too long to get there.","nickname":"Krystina","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1673,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"333","_score":1,"_source":{"id":333,"title":"Makes me feel so snug! WHOO! ","detail":"Makes me feel so snug! WHOO! ","nickname":"Concepcion","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1769,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"337","_score":1,"_source":{"id":337,"title":"Zero support/modesty","detail":"I would never wear this bra to anything but a low impact class like yoga. There's zero support and absolutely no modesty. Was hoping for better!","nickname":"Shaunte","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1801,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"345","_score":1,"_source":{"id":345,"title":"Huge arm holes??","detail":"I don't know why the arm holes are so big. It looked ok in the photo but in person they're really wide. It's really comfortable but that bugs me.","nickname":"Valorie","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1705,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"340","_score":1,"_source":{"id":340,"title":"Great fit - love the v-neck design! ","detail":"Great fit - love the v-neck design! ","nickname":"Thalia","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1817,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"418","_score":1,"_source":{"id":418,"title":"123","detail":"asd","nickname":"ASd","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-03-21 17:12:51","store_id":1,"stores":[0,1],"product_id":1754,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"420","_score":1,"_source":{"id":420,"title":"asdf","detail":"as asdsd as","nickname":"abdul rahim","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-03-26 07:00:37","store_id":1,"stores":[0,1],"product_id":1585,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"423","_score":1,"_source":{"id":423,"title":"Test summary","detail":"Test review body, that should appear on poduct page^^","nickname":"Tester","review_entity":"product","review_type":3,"review_status":1,"created_at":"2019-03-27 08:43:06","store_id":1,"stores":[0,1],"product_id":2010,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"424","_score":1,"_source":{"id":424,"title":"Review title","detail":"My review.. ","nickname":"Marcel de Ruiter","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-03-29 08:25:29","store_id":1,"stores":[0,1],"product_id":1546,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"428","_score":1,"_source":{"id":428,"title":"Nice","detail":"Reeallly nice","nickname":"Nahshal","customer_id":8331,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-04-03 09:13:44","store_id":1,"stores":[0,1],"product_id":1523,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"427","_score":1,"_source":{"id":427,"title":"test","detail":"test review","nickname":"Gabriel","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-04-01 14:26:46","store_id":1,"stores":[0,1],"product_id":1482,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"416","_score":1,"_source":{"id":416,"title":"test","detail":"test","nickname":"test","customer_id":8166,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-03-21 17:07:24","store_id":1,"stores":[0,1],"product_id":1578,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"435","_score":1,"_source":{"id":435,"title":"waegt","detail":"wetre","nickname":"Test","customer_id":8573,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-04-12 12:34:54","store_id":1,"stores":[0,1],"product_id":49,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"429","_score":1,"_source":{"id":429,"title":"mmjj","detail":"jjjjjj","nickname":"gggg","customer_id":8467,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-04-04 09:35:29","store_id":1,"stores":[0,1],"product_id":1546,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"426","_score":1,"_source":{"id":426,"title":"asdf","detail":"sdafsf","nickname":"Kiran","customer_id":2851,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-04-01 05:28:12","store_id":1,"stores":[0,1],"product_id":1546,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"433","_score":1,"_source":{"id":433,"title":"вв","detail":"вв","nickname":"вв","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-04-10 12:32:43","store_id":1,"stores":[0,1],"product_id":984,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"445","_score":1,"_source":{"id":445,"title":"123123123","detail":"123123123","nickname":"13123","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-04-19 14:19:00","store_id":1,"stores":[0,1],"product_id":88,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"447","_score":1,"_source":{"id":447,"title":"asdfasdf","detail":"asdfasdf","nickname":"wqerw","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-04-22 01:54:53","store_id":1,"stores":[0,1],"product_id":7,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"451","_score":1,"_source":{"id":451,"title":"344","detail":"2323","nickname":"2222234","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-04-25 09:23:08","store_id":1,"stores":[0,1],"product_id":1490,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"452","_score":1,"_source":{"id":452,"title":"Review Testing","detail":"Review1","nickname":"Nidha","customer_id":8689,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-04-25 12:40:24","store_id":1,"stores":[0,1],"product_id":1503,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"453","_score":1,"_source":{"id":453,"title":"Vhjj","detail":"Ghhj","nickname":"Vhh","customer_id":8712,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-04-28 21:53:31","store_id":1,"stores":[0,1],"product_id":1450,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"460","_score":1,"_source":{"id":460,"title":"test","detail":"test","nickname":"test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-05-06 06:49:08","store_id":1,"stores":[0,1],"product_id":995,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"455","_score":1,"_source":{"id":455,"title":"Testing a review","detail":"JUst a wave","nickname":"David","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-05-02 03:12:09","store_id":1,"stores":[0,1],"product_id":982,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"459","_score":1,"_source":{"id":459,"title":"asdfasdf","detail":"asdfasdf","nickname":"asdfasdf","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-05-06 01:45:26","store_id":1,"stores":[0,1],"product_id":1546,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"458","_score":1,"_source":{"id":458,"title":"Test","detail":"Norm","nickname":"Ket","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-05-03 14:28:25","store_id":1,"stores":[0,1],"product_id":4,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"475","_score":1,"_source":{"id":475,"title":"fdg","detail":"fdgdgfd","nickname":"gd","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-05-20 07:42:50","store_id":1,"stores":[0,1],"product_id":22,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"466","_score":1,"_source":{"id":466,"title":"test","detail":"test","nickname":"test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-05-09 10:58:04","store_id":1,"stores":[0,1],"product_id":1498,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"486","_score":1,"_source":{"id":486,"title":"test","detail":"testtt","nickname":"testr","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-05-27 08:55:18","store_id":1,"stores":[0,1],"product_id":1546,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"481","_score":1,"_source":{"id":481,"title":"asDDS","detail":"Asdsd","nickname":"Andrei","customer_id":8455,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-05-24 12:08:42","store_id":1,"stores":[0,1],"product_id":1578,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"121","_score":1,"_source":{"id":121,"title":"Not great on slippery grass. I wear them","detail":"Not great on slippery grass. I wear them mostly for walking around.","nickname":"Chad","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":994,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"456","_score":1,"_source":{"id":456,"title":"nice nice","detail":"Nice one.\nYeah.","nickname":"Wary","customer_id":8749,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-05-02 05:20:38","store_id":1,"stores":[0,1],"product_id":615,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"457","_score":1,"_source":{"id":457,"title":"Good","detail":"Good","nickname":"SOmeone","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-05-03 09:33:28","store_id":1,"stores":[0,1],"product_id":1354,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"119","_score":1,"_source":{"id":119,"title":"They ran too narrow for me and the mater","detail":"They ran too narrow for me and the material was almost too light - seemed pretty flimsy and I don't think they would last very long.","nickname":"Leslie","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":981,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"473","_score":1,"_source":{"id":473,"title":"dfgdfg","detail":"dfgdfgb . dfg df dfgdfgb . dfg df dfgdfgb . dfg df dfgdfgb . dfg df dfgdfgb . dfg df dfgdfgb . dfg df dfgdfgb . dfg df dfgdfgb . dfg df dfgdfgb . dfg df dfgdfgb . dfg df dfgdfgb . dfg df dfgdfgb . dfg df dfgdfgb . dfg df dfgdfgb . dfg df dfgdfgb . dfg df dfgdfgb . dfg df dfgdfgb . dfg df ","nickname":"asd","customer_id":8920,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-05-18 16:38:51","store_id":1,"stores":[0,1],"product_id":1530,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"123","_score":1,"_source":{"id":123,"title":"Unflattering","detail":"Honestly, could this be any more unflattering? The cut is really bad and I can't see anyone looking good in this unless they're really muscular.","nickname":"Dominic","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":643,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"480","_score":1,"_source":{"id":480,"title":"Top","detail":"superfine","nickname":"Dierk ","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-05-24 09:01:01","store_id":1,"stores":[0,1],"product_id":1498,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"482","_score":1,"_source":{"id":482,"title":"dd","detail":"sqdsqsqdsqd","nickname":"ss","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-05-25 21:56:44","store_id":1,"stores":[0,1],"product_id":969,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"483","_score":1,"_source":{"id":483,"title":"Test","detail":"Test reviews ","nickname":"toto","customer_id":8980,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-05-26 04:24:43","store_id":1,"stores":[0,1],"product_id":737,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"487","_score":1,"_source":{"id":487,"title":"dsfcvxdv","detail":"sdfcdsoj idsljhc iosj c","nickname":"wqdfsfd","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-05-27 18:30:55","store_id":1,"stores":[0,1],"product_id":1516,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"118","_score":1,"_source":{"id":118,"title":"Awesome shoes!! I didn't realize how muc","detail":"Awesome shoes!! I didn't realize how much I'd been missing by wearing other shoes without a lot of heel cushioning. I'm sticking with these from now on.","nickname":"Josh","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":981,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"114","_score":1,"_source":{"id":114,"title":"I wore these until they finally gave out","detail":"I wore these until they finally gave out! Great running shoes..very comfortable and light and I could feel the difference the Torsion system makes. Highly recommended for anyone going out 4 to 5 times a week.","nickname":"Joey","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":955,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"461","_score":1,"_source":{"id":461,"title":"test vue store","detail":"dfdfsd for your sonvenience","nickname":"test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-05-06 11:47:42","store_id":1,"stores":[0,1],"product_id":1373,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"148","_score":1,"_source":{"id":148,"title":"Good value for the price","detail":"pretty satisfied with this jump rope. good value for the price","nickname":"Lavonia","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":17,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"469","_score":1,"_source":{"id":469,"title":"test","detail":"test","nickname":"test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-05-09 10:59:11","store_id":1,"stores":[0,1],"product_id":1498,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"122","_score":1,"_source":{"id":122,"title":"I used these as racing flats and they we","detail":"I used these as racing flats and they were awesome. ","nickname":"Anibal","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":994,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"140","_score":1,"_source":{"id":140,"title":"OBSESSED with this!","detail":"OBSESSED with this! I love that it's adjustable! A bit more expensive than I wanted, but TOTALLY worth it.","nickname":"Cliff","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":20,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"474","_score":1,"_source":{"id":474,"title":"John","detail":"asdasd","nickname":"John","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-05-20 06:50:18","store_id":1,"stores":[0,1],"product_id":1530,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"120","_score":1,"_source":{"id":120,"title":"These are really REALLY LIGHT! Not much ","detail":"These are really REALLY LIGHT! Not much shoe or cushioning. My calves were sore after running in them 5 miles the first time.","nickname":"Jody","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":994,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"116","_score":1,"_source":{"id":116,"title":"I wouldn't be a runner if it wasn't for ","detail":"I wouldn't be a runner if it wasn't for these shoes. I used to get really bad shin splints, blisters and pulled muscles no matter how much I stretched. Once I bought these it got so much eaiser. It is true that they are not that stylish but if you are serious about running, who cares?","nickname":"Irwin","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":968,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"141","_score":1,"_source":{"id":141,"title":"Great but pricey","detail":"This totally makes me feel like I'm actually working my muscles. The adjustable thing is awesome. A bit pricey though.","nickname":"Fiona","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":20,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"149","_score":1,"_source":{"id":149,"title":"I BRING THIS TO ALL MY MEETS!","detail":"I BRING THIS TO ALL MY MEETS FOR WARMUP!!! BARELY TAKES UP ANY SPACE IN MY BAG","nickname":"Andy","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":17,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"143","_score":1,"_source":{"id":143,"title":"Want more resistance","detail":"Its great to be able to work out at home and sometimes on my lunch break at work - I wish this provided more resistance, though.","nickname":"Randy","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":18,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"450","_score":1,"_source":{"id":450,"title":"fgh","detail":"cghjj","nickname":"Ce","customer_id":8670,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-04-23 23:03:59","store_id":1,"stores":[0,1],"product_id":1754,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"152","_score":1,"_source":{"id":152,"title":"these are ok","detail":"these are ok, but my brother has the military ones and I like them loads better","nickname":"Johanne","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":19,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"462","_score":1,"_source":{"id":462,"title":"summary test","detail":"review test","nickname":"atest","review_entity":"product","review_type":3,"review_status":1,"created_at":"2019-05-07 09:26:45","store_id":1,"stores":[0,1],"product_id":1754,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"479","_score":1,"_source":{"id":479,"title":"a","detail":"a","nickname":"aa","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-05-24 07:57:13","store_id":1,"stores":[0,1],"product_id":3116,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"478","_score":1,"_source":{"id":478,"title":"asdasd","detail":"asdasdasdasd","nickname":"asdasd","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-05-23 21:01:35","store_id":1,"stores":[0,1],"product_id":84,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"113","_score":1,"_source":{"id":113,"title":"These are really good to play tennis in ","detail":"These are really good to play tennis in too. They fit a little narrow in the heel which was fine for me but might be a problem for others.","nickname":"Noah","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":955,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"488","_score":1,"_source":{"id":488,"title":"rfrf","detail":"fr","nickname":"Mihai","customer_id":8991,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-05-27 20:49:08","store_id":1,"stores":[0,1],"product_id":1216,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"138","_score":1,"_source":{"id":138,"title":"Goes everywhere with me","detail":"I've taken this bag to so many places and everything still works. I hate when the threads start to come apart and the zipper gets caught after like 2 uses. So far so good!","nickname":"Crissy","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":7,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"145","_score":1,"_source":{"id":145,"title":"Too lazy to go to gym","detail":"I use these when I'm too lazy to go to the gym. Really helps me stay in shape. I have already adjusted several times to increase the tension because I'm getting stronger!","nickname":"Madeleine","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":23,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"150","_score":1,"_source":{"id":150,"title":"perfect for when I'm too lazy","detail":"this is so perfect for when I'm too lazy to go to the gym. I do a few pushups and then whip out the jump rope and work on my cardio. It's a quick workout that makes me feel greaat and I don't even have to leave the house","nickname":"Orville","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":17,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"146","_score":1,"_source":{"id":146,"title":"Do not buy!","detail":"Tried to adjust one and the plastic part just snapped in half. Very Disappointed. Do not buy!","nickname":"Ricky","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":23,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"144","_score":1,"_source":{"id":144,"title":"Agreed. More resistance","detail":"Agreed. I can do plenty of exercises with it and its awesome for when I can't make it to the gym, but I'd like more resistance, too.","nickname":"Keren","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":18,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"516","_score":1,"_source":{"id":516,"title":"Frankie Sweatshirt is the best","detail":"I added this review 18.06.2019","nickname":"alinadivante","customer_id":9126,"review_entity":"product","review_type":1,"review_status":1,"created_at":"2019-06-18 07:52:35","store_id":1,"stores":[0,1],"product_id":115,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"518","_score":1,"_source":{"id":518,"title":"gobi is cool","detail":"review","nickname":"alinadivante","customer_id":9126,"review_entity":"product","review_type":1,"review_status":1,"created_at":"2019-06-19 10:27:00","store_id":1,"stores":[0,1],"product_id":451,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"517","_score":1,"_source":{"id":517,"title":"Test","detail":"Testowa recenzja","nickname":"Piotr","customer_id":1599,"review_entity":"product","review_type":1,"review_status":1,"created_at":"2019-06-19 07:28:54","store_id":1,"stores":[0,1],"product_id":1593,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"531","_score":1,"_source":{"id":531,"title":"aa","detail":"aa","nickname":"hatch test","customer_id":12031,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-07-01 09:35:46","store_id":1,"stores":[0,1],"product_id":1354,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"151","_score":1,"_source":{"id":151,"title":"PURPLES","detail":"I bought these pushup grips because they came in purple!! my boyfriend has his own and I love using them but the purple was so perfect for me because I'm a girly girl at heart","nickname":"Toya","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":19,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"179","_score":1,"_source":{"id":179,"title":"Buckle BROKE","detail":"my buckle BROKE off the 2nd time I wore it. And then I had issues getting a replacement even with the warranty. Luma needs to stick to clothing basics because they clearly are out of their league with the more technical stuff. UGH","nickname":"Grace","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":44,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"172","_score":1,"_source":{"id":172,"title":"Um, not actually waterproof","detail":"This bag is definitely not waterproof. I accidentally left it outside in a downpour, and my clothes got soaked. I'm disappointed!","nickname":"Aiko","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":13,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"539","_score":1,"_source":{"id":539,"title":"sdfsdf","detail":"dsfsfdsf","nickname":"test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-03 05:55:00","store_id":1,"stores":[0,1],"product_id":1514,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"173","_score":1,"_source":{"id":173,"title":"A roomy duffle","detail":"I really love how roomy the duffle is. I'm a clotheshorse, so I like to take a lot of outfits with me when I go away. I have no problem stuffing it all in. It's not a very stylish bag, but it serves its purpose.","nickname":"Dollie","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":13,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"544","_score":1,"_source":{"id":544,"title":"1q2wertyq","detail":"wertyuik","nickname":"qa","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-04 23:02:50","store_id":1,"stores":[0,1],"product_id":1754,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"174","_score":1,"_source":{"id":174,"title":"doesn't hold that much","detail":"It doesn't hold that much, so it's really just good for a night or two away. It's also pretty plain looking, so for those who like bells and whistles, look elsewhere.","nickname":"Caroyln","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":13,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"528","_score":1,"_source":{"id":528,"title":"summary ? ","detail":"my fuckin review","nickname":"test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-06-30 15:29:16","store_id":1,"stores":[0,1],"product_id":861,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"527","_score":1,"_source":{"id":527,"title":"fdsfds","detail":"dsfdsfdsfdfs","nickname":"dsfdsf","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-06-30 10:24:25","store_id":1,"stores":[0,1],"product_id":19,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"526","_score":1,"_source":{"id":526,"title":"sdfsef","detail":"sdfsdf","nickname":"test","customer_id":11170,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-06-28 07:05:42","store_id":1,"stores":[0,1],"product_id":2030,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"534","_score":1,"_source":{"id":534,"title":"aa","detail":"aa","nickname":"aaa","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-01 23:02:09","store_id":1,"stores":[0,1],"product_id":1754,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"532","_score":1,"_source":{"id":532,"title":"aa","detail":"aa","nickname":"aa","customer_id":12031,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-07-01 09:38:40","store_id":1,"stores":[0,1],"product_id":1354,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"533","_score":1,"_source":{"id":533,"title":"aa","detail":"aa","nickname":"aa","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-01 23:01:59","store_id":1,"stores":[0,1],"product_id":1754,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"535","_score":1,"_source":{"id":535,"title":"Awesome","detail":"Awesome","nickname":"Bill","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-02 00:29:56","store_id":1,"stores":[0,1],"product_id":1563,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"521","_score":1,"_source":{"id":521,"title":"Summary Title","detail":"Summary text","nickname":"Peter","customer_id":9598,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-06-19 14:27:42","store_id":1,"stores":[0,1],"product_id":45,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"554","_score":1,"_source":{"id":554,"title":"Super","detail":"Cool","nickname":"Franta","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-15 08:25:49","store_id":1,"stores":[0,1],"product_id":1563,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"555","_score":1,"_source":{"id":555,"title":"woop woop","detail":"this is a review","nickname":"Theis","customer_id":12145,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-07-15 10:23:36","store_id":1,"stores":[0,1],"product_id":1010,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"524","_score":1,"_source":{"id":524,"title":"Radiant Tee is okay","detail":"the best of the best","nickname":"Ali","customer_id":9126,"review_entity":"product","review_type":1,"review_status":1,"created_at":"2019-06-25 11:37:45","store_id":1,"stores":[0,1],"product_id":1561,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"565","_score":1,"_source":{"id":565,"title":"Best goed","detail":"Beter dan millers!","nickname":"Gianni De Leeuw","customer_id":9,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-07-18 14:04:09","store_id":1,"stores":[0,1],"product_id":3252,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"557","_score":1,"_source":{"id":557,"title":"good product","detail":"good product","nickname":"vinod","customer_id":12189,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-07-16 08:50:31","store_id":1,"stores":[0,1],"product_id":1482,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"569","_score":1,"_source":{"id":569,"title":"Goregeous outfit","detail":"super duper","nickname":"Max","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-25 14:15:36","store_id":1,"stores":[0,1],"product_id":1846,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"568","_score":1,"_source":{"id":568,"title":"d","detail":"fa","nickname":"ruipeng","customer_id":12201,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-07-22 02:20:37","store_id":1,"stores":[0,1],"product_id":1722,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"572","_score":1,"_source":{"id":572,"title":"r1","detail":"r1","nickname":"r1","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-30 17:47:24","store_id":1,"stores":[0,1],"product_id":51,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"548","_score":1,"_source":{"id":548,"title":"asdsad@example.com","detail":"asdasdsa","nickname":"sad","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-07 12:25:28","store_id":1,"stores":[0,1],"product_id":713,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"553","_score":1,"_source":{"id":553,"title":"Test","detail":"Awesome product","nickname":"Gianni","customer_id":12,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-07-12 08:55:54","store_id":1,"stores":[0,1],"product_id":28,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"184","_score":1,"_source":{"id":184,"title":"Has been through quite a few adventures ","detail":"Has been through quite a few adventures and vacations with me and still looks and runs great. That includes plenty of trips to water parks with the kids! ","nickname":"Joette","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":41,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"562","_score":1,"_source":{"id":562,"title":"test","detail":"test","nickname":"asd","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-16 16:16:37","store_id":1,"stores":[0,1],"product_id":1758,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"582","_score":1,"_source":{"id":582,"title":"Obcaecati ad ut offi","detail":"Sed qui nisi deserun","nickname":"Nihil expedita eos s","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-08-08 12:15:08","store_id":1,"stores":[0,1],"product_id":917,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"583","_score":1,"_source":{"id":583,"title":"eree","detail":"test","nickname":"Gabi","customer_id":12481,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-08-08 12:15:24","store_id":1,"stores":[0,1],"product_id":917,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"584","_score":1,"_source":{"id":584,"title":"Review","detail":"Bad!","nickname":"Libor","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-08-09 08:48:47","store_id":1,"stores":[0,1],"product_id":732,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"547","_score":1,"_source":{"id":547,"title":"test","detail":"test","nickname":"test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-06 06:44:49","store_id":1,"stores":[0,1],"product_id":13,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"600","_score":1,"_source":{"id":600,"title":"dasdas","detail":"dasdasd","nickname":"dsdad","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-08-18 23:36:04","store_id":1,"stores":[0,1],"product_id":718,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"590","_score":1,"_source":{"id":590,"title":"teete","detail":"tetee","nickname":"marcelo","customer_id":12977,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-08-11 19:41:54","store_id":1,"stores":[0,1],"product_id":1,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"181","_score":1,"_source":{"id":181,"title":"The strap broke","detail":"The strap broke, which made me think I have fat wrists but I don't.","nickname":"Laronda","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":43,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"571","_score":1,"_source":{"id":571,"title":"Interesting","detail":"Very happy to see this","nickname":"Tester","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-29 03:57:35","store_id":1,"stores":[0,1],"product_id":51,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"603","_score":1,"_source":{"id":603,"title":"asdcsac","detail":"Id commune utinam et quo delicata quaerendum diam id sea nemore omittantur deterruisset vel at. Mel nec ut an ex quo sea sea duo aliquip vim conclusionemque cum. Per aliquam dignissim viris eirmod homero pri signiferumque accusata tempor movet augue mundi soluta per ut. Omnesque ei atqui alii qui quodsi noluisse vim volutpat populo sint prima impetus. Invenire ceteros quo propriae te et eripuit eum hendrerit tale regione antiopam errem odio. Iuvaret ut nostro eum timeam ei perpetua id ea erroribus atqui accommodare mei perpetua vix. Ut pro erroribus tempor duis singulis at sit per molestie novum ex novum at nec vix vitae.","nickname":"acdsxcsd","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-08-22 14:34:46","store_id":1,"stores":[0,1],"product_id":1449,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"592","_score":1,"_source":{"id":592,"title":"TESTE2","detail":"teste2","nickname":"marcelo","customer_id":12977,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-08-11 21:37:51","store_id":1,"stores":[0,1],"product_id":2,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"579","_score":1,"_source":{"id":579,"title":"jnk","detail":"mnkjn","nickname":"hgj","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-08-07 18:27:24","store_id":1,"stores":[0,1],"product_id":1760,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"598","_score":1,"_source":{"id":598,"title":"Great top!","detail":"The best shirt for jogging","nickname":"Jane","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-08-16 20:33:34","store_id":1,"stores":[0,1],"product_id":1754,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"586","_score":1,"_source":{"id":586,"title":"tret","detail":"erter","nickname":"marcelo","customer_id":12977,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-08-11 14:26:35","store_id":1,"stores":[0,1],"product_id":1,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"581","_score":1,"_source":{"id":581,"title":"askdjaskdj","detail":"sdkfjsdklfjsf","nickname":"PRUEBA","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-08-08 10:25:11","store_id":1,"stores":[0,1],"product_id":1530,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"593","_score":1,"_source":{"id":593,"title":"gffdg","detail":"dfgdfg","nickname":"marcelo","customer_id":12977,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-08-11 21:40:20","store_id":1,"stores":[0,1],"product_id":1,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"602","_score":1,"_source":{"id":602,"title":"asd","detail":"asd","nickname":"asd","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-08-21 15:41:11","store_id":1,"stores":[0,1],"product_id":1579,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"594","_score":1,"_source":{"id":594,"title":"Shorts","detail":"Nice Short ","nickname":"Test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-08-14 05:56:33","store_id":1,"stores":[0,1],"product_id":2030,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"604","_score":1,"_source":{"id":604,"title":"Good","detail":"Good item","nickname":"Test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-08-29 12:55:33","store_id":1,"stores":[0,1],"product_id":22,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"574","_score":1,"_source":{"id":574,"title":"test","detail":"12312312","nickname":"Mateusz","customer_id":12492,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-07-31 13:58:24","store_id":1,"stores":[0,1],"product_id":1,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"588","_score":1,"_source":{"id":588,"title":"cfvsadf","detail":"saddasda dsf","nickname":"marcelo","customer_id":12977,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-08-11 14:44:32","store_id":1,"stores":[0,1],"product_id":1,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"570","_score":1,"_source":{"id":570,"title":"sdasdas dasdkmasd as","detail":"asdkndnasd ajd asjd asjasdkndnasd ajd asjd asjasdkndnasd ajd asjd asjasdkndnasd ajd asjd asjasdkndnasd ajd asjd asjasdkndnasd ajd asjd asjasdkndnasd ajd asjd asj","nickname":"hhh","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-28 13:47:19","store_id":1,"stores":[0,1],"product_id":730,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"578","_score":1,"_source":{"id":578,"title":"asdf","detail":"asdf","nickname":"asdf","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-08-07 12:56:12","store_id":1,"stores":[0,1],"product_id":1482,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"601","_score":1,"_source":{"id":601,"title":"Hsjskcyenslchs","detail":"Dbxjzlsuc dzisiaj jednak jdjsjwbb snshsys ","nickname":"John ","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-08-21 08:48:26","store_id":1,"stores":[0,1],"product_id":761,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"585","_score":1,"_source":{"id":585,"title":"A","detail":"This was given as a gift to me and it wasn't the one I asked for, but I'm starting to like the different perks like the hydration alarm","nickname":"GABRIEL","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-08-10 16:35:22","store_id":1,"stores":[0,1],"product_id":40,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"577","_score":1,"_source":{"id":577,"title":"asd ","detail":"dsa","nickname":"aaa","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-08-07 07:59:24","store_id":1,"stores":[0,1],"product_id":1514,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"589","_score":1,"_source":{"id":589,"title":"tezte","detail":"teste ","nickname":"marcelo","customer_id":12977,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-08-11 14:54:37","store_id":1,"stores":[0,1],"product_id":1,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"573","_score":1,"_source":{"id":573,"title":"Marcos","detail":"uii","nickname":"Marcos","customer_id":9610,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-07-31 12:56:55","store_id":1,"stores":[0,1],"product_id":1754,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"599","_score":1,"_source":{"id":599,"title":"ffldsfldfsld","detail":"dsfldsfldjlfkdslkfjdlsldsdf","nickname":"fhfdsl","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-08-18 19:22:12","store_id":1,"stores":[0,1],"product_id":2023,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"575","_score":1,"_source":{"id":575,"title":"test","detail":"testtest","nickname":"test","customer_id":12520,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-08-03 02:14:40","store_id":1,"stores":[0,1],"product_id":1578,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"537","_score":1,"_source":{"id":537,"title":"test123344","detail":"helootest","nickname":"manvendra","customer_id":11159,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-07-03 05:11:55","store_id":1,"stores":[0,1],"product_id":1754,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"607","_score":1,"_source":{"id":607,"title":"dd","detail":"dd","nickname":"dd","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-09-02 11:45:32","store_id":1,"stores":[0,1],"product_id":1529,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"591","_score":1,"_source":{"id":591,"title":"teste","detail":"teste","nickname":"marce","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-08-11 21:36:13","store_id":1,"stores":[0,1],"product_id":2,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"580","_score":1,"_source":{"id":580,"title":"خوب نیست","detail":"اصلا هم خوب نیست","nickname":"mm","customer_id":12931,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-08-07 19:23:29","store_id":1,"stores":[0,1],"product_id":532,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"576","_score":1,"_source":{"id":576,"title":"Dddd","detail":"Drdf","nickname":"Cfc","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-08-05 04:29:16","store_id":1,"stores":[0,1],"product_id":1275,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"587","_score":1,"_source":{"id":587,"title":"teste","detail":"teste","nickname":"marcelo","customer_id":12977,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-08-11 14:36:55","store_id":1,"stores":[0,1],"product_id":1,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"605","_score":1,"_source":{"id":605,"title":"It's good","detail":"I love it","nickname":"Mar","customer_id":13129,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-08-31 07:16:36","store_id":1,"stores":[0,1],"product_id":1989,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"596","_score":1,"_source":{"id":596,"title":"The best straps I've ever had!","detail":"This straps are amazing! Strong and very stretchy","nickname":"Jane","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-08-16 19:21:19","store_id":1,"stores":[0,1],"product_id":2046,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"606","_score":1,"_source":{"id":606,"title":"Nice one","detail":"my review","nickname":"Kamil","customer_id":13135,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-09-01 23:10:21","store_id":1,"stores":[0,1],"product_id":1529,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"566","_score":1,"_source":{"id":566,"title":"kbjb jk kjh kjhkhk","detail":"jkhkjh","nickname":"yuyiyi","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-20 16:53:18","store_id":1,"stores":[0,1],"product_id":205,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"545","_score":1,"_source":{"id":545,"title":"testsetes","detail":"testset","nickname":"Ali","customer_id":9126,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-07-05 11:52:19","store_id":1,"stores":[0,1],"product_id":1545,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"597","_score":1,"_source":{"id":597,"title":"xccxcC","detail":"cxCzvfvfsvsvsv","nickname":"Jane","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-08-16 19:25:14","store_id":1,"stores":[0,1],"product_id":2046,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"245","_score":1,"_source":{"id":245,"title":"NOT flattering.","detail":"NOT flattering. My boyfriend bought me these cuz he loves the way yoga pants look. I wore them once and he said I should return them then we broke up :(","nickname":"Pamela","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1845,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"219","_score":1,"_source":{"id":219,"title":"Most comfortable jacket","detail":"I have never worn such a comfortable jacket!!! It's really thin and moves well with your body, I have no idea how it manages to keep you so warm. And if you'll be in really cold weather, you can easily add some extra layers underneath and still be comfortable.","nickname":"Kecia","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1385,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"636","_score":1,"_source":{"id":636,"title":"asdasd","detail":"lkjhd hajskllkjhasd lkjh","nickname":"ölkjölkj","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-09-17 01:12:50","store_id":1,"stores":[0,1],"product_id":1593,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"231","_score":1,"_source":{"id":231,"title":"This is the most dependable piece I own.","detail":"This is the most dependable piece I own. You'll rarely me without this on. (except in the summer)","nickname":"Mathilde","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1369,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"249","_score":1,"_source":{"id":249,"title":"good for PJs but that's about it","detail":"good for PJs but that's about it","nickname":"Kemberly","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1859,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"234","_score":1,"_source":{"id":234,"title":"Awesome bottoms ","detail":"Awesome bottoms for working out or just relaxing at the house.","nickname":"Ashlee","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1824,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"230","_score":1,"_source":{"id":230,"title":"Great colors!","detail":"I'm into the colors cause they're great for night skiing-but I overheated really fast in this jacket","nickname":"Demetrice","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1353,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"496","_score":1,"_source":{"id":496,"title":"test","detail":"This is a test","nickname":"test","customer_id":2729,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-06-07 11:18:26","store_id":1,"stores":[0,1],"product_id":13,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"494","_score":1,"_source":{"id":494,"title":"dfdsvfd","detail":"sdsds","nickname":"tt","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-06-05 10:43:43","store_id":1,"stores":[0,1],"product_id":1754,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"498","_score":1,"_source":{"id":498,"title":"s","detail":"hfgghf","nickname":"dasdasd","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-06-07 19:41:31","store_id":1,"stores":[0,1],"product_id":1578,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"233","_score":1,"_source":{"id":233,"title":"Perfect, perfect, perfect in every way. ","detail":"Perfect, perfect, perfect in every way. I love the quilting and it keeps me toasty warm.","nickname":"Denyse","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1369,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"242","_score":1,"_source":{"id":242,"title":"high waistband, no muffin top!","detail":"Love the cut and the high waistband. Bye bye, muffin top!","nickname":"Lily","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1845,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"243","_score":1,"_source":{"id":243,"title":"Relaxing","detail":"My favorite part of the day is when I get to come home, take my work pants off and slip these on. Sooo soft and perfect for relaxing.","nickname":"Brittany","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1845,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"623","_score":1,"_source":{"id":623,"title":"SDFS","detail":"SDFDS","nickname":"Test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-09-04 11:56:02","store_id":1,"stores":[0,1],"product_id":2003,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"504","_score":1,"_source":{"id":504,"title":"tetestest","detail":"test","nickname":"Ali","customer_id":9126,"review_entity":"product","review_type":1,"review_status":1,"created_at":"2019-06-12 10:19:36","store_id":1,"stores":[0,1],"product_id":1513,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"510","_score":1,"_source":{"id":510,"title":"super ","detail":"hiper","nickname":"alinadivante","review_entity":"product","review_type":3,"review_status":1,"created_at":"2019-06-17 12:29:04","store_id":1,"stores":[0,1],"product_id":1,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"218","_score":1,"_source":{"id":218,"title":"Nice for skiing","detail":"Looks good and feels good. It's nice for skiing because it blocks the wind and keeps you warm, but doesn't get too hot after you start sweating.","nickname":"Ela","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1385,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"505","_score":1,"_source":{"id":505,"title":"good jack","detail":"asdfasfgasdfsfasfasfa","nickname":"Sikander","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-06-12 12:01:22","store_id":1,"stores":[0,1],"product_id":372,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"250","_score":1,"_source":{"id":250,"title":"These are my favorite pants. ","detail":"These are my favorite pants. Super cute and soooo comfy.","nickname":"Tashina","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1859,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"199","_score":1,"_source":{"id":199,"title":"Best hoodies I've owned.","detail":"im planning on buying another one of these in another color. the best hoodie ive ever owned.","nickname":"Beatris","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1113,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"497","_score":1,"_source":{"id":497,"title":"sdfsdf","detail":"sddsfsdfdsf\nsdf\nsd\nf","nickname":"Marek","customer_id":9102,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-06-07 12:28:55","store_id":1,"stores":[0,1],"product_id":1973,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"237","_score":1,"_source":{"id":237,"title":"I can't stop lookin in the mirror! ","detail":"I can't stop lookin in the mirror! ","nickname":"Isadora","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1831,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"1","_score":1,"_source":{"id":1,"title":"I prefer more compartments","detail":"I prefer more compartments. If you don't mind putting everything in one space, it's fine. Good for the gym.","nickname":"Chi","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:43","store_id":1,"stores":[0,1],"product_id":1,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"3","_score":1,"_source":{"id":3,"title":"I've had this thing for really long","detail":"I've had this thing for a really long time and it barely shows any signs of wear and tear. It's really big, too! I've taken it on day trips as well as short vacations and usually have no trouble finding room for my stuff.","nickname":"Herb","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:43","store_id":1,"stores":[0,1],"product_id":6,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"8","_score":1,"_source":{"id":8,"title":"I bought this backpack for my son","detail":"I bought this backpack for my son to take to school, but he carries it like a suitcase now! It's also really good for airplane travel.","nickname":"Kennith","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:43","store_id":1,"stores":[0,1],"product_id":3,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"257","_score":1,"_source":{"id":257,"title":"Flatters my big build","detail":"I have broad, strong shoulders and this top is one of the very few that flatters my build. 5 stars for sure!","nickname":"Annamaria","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1433,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"6","_score":1,"_source":{"id":6,"title":"Awesome bag","detail":"Awesome bag but I found it to be smaller than I thought. I haven't felt any additional strain on my back and I use it all day long for my job.","nickname":"Marty","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:43","store_id":1,"stores":[0,1],"product_id":3,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"32","_score":1,"_source":{"id":32,"title":"Weird looking pocket","detail":"I where it when I'm coaching football so I can run up and down the sidelines and yell without getting to hot. The pocket on the chest is weird looking tho.","nickname":"Xavier","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":275,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"12","_score":1,"_source":{"id":12,"title":"Good for work. Holds everything ","detail":"This is good for work. Holds everything I need. The fabric doesn't seem that strong, but so far so good.","nickname":"Garry","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":4,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"9","_score":1,"_source":{"id":9,"title":"awesome for going back and forth","detail":"This is awesome for going back and forth to class. I live off campus and it's a longer walk, but this pack fits comfortably and I can even store my laptop in the main compartment.","nickname":"Gaston","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:43","store_id":1,"stores":[0,1],"product_id":2,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"22","_score":1,"_source":{"id":22,"title":"It works ok but the ugliness is blinding","detail":"It works ok but the ugliness is blinding I am literally blinded","nickname":"Leon","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":38,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"31","_score":1,"_source":{"id":31,"title":"My favorite layers","detail":"This is one of my favorite layers for running in the winter, it keeps me warm but it's not super bulky.","nickname":"Markus","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":275,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"34","_score":1,"_source":{"id":34,"title":"The fabric is great","detail":"the fabric is great, it keeps me warm but it's not bulky like my other hoodies. Runs large, though.","nickname":"Emory","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":291,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"75","_score":1,"_source":{"id":75,"title":"Too small ","detail":"I'm a bodybuilder with extremely large, buff muscles and this shirt simply does not accommodate my bulk. Even with the V neck it's too tight around my neck, and the sleeve openings were practically cutting off circulation to my biceps and triceps! I had to send it back but I have to admit that felt good ;)","nickname":"Gustavo","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":451,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"85","_score":1,"_source":{"id":85,"title":"I love this shirt. Perfect fit","detail":"I love this shirt. Perfect fit, perfect price. My dad plays on a softball team and I got one for him and he is very happy too. has my vote! ","nickname":"Erwin","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":627,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"91","_score":1,"_source":{"id":91,"title":"Fantastic shirt for the price!","detail":"This is a fantastic shirt for the price!","nickname":"Jae","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":483,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"103","_score":1,"_source":{"id":103,"title":"They work great in water","detail":"They work great in water but I also like to wear em on hotter days if we're walking around and regular sandals will let too much debris get in.","nickname":"Antwan","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":898,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"106","_score":1,"_source":{"id":106,"title":"These sit in my foyer waiting for my eve","detail":"These sit in my foyer waiting for my everyday run. Sometimes I run 5 miles in them, sometimes 10. They never let me down.","nickname":"Ike","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":916,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"109","_score":1,"_source":{"id":109,"title":"I wear these to my gym daily. I go hard ","detail":"I wear these to my gym daily. I go hard on the treadmill and these don't let me down.","nickname":"Carlo","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":929,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"97","_score":1,"_source":{"id":97,"title":"I purchased this tank top for my son","detail":"I purchased this tank top for my son when he's working out in the gym after school. It fits great and he loves it!","nickname":"Duncan","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":499,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"104","_score":1,"_source":{"id":104,"title":"The only things I care about when I'm ru","detail":"The only things I care about when I'm running are comfort and speed. These are definitely comfortable but I don't think their lightweight enough to give me great speed. And the search continues.","nickname":"Lamont","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":916,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"95","_score":1,"_source":{"id":95,"title":"I work out a lot","detail":"I work out a lot and my shoulders are really big, most tank tops are too tight in the armholes but this one is great.","nickname":"Harry","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":499,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"107","_score":1,"_source":{"id":107,"title":"Running in these are imPOSSible!! I only","detail":"Running in these are imPOSSible!! I only can run 23 minutes at a time, but these hurt when I even do that. They look pretty snazzy though, lots of compliments from the ladies on my route.","nickname":"Hugh","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":929,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"112","_score":1,"_source":{"id":112,"title":"The only thing I don't like about these ","detail":"The only thing I don't like about these shoes are the weird toes. They point upward making it look really strange on a guy. Otherwise very good.","nickname":"Simon","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:44","store_id":1,"stores":[0,1],"product_id":942,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"248","_score":1,"_source":{"id":248,"title":"These pants are so cute!","detail":"These pants are so cute! I like them better for lounging than exercising, though. The material gets a little too hot when I'm working out.","nickname":"Mavis","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1859,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"155","_score":1,"_source":{"id":155,"title":"Perfect weight","detail":"I always found 10 lb weights too light and 20 lb too heavy. This is just right!","nickname":"Danielle","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":16,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"129","_score":1,"_source":{"id":129,"title":"I feel awesome when I wear this","detail":"I feel awesome when I wear this to hit the gym!!! The cut makes my triceps look huge. It's so rewarding to look in the mirror after a really tough workout. My girlfriend says I look like a lunkhead but I know she loves it!!","nickname":"Eldon","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":659,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"166","_score":1,"_source":{"id":166,"title":"it's really ugly,","detail":"Its fine I guess but it's really ugly, I picked out a really cute bag for college but my mom got me this one instead.","nickname":"Tracee","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":14,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"220","_score":1,"_source":{"id":220,"title":"a little short for me","detail":"It's a little short for my loooooooooooooong torso, but it's still comfy and cute. Good for short runs.","nickname":"Johna","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1305,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"164","_score":1,"_source":{"id":164,"title":"I bike four miles a day to work and back","detail":"I bike four miles a day to work and back and I love this thing. It's a good size and it's pretty comfortable to wear across my back while I ride. So far I have not noticed much wear and tear on the fabric and I've had it for 6 months.","nickname":"Sadye","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":14,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"135","_score":1,"_source":{"id":135,"title":"Razorback version?","detail":"I'd prefer if it was Racerback, but otherwise it's a great shirt. The Mesh zones are where you need them when you really get Sweaty.","nickname":"Graham","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":681,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"182","_score":1,"_source":{"id":182,"title":"Pieces kept coming off","detail":"Pieces kept coming off.","nickname":"Colleen","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":43,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"262","_score":1,"_source":{"id":262,"title":"Light, comfy","detail":"Light, comfy, does a good job shedding sweat.","nickname":"Slyvia","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1449,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"261","_score":1,"_source":{"id":261,"title":"What's with the sleeve cut?","detail":"What's with the sleeve cut? I don't even have linebacker shoulders but I feel like the sleeves are cutting off circulation to my arms!","nickname":"Pearle","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1449,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"263","_score":1,"_source":{"id":263,"title":"Light but tight","detail":"This shirt is very light but a TIGHT fit! Almost compression-tight.","nickname":"Nell","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1593,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"268","_score":1,"_source":{"id":268,"title":"Thank you! ","detail":"Thank you! I'm so sick of inappropriate workout clothes. This is exactly what I was looking for. Cover yourselves up, ladies!","nickname":"Sonja","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1497,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"281","_score":1,"_source":{"id":281,"title":"Not great","detail":"Not great - buttons are too small and hurt my fingers trying to button it. I've seen better designs...","nickname":"Collette","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1561,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"275","_score":1,"_source":{"id":275,"title":"I where this AAALLLLL the time","detail":"I where this AAALLLLL the time to workout! Its so comfy and cute! I just wish it was a little longer.","nickname":"Gidget","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1529,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"280","_score":1,"_source":{"id":280,"title":"cool and dry","detail":"What I rally love here is that it does the job of keeping me cool and dry. I'm a big guy and sweat A LOT! Even after a day of gulf, I'm still dry and comfortable. The problem is that the sleeves are very tight - actually bought a second shirt because i split the armpit/sleeve area of the first. Do yourself a favor and order a size bigger. ","nickname":"Lakeisha","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1561,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"290","_score":1,"_source":{"id":290,"title":"These are my favorite new pair of sneake","detail":"These are my favorite new pair of sneakers! I just hate that they get dirty really fast.","nickname":"Dena","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1956,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"288","_score":1,"_source":{"id":288,"title":"The suede upper makes these pretty hard ","detail":"The suede upper makes these pretty hard to wear if its raining outside! The sneaker designers really weren't thinking on this one. Cute design though!","nickname":"Jovan","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1940,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"286","_score":1,"_source":{"id":286,"title":"Beyond perfection! I always get tons of ","detail":"Beyond perfection! I always get tons of compliments when I wear these out.","nickname":"Manuela","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1940,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"287","_score":1,"_source":{"id":287,"title":"These look awesome with EVERYTHING! Hone","detail":"These look awesome with EVERYTHING! Honestly, there's nothing you can wear that won't look perfect with these. Preppy and retro! Love them!","nickname":"Gwen","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1940,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"292","_score":1,"_source":{"id":292,"title":"Really comfy and awesome for running or ","detail":"Really comfy and awesome for running or checking out trails at the park. ","nickname":"Adele","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1972,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"295","_score":1,"_source":{"id":295,"title":"I absolutely love these trainers. I can ","detail":"I absolutely love these trainers. I can get on the gym floor so quick becuz i don't have to tie any annoying ties.","nickname":"Rosy","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1988,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"297","_score":1,"_source":{"id":297,"title":"Love the no laces and they feel really g","detail":"Love the no laces and they feel really good- wear em all the time!","nickname":"Dannette","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1995,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"303","_score":1,"_source":{"id":303,"title":"Want these in every single color Luma ma","detail":"Want these in every single color Luma makes! I am the first to say that I'm a couch potatoe, I don't run at all. I wear these to the mall for shopping instead. :)","nickname":"Min","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":2008,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"298","_score":1,"_source":{"id":298,"title":"I love these for when I walk the boardwa","detail":"I love these for when I walk the boardwalk with my grandaughter. They seem pretty hip and I got lots of compliments on them from the ladies at the bingo night","nickname":"Lita","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":2002,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"304","_score":1,"_source":{"id":304,"title":"Ummm, fashion? If you say so. They're co","detail":"Ummm, fashion? If you say so. They're comfy and all, but these shoes are hideous.","nickname":"Katy","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":2015,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"302","_score":1,"_source":{"id":302,"title":"These are really well made and so lightw","detail":"These are really well made and so lightweight. I'll definitely be buying more of these.","nickname":"Nadene","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":2008,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"306","_score":1,"_source":{"id":306,"title":"Love love LOVE!!! I can't get enough of ","detail":"Love love LOVE!!! I can't get enough of these shoes. They are SUPER comfy and go with everything!","nickname":"Kara","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":2015,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"307","_score":1,"_source":{"id":307,"title":"It was really hard to find the right siz","detail":"It was really hard to find the right size for these. I had to send them back 3 times before I got a pair that fit. Really aggravating!!! I ended up having to get two sizes larger than I usually wear and a wide, which I've never worn before in my life. Sizing is messed up do yourself a favor, go to the store and try them on.","nickname":"Angeline","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":2022,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"313","_score":1,"_source":{"id":313,"title":"Pic is WAY different then the real thing","detail":"Pic is WAY different then the real thing! My mom wouldn't even wear these there so ugly! Can I give a 0 rating?","nickname":"Garnett","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":2045,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"310","_score":1,"_source":{"id":310,"title":"I am in love with these shoes and will b","detail":"I am in love with these shoes and will buy them until they don't make them anymore. I run every day in them and I'm still on my first pair after a whole year. They're SO comfy.","nickname":"Natashia","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":2029,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"311","_score":1,"_source":{"id":311,"title":"Design is adorable-when you have cute wo","detail":"Design is adorable-when you have cute workout gear, exercising is fun. I'd buy these again.","nickname":"Brigitte","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":2029,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"309","_score":1,"_source":{"id":309,"title":"Wore these for a year and they started f","detail":"Wore these for a year and they started falling apart. For the price I guess I'll just get another pair cuz I do like them. But I think a shoe should last longer. It's not like I can take my sneakers to a cobbler haha","nickname":"Pura","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":2022,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"308","_score":1,"_source":{"id":308,"title":"VERY LIGHTWEIGHT COMFY-GOOD SHOES","detail":"VERY LIGHTWEIGHT COMFY-GOOD SHOES","nickname":"Marita","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":2022,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"314","_score":1,"_source":{"id":314,"title":"Meh, I'm not hating them, but I'm not in","detail":"Meh, I'm not hating them, but I'm not in love. The eyelet part looks way different online and the elastic band felt really tight. They are pretty comfy other than that.","nickname":"Eugena","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":2045,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"322","_score":1,"_source":{"id":322,"title":"So, so awesome. Great Support!","detail":"So, so awesome. Great Support! I just can't wait for the day that I'm comfortable enough with my midriff to wear this sans shirt, because the pattern is really cute!!","nickname":"Dorcas","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1625,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"319","_score":1,"_source":{"id":319,"title":"One of my favorites b/c no chafing!","detail":"One of my favorites b/c no chafing!","nickname":"Bernetta","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1609,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"341","_score":1,"_source":{"id":341,"title":"The seams bother me","detail":"Some of the seams bother me during certain workouts but otherwise very comfortable","nickname":"Carma","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:47","store_id":1,"stores":[0,1],"product_id":1817,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"348","_score":1,"_source":{"id":348,"title":"fe","detail":"fewefwef","nickname":"Piotr","customer_id":158,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2018-10-22 09:14:42","store_id":1,"stores":[0,1],"product_id":1010,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"350","_score":1,"_source":{"id":350,"title":"Awesome Piece!","detail":"I loved it like loved it","nickname":"Dare","review_entity":"product","review_type":3,"review_status":2,"created_at":"2018-11-08 15:40:50","store_id":1,"stores":[0,1],"product_id":1673,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"351","_score":1,"_source":{"id":351,"title":"Divante","detail":"wefwef","nickname":"piotr","review_entity":"product","review_type":3,"review_status":2,"created_at":"2018-11-14 11:53:14","store_id":1,"stores":[0,1],"product_id":1779,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"353","_score":1,"_source":{"id":353,"title":"5","detail":"4","nickname":"Luke","customer_id":1932,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2018-11-16 08:28:23","store_id":1,"stores":[0,1],"product_id":79,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"355","_score":1,"_source":{"id":355,"title":"test","detail":"test","nickname":"test","customer_id":1,"review_entity":"product","review_type":1,"review_status":1,"created_at":"2018-11-21 11:28:54","store_id":1,"stores":[0,1],"product_id":2023,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"357","_score":1,"_source":{"id":357,"title":"test","detail":"tets\n","nickname":"test","customer_id":1,"review_entity":"product","review_type":1,"review_status":1,"created_at":"2018-11-21 11:39:28","store_id":1,"stores":[0,1],"product_id":2023,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"358","_score":1,"_source":{"id":358,"title":"test","detail":"test","nickname":"test","customer_id":1,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2018-11-21 11:40:17","store_id":1,"stores":[0,1],"product_id":2023,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"356","_score":1,"_source":{"id":356,"title":"test","detail":"test","nickname":"test","customer_id":1,"review_entity":"product","review_type":1,"review_status":1,"created_at":"2018-11-21 11:29:10","store_id":1,"stores":[0,1],"product_id":2023,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"354","_score":1,"_source":{"id":354,"title":"test","detail":"test test test","nickname":"Test","customer_id":1,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2018-11-21 11:20:30","store_id":1,"stores":[0,1],"product_id":2023,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"362","_score":1,"_source":{"id":362,"title":"asd","detail":"asdsd","nickname":"rt","customer_id":1,"review_entity":"product","review_type":1,"review_status":1,"created_at":"2018-11-22 13:52:31","store_id":1,"stores":[0,1],"product_id":1754,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"360","_score":1,"_source":{"id":360,"title":"test","detail":"test","nickname":"test","customer_id":1,"review_entity":"product","review_type":1,"review_status":1,"created_at":"2018-11-21 11:54:08","store_id":1,"stores":[0,1],"product_id":2023,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"363","_score":1,"_source":{"id":363,"title":"bla bl","detail":"DWDWDQ","nickname":"Collin","customer_id":2092,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2018-11-28 13:49:31","store_id":1,"stores":[0,1],"product_id":47,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"365","_score":1,"_source":{"id":365,"title":"sdf","detail":"sdf","nickname":"sd","review_entity":"product","review_type":3,"review_status":2,"created_at":"2018-12-08 17:55:05","store_id":1,"stores":[0,1],"product_id":72119,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"369","_score":1,"_source":{"id":369,"title":"proba","detail":"proba proba","nickname":"A","review_entity":"product","review_type":3,"review_status":2,"created_at":"2018-12-13 10:12:12","store_id":1,"stores":[0,1],"product_id":489886,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"367","_score":1,"_source":{"id":367,"title":"this is test summary","detail":"5","nickname":"yasser","review_entity":"product","review_type":3,"review_status":2,"created_at":"2018-12-13 05:23:21","store_id":1,"stores":[0,1],"product_id":836,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"372","_score":1,"_source":{"id":372,"title":"this is a demo review","detail":"this is a demo review","nickname":"First","customer_id":2383,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2018-12-24 21:10:52","store_id":1,"stores":[0,1],"product_id":1021,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"370","_score":1,"_source":{"id":370,"title":"asd","detail":"asd","nickname":"Asd","review_entity":"product","review_type":3,"review_status":2,"created_at":"2018-12-14 06:56:26","store_id":1,"stores":[0,1],"product_id":2046,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"371","_score":1,"_source":{"id":371,"title":"Veniam corrupti aut excepteur itaque eius dignissimos at repellendus Incidunt cum dolorum consequuntur saepe est facilis ipsam libero deserunt cillum","detail":"Qui ea et ad ipsum exercitation sint quia molestiae id excepturi ut nulla","nickname":"Érika","customer_id":2348,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2018-12-20 22:00:23","store_id":1,"stores":[0,1],"product_id":1578,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"377","_score":1,"_source":{"id":377,"title":"good","detail":"test review","nickname":"tyyty","review_entity":"product","review_type":3,"review_status":2,"created_at":"2018-12-30 04:06:34","store_id":1,"stores":[0,1],"product_id":47,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"378","_score":1,"_source":{"id":378,"title":"dfgfdgdfgdfg","detail":"dfgdfgdgd","nickname":"rene","customer_id":2320,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-01-04 10:13:34","store_id":1,"stores":[0,1],"product_id":1949,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"379","_score":1,"_source":{"id":379,"title":"Summary","detail":"Review Content","nickname":"TestFirst","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-01-08 10:02:15","store_id":1,"stores":[0,1],"product_id":874,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"376","_score":1,"_source":{"id":376,"title":"qwe","detail":"qwe","nickname":"TestFirst","customer_id":2400,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2018-12-27 12:52:50","store_id":1,"stores":[0,1],"product_id":446,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"386","_score":1,"_source":{"id":386,"title":"123","detail":"123","nickname":"123","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-01-18 00:56:12","store_id":1,"stores":[0,1],"product_id":22,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"387","_score":1,"_source":{"id":387,"title":"Test","detail":"Test Review","nickname":"Test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-01-23 22:17:57","store_id":1,"stores":[0,1],"product_id":1754,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"388","_score":1,"_source":{"id":388,"title":"asdas","detail":"23","nickname":"sfsd","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-01-31 08:29:21","store_id":1,"stores":[0,1],"product_id":1888,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"375","_score":1,"_source":{"id":375,"title":"Test Summury","detail":"Test Review Content","nickname":"TestFirst","customer_id":2400,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2018-12-27 09:36:05","store_id":1,"stores":[0,1],"product_id":874,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"380","_score":1,"_source":{"id":380,"title":"vqe","detail":"vqrv","nickname":"dcfa","customer_id":222,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-01-11 08:33:50","store_id":1,"stores":[0,1],"product_id":1689,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"391","_score":1,"_source":{"id":391,"title":"test","detail":"test","nickname":"test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-02-04 09:33:13","store_id":1,"stores":[0,1],"product_id":1,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"393","_score":1,"_source":{"id":393,"title":"t43t","detail":"34t","nickname":"Admin","customer_id":158,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-02-04 21:24:43","store_id":1,"stores":[0,1],"product_id":1482,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"394","_score":1,"_source":{"id":394,"title":"erg","detail":"erg","nickname":"gerg","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-02-04 21:25:01","store_id":1,"stores":[0,1],"product_id":1482,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"381","_score":1,"_source":{"id":381,"title":"asd","detail":"asd","nickname":"asd","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-01-15 06:10:18","store_id":1,"stores":[0,1],"product_id":1955,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"389","_score":1,"_source":{"id":389,"title":"test","detail":"test","nickname":"MArco","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-02-01 15:03:42","store_id":1,"stores":[0,1],"product_id":1578,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"399","_score":1,"_source":{"id":399,"title":"asdasdas","detail":"afasdfasdf","nickname":"Andrei","customer_id":2939,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-02-17 00:00:29","store_id":1,"stores":[0,1],"product_id":1,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"405","_score":1,"_source":{"id":405,"title":"This is a test","detail":"They're great!","nickname":"Joe","customer_id":4949,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-02-26 00:13:25","store_id":1,"stores":[0,1],"product_id":22,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"400","_score":1,"_source":{"id":400,"title":"asdasd","detail":"adasd","nickname":"Andrei","customer_id":2947,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-02-17 01:31:35","store_id":1,"stores":[0,1],"product_id":2,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"404","_score":1,"_source":{"id":404,"title":"ok","detail":"asdasd","nickname":"asd","customer_id":4766,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-02-25 12:31:23","store_id":1,"stores":[0,1],"product_id":348,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"403","_score":1,"_source":{"id":403,"title":"Testing review","detail":"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id mauris sed metus pretium euismod. Maecenas vestibulum lacinia velit, eget pellentesque risus lacinia non. ","nickname":"Test review","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-02-22 15:34:28","store_id":1,"stores":[0,1],"product_id":1484,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"396","_score":1,"_source":{"id":396,"title":"Super","detail":"klasse","nickname":"Eric","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-02-12 14:08:14","store_id":1,"stores":[0,1],"product_id":9098,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"397","_score":1,"_source":{"id":397,"title":"Test","detail":"TEst","nickname":"Ace","customer_id":2828,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-02-13 06:31:39","store_id":1,"stores":[0,1],"product_id":2003,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"398","_score":1,"_source":{"id":398,"title":"1500","detail":"NICE","nickname":"TEST","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-02-13 15:33:24","store_id":1,"stores":[0,1],"product_id":607,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"408","_score":1,"_source":{"id":408,"title":"Demo","detail":"Demo","nickname":"Demo","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-02-27 06:52:42","store_id":1,"stores":[0,1],"product_id":1547,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"406","_score":1,"_source":{"id":406,"title":"wew","detail":"eweweececed eefe dwdwdw dwdwdw","nickname":"test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-02-26 08:41:08","store_id":1,"stores":[0,1],"product_id":682,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"415","_score":1,"_source":{"id":415,"title":"testr","detail":"test","nickname":"test","customer_id":8166,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-03-21 17:06:40","store_id":1,"stores":[0,1],"product_id":45,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"412","_score":1,"_source":{"id":412,"title":"Nice on","detail":"What a great piece of software!","nickname":"Dominik","customer_id":7365,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-03-12 16:59:06","store_id":1,"stores":[0,1],"product_id":1354,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"419","_score":1,"_source":{"id":419,"title":"Test review summary","detail":"Test review text, that should display under reviews section","nickname":"John","review_entity":"product","review_type":3,"review_status":1,"created_at":"2019-03-25 14:46:14","store_id":1,"stores":[0,1],"product_id":1888,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"422","_score":1,"_source":{"id":422,"title":"Foobar","detail":"Fboooar","nickname":"steve","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-03-26 13:13:36","store_id":1,"stores":[0,1],"product_id":821,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"442","_score":1,"_source":{"id":442,"title":"12312eqweqw","detail":"eqweqweqw321312","nickname":"dasdasdas","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-04-18 12:38:37","store_id":1,"stores":[0,1],"product_id":14,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"449","_score":1,"_source":{"id":449,"title":"Quasi sit vel ipsam ","detail":"Non deserunt fugiat","nickname":"Quod ducimus cupida","customer_id":8451,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-04-23 11:13:04","store_id":1,"stores":[0,1],"product_id":756,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"476","_score":1,"_source":{"id":476,"title":"test","detail":"test","nickname":"atest","customer_id":8596,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-05-20 10:33:02","store_id":1,"stores":[0,1],"product_id":1482,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"471","_score":1,"_source":{"id":471,"title":"Cool cool cool","detail":"Cool cool cool","nickname":"Aleksandra","customer_id":1937,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-05-16 11:28:49","store_id":1,"stores":[0,1],"product_id":1546,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"485","_score":1,"_source":{"id":485,"title":"shop","detail":"dfgsrth hgfmyk c jkuf j","nickname":"fall","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-05-26 18:11:01","store_id":1,"stores":[0,1],"product_id":1562,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"470","_score":1,"_source":{"id":470,"title":"cdvsvdsv","detail":"dsvdsvdsvdsv","nickname":"Marcel","customer_id":8840,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-05-09 13:40:04","store_id":1,"stores":[0,1],"product_id":1386,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"477","_score":1,"_source":{"id":477,"title":"Lol","detail":"Lol","nickname":"Walker","customer_id":8934,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-05-20 20:16:30","store_id":1,"stores":[0,1],"product_id":246,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"465","_score":1,"_source":{"id":465,"title":"This is a test","detail":"Pretty Good guys!","nickname":"Mark","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-05-09 10:53:38","store_id":1,"stores":[0,1],"product_id":1802,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"484","_score":1,"_source":{"id":484,"title":"Great","detail":"Great","nickname":"VV","customer_id":8981,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-05-26 11:44:40","store_id":1,"stores":[0,1],"product_id":1562,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"472","_score":1,"_source":{"id":472,"title":"Good Product","detail":"I love how it holds my figure","nickname":"test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-05-16 12:29:03","store_id":1,"stores":[0,1],"product_id":1482,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"124","_score":1,"_source":{"id":124,"title":"Keeps me comfortable","detail":"I've only worn it a few times so far, but it really keeps me comfortable at the gym. I throw on a pair of athletic shorts and call it a day.","nickname":"Mervin","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":643,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"186","_score":1,"_source":{"id":186,"title":"Great for cooler runs. ","detail":"Great for cooler runs. ","nickname":"Shonta","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1049,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"529","_score":1,"_source":{"id":529,"title":"1234567","detail":"1234567","nickname":"aa","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-01 08:37:50","store_id":1,"stores":[0,1],"product_id":1874,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"176","_score":1,"_source":{"id":176,"title":"Super sleek, love it. ","detail":"Super sleek, love it. I'm buying another as a gift!","nickname":"Cecelia","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":42,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"556","_score":1,"_source":{"id":556,"title":"mustaph","detail":"نن","nickname":"mustaph","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-15 20:21:38","store_id":1,"stores":[0,1],"product_id":564,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"559","_score":1,"_source":{"id":559,"title":"asdsad","detail":"sadsd","nickname":"vsds","customer_id":12189,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-07-16 08:53:32","store_id":1,"stores":[0,1],"product_id":1482,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"561","_score":1,"_source":{"id":561,"title":"Test","detail":"Test blubb","nickname":"Testomatico","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-16 16:03:54","store_id":1,"stores":[0,1],"product_id":1140,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"551","_score":1,"_source":{"id":551,"title":"well","detail":"just well","nickname":"Rob ","customer_id":9053,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-07-10 13:53:25","store_id":1,"stores":[0,1],"product_id":1754,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"530","_score":1,"_source":{"id":530,"title":"aa","detail":"aa","nickname":"hatch test","customer_id":12031,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-07-01 08:38:35","store_id":1,"stores":[0,1],"product_id":1902,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"177","_score":1,"_source":{"id":177,"title":"My mom loves it","detail":"I bought this watch for my mom to workout with and she loves it. It's not too difficult for her to set and she uses it all the time now.","nickname":"Natosha","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":42,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"558","_score":1,"_source":{"id":558,"title":"adssad","detail":"asdasd","nickname":"vinod","customer_id":12189,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-07-16 08:53:07","store_id":1,"stores":[0,1],"product_id":1482,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"187","_score":1,"_source":{"id":187,"title":"I literally wear this everywhere","detail":"I literally wear this everywhere even out to dinner!","nickname":"Kathrine","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1049,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"564","_score":1,"_source":{"id":564,"title":"das","detail":"asd","nickname":"Gordan","customer_id":1652,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-07-17 13:55:52","store_id":1,"stores":[0,1],"product_id":1488,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"185","_score":1,"_source":{"id":185,"title":"Rides up during workouts","detail":"Rides up a bit during workouts but otherwise it's pretty comfy! I like the hood.","nickname":"Gala","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1049,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"567","_score":1,"_source":{"id":567,"title":"sdsd","detail":"sdsds","nickname":"sdsd","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-07-21 07:57:42","store_id":1,"stores":[0,1],"product_id":1485,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"204","_score":1,"_source":{"id":204,"title":"Pocket too small for mp3","detail":"The mp3 pocket barely fits my device. I was hoping for a slightly larger pocket.","nickname":"Rolande","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1225,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"217","_score":1,"_source":{"id":217,"title":"REALLY lightweight.","detail":"OK this jacket is REALLY lightweight. But if it's really cold, you have to wear it with baselayers or you'll freeze. It's a good buy, but be prepared!","nickname":"Illa","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1385,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"215","_score":1,"_source":{"id":215,"title":"This is REALLY comfortable!","detail":"This is REALLY comfortable! It's a little too bulky to run or bike in, but for cold-weather hikes it's awesome.","nickname":"Nadene","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1289,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"212","_score":1,"_source":{"id":212,"title":"Fleece inside, sweater outside","detail":"I love wearing fleece, but I hate how it pills and picks up fluff and cat hair. This hoodie is perfect, because it's a fleece on the inside and a sweater on the outside. I wear it around the house all the time in the winter.","nickname":"Anamaria","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1273,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"611","_score":1,"_source":{"id":611,"title":"Test","detail":"Test","nickname":"Test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-09-02 12:41:40","store_id":1,"stores":[0,1],"product_id":1754,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"612","_score":1,"_source":{"id":612,"title":"Test","detail":"Test","nickname":"Test","review_entity":"product","review_type":3,"review_status":1,"created_at":"2019-09-02 12:43:36","store_id":1,"stores":[0,1],"product_id":1754,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"203","_score":1,"_source":{"id":203,"title":"Ultra comfy","detail":"This is my go-to jacket when I'm running in the morning. It keeps me warm and is ultra comfy.","nickname":"Sadye","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1225,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"229","_score":1,"_source":{"id":229,"title":"Overheated","detail":"I agree with that other reviewer. I get very overheated while wearing this jacket while shoveling snow. ","nickname":"Venetta","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1353,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"192","_score":1,"_source":{"id":192,"title":"I wear it to class","detail":"I usually just wear it to class but it's definitely comfortable and light enough that you could work out in it.","nickname":"Temeka","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1081,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"191","_score":1,"_source":{"id":191,"title":"The fabric stains easily","detail":"The fabric stains easily but otherwise I'm a big fan. I don't usually like to wear pullovers but the zipper makes it easy to get on and off.","nickname":"Elly","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1081,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"228","_score":1,"_source":{"id":228,"title":"Rain proof?","detail":"I don't know if this jacket would be good for a whole day outside in the snow. It says waterproof but mine got pretty soaked one day when it was raining. ","nickname":"Janna","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1353,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"214","_score":1,"_source":{"id":214,"title":"Super warm.","detail":"Super warm. My mom bought this for me for when I have to go watch my stupid brother play middle school football in 30 degree weather.","nickname":"Cara","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1289,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"194","_score":1,"_source":{"id":194,"title":"Needs long sleeves please","detail":"The fleece fabric is really nice, but I hate the short-sleeve design. Can you please make this with long sleeves? It'll keep me warmer!","nickname":"Louisa","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1097,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"205","_score":1,"_source":{"id":205,"title":"Fitted, awesome","detail":"Can I please wear this every day?! Would that be weird? It's fitted, which is awesome because I hate frumpy sweatshirts. And the fleece is a dream!","nickname":"Elvina","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1241,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"213","_score":1,"_source":{"id":213,"title":"Great for hiking and camping","detail":"Great hoodie for hiking and camping in the fall. I really wish the pockets were bigger, though, I can't get my hands in them when I'm wearing gloves.","nickname":"Tiffiny","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1273,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"609","_score":1,"_source":{"id":609,"title":"Test","detail":"Just testing bro","nickname":"Tester","review_entity":"product","review_type":3,"review_status":1,"created_at":"2019-09-02 11:49:54","store_id":1,"stores":[0,1],"product_id":1529,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"227","_score":1,"_source":{"id":227,"title":"Everyone loves this jacket on me","detail":"I got this jacket for tennis practice since its in my schools color and everyone on the team loves it!!","nickname":"Kristyn","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1337,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"252","_score":1,"_source":{"id":252,"title":"Cute.","detail":"Cute.","nickname":"Latarsha","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1577,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"197","_score":1,"_source":{"id":197,"title":"Kept me warm","detail":"So I borrowed this from my mom and I have to say It's not my style but I was super cold and it did the job. ","nickname":"Jeanelle","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:45","store_id":1,"stores":[0,1],"product_id":1113,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"630","_score":1,"_source":{"id":630,"title":"very cool","detail":"fit me","nickname":"anucha","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-09-10 07:26:31","store_id":1,"stores":[0,1],"product_id":1513,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"625","_score":1,"_source":{"id":625,"title":"fdaskljfklj","detail":"kjklfjaklsjdf","nickname":"gasd","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-09-04 17:28:21","store_id":1,"stores":[0,1],"product_id":1545,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"628","_score":1,"_source":{"id":628,"title":"dfgfgdf fdgdfg fdgh dfghf ","detail":"dfhdfh fdghdhdfh","nickname":"fghh","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-09-06 14:37:32","store_id":1,"stores":[0,1],"product_id":1658,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"614","_score":1,"_source":{"id":614,"title":"Test","detail":"Test","nickname":"Test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-09-02 12:43:48","store_id":1,"stores":[0,1],"product_id":1754,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"616","_score":1,"_source":{"id":616,"title":"Test","detail":"Test","nickname":"Test","review_entity":"product","review_type":3,"review_status":1,"created_at":"2019-09-02 12:46:04","store_id":1,"stores":[0,1],"product_id":1769,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"622","_score":1,"_source":{"id":622,"title":"test","detail":"test","nickname":"test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-09-03 07:44:13","store_id":1,"stores":[0,1],"product_id":994,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"613","_score":1,"_source":{"id":613,"title":"Test","detail":"Test","nickname":"Test","review_entity":"product","review_type":3,"review_status":3,"created_at":"2019-09-02 12:43:41","store_id":1,"stores":[0,1],"product_id":1754,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"621","_score":1,"_source":{"id":621,"title":"Good","detail":"Good product","nickname":"Me","review_entity":"product","review_type":3,"review_status":1,"created_at":"2019-09-03 07:39:00","store_id":1,"stores":[0,1],"product_id":994,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"247","_score":1,"_source":{"id":247,"title":"I bought these for yoga","detail":"I bought these for yoga but they make better pajama bottoms. I like a tighter fit for yoga.","nickname":"Lue","review_entity":"product","review_type":3,"review_status":1,"created_at":"2017-11-06 12:17:46","store_id":1,"stores":[0,1],"product_id":1852,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"617","_score":1,"_source":{"id":617,"title":"Test","detail":"Test","nickname":"Test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-09-02 12:47:39","store_id":1,"stores":[0,1],"product_id":1769,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"595","_score":1,"_source":{"id":595,"title":"ert","detail":"er","nickname":"Test","review_entity":"product","review_type":3,"review_status":2,"created_at":"2019-08-14 05:58:10","store_id":1,"stores":[0,1],"product_id":2030,"tsk":1568838041111}} +{"_index":"vue_storefront_catalog_review_1568838132","_type":"_doc","_id":"635","_score":1,"_source":{"id":635,"title":"Delectus ea adipisi","detail":"Corporis omnis ex id","nickname":"Reprehenderit venia","customer_id":13077,"review_entity":"product","review_type":1,"review_status":2,"created_at":"2019-09-16 12:16:28","store_id":1,"stores":[0,1],"product_id":1513,"tsk":1568838041111}} diff --git a/var/catalog_taxrule.json b/var/catalog_taxrule.json new file mode 100644 index 00000000..86351167 --- /dev/null +++ b/var/catalog_taxrule.json @@ -0,0 +1 @@ +{"_index":"vue_storefront_catalog_taxrule_1568838132","_type":"_doc","_id":"2","_score":1,"_source":{"id":2,"code":"General Taxes","priority":0,"position":0,"customer_tax_class_ids":[3],"product_tax_class_ids":[2],"tax_rate_ids":[6,5,7,4],"calculate_subtotal":false,"rates":[{"tax_region_id":0,"code":"VAT23","rate":23,"id":4,"tax_country_id":"US","titles":[],"tax_postcode":"*"},{"tax_region_id":0,"code":"VAT23-DE","rate":23,"id":6,"tax_country_id":"DE","titles":[],"tax_postcode":"*"},{"tax_region_id":0,"code":"VAT23-PL","rate":23,"id":7,"tax_country_id":"PL","titles":[],"tax_postcode":"*"},{"tax_region_id":0,"code":"VAT23-IT","rate":23,"id":5,"tax_country_id":"IT","titles":[],"tax_postcode":"*"}],"tsk":1568838056364}} diff --git a/yarn.lock b/yarn.lock index c10da43d..13ceb224 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5,14 +5,12 @@ "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d" - integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw== dependencies: "@babel/highlight" "^7.0.0" "@babel/core@^7.1.0": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.5.5.tgz#17b2686ef0d6bc58f963dddd68ab669755582c30" - integrity sha512-i4qoSr2KTtce0DmkuuQBV4AuQgGPUcPXMr9L5MyYAtk06z068lQ10a4O009fe5OB/DfNV+h+qqT7ddNV8UnRjg== dependencies: "@babel/code-frame" "^7.5.5" "@babel/generator" "^7.5.5" @@ -32,7 +30,6 @@ "@babel/generator@^7.4.0", "@babel/generator@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.5.5.tgz#873a7f936a3c89491b43536d12245b626664e3cf" - integrity sha512-ETI/4vyTSxTzGnU2c49XHv2zhExkv9JHLTwDAFz85kmcwuShvYG2H08FwgIguQf4JC75CBnXAUM5PqeF4fj0nQ== dependencies: "@babel/types" "^7.5.5" jsesc "^2.5.1" @@ -43,7 +40,6 @@ "@babel/helper-function-name@^7.1.0": version "7.1.0" resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53" - integrity sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw== dependencies: "@babel/helper-get-function-arity" "^7.0.0" "@babel/template" "^7.1.0" @@ -52,26 +48,22 @@ "@babel/helper-get-function-arity@^7.0.0": version "7.0.0" resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3" - integrity sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ== dependencies: "@babel/types" "^7.0.0" "@babel/helper-plugin-utils@^7.0.0": version "7.0.0" resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" - integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA== "@babel/helper-split-export-declaration@^7.4.4": version "7.4.4" resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677" - integrity sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q== dependencies: "@babel/types" "^7.4.4" "@babel/helpers@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.5.5.tgz#63908d2a73942229d1e6685bc2a0e730dde3b75e" - integrity sha512-nRq2BUhxZFnfEn/ciJuhklHvFOqjJUD5wpx+1bxUF2axL9C+v4DE/dmp5sT2dKnpOs4orZWzpAZqlCy8QqE/7g== dependencies: "@babel/template" "^7.4.4" "@babel/traverse" "^7.5.5" @@ -80,7 +72,6 @@ "@babel/highlight@^7.0.0": version "7.5.0" resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.5.0.tgz#56d11312bd9248fa619591d02472be6e8cb32540" - integrity sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ== dependencies: chalk "^2.0.0" esutils "^2.0.2" @@ -89,19 +80,16 @@ "@babel/parser@^7.1.0", "@babel/parser@^7.4.3", "@babel/parser@^7.4.4", "@babel/parser@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.5.5.tgz#02f077ac8817d3df4a832ef59de67565e71cca4b" - integrity sha512-E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g== "@babel/plugin-syntax-object-rest-spread@^7.0.0": version "7.2.0" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e" - integrity sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/template@^7.1.0", "@babel/template@^7.4.0", "@babel/template@^7.4.4": version "7.4.4" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.4.4.tgz#f4b88d1225689a08f5bc3a17483545be9e4ed237" - integrity sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw== dependencies: "@babel/code-frame" "^7.0.0" "@babel/parser" "^7.4.4" @@ -110,7 +98,6 @@ "@babel/traverse@^7.1.0", "@babel/traverse@^7.4.3", "@babel/traverse@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.5.5.tgz#f664f8f368ed32988cd648da9f72d5ca70f165bb" - integrity sha512-MqB0782whsfffYfSjH4TM+LMjrJnhCNEDMDIjeTpl+ASaUvxcjoiVCo/sM1GhS1pHOXYfWVCYneLjMckuUxDaQ== dependencies: "@babel/code-frame" "^7.5.5" "@babel/generator" "^7.5.5" @@ -125,7 +112,6 @@ "@babel/types@^7.0.0", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.4.4", "@babel/types@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.5.5.tgz#97b9f728e182785909aa4ab56264f090a028d18a" - integrity sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw== dependencies: esutils "^2.0.2" lodash "^4.17.13" @@ -134,15 +120,13 @@ "@cnakazawa/watch@^1.0.3": version "1.0.3" resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef" - integrity sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA== dependencies: exec-sh "^0.3.2" minimist "^1.2.0" -"@elastic/elasticsearch@5.6.*": - version "5.6.20" - resolved "https://registry.yarnpkg.com/@elastic/elasticsearch/-/elasticsearch-5.6.20.tgz#990354700c3e3fbdae6cb1c62c2ba14b631af8dc" - integrity sha512-dOybHGWMo6J/rx/ad9IbROKYq5aQIOd0RrickbqrIU7pjg0J3qSIL4SN027jz1vdrtOcap7yovA+HUplrEXOog== +"@elastic/elasticsearch@^7.3.0": + version "7.3.0" + resolved "https://registry.yarnpkg.com/@elastic/elasticsearch/-/elasticsearch-7.3.0.tgz#d62508cc03e91dd0676914a50af6500b45bfb199" dependencies: debug "^4.1.1" decompress-response "^4.2.0" @@ -154,7 +138,6 @@ "@google-cloud/common@^2.0.0": version "2.0.4" resolved "https://registry.yarnpkg.com/@google-cloud/common/-/common-2.0.4.tgz#2b2001783e94fe903484f2673a2ff79e0685da81" - integrity sha512-Q2QN2KL+6w8Idl2mAI01Q72ZizJdQ+aPJUYQ+COwnUR7njskjdtHHU/Jh14ilNIzOMw+OIdIF4ebwOdsqh23QQ== dependencies: "@google-cloud/projectify" "^1.0.0" "@google-cloud/promisify" "^1.0.0" @@ -170,7 +153,6 @@ "@google-cloud/paginator@^1.0.0": version "1.0.2" resolved "https://registry.yarnpkg.com/@google-cloud/paginator/-/paginator-1.0.2.tgz#4d4371d7e3cb35ad00180f724d42c317dbe15b52" - integrity sha512-mUqsRAJ/OT/Zo/Qh2v+kEeWsEgKZtK4vs2skSiVeudPLwjLSVng+fYZYtLK4kx05OSnm16MqurcPqW14g1/TgQ== dependencies: arrify "^2.0.0" extend "^3.0.1" @@ -180,17 +162,14 @@ "@google-cloud/projectify@^1.0.0": version "1.0.1" resolved "https://registry.yarnpkg.com/@google-cloud/projectify/-/projectify-1.0.1.tgz#f654c2ea9de923294ec814ff07c42891abf2d143" - integrity sha512-xknDOmsMgOYHksKc1GPbwDLsdej8aRNIA17SlSZgQdyrcC0lx0OGo4VZgYfwoEU1YS8oUxF9Y+6EzDOb0eB7Xg== "@google-cloud/promisify@^1.0.0": version "1.0.2" resolved "https://registry.yarnpkg.com/@google-cloud/promisify/-/promisify-1.0.2.tgz#e581aa79ff71fb6074acc1cc59e3d81bf84ce07b" - integrity sha512-7WfV4R/3YV5T30WRZW0lqmvZy9hE2/p9MvpI34WuKa2Wz62mLu5XplGTFEMK6uTbJCLWUxTcZ4J4IyClKucE5g== "@google-cloud/storage@^3.0.3": version "3.0.3" resolved "https://registry.yarnpkg.com/@google-cloud/storage/-/storage-3.0.3.tgz#985b17043c6b8840c4bbc9b9e6e4ae133be61c3f" - integrity sha512-62N6qRCnY9zi5bK1O+IX/wQEU8NL2D4Tuo3DrrgY5Fk5n8lHlTLJLHZi730k/v2Vr1p1+fG0trfB8eNIUjkW/A== dependencies: "@google-cloud/common" "^2.0.0" "@google-cloud/paginator" "^1.0.0" @@ -217,7 +196,6 @@ "@jest/console@^24.7.1": version "24.7.1" resolved "https://registry.yarnpkg.com/@jest/console/-/console-24.7.1.tgz#32a9e42535a97aedfe037e725bd67e954b459545" - integrity sha512-iNhtIy2M8bXlAOULWVTUxmnelTLFneTNEkHCgPmgd+zNwy9zVddJ6oS5rZ9iwoscNdT5mMwUd0C51v/fSlzItg== dependencies: "@jest/source-map" "^24.3.0" chalk "^2.0.1" @@ -226,7 +204,6 @@ "@jest/core@^24.8.0": version "24.8.0" resolved "https://registry.yarnpkg.com/@jest/core/-/core-24.8.0.tgz#fbbdcd42a41d0d39cddbc9f520c8bab0c33eed5b" - integrity sha512-R9rhAJwCBQzaRnrRgAdVfnglUuATXdwTRsYqs6NMdVcAl5euG8LtWDe+fVkN27YfKVBW61IojVsXKaOmSnqd/A== dependencies: "@jest/console" "^24.7.1" "@jest/reporters" "^24.8.0" @@ -259,7 +236,6 @@ "@jest/environment@^24.8.0": version "24.8.0" resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-24.8.0.tgz#0342261383c776bdd652168f68065ef144af0eac" - integrity sha512-vlGt2HLg7qM+vtBrSkjDxk9K0YtRBi7HfRFaDxoRtyi+DyVChzhF20duvpdAnKVBV6W5tym8jm0U9EfXbDk1tw== dependencies: "@jest/fake-timers" "^24.8.0" "@jest/transform" "^24.8.0" @@ -269,7 +245,6 @@ "@jest/fake-timers@^24.8.0": version "24.8.0" resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-24.8.0.tgz#2e5b80a4f78f284bcb4bd5714b8e10dd36a8d3d1" - integrity sha512-2M4d5MufVXwi6VzZhJ9f5S/wU4ud2ck0kxPof1Iz3zWx6Y+V2eJrES9jEktB6O3o/oEyk+il/uNu9PvASjWXQw== dependencies: "@jest/types" "^24.8.0" jest-message-util "^24.8.0" @@ -278,7 +253,6 @@ "@jest/reporters@^24.8.0": version "24.8.0" resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-24.8.0.tgz#075169cd029bddec54b8f2c0fc489fd0b9e05729" - integrity sha512-eZ9TyUYpyIIXfYCrw0UHUWUvE35vx5I92HGMgS93Pv7du+GHIzl+/vh8Qj9MCWFK/4TqyttVBPakWMOfZRIfxw== dependencies: "@jest/environment" "^24.8.0" "@jest/test-result" "^24.8.0" @@ -305,7 +279,6 @@ "@jest/source-map@^24.3.0": version "24.3.0" resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-24.3.0.tgz#563be3aa4d224caf65ff77edc95cd1ca4da67f28" - integrity sha512-zALZt1t2ou8le/crCeeiRYzvdnTzaIlpOWaet45lNSqNJUnXbppUUFR4ZUAlzgDmKee4Q5P/tKXypI1RiHwgag== dependencies: callsites "^3.0.0" graceful-fs "^4.1.15" @@ -314,7 +287,6 @@ "@jest/test-result@^24.8.0": version "24.8.0" resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-24.8.0.tgz#7675d0aaf9d2484caa65e048d9b467d160f8e9d3" - integrity sha512-+YdLlxwizlfqkFDh7Mc7ONPQAhA4YylU1s529vVM1rsf67vGZH/2GGm5uO8QzPeVyaVMobCQ7FTxl38QrKRlng== dependencies: "@jest/console" "^24.7.1" "@jest/types" "^24.8.0" @@ -323,7 +295,6 @@ "@jest/test-sequencer@^24.8.0": version "24.8.0" resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-24.8.0.tgz#2f993bcf6ef5eb4e65e8233a95a3320248cf994b" - integrity sha512-OzL/2yHyPdCHXEzhoBuq37CE99nkme15eHkAzXRVqthreWZamEMA0WoetwstsQBCXABhczpK03JNbc4L01vvLg== dependencies: "@jest/test-result" "^24.8.0" jest-haste-map "^24.8.0" @@ -333,7 +304,6 @@ "@jest/transform@^24.8.0": version "24.8.0" resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-24.8.0.tgz#628fb99dce4f9d254c6fd9341e3eea262e06fef5" - integrity sha512-xBMfFUP7TortCs0O+Xtez2W7Zu1PLH9bvJgtraN1CDST6LBM/eTOZ9SfwS/lvV8yOfcDpFmwf9bq5cYbXvqsvA== dependencies: "@babel/core" "^7.1.0" "@jest/types" "^24.8.0" @@ -354,7 +324,6 @@ "@jest/types@^24.8.0": version "24.8.0" resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.8.0.tgz#f31e25948c58f0abd8c845ae26fcea1491dea7ad" - integrity sha512-g17UxVr2YfBtaMUxn9u/4+siG1ptg9IGYAYwvpwn61nBg779RXnjE/m7CxYcIzEt0AbHZZAHSEZNhkE2WxURVg== dependencies: "@types/istanbul-lib-coverage" "^2.0.0" "@types/istanbul-reports" "^1.1.1" @@ -363,12 +332,10 @@ "@types/babel-types@*", "@types/babel-types@^7.0.0": version "7.0.7" resolved "https://registry.yarnpkg.com/@types/babel-types/-/babel-types-7.0.7.tgz#667eb1640e8039436028055737d2b9986ee336e3" - integrity sha512-dBtBbrc+qTHy1WdfHYjBwRln4+LWqASWakLHsWHR2NWHIFkv4W3O070IGoGLEBrJBvct3r0L1BUPuvURi7kYUQ== "@types/babel__core@^7.1.0": version "7.1.2" resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.2.tgz#608c74f55928033fce18b99b213c16be4b3d114f" - integrity sha512-cfCCrFmiGY/yq0NuKNxIQvZFy9kY/1immpSpTngOnyIbD4+eJOG5mxphhHDv3CHL9GltO4GcKr54kGBg3RNdbg== dependencies: "@babel/parser" "^7.1.0" "@babel/types" "^7.0.0" @@ -379,14 +346,12 @@ "@types/babel__generator@*": version "7.0.2" resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.0.2.tgz#d2112a6b21fad600d7674274293c85dce0cb47fc" - integrity sha512-NHcOfab3Zw4q5sEE2COkpfXjoE7o+PmqD9DQW4koUT3roNxwziUdXGnRndMat/LJNUtePwn1TlP4do3uoe3KZQ== dependencies: "@babel/types" "^7.0.0" "@types/babel__template@*": version "7.0.2" resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.0.2.tgz#4ff63d6b52eddac1de7b975a5223ed32ecea9307" - integrity sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg== dependencies: "@babel/parser" "^7.1.0" "@babel/types" "^7.0.0" @@ -394,21 +359,18 @@ "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": version "7.0.7" resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.7.tgz#2496e9ff56196cc1429c72034e07eab6121b6f3f" - integrity sha512-CeBpmX1J8kWLcDEnI3Cl2Eo6RfbGvzUctA+CjZUhOKDFbLfcr7fc4usEqLNWetrlJd7RhAkyYe2czXop4fICpw== dependencies: "@babel/types" "^7.3.0" "@types/babylon@^6.16.2": version "6.16.5" resolved "https://registry.yarnpkg.com/@types/babylon/-/babylon-6.16.5.tgz#1c5641db69eb8cdf378edd25b4be7754beeb48b4" - integrity sha512-xH2e58elpj1X4ynnKp9qSnWlsRTIs6n3tgLGNfwAGHwePw0mulHQllV34n0T25uYSu1k0hRKkWXF890B1yS47w== dependencies: "@types/babel-types" "*" "@types/body-parser@*", "@types/body-parser@^1.17.0": version "1.17.0" resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.17.0.tgz#9f5c9d9bd04bb54be32d5eb9fc0d8c974e6cf58c" - integrity sha512-a2+YeUjPkztKJu5aIF2yArYFQQp8d51wZ7DavSHjFuY1mqVgidGyzEQ41JIVNy82fXj8yPgy2vJmfIywgESW6w== dependencies: "@types/connect" "*" "@types/node" "*" @@ -416,29 +378,24 @@ "@types/caseless@*": version "0.12.2" resolved "https://registry.yarnpkg.com/@types/caseless/-/caseless-0.12.2.tgz#f65d3d6389e01eeb458bd54dc8f52b95a9463bc8" - integrity sha512-6ckxMjBBD8URvjB6J3NcnuAn5Pkl7t3TizAg+xdlzzQGSPSmBcXf8KoIH0ua/i+tio+ZRUHEXp0HEmvaR4kt0w== "@types/config@^0.0.34": version "0.0.34" resolved "https://registry.yarnpkg.com/@types/config/-/config-0.0.34.tgz#123f91bdb5afdd702294b9de9ca04d9ea11137b0" - integrity sha512-jWi9DXx77hnzN4kHCNEvP/kab+nchRLTg9yjXYxjTcMBkuc5iBb3QuwJ4sPrb+nzy1GQjrfyfMqZOdR4i7opRQ== "@types/connect@*": version "3.4.32" resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.32.tgz#aa0e9616b9435ccad02bc52b5b454ffc2c70ba28" - integrity sha512-4r8qa0quOvh7lGD0pre62CAb1oni1OO6ecJLGCezTmhQ8Fz50Arx9RUszryR8KlgK6avuSXvviL6yWyViQABOg== dependencies: "@types/node" "*" "@types/eslint-visitor-keys@^1.0.0": version "1.0.0" resolved "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d" - integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag== "@types/express-serve-static-core@*": version "4.16.7" resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.16.7.tgz#50ba6f8a691c08a3dd9fa7fba25ef3133d298049" - integrity sha512-847KvL8Q1y3TtFLRTXcVakErLJQgdpFSaq+k043xefz9raEf0C7HalpSY7OW5PyjCnY8P7bPW5t/Co9qqp+USg== dependencies: "@types/node" "*" "@types/range-parser" "*" @@ -446,7 +403,6 @@ "@types/express@^4.16.1": version "4.17.0" resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.0.tgz#49eaedb209582a86f12ed9b725160f12d04ef287" - integrity sha512-CjaMu57cjgjuZbh9DpkloeGxV45CnMGlVd+XpG7Gm9QgVrd7KFq+X4HY0vM+2v0bczS48Wg7bvnMY5TN+Xmcfw== dependencies: "@types/body-parser" "*" "@types/express-serve-static-core" "*" @@ -455,24 +411,20 @@ "@types/graphql@^0.9.0": version "0.9.4" resolved "https://registry.yarnpkg.com/@types/graphql/-/graphql-0.9.4.tgz#cdeb6bcbef9b6c584374b81aa7f48ecf3da404fa" - integrity sha512-ob2dps4itT/Le5DbxjssBXtBnloDIRUbkgtAvaB42mJ8pVIWMRuURD9WjnhaEGZ4Ql/EryXMQWeU8Y0EU73QLw== "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": version "2.0.1" resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz#42995b446db9a48a11a07ec083499a860e9138ff" - integrity sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg== "@types/istanbul-lib-report@*": version "1.1.1" resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#e5471e7fa33c61358dd38426189c037a58433b8c" - integrity sha512-3BUTyMzbZa2DtDI2BkERNC6jJw2Mr2Y0oGI7mRxYNBPxppbtEK1F66u3bKwU2g+wxwWI7PAoRpJnOY1grJqzHg== dependencies: "@types/istanbul-lib-coverage" "*" "@types/istanbul-reports@^1.1.1": version "1.1.1" resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz#7a8cbf6a406f36c8add871625b278eaf0b0d255a" - integrity sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA== dependencies: "@types/istanbul-lib-coverage" "*" "@types/istanbul-lib-report" "*" @@ -480,44 +432,36 @@ "@types/jest-diff@*": version "20.0.1" resolved "https://registry.yarnpkg.com/@types/jest-diff/-/jest-diff-20.0.1.tgz#35cc15b9c4f30a18ef21852e255fdb02f6d59b89" - integrity sha512-yALhelO3i0hqZwhjtcr6dYyaLoCHbAMshwtj6cGxTvHZAKXHsYGdff6E8EPw3xLKY0ELUTQ69Q1rQiJENnccMA== "@types/jest@^24.0.11": version "24.0.16" resolved "https://registry.yarnpkg.com/@types/jest/-/jest-24.0.16.tgz#8d3e406ec0f0dc1688d6711af3062ff9bd428066" - integrity sha512-JrAiyV+PPGKZzw6uxbI761cHZ0G7QMOHXPhtSpcl08rZH6CswXaaejckn3goFKmF7M3nzEoJ0lwYCbqLMmjziQ== dependencies: "@types/jest-diff" "*" "@types/json-schema@^7.0.3": version "7.0.3" resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.3.tgz#bdfd69d61e464dcc81b25159c270d75a73c1a636" - integrity sha512-Il2DtDVRGDcqjDtE+rF8iqg1CArehSK84HZJCT7AMITlyXRBpuPhqGLDQMowraqqu1coEaimg4ZOqggt6L6L+A== "@types/mime@*": version "2.0.1" resolved "https://registry.yarnpkg.com/@types/mime/-/mime-2.0.1.tgz#dc488842312a7f075149312905b5e3c0b054c79d" - integrity sha512-FwI9gX75FgVBJ7ywgnq/P7tw+/o1GUbtP0KzbtusLigAOgIgNISRK0ZPl4qertvXSIE8YbsVJueQ90cDt9YYyw== "@types/node@*": version "12.6.3" resolved "https://registry.yarnpkg.com/@types/node/-/node-12.6.3.tgz#44d507c5634f85e7164707ca36bba21b5213d487" - integrity sha512-7TEYTQT1/6PP53NftXXabIZDaZfaoBdeBm8Md/i7zsWRoBe0YwOXguyK8vhHs8ehgB/w9U4K/6EWuTyp0W6nIA== "@types/node@^11.13.4": version "11.13.17" resolved "https://registry.yarnpkg.com/@types/node/-/node-11.13.17.tgz#2e7efbfe5253561087812571e5e6a1e4b1d6295b" - integrity sha512-7W3kSMa8diVH6s24a8Qrmvwu+vG3ahOC/flMHFdWSdnPYoQI0yPO84h5zOWYXAha2Npn3Pw3SSuQSwBUfaniyQ== "@types/range-parser@*": version "1.2.3" resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.3.tgz#7ee330ba7caafb98090bece86a5ee44115904c2c" - integrity sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA== "@types/request@^2.48.1": version "2.48.2" resolved "https://registry.yarnpkg.com/@types/request/-/request-2.48.2.tgz#936374cbe1179d7ed529fc02543deb4597450fed" - integrity sha512-gP+PSFXAXMrd5PcD7SqHeUjdGshAI8vKQ3+AvpQr3ht9iQea+59LOKvKITcQI+Lg+1EIkDP6AFSBUJPWG8GDyA== dependencies: "@types/caseless" "*" "@types/node" "*" @@ -527,7 +471,6 @@ "@types/serve-static@*": version "1.13.2" resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.2.tgz#f5ac4d7a6420a99a6a45af4719f4dcd8cd907a48" - integrity sha512-/BZ4QRLpH/bNYgZgwhKEh+5AsboDBcUdlBYgzoLX0fpj3Y2gp6EApyOlM3bK53wQS/OE1SrdSYBAbux2D1528Q== dependencies: "@types/express-serve-static-core" "*" "@types/mime" "*" @@ -535,22 +478,18 @@ "@types/stack-utils@^1.0.1": version "1.0.1" resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" - integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw== "@types/tough-cookie@*": version "2.3.5" resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-2.3.5.tgz#9da44ed75571999b65c37b60c9b2b88db54c585d" - integrity sha512-SCcK7mvGi3+ZNz833RRjFIxrn4gI1PPR3NtuIS+6vMkvmsGjosqTJwRt5bAEFLRz+wtJMWv8+uOnZf2hi2QXTg== "@types/yargs@^12.0.2", "@types/yargs@^12.0.9": version "12.0.12" resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-12.0.12.tgz#45dd1d0638e8c8f153e87d296907659296873916" - integrity sha512-SOhuU4wNBxhhTHxYaiG5NY4HBhDIDnJF60GU+2LqHAdKKer86//e4yg69aENCtQ04n0ovz+tq2YPME5t5yp4pw== "@typescript-eslint/eslint-plugin@^1.7.1-alpha.17": version "1.13.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-1.13.0.tgz#22fed9b16ddfeb402fd7bcde56307820f6ebc49f" - integrity sha512-WQHCozMnuNADiqMtsNzp96FNox5sOVpU8Xt4meaT4em8lOG1SrOv92/mUbEHQVh90sldKSfcOc/I0FOb/14G1g== dependencies: "@typescript-eslint/experimental-utils" "1.13.0" eslint-utils "^1.3.1" @@ -561,7 +500,6 @@ "@typescript-eslint/experimental-utils@1.13.0": version "1.13.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-1.13.0.tgz#b08c60d780c0067de2fb44b04b432f540138301e" - integrity sha512-zmpS6SyqG4ZF64ffaJ6uah6tWWWgZ8m+c54XXgwFtUv0jNz8aJAVx8chMCvnk7yl6xwn8d+d96+tWp7fXzTuDg== dependencies: "@types/json-schema" "^7.0.3" "@typescript-eslint/typescript-estree" "1.13.0" @@ -570,7 +508,6 @@ "@typescript-eslint/parser@^1.7.1-alpha.17": version "1.13.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-1.13.0.tgz#61ac7811ea52791c47dc9fd4dd4a184fae9ac355" - integrity sha512-ITMBs52PCPgLb2nGPoeT4iU3HdQZHcPaZVw+7CsFagRJHUhyeTgorEwHXhFf3e7Evzi8oujKNpHc8TONth8AdQ== dependencies: "@types/eslint-visitor-keys" "^1.0.0" "@typescript-eslint/experimental-utils" "1.13.0" @@ -580,15 +517,13 @@ "@typescript-eslint/typescript-estree@1.13.0": version "1.13.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-1.13.0.tgz#8140f17d0f60c03619798f1d628b8434913dc32e" - integrity sha512-b5rCmd2e6DCC6tCTN9GSUAuxdYwCM/k/2wdjHGrIRGPSJotWMCe/dGpi66u42bhuh8q3QBzqM4TMA1GUUCJvdw== dependencies: lodash.unescape "4.0.1" semver "5.5.0" -JSONStream@^1.2.0: +JSONStream@^1.3.5: version "1.3.5" resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" - integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== dependencies: jsonparse "^1.2.0" through ">=2.2.7 <3" @@ -596,24 +531,20 @@ JSONStream@^1.2.0: abab@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.0.tgz#aba0ab4c5eee2d4c79d3487d85450fb2376ebb0f" - integrity sha512-sY5AXXVZv4Y1VACTtR11UJCPHHudgY5i26Qj5TypE6DKlIApbwb5uqhXcJ5UUGbvZNRh7EeIoW+LrJumBsKp7w== abbrev@1: version "1.1.1" resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" - integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== abort-controller@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" - integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== dependencies: event-target-shim "^5.0.0" accepts@~1.3.5, accepts@~1.3.7: version "1.3.7" resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" - integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== dependencies: mime-types "~2.1.24" negotiator "0.6.2" @@ -621,14 +552,12 @@ accepts@~1.3.5, accepts@~1.3.7: acorn-globals@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" - integrity sha1-/YJw9x+7SZawBPqIDuXUZXOnMb8= dependencies: acorn "^4.0.4" acorn-globals@^4.1.0: version "4.3.2" resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.2.tgz#4e2c2313a597fd589720395f6354b41cd5ec8006" - integrity sha512-BbzvZhVtZP+Bs1J1HcwrQe8ycfO0wStkSGxuul3He3GkHOIZ6eTqOkPuw9IP1X3+IkOo4wiJmwkobzXYz4wewQ== dependencies: acorn "^6.0.1" acorn-walk "^6.0.1" @@ -636,56 +565,46 @@ acorn-globals@^4.1.0: acorn-jsx@^5.0.0: version "5.0.1" resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.1.tgz#32a064fd925429216a09b141102bfdd185fae40e" - integrity sha512-HJ7CfNHrfJLlNTzIEUTj43LNWGkqpRLxm3YjAlcD0ACydk9XynzYsCBHxut+iqt+1aBXkx9UP/w/ZqMr13XIzg== acorn-walk@^6.0.1: version "6.2.0" resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c" - integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA== acorn@^3.1.0: version "3.3.0" resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" - integrity sha1-ReN/s56No/JbruP/U2niu18iAXo= acorn@^4.0.4, acorn@~4.0.2: version "4.0.13" resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" - integrity sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c= acorn@^5.5.3: version "5.7.3" resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" - integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== acorn@^6.0.1, acorn@^6.0.7: version "6.2.1" resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.2.1.tgz#3ed8422d6dec09e6121cc7a843ca86a330a86b51" - integrity sha512-JD0xT5FCRDNyjDda3Lrg/IxFscp9q4tiYtxE1/nOzlKCk7hIRuYjhq1kCNkbPjMRMZuFq20HNQn1I9k8Oj0E+Q== agent-base@^4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.3.0.tgz#8165f01c436009bccad0b1d122f05ed770efc6ee" - integrity sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg== dependencies: es6-promisify "^5.0.0" agentkeepalive@^3.3.0, agentkeepalive@^3.4.1: version "3.5.2" resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-3.5.2.tgz#a113924dd3fa24a0bc3b78108c450c2abee00f67" - integrity sha512-e0L/HNe6qkQ7H19kTlRRqUibEAwDK5AFk6y3PtMsuut2VAH6+Q4xZml1tNDJD7kSAyqmbG/K08K5WEJYtUrSlQ== dependencies: humanize-ms "^1.2.1" ajv-keywords@^3.4.0: version "3.4.1" resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.1.tgz#ef916e271c64ac12171fd8384eaae6b2345854da" - integrity sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ== ajv@^6.10.2, ajv@^6.4.0, ajv@^6.5.5, ajv@^6.9.1: version "6.10.2" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd52" - integrity sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw== dependencies: fast-deep-equal "^2.0.1" fast-json-stable-stringify "^2.0.0" @@ -695,7 +614,6 @@ ajv@^6.10.2, ajv@^6.4.0, ajv@^6.5.5, ajv@^6.9.1: align-text@^0.1.1, align-text@^0.1.3: version "0.1.4" resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" - integrity sha1-DNkKVhCT810KmSVsIrcGlDP60Rc= dependencies: kind-of "^3.0.2" longest "^1.0.1" @@ -704,63 +622,52 @@ align-text@^0.1.1, align-text@^0.1.3: amdefine@>=0.0.4: version "1.0.1" resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" - integrity sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU= amp-message@~0.1.1: version "0.1.2" resolved "https://registry.yarnpkg.com/amp-message/-/amp-message-0.1.2.tgz#a78f1c98995087ad36192a41298e4db49e3dfc45" - integrity sha1-p48cmJlQh602GSpBKY5NtJ49/EU= dependencies: amp "0.3.1" amp@0.3.1, amp@~0.3.1: version "0.3.1" resolved "https://registry.yarnpkg.com/amp/-/amp-0.3.1.tgz#6adf8d58a74f361e82c1fa8d389c079e139fc47d" - integrity sha1-at+NWKdPNh6CwfqNOJwHnhOfxH0= ansi-align@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" - integrity sha1-w2rsy6VjuJzrVW82kPCx2eNUf38= dependencies: string-width "^2.0.0" ansi-escapes@^3.0.0, ansi-escapes@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" - integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== ansi-regex@^2.0.0: version "2.1.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" - integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= ansi-regex@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" - integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= ansi-regex@^4.0.0, ansi-regex@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" - integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== ansi-styles@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" - integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= ansi-styles@^3.2.0, ansi-styles@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== dependencies: color-convert "^1.9.0" anymatch@^1.3.0: version "1.3.2" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" - integrity sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA== dependencies: micromatch "^2.1.5" normalize-path "^2.0.0" @@ -768,7 +675,6 @@ anymatch@^1.3.0: anymatch@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" - integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== dependencies: micromatch "^3.1.4" normalize-path "^2.1.1" @@ -776,14 +682,12 @@ anymatch@^2.0.0: apollo-cache-control@^0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/apollo-cache-control/-/apollo-cache-control-0.1.1.tgz#173d14ceb3eb9e7cb53de7eb8b61bee6159d4171" - integrity sha512-XJQs167e9u+e5ybSi51nGYr70NPBbswdvTEHtbtXbwkZ+n9t0SLPvUcoqceayOSwjK1XYOdU/EKPawNdb3rLQA== dependencies: graphql-extensions "^0.0.x" apollo-server-core@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/apollo-server-core/-/apollo-server-core-1.4.0.tgz#4faff7f110bfdd6c3f47008302ae24140f94c592" - integrity sha512-BP1Vh39krgEjkQxbjTdBURUjLHbFq1zeOChDJgaRsMxGtlhzuLWwwC6lLdPatN8jEPbeHq8Tndp9QZ3iQZOKKA== dependencies: apollo-cache-control "^0.1.0" apollo-tracing "^0.1.0" @@ -792,7 +696,6 @@ apollo-server-core@^1.4.0: apollo-server-express@^1.3.6: version "1.4.0" resolved "https://registry.yarnpkg.com/apollo-server-express/-/apollo-server-express-1.4.0.tgz#7d7c58d6d6f9892b83fe575669093bb66738b125" - integrity sha512-zkH00nxhLnJfO0HgnNPBTfZw8qI5ILaPZ5TecMCI9+Y9Ssr2b0bFr9pBRsXy9eudPhI+/O4yqegSUsnLdF/CPw== dependencies: apollo-server-core "^1.4.0" apollo-server-module-graphiql "^1.4.0" @@ -800,31 +703,26 @@ apollo-server-express@^1.3.6: apollo-server-module-graphiql@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/apollo-server-module-graphiql/-/apollo-server-module-graphiql-1.4.0.tgz#c559efa285578820709f1769bb85d3b3eed3d8ec" - integrity sha512-GmkOcb5he2x5gat+TuiTvabnBf1m4jzdecal3XbXBh/Jg+kx4hcvO3TTDFQ9CuTprtzdcVyA11iqG7iOMOt7vA== apollo-tracing@^0.1.0: version "0.1.4" resolved "https://registry.yarnpkg.com/apollo-tracing/-/apollo-tracing-0.1.4.tgz#5b8ae1b01526b160ee6e552a7f131923a9aedcc7" - integrity sha512-Uv+1nh5AsNmC3m130i2u3IqbS+nrxyVV3KYimH5QKsdPjxxIQB3JAT+jJmpeDxBel8gDVstNmCh82QSLxLSIdQ== dependencies: graphql-extensions "~0.0.9" "apparatus@>= 0.0.9": version "0.0.10" resolved "https://registry.yarnpkg.com/apparatus/-/apparatus-0.0.10.tgz#81ea756772ada77863db54ceee8202c109bdca3e" - integrity sha512-KLy/ugo33KZA7nugtQ7O0E1c8kQ52N3IvD/XgIh4w/Nr28ypfkwDfA67F1ev4N1m5D+BOk1+b2dEJDfpj/VvZg== dependencies: sylvester ">= 0.0.8" aproba@^1.0.3: version "1.2.0" resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" - integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== are-we-there-yet@~1.1.2: version "1.1.5" resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" - integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== dependencies: delegates "^1.0.0" readable-stream "^2.0.6" @@ -832,56 +730,46 @@ are-we-there-yet@~1.1.2: arg@^4.1.0: version "4.1.1" resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.1.tgz#485f8e7c390ce4c5f78257dbea80d4be11feda4c" - integrity sha512-SlmP3fEA88MBv0PypnXZ8ZfJhwmDeIE3SP71j37AiXQBXYosPV0x6uISAaHYSlSVhmHOVkomen0tbGk6Anlebw== argparse@^1.0.7: version "1.0.10" resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== dependencies: sprintf-js "~1.0.2" arr-diff@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" - integrity sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8= dependencies: arr-flatten "^1.0.1" arr-diff@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" - integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= arr-flatten@^1.0.1, arr-flatten@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" - integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== arr-union@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" - integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= array-equal@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" - integrity sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM= array-filter@~0.0.0: version "0.0.1" resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" - integrity sha1-fajPLiZijtcygDWB/SH2fKzS7uw= array-flatten@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" - integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= array-includes@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" - integrity sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0= dependencies: define-properties "^1.1.2" es-abstract "^1.7.0" @@ -889,69 +777,56 @@ array-includes@^3.0.3: array-map@~0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" - integrity sha1-iKK6tz0c97zVwbEYoAP2b2ZfpmI= array-reduce@~0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" - integrity sha1-FziZ0//Rx9k4PkR5Ul2+J4yrXys= array-unique@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" - integrity sha1-odl8yvy8JiXMcPrc6zalDFiwGlM= array-unique@^0.3.2: version "0.3.2" resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" - integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= arrify@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa" - integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== asap@~2.0.3: version "2.0.6" resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" - integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= asn1@~0.2.3: version "0.2.4" resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" - integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== dependencies: safer-buffer "~2.1.0" assert-plus@1.0.0, assert-plus@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" - integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= assign-symbols@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" - integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= astral-regex@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" - integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== async-each@^1.0.0, async-each@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" - integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== async-limiter@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" - integrity sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg== async-listener@^0.6.0: version "0.6.10" resolved "https://registry.yarnpkg.com/async-listener/-/async-listener-0.6.10.tgz#a7c97abe570ba602d782273c0de60a51e3e17cbc" - integrity sha512-gpuo6xOyF4D5DE5WvyqZdPA3NGhiT6Qf07l7DCB0wwDEsLvDIbCr6j9S5aj5Ch96dLace5tXVzWBZkxU/c5ohw== dependencies: semver "^5.3.0" shimmer "^1.1.0" @@ -959,34 +834,28 @@ async-listener@^0.6.0: async@1.5: version "1.5.2" resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" - integrity sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo= async@^2.0.1, async@^2.5, async@^2.6: version "2.6.3" resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff" - integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg== dependencies: lodash "^4.17.14" async@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/async/-/async-1.0.0.tgz#f8fc04ca3a13784ade9e1641af98578cfbd647a9" - integrity sha1-+PwEyjoTeErenhZBr5hXjPvWR6k= asynckit@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= atob@^2.1.1: version "2.1.2" resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" - integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== -aws-sdk@^2.36.0: - version "2.493.0" - resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.493.0.tgz#2526208efc0fff91529c41c1d9f5cd15cdfcc937" - integrity sha512-xLNpjiNgLZoXqwmLQ+czP3UQzeRgsutpG1KGfVUaj/3giqEElpn0wYkwhkJt4Glm9xf3jgzAdbFEDYM7u+Llxg== +aws-sdk@^2.0.4, aws-sdk@^2.528.0: + version "2.528.0" + resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.528.0.tgz#9836e619607068171844ad27ccfe0082b6a118e9" dependencies: buffer "4.9.1" events "1.1.1" @@ -1001,17 +870,14 @@ aws-sdk@^2.36.0: aws-sign2@~0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" - integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= -aws4@^1.4.1, aws4@^1.8.0: +aws4@^1.8.0: version "1.8.0" resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" - integrity sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ== babel-jest@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-24.8.0.tgz#5c15ff2b28e20b0f45df43fe6b7f2aae93dba589" - integrity sha512-+5/kaZt4I9efoXzPlZASyK/lN9qdRKmmUav9smVc0ruPQD7IsfucQ87gpOE8mn2jbDuS6M/YOW6n3v9ZoIfgnw== dependencies: "@jest/transform" "^24.8.0" "@jest/types" "^24.8.0" @@ -1024,7 +890,6 @@ babel-jest@^24.8.0: babel-plugin-istanbul@^5.1.0: version "5.2.0" resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz#df4ade83d897a92df069c4d9a25cf2671293c854" - integrity sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw== dependencies: "@babel/helper-plugin-utils" "^7.0.0" find-up "^3.0.0" @@ -1034,14 +899,12 @@ babel-plugin-istanbul@^5.1.0: babel-plugin-jest-hoist@^24.6.0: version "24.6.0" resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.6.0.tgz#f7f7f7ad150ee96d7a5e8e2c5da8319579e78019" - integrity sha512-3pKNH6hMt9SbOv0F3WVmy5CWQ4uogS3k0GY5XLyQHJ9EGpAT9XWkFd2ZiXXtkwFHdAHa5j7w7kfxSP5lAIwu7w== dependencies: "@types/babel__traverse" "^7.0.6" babel-preset-jest@^24.6.0: version "24.6.0" resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-24.6.0.tgz#66f06136eefce87797539c0d63f1769cc3915984" - integrity sha512-pdZqLEdmy1ZK5kyRUfvBb2IfTPb2BUvIJczlPspS8fWmBQslNNDBqVfh7BW5leOVJMDZKzjD8XEyABTk6gQ5yw== dependencies: "@babel/plugin-syntax-object-rest-spread" "^7.0.0" babel-plugin-jest-hoist "^24.6.0" @@ -1049,7 +912,6 @@ babel-preset-jest@^24.6.0: babel-runtime@^6.26.0, babel-runtime@^6.9.2: version "6.26.0" resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" - integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4= dependencies: core-js "^2.4.0" regenerator-runtime "^0.11.0" @@ -1057,7 +919,6 @@ babel-runtime@^6.26.0, babel-runtime@^6.9.2: babel-types@^6.26.0: version "6.26.0" resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" - integrity sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc= dependencies: babel-runtime "^6.26.0" esutils "^2.0.2" @@ -1067,22 +928,18 @@ babel-types@^6.26.0: babylon@^6.18.0: version "6.18.0" resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" - integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== balanced-match@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" - integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= base64-js@^1.0.2, base64-js@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3" - integrity sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw== base@^0.11.1: version "0.11.2" resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" - integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== dependencies: cache-base "^1.0.1" class-utils "^0.3.5" @@ -1095,31 +952,26 @@ base@^0.11.1: basic-auth@~2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-2.0.1.tgz#b998279bf47ce38344b4f3cf916d4679bbf51e3a" - integrity sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg== dependencies: safe-buffer "5.1.2" bcrypt-pbkdf@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" - integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= dependencies: tweetnacl "^0.14.3" bignumber.js@^7.0.0: version "7.2.1" resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-7.2.1.tgz#80c048759d826800807c4bfd521e50edbba57a5f" - integrity sha512-S4XzBk5sMB+Rcb/LNcpzXr57VRTxgAvaAEDAl1AwRx27j00hT84O6OkteE7u8UB3NuaaygCRrEpqox4uDOrbdQ== binary-extensions@^1.0.0: version "1.13.1" resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" - integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== bl@^1.0.0: version "1.2.2" resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.2.tgz#a160911717103c07410cef63ef51b397c025af9c" - integrity sha512-e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA== dependencies: readable-stream "^2.3.5" safe-buffer "^5.1.1" @@ -1127,17 +979,14 @@ bl@^1.0.0: blessed@^0.1.81: version "0.1.81" resolved "https://registry.yarnpkg.com/blessed/-/blessed-0.1.81.tgz#f962d687ec2c369570ae71af843256e6d0ca1129" - integrity sha1-+WLWh+wsNpVwrnGvhDJW5tDKESk= bluebird@^3.5.0: version "3.5.5" resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.5.tgz#a8d0afd73251effbbd5fe384a77d73003c17a71f" - integrity sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w== body-parser@1.19.0, body-parser@^1.12.2, body-parser@^1.17.1, body-parser@^1.18.2: version "1.19.0" resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a" - integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw== dependencies: bytes "3.1.0" content-type "~1.0.4" @@ -1153,14 +1002,12 @@ body-parser@1.19.0, body-parser@^1.12.2, body-parser@^1.17.1, body-parser@^1.18. bodybuilder@2.2.13: version "2.2.13" resolved "https://registry.yarnpkg.com/bodybuilder/-/bodybuilder-2.2.13.tgz#82ced1c2144bd9ddce97c5d89fa13f7e24c40f8e" - integrity sha512-U34iuuZCLa7xE/BSJ1i/F+P2uwOAG76CQ47jES/N1PSQM2dSoCWxXZ4Pq/B2i0othEI/o7kVKLu+3QOFFkjcMg== dependencies: lodash "^4.9.0" boxen@^1.2.1: version "1.3.0" resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" - integrity sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw== dependencies: ansi-align "^2.0.0" camelcase "^4.0.0" @@ -1173,7 +1020,6 @@ boxen@^1.2.1: brace-expansion@^1.1.7: version "1.1.11" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== dependencies: balanced-match "^1.0.0" concat-map "0.0.1" @@ -1181,7 +1027,6 @@ brace-expansion@^1.1.7: braces@^1.8.2: version "1.8.5" resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" - integrity sha1-uneWLhLf+WnWt2cR6RS3N4V79qc= dependencies: expand-range "^1.8.1" preserve "^0.2.0" @@ -1190,7 +1035,6 @@ braces@^1.8.2: braces@^2.3.1, braces@^2.3.2: version "2.3.2" resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" - integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== dependencies: arr-flatten "^1.1.0" array-unique "^0.3.2" @@ -1206,38 +1050,32 @@ braces@^2.3.1, braces@^2.3.2: browser-process-hrtime@^0.1.2: version "0.1.3" resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz#616f00faef1df7ec1b5bf9cfe2bdc3170f26c7b4" - integrity sha512-bRFnI4NnjO6cnyLmOV/7PVoDEMJChlcfN0z4s1YMBY989/SvlfMI1lgCnkFUs53e9gQF+w7qu7XdllSTiSl8Aw== browser-resolve@^1.11.3: version "1.11.3" resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" - integrity sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ== dependencies: resolve "1.1.7" bs-logger@0.x: version "0.2.6" resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" - integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== dependencies: fast-json-stable-stringify "2.x" bser@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.0.tgz#65fc784bf7f87c009b973c12db6546902fa9c7b5" - integrity sha512-8zsjWrQkkBoLK6uxASk1nJ2SKv97ltiGDo6A3wA0/yRPz+CwmEyDo0hUrhIuukG2JHpAl3bvFIixw2/3Hi0DOg== dependencies: node-int64 "^0.4.0" buffer-alloc-unsafe@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" - integrity sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg== buffer-alloc@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" - integrity sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow== dependencies: buffer-alloc-unsafe "^1.1.0" buffer-fill "^1.0.0" @@ -1245,22 +1083,22 @@ buffer-alloc@^1.2.0: buffer-equal-constant-time@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819" - integrity sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk= buffer-fill@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" - integrity sha1-+PeLdniYiO858gXNY39o5wISKyw= buffer-from@1.x, buffer-from@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" - integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== + +buffer-queue@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/buffer-queue/-/buffer-queue-1.0.0.tgz#3d253fe2f0ab70e851d728712e8cd6f914a8c002" buffer@4.9.1: version "4.9.1" resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" - integrity sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg= dependencies: base64-js "^1.0.2" ieee754 "^1.1.4" @@ -1269,17 +1107,14 @@ buffer@4.9.1: bytes@3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" - integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg= -bytes@3.1.0: +bytes@3.1.0, bytes@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" - integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== cache-base@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" - integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== dependencies: collection-visit "^1.0.0" component-emitter "^1.2.1" @@ -1294,49 +1129,40 @@ cache-base@^1.0.1: callsites@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" - integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== camelcase@^1.0.2: version "1.2.1" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" - integrity sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk= camelcase@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" - integrity sha1-MvxLn82vhF/N9+c7uXysImHwqwo= camelcase@^4.0.0, camelcase@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" - integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= camelcase@^5.0.0: version "5.3.1" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" - integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== capture-exit@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4" - integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g== dependencies: rsvp "^4.8.4" capture-stack-trace@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz#a6c0bbe1f38f3aa0b92238ecb6ff42c344d4135d" - integrity sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw== caseless@~0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" - integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= center-align@^0.1.1: version "0.1.3" resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" - integrity sha1-qg0yYptu6XIgBBHL1EYckHvCt60= dependencies: align-text "^0.1.3" lazy-cache "^1.0.3" @@ -1344,7 +1170,6 @@ center-align@^0.1.1: chalk@^1.0.0, chalk@^1.1, chalk@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" - integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= dependencies: ansi-styles "^2.2.1" escape-string-regexp "^1.0.2" @@ -1355,7 +1180,6 @@ chalk@^1.0.0, chalk@^1.1, chalk@^1.1.3: chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.2: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== dependencies: ansi-styles "^3.2.1" escape-string-regexp "^1.0.5" @@ -1364,29 +1188,24 @@ chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.2: character-parser@^2.1.1: version "2.2.0" resolved "https://registry.yarnpkg.com/character-parser/-/character-parser-2.2.0.tgz#c7ce28f36d4bcd9744e5ffc2c5fcde1c73261fc0" - integrity sha1-x84o821LzZdE5f/CxfzeHHMmH8A= dependencies: is-regex "^1.0.3" chardet@^0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" - integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== "charenc@>= 0.0.1", charenc@~0.0.1: version "0.0.2" resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" - integrity sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc= charm@~0.1.1: version "0.1.2" resolved "https://registry.yarnpkg.com/charm/-/charm-0.1.2.tgz#06c21eed1a1b06aeb67553cdc53e23274bac2296" - integrity sha1-BsIe7RobBq62dVPNxT4jJ0usIpY= chokidar@^1.6.0: version "1.7.0" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" - integrity sha1-eY5ol3gVHIB2tLNg5e3SjNortGg= dependencies: anymatch "^1.3.0" async-each "^1.0.0" @@ -1402,7 +1221,6 @@ chokidar@^1.6.0: chokidar@^2, chokidar@^2.1.5: version "2.1.6" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.6.tgz#b6cad653a929e244ce8a834244164d241fa954c5" - integrity sha512-V2jUo67OKkc6ySiRpJrjlpJKl9kDuG+Xb8VgsGzb+aEouhgS1D0weyPU4lEzdAcsCAvrih2J2BqyXqHWvVLw5g== dependencies: anymatch "^2.0.0" async-each "^1.0.1" @@ -1421,22 +1239,18 @@ chokidar@^2, chokidar@^2.1.5: chownr@^1.0.1, chownr@^1.1.1: version "1.1.2" resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.2.tgz#a18f1e0b269c8a6a5d3c86eb298beb14c3dd7bf6" - integrity sha512-GkfeAQh+QNy3wquu9oIZr6SS5x7wGdSgNQvD10X3r+AZr1Oys22HW8kAmDMvNg2+Dm0TeGaEuO8gFwdBXxwO8A== ci-info@^1.5.0: version "1.6.0" resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.6.0.tgz#2ca20dbb9ceb32d4524a683303313f0304b1e497" - integrity sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A== ci-info@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" - integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== class-utils@^0.3.5: version "0.3.6" resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" - integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== dependencies: arr-union "^3.1.0" define-property "^0.2.5" @@ -1446,38 +1260,32 @@ class-utils@^0.3.5: clean-css@^4.1.11: version "4.2.1" resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.1.tgz#2d411ef76b8569b6d0c84068dabe85b0aa5e5c17" - integrity sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g== dependencies: source-map "~0.6.0" cli-boxes@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" - integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM= cli-cursor@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" - integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= dependencies: restore-cursor "^2.0.0" cli-table-redemption@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/cli-table-redemption/-/cli-table-redemption-1.0.1.tgz#0359d8c34df74980029d76dff071a05a127c4fdd" - integrity sha512-SjVCciRyx01I4azo2K2rcc0NP/wOceXGzG1ZpYkEulbbIxDA/5YWv0oxG2HtQ4v8zPC6bgbRI7SbNaTZCxMNkg== dependencies: chalk "^1.1.3" cli-width@^2.0.0: version "2.2.0" resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" - integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= cliui@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" - integrity sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE= dependencies: center-align "^0.1.1" right-align "^0.1.1" @@ -1486,7 +1294,6 @@ cliui@^2.1.0: cliui@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" - integrity sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0= dependencies: string-width "^1.0.1" strip-ansi "^3.0.1" @@ -1495,7 +1302,6 @@ cliui@^3.2.0: cliui@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" - integrity sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ== dependencies: string-width "^2.1.1" strip-ansi "^4.0.0" @@ -1504,22 +1310,18 @@ cliui@^4.0.0: cluster-key-slot@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/cluster-key-slot/-/cluster-key-slot-1.1.0.tgz#30474b2a981fb12172695833052bc0d01336d10d" - integrity sha512-2Nii8p3RwAPiFwsnZvukotvow2rIHM+yQ6ZcBXGHdniadkYGZYiGmkHJIbZPIV9nfv7m/U1IPMVVcAhoWFeklw== co@^4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" - integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= code-point-at@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" - integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= collection-visit@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" - integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= dependencies: map-visit "^1.0.0" object-visit "^1.0.0" @@ -1527,24 +1329,20 @@ collection-visit@^1.0.0: color-convert@^1.9.0, color-convert@^1.9.1: version "1.9.3" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== dependencies: color-name "1.1.3" color-name@1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= color-name@^1.0.0: version "1.1.4" resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== color-string@^1.5.2: version "1.5.3" resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.3.tgz#c9bbc5f01b58b5492f3d6857459cb6590ce204cc" - integrity sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw== dependencies: color-name "^1.0.0" simple-swizzle "^0.2.2" @@ -1552,7 +1350,6 @@ color-string@^1.5.2: color@^3.1.1: version "3.1.2" resolved "https://registry.yarnpkg.com/color/-/color-3.1.2.tgz#68148e7f85d41ad7649c5fa8c8106f098d229e10" - integrity sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg== dependencies: color-convert "^1.9.1" color-string "^1.5.2" @@ -1560,41 +1357,34 @@ color@^3.1.1: colors@1.0.x: version "1.0.3" resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" - integrity sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs= combined-stream@^1.0.6, combined-stream@~1.0.6: version "1.0.8" resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" - integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== dependencies: delayed-stream "~1.0.0" commander@2.13.0: version "2.13.0" resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c" - integrity sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA== commander@^2.18.0, commander@^2.19.0, commander@^2.9.0, commander@~2.20.0: version "2.20.0" resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422" - integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ== component-emitter@^1.2.1: version "1.3.0" resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" - integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== compressible@^2.0.12, compressible@~2.0.16: version "2.0.17" resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.17.tgz#6e8c108a16ad58384a977f3a482ca20bff2f38c1" - integrity sha512-BGHeLCK1GV7j1bSmQQAi26X+GgWcTjLr/0tzSvMCl3LH1w1IJ4PFSPoV5316b30cneTziC+B1a+3OjoSUcQYmw== dependencies: mime-db ">= 1.40.0 < 2" compression@^1.7.2: version "1.7.4" resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" - integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== dependencies: accepts "~1.3.5" bytes "3.0.0" @@ -1607,12 +1397,10 @@ compression@^1.7.2: concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= concat-stream@^1.4.7, concat-stream@^1.5.1: version "1.6.2" resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" - integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== dependencies: buffer-from "^1.0.0" inherits "^2.0.3" @@ -1622,7 +1410,6 @@ concat-stream@^1.4.7, concat-stream@^1.5.1: concat-stream@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-2.0.0.tgz#414cf5af790a48c60ab9be4527d56d5e41133cb1" - integrity sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A== dependencies: buffer-from "^1.0.0" inherits "^2.0.3" @@ -1632,14 +1419,12 @@ concat-stream@^2.0.0: config@^1.30.0: version "1.31.0" resolved "https://registry.yarnpkg.com/config/-/config-1.31.0.tgz#ab08aeba6536015d220cd0afe14b3e0501082542" - integrity sha512-Ep/l9Rd1J9IPueztJfpbOqVzuKHQh4ZODMNt9xqTYdBBNRXbV4oTu34kCkkfdRVcDq0ohtpaeXGgb+c0LQxFRA== dependencies: json5 "^1.0.1" configstore@^3.0.0: version "3.1.2" resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.2.tgz#c6f25defaeef26df12dd33414b001fe81a543f8f" - integrity sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw== dependencies: dot-prop "^4.1.0" graceful-fs "^4.1.2" @@ -1651,7 +1436,6 @@ configstore@^3.0.0: configstore@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/configstore/-/configstore-5.0.0.tgz#37de662c7a49b5fe8dbcf8f6f5818d2d81ed852b" - integrity sha512-eE/hvMs7qw7DlcB5JPRnthmrITuHMmACUJAp89v6PT6iOqzoLS7HRWhBtuHMlhNHo2AhUSA/3Dh1bKNJHcublQ== dependencies: dot-prop "^5.1.0" graceful-fs "^4.1.2" @@ -1663,12 +1447,10 @@ configstore@^5.0.0: console-control-strings@^1.0.0, console-control-strings@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" - integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= constantinople@^3.0.1, constantinople@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/constantinople/-/constantinople-3.1.2.tgz#d45ed724f57d3d10500017a7d3a889c1381ae647" - integrity sha512-yePcBqEFhLOqSBtwYOGGS1exHo/s1xjekXiinh4itpNQGCu4KA1euPh1fg07N2wMITZXQkBz75Ntdt1ctGZouw== dependencies: "@types/babel-types" "^7.0.0" "@types/babylon" "^6.16.2" @@ -1678,24 +1460,20 @@ constantinople@^3.0.1, constantinople@^3.1.2: contains-path@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" - integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo= content-disposition@0.5.3: version "0.5.3" resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" - integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g== dependencies: safe-buffer "5.1.2" content-type@~1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" - integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== continuation-local-storage@^3.1.4: version "3.2.1" resolved "https://registry.yarnpkg.com/continuation-local-storage/-/continuation-local-storage-3.2.1.tgz#11f613f74e914fe9b34c92ad2d28fe6ae1db7ffb" - integrity sha512-jx44cconVqkCEEyLSKWwkvUXwO561jXMa3LPjTPsm5QR22PA0/mhe33FT4Xb5y74JDvt/Cq+5lm8S8rskLv9ZA== dependencies: async-listener "^0.6.0" emitter-listener "^1.1.1" @@ -1703,39 +1481,32 @@ continuation-local-storage@^3.1.4: convert-source-map@^1.1.0, convert-source-map@^1.4.0: version "1.6.0" resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" - integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A== dependencies: safe-buffer "~5.1.1" cookie-signature@1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" - integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= cookie@0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba" - integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg== copy-descriptor@^0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" - integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= core-js@^2.4.0, core-js@^2.5.3: version "2.6.9" resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.9.tgz#6b4b214620c834152e179323727fc19741b084f2" - integrity sha512-HOpZf6eXmnl7la+cUdMnLvUxKNqLUzJvgIziQ0DiF3JwSImNphIqdGqzj6hIKyX04MmV0poclQ7+wjWvxQyR2A== core-util-is@1.0.2, core-util-is@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" - integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= cors@^2.8.4: version "2.8.5" resolved "https://registry.yarnpkg.com/cors/-/cors-2.8.5.tgz#eac11da51592dd86b9f06f6e7ac293b3df875d29" - integrity sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g== dependencies: object-assign "^4" vary "^1" @@ -1743,7 +1514,6 @@ cors@^2.8.4: cpx@^1.5.0: version "1.5.0" resolved "https://registry.yarnpkg.com/cpx/-/cpx-1.5.0.tgz#185be018511d87270dedccc293171e37655ab88f" - integrity sha1-GFvgGFEdhycN7czCkxceN2VauI8= dependencies: babel-runtime "^6.9.2" chokidar "^1.6.0" @@ -1760,21 +1530,18 @@ cpx@^1.5.0: create-error-class@^3.0.0: version "3.0.2" resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" - integrity sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y= dependencies: capture-stack-trace "^1.0.0" cron@^1.3: version "1.7.1" resolved "https://registry.yarnpkg.com/cron/-/cron-1.7.1.tgz#e85ee9df794d1bc6579896ee382053c3ce33778f" - integrity sha512-gmMB/pJcqUVs/NklR1sCGlNYM7TizEw+1gebz20BMc/8bTm/r7QUp3ZPSPlG8Z5XRlvb7qhjEjq/+bdIfUCL2A== dependencies: moment-timezone "^0.5.x" cross-spawn@^5.0.1: version "5.1.0" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" - integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= dependencies: lru-cache "^4.0.1" shebang-command "^1.2.0" @@ -1783,7 +1550,6 @@ cross-spawn@^5.0.1: cross-spawn@^6.0.0, cross-spawn@^6.0.5: version "6.0.5" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" - integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== dependencies: nice-try "^1.0.4" path-key "^2.0.1" @@ -1794,56 +1560,46 @@ cross-spawn@^6.0.0, cross-spawn@^6.0.5: "crypt@>= 0.0.1", crypt@~0.0.1: version "0.0.2" resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" - integrity sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs= crypto-js@~3.1.2-2: version "3.1.8" resolved "https://registry.yarnpkg.com/crypto-js/-/crypto-js-3.1.8.tgz#715f070bf6014f2ae992a98b3929258b713f08d5" - integrity sha1-cV8HC/YBTyrpkqmLOSkli3E/CNU= crypto-random-string@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" - integrity sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4= crypto-random-string@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" - integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== css-parse@1.7.x: version "1.7.0" resolved "https://registry.yarnpkg.com/css-parse/-/css-parse-1.7.0.tgz#321f6cf73782a6ff751111390fc05e2c657d8c9b" - integrity sha1-Mh9s9zeCpv91ERE5D8BeLGV9jJs= cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": version "0.3.8" resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" - integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== cssstyle@^1.0.0: version "1.4.0" resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.4.0.tgz#9d31328229d3c565c61e586b02041a28fccdccf1" - integrity sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA== dependencies: cssom "0.3.x" cycle@1.0.x: version "1.0.3" resolved "https://registry.yarnpkg.com/cycle/-/cycle-1.0.3.tgz#21e80b2be8580f98b468f379430662b046c34ad2" - integrity sha1-IegLK+hYD5i0aPN5QwZisEbDStI= dashdash@^1.12.0: version "1.14.1" resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" - integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= dependencies: assert-plus "^1.0.0" data-urls@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe" - integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ== dependencies: abab "^2.0.0" whatwg-mimetype "^2.2.0" @@ -1852,168 +1608,143 @@ data-urls@^1.0.0: date-and-time@^0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/date-and-time/-/date-and-time-0.7.0.tgz#26273355558877799f9c95888293fccee92fdb94" - integrity sha512-qPHBPG0AQqbjP7wVf7vLv25/0bZRjYPiJiJtE0t6RqTswJR/6ExCXQLDnL5w4986j7i6470TMtalJxC8/UHrww== dateformat@^2.0.0: version "2.2.0" resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-2.2.0.tgz#4065e2013cf9fb916ddfd82efb506ad4c6769062" - integrity sha1-QGXiATz5+5Ft39gu+1Bq1MZ2kGI= debug@*, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" - integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== dependencies: ms "^2.1.1" debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.3, debug@^2.6.8, debug@^2.6.9: version "2.6.9" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== dependencies: ms "2.0.0" debug@^3, debug@^3.0, debug@^3.1.0, debug@^3.2.6: version "3.2.6" resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" - integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== dependencies: ms "^2.1.1" decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" - integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= -decimal.js@^10.0.0: +decimal.js@^10.2.0: version "10.2.0" resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.2.0.tgz#39466113a9e036111d02f82489b5fd6b0b5ed231" - integrity sha512-vDPw+rDgn3bZe1+F/pyEwb1oMG2XTlRVgAa6B4KccTEpYgF8w6eQllVbQcfIJnZyvzFtFpxnpGtx8dd7DJp/Rw== decode-uri-component@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" - integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= decompress-response@^3.3.0: version "3.3.0" resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" - integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= dependencies: mimic-response "^1.0.0" decompress-response@^4.2.0: version "4.2.1" resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-4.2.1.tgz#414023cc7a302da25ce2ec82d0d5238ccafd8986" - integrity sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw== dependencies: mimic-response "^2.0.0" deep-extend@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" - integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== deep-is@~0.1.3: version "0.1.3" resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" - integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= deep-metrics@^0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/deep-metrics/-/deep-metrics-0.0.1.tgz#8ac3333195cc5eca059b224eb1ca61fc4cda50fd" - integrity sha512-732WmZgCWxOkf4QBvrCjPPuT6wTEzaGye/4JqYsU/sO0J53UNX4PBwK0JV262BZ5cxgLmKhU+NlrtKdPDgybkg== dependencies: semver "^5.3.0" deepmerge@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-2.2.1.tgz#5d3ff22a01c00f645405a2fbc17d0778a1801170" - integrity sha512-R9hc1Xa/NOBi9WRVUWg19rl1UB7Tt4kuPd+thNJgFZoxXsTz7ncaPaeIm+40oSGuP33DfMb4sZt1QIGiJzC4EA== define-properties@^1.1.2, define-properties@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" - integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== dependencies: object-keys "^1.0.12" define-property@^0.2.5: version "0.2.5" resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" - integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= dependencies: is-descriptor "^0.1.0" define-property@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" - integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= dependencies: is-descriptor "^1.0.0" define-property@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" - integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== dependencies: is-descriptor "^1.0.2" isobject "^3.0.1" +delay@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/delay/-/delay-4.3.0.tgz#efeebfb8f545579cb396b3a722443ec96d14c50e" + delayed-stream@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" - integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= delegates@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" - integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= denque@^1.1.0: version "1.4.1" resolved "https://registry.yarnpkg.com/denque/-/denque-1.4.1.tgz#6744ff7641c148c3f8a69c307e51235c1f4a37cf" - integrity sha512-OfzPuSZKGcgr96rf1oODnfjqBFmr1DVoc/TrItj3Ohe0Ah1C5WX5Baquw/9U9KovnQ88EqmJbD66rKYUQYN1tQ== depd@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" - integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= deprecated-decorator@^0.1.6: version "0.1.6" resolved "https://registry.yarnpkg.com/deprecated-decorator/-/deprecated-decorator-0.1.6.tgz#00966317b7a12fe92f3cc831f7583af329b86c37" - integrity sha1-AJZjF7ehL+kvPMgx91g68ym4bDc= destroy@~1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" - integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= detect-libc@^1.0.2, detect-libc@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" - integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= detect-newline@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" - integrity sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I= diff-sequences@^24.3.0: version "24.3.0" resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-24.3.0.tgz#0f20e8a1df1abddaf4d9c226680952e64118b975" - integrity sha512-xLqpez+Zj9GKSnPWS0WZw1igGocZ+uua8+y+5dDNTT934N3QuY1sp2LkHzwiaYQGz60hMq0pjAshdeXm5VUOEw== diff@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.1.tgz#0c667cb467ebbb5cea7f14f135cc2dba7780a8ff" - integrity sha512-s2+XdvhPCOF01LRQBC8hf4vhbVmI2CGS5aZnxLJlT5FtdhPCDFq80q++zK2KlrVorVDdL5BOGZ/VfLrVtYNF+Q== doctrine@1.5.0: version "1.5.0" resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" - integrity sha1-N53Ocw9hZvds76TmcHoVmwLFpvo= dependencies: esutils "^2.0.2" isarray "^1.0.0" @@ -2021,60 +1752,50 @@ doctrine@1.5.0: doctrine@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" - integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== dependencies: esutils "^2.0.2" doctypes@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/doctypes/-/doctypes-1.1.0.tgz#ea80b106a87538774e8a3a4a5afe293de489e0a9" - integrity sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk= domexception@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" - integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug== dependencies: webidl-conversions "^4.0.2" dot-prop@^4.1.0: version "4.2.0" resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" - integrity sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ== dependencies: is-obj "^1.0.0" dot-prop@^5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.1.0.tgz#bdd8c986a77b83e3fca524e53786df916cabbd8a" - integrity sha512-n1oC6NBF+KM9oVXtjmen4Yo7HyAVWV2UUl50dCYJdw2924K6dX9bf9TTTWaKtYlRn0FEtxG27KS80ayVLixxJA== dependencies: is-obj "^2.0.0" dotenv@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-4.0.0.tgz#864ef1379aced55ce6f95debecdce179f7a0cd1d" - integrity sha1-hk7xN5rO1Vzm+V3r7NzhefegzR0= double-ended-queue@^2.1.0-0: version "2.1.0-0" resolved "https://registry.yarnpkg.com/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz#103d3527fd31528f40188130c841efdd78264e5c" - integrity sha1-ED01J/0xUo9AGIEwyEHv3XgmTlw= duplexer3@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" - integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= duplexer@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" - integrity sha1-rOb/gIwc5mtX0ev5eXessCM0z8E= duplexify@^3.5.0, duplexify@^3.6.0: version "3.7.1" resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" - integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g== dependencies: end-of-stream "^1.0.0" inherits "^2.0.1" @@ -2084,7 +1805,6 @@ duplexify@^3.5.0, duplexify@^3.6.0: duplexify@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-4.1.1.tgz#7027dc374f157b122a8ae08c2d3ea4d2d953aa61" - integrity sha512-DY3xVEmVHTv1wSzKNbwoU6nVjzI369Y6sPoqfYr0/xlx3IdX2n94xIszTcjPO8W8ZIv0Wb0PXNcjuZyT4wiICA== dependencies: end-of-stream "^1.4.1" inherits "^2.0.3" @@ -2094,7 +1814,6 @@ duplexify@^4.1.1: ecc-jsbn@~0.1.1: version "0.1.2" resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" - integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= dependencies: jsbn "~0.1.0" safer-buffer "^2.1.0" @@ -2102,46 +1821,47 @@ ecc-jsbn@~0.1.1: ecdsa-sig-formatter@1.0.11: version "1.0.11" resolved "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz#ae0f0fa2d85045ef14a817daa3ce9acd0489e5bf" - integrity sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ== dependencies: safe-buffer "^5.0.1" ee-first@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" - integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= ejs@~2.5.5: version "2.5.9" resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.5.9.tgz#7ba254582a560d267437109a68354112475b0ce5" - integrity sha512-GJCAeDBKfREgkBtgrYSf9hQy9kTb3helv0zGdzqhM7iAkW8FA/ZF97VQDbwFiwIT8MQLLOe5VlPZOEvZAqtUAQ== -elasticdump@^3.3.12: - version "3.5.0" - resolved "https://registry.yarnpkg.com/elasticdump/-/elasticdump-3.5.0.tgz#2ba748962e64a400d7dde7d4e41b76671dbaab02" - integrity sha512-1YJNk7EiqsMPkfC5c+1eD527D5fW+ZYibOq8j11lgQWANryagQbGtjwVv7Gq+lc72dS1e1EndoGcyOsJJBRGhA== +elasticdump@^6.9.1: + version "6.9.1" + resolved "https://registry.yarnpkg.com/elasticdump/-/elasticdump-6.9.1.tgz#a85b382bf9f8bd74907885dff425a5ffc790eda7" dependencies: - JSONStream "^1.2.0" + JSONStream "^1.3.5" async "^2.0.1" - aws-sdk "^2.36.0" - aws4 "^1.4.1" - decimal.js "^10.0.0" - ini "^1.3.4" - lodash "^4.17.5" - lossless-json "^1.0.2" + aws-sdk "^2.528.0" + aws4 "^1.8.0" + bytes "^3.1.0" + decimal.js "^10.2.0" + delay "^4.3.0" + ini "^1.3.5" + lodash "^4.17.15" + lossless-json "^1.0.3" optimist latest + p-queue "^6.1.1" request "2.x.x" - requestretry "^3.0.1" + requestretry "^4.0.0" + s3-stream-upload "2.0.2" + s3urls "^1.5.2" + socks5-http-client "^1.0.4" + socks5-https-client "^1.2.1" elasticsearch-deletebyquery@^1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/elasticsearch-deletebyquery/-/elasticsearch-deletebyquery-1.6.0.tgz#a2c879aa2ad3b88b218f269a8083989cd1d1838a" - integrity sha1-osh5qirTuIshjyaagIOYnNHRg4o= elasticsearch@^15.2.0: version "15.5.0" resolved "https://registry.yarnpkg.com/elasticsearch/-/elasticsearch-15.5.0.tgz#62d9f238cf9e10b81c50a2303aa470c1f7da6b37" - integrity sha512-ZGKKaDkOFAap61ObBNkAxhYXCcAbRfkI4NVoSeLGnTD6/cItvY2j9LII/VV8/zclGe1x5m6DsVp47E4ze4aAeQ== dependencies: agentkeepalive "^3.4.1" chalk "^1.0.0" @@ -2150,50 +1870,42 @@ elasticsearch@^15.2.0: email-check@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/email-check/-/email-check-1.1.0.tgz#01c5765a015c2311f46321dc068ac68a23116f68" - integrity sha1-AcV2WgFcIxH0YyHcBorGiiMRb2g= dependencies: js-promisify "1.0.1" emitter-listener@^1.1.1: version "1.1.2" resolved "https://registry.yarnpkg.com/emitter-listener/-/emitter-listener-1.1.2.tgz#56b140e8f6992375b3d7cb2cab1cc7432d9632e8" - integrity sha512-Bt1sBAGFHY9DKY+4/2cV6izcKJUf5T7/gkdmkxzX/qv9CcGH8xSwVRW5mtX03SWJtRTWSOpzCuWN9rBFYZepZQ== dependencies: shimmer "^1.2.0" emoji-regex@^7.0.1: version "7.0.3" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" - integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== encodeurl@~1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" - integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" - integrity sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q== dependencies: once "^1.4.0" ent@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/ent/-/ent-2.2.0.tgz#e964219325a21d05f44466a2f686ed6ce5f5dd1d" - integrity sha1-6WQhkyWiHQX0RGai9obtbOX13R0= error-ex@^1.2.0, error-ex@^1.3.1: version "1.3.2" resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== dependencies: is-arrayish "^0.2.1" es-abstract@^1.12.0, es-abstract@^1.5.1, es-abstract@^1.7.0: version "1.13.0" resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9" - integrity sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg== dependencies: es-to-primitive "^1.2.0" function-bind "^1.1.1" @@ -2205,7 +1917,6 @@ es-abstract@^1.12.0, es-abstract@^1.5.1, es-abstract@^1.7.0: es-to-primitive@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" - integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== dependencies: is-callable "^1.1.4" is-date-object "^1.0.1" @@ -2214,34 +1925,28 @@ es-to-primitive@^1.2.0: es6-promise@^4.0.3: version "4.2.8" resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" - integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== es6-promisify@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" - integrity sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM= dependencies: es6-promise "^4.0.3" escape-html@~1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" - integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= escape-regexp@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/escape-regexp/-/escape-regexp-0.0.1.tgz#f44bda12d45bbdf9cb7f862ee7e4827b3dd32254" - integrity sha1-9EvaEtRbvfnLf4Yu5+SCez3TIlQ= escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= escodegen@^1.9.1: version "1.11.1" resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.11.1.tgz#c485ff8d6b4cdb89e27f4a856e91f118401ca510" - integrity sha512-JwiqFD9KdGVVpeuRa68yU3zZnBEOcPs0nKW7wZzXky8Z7tffdYUHbe11bPCV5jYlK6DVdKLWLm0f5I/QlL0Kmw== dependencies: esprima "^3.1.3" estraverse "^4.2.0" @@ -2253,12 +1958,10 @@ escodegen@^1.9.1: eslint-config-standard@^11.0.0: version "11.0.0" resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-11.0.0.tgz#87ee0d3c9d95382dc761958cbb23da9eea31e0ba" - integrity sha512-oDdENzpViEe5fwuRCWla7AXQd++/oyIp8zP+iP9jiUPG6NBj3SHgdgtl/kTn00AjeN+1HNvavTKmYbMo+xMOlw== eslint-import-resolver-node@^0.3.2: version "0.3.2" resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a" - integrity sha512-sfmTqJfPSizWu4aymbPr4Iidp5yKm8yDkHp+Ir3YiTHiiDfxh69mOUsmiqW6RZ9zRXFaF64GtYmN7e+8GHBv6Q== dependencies: debug "^2.6.9" resolve "^1.5.0" @@ -2266,7 +1969,6 @@ eslint-import-resolver-node@^0.3.2: eslint-module-utils@^2.4.0: version "2.4.1" resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.4.1.tgz#7b4675875bf96b0dbf1b21977456e5bb1f5e018c" - integrity sha512-H6DOj+ejw7Tesdgbfs4jeS4YMFrT8uI8xwd1gtQqXssaR0EQ26L+2O/w6wkYFy2MymON0fTwHmXBvvfLNZVZEw== dependencies: debug "^2.6.8" pkg-dir "^2.0.0" @@ -2274,7 +1976,6 @@ eslint-module-utils@^2.4.0: eslint-plugin-import@^2.13.0: version "2.18.2" resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.18.2.tgz#02f1180b90b077b33d447a17a2326ceb400aceb6" - integrity sha512-5ohpsHAiUBRNaBWAF08izwUGlbrJoJJ+W9/TBwsGoR1MnlgfwMIKrFeSjWbt6moabiXW9xNvtFz+97KHRfI4HQ== dependencies: array-includes "^3.0.3" contains-path "^0.1.0" @@ -2291,7 +1992,6 @@ eslint-plugin-import@^2.13.0: eslint-plugin-node@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-6.0.1.tgz#bf19642298064379315d7a4b2a75937376fa05e4" - integrity sha512-Q/Cc2sW1OAISDS+Ji6lZS2KV4b7ueA/WydVWd1BECTQwVvfQy5JAi3glhINoKzoMnfnuRgNP+ZWKrGAbp3QDxw== dependencies: ignore "^3.3.6" minimatch "^3.0.4" @@ -2301,24 +2001,20 @@ eslint-plugin-node@^6.0.1: eslint-plugin-promise@^3.7.0: version "3.8.0" resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.8.0.tgz#65ebf27a845e3c1e9d6f6a5622ddd3801694b621" - integrity sha512-JiFL9UFR15NKpHyGii1ZcvmtIqa3UTwiDAGb8atSffe43qJ3+1czVGN6UtkklpcJ2DVnqvTMzEKRaJdBkAL2aQ== eslint-plugin-standard@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-3.1.0.tgz#2a9e21259ba4c47c02d53b2d0c9135d4b1022d47" - integrity sha512-fVcdyuKRr0EZ4fjWl3c+gp1BANFJD1+RaWa2UPYfMZ6jCtp5RG00kSaXnK/dE5sYzt4kaWJ9qdxqUfc0d9kX0w== eslint-plugin-vue-storefront@^0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/eslint-plugin-vue-storefront/-/eslint-plugin-vue-storefront-0.0.1.tgz#23e99e73977dfb26526c7ec00b76d43e6e93af3d" - integrity sha512-dcmI2z+OJ8sE4RY/Jptp8YiIp95oCjEBIIJhm+DoE2nIDgzs8JkIOgTm/XIMZsDQNN1/OctU4CF9WfZFgZXFCw== dependencies: requireindex "~1.2.0" eslint-scope@^4.0.0, eslint-scope@^4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848" - integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg== dependencies: esrecurse "^4.1.0" estraverse "^4.1.1" @@ -2326,19 +2022,16 @@ eslint-scope@^4.0.0, eslint-scope@^4.0.3: eslint-utils@^1.3.1: version "1.4.0" resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.0.tgz#e2c3c8dba768425f897cf0f9e51fe2e241485d4c" - integrity sha512-7ehnzPaP5IIEh1r1tkjuIrxqhNkzUJa9z3R92tLJdZIVdWaczEhr3EbhGtsMrVxi1KeR8qA7Off6SWc5WNQqyQ== dependencies: eslint-visitor-keys "^1.0.0" eslint-visitor-keys@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" - integrity sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ== eslint@^5.0.0: version "5.16.0" resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.16.0.tgz#a1e3ac1aae4a3fbd8296fcf8f7ab7314cbb6abea" - integrity sha512-S3Rz11i7c8AA5JPv7xAH+dOyq/Cu/VXHiHXBPOU1k/JAM5dXqQPt3qcrhpHSorXmrpu2g0gkIBVXAqCpzfoZIg== dependencies: "@babel/code-frame" "^7.0.0" ajv "^6.9.1" @@ -2380,7 +2073,6 @@ eslint@^5.0.0: espree@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/espree/-/espree-5.0.1.tgz#5d6526fa4fc7f0788a5cf75b15f30323e2f81f7a" - integrity sha512-qWAZcWh4XE/RwzLJejfcofscgMc9CamR6Tn1+XRXNzrvUSSbiAjGOI/fggztjIi7y9VLPqnICMIPiGyr8JaZ0A== dependencies: acorn "^6.0.7" acorn-jsx "^5.0.0" @@ -2389,71 +2081,62 @@ espree@^5.0.1: esprima@^3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" - integrity sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM= esprima@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== esquery@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" - integrity sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA== dependencies: estraverse "^4.0.0" esrecurse@^4.1.0: version "4.2.1" resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" - integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== dependencies: estraverse "^4.1.0" estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" - integrity sha1-De4/7TH81GlhjOc0IJn8GvoL2xM= esutils@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" - integrity sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs= etag@~1.8.1: version "1.8.1" resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" - integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= event-target-shim@^5.0.0: version "5.0.1" resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" - integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== eventemitter2@1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-1.0.5.tgz#f983610517b1737c0b9dc643beca93893c04df18" - integrity sha1-+YNhBRexc3wLncZDvsqTiTwE3xg= eventemitter2@~0.4.14: version "0.4.14" resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-0.4.14.tgz#8f61b75cde012b2e9eb284d4545583b5643b61ab" - integrity sha1-j2G3XN4BKy6esoTUVFWDtWQ7Yas= + +eventemitter3@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.0.tgz#d65176163887ee59f386d64c82610b696a4a74eb" events@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" - integrity sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ= exec-sh@^0.3.2: version "0.3.2" resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.2.tgz#6738de2eb7c8e671d0366aea0b0db8c6f7d7391b" - integrity sha512-9sLAvzhI5nc8TpuQUh4ahMdCrWT00wPWz7j47/emR5+2qEfoZP5zzUXvx+vdx+H6ohhnsYC31iX04QLYJK8zTg== execa@^0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" - integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= dependencies: cross-spawn "^5.0.1" get-stream "^3.0.0" @@ -2466,7 +2149,6 @@ execa@^0.7.0: execa@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" - integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== dependencies: cross-spawn "^6.0.0" get-stream "^4.0.0" @@ -2479,19 +2161,16 @@ execa@^1.0.0: exit@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" - integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= expand-brackets@^0.1.4: version "0.1.5" resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" - integrity sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s= dependencies: is-posix-bracket "^0.1.0" expand-brackets@^2.1.4: version "2.1.4" resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" - integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= dependencies: debug "^2.3.3" define-property "^0.2.5" @@ -2504,19 +2183,16 @@ expand-brackets@^2.1.4: expand-range@^1.8.1: version "1.8.2" resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" - integrity sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc= dependencies: fill-range "^2.1.0" expand-template@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" - integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== expect@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/expect/-/expect-24.8.0.tgz#471f8ec256b7b6129ca2524b2a62f030df38718d" - integrity sha512-/zYvP8iMDrzaaxHVa724eJBCKqSHmO0FA7EDkBiRHxg6OipmMn1fN+C8T9L9K8yr7UONkOifu6+LLH+z76CnaA== dependencies: "@jest/types" "^24.8.0" ansi-styles "^3.2.0" @@ -2528,7 +2204,6 @@ expect@^24.8.0: express@^4.12.2, express@^4.15.2, express@^4.16.3: version "4.17.1" resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" - integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g== dependencies: accepts "~1.3.7" array-flatten "1.1.1" @@ -2564,14 +2239,12 @@ express@^4.12.2, express@^4.15.2, express@^4.16.3: extend-shallow@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" - integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= dependencies: is-extendable "^0.1.0" extend-shallow@^3.0.0, extend-shallow@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" - integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= dependencies: assign-symbols "^1.0.0" is-extendable "^1.0.1" @@ -2579,17 +2252,14 @@ extend-shallow@^3.0.0, extend-shallow@^3.0.2: extend@^1.2.1: version "1.3.0" resolved "https://registry.yarnpkg.com/extend/-/extend-1.3.0.tgz#d1516fb0ff5624d2ebf9123ea1dac5a1994004f8" - integrity sha1-0VFvsP9WJNLr+RI+odrFoZlABPg= extend@^3.0.0, extend@^3.0.1, extend@^3.0.2, extend@~3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" - integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== external-editor@^3.0.3: version "3.1.0" resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" - integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== dependencies: chardet "^0.7.0" iconv-lite "^0.4.24" @@ -2598,14 +2268,12 @@ external-editor@^3.0.3: extglob@^0.3.1: version "0.3.2" resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" - integrity sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE= dependencies: is-extglob "^1.0.0" extglob@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" - integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== dependencies: array-unique "^0.3.2" define-property "^1.0.0" @@ -2619,73 +2287,60 @@ extglob@^2.0.4: extsprintf@1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" - integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= extsprintf@^1.2.0: version "1.4.0" resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" - integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= eyes@0.1.x: version "0.1.8" resolved "https://registry.yarnpkg.com/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" - integrity sha1-Ys8SAjTGg3hdkCNIqADvPgzCC8A= fast-deep-equal@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" - integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" - integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= fast-levenshtein@~2.0.4: version "2.0.6" resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" - integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= fast-text-encoding@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fast-text-encoding/-/fast-text-encoding-1.0.0.tgz#3e5ce8293409cfaa7177a71b9ca84e1b1e6f25ef" - integrity sha512-R9bHCvweUxxwkDwhjav5vxpFvdPGlVngtqmx4pIZfSUhM/Q4NiIUHB456BAf+Q1Nwu3HEZYONtu+Rya+af4jiQ== fb-watchman@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" - integrity sha1-VOmr99+i8mzZsWNsWIwa/AXeXVg= dependencies: bser "^2.0.0" fclone@1.0.11: version "1.0.11" resolved "https://registry.yarnpkg.com/fclone/-/fclone-1.0.11.tgz#10e85da38bfea7fc599341c296ee1d77266ee640" - integrity sha1-EOhdo4v+p/xZk0HClu4ddyZu5kA= figures@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" - integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= dependencies: escape-string-regexp "^1.0.5" file-entry-cache@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" - integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== dependencies: flat-cache "^2.0.1" filename-regex@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" - integrity sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY= fill-range@^2.1.0: version "2.2.4" resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" - integrity sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q== dependencies: is-number "^2.1.0" isobject "^2.0.0" @@ -2696,7 +2351,6 @@ fill-range@^2.1.0: fill-range@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" - integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= dependencies: extend-shallow "^2.0.1" is-number "^3.0.0" @@ -2706,7 +2360,6 @@ fill-range@^4.0.0: finalhandler@^1.0.3, finalhandler@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" - integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== dependencies: debug "2.6.9" encodeurl "~1.0.2" @@ -2719,12 +2372,10 @@ finalhandler@^1.0.3, finalhandler@~1.1.2: find-index@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4" - integrity sha1-Z101iyyjiS15Whq0cjL4tuLg3eQ= find-up@^1.0.0: version "1.1.2" resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" - integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8= dependencies: path-exists "^2.0.0" pinkie-promise "^2.0.0" @@ -2732,26 +2383,22 @@ find-up@^1.0.0: find-up@^2.0.0, find-up@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" - integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= dependencies: locate-path "^2.0.0" find-up@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" - integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== dependencies: locate-path "^3.0.0" first-chunk-stream@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-0.1.0.tgz#755d3ec14d49a86e3d2fcc08beead5c0ca2b9c0a" - integrity sha1-dV0+wU1JqG49L8wIvurVwMornAo= flat-cache@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" - integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== dependencies: flatted "^2.0.0" rimraf "2.6.3" @@ -2760,29 +2407,24 @@ flat-cache@^2.0.1: flatted@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.1.tgz#69e57caa8f0eacbc281d2e2cb458d46fdb449e08" - integrity sha512-a1hQMktqW9Nmqr5aktAux3JMNqaucxGcjtjWnZLHX7yyPCmlSV3M54nGYbqT8K+0GhF3NBgmJCc3ma+WOgX8Jg== for-in@^1.0.1, for-in@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" - integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= for-own@^0.1.4: version "0.1.5" resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" - integrity sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4= dependencies: for-in "^1.0.1" forever-agent@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" - integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= form-data@^2.5.0: version "2.5.0" resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.5.0.tgz#094ec359dc4b55e7d62e0db4acd76e89fe874d37" - integrity sha512-WXieX3G/8side6VIqx44ablyULoGruSde5PNTxoUyo5CeyAMX6nVWUd0rgist/EuX655cjhUhTo1Fo3tRYqbcA== dependencies: asynckit "^0.4.0" combined-stream "^1.0.6" @@ -2791,7 +2433,6 @@ form-data@^2.5.0: form-data@~2.3.2: version "2.3.3" resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" - integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== dependencies: asynckit "^0.4.0" combined-stream "^1.0.6" @@ -2800,24 +2441,20 @@ form-data@~2.3.2: forwarded@~0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" - integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ= fragment-cache@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" - integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= dependencies: map-cache "^0.2.2" fresh@0.5.2: version "0.5.2" resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" - integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= from2@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" - integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8= dependencies: inherits "^2.0.1" readable-stream "^2.0.0" @@ -2825,17 +2462,14 @@ from2@^2.3.0: fs-constants@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" - integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== fs-copy-file-sync@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/fs-copy-file-sync/-/fs-copy-file-sync-1.1.1.tgz#11bf32c096c10d126e5f6b36d06eece776062918" - integrity sha512-2QY5eeqVv4m2PfyMiEuy9adxNP+ajf+8AR05cEi+OAzPcOj90hvFImeZhTmKLBgSd9EvG33jsD7ZRxsx9dThkQ== fs-extra@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" - integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== dependencies: graceful-fs "^4.2.0" jsonfile "^4.0.0" @@ -2844,19 +2478,16 @@ fs-extra@^8.1.0: fs-minipass@^1.2.5: version "1.2.6" resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.6.tgz#2c5cc30ded81282bfe8a0d7c7c1853ddeb102c07" - integrity sha512-crhvyXcMejjv3Z5d2Fa9sf5xLYVCF5O1c71QxbVnbLsmYMBEvDAftewesN/HhY03YRoA7zOMxjNGrF5svGaaeQ== dependencies: minipass "^2.2.1" fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= fsevents@^1.0.0, fsevents@^1.2.7: version "1.2.9" resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.9.tgz#3f5ed66583ccd6f400b5a00db6f7e861363e388f" - integrity sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw== dependencies: nan "^2.12.1" node-pre-gyp "^0.12.0" @@ -2864,17 +2495,14 @@ fsevents@^1.0.0, fsevents@^1.2.7: function-bind@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== functional-red-black-tree@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" - integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= gauge@~2.7.3: version "2.7.4" resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" - integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= dependencies: aproba "^1.0.3" console-control-strings "^1.0.0" @@ -2888,7 +2516,6 @@ gauge@~2.7.3: gaxios@^2.0.0, gaxios@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/gaxios/-/gaxios-2.0.1.tgz#2ca1c9eb64c525d852048721316c138dddf40708" - integrity sha512-c1NXovTxkgRJTIgB2FrFmOFg4YIV6N/bAa4f/FZ4jIw13Ql9ya/82x69CswvotJhbV3DiGnlTZwoq2NVXk2Irg== dependencies: abort-controller "^3.0.0" extend "^3.0.2" @@ -2898,7 +2525,6 @@ gaxios@^2.0.0, gaxios@^2.0.1: gcp-metadata@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/gcp-metadata/-/gcp-metadata-2.0.1.tgz#7f4657b0f52af1c9f6f3a1e0f54a24d72bbdf84f" - integrity sha512-nrbLj5O1MurvpLC/doFwzdTfKnmYGDYXlY/v7eQ4tJNVIvQXbOK672J9UFbradbtmuTkyHzjpzD8HD0Djz0LWw== dependencies: gaxios "^2.0.0" json-bigint "^0.3.0" @@ -2906,7 +2532,6 @@ gcp-metadata@^2.0.0: gcs-resumable-upload@^2.0.0: version "2.2.2" resolved "https://registry.yarnpkg.com/gcs-resumable-upload/-/gcs-resumable-upload-2.2.2.tgz#3cedd2616c7f09a3d688077e1c2bf0591ae3f232" - integrity sha512-pAkIVrYlRJ59d0QQHy1qU9JYVOjgwLz+SlPtn4S1Q3ckLYXfzZTd/47HnDra0u85j6BawnVQhNJxJTR+VZVsVg== dependencies: abort-controller "^3.0.0" configstore "^5.0.0" @@ -2918,36 +2543,30 @@ gcs-resumable-upload@^2.0.0: get-caller-file@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" - integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== get-stream@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" - integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= get-stream@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" - integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== dependencies: pump "^3.0.0" get-value@^2.0.3, get-value@^2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" - integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= getpass@^0.1.1: version "0.1.7" resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" - integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= dependencies: assert-plus "^1.0.0" github-from-package@0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" - integrity sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4= "gkt@https://tgz.pm2.io/gkt-1.0.0.tgz": version "1.0.0" @@ -2956,7 +2575,6 @@ github-from-package@0.0.0: glob-base@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" - integrity sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q= dependencies: glob-parent "^2.0.0" is-glob "^2.0.0" @@ -2964,14 +2582,12 @@ glob-base@^0.3.0: glob-parent@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" - integrity sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg= dependencies: is-glob "^2.0.0" glob-parent@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" - integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4= dependencies: is-glob "^3.1.0" path-dirname "^1.0.0" @@ -2979,14 +2595,12 @@ glob-parent@^3.1.0: glob2base@^0.0.12: version "0.0.12" resolved "https://registry.yarnpkg.com/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56" - integrity sha1-nUGbPijxLoOjYhZKJ3BVkiycDVY= dependencies: find-index "^0.1.1" glob@7.0.x: version "7.0.6" resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.6.tgz#211bafaf49e525b8cd93260d14ab136152b3f57a" - integrity sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo= dependencies: fs.realpath "^1.0.0" inflight "^1.0.4" @@ -2998,7 +2612,6 @@ glob@7.0.x: glob@^7.0.0, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3: version "7.1.4" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" - integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== dependencies: fs.realpath "^1.0.0" inflight "^1.0.4" @@ -3010,19 +2623,16 @@ glob@^7.0.0, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3: global-dirs@^0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" - integrity sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU= dependencies: ini "^1.3.4" globals@^11.1.0, globals@^11.7.0: version "11.12.0" resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" - integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== google-auth-library@^4.0.0: version "4.2.6" resolved "https://registry.yarnpkg.com/google-auth-library/-/google-auth-library-4.2.6.tgz#3b1a73abe23b174d03e443e57f42d5f15a81ef1d" - integrity sha512-oJ6tCA9rbsYeIVY+mcLPFHa2hatz3XO6idYIrlI/KhhlMxZrO3tKyU8O2Pxu5KnSBBP7Wj4HtbM1LLKngNFaFw== dependencies: arrify "^2.0.0" base64-js "^1.3.0" @@ -3036,14 +2646,12 @@ google-auth-library@^4.0.0: google-p12-pem@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/google-p12-pem/-/google-p12-pem-2.0.1.tgz#509f9415e50c9bdf76de8150a825f9e97cba2c57" - integrity sha512-6h6x+eBX3k+IDSe/c8dVYmn8Mzr1mUcmKC9MdUSwaBkFAXlqBEnwFWmSFgGC+tcqtsLn73BDP/vUNWEehf1Rww== dependencies: node-forge "^0.8.0" got@^6.7.1: version "6.7.1" resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" - integrity sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA= dependencies: create-error-class "^3.0.0" duplexer3 "^0.1.4" @@ -3060,12 +2668,10 @@ got@^6.7.1: graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.0.tgz#8d8fdc73977cb04104721cb53666c1ca64cd328b" - integrity sha512-jpSvDPV4Cq/bgtpndIWbI5hmYxhQGHPC4d4cqBPb4DLniCfhJokdXhwhaDuLBGLQdvvRum/UiX6ECVIPvDXqdg== graphql-extensions@^0.0.x, graphql-extensions@~0.0.9: version "0.0.10" resolved "https://registry.yarnpkg.com/graphql-extensions/-/graphql-extensions-0.0.10.tgz#34bdb2546d43f6a5bc89ab23c295ec0466c6843d" - integrity sha512-TnQueqUDCYzOSrpQb3q1ngDSP2otJSF+9yNLrQGPzkMsvnQ+v6e2d5tl+B35D4y+XpmvVnAn4T3ZK28mkILveA== dependencies: core-js "^2.5.3" source-map-support "^0.5.1" @@ -3073,7 +2679,6 @@ graphql-extensions@^0.0.x, graphql-extensions@~0.0.9: graphql-tools@^1.2.1: version "1.2.3" resolved "https://registry.yarnpkg.com/graphql-tools/-/graphql-tools-1.2.3.tgz#079bf4d157e46c0a0bae9fec117e0eea6e03ba2c" - integrity sha512-3inNK3rmk32G4hGWbqBuVNxusF+Mcuckg+3aD4hHaMxO0LrSgteWoTD8pTD9GUnmoSRG4AbYHZ0jibGD5MTlrQ== dependencies: deprecated-decorator "^0.1.6" uuid "^3.0.1" @@ -3083,19 +2688,16 @@ graphql-tools@^1.2.1: graphql@^0.13.1: version "0.13.2" resolved "https://registry.yarnpkg.com/graphql/-/graphql-0.13.2.tgz#4c740ae3c222823e7004096f832e7b93b2108270" - integrity sha512-QZ5BL8ZO/B20VA8APauGBg3GyEgZ19eduvpLWoq5x7gMmWnHoy8rlQWPLmWgFvo1yNgjSEFMesmS4R6pPr7xog== dependencies: iterall "^1.2.1" growly@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" - integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE= gtoken@^3.0.0: version "3.0.2" resolved "https://registry.yarnpkg.com/gtoken/-/gtoken-3.0.2.tgz#09b3c2998a785f81d7d020b9221d65d27e0e8e62" - integrity sha512-BOBi6Zz31JfxhSHRZBIDdbwIbOPyux10WxJHdx8wz/FMP1zyN1xFrsAWsgcLe5ww5v/OZu/MePUEZAjgJXSauA== dependencies: gaxios "^2.0.0" google-p12-pem "^2.0.0" @@ -3105,7 +2707,6 @@ gtoken@^3.0.0: handlebars@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.1.2.tgz#b6b37c1ced0306b221e094fc7aca3ec23b131b67" - integrity sha512-nvfrjqvt9xQ8Z/w0ijewdD/vvWDTOweBUm96NTr66Wfvo1mJenBLwcYmPs3TIBP5ruzYGD7Hx/DaM9RmhroGPw== dependencies: neo-async "^2.6.0" optimist "^0.6.1" @@ -3116,12 +2717,10 @@ handlebars@^4.1.2: har-schema@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" - integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= har-validator@~5.1.0: version "5.1.3" resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" - integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== dependencies: ajv "^6.5.5" har-schema "^2.0.0" @@ -3129,29 +2728,24 @@ har-validator@~5.1.0: has-ansi@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" - integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= dependencies: ansi-regex "^2.0.0" has-flag@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= has-symbols@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" - integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= has-unicode@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" - integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= has-value@^0.3.1: version "0.3.1" resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" - integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= dependencies: get-value "^2.0.3" has-values "^0.1.4" @@ -3160,7 +2754,6 @@ has-value@^0.3.1: has-value@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" - integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= dependencies: get-value "^2.0.6" has-values "^1.0.0" @@ -3169,12 +2762,10 @@ has-value@^1.0.0: has-values@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" - integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= has-values@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" - integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= dependencies: is-number "^3.0.0" kind-of "^4.0.0" @@ -3182,33 +2773,28 @@ has-values@^1.0.0: has@^1.0.1, has@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== dependencies: function-bind "^1.1.1" hash-stream-validation@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/hash-stream-validation/-/hash-stream-validation-0.2.1.tgz#ecc9b997b218be5bb31298628bb807869b73dcd1" - integrity sha1-7Mm5l7IYvluzEphii7gHhptz3NE= dependencies: through2 "^2.0.0" hosted-git-info@^2.1.4: version "2.7.1" resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" - integrity sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w== html-encoding-sniffer@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" - integrity sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw== dependencies: whatwg-encoding "^1.0.1" http-errors@1.7.2: version "1.7.2" resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" - integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg== dependencies: depd "~1.1.2" inherits "2.0.3" @@ -3219,7 +2805,6 @@ http-errors@1.7.2: http-errors@~1.7.2: version "1.7.3" resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" - integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw== dependencies: depd "~1.1.2" inherits "2.0.4" @@ -3230,7 +2815,6 @@ http-errors@~1.7.2: http-signature@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" - integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= dependencies: assert-plus "^1.0.0" jsprim "^1.2.2" @@ -3239,7 +2823,6 @@ http-signature@~1.2.0: httpntlm@^1.5.2: version "1.7.6" resolved "https://registry.yarnpkg.com/httpntlm/-/httpntlm-1.7.6.tgz#6991e8352836007d67101b83db8ed0f915f906d0" - integrity sha1-aZHoNSg2AH1nEBuD247Q+RX5BtA= dependencies: httpreq ">=0.4.22" underscore "~1.7.0" @@ -3247,12 +2830,10 @@ httpntlm@^1.5.2: httpreq@>=0.4.22: version "0.4.24" resolved "https://registry.yarnpkg.com/httpreq/-/httpreq-0.4.24.tgz#4335ffd82cd969668a39465c929ac61d6393627f" - integrity sha1-QzX/2CzZaWaKOUZckprGHWOTYn8= https-proxy-agent@^2.2.1: version "2.2.2" resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2.2.tgz#271ea8e90f836ac9f119daccd39c19ff7dfb0793" - integrity sha512-c8Ndjc9Bkpfx/vCJueCPy0jlP4ccCCSNDp8xwCZzPjKJUm+B+u9WX2x98Qx4n1PiMNTWo3D7KK5ifNV/yJyRzg== dependencies: agent-base "^4.3.0" debug "^3.1.0" @@ -3260,58 +2841,48 @@ https-proxy-agent@^2.2.1: humanize-ms@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" - integrity sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0= dependencies: ms "^2.0.0" humps@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/humps/-/humps-1.1.0.tgz#99a05cc80b13ae754a3d1e1a92182f271ef1d98f" - integrity sha1-maBcyAsTrnVKPR4akhgvJx7x2Y8= iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@^0.4.4: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" - integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== dependencies: safer-buffer ">= 2.1.2 < 3" ieee754@1.1.8: version "1.1.8" resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" - integrity sha1-vjPUCsEO8ZJnAfbwii2G+/0a0+Q= ieee754@^1.1.4: version "1.1.13" resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" - integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== ignore-by-default@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" - integrity sha1-SMptcvbGo68Aqa1K5odr44ieKwk= ignore-walk@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" - integrity sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ== dependencies: minimatch "^3.0.4" ignore@^3.3.6: version "3.3.10" resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" - integrity sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug== ignore@^4.0.6: version "4.0.6" resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" - integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== import-fresh@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.1.0.tgz#6d33fa1dcef6df930fae003446f33415af905118" - integrity sha512-PpuksHKGt8rXfWEr9m9EHIpgyyaltBy8+eF6GJM0QCAxMgxCfucMF3mjecK2QsJr0amJW7gTqh5/wht0z2UhEQ== dependencies: parent-module "^1.0.0" resolve-from "^4.0.0" @@ -3319,12 +2890,10 @@ import-fresh@^3.0.0: import-lazy@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" - integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM= import-local@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d" - integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ== dependencies: pkg-dir "^3.0.0" resolve-cwd "^2.0.0" @@ -3332,12 +2901,10 @@ import-local@^2.0.0: imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= inflight@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= dependencies: once "^1.3.0" wrappy "1" @@ -3345,22 +2912,18 @@ inflight@^1.0.4: inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== inherits@2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" - integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= -ini@^1.3.4, ini@~1.3.0: +ini@^1.3.4, ini@^1.3.5, ini@~1.3.0: version "1.3.5" resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" - integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== inquirer@^6.2.2: version "6.5.0" resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.0.tgz#2303317efc9a4ea7ec2e2df6f86569b734accf42" - integrity sha512-scfHejeG/lVZSpvCXpsB4j/wQNPM5JC8kiElOI0OUTwmc1RTpXr4H32/HOlQHcZiYl2z2VElwuCVDRG8vFmbnA== dependencies: ansi-escapes "^3.2.0" chalk "^2.4.2" @@ -3379,37 +2942,31 @@ inquirer@^6.2.2: interpret@^1.0.0: version "1.2.0" resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" - integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw== into-stream@^5.1.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/into-stream/-/into-stream-5.1.1.tgz#f9a20a348a11f3c13face22763f2d02e127f4db8" - integrity sha512-krrAJ7McQxGGmvaYbB7Q1mcA+cRwg9Ij2RfWIeVesNBgVDZmzY/Fa4IpZUT3bmdRzMzdf/mzltCG2Dq99IZGBA== + version "5.1.0" + resolved "https://registry.yarnpkg.com/into-stream/-/into-stream-5.1.0.tgz#b05f37d8fed05c06a0b43b556d74e53e5af23878" dependencies: from2 "^2.3.0" - p-is-promise "^3.0.0" + p-is-promise "^2.0.0" invariant@^2.2.4: version "2.2.4" resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" - integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== dependencies: loose-envify "^1.0.0" invert-kv@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" - integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= invert-kv@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" - integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA== ioredis@^4.0.0: version "4.14.0" resolved "https://registry.yarnpkg.com/ioredis/-/ioredis-4.14.0.tgz#d0e83b1d308ca1ba6e849798bfe91583b560eaac" - integrity sha512-vGzyW9QTdGMjaAPUhMj48Z31mIO5qJLzkbsE5dg+orNi7L5Ph035htmkBZNDTDdDk7kp7e9UJUr+alhRuaWp8g== dependencies: cluster-key-slot "^1.1.0" debug "^4.1.1" @@ -3421,89 +2978,83 @@ ioredis@^4.0.0: redis-parser "^3.0.0" standard-as-callback "^2.0.1" +ip-address@~6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/ip-address/-/ip-address-6.1.0.tgz#3c3335bc90f22b3545a6eca5bffefabeb2ea6fd2" + dependencies: + jsbn "1.1.0" + lodash "^4.17.15" + sprintf-js "1.1.2" + ipaddr.js@1.9.0: version "1.9.0" resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.0.tgz#37df74e430a0e47550fe54a2defe30d8acd95f65" - integrity sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA== is-accessor-descriptor@^0.1.6: version "0.1.6" resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" - integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= dependencies: kind-of "^3.0.2" is-accessor-descriptor@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" - integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== dependencies: kind-of "^6.0.0" is-arrayish@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" - integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= is-arrayish@^0.3.1: version "0.3.2" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" - integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== is-binary-path@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" - integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= dependencies: binary-extensions "^1.0.0" is-buffer@^1.1.5, is-buffer@~1.1.1: version "1.1.6" resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" - integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== is-callable@^1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" - integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== is-ci@^1.0.10: version "1.2.1" resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.2.1.tgz#e3779c8ee17fccf428488f6e281187f2e632841c" - integrity sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg== dependencies: ci-info "^1.5.0" is-ci@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" - integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== dependencies: ci-info "^2.0.0" is-data-descriptor@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" - integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= dependencies: kind-of "^3.0.2" is-data-descriptor@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" - integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== dependencies: kind-of "^6.0.0" is-date-object@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" - integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= is-descriptor@^0.1.0: version "0.1.6" resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" - integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== dependencies: is-accessor-descriptor "^0.1.6" is-data-descriptor "^0.1.4" @@ -3512,7 +3063,6 @@ is-descriptor@^0.1.0: is-descriptor@^1.0.0, is-descriptor@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" - integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== dependencies: is-accessor-descriptor "^1.0.0" is-data-descriptor "^1.0.0" @@ -3521,19 +3071,16 @@ is-descriptor@^1.0.0, is-descriptor@^1.0.2: is-dotfile@^1.0.0: version "1.0.3" resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" - integrity sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE= is-equal-shallow@^0.1.3: version "0.1.3" resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" - integrity sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ= dependencies: is-primitive "^2.0.0" is-expression@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-expression/-/is-expression-3.0.0.tgz#39acaa6be7fd1f3471dc42c7416e61c24317ac9f" - integrity sha1-Oayqa+f9HzRx3ELHQW5hwkMXrJ8= dependencies: acorn "~4.0.2" object-assign "^4.0.1" @@ -3541,67 +3088,56 @@ is-expression@^3.0.0: is-extendable@^0.1.0, is-extendable@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" - integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= is-extendable@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" - integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== dependencies: is-plain-object "^2.0.4" is-extglob@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" - integrity sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA= is-extglob@^2.1.0, is-extglob@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= is-fullwidth-code-point@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" - integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= dependencies: number-is-nan "^1.0.0" is-fullwidth-code-point@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" - integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= is-generator-fn@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" - integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== is-glob@^2.0.0, is-glob@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" - integrity sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM= dependencies: is-extglob "^1.0.0" is-glob@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" - integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo= dependencies: is-extglob "^2.1.0" is-glob@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" - integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== dependencies: is-extglob "^2.1.1" is-installed-globally@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" - integrity sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA= dependencies: global-dirs "^0.1.0" is-path-inside "^1.0.0" @@ -3609,161 +3145,132 @@ is-installed-globally@^0.1.0: is-npm@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" - integrity sha1-8vtjpl5JBbQGyGBydloaTceTufQ= is-number@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" - integrity sha1-Afy7s5NGOlSPL0ZszhbezknbkI8= dependencies: kind-of "^3.0.2" is-number@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" - integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= dependencies: kind-of "^3.0.2" is-number@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" - integrity sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ== is-obj@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" - integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= is-obj@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" - integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== is-path-inside@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" - integrity sha1-jvW33lBDej/cprToZe96pVy0gDY= dependencies: path-is-inside "^1.0.1" is-plain-object@^2.0.3, is-plain-object@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" - integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== dependencies: isobject "^3.0.1" is-posix-bracket@^0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" - integrity sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q= is-primitive@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" - integrity sha1-IHurkWOEmcB7Kt8kCkGochADRXU= is-promise@^2.0.0, is-promise@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" - integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= is-redirect@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" - integrity sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ= is-regex@^1.0.3, is-regex@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" - integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= dependencies: has "^1.0.1" is-retry-allowed@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" - integrity sha1-EaBgVotnM5REAz0BJaYaINVk+zQ= is-stream-ended@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/is-stream-ended/-/is-stream-ended-0.1.4.tgz#f50224e95e06bce0e356d440a4827cd35b267eda" - integrity sha512-xj0XPvmr7bQFTvirqnFr50o0hQIh6ZItDqloxt5aJrR4NQsYeSsyFQERYGCAzfindAcnKjINnwEEgLx4IqVzQw== is-stream@^1.0.0, is-stream@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" - integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= is-symbol@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" - integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw== dependencies: has-symbols "^1.0.0" is-typedarray@^1.0.0, is-typedarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" - integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= is-utf8@^0.2.0: version "0.2.1" resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" - integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= is-windows@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" - integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== is-wsl@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" - integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= is@^3.2.0: version "3.3.0" resolved "https://registry.yarnpkg.com/is/-/is-3.3.0.tgz#61cff6dd3c4193db94a3d62582072b44e5645d79" - integrity sha512-nW24QBoPcFGGHJGUwnfpI7Yc5CdqWNdsyHQszVE/z2pKHXzh7FZ5GWhJqSyaQ9wMkQnsTx+kAI8bHlCX4tKdbg== isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= isexe@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= isobject@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" - integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= dependencies: isarray "1.0.0" isobject@^3.0.0, isobject@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" - integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= isstream@0.1.x, isstream@~0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" - integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= istanbul-lib-coverage@^2.0.2, istanbul-lib-coverage@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz#675f0ab69503fad4b1d849f736baaca803344f49" - integrity sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA== istanbul-lib-instrument@^3.0.1, istanbul-lib-instrument@^3.3.0: version "3.3.0" resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz#a5f63d91f0bbc0c3e479ef4c5de027335ec6d630" - integrity sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA== dependencies: "@babel/generator" "^7.4.0" "@babel/parser" "^7.4.3" @@ -3776,7 +3283,6 @@ istanbul-lib-instrument@^3.0.1, istanbul-lib-instrument@^3.3.0: istanbul-lib-report@^2.0.4: version "2.0.8" resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz#5a8113cd746d43c4889eba36ab10e7d50c9b4f33" - integrity sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ== dependencies: istanbul-lib-coverage "^2.0.5" make-dir "^2.1.0" @@ -3785,7 +3291,6 @@ istanbul-lib-report@^2.0.4: istanbul-lib-source-maps@^3.0.1: version "3.0.6" resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz#284997c48211752ec486253da97e3879defba8c8" - integrity sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw== dependencies: debug "^4.1.1" istanbul-lib-coverage "^2.0.5" @@ -3796,19 +3301,16 @@ istanbul-lib-source-maps@^3.0.1: istanbul-reports@^2.1.1: version "2.2.6" resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.2.6.tgz#7b4f2660d82b29303a8fe6091f8ca4bf058da1af" - integrity sha512-SKi4rnMyLBKe0Jy2uUdx28h8oG7ph2PPuQPvIAh31d+Ci+lSiEu4C+h3oBPuJ9+mPKhOyW0M8gY4U5NM1WLeXA== dependencies: handlebars "^4.1.2" iterall@^1.2.1: version "1.2.2" resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.2.2.tgz#92d70deb8028e0c39ff3164fdbf4d8b088130cd7" - integrity sha512-yynBb1g+RFUPY64fTrFv7nsjRrENBQJaX2UL+2Szc9REFrSNm1rpSXHGzhmAy7a9uv3vlvgBlXnf9RqmPH1/DA== jest-changed-files@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-24.8.0.tgz#7e7eb21cf687587a85e50f3d249d1327e15b157b" - integrity sha512-qgANC1Yrivsq+UrLXsvJefBKVoCsKB0Hv+mBb6NMjjZ90wwxCDmU3hsCXBya30cH+LnPYjwgcU65i6yJ5Nfuug== dependencies: "@jest/types" "^24.8.0" execa "^1.0.0" @@ -3817,7 +3319,6 @@ jest-changed-files@^24.8.0: jest-cli@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-24.8.0.tgz#b075ac914492ed114fa338ade7362a301693e989" - integrity sha512-+p6J00jSMPQ116ZLlHJJvdf8wbjNbZdeSX9ptfHX06/MSNaXmKihQzx5vQcw0q2G6JsdVkUIdWbOWtSnaYs3yA== dependencies: "@jest/core" "^24.8.0" "@jest/test-result" "^24.8.0" @@ -3836,7 +3337,6 @@ jest-cli@^24.8.0: jest-config@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-24.8.0.tgz#77db3d265a6f726294687cbbccc36f8a76ee0f4f" - integrity sha512-Czl3Nn2uEzVGsOeaewGWoDPD8GStxCpAe0zOYs2x2l0fZAgPbCr3uwUkgNKV3LwE13VXythM946cd5rdGkkBZw== dependencies: "@babel/core" "^7.1.0" "@jest/test-sequencer" "^24.8.0" @@ -3859,7 +3359,6 @@ jest-config@^24.8.0: jest-diff@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.8.0.tgz#146435e7d1e3ffdf293d53ff97e193f1d1546172" - integrity sha512-wxetCEl49zUpJ/bvUmIFjd/o52J+yWcoc5ZyPq4/W1LUKGEhRYDIbP1KcF6t+PvqNrGAFk4/JhtxDq/Nnzs66g== dependencies: chalk "^2.0.1" diff-sequences "^24.3.0" @@ -3869,14 +3368,12 @@ jest-diff@^24.8.0: jest-docblock@^24.3.0: version "24.3.0" resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-24.3.0.tgz#b9c32dac70f72e4464520d2ba4aec02ab14db5dd" - integrity sha512-nlANmF9Yq1dufhFlKG9rasfQlrY7wINJbo3q01tu56Jv5eBU5jirylhF2O5ZBnLxzOVBGRDz/9NAwNyBtG4Nyg== dependencies: detect-newline "^2.1.0" jest-each@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-24.8.0.tgz#a05fd2bf94ddc0b1da66c6d13ec2457f35e52775" - integrity sha512-NrwK9gaL5+XgrgoCsd9svsoWdVkK4gnvyhcpzd6m487tXHqIdYeykgq3MKI1u4I+5Zf0tofr70at9dWJDeb+BA== dependencies: "@jest/types" "^24.8.0" chalk "^2.0.1" @@ -3887,7 +3384,6 @@ jest-each@^24.8.0: jest-environment-jsdom@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-24.8.0.tgz#300f6949a146cabe1c9357ad9e9ecf9f43f38857" - integrity sha512-qbvgLmR7PpwjoFjM/sbuqHJt/NCkviuq9vus9NBn/76hhSidO+Z6Bn9tU8friecegbJL8gzZQEMZBQlFWDCwAQ== dependencies: "@jest/environment" "^24.8.0" "@jest/fake-timers" "^24.8.0" @@ -3899,7 +3395,6 @@ jest-environment-jsdom@^24.8.0: jest-environment-node@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-24.8.0.tgz#d3f726ba8bc53087a60e7a84ca08883a4c892231" - integrity sha512-vIGUEScd1cdDgR6sqn2M08sJTRLQp6Dk/eIkCeO4PFHxZMOgy+uYLPMC4ix3PEfM5Au/x3uQ/5Tl0DpXXZsJ/Q== dependencies: "@jest/environment" "^24.8.0" "@jest/fake-timers" "^24.8.0" @@ -3910,12 +3405,10 @@ jest-environment-node@^24.8.0: jest-get-type@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.8.0.tgz#a7440de30b651f5a70ea3ed7ff073a32dfe646fc" - integrity sha512-RR4fo8jEmMD9zSz2nLbs2j0zvPpk/KCEz3a62jJWbd2ayNo0cb+KFRxPHVhE4ZmgGJEQp0fosmNz84IfqM8cMQ== jest-haste-map@^24.8.0: version "24.8.1" resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.8.1.tgz#f39cc1d2b1d907e014165b4bd5a957afcb992982" - integrity sha512-SwaxMGVdAZk3ernAx2Uv2sorA7jm3Kx+lR0grp6rMmnY06Kn/urtKx1LPN2mGTea4fCT38impYT28FfcLUhX0g== dependencies: "@jest/types" "^24.8.0" anymatch "^2.0.0" @@ -3934,7 +3427,6 @@ jest-haste-map@^24.8.0: jest-jasmine2@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-24.8.0.tgz#a9c7e14c83dd77d8b15e820549ce8987cc8cd898" - integrity sha512-cEky88npEE5LKd5jPpTdDCLvKkdyklnaRycBXL6GNmpxe41F0WN44+i7lpQKa/hcbXaQ+rc9RMaM4dsebrYong== dependencies: "@babel/traverse" "^7.1.0" "@jest/environment" "^24.8.0" @@ -3956,14 +3448,12 @@ jest-jasmine2@^24.8.0: jest-leak-detector@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-24.8.0.tgz#c0086384e1f650c2d8348095df769f29b48e6980" - integrity sha512-cG0yRSK8A831LN8lIHxI3AblB40uhv0z+SsQdW3GoMMVcK+sJwrIIyax5tu3eHHNJ8Fu6IMDpnLda2jhn2pD/g== dependencies: pretty-format "^24.8.0" jest-matcher-utils@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-24.8.0.tgz#2bce42204c9af12bde46f83dc839efe8be832495" - integrity sha512-lex1yASY51FvUuHgm0GOVj7DCYEouWSlIYmCW7APSqB9v8mXmKSn5+sWVF0MhuASG0bnYY106/49JU1FZNl5hw== dependencies: chalk "^2.0.1" jest-diff "^24.8.0" @@ -3973,7 +3463,6 @@ jest-matcher-utils@^24.8.0: jest-message-util@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.8.0.tgz#0d6891e72a4beacc0292b638685df42e28d6218b" - integrity sha512-p2k71rf/b6ns8btdB0uVdljWo9h0ovpnEe05ZKWceQGfXYr4KkzgKo3PBi8wdnd9OtNh46VpNIJynUn/3MKm1g== dependencies: "@babel/code-frame" "^7.0.0" "@jest/test-result" "^24.8.0" @@ -3987,24 +3476,20 @@ jest-message-util@^24.8.0: jest-mock@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.8.0.tgz#2f9d14d37699e863f1febf4e4d5a33b7fdbbde56" - integrity sha512-6kWugwjGjJw+ZkK4mDa0Df3sDlUTsV47MSrT0nGQ0RBWJbpODDQ8MHDVtGtUYBne3IwZUhtB7elxHspU79WH3A== dependencies: "@jest/types" "^24.8.0" jest-pnp-resolver@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz#ecdae604c077a7fbc70defb6d517c3c1c898923a" - integrity sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ== jest-regex-util@^24.3.0: version "24.3.0" resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.3.0.tgz#d5a65f60be1ae3e310d5214a0307581995227b36" - integrity sha512-tXQR1NEOyGlfylyEjg1ImtScwMq8Oh3iJbGTjN7p0J23EuVX1MA8rwU69K4sLbCmwzgCUbVkm0FkSF9TdzOhtg== jest-resolve-dependencies@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-24.8.0.tgz#19eec3241f2045d3f990dba331d0d7526acff8e0" - integrity sha512-hyK1qfIf/krV+fSNyhyJeq3elVMhK9Eijlwy+j5jqmZ9QsxwKBiP6qukQxaHtK8k6zql/KYWwCTQ+fDGTIJauw== dependencies: "@jest/types" "^24.8.0" jest-regex-util "^24.3.0" @@ -4013,7 +3498,6 @@ jest-resolve-dependencies@^24.8.0: jest-resolve@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-24.8.0.tgz#84b8e5408c1f6a11539793e2b5feb1b6e722439f" - integrity sha512-+hjSzi1PoRvnuOICoYd5V/KpIQmkAsfjFO71458hQ2Whi/yf1GDeBOFj8Gxw4LrApHsVJvn5fmjcPdmoUHaVKw== dependencies: "@jest/types" "^24.8.0" browser-resolve "^1.11.3" @@ -4024,7 +3508,6 @@ jest-resolve@^24.8.0: jest-runner@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-24.8.0.tgz#4f9ae07b767db27b740d7deffad0cf67ccb4c5bb" - integrity sha512-utFqC5BaA3JmznbissSs95X1ZF+d+4WuOWwpM9+Ak356YtMhHE/GXUondZdcyAAOTBEsRGAgH/0TwLzfI9h7ow== dependencies: "@jest/console" "^24.7.1" "@jest/environment" "^24.8.0" @@ -4049,7 +3532,6 @@ jest-runner@^24.8.0: jest-runtime@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-24.8.0.tgz#05f94d5b05c21f6dc54e427cd2e4980923350620" - integrity sha512-Mq0aIXhvO/3bX44ccT+czU1/57IgOMyy80oM0XR/nyD5zgBcesF84BPabZi39pJVA6UXw+fY2Q1N+4BiVUBWOA== dependencies: "@jest/console" "^24.7.1" "@jest/environment" "^24.8.0" @@ -4078,12 +3560,10 @@ jest-runtime@^24.8.0: jest-serializer@^24.4.0: version "24.4.0" resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.4.0.tgz#f70c5918c8ea9235ccb1276d232e459080588db3" - integrity sha512-k//0DtglVstc1fv+GY/VHDIjrtNjdYvYjMlbLUed4kxrE92sIUewOi5Hj3vrpB8CXfkJntRPDRjCrCvUhBdL8Q== jest-snapshot@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-24.8.0.tgz#3bec6a59da2ff7bc7d097a853fb67f9d415cb7c6" - integrity sha512-5ehtWoc8oU9/cAPe6fez6QofVJLBKyqkY2+TlKTOf0VllBB/mqUNdARdcjlZrs9F1Cv+/HKoCS/BknT0+tmfPg== dependencies: "@babel/types" "^7.0.0" "@jest/types" "^24.8.0" @@ -4101,7 +3581,6 @@ jest-snapshot@^24.8.0: jest-util@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-24.8.0.tgz#41f0e945da11df44cc76d64ffb915d0716f46cd1" - integrity sha512-DYZeE+XyAnbNt0BG1OQqKy/4GVLPtzwGx5tsnDrFcax36rVE3lTA5fbvgmbVPUZf9w77AJ8otqR4VBbfFJkUZA== dependencies: "@jest/console" "^24.7.1" "@jest/fake-timers" "^24.8.0" @@ -4119,7 +3598,6 @@ jest-util@^24.8.0: jest-validate@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.8.0.tgz#624c41533e6dfe356ffadc6e2423a35c2d3b4849" - integrity sha512-+/N7VOEMW1Vzsrk3UWBDYTExTPwf68tavEPKDnJzrC6UlHtUDU/fuEdXqFoHzv9XnQ+zW6X3qMZhJ3YexfeLDA== dependencies: "@jest/types" "^24.8.0" camelcase "^5.0.0" @@ -4131,7 +3609,6 @@ jest-validate@^24.8.0: jest-watcher@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-24.8.0.tgz#58d49915ceddd2de85e238f6213cef1c93715de4" - integrity sha512-SBjwHt5NedQoVu54M5GEx7cl7IGEFFznvd/HNT8ier7cCAx/Qgu9ZMlaTQkvK22G1YOpcWBLQPFSImmxdn3DAw== dependencies: "@jest/test-result" "^24.8.0" "@jest/types" "^24.8.0" @@ -4144,7 +3621,6 @@ jest-watcher@^24.8.0: jest-worker@^24.6.0: version "24.6.0" resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.6.0.tgz#7f81ceae34b7cde0c9827a6980c35b7cdc0161b3" - integrity sha512-jDwgW5W9qGNvpI1tNnvajh0a5IE/PuGLFmHk6aR/BZFz8tSgGw17GsDPXAJ6p91IvYDjOw8GpFbvvZGAK+DPQQ== dependencies: merge-stream "^1.0.1" supports-color "^6.1.0" @@ -4152,7 +3628,6 @@ jest-worker@^24.6.0: jest@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/jest/-/jest-24.8.0.tgz#d5dff1984d0d1002196e9b7f12f75af1b2809081" - integrity sha512-o0HM90RKFRNWmAWvlyV8i5jGZ97pFwkeVoGvPW1EtLTgJc2+jcuqcbbqcSZLE/3f2S5pt0y2ZBETuhpWNl1Reg== dependencies: import-local "^2.0.0" jest-cli "^24.8.0" @@ -4160,45 +3635,41 @@ jest@^24.8.0: jmespath@0.15.0: version "0.15.0" resolved "https://registry.yarnpkg.com/jmespath/-/jmespath-0.15.0.tgz#a3f222a9aae9f966f5d27c796510e28091764217" - integrity sha1-o/Iiqarp+Wb10nx5ZRDigJF2Qhc= js-promisify@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/js-promisify/-/js-promisify-1.0.1.tgz#c47e18bc4196e492248c9d1a663701ade1ee3dca" - integrity sha1-xH4YvEGW5JIkjJ0aZjcBreHuPco= js-sha3@^0.8.0: version "0.8.0" resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840" - integrity sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q== js-stringify@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/js-stringify/-/js-stringify-1.0.2.tgz#1736fddfd9724f28a3682adc6230ae7e4e9679db" - integrity sha1-Fzb939lyTyijaCrcYjCufk6Weds= "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== js-yaml@^3.13.0: version "3.13.1" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" - integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== dependencies: argparse "^1.0.7" esprima "^4.0.0" +jsbn@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-1.1.0.tgz#b01307cb29b618a1ed26ec79e911f803c4da0040" + jsbn@~0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" - integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= jsdom@^11.5.1: version "11.12.0" resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.12.0.tgz#1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8" - integrity sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw== dependencies: abab "^2.0.0" acorn "^5.5.3" @@ -4230,75 +3701,62 @@ jsdom@^11.5.1: jsesc@^2.5.1: version "2.5.2" resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" - integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== json-bigint@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/json-bigint/-/json-bigint-0.3.0.tgz#0ccd912c4b8270d05f056fbd13814b53d3825b1e" - integrity sha1-DM2RLEuCcNBfBW+9E4FLU9OCWx4= dependencies: bignumber.js "^7.0.0" json-parse-better-errors@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" - integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== json-schema-traverse@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" - integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== json-schema@0.2.3: version "0.2.3" resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" - integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= json-stable-stringify-without-jsonify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" - integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= json-stringify-safe@^5.0, json-stringify-safe@~5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" - integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= json5@2.x, json5@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850" - integrity sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ== dependencies: minimist "^1.2.0" json5@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" - integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== dependencies: minimist "^1.2.0" jsonfile@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" - integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= optionalDependencies: graceful-fs "^4.1.6" jsonify@~0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" - integrity sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM= jsonparse@^1.2.0: version "1.3.1" resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" - integrity sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA= jsonwebtoken@^8.2.0: version "8.5.1" resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz#00e71e0b8df54c2121a1f26137df2280673bcc0d" - integrity sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w== dependencies: jws "^3.2.2" lodash.includes "^4.3.0" @@ -4314,7 +3772,6 @@ jsonwebtoken@^8.2.0: jsprim@^1.2.2: version "1.4.1" resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" - integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= dependencies: assert-plus "1.0.0" extsprintf "1.3.0" @@ -4324,7 +3781,6 @@ jsprim@^1.2.2: jstransformer@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/jstransformer/-/jstransformer-1.0.0.tgz#ed8bf0921e2f3f1ed4d5c1a44f68709ed24722c3" - integrity sha1-7Yvwkh4vPx7U1cGkT2hwntJHIsM= dependencies: is-promise "^2.0.0" promise "^7.0.1" @@ -4332,7 +3788,6 @@ jstransformer@1.0.0: jwa@^1.1.5, jwa@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/jwa/-/jwa-1.4.1.tgz#743c32985cb9e98655530d53641b66c8645b039a" - integrity sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA== dependencies: buffer-equal-constant-time "1.0.1" ecdsa-sig-formatter "1.0.11" @@ -4341,7 +3796,6 @@ jwa@^1.1.5, jwa@^1.4.1: jws@^3.1.5, jws@^3.2.2: version "3.2.2" resolved "https://registry.yarnpkg.com/jws/-/jws-3.2.2.tgz#001099f3639468c9414000e99995fa52fb478304" - integrity sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA== dependencies: jwa "^1.4.1" safe-buffer "^5.0.1" @@ -4349,41 +3803,34 @@ jws@^3.1.5, jws@^3.2.2: jwt-simple@^0.5.1: version "0.5.6" resolved "https://registry.yarnpkg.com/jwt-simple/-/jwt-simple-0.5.6.tgz#3357adec55b26547114157be66748995b75b333a" - integrity sha512-40aUybvhH9t2h71ncA1/1SbtTNCVZHgsTsTgqPUxGWDmUDrXyDf2wMNQKEbdBjbf4AI+fQhbECNTV6lWxQKUzg== kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: version "3.2.2" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" - integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= dependencies: is-buffer "^1.1.5" kind-of@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" - integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= dependencies: is-buffer "^1.1.5" kind-of@^5.0.0: version "5.1.0" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" - integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== kind-of@^6.0.0, kind-of@^6.0.2: version "6.0.2" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" - integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA== kleur@^3.0.2: version "3.0.3" resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" - integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== kue@^0.11.5, kue@^0.11.6: version "0.11.6" resolved "https://registry.yarnpkg.com/kue/-/kue-0.11.6.tgz#5b76916bcedd56636a107861471c63c94611860a" - integrity sha512-56Jic22qSqdJ3nNpkhVr6RUx/QKalfdBdU0m70hgBKEkhBAgdt6Qr74evec+bM+LGmNbEC6zGGDskX4mcgBYcQ== dependencies: body-parser "^1.12.2" express "^4.12.2" @@ -4400,48 +3847,40 @@ kue@^0.11.5, kue@^0.11.6: latest-version@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" - integrity sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU= dependencies: package-json "^4.0.0" lazy-cache@^1.0.3: version "1.0.4" resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" - integrity sha1-odePw6UEdMuAhF07O24dpJpEbo4= lazy@~1.0.11: version "1.0.11" resolved "https://registry.yarnpkg.com/lazy/-/lazy-1.0.11.tgz#daa068206282542c088288e975c297c1ae77b690" - integrity sha1-2qBoIGKCVCwIgojpdcKXwa53tpA= lcid@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" - integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU= dependencies: invert-kv "^1.0.0" lcid@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" - integrity sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA== dependencies: invert-kv "^2.0.0" left-pad@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" - integrity sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA== leven@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" - integrity sha1-wuep93IJTe6dNCAq6KzORoeHVYA= levn@^0.3.0, levn@~0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" - integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= dependencies: prelude-ls "~1.1.2" type-check "~0.3.2" @@ -4449,7 +3888,6 @@ levn@^0.3.0, levn@~0.3.0: load-json-file@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" - integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA= dependencies: graceful-fs "^4.1.2" parse-json "^2.2.0" @@ -4460,7 +3898,6 @@ load-json-file@^1.0.0: load-json-file@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" - integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg= dependencies: graceful-fs "^4.1.2" parse-json "^2.2.0" @@ -4470,7 +3907,6 @@ load-json-file@^2.0.0: load-json-file@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" - integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs= dependencies: graceful-fs "^4.1.2" parse-json "^4.0.0" @@ -4480,7 +3916,6 @@ load-json-file@^4.0.0: locate-path@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" - integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= dependencies: p-locate "^2.0.0" path-exists "^3.0.0" @@ -4488,7 +3923,6 @@ locate-path@^2.0.0: locate-path@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" - integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== dependencies: p-locate "^3.0.0" path-exists "^3.0.0" @@ -4496,119 +3930,96 @@ locate-path@^3.0.0: lodash.assign@^4.0.3, lodash.assign@^4.0.6: version "4.2.0" resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" - integrity sha1-DZnzzNem0mHRm9rrkkUAXShYCOc= lodash.defaults@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" - integrity sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw= lodash.findindex@^4.4.0: version "4.6.0" resolved "https://registry.yarnpkg.com/lodash.findindex/-/lodash.findindex-4.6.0.tgz#a3245dee61fb9b6e0624b535125624bb69c11106" - integrity sha1-oyRd7mH7m24GJLU1ElYku2nBEQY= lodash.flatten@^4.4.0: version "4.4.0" resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" - integrity sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8= lodash.includes@^4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/lodash.includes/-/lodash.includes-4.3.0.tgz#60bb98a87cb923c68ca1e51325483314849f553f" - integrity sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8= lodash.isboolean@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz#6c2e171db2a257cd96802fd43b01b20d5f5870f6" - integrity sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY= lodash.isequal@^4.0.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" - integrity sha1-QVxEePK8wwEgwizhDtMib30+GOA= lodash.isinteger@^4.0.4: version "4.0.4" resolved "https://registry.yarnpkg.com/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz#619c0af3d03f8b04c31f5882840b77b11cd68343" - integrity sha1-YZwK89A/iwTDH1iChAt3sRzWg0M= lodash.isnumber@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz#3ce76810c5928d03352301ac287317f11c0b1ffc" - integrity sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w= lodash.isplainobject@^4.0.6: version "4.0.6" resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" - integrity sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs= lodash.isstring@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" - integrity sha1-1SfftUVuynzJu5XV2ur4i6VKVFE= lodash.merge@^4.6.0: version "4.6.2" resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" - integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== lodash.once@^4.0.0: version "4.1.1" resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" - integrity sha1-DdOXEhPHxW34gJd9UEyI+0cal6w= lodash.sortby@^4.7.0: version "4.7.0" resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" - integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= lodash.unescape@4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/lodash.unescape/-/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c" - integrity sha1-vyJJiGzlFM2hEvrpIYzcBlIR/Jw= lodash@^4.0.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.9.0: version "4.17.14" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.14.tgz#9ce487ae66c96254fe20b599f21b6816028078ba" - integrity sha512-mmKYbW3GLuJeX+iGP+Y7Gp1AiGHGbXHCOh/jZmrawMmsE7MS4znI3RL2FsjbqOyMayHInjOeykW7PEajUk1/xw== -lodash@^4.17.12, lodash@^4.17.13: +lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.15: version "4.17.15" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" - integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== longest@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" - integrity sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc= loose-envify@^1.0.0: version "1.4.0" resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" - integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== dependencies: js-tokens "^3.0.0 || ^4.0.0" -lossless-json@^1.0.2: +lossless-json@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/lossless-json/-/lossless-json-1.0.3.tgz#f9ce7daeb79e4a0f38a3c0340177654b434bc2a2" - integrity sha512-r4w0WrhIHV1lOTVGbTg4Toqwso5x6C8pM7Q/Nto2vy4c7yUSdTYVYlj16uHVX3MT1StpSELDv8yrqGx41MBsDA== lowercase-keys@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" - integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== lru-cache@^2.5.0: version "2.7.3" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" - integrity sha1-bUUk6LlV+V1PW1iFHOId1y+06VI= lru-cache@^4.0.1: version "4.1.5" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" - integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== dependencies: pseudomap "^1.0.2" yallist "^2.1.2" @@ -4616,7 +4027,6 @@ lru-cache@^4.0.1: lru-cache@^5.0.0: version "5.1.1" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" - integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== dependencies: yallist "^3.0.2" @@ -4657,7 +4067,6 @@ lru-cache@^5.0.0: magento2-rest-client@0.0.2: version "0.0.2" resolved "https://registry.yarnpkg.com/magento2-rest-client/-/magento2-rest-client-0.0.2.tgz#2a6ef230c88129a8680b63ead3793ea7e99bf6a4" - integrity sha1-Km7yMMiBKahoC2Pq03k+p+mb9qQ= dependencies: humps "^1.1.0" oauth-1.0a "^1.0.1" @@ -4676,14 +4085,12 @@ magento2-rest-client@0.0.2: make-dir@^1.0.0: version "1.3.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" - integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ== dependencies: pify "^3.0.0" make-dir@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" - integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== dependencies: pify "^4.0.1" semver "^5.6.0" @@ -4691,50 +4098,42 @@ make-dir@^2.1.0: make-dir@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.0.0.tgz#1b5f39f6b9270ed33f9f054c5c0f84304989f801" - integrity sha512-grNJDhb8b1Jm1qeqW5R/O63wUo4UXo2v2HMic6YT9i/HBlF93S8jkMgH7yugvY9ABDShH4VZMn8I+U8+fCNegw== dependencies: semver "^6.0.0" make-error@1.x, make-error@^1.1.1: version "1.3.5" resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.5.tgz#efe4e81f6db28cadd605c70f29c831b58ef776c8" - integrity sha512-c3sIjNUow0+8swNwVpqoH4YCShKNFkMaw6oH1mNS2haDZQqkeZFlHS3dhoeEbKKmJB4vXpJucU6oH75aDYeE9g== makeerror@1.0.x: version "1.0.11" resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" - integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw= dependencies: tmpl "1.0.x" map-age-cleaner@^0.1.1: version "0.1.3" resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" - integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== dependencies: p-defer "^1.0.0" map-cache@^0.2.2: version "0.2.2" resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" - integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= map-visit@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" - integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= dependencies: object-visit "^1.0.0" math-random@^1.0.1: version "1.0.4" resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.4.tgz#5dd6943c938548267016d4e34f057583080c514c" - integrity sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A== md5@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/md5/-/md5-2.2.1.tgz#53ab38d5fe3c8891ba465329ea23fac0540126f9" - integrity sha1-U6s41f48iJG6RlMp6iP6wFQBJvk= dependencies: charenc "~0.0.1" crypt "~0.0.1" @@ -4743,12 +4142,10 @@ md5@^2.2.1: media-typer@0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" - integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= mem@^4.0.0: version "4.3.0" resolved "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178" - integrity sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w== dependencies: map-age-cleaner "^0.1.1" mimic-fn "^2.0.0" @@ -4757,12 +4154,10 @@ mem@^4.0.0: merge-descriptors@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" - integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= merge-graphql-schemas@^1.5.2: version "1.5.8" resolved "https://registry.yarnpkg.com/merge-graphql-schemas/-/merge-graphql-schemas-1.5.8.tgz#89457b60312aabead44d5b2b7625643f8ab9e369" - integrity sha512-0TGOKebltvmWR9h9dPYS2vAqMPThXwJ6gVz7O5MtpBp2sunAg/M25iMSNI7YhU6PDJVtGtldTfqV9a+55YhB+A== dependencies: deepmerge "^2.2.1" glob "^7.1.3" @@ -4771,19 +4166,16 @@ merge-graphql-schemas@^1.5.2: merge-stream@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" - integrity sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE= dependencies: readable-stream "^2.0.1" methods@^1.1.1, methods@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" - integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= micromatch@^2.1.5: version "2.3.11" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" - integrity sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU= dependencies: arr-diff "^2.0.0" array-unique "^0.2.1" @@ -4802,7 +4194,6 @@ micromatch@^2.1.5: micromatch@^3.1.10, micromatch@^3.1.4: version "3.1.10" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" - integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== dependencies: arr-diff "^4.0.0" array-unique "^0.3.2" @@ -4821,7 +4212,6 @@ micromatch@^3.1.10, micromatch@^3.1.4: migrate@^1.6.2: version "1.6.2" resolved "https://registry.yarnpkg.com/migrate/-/migrate-1.6.2.tgz#8970d596780553fe9f545bdf83806df8473f025b" - integrity sha512-XAFab+ArPTo9BHzmihKjsZ5THKRryenA+lwob0R+ax0hLDs7YzJFJT5YZE3gtntZgzdgcuFLs82EJFB/Dssr+g== dependencies: chalk "^1.1.3" commander "^2.9.0" @@ -4835,71 +4225,58 @@ migrate@^1.6.2: mime-db@1.40.0, "mime-db@>= 1.40.0 < 2": version "1.40.0" resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32" - integrity sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA== mime-types@^2.0.8, mime-types@^2.1.12, mime-types@^2.1.18, mime-types@~2.1.19, mime-types@~2.1.24: version "2.1.24" resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81" - integrity sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ== dependencies: mime-db "1.40.0" mime@1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" - integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== mime@^2.2.0: version "2.4.4" resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.4.tgz#bd7b91135fc6b01cde3e9bae33d659b63d8857e5" - integrity sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA== mimic-fn@^1.0.0: version "1.2.0" resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" - integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== mimic-fn@^2.0.0, mimic-fn@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== mimic-response@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" - integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== mimic-response@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-2.0.0.tgz#996a51c60adf12cb8a87d7fb8ef24c2f3d5ebb46" - integrity sha512-8ilDoEapqA4uQ3TwS0jakGONKXVJqpy+RpM+3b7pLdOjghCrEiGp9SRkFbUHAmZW9vdnrENWHjaweIoTIJExSQ== minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" - integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== dependencies: brace-expansion "^1.1.7" minimist@0.0.8: version "0.0.8" resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" - integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= minimist@^1.1.0, minimist@^1.1.1, minimist@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" - integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= minimist@~0.0.1: version "0.0.10" resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" - integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8= minipass@^2.2.1, minipass@^2.3.5: version "2.3.5" resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848" - integrity sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA== dependencies: safe-buffer "^5.1.2" yallist "^3.0.0" @@ -4907,14 +4284,12 @@ minipass@^2.2.1, minipass@^2.3.5: minizlib@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614" - integrity sha512-7+4oTUOWKg7AuL3vloEWekXY2/D20cevzsrNT2kGWm+39J9hGTCBv8VI5Pm5lXZ/o3/mdR4f8rflAPhnQb8mPA== dependencies: minipass "^2.2.1" mixin-deep@^1.2.0: version "1.3.2" resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" - integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== dependencies: for-in "^1.0.2" is-extendable "^1.0.1" @@ -4922,26 +4297,22 @@ mixin-deep@^1.2.0: mkdirp@0.5.1, mkdirp@0.5.x, mkdirp@0.x, mkdirp@^0.5.0, mkdirp@^0.5.1: version "0.5.1" resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" - integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= dependencies: minimist "0.0.8" moment-timezone@^0.5.x: version "0.5.26" resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.26.tgz#c0267ca09ae84631aa3dc33f65bedbe6e8e0d772" - integrity sha512-sFP4cgEKTCymBBKgoxZjYzlSovC20Y6J7y3nanDc5RoBIXKlZhoYwBoZGe3flwU6A372AcRwScH8KiwV6zjy1g== dependencies: moment ">= 2.9.0" "moment@>= 2.9.0", moment@^2.19, moment@^2.22.2: version "2.24.0" resolved "https://registry.yarnpkg.com/moment/-/moment-2.24.0.tgz#0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b" - integrity sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg== morgan@^1.9.0: version "1.9.1" resolved "https://registry.yarnpkg.com/morgan/-/morgan-1.9.1.tgz#0a8d16734a1d9afbc824b99df87e738e58e2da59" - integrity sha512-HQStPIV4y3afTiCYVxirakhlCfGkI161c76kKFca7Fk1JusM//Qeo1ej2XaMniiNeaZklMVrh3vTtIzpzwbpmA== dependencies: basic-auth "~2.0.0" debug "2.6.9" @@ -4952,37 +4323,30 @@ morgan@^1.9.0: ms@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= ms@2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" - integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== ms@^2.0.0, ms@^2.1.1: version "2.1.2" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== mute-stream@0.0.7: version "0.0.7" resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" - integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= mute-stream@~0.0.4: version "0.0.8" resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" - integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== nan@^2.12.1, nan@^2.13.2: version "2.14.0" resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" - integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== nanomatch@^1.2.9: version "1.2.13" resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" - integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== dependencies: arr-diff "^4.0.0" array-unique "^0.3.2" @@ -4999,17 +4363,14 @@ nanomatch@^1.2.9: napi-build-utils@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.1.tgz#1381a0f92c39d66bf19852e7873432fc2123e508" - integrity sha512-boQj1WFgQH3v4clhu3mTNfP+vOBxorDlE8EKiMjUlLG3C4qAESnn9AxIOkFgTR2c9LtzNjPrjS60cT27ZKBhaA== natural-compare@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" - integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= natural@^0.2.0: version "0.2.1" resolved "https://registry.yarnpkg.com/natural/-/natural-0.2.1.tgz#1eb5156a9d90b4591949e20e94ebc77bb2339eda" - integrity sha1-HrUVap2QtFkZSeIOlOvHe7Iznto= dependencies: apparatus ">= 0.0.9" sylvester ">= 0.0.12" @@ -5018,7 +4379,6 @@ natural@^0.2.0: needle@^2.1.0, needle@^2.2.1: version "2.4.0" resolved "https://registry.yarnpkg.com/needle/-/needle-2.4.0.tgz#6833e74975c444642590e15a750288c5f939b57c" - integrity sha512-4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg== dependencies: debug "^3.2.6" iconv-lite "^0.4.4" @@ -5027,56 +4387,46 @@ needle@^2.1.0, needle@^2.2.1: negotiator@0.6.2: version "0.6.2" resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" - integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== neo-async@^2.6.0: version "2.6.1" resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" - integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== nib@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/nib/-/nib-1.1.2.tgz#6a69ede4081b95c0def8be024a4c8ae0c2cbb6c7" - integrity sha1-amnt5AgblcDe+L4CSkyK4MLLtsc= dependencies: stylus "0.54.5" nice-try@^1.0.4: version "1.0.5" resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" - integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== node-abi@^2.7.0: version "2.9.0" resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-2.9.0.tgz#ae4075b298dab2d92dd1e22c48ccc7ffd7f06200" - integrity sha512-jmEOvv0eanWjhX8dX1pmjb7oJl1U1oR4FOh0b2GnvALwSYoOdU7sj+kLDSAyjo4pfC9aj/IxkloxdLJQhSSQBA== dependencies: semver "^5.4.1" node-fetch@^2.2.0, node-fetch@^2.3.0: version "2.6.0" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd" - integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA== node-forge@^0.8.0: version "0.8.5" resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.8.5.tgz#57906f07614dc72762c84cef442f427c0e1b86ee" - integrity sha512-vFMQIWt+J/7FLNyKouZ9TazT74PRV3wgv9UT4cRjC8BffxFbKXkgIWR42URCPSnHm/QDz6BOlb2Q0U4+VQT67Q== node-int64@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" - integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= node-modules-regexp@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" - integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= node-notifier@^5.2.1: version "5.4.0" resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.0.tgz#7b455fdce9f7de0c63538297354f3db468426e6a" - integrity sha512-SUDEb+o71XR5lXSTyivXd9J7fCloE3SyP4lSgt3lU2oSANiox+SxlNRGPjDKrwU1YN3ix2KN/VGGCg0t01rttQ== dependencies: growly "^1.3.0" is-wsl "^1.1.0" @@ -5087,7 +4437,6 @@ node-notifier@^5.2.1: node-pre-gyp@^0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz#39ba4bb1439da030295f899e3b520b7785766149" - integrity sha512-4KghwV8vH5k+g2ylT+sLTjy5wmUOb9vPhnM8NHvRf9dHmnW/CndrFXy2aRPaPST6dugXSdHXfeaHQm77PIz/1A== dependencies: detect-libc "^1.0.2" mkdirp "^0.5.1" @@ -5103,7 +4452,6 @@ node-pre-gyp@^0.12.0: node-redis-scripty@0.0.5: version "0.0.5" resolved "https://registry.yarnpkg.com/node-redis-scripty/-/node-redis-scripty-0.0.5.tgz#4bf2d365ab6dab202cc08b7ac63f8f55aadc9625" - integrity sha1-S/LTZattqyAswIt6xj+PVarcliU= dependencies: extend "^1.2.1" lru-cache "^2.5.0" @@ -5111,7 +4459,6 @@ node-redis-scripty@0.0.5: node-redis-warlock@~0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/node-redis-warlock/-/node-redis-warlock-0.2.0.tgz#56395b994c828e8e32f6aae53b93b6edfcd97990" - integrity sha1-VjlbmUyCjo4y9qrlO5O27fzZeZA= dependencies: node-redis-scripty "0.0.5" uuid "^2.0.1" @@ -5119,17 +4466,14 @@ node-redis-warlock@~0.2.0: node-sync@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/node-sync/-/node-sync-0.2.1.tgz#06cda351516cbfc4520028ae314820fb95ec0068" - integrity sha1-Bs2jUVFsv8RSACiuMUgg+5XsAGg= nodemailer@^4.6.8: version "4.7.0" resolved "https://registry.yarnpkg.com/nodemailer/-/nodemailer-4.7.0.tgz#4420e06abfffd77d0618f184ea49047db84f4ad8" - integrity sha512-IludxDypFpYw4xpzKdMAozBSkzKHmNBvGanUREjJItgJ2NYcK/s8+PggVhj7c2yGFQykKsnnmv1+Aqo0ZfjHmw== nodemon@^1.18.7: version "1.19.1" resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-1.19.1.tgz#576f0aad0f863aabf8c48517f6192ff987cd5071" - integrity sha512-/DXLzd/GhiaDXXbGId5BzxP1GlsqtMGM9zTmkWrgXtSqjKmGSbLicM/oAy4FR0YWm14jCHRwnR31AHS2dYFHrg== dependencies: chokidar "^2.1.5" debug "^3.1.0" @@ -5145,12 +4489,10 @@ nodemon@^1.18.7: noop-logger@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/noop-logger/-/noop-logger-0.1.1.tgz#94a2b1633c4f1317553007d8966fd0e841b6a4c2" - integrity sha1-lKKxYzxPExdVMAfYlm/Q6EG2pMI= nopt@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" - integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00= dependencies: abbrev "1" osenv "^0.1.4" @@ -5158,14 +4500,12 @@ nopt@^4.0.1: nopt@~1.0.10: version "1.0.10" resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" - integrity sha1-bd0hvSoxQXuScn3Vhfim83YI6+4= dependencies: abbrev "1" normalize-package-data@^2.3.2: version "2.5.0" resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" - integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== dependencies: hosted-git-info "^2.1.4" resolve "^1.10.0" @@ -5175,24 +4515,20 @@ normalize-package-data@^2.3.2: normalize-path@^2.0.0, normalize-path@^2.0.1, normalize-path@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" - integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= dependencies: remove-trailing-separator "^1.0.1" normalize-path@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== npm-bundled@^1.0.1: version "1.0.6" resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd" - integrity sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g== npm-packlist@^1.1.6: version "1.4.4" resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.4.tgz#866224233850ac534b63d1a6e76050092b5d2f44" - integrity sha512-zTLo8UcVYtDU3gdeaFu2Xu0n0EvelfHDGuqtNIn5RO7yQj4H1TqNdBc/yZjxnWA0PVB8D3Woyp0i5B43JwQ6Vw== dependencies: ignore-walk "^3.0.1" npm-bundled "^1.0.1" @@ -5200,14 +4536,12 @@ npm-packlist@^1.1.6: npm-run-path@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" - integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= dependencies: path-key "^2.0.0" npmlog@^4.0.1, npmlog@^4.0.2, npmlog@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" - integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== dependencies: are-we-there-yet "~1.1.2" console-control-strings "~1.1.0" @@ -5217,7 +4551,6 @@ npmlog@^4.0.1, npmlog@^4.0.2, npmlog@^4.1.2: nssocket@0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/nssocket/-/nssocket-0.6.0.tgz#59f96f6ff321566f33c70f7dbeeecdfdc07154fa" - integrity sha1-Wflvb/MhVm8zxw99vu7N/cBxVPo= dependencies: eventemitter2 "~0.4.14" lazy "~1.0.11" @@ -5225,34 +4558,28 @@ nssocket@0.6.0: number-is-nan@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" - integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= nwsapi@^2.0.7: version "2.1.4" resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.1.4.tgz#e006a878db23636f8e8a67d33ca0e4edf61a842f" - integrity sha512-iGfd9Y6SFdTNldEy2L0GUhcarIutFmk+MPWIn9dmj8NMIup03G08uUF2KGbbmv/Ux4RT0VZJoP/sVbWA6d/VIw== oauth-1.0a@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/oauth-1.0a/-/oauth-1.0a-1.0.1.tgz#29a9b580d7cf5de29573e2269fb05eb3efb1d819" - integrity sha1-Kam1gNfPXeKVc+Imn7Bes++x2Bk= dependencies: crypto-js "~3.1.2-2" oauth-sign@~0.9.0: version "0.9.0" resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" - integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== object-assign@^4, object-assign@^4.0.1, object-assign@^4.1.0: version "4.1.1" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" - integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= object-copy@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" - integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= dependencies: copy-descriptor "^0.1.0" define-property "^0.2.5" @@ -5261,19 +4588,16 @@ object-copy@^0.1.0: object-keys@^1.0.12: version "1.1.1" resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" - integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== object-visit@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" - integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= dependencies: isobject "^3.0.0" object.getownpropertydescriptors@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" - integrity sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY= dependencies: define-properties "^1.1.2" es-abstract "^1.5.1" @@ -5281,7 +4605,6 @@ object.getownpropertydescriptors@^2.0.3: object.omit@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" - integrity sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo= dependencies: for-own "^0.1.4" is-extendable "^0.1.1" @@ -5289,14 +4612,12 @@ object.omit@^2.0.0: object.pick@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" - integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= dependencies: isobject "^3.0.1" object.values@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9" - integrity sha512-8mf0nKLAoFX6VlNVdhGj31SVYpaNFtUnuoOXWyFEstsWRgU837AK+JYM0iAxwkSzGRbwn8cbFmgbyxj1j4VbXg== dependencies: define-properties "^1.1.3" es-abstract "^1.12.0" @@ -5306,40 +4627,34 @@ object.values@^1.1.0: on-finished@~2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" - integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= dependencies: ee-first "1.1.1" on-headers@~1.0.1, on-headers@~1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" - integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= dependencies: wrappy "1" onetime@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" - integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= dependencies: mimic-fn "^1.0.0" onetime@^5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.0.tgz#fff0f3c91617fe62bb50189636e99ac8a6df7be5" - integrity sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q== dependencies: mimic-fn "^2.1.0" optimist@^0.6.1, optimist@latest: version "0.6.1" resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" - integrity sha1-2j6nRob6IaGaERwybpDrFaAZZoY= dependencies: minimist "~0.0.1" wordwrap "~0.0.2" @@ -5347,7 +4662,6 @@ optimist@^0.6.1, optimist@latest: optionator@^0.8.1, optionator@^0.8.2: version "0.8.2" resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" - integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= dependencies: deep-is "~0.1.3" fast-levenshtein "~2.0.4" @@ -5359,19 +4673,16 @@ optionator@^0.8.1, optionator@^0.8.2: os-homedir@^1.0.0, os-homedir@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" - integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= os-locale@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" - integrity sha1-IPnxeuKe00XoveWDsT0gCYA8FNk= dependencies: lcid "^1.0.0" os-locale@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" - integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q== dependencies: execa "^1.0.0" lcid "^2.0.0" @@ -5380,17 +4691,14 @@ os-locale@^3.0.0: os-shim@^0.1.2: version "0.1.3" resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917" - integrity sha1-a2LDeRz3kJ6jXtRuF2WLtBfLORc= os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" - integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= osenv@^0.1.4: version "0.1.5" resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" - integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== dependencies: os-homedir "^1.0.0" os-tmpdir "^1.0.0" @@ -5398,77 +4706,73 @@ osenv@^0.1.4: p-defer@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" - integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= p-each-series@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-1.0.0.tgz#930f3d12dd1f50e7434457a22cd6f04ac6ad7f71" - integrity sha1-kw89Et0fUOdDRFeiLNbwSsatf3E= dependencies: p-reduce "^1.0.0" p-finally@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" - integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= p-is-promise@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e" - integrity sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg== - -p-is-promise@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-3.0.0.tgz#58e78c7dfe2e163cf2a04ff869e7c1dba64a5971" - integrity sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ== p-limit@^1.1.0: version "1.3.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" - integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== dependencies: p-try "^1.0.0" p-limit@^2.0.0, p-limit@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.0.tgz#417c9941e6027a9abcba5092dd2904e255b5fbc2" - integrity sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ== dependencies: p-try "^2.0.0" p-locate@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" - integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= dependencies: p-limit "^1.1.0" p-locate@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" - integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== dependencies: p-limit "^2.0.0" +p-queue@^6.1.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-6.1.1.tgz#eedbaf7335b4931ef857e2e58063fed461b97e80" + dependencies: + eventemitter3 "^4.0.0" + p-timeout "^3.1.0" + p-reduce@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-1.0.0.tgz#18c2b0dd936a4690a529f8231f58a0fdb6a47dfa" - integrity sha1-GMKw3ZNqRpClKfgjH1ig/bakffo= + +p-timeout@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.1.0.tgz#198c1f503bb973e9b9727177a276c80afd6851f3" + dependencies: + p-finally "^1.0.0" p-try@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" - integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= p-try@^2.0.0: version "2.2.0" resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== package-json@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" - integrity sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0= dependencies: got "^6.7.1" registry-auth-token "^3.0.1" @@ -5478,14 +4782,12 @@ package-json@^4.0.0: parent-module@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" - integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== dependencies: callsites "^3.0.0" parse-glob@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" - integrity sha1-ssN2z7EfNVE7rdFz7wu246OIORw= dependencies: glob-base "^0.3.0" is-dotfile "^1.0.0" @@ -5495,14 +4797,12 @@ parse-glob@^3.0.4: parse-json@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" - integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= dependencies: error-ex "^1.2.0" parse-json@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" - integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= dependencies: error-ex "^1.3.1" json-parse-better-errors "^1.0.1" @@ -5510,22 +4810,18 @@ parse-json@^4.0.0: parse5@4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" - integrity sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA== parseurl@~1.3.3: version "1.3.3" resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" - integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== pascalcase@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" - integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= passport-jwt@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/passport-jwt/-/passport-jwt-4.0.0.tgz#7f0be7ba942e28b9f5d22c2ebbb8ce96ef7cf065" - integrity sha512-BwC0n2GP/1hMVjR4QpnvqA61TxenUMlmfNjYNgK0ZAs0HK4SOQkHcSv4L328blNTLtHq7DbmvyNJiH+bn6C5Mg== dependencies: jsonwebtoken "^8.2.0" passport-strategy "^1.0.0" @@ -5533,12 +4829,10 @@ passport-jwt@^4.0.0: passport-strategy@1.x.x, passport-strategy@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/passport-strategy/-/passport-strategy-1.0.0.tgz#b5539aa8fc225a3d1ad179476ddf236b440f52e4" - integrity sha1-tVOaqPwiWj0a0XlHbd8ja0QPUuQ= passport@^0.3.2: version "0.3.2" resolved "https://registry.yarnpkg.com/passport/-/passport-0.3.2.tgz#9dd009f915e8fe095b0124a01b8f82da07510102" - integrity sha1-ndAJ+RXo/glbASSgG4+C2gdRAQI= dependencies: passport-strategy "1.x.x" pause "0.0.1" @@ -5546,49 +4840,40 @@ passport@^0.3.2: path-dirname@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" - integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA= path-exists@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" - integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s= dependencies: pinkie-promise "^2.0.0" path-exists@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" - integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= path-is-absolute@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= path-is-inside@^1.0.1, path-is-inside@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" - integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= path-key@^2.0.0, path-key@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" - integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= path-parse@^1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" - integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== path-to-regexp@0.1.7: version "0.1.7" resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" - integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= path-type@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" - integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE= dependencies: graceful-fs "^4.1.2" pify "^2.0.0" @@ -5597,91 +4882,76 @@ path-type@^1.0.0: path-type@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" - integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM= dependencies: pify "^2.0.0" path-type@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" - integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== dependencies: pify "^3.0.0" pause@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/pause/-/pause-0.0.1.tgz#1d408b3fdb76923b9543d96fb4c9dfd535d9cb5d" - integrity sha1-HUCLP9t2kjuVQ9lvtMnf1TXZy10= performance-now@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" - integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= pidusage@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/pidusage/-/pidusage-1.2.0.tgz#65ee96ace4e08a4cd3f9240996c85b367171ee92" - integrity sha512-OGo+iSOk44HRJ8q15AyG570UYxcm5u+R99DI8Khu8P3tKGkVu5EZX4ywHglWSTMNNXQ274oeGpYrvFEhDIFGPg== pify@^2.0.0: version "2.3.0" resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" - integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= pify@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" - integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= pify@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" - integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== pinkie-promise@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" - integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= dependencies: pinkie "^2.0.0" pinkie@^2.0.0: version "2.0.4" resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" - integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= pirates@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" - integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA== dependencies: node-modules-regexp "^1.0.0" pkg-dir@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" - integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= dependencies: find-up "^2.1.0" pkg-dir@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" - integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== dependencies: find-up "^3.0.0" pm2-axon-rpc@^0.5.1: version "0.5.1" resolved "https://registry.yarnpkg.com/pm2-axon-rpc/-/pm2-axon-rpc-0.5.1.tgz#ad3c43c43811c71f13e5eee2821194d03ceb03fe" - integrity sha512-hT8gN3/j05895QLXpwg+Ws8PjO4AVID6Uf9StWpud9HB2homjc1KKCcI0vg9BNOt56FmrqKDT1NQgheIz35+sA== dependencies: debug "^3.0" pm2-axon@3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/pm2-axon/-/pm2-axon-3.1.0.tgz#1b4527f3385e203adc1a5b0488bb52f0322731da" - integrity sha512-5sBM+vHw0Cp2K9CJ9ZOYhKtNCCcgQ0eKOyFrSo5Jusbq9FfvuelsMG4WDaxkqosaQbf8N5YfyHhD7eOUcnm5rQ== dependencies: amp "~0.3.1" amp-message "~0.1.1" @@ -5691,7 +4961,6 @@ pm2-axon@3.1.0: pm2-deploy@^0.3.9: version "0.3.10" resolved "https://registry.yarnpkg.com/pm2-deploy/-/pm2-deploy-0.3.10.tgz#5b6689df8db2390589244b7c15c563bd467093f6" - integrity sha512-WagPKsX+LDCe8wLCL5nzu8RQvVUQ5GlFdJRVYCL0ogFnHfYRym91qNU4PkNSWSq11pdvG8la7DTjdW6FWXc8lw== dependencies: async "^2.6" tv4 "^1.3" @@ -5699,14 +4968,12 @@ pm2-deploy@^0.3.9: pm2-multimeter@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/pm2-multimeter/-/pm2-multimeter-0.1.2.tgz#1a1e55153d41a05534cea23cfe860abaa0eb4ace" - integrity sha1-Gh5VFT1BoFU0zqI8/oYKuqDrSs4= dependencies: charm "~0.1.1" pm2@^2.10.4: version "2.10.4" resolved "https://registry.yarnpkg.com/pm2/-/pm2-2.10.4.tgz#dd292fd26aed882f6e9f7b9652191387d2debe6a" - integrity sha512-AuAA6DoF/R3L9zSuYtKzaEd6UFvhCKqfW49dgLe0Q4SQtYmQMmXmyEAp5tr1iduJrqGRwpb5ytVm2rWZ56/4Vg== dependencies: async "^2.5" blessed "^0.1.81" @@ -5742,7 +5009,6 @@ pm2@^2.10.4: pmx@^1.6: version "1.6.7" resolved "https://registry.yarnpkg.com/pmx/-/pmx-1.6.7.tgz#b0fc8061bc8343a4069d18e4ee4f031de0af890a" - integrity sha512-CoyZD1EWj/fvpuEPnndB11s5onzN5p/0bxGsBuwbyb8uFtg3lMxXys1pXs88gReiRnMSYCSt25J3GCc6AnxoFQ== dependencies: debug "^3" deep-metrics "^0.0.1" @@ -5753,17 +5019,14 @@ pmx@^1.6: pn@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" - integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA== posix-character-classes@^0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" - integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= pre-commit@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/pre-commit/-/pre-commit-1.2.2.tgz#dbcee0ee9de7235e57f79c56d7ce94641a69eec6" - integrity sha1-287g7p3nI15X95xW186UZBpp7sY= dependencies: cross-spawn "^5.0.1" spawn-sync "^1.0.15" @@ -5772,7 +5035,6 @@ pre-commit@^1.2.2: prebuild-install@^5.3.0: version "5.3.0" resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-5.3.0.tgz#58b4d8344e03590990931ee088dd5401b03004c8" - integrity sha512-aaLVANlj4HgZweKttFNUVNRxDukytuIuxeK2boIMHjagNJCiVKWFsKF4tCE3ql3GbrD2tExPQ7/pwtEJcHNZeg== dependencies: detect-libc "^1.0.3" expand-template "^2.0.3" @@ -5794,22 +5056,18 @@ prebuild-install@^5.3.0: prelude-ls@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" - integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= prepend-http@^1.0.1: version "1.0.4" resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" - integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw= preserve@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" - integrity sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks= pretty-format@^24.8.0: version "24.8.0" resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.8.0.tgz#8dae7044f58db7cb8be245383b565a963e3c27f2" - integrity sha512-P952T7dkrDEplsR+TuY7q3VXDae5Sr7zmQb12JU/NDQa/3CH7/QW0yvqLcGN6jL+zQFKaoJcPc+yJxMTGmosqw== dependencies: "@jest/types" "^24.8.0" ansi-regex "^4.0.0" @@ -5819,36 +5077,30 @@ pretty-format@^24.8.0: process-nextick-args@~2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== progress@^2.0.0: version "2.0.3" resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" - integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== promise-queue@^2.2.3: version "2.2.5" resolved "https://registry.yarnpkg.com/promise-queue/-/promise-queue-2.2.5.tgz#2f6f5f7c0f6d08109e967659c79b88a9ed5e93b4" - integrity sha1-L29ffA9tCBCelnZZx5uIqe1ek7Q= promise@^7.0.1: version "7.3.1" resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" - integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== dependencies: asap "~2.0.3" promptly@2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/promptly/-/promptly-2.2.0.tgz#2a13fa063688a2a5983b161fff0108a07d26fc74" - integrity sha1-KhP6BjaIoqWYOxYf/wEIoH0m/HQ= dependencies: read "^1.0.4" prompts@^2.0.1: version "2.1.0" resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.1.0.tgz#bf90bc71f6065d255ea2bdc0fe6520485c1b45db" - integrity sha512-+x5TozgqYdOwWsQFZizE/Tra3fKvAoy037kOyU6cgz84n8f6zxngLOV4O32kTwt9FcLCxAqw0P/c8rOr9y+Gfg== dependencies: kleur "^3.0.2" sisteransi "^1.0.0" @@ -5856,7 +5108,6 @@ prompts@^2.0.1: proxy-addr@~2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.5.tgz#34cbd64a2d81f4b1fd21e76f9f06c8a45299ee34" - integrity sha512-t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ== dependencies: forwarded "~0.1.2" ipaddr.js "1.9.0" @@ -5864,22 +5115,18 @@ proxy-addr@~2.0.5: pseudomap@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" - integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= psl@^1.1.24, psl@^1.1.28: version "1.2.0" resolved "https://registry.yarnpkg.com/psl/-/psl-1.2.0.tgz#df12b5b1b3a30f51c329eacbdef98f3a6e136dc6" - integrity sha512-GEn74ZffufCmkDDLNcl3uuyF/aSD6exEyh1v/ZSdAomB82t6G9hzJVRx0jBmLDW+VfZqks3aScmMw9DszwUalA== pstree.remy@^1.1.6: version "1.1.7" resolved "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.7.tgz#c76963a28047ed61542dc361aa26ee55a7fa15f3" - integrity sha512-xsMgrUwRpuGskEzBFkH8NmTimbZ5PcPup0LA8JJkHIm2IMUbQcpo3yeLNWVrufEYjh8YwtSVh0xz6UeWc5Oh5A== pug-attrs@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/pug-attrs/-/pug-attrs-2.0.4.tgz#b2f44c439e4eb4ad5d4ef25cac20d18ad28cc336" - integrity sha512-TaZ4Z2TWUPDJcV3wjU3RtUXMrd3kM4Wzjbe3EWnSsZPsJ3LDI0F3yCnf2/W7PPFF+edUFQ0HgDL1IoxSz5K8EQ== dependencies: constantinople "^3.0.1" js-stringify "^1.0.1" @@ -5888,7 +5135,6 @@ pug-attrs@^2.0.4: pug-code-gen@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/pug-code-gen/-/pug-code-gen-2.0.2.tgz#ad0967162aea077dcf787838d94ed14acb0217c2" - integrity sha512-kROFWv/AHx/9CRgoGJeRSm+4mLWchbgpRzTEn8XCiwwOy6Vh0gAClS8Vh5TEJ9DBjaP8wCjS3J6HKsEsYdvaCw== dependencies: constantinople "^3.1.2" doctypes "^1.1.0" @@ -5902,12 +5148,10 @@ pug-code-gen@^2.0.2: pug-error@^1.3.3: version "1.3.3" resolved "https://registry.yarnpkg.com/pug-error/-/pug-error-1.3.3.tgz#f342fb008752d58034c185de03602dd9ffe15fa6" - integrity sha512-qE3YhESP2mRAWMFJgKdtT5D7ckThRScXRwkfo+Erqga7dyJdY3ZquspprMCj/9sJ2ijm5hXFWQE/A3l4poMWiQ== pug-filters@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/pug-filters/-/pug-filters-3.1.1.tgz#ab2cc82db9eeccf578bda89130e252a0db026aa7" - integrity sha512-lFfjNyGEyVWC4BwX0WyvkoWLapI5xHSM3xZJFUhx4JM4XyyRdO8Aucc6pCygnqV2uSgJFaJWW3Ft1wCWSoQkQg== dependencies: clean-css "^4.1.11" constantinople "^3.0.1" @@ -5920,7 +5164,6 @@ pug-filters@^3.1.1: pug-lexer@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/pug-lexer/-/pug-lexer-4.1.0.tgz#531cde48c7c0b1fcbbc2b85485c8665e31489cfd" - integrity sha512-i55yzEBtjm0mlplW4LoANq7k3S8gDdfC6+LThGEvsK4FuobcKfDAwt6V4jKPH9RtiE3a2Akfg5UpafZ1OksaPA== dependencies: character-parser "^2.1.1" is-expression "^3.0.0" @@ -5929,7 +5172,6 @@ pug-lexer@^4.1.0: pug-linker@^3.0.6: version "3.0.6" resolved "https://registry.yarnpkg.com/pug-linker/-/pug-linker-3.0.6.tgz#f5bf218b0efd65ce6670f7afc51658d0f82989fb" - integrity sha512-bagfuHttfQOpANGy1Y6NJ+0mNb7dD2MswFG2ZKj22s8g0wVsojpRlqveEQHmgXXcfROB2RT6oqbPYr9EN2ZWzg== dependencies: pug-error "^1.3.3" pug-walk "^1.1.8" @@ -5937,7 +5179,6 @@ pug-linker@^3.0.6: pug-load@^2.0.12: version "2.0.12" resolved "https://registry.yarnpkg.com/pug-load/-/pug-load-2.0.12.tgz#d38c85eb85f6e2f704dea14dcca94144d35d3e7b" - integrity sha512-UqpgGpyyXRYgJs/X60sE6SIf8UBsmcHYKNaOccyVLEuT6OPBIMo6xMPhoJnqtB3Q3BbO4Z3Bjz5qDsUWh4rXsg== dependencies: object-assign "^4.1.0" pug-walk "^1.1.8" @@ -5945,7 +5186,6 @@ pug-load@^2.0.12: pug-parser@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/pug-parser/-/pug-parser-5.0.1.tgz#03e7ada48b6840bd3822f867d7d90f842d0ffdc9" - integrity sha512-nGHqK+w07p5/PsPIyzkTQfzlYfuqoiGjaoqHv1LjOv2ZLXmGX1O+4Vcvps+P4LhxZ3drYSljjq4b+Naid126wA== dependencies: pug-error "^1.3.3" token-stream "0.0.1" @@ -5953,24 +5193,20 @@ pug-parser@^5.0.1: pug-runtime@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/pug-runtime/-/pug-runtime-2.0.5.tgz#6da7976c36bf22f68e733c359240d8ae7a32953a" - integrity sha512-P+rXKn9un4fQY77wtpcuFyvFaBww7/91f3jHa154qU26qFAnOe6SW1CbIDcxiG5lLK9HazYrMCCuDvNgDQNptw== pug-strip-comments@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/pug-strip-comments/-/pug-strip-comments-1.0.4.tgz#cc1b6de1f6e8f5931cf02ec66cdffd3f50eaf8a8" - integrity sha512-i5j/9CS4yFhSxHp5iKPHwigaig/VV9g+FgReLJWWHEHbvKsbqL0oP/K5ubuLco6Wu3Kan5p7u7qk8A4oLLh6vw== dependencies: pug-error "^1.3.3" pug-walk@^1.1.8: version "1.1.8" resolved "https://registry.yarnpkg.com/pug-walk/-/pug-walk-1.1.8.tgz#b408f67f27912f8c21da2f45b7230c4bd2a5ea7a" - integrity sha512-GMu3M5nUL3fju4/egXwZO0XLi6fW/K3T3VTgFQ14GxNi8btlxgT5qZL//JwZFm/2Fa64J/PNS8AZeys3wiMkVA== pug@^2.0.0-beta3: version "2.0.4" resolved "https://registry.yarnpkg.com/pug/-/pug-2.0.4.tgz#ee7682ec0a60494b38d48a88f05f3b0ac931377d" - integrity sha512-XhoaDlvi6NIzL49nu094R2NA6P37ijtgMDuWE+ofekDChvfKnzFal60bhSdiy8y2PBO6fmz3oMEIcfpBVRUdvw== dependencies: pug-code-gen "^2.0.2" pug-filters "^3.1.1" @@ -5984,7 +5220,6 @@ pug@^2.0.0-beta3: pump@^1.0.0: version "1.0.3" resolved "https://registry.yarnpkg.com/pump/-/pump-1.0.3.tgz#5dfe8311c33bbf6fc18261f9f34702c47c08a954" - integrity sha512-8k0JupWme55+9tCVE+FS5ULT3K6AbgqrGa58lTT49RpyfwwcGedHqaC5LlQNdEAumn/wFsu6aPwkuPMioy8kqw== dependencies: end-of-stream "^1.1.0" once "^1.3.1" @@ -5992,7 +5227,6 @@ pump@^1.0.0: pump@^2.0.0, pump@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" - integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA== dependencies: end-of-stream "^1.1.0" once "^1.3.1" @@ -6000,7 +5234,6 @@ pump@^2.0.0, pump@^2.0.1: pump@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" - integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== dependencies: end-of-stream "^1.1.0" once "^1.3.1" @@ -6008,7 +5241,6 @@ pump@^3.0.0: pumpify@^1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" - integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ== dependencies: duplexify "^3.6.0" inherits "^2.0.3" @@ -6017,7 +5249,6 @@ pumpify@^1.5.1: pumpify@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-2.0.0.tgz#975519e5a9890ae0fb4724274e3fec97e43a30b6" - integrity sha512-ieN9HmpFPt4J4U4qnjN4BxrnqpPPXJyp3qFErxfwBtFOec6ewpIHdS2eu3TkmGW6S+RzFGEOGpm5ih/X/onRPQ== dependencies: duplexify "^4.1.1" inherits "^2.0.3" @@ -6026,44 +5257,44 @@ pumpify@^2.0.0: punycode@1.3.2: version "1.3.2" resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" - integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= punycode@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" - integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= punycode@^2.1.0, punycode@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" - integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== qs@6.7.0: version "6.7.0" resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" - integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== qs@~6.5.2: version "6.5.2" resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" - integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== + +query-string@^6.8.3: + version "6.8.3" + resolved "https://registry.yarnpkg.com/query-string/-/query-string-6.8.3.tgz#fd9fb7ffb068b79062b43383685611ee47777d4b" + dependencies: + decode-uri-component "^0.2.0" + split-on-first "^1.0.0" + strict-uri-encode "^2.0.0" querystring@0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" - integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= queue@^4.4.0: version "4.5.1" resolved "https://registry.yarnpkg.com/queue/-/queue-4.5.1.tgz#6e4290a2d7e99dc75b34494431633fe5437b0dac" - integrity sha512-AMD7w5hRXcFSb8s9u38acBZ+309u6GsiibP4/0YacJeaurRshogB7v/ZcVPxP5gD5+zIw6ixRHdutiYUJfwKHw== dependencies: inherits "~2.0.0" randomatic@^3.0.0: version "3.1.1" resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.1.tgz#b776efc59375984e36c537b2f51a1f0aff0da1ed" - integrity sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw== dependencies: is-number "^4.0.0" kind-of "^6.0.0" @@ -6072,12 +5303,10 @@ randomatic@^3.0.0: range-parser@~1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" - integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== raw-body@2.4.0: version "2.4.0" resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332" - integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q== dependencies: bytes "3.1.0" http-errors "1.7.2" @@ -6087,7 +5316,6 @@ raw-body@2.4.0: rc@^1.0.1, rc@^1.1.6, rc@^1.2.7: version "1.2.8" resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" - integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== dependencies: deep-extend "^0.6.0" ini "~1.3.0" @@ -6097,12 +5325,10 @@ rc@^1.0.1, rc@^1.1.6, rc@^1.2.7: react-is@^16.8.4: version "16.8.6" resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.8.6.tgz#5bbc1e2d29141c9fbdfed456343fe2bc430a6a16" - integrity sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA== read-pkg-up@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" - integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI= dependencies: find-up "^1.0.0" read-pkg "^1.0.0" @@ -6110,7 +5336,6 @@ read-pkg-up@^1.0.1: read-pkg-up@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" - integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4= dependencies: find-up "^2.0.0" read-pkg "^2.0.0" @@ -6118,7 +5343,6 @@ read-pkg-up@^2.0.0: read-pkg-up@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-4.0.0.tgz#1b221c6088ba7799601c808f91161c66e58f8978" - integrity sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA== dependencies: find-up "^3.0.0" read-pkg "^3.0.0" @@ -6126,7 +5350,6 @@ read-pkg-up@^4.0.0: read-pkg@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" - integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg= dependencies: load-json-file "^1.0.0" normalize-package-data "^2.3.2" @@ -6135,7 +5358,6 @@ read-pkg@^1.0.0: read-pkg@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" - integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg= dependencies: load-json-file "^2.0.0" normalize-package-data "^2.3.2" @@ -6144,7 +5366,6 @@ read-pkg@^2.0.0: read-pkg@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" - integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k= dependencies: load-json-file "^4.0.0" normalize-package-data "^2.3.2" @@ -6153,14 +5374,12 @@ read-pkg@^3.0.0: read@^1.0.4: version "1.0.7" resolved "https://registry.yarnpkg.com/read/-/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4" - integrity sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ= dependencies: mute-stream "~0.0.4" "readable-stream@2 || 3", readable-stream@^3.0.2, readable-stream@^3.1.1: version "3.4.0" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.4.0.tgz#a51c26754658e0a3c21dbf59163bd45ba6f447fc" - integrity sha512-jItXPLmrSR8jmTRmRWJXCnGJsfy85mB3Wd/uINMXA65yrnFo0cPClFIUWzo2najVNSl+mx7/4W8ttlLWJe99pQ== dependencies: inherits "^2.0.3" string_decoder "^1.1.1" @@ -6169,7 +5388,6 @@ read@^1.0.4: readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.5, readable-stream@~2.3.6: version "2.3.6" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" - integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== dependencies: core-util-is "~1.0.0" inherits "~2.0.3" @@ -6182,7 +5400,6 @@ readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable readdirp@^2.0.0, readdirp@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" - integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== dependencies: graceful-fs "^4.1.11" micromatch "^3.1.10" @@ -6191,60 +5408,50 @@ readdirp@^2.0.0, readdirp@^2.2.1: realpath-native@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c" - integrity sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA== dependencies: util.promisify "^1.0.0" rechoir@^0.6.2: version "0.6.2" resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" - integrity sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q= dependencies: resolve "^1.1.6" redis-commands@1.5.0, redis-commands@^1.2.0: version "1.5.0" resolved "https://registry.yarnpkg.com/redis-commands/-/redis-commands-1.5.0.tgz#80d2e20698fe688f227127ff9e5164a7dd17e785" - integrity sha512-6KxamqpZ468MeQC3bkWmCB1fp56XL64D4Kf0zJSwDZbVLLm7KFkoIcHrgRvQ+sk8dnhySs7+yBg94yIkAK7aJg== redis-errors@^1.0.0, redis-errors@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/redis-errors/-/redis-errors-1.2.0.tgz#eb62d2adb15e4eaf4610c04afe1529384250abad" - integrity sha1-62LSrbFeTq9GEMBK/hUpOEJQq60= redis-jsonify@^1.0.1: version "1.2.0" resolved "https://registry.yarnpkg.com/redis-jsonify/-/redis-jsonify-1.2.0.tgz#4074c0986c89eda44ec13c6a8af8b9c0118a4c58" - integrity sha1-QHTAmGyJ7aROwTxqivi5wBGKTFg= redis-parser@^2.0.0: version "2.6.0" resolved "https://registry.yarnpkg.com/redis-parser/-/redis-parser-2.6.0.tgz#52ed09dacac108f1a631c07e9b69941e7a19504b" - integrity sha1-Uu0J2srBCPGmMcB+m2mUHnoZUEs= redis-parser@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/redis-parser/-/redis-parser-3.0.0.tgz#b66d828cdcafe6b4b8a428a7def4c6bcac31c8b4" - integrity sha1-tm2CjNyv5rS4pCin3vTGvKwxyLQ= dependencies: redis-errors "^1.0.0" redis-tag-cache@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/redis-tag-cache/-/redis-tag-cache-1.2.1.tgz#07d6e1f945d9d5c8186602129cb10573167d7534" - integrity sha512-0F+rLtoIkz4NOWGt9k3qaPcbpvr6+wcEC9aWV78newMKTRN/nIYHgvfyO1Q0ySEepiEYbqj9DhjvQ4CUAtT9/g== dependencies: ioredis "^4.0.0" redis@^0.12.1: version "0.12.1" resolved "https://registry.yarnpkg.com/redis/-/redis-0.12.1.tgz#64df76ad0fc8acebaebd2a0645e8a48fac49185e" - integrity sha1-ZN92rQ/IrOuuvSoGReikj6xJGF4= redis@~2.6.0-2: version "2.6.5" resolved "https://registry.yarnpkg.com/redis/-/redis-2.6.5.tgz#87c1eff4a489f94b70871f3d08b6988f23a95687" - integrity sha1-h8Hv9KSJ+Utwhx89CLaYjyOpVoc= dependencies: double-ended-queue "^2.1.0-0" redis-commands "^1.2.0" @@ -6253,7 +5460,6 @@ redis@~2.6.0-2: reds@^0.2.5: version "0.2.5" resolved "https://registry.yarnpkg.com/reds/-/reds-0.2.5.tgz#38a767f7663cd749036848697d82c74fd29bc01f" - integrity sha1-OKdn92Y810kDaEhpfYLHT9KbwB8= dependencies: natural "^0.2.0" redis "^0.12.1" @@ -6261,19 +5467,16 @@ reds@^0.2.5: regenerator-runtime@^0.11.0: version "0.11.1" resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" - integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== regex-cache@^0.4.2: version "0.4.4" resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" - integrity sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ== dependencies: is-equal-shallow "^0.1.3" regex-not@^1.0.0, regex-not@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" - integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== dependencies: extend-shallow "^3.0.2" safe-regex "^1.1.0" @@ -6281,12 +5484,10 @@ regex-not@^1.0.0, regex-not@^1.0.2: regexpp@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" - integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== registry-auth-token@^3.0.1: version "3.4.0" resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.4.0.tgz#d7446815433f5d5ed6431cd5dca21048f66b397e" - integrity sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A== dependencies: rc "^1.1.6" safe-buffer "^5.0.1" @@ -6294,41 +5495,34 @@ registry-auth-token@^3.0.1: registry-url@^3.0.3: version "3.1.0" resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" - integrity sha1-PU74cPc93h138M+aOBQyRE4XSUI= dependencies: rc "^1.0.1" remove-accents@^0.4.2: version "0.4.2" resolved "https://registry.yarnpkg.com/remove-accents/-/remove-accents-0.4.2.tgz#0a43d3aaae1e80db919e07ae254b285d9e1c7bb5" - integrity sha1-CkPTqq4egNuRngeuJUsoXZ4ce7U= remove-trailing-separator@^1.0.1: version "1.1.0" resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" - integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= repeat-element@^1.1.2: version "1.1.3" resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" - integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== repeat-string@^1.5.2, repeat-string@^1.6.1: version "1.6.1" resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" - integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= request-promise-core@1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.2.tgz#339f6aababcafdb31c799ff158700336301d3346" - integrity sha512-UHYyq1MO8GsefGEt7EprS8UrXsm1TxEvFUX1IMTuSLU2Rh7fTIdFtl8xD7JiEYiWU2dl+NYAjCTksTehQUxPag== dependencies: lodash "^4.17.11" request-promise-native@^1.0.5: version "1.0.7" resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.7.tgz#a49868a624bdea5069f1251d0a836e0d89aa2c59" - integrity sha512-rIMnbBdgNViL37nZ1b3L/VfPOpSi0TqVDQPAvO6U14lMzOLrt5nilxCQqtDKhZeDiW0/hkCXGoQjhgJd/tCh6w== dependencies: request-promise-core "1.1.2" stealthy-require "^1.1.1" @@ -6337,7 +5531,6 @@ request-promise-native@^1.0.5: request@2.x.x, request@>=2.9.0, request@^2.72.0, request@^2.85.0, request@^2.87.0, request@^2.88.0: version "2.88.0" resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" - integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg== dependencies: aws-sign2 "~0.7.0" aws4 "^1.8.0" @@ -6360,10 +5553,9 @@ request@2.x.x, request@>=2.9.0, request@^2.72.0, request@^2.85.0, request@^2.87. tunnel-agent "^0.6.0" uuid "^3.3.2" -requestretry@^3.0.1: - version "3.1.0" - resolved "https://registry.yarnpkg.com/requestretry/-/requestretry-3.1.0.tgz#c8e1976bb946f14889d3604bbad56a01d191c10d" - integrity sha512-DkvCPK6qvwxIuVA5TRCvi626WHC2rWjF/n7SCQvVHAr2JX9i1/cmIpSEZlmHAo+c1bj9rjaKoZ9IsKwCpTkoXA== +requestretry@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/requestretry/-/requestretry-4.0.0.tgz#4e9e7280a7d8561bf33e9925264cf026e2be3e89" dependencies: extend "^3.0.2" lodash "^4.17.10" @@ -6372,66 +5564,54 @@ requestretry@^3.0.1: require-directory@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= require-main-filename@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" - integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= require-main-filename@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" - integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== requireindex@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/requireindex/-/requireindex-1.2.0.tgz#3463cdb22ee151902635aa6c9535d4de9c2ef1ef" - integrity sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww== resolve-cwd@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" - integrity sha1-AKn3OHVW4nA46uIyyqNypqWbZlo= dependencies: resolve-from "^3.0.0" resolve-from@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" - integrity sha1-six699nWiBvItuZTM17rywoYh0g= resolve-from@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" - integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== resolve-url@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" - integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= resolve@1.1.7: version "1.1.7" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" - integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= resolve@1.x, resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.11.0, resolve@^1.3.2, resolve@^1.3.3, resolve@^1.5.0: version "1.11.1" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.11.1.tgz#ea10d8110376982fef578df8fc30b9ac30a07a3e" - integrity sha512-vIpgF6wfuJOZI7KKKSP+HmiKggadPQAdsp5HiC1mvqnfp0gF1vdwgBWZIdrVft9pgqoMFQN+R7BSWZiBxx+BBw== dependencies: path-parse "^1.0.6" resource-router-middleware@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/resource-router-middleware/-/resource-router-middleware-0.6.0.tgz#bccb286c22ae990840f963769c325f68c875c1f3" - integrity sha1-vMsobCKumQhA+WN2nDJfaMh1wfM= restore-cursor@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" - integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= dependencies: onetime "^2.0.0" signal-exit "^3.0.2" @@ -6439,12 +5619,10 @@ restore-cursor@^2.0.0: ret@~0.1.10: version "0.1.15" resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" - integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== retry-request@^4.0.0: version "4.1.1" resolved "https://registry.yarnpkg.com/retry-request/-/retry-request-4.1.1.tgz#f676d0db0de7a6f122c048626ce7ce12101d2bd8" - integrity sha512-BINDzVtLI2BDukjWmjAIRZ0oglnCAkpP2vQjM3jdLhmT62h0xnQgciPwBRDAvHqpkPT2Wo1XuUyLyn6nbGrZQQ== dependencies: debug "^4.1.1" through2 "^3.0.1" @@ -6452,62 +5630,72 @@ retry-request@^4.0.0: right-align@^0.1.1: version "0.1.3" resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" - integrity sha1-YTObci/mo1FWiSENJOFMlhSGE+8= dependencies: align-text "^0.1.1" rimraf@2.6.3, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.3: version "2.6.3" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" - integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== dependencies: glob "^7.1.3" rsvp@^4.8.4: version "4.8.5" resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" - integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA== run-async@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" - integrity sha1-A3GrSuC91yDUFm19/aZP96RFpsA= dependencies: is-promise "^2.1.0" rxjs@^6.4.0: version "6.5.2" resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.2.tgz#2e35ce815cd46d84d02a209fb4e5921e051dbec7" - integrity sha512-HUb7j3kvb7p7eCUHE3FqjoDsC1xfZQ4AHFWfTKSpZ+sAhhz5X1WX0ZuUqWbzB2QhSLp3DoLUG+hMdEDKqWo2Zg== dependencies: tslib "^1.9.0" +s3-stream-upload@2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/s3-stream-upload/-/s3-stream-upload-2.0.2.tgz#60342f12d4aa06ea8f389fb761a5393aedca017f" + dependencies: + buffer-queue "~1.0.0" + readable-stream "^2.3.0" + +s3signed@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/s3signed/-/s3signed-0.1.0.tgz#ae03b86259413215ed43e99285c8c347579735fb" + dependencies: + aws-sdk "^2.0.4" + +s3urls@^1.5.2: + version "1.5.2" + resolved "https://registry.yarnpkg.com/s3urls/-/s3urls-1.5.2.tgz#182a991208fc1ab5214443eb250fc8f53b4bc9ea" + dependencies: + minimist "^1.1.0" + s3signed "^0.1.0" + safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.2" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@^5.1.2: version "5.2.0" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" - integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg== safe-regex@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" - integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= dependencies: ret "~0.1.10" "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" - integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== sane@^4.0.3: version "4.1.0" resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded" - integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA== dependencies: "@cnakazawa/watch" "^1.0.3" anymatch "^2.0.0" @@ -6522,44 +5710,36 @@ sane@^4.0.3: sax@0.5.x: version "0.5.8" resolved "https://registry.yarnpkg.com/sax/-/sax-0.5.8.tgz#d472db228eb331c2506b0e8c15524adb939d12c1" - integrity sha1-1HLbIo6zMcJQaw6MFVJK25OdEsE= sax@1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz#7b8e656190b228e81a66aea748480d828cd2d37a" - integrity sha1-e45lYZCyKOgaZq6nSEgNgozS03o= sax@>=0.6, sax@>=0.6.0, sax@^1.2.4: version "1.2.4" resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" - integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== semver-diff@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" - integrity sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY= dependencies: semver "^5.0.3" "semver@2 || 3 || 4 || 5", semver@5.*, semver@^5.0.1, semver@^5.0.3, semver@^5.1.0, semver@^5.3, semver@^5.3.0, semver@^5.4.1, semver@^5.5, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: version "5.7.0" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b" - integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA== semver@5.5.0: version "5.5.0" resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" - integrity sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA== semver@^6.0.0: version "6.3.0" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== send@0.17.1: version "0.17.1" resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" - integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg== dependencies: debug "2.6.9" depd "~1.1.2" @@ -6578,7 +5758,6 @@ send@0.17.1: serve-static@1.14.1, serve-static@^1.11.1: version "1.14.1" resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9" - integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg== dependencies: encodeurl "~1.0.2" escape-html "~1.0.3" @@ -6588,12 +5767,10 @@ serve-static@1.14.1, serve-static@^1.11.1: set-blocking@^2.0.0, set-blocking@~2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" - integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= set-value@^2.0.0, set-value@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" - integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== dependencies: extend-shallow "^2.0.1" is-extendable "^0.1.1" @@ -6603,12 +5780,10 @@ set-value@^2.0.0, set-value@^2.0.1: setprototypeof@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" - integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== sha1@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/sha1/-/sha1-1.1.1.tgz#addaa7a93168f393f19eb2b15091618e2700f848" - integrity sha1-rdqnqTFo85PxnrKxUJFhjicA+Eg= dependencies: charenc ">= 0.0.1" crypt ">= 0.0.1" @@ -6616,7 +5791,6 @@ sha1@^1.1.1: sharp@^0.22.1: version "0.22.1" resolved "https://registry.yarnpkg.com/sharp/-/sharp-0.22.1.tgz#a67c0e75567f03dd5a7861b901fec04072c5b0f4" - integrity sha512-lXzSk/FL5b/MpWrT1pQZneKe25stVjEbl6uhhJcTULm7PhmJgKKRbTDM/vtjyUuC/RLqL2PRyC4rpKwbv3soEw== dependencies: color "^3.1.1" detect-libc "^1.0.3" @@ -6632,19 +5806,16 @@ sharp@^0.22.1: shebang-command@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" - integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= dependencies: shebang-regex "^1.0.0" shebang-regex@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" - integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= shell-quote@^1.6.1: version "1.6.1" resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" - integrity sha1-9HgZSczkAmlxJ0MOo7PFR29IF2c= dependencies: array-filter "~0.0.0" array-map "~0.0.0" @@ -6654,7 +5825,6 @@ shell-quote@^1.6.1: shelljs@0.7.8: version "0.7.8" resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3" - integrity sha1-3svPh0sNHl+3LhSxZKloMEjprLM= dependencies: glob "^7.0.0" interpret "^1.0.0" @@ -6663,27 +5833,22 @@ shelljs@0.7.8: shellwords@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" - integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== shimmer@^1.0.0, shimmer@^1.1.0, shimmer@^1.2.0: version "1.2.1" resolved "https://registry.yarnpkg.com/shimmer/-/shimmer-1.2.1.tgz#610859f7de327b587efebf501fb43117f9aff337" - integrity sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw== signal-exit@^3.0.0, signal-exit@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" - integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= simple-concat@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.0.tgz#7344cbb8b6e26fb27d66b2fc86f9f6d5997521c6" - integrity sha1-c0TLuLbib7J9ZrL8hvn21Zl1IcY= simple-get@^2.7.0: version "2.8.1" resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-2.8.1.tgz#0e22e91d4575d87620620bc91308d57a77f44b5d" - integrity sha512-lSSHRSw3mQNUGPAYRqo7xy9dhKmxFXIjLjp4KHpf99GEH2VH7C3AM+Qfx6du6jhfUi6Vm7XnbEVEf7Wb6N8jRw== dependencies: decompress-response "^3.3.0" once "^1.3.1" @@ -6692,7 +5857,6 @@ simple-get@^2.7.0: simple-get@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-3.0.3.tgz#924528ac3f9d7718ce5e9ec1b1a69c0be4d62efa" - integrity sha512-Wvre/Jq5vgoz31Z9stYWPLn0PqRqmBDpFSdypAnHu5AvRVCYPRYGnvryNLiXu8GOBNDH82J2FRHUGMjjHUpXFw== dependencies: decompress-response "^3.3.0" once "^1.3.1" @@ -6701,24 +5865,20 @@ simple-get@^3.0.3: simple-swizzle@^0.2.2: version "0.2.2" resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" - integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= dependencies: is-arrayish "^0.3.1" sisteransi@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.2.tgz#ec57d64b6f25c4f26c0e2c7dd23f2d7f12f7e418" - integrity sha512-ZcYcZcT69nSLAR2oLN2JwNmLkJEKGooFMCdvOkFrToUt/WfcRWqhIg4P4KwY4dmLbuyXIx4o4YmPsvMRJYJd/w== slash@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" - integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== slice-ansi@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" - integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== dependencies: ansi-styles "^3.2.0" astral-regex "^1.0.0" @@ -6727,19 +5887,16 @@ slice-ansi@^2.1.0: slug@^0.9.2: version "0.9.4" resolved "https://registry.yarnpkg.com/slug/-/slug-0.9.4.tgz#fad5f1ef33150830c7688cd8500514576eccabd8" - integrity sha512-3YHq0TeJ4+AIFbJm+4UWSQs5A1mmeWOTQqydW3OoPmQfNKxlO96NDRTIrp+TBkmvEsEFrd+Z/LXw8OD/6OlZ5g== dependencies: unicode ">= 0.3.1" snakeize@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/snakeize/-/snakeize-0.1.0.tgz#10c088d8b58eb076b3229bb5a04e232ce126422d" - integrity sha1-EMCI2LWOsHazIpu1oE4jLOEmQi0= snapdragon-node@^2.0.1: version "2.1.1" resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" - integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== dependencies: define-property "^1.0.0" isobject "^3.0.0" @@ -6748,14 +5905,12 @@ snapdragon-node@^2.0.1: snapdragon-util@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" - integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== dependencies: kind-of "^3.2.0" snapdragon@^0.8.1: version "0.8.2" resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" - integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== dependencies: base "^0.11.1" debug "^2.2.0" @@ -6769,7 +5924,6 @@ snapdragon@^0.8.1: soap@^0.25.0: version "0.25.0" resolved "https://registry.yarnpkg.com/soap/-/soap-0.25.0.tgz#deda92e1454e77ac942033cb7ca18b88f57b0abf" - integrity sha512-1fCilERdB28ImnjWUFUr0pYxRlZyZNR1zu2uSuHdGRPnC0XKyWbvSm0m8Pll8xIYwecaKIu5Bqcp2zKtEcQcrA== dependencies: bluebird "^3.5.0" concat-stream "^1.5.1" @@ -6785,10 +5939,27 @@ soap@^0.25.0: uuid "^3.1.0" xml-crypto "~0.8.0" +socks5-client@~1.2.3, socks5-client@~1.2.6: + version "1.2.8" + resolved "https://registry.yarnpkg.com/socks5-client/-/socks5-client-1.2.8.tgz#6470e4d781de254ee9f3b5ec9760a44c5df898da" + dependencies: + ip-address "~6.1.0" + +socks5-http-client@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/socks5-http-client/-/socks5-http-client-1.0.4.tgz#cfaaa993f91df58542806b458372c6fb3c1a32bd" + dependencies: + socks5-client "~1.2.6" + +socks5-https-client@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/socks5-https-client/-/socks5-https-client-1.2.1.tgz#c8d4a000e39cdc1651d90245af04a735d75d8b09" + dependencies: + socks5-client "~1.2.3" + source-map-resolve@^0.5.0: version "0.5.2" resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" - integrity sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA== dependencies: atob "^2.1.1" decode-uri-component "^0.2.0" @@ -6799,7 +5970,6 @@ source-map-resolve@^0.5.0: source-map-support@^0.5, source-map-support@^0.5.1, source-map-support@^0.5.6: version "0.5.12" resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.12.tgz#b4f3b10d51857a5af0138d3ce8003b201613d599" - integrity sha512-4h2Pbvyy15EE02G+JOZpUCmqWJuqrs+sEkzewTm++BPi7Hvn/HwcqLAcNxYAyI0x13CpPPn+kMjl+hplXMHITQ== dependencies: buffer-from "^1.0.0" source-map "^0.6.0" @@ -6807,29 +5977,24 @@ source-map-support@^0.5, source-map-support@^0.5.1, source-map-support@^0.5.6: source-map-url@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" - integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= source-map@0.1.x: version "0.1.43" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" - integrity sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y= dependencies: amdefine ">=0.0.4" source-map@^0.5.0, source-map@^0.5.6, source-map@~0.5.1: version "0.5.7" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== spawn-sync@^1.0.15: version "1.0.15" resolved "https://registry.yarnpkg.com/spawn-sync/-/spawn-sync-1.0.15.tgz#b00799557eb7fb0c8376c29d44e8a1ea67e57476" - integrity sha1-sAeZVX63+wyDdsKdROih6mfldHY= dependencies: concat-stream "^1.4.7" os-shim "^0.1.2" @@ -6837,7 +6002,6 @@ spawn-sync@^1.0.15: spdx-correct@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" - integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q== dependencies: spdx-expression-parse "^3.0.0" spdx-license-ids "^3.0.0" @@ -6845,12 +6009,10 @@ spdx-correct@^3.0.0: spdx-exceptions@^2.1.0: version "2.2.0" resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" - integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA== spdx-expression-parse@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" - integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== dependencies: spdx-exceptions "^2.1.0" spdx-license-ids "^3.0.0" @@ -6858,36 +6020,38 @@ spdx-expression-parse@^3.0.0: spdx-license-ids@^3.0.0: version "3.0.5" resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654" - integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== split-array-stream@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/split-array-stream/-/split-array-stream-2.0.0.tgz#85a4f8bfe14421d7bca7f33a6d176d0c076a53b1" - integrity sha512-hmMswlVY91WvGMxs0k8MRgq8zb2mSen4FmDNc5AFiTWtrBpdZN6nwD6kROVe4vNL+ywrvbCKsWVCnEd4riELIg== dependencies: is-stream-ended "^0.1.4" +split-on-first@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/split-on-first/-/split-on-first-1.1.0.tgz#f610afeee3b12bce1d0c30425e76398b78249a5f" + split-string@^3.0.1, split-string@^3.0.2: version "3.1.0" resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" - integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== dependencies: extend-shallow "^3.0.0" sprintf-js@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.1.tgz#36be78320afe5801f6cea3ee78b6e5aab940ea0c" - integrity sha1-Nr54Mgr+WAH2zqPueLblqrlA6gw= + +sprintf-js@1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.2.tgz#da1765262bf8c0f571749f2ad6c26300207ae673" sprintf-js@~1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" - integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= sshpk@^1.7.0: version "1.16.1" resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" - integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== dependencies: asn1 "~0.2.3" assert-plus "^1.0.0" @@ -6902,22 +6066,18 @@ sshpk@^1.7.0: stack-trace@0.0.x: version "0.0.10" resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" - integrity sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA= stack-utils@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.2.tgz#33eba3897788558bebfc2db059dc158ec36cebb8" - integrity sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA== standard-as-callback@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/standard-as-callback/-/standard-as-callback-2.0.1.tgz#ed8bb25648e15831759b6023bdb87e6b60b38126" - integrity sha512-NQOxSeB8gOI5WjSaxjBgog2QFw55FV8TkS6Y07BiB3VJ8xNTvUYm0wl0s8ObgQ5NhdpnNfigMIKjgPESzgr4tg== static-extend@^0.1.1: version "0.1.2" resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" - integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= dependencies: define-property "^0.2.5" object-copy "^0.1.0" @@ -6925,29 +6085,28 @@ static-extend@^0.1.1: "statuses@>= 1.5.0 < 2", statuses@~1.5.0: version "1.5.0" resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" - integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= stealthy-require@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" - integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= stream-events@^1.0.1, stream-events@^1.0.4: version "1.0.5" resolved "https://registry.yarnpkg.com/stream-events/-/stream-events-1.0.5.tgz#bbc898ec4df33a4902d892333d47da9bf1c406d5" - integrity sha512-E1GUzBSgvct8Jsb3v2X15pjzN1tYebtbLaMg+eBOUOAxgbLoSbT2NS91ckc5lJD1KfLjId+jXJRgo0qnV5Nerg== dependencies: stubs "^3.0.0" stream-shift@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" - integrity sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI= + +strict-uri-encode@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546" string-length@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" - integrity sha1-1A27aGo6zpYMHP/KVivyxF+DY+0= dependencies: astral-regex "^1.0.0" strip-ansi "^4.0.0" @@ -6955,7 +6114,6 @@ string-length@^2.0.0: string-width@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" - integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= dependencies: code-point-at "^1.0.0" is-fullwidth-code-point "^1.0.0" @@ -6964,7 +6122,6 @@ string-width@^1.0.1: "string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" - integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== dependencies: is-fullwidth-code-point "^2.0.0" strip-ansi "^4.0.0" @@ -6972,7 +6129,6 @@ string-width@^1.0.1: string-width@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" - integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== dependencies: emoji-regex "^7.0.1" is-fullwidth-code-point "^2.0.0" @@ -6981,54 +6137,46 @@ string-width@^3.0.0: string_decoder@^1.1.1: version "1.2.0" resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.2.0.tgz#fe86e738b19544afe70469243b2a1ee9240eae8d" - integrity sha512-6YqyX6ZWEYguAxgZzHGL7SsCeGx3V2TtOTqZz1xSTSWnqsbWwbptafNyvf/ACquZUXV3DANr5BDIwNYe1mN42w== dependencies: safe-buffer "~5.1.0" string_decoder@~1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== dependencies: safe-buffer "~5.1.0" strip-ansi@^3.0.0, strip-ansi@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" - integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= dependencies: ansi-regex "^2.0.0" strip-ansi@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" - integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= dependencies: ansi-regex "^3.0.0" strip-ansi@^5.0.0, strip-ansi@^5.1.0: version "5.2.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" - integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== dependencies: ansi-regex "^4.1.0" strip-bom@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" - integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4= dependencies: is-utf8 "^0.2.0" strip-bom@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" - integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= strip-bom@~0.3.1: version "0.3.1" resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-0.3.1.tgz#9e8a39eff456ff9abc2f059f5f2225bb0f3f7ca5" - integrity sha1-noo57/RW/5q8LwWfXyIluw8/fKU= dependencies: first-chunk-stream "^0.1.0" is-utf8 "^0.2.0" @@ -7036,22 +6184,18 @@ strip-bom@~0.3.1: strip-eof@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" - integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= strip-json-comments@^2.0.1, strip-json-comments@~2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" - integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= stubs@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/stubs/-/stubs-3.0.0.tgz#e8d2ba1fa9c90570303c030b6900f7d5f89abe5b" - integrity sha1-6NK6H6nJBXAwPAMLaQD31fiavls= stylus@0.54.5, stylus@~0.54.5: version "0.54.5" resolved "https://registry.yarnpkg.com/stylus/-/stylus-0.54.5.tgz#42b9560931ca7090ce8515a798ba9e6aa3d6dc79" - integrity sha1-QrlWCTHKcJDOhRWnmLqeaqPW3Hk= dependencies: css-parse "1.7.x" debug "*" @@ -7063,48 +6207,40 @@ stylus@0.54.5, stylus@~0.54.5: subarg@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" - integrity sha1-9izxdYHplrSPyWVpn1TAauJouNI= dependencies: minimist "^1.1.0" supports-color@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" - integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= supports-color@^5.2.0, supports-color@^5.3.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== dependencies: has-flag "^3.0.0" supports-color@^6.1.0: version "6.1.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" - integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== dependencies: has-flag "^3.0.0" "sylvester@>= 0.0.12", "sylvester@>= 0.0.8": version "0.0.21" resolved "https://registry.yarnpkg.com/sylvester/-/sylvester-0.0.21.tgz#2987b1ce2bd2f38b0dce2a34388884bfa4400ea7" - integrity sha1-KYexzivS84sNzio0OIiEv6RADqc= symbol-tree@^3.2.2: version "3.2.4" resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" - integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== syswide-cas@latest: version "5.3.0" resolved "https://registry.yarnpkg.com/syswide-cas/-/syswide-cas-5.3.0.tgz#ef24b8580caa1c6d985b88cacfaa35db16982ed5" - integrity sha512-+RLgS6VInsX8rBpL+gy5qpa7phngecbK7NABelBZpqYpBTwOIK1y7CqHlXK5Vy/rA4erD9q/FyKzMjx2uX3zYg== table@^5.2.3: version "5.4.4" resolved "https://registry.yarnpkg.com/table/-/table-5.4.4.tgz#6e0f88fdae3692793d1077fd172a4667afe986a6" - integrity sha512-IIfEAUx5QlODLblLrGTTLJA7Tk0iLSGBvgY8essPRVNGHAzThujww1YqHLs6h3HfTg55h++RzLHH5Xw/rfv+mg== dependencies: ajv "^6.10.2" lodash "^4.17.14" @@ -7114,7 +6250,6 @@ table@^5.2.3: tar-fs@^1.13.0: version "1.16.3" resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-1.16.3.tgz#966a628841da2c4010406a82167cbd5e0c72d509" - integrity sha512-NvCeXpYx7OsmOh8zIOP/ebG55zZmxLE0etfWRbWok+q2Qo8x/vOR/IJT1taADXPe+jsiu9axDb3X4B+iIgNlKw== dependencies: chownr "^1.0.1" mkdirp "^0.5.1" @@ -7124,7 +6259,6 @@ tar-fs@^1.13.0: tar-stream@^1.1.2: version "1.6.2" resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-1.6.2.tgz#8ea55dab37972253d9a9af90fdcd559ae435c555" - integrity sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A== dependencies: bl "^1.0.0" buffer-alloc "^1.2.0" @@ -7137,7 +6271,6 @@ tar-stream@^1.1.2: tar@^4, tar@^4.4.8: version "4.4.10" resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.10.tgz#946b2810b9a5e0b26140cf78bea6b0b0d689eba1" - integrity sha512-g2SVs5QIxvo6OLp0GudTqEf05maawKUxXru104iaayWA09551tFCTI8f1Asb4lPfkBr91k07iL4c11XO3/b0tA== dependencies: chownr "^1.1.1" fs-minipass "^1.2.5" @@ -7150,7 +6283,6 @@ tar@^4, tar@^4.4.8: teeny-request@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/teeny-request/-/teeny-request-4.0.0.tgz#79a03c49334e720e89c79a5976042b4d1e18be8e" - integrity sha512-Kk87eePsBQZsn5rOIwupObYV7doBMedW3fUOmu3LFVRGEJQ7oeClwWkGFS3nkFs9TFL36qf08vGJd34swMorHQ== dependencies: https-proxy-agent "^2.2.1" node-fetch "^2.2.0" @@ -7159,14 +6291,12 @@ teeny-request@^4.0.0: term-size@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" - integrity sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk= dependencies: execa "^0.7.0" test-exclude@^5.2.3: version "5.2.3" resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-5.2.3.tgz#c3d3e1e311eb7ee405e092dac10aefd09091eac0" - integrity sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g== dependencies: glob "^7.1.3" minimatch "^3.0.4" @@ -7176,17 +6306,14 @@ test-exclude@^5.2.3: text-table@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" - integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= throat@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" - integrity sha1-iQN8vJLFarGJJua6TLsgDhVnKmo= through2@^2.0.0: version "2.0.5" resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" - integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== dependencies: readable-stream "~2.3.6" xtend "~4.0.1" @@ -7194,58 +6321,48 @@ through2@^2.0.0: through2@^3.0.0, through2@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/through2/-/through2-3.0.1.tgz#39276e713c3302edf9e388dd9c812dd3b825bd5a" - integrity sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww== dependencies: readable-stream "2 || 3" "through@>=2.2.7 <3", through@^2.3.6: version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= timed-out@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" - integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8= tmp@^0.0.33: version "0.0.33" resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" - integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== dependencies: os-tmpdir "~1.0.2" tmpl@1.0.x: version "1.0.4" resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" - integrity sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE= to-buffer@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/to-buffer/-/to-buffer-1.1.1.tgz#493bd48f62d7c43fcded313a03dcadb2e1213a80" - integrity sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg== to-fast-properties@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" - integrity sha1-uDVx+k2MJbguIxsG46MFXeTKGkc= to-fast-properties@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= to-object-path@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" - integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= dependencies: kind-of "^3.0.2" to-regex-range@^2.1.0: version "2.1.1" resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" - integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= dependencies: is-number "^3.0.0" repeat-string "^1.6.1" @@ -7253,7 +6370,6 @@ to-regex-range@^2.1.0: to-regex@^3.0.1, to-regex@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" - integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== dependencies: define-property "^2.0.2" extend-shallow "^3.0.2" @@ -7263,24 +6379,20 @@ to-regex@^3.0.1, to-regex@^3.0.2: toidentifier@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" - integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== token-stream@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/token-stream/-/token-stream-0.0.1.tgz#ceeefc717a76c4316f126d0b9dbaa55d7e7df01a" - integrity sha1-zu78cXp2xDFvEm0LnbqlXX598Bo= touch@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.0.tgz#fe365f5f75ec9ed4e56825e0bb76d24ab74af83b" - integrity sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA== dependencies: nopt "~1.0.10" tough-cookie@^2.3.3, tough-cookie@^2.3.4: version "2.5.0" resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" - integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== dependencies: psl "^1.1.28" punycode "^2.1.1" @@ -7288,7 +6400,6 @@ tough-cookie@^2.3.3, tough-cookie@^2.3.4: tough-cookie@~2.4.3: version "2.4.3" resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" - integrity sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ== dependencies: psl "^1.1.24" punycode "^1.4.1" @@ -7296,19 +6407,16 @@ tough-cookie@~2.4.3: tr46@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" - integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk= dependencies: punycode "^2.1.0" trim-right@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" - integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM= ts-jest@^24.0.2: version "24.0.2" resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-24.0.2.tgz#8dde6cece97c31c03e80e474c749753ffd27194d" - integrity sha512-h6ZCZiA1EQgjczxq+uGLXQlNgeg02WWJBbeT8j6nyIBRQdglqbvzDoHahTEIiS6Eor6x8mK6PfZ7brQ9Q6tzHw== dependencies: bs-logger "0.x" buffer-from "1.x" @@ -7323,7 +6431,6 @@ ts-jest@^24.0.2: ts-node@^8.1.0: version "8.3.0" resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-8.3.0.tgz#e4059618411371924a1fb5f3b125915f324efb57" - integrity sha512-dyNS/RqyVTDcmNM4NIBAeDMpsAdaQ+ojdf0GOLqE6nwJOgzEkdRNzJywhDfwnuvB10oa6NLVG1rUJQCpRN7qoQ== dependencies: arg "^4.1.0" diff "^4.0.1" @@ -7334,43 +6441,36 @@ ts-node@^8.1.0: tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3: version "1.10.0" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a" - integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ== tsutils@^3.7.0: version "3.14.1" resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.14.1.tgz#f1d2b93d2a0876481f2f1f98c25ba42bbd7ee860" - integrity sha512-kiuZzD1uUA5DxGj/uxbde+ymp6VVdAxdzOIlAFbYKrPyla8/uiJ9JLBm1QsPhOm4Muj0/+cWEDP99yoCUcSl6Q== dependencies: tslib "^1.8.1" tunnel-agent@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" - integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= dependencies: safe-buffer "^5.0.1" tv4@^1.3: version "1.3.0" resolved "https://registry.yarnpkg.com/tv4/-/tv4-1.3.0.tgz#d020c846fadd50c855abb25ebaecc68fc10f7963" - integrity sha1-0CDIRvrdUMhVq7JeuuzGj8EPeWM= tweetnacl@^0.14.3, tweetnacl@~0.14.0: version "0.14.5" resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" - integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= type-check@~0.3.2: version "0.3.2" resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" - integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= dependencies: prelude-ls "~1.1.2" type-is@~1.6.17, type-is@~1.6.18: version "1.6.18" resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" - integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== dependencies: media-typer "0.3.0" mime-types "~2.1.24" @@ -7378,24 +6478,20 @@ type-is@~1.6.17, type-is@~1.6.18: typedarray-to-buffer@^3.1.5: version "3.1.5" resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" - integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== dependencies: is-typedarray "^1.0.0" typedarray@^0.0.6: version "0.0.6" resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" - integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= typescript@3.3.*: version "3.3.4000" resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.3.4000.tgz#76b0f89cfdbf97827e1112d64f283f1151d6adf0" - integrity sha512-jjOcCZvpkl2+z7JFn0yBOoLQyLoIkNZAs/fYJkUG6VKy6zLPHJGfQJYFHzibB6GJaF/8QrcECtlQ5cpvRHSMEA== uglify-js@^2.6.1: version "2.8.29" resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" - integrity sha1-KcVzMUgFe7Th913zW3qcty5qWd0= dependencies: source-map "~0.5.1" yargs "~3.10.0" @@ -7405,7 +6501,6 @@ uglify-js@^2.6.1: uglify-js@^3.1.4: version "3.6.0" resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.6.0.tgz#704681345c53a8b2079fb6cec294b05ead242ff5" - integrity sha512-W+jrUHJr3DXKhrsS7NUVxn3zqMOFn0hL/Ei6v0anCIMoKC93TjcflTagwIHLW7SfMFfiQuktQyFVCFHGUE0+yg== dependencies: commander "~2.20.0" source-map "~0.6.1" @@ -7413,34 +6508,28 @@ uglify-js@^3.1.4: uglify-to-browserify@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" - integrity sha1-bgkk1r2mta/jSeOabWMoUKD4grc= undefsafe@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.2.tgz#225f6b9e0337663e0d8e7cfd686fc2836ccace76" - integrity sha1-Il9rngM3Zj4Njnz9aG/Cg2zKznY= dependencies: debug "^2.2.0" underscore@>=1.3.1: version "1.9.1" resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.9.1.tgz#06dce34a0e68a7babc29b365b8e74b8925203961" - integrity sha512-5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg== underscore@~1.7.0: version "1.7.0" resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.7.0.tgz#6bbaf0877500d36be34ecaa584e0db9fef035209" - integrity sha1-a7rwh3UA02vjTsqlhODbn+8DUgk= "unicode@>= 0.3.1": version "11.0.1" resolved "https://registry.yarnpkg.com/unicode/-/unicode-11.0.1.tgz#735bd422ec75cf28d396eb224d535d168d5f1db6" - integrity sha512-+cHtykLb+eF1yrSLWTwcYBrqJkTfX7Quoyg7Juhe6uylF43ZbMdxMuSHNYlnyLT8T7POAvavgBthzUF9AIaQvQ== union-value@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" - integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== dependencies: arr-union "^3.1.0" get-value "^2.0.6" @@ -7450,31 +6539,26 @@ union-value@^1.0.0: unique-string@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" - integrity sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo= dependencies: crypto-random-string "^1.0.0" unique-string@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" - integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== dependencies: crypto-random-string "^2.0.0" universalify@^0.1.0: version "0.1.2" resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" - integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== unpipe@1.0.0, unpipe@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" - integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= unset-value@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" - integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= dependencies: has-value "^0.3.1" isobject "^3.0.0" @@ -7482,17 +6566,14 @@ unset-value@^1.0.0: unzip-response@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" - integrity sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c= upath@^1.1.1: version "1.1.2" resolved "https://registry.yarnpkg.com/upath/-/upath-1.1.2.tgz#3db658600edaeeccbe6db5e684d67ee8c2acd068" - integrity sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q== update-notifier@^2.5.0: version "2.5.0" resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.5.0.tgz#d0744593e13f161e406acb1d9408b72cad08aff6" - integrity sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw== dependencies: boxen "^1.2.1" chalk "^2.0.1" @@ -7508,26 +6589,22 @@ update-notifier@^2.5.0: uri-js@^4.2.2: version "4.2.2" resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" - integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== dependencies: punycode "^2.1.0" urix@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" - integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= url-parse-lax@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" - integrity sha1-evjzA2Rem9eaJy56FKxovAYJ2nM= dependencies: prepend-http "^1.0.1" url@0.10.3: version "0.10.3" resolved "https://registry.yarnpkg.com/url/-/url-0.10.3.tgz#021e4d9c7705f21bbf37d03ceb58767402774c64" - integrity sha1-Ah5NnHcF8hu/N9A861h2dAJ3TGQ= dependencies: punycode "1.3.2" querystring "0.2.0" @@ -7535,17 +6612,14 @@ url@0.10.3: use@^3.1.0: version "3.1.1" resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" - integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== util-deprecate@^1.0.1, util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= util.promisify@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" - integrity sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA== dependencies: define-properties "^1.1.2" object.getownpropertydescriptors "^2.0.3" @@ -7553,27 +6627,22 @@ util.promisify@^1.0.0: utils-merge@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" - integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= uuid@3.3.2, uuid@^3.0.1, uuid@^3.1.0, uuid@^3.3.2: version "3.3.2" resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" - integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA== uuid@^2.0.1: version "2.0.3" resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" - integrity sha1-Z+LoY3lyFVMN/zGOW/nc6/1Hsho= v8-compile-cache@^1.1.0: version "1.1.2" resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-1.1.2.tgz#8d32e4f16974654657e676e0e467a348e89b0dc4" - integrity sha512-ejdrifsIydN1XDH7EuR2hn8ZrkRKUYF7tUcBjBy/lhrCvs2K+zRlbW9UHc0IQ9RsYFZJFqJrieoIHfkCa0DBRA== validate-npm-package-license@^3.0.1: version "3.0.4" resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" - integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== dependencies: spdx-correct "^3.0.0" spdx-expression-parse "^3.0.0" @@ -7581,12 +6650,10 @@ validate-npm-package-license@^3.0.1: vary@^1, vary@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" - integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= verror@1.10.0: version "1.10.0" resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" - integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= dependencies: assert-plus "^1.0.0" core-util-is "1.0.2" @@ -7595,19 +6662,16 @@ verror@1.10.0: vizion@^0.2: version "0.2.13" resolved "https://registry.yarnpkg.com/vizion/-/vizion-0.2.13.tgz#1314cdee2b34116f9f5b1248536f95dbfcd6ef5f" - integrity sha1-ExTN7is0EW+fWxJIU2+V2/zW718= dependencies: async "1.5" void-elements@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-2.0.1.tgz#c066afb582bb1cb4128d60ea92392e94d5e9dbec" - integrity sha1-wGavtYK7HLQSjWDqkjkulNXp2+w= vxx@^1.2.0: version "1.2.2" resolved "https://registry.yarnpkg.com/vxx/-/vxx-1.2.2.tgz#741fb51c6f11d3383da6f9b92018a5d7ba807611" - integrity sha1-dB+1HG8R0zg9pvm5IBil17qAdhE= dependencies: continuation-local-storage "^3.1.4" debug "^2.6.3" @@ -7624,38 +6688,32 @@ vxx@^1.2.0: w3c-hr-time@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" - integrity sha1-gqwr/2PZUOqeMYmlimViX+3xkEU= dependencies: browser-process-hrtime "^0.1.2" walker@^1.0.7, walker@~1.0.5: version "1.0.7" resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" - integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs= dependencies: makeerror "1.0.x" webidl-conversions@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" - integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3: version "1.0.5" resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" - integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== dependencies: iconv-lite "0.4.24" whatwg-mimetype@^2.1.0, whatwg-mimetype@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" - integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== whatwg-url@^6.4.1: version "6.5.0" resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8" - integrity sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ== dependencies: lodash.sortby "^4.7.0" tr46 "^1.0.1" @@ -7664,7 +6722,6 @@ whatwg-url@^6.4.1: whatwg-url@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.0.0.tgz#fde926fa54a599f3adf82dff25a9f7be02dc6edd" - integrity sha512-37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ== dependencies: lodash.sortby "^4.7.0" tr46 "^1.0.1" @@ -7673,65 +6730,54 @@ whatwg-url@^7.0.0: when@^3.7.7: version "3.7.8" resolved "https://registry.yarnpkg.com/when/-/when-3.7.8.tgz#c7130b6a7ea04693e842cdc9e7a1f2aa39a39f82" - integrity sha1-xxMLan6gRpPoQs3J56Hyqjmjn4I= which-module@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" - integrity sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8= which-module@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" - integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= which-pm-runs@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb" - integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs= which@1.2.x: version "1.2.14" resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" - integrity sha1-mofEN48D6CfOyvGs31bHNsAcFOU= dependencies: isexe "^2.0.0" which@^1.2.9, which@^1.3.0: version "1.3.1" resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" - integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== dependencies: isexe "^2.0.0" wide-align@^1.1.0: version "1.1.3" resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" - integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== dependencies: string-width "^1.0.2 || 2" widest-line@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc" - integrity sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA== dependencies: string-width "^2.1.1" window-size@0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" - integrity sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0= window-size@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" - integrity sha1-tDFbtCFKPXBY6+7okuE/ok2YsHU= winston@^2.2.0, winston@^2.4.2: version "2.4.4" resolved "https://registry.yarnpkg.com/winston/-/winston-2.4.4.tgz#a01e4d1d0a103cf4eada6fc1f886b3110d71c34b" - integrity sha512-NBo2Pepn4hK4V01UfcWcDlmiVTs7VTB1h7bgnB0rgP146bYhMxX0ypCz3lBOfNxCO4Zuek7yeT+y/zM1OfMw4Q== dependencies: async "~1.0.0" colors "1.0.x" @@ -7743,7 +6789,6 @@ winston@^2.2.0, winston@^2.4.2: with@^5.0.0: version "5.1.1" resolved "https://registry.yarnpkg.com/with/-/with-5.1.1.tgz#fa4daa92daf32c4ea94ed453c81f04686b575dfe" - integrity sha1-+k2qktrzLE6pTtRTyB8EaGtXXf4= dependencies: acorn "^3.1.0" acorn-globals "^3.0.0" @@ -7751,22 +6796,18 @@ with@^5.0.0: wordwrap@0.0.2: version "0.0.2" resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" - integrity sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8= wordwrap@~0.0.2: version "0.0.3" resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" - integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc= wordwrap@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" - integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= wrap-ansi@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" - integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= dependencies: string-width "^1.0.1" strip-ansi "^3.0.1" @@ -7774,12 +6815,10 @@ wrap-ansi@^2.0.0: wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= write-file-atomic@2.4.1: version "2.4.1" resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.1.tgz#d0b05463c188ae804396fd5ab2a370062af87529" - integrity sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg== dependencies: graceful-fs "^4.1.11" imurmurhash "^0.1.4" @@ -7788,7 +6827,6 @@ write-file-atomic@2.4.1: write-file-atomic@^2.0.0: version "2.4.3" resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" - integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== dependencies: graceful-fs "^4.1.11" imurmurhash "^0.1.4" @@ -7797,7 +6835,6 @@ write-file-atomic@^2.0.0: write-file-atomic@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.0.tgz#1b64dbbf77cb58fd09056963d63e62667ab4fb21" - integrity sha512-EIgkf60l2oWsffja2Sf2AL384dx328c0B+cIYPTQq5q2rOYuDV00/iPFBOUiDKKwKMOhkymH8AidPaRvzfxY+Q== dependencies: imurmurhash "^0.1.4" is-typedarray "^1.0.0" @@ -7807,31 +6844,26 @@ write-file-atomic@^3.0.0: write@1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" - integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== dependencies: mkdirp "^0.5.1" ws@^5.2.0: version "5.2.2" resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f" - integrity sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA== dependencies: async-limiter "~1.0.0" xdg-basedir@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" - integrity sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ= xdg-basedir@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13" - integrity sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q== xml-crypto@~0.8.0: version "0.8.5" resolved "https://registry.yarnpkg.com/xml-crypto/-/xml-crypto-0.8.5.tgz#2bbcfb3eb33f3a82a218b822bf672b6b1c20e538" - integrity sha1-K7z7PrM/OoKiGLgiv2craxwg5Tg= dependencies: xmldom "=0.1.19" xpath.js ">=0.0.3" @@ -7839,12 +6871,10 @@ xml-crypto@~0.8.0: xml-name-validator@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" - integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== xml2js@0.4.19: version "0.4.19" resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.19.tgz#686c20f213209e94abf0d1bcf1efaa291c7827a7" - integrity sha512-esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q== dependencies: sax ">=0.6.0" xmlbuilder "~9.0.1" @@ -7852,47 +6882,38 @@ xml2js@0.4.19: xmlbuilder@~9.0.1: version "9.0.7" resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d" - integrity sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0= xmldom@=0.1.19: version "0.1.19" resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.19.tgz#631fc07776efd84118bf25171b37ed4d075a0abc" - integrity sha1-Yx/Ad3bv2EEYvyUXGzftTQdaCrw= xpath.js@>=0.0.3: version "1.1.0" resolved "https://registry.yarnpkg.com/xpath.js/-/xpath.js-1.1.0.tgz#3816a44ed4bb352091083d002a383dd5104a5ff1" - integrity sha512-jg+qkfS4K8E7965sqaUl8mRngXiKb3WZGfONgE18pr03FUQiuSV6G+Ej4tS55B+rIQSFEIw3phdVAQ4pPqNWfQ== xtend@^4.0.0, xtend@~4.0.1: version "4.0.2" resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" - integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== y18n@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" - integrity sha1-bRX7qITAhnnA136I53WegR4H+kE= "y18n@^3.2.1 || ^4.0.0": version "4.0.0" resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" - integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== yallist@^2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" - integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= yallist@^3.0.0, yallist@^3.0.2, yallist@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" - integrity sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A== yamljs@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/yamljs/-/yamljs-0.3.0.tgz#dc060bf267447b39f7304e9b2bfbe8b5a7ddb03b" - integrity sha512-C/FsVVhht4iPQYXOInoxUM/1ELSf9EsgKH34FofQOp6hwCPrW4vG4w5++TED3xRUo8gD7l0P1J1dLlDYzODsTQ== dependencies: argparse "^1.0.7" glob "^7.0.5" @@ -7900,14 +6921,12 @@ yamljs@^0.3.0: yargs-parser@10.x: version "10.1.0" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-10.1.0.tgz#7202265b89f7e9e9f2e5765e0fe735a905edbaa8" - integrity sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ== dependencies: camelcase "^4.1.0" yargs-parser@^11.1.1: version "11.1.1" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4" - integrity sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ== dependencies: camelcase "^5.0.0" decamelize "^1.2.0" @@ -7915,7 +6934,6 @@ yargs-parser@^11.1.1: yargs-parser@^2.4.1: version "2.4.1" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-2.4.1.tgz#85568de3cf150ff49fa51825f03a8c880ddcc5c4" - integrity sha1-hVaN488VD/SfpRgl8DqMiA3cxcQ= dependencies: camelcase "^3.0.0" lodash.assign "^4.0.6" @@ -7923,7 +6941,6 @@ yargs-parser@^2.4.1: yargs@^12.0.2: version "12.0.5" resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13" - integrity sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw== dependencies: cliui "^4.0.0" decamelize "^1.2.0" @@ -7941,7 +6958,6 @@ yargs@^12.0.2: yargs@^4.0.0: version "4.8.1" resolved "https://registry.yarnpkg.com/yargs/-/yargs-4.8.1.tgz#c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0" - integrity sha1-wMQpJMpKqmsObaFznfshZDn53cA= dependencies: cliui "^3.2.0" decamelize "^1.1.1" @@ -7961,7 +6977,6 @@ yargs@^4.0.0: yargs@~3.10.0: version "3.10.0" resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" - integrity sha1-9+572FfdfB0tOMDnTvvWgdFDH9E= dependencies: camelcase "^1.0.2" cliui "^2.1.0" @@ -7971,4 +6986,3 @@ yargs@~3.10.0: yn@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.0.tgz#fcbe2db63610361afcc5eb9e0ac91e976d046114" - integrity sha512-kKfnnYkbTfrAdd0xICNFw7Atm8nKpLcLv9AZGEt+kczL/WQVai4e2V6ZN8U/O+iI6WrNuJjNNOyu4zfhl9D3Hg==